-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(react): adds and updates React schematics with more options
- Added component schematic that adds to existing project. * Supports CSS-in-JS styles, functional components, etc. - Lib and app schematics now support new style, funtional components options (same as component)
- Loading branch information
Showing
33 changed files
with
926 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# component | ||
|
||
Create a component | ||
|
||
## Usage | ||
|
||
```bash | ||
ng generate component ... | ||
|
||
``` | ||
|
||
## Options | ||
|
||
### classComponent | ||
|
||
Default: `false` | ||
|
||
Type: `boolean` | ||
|
||
Use class components instead of functional component | ||
|
||
### export | ||
|
||
Default: `false` | ||
|
||
Type: `boolean` | ||
|
||
When true, the component is exported from the project index.ts (if it exists). | ||
|
||
### name | ||
|
||
Type: `string` | ||
|
||
The name of the component. | ||
|
||
### pascalCaseFiles | ||
|
||
Default: `false` | ||
|
||
Type: `boolean` | ||
|
||
Use pascal case component file name (e.g. App.tsx) | ||
|
||
### project | ||
|
||
Type: `string` | ||
|
||
The name of the project (as specified in angular.json). | ||
|
||
### skipTests | ||
|
||
Default: `false` | ||
|
||
Type: `boolean` | ||
|
||
When true, does not create "spec.ts" test files for the new component. | ||
|
||
### style | ||
|
||
Default: `css` | ||
|
||
Type: `string` | ||
|
||
The file extension to be used for style files. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.