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
David Disu f706ad00eb Show create icon when all workspaces are deleted 3 years ago
..
app Reduce space between icon and loader, remove duplicate splash screen 3 years ago
checkbox Setup udapp library 3 years ago
clipboard remove extra line 3 years ago
debugger-ui Setup udapp library 3 years ago
editor Remove border for correct cursor position 3 years ago
editor-context-view fix loop over references 3 years ago
helper Use plugin calls for toaster and modal. 3 years ago
home-tab update 3 years ago
modal-dialog fix queue processing 3 years ago
panel Merge branch 'master' into dragbar 3 years ago
permission-handler remember click 3 years ago
plugin-manager fix radio buttons 3 years ago
publish-to-storage Fixed publish contract e2e 3 years ago
renderer Setup udapp library 3 years ago
run-tab reset_multifield 3 years ago
settings Setup udapp library 3 years ago
solidity-compiler fix references 3 years ago
solidity-unit-testing test result clearing fixed 3 years ago
static-analyser Setup udapp library 3 years ago
tabs fix loop over references 3 years ago
terminal class for call fixed 3 years ago
theme-module fix lower casing the theme&& remove unneded 3 years ago
toaster Remove plugin manager settings and replace old toaster in file-manager 3 years ago
tree-view Move recorderUI to react 3 years ago
utils Setup udapp library 3 years ago
vertical-icons-panel icons padding on verticals 3 years ago
workspace Show create icon when all workspaces are deleted 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.