remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/libs/remix-ui
filip mertens c3efe0bf74 Merge branch 'master' of https://github.com/ethereum/remix-project into panels 3 years ago
..
app main view 3 years ago
checkbox Setup tsconfig.base.json 3 years ago
clipboard clipboard lint fix 3 years ago
debugger-ui -fixed some colors in themes 3 years ago
editor fixed the colors of editor's content menu 3 years ago
editor-context-view linting 3 years ago
helper feat: add first version for cairo lang support 3 years ago
home-tab linting 3 years ago
modal-dialog made id mandatory prop for modal dialog as it is used and undefined 3 years ago
panel main view 3 years ago
plugin-manager rm dep mainview from runtab 3 years ago
publish-to-storage linting fix after version update 3 years ago
renderer addannotation async 3 years ago
settings clean up changes to switchTheme 3 years ago
solidity-compiler hideWarnings 3 years ago
static-analyser fix highlight 3 years ago
tabs linter 3 years ago
terminal Merge branch 'master' of https://github.com/ethereum/remix-project into panels 3 years ago
theme-module fix linting issues 3 years ago
toaster made id mandatory prop for modal dialog as it is used and undefined 3 years ago
tree-view linting fix after version update 3 years ago
utils utils lint fix 3 years ago
vertical-icons-panel remove console log in reducer 3 years ago
workspace empty object 3 years ago
README.md Added instructions for creating react apps and components 3 years ago

README.md

remix-ui

This library was generated with Nx.

Pre-requisite

  • Install NxConsole vscose extension

Steps To Generate React App

  • Open NxConsole extension
  • Click generate option
  • Select @nrwl/react - application
  • Enter the name of the application
  • Set e2eTestRunner to none. (This is because we run e2e tests with nightwatch)
  • Set unitTestRunner to none.
  • Click the run button in the top right corner of the generate page.
  • Your react application should be created in {root}/apps directory.

Steps To Generate React Lib

  • Open NxConsole extension
  • Click generate option
  • Select @nrwl/react - library
  • Enter the name of the library
  • Set directory to remix-ui
  • Set importPath to @remix-ui/{library-name}
  • Set unitTestRunner to none.
  • Click the run button in the top right corner of the generate page.
  • Your react library should be created on {root}/libs/remix-ui directory.

Steps To Generate React Component

  • Open NxConsole extension
  • Click generate option
  • Select @nrwl/react - component
  • Enter the name of the component
  • Select the name of the project/library that uses the component. (e.g TreeView library)
  • Set component directory if needed.
  • Click the run button in the top right corner of the generate page.
  • Your react component should be created with the project/library name specified.