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 be85eaad61 Merge branch 'master' of https://github.com/ethereum/remix-project into fixcompiler 1 year ago
..
app/src adjust printWidth in prettier config 2 years ago
checkbox/src adjust printWidth in prettier config 2 years ago
clipboard adjust printWidth in prettier config 2 years ago
debugger-ui/src adjust printWidth in prettier config 2 years ago
drag-n-drop/src adjust printWidth in prettier config 2 years ago
editor/src Merge branch 'master' of https://github.com/ethereum/remix-project into fixcompiler 1 year ago
file-decorators/src adjust printWidth in prettier config 2 years ago
helper/src Create react UI for circom plugin 2 years ago
home-tab/src rename cookbook plugin 1 year ago
locale-module adjust printWidth in prettier config 2 years ago
modal-dialog/src adjust printWidth in prettier config 2 years ago
panel/src adjust printWidth in prettier config 2 years ago
permission-handler/src adjust printWidth in prettier config 2 years ago
plugin-manager/src adjust printWidth in prettier config 2 years ago
publish-to-storage/src adjust printWidth in prettier config 2 years ago
renderer/src better message 1 year ago
run-tab/src fixed the margin of delete icon in udapp 1 year ago
search/src adjust printWidth in prettier config 2 years ago
settings/src adjust printWidth in prettier config 2 years ago
solidity-compiler/src Compile circuit using editor play button 2 years ago
solidity-uml-gen/src adjust printWidth in prettier config 2 years ago
solidity-unit-testing/src e2e 1 year ago
static-analyser/src adjust printWidth in prettier config 2 years ago
tabs/src Parse circom code and highlight error 2 years ago
terminal/src linting 1 year ago
theme-module adjust printWidth in prettier config 2 years ago
toaster/src adjust printWidth in prettier config 2 years ago
tooltip-popup/src adjust printWidth in prettier config 2 years ago
tree-view/src adjust printWidth in prettier config 2 years ago
utils/src use prettier to format all code files in repo. adjust eslint rules. fix text in vyper 2 years ago
vertical-icons-panel/src adjust printWidth in prettier config 2 years ago
workspace/src adjust printWidth in prettier config 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.