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
Joseph Izang a1cf2caff2 generate uml svg. persist flattened contract and svg to file explorer 2 years ago
..
app/src fix false positive about react-intl 2 years ago
checkbox/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
clipboard Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
debugger-ui/src remove uneeded try/catch 2 years ago
drag-n-drop/src # This is a combination of 50 commits. 2 years ago
editor/src fix 2 years ago
file-decorators/src cleanup 2 years ago
helper/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
home-tab/src fix @Aniket-Engg comment 2 years ago
locale-module Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
modal-dialog/src # This is a combination of 50 commits. 2 years ago
panel/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
permission-handler/src # This is a combination of 50 commits. 2 years ago
plugin-manager/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
publish-to-storage/src Merge branch 'master' into nxwebpack 2 years ago
renderer/src # This is a combination of 50 commits. 2 years ago
run-tab/src remix-simulator: use web3-* instead of web3 2 years ago
search/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
settings/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
solidity-compiler/src generate uml svg. persist flattened contract and svg to file explorer 2 years ago
solidity-unit-testing/src use current VM for testing instead of instanciating a new one 2 years ago
static-analyser/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
tabs/src cleanup 2 years ago
terminal/src fix transacation status check 2 years ago
theme-module Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
toaster/src Merge branch 'master' of https://github.com/ethereum/remix-project into nxwebpack 2 years ago
tooltip-popup/src # This is a combination of 50 commits. 2 years ago
tree-view/src space at the bottom of FE 2 years ago
utils/src # This is a combination of 50 commits. 2 years ago
vertical-icons-panel/src uncomment customtooltip 2 years ago
workspace/src generate uml svg. persist flattened contract and svg to file explorer 2 years ago
.eslintrc # This is a combination of 50 commits. 2 years ago
README.md fix vscode spelling 3 years ago
project.json # This is a combination of 50 commits. 2 years ago

README.md

remix-ui

This library was generated with Nx.

Pre-requisite

  • Install NxConsole vscode 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.