@ng-zen/cli 19.1.0 → 19.2.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +7 -2
- package/package.json +3 -88
- package/schematics/components/components-generator.js +3 -0
- package/schematics/components/components-generator.js.map +1 -0
- package/{src/schematics → schematics}/components/components-generator.ts +1 -1
- package/schematics/components/files/button/button.component.scss +43 -0
- package/{src/schematics → schematics}/components/files/button/button.stories.ts +1 -0
- package/{src/schematics → schematics}/components/files/checkbox/checkbox.component.scss +1 -1
- package/{src/schematics → schematics}/components/files/checkbox/checkbox.stories.ts +1 -0
- package/schematics/components/files/divider/divider.component.scss +52 -0
- package/schematics/components/files/divider/divider.component.spec.ts +22 -0
- package/schematics/components/files/divider/divider.component.ts +58 -0
- package/schematics/components/files/divider/divider.stories.ts +69 -0
- package/schematics/components/files/divider/index.ts +1 -0
- package/{src/schematics → schematics}/components/files/input/input.component.scss +1 -1
- package/{src/schematics → schematics}/components/files/input/input.stories.ts +1 -0
- package/{src/schematics → schematics}/components/files/switch/switch.component.scss +2 -2
- package/{src/schematics → schematics}/components/files/switch/switch.stories.ts +1 -0
- package/{src/schematics → schematics}/components/files/textarea/textarea.component.scss +1 -1
- package/{src/schematics → schematics}/components/files/textarea/textarea.stories.ts +1 -0
- package/schematics/components/index.js +11 -0
- package/schematics/components/index.js.map +1 -0
- package/{src/schematics → schematics}/components/schema.json +1 -1
- package/schematics/ng-add/index.js +12 -0
- package/schematics/ng-add/index.js.map +1 -0
- package/schematics/ng-add/index.ts +12 -0
- package/schematics/ng-add/ng-zen-generator.js +3 -0
- package/schematics/ng-add/ng-zen-generator.js.map +1 -0
- package/schematics/ng-add/ng-zen-generator.ts +3 -0
- package/types/generator-schema-base.interface.js +3 -0
- package/types/generator-schema-base.interface.js.map +1 -0
- package/types/index.js +5 -0
- package/types/index.js.map +1 -0
- package/types/schematics-folder.type.js +3 -0
- package/types/schematics-folder.type.js.map +1 -0
- package/utils/apply-file-template.util.js +23 -0
- package/utils/apply-file-template.util.js.map +1 -0
- package/{src/utils → utils}/apply-file-template.util.ts +1 -0
- package/utils/index.js +5 -0
- package/utils/index.js.map +1 -0
- package/utils/index.ts +1 -0
- package/.commitlintrc +0 -3
- package/.editorconfig +0 -17
- package/.github/dependabot.yml +0 -18
- package/.github/workflows/ci.yml +0 -112
- package/.github/workflows/deploy.yml +0 -33
- package/.github/workflows/release.yml +0 -65
- package/.husky/commit-msg +0 -1
- package/.husky/pre-commit +0 -1
- package/.nanostagedrc +0 -5
- package/.prettierignore +0 -3
- package/.prettierrc +0 -23
- package/.releaserc.json +0 -67
- package/.storybook/main.ts +0 -17
- package/.storybook/preview.ts +0 -13
- package/.storybook/stories/pages/1 README.mdx +0 -9
- package/.storybook/stories/pages/2 License.mdx +0 -9
- package/.storybook/stories/pages/3 CHANGELOG.mdx +0 -9
- package/.storybook/tsconfig.json +0 -10
- package/.storybook/typings.d.ts +0 -4
- package/.stylelintrc.json +0 -3
- package/CODE_OF_CONDUCT.md +0 -30
- package/CONTRIBUTING.md +0 -54
- package/DEVELOPMENT.md +0 -138
- package/angular.json +0 -66
- package/eslint.config.js +0 -40
- package/jest.config.ts +0 -20
- package/projects/schematic-builder/builders/builders.json +0 -9
- package/projects/schematic-builder/builders/index.js +0 -100
- package/projects/schematic-builder/builders/schema.json +0 -18
- package/projects/schematic-builder/package.json +0 -11
- package/src/schematics/components/files/button/button.component.scss +0 -42
- package/src/schematics/ng-add/index.ts +0 -14
- package/src/schematics/ng-add/ng-zen-generator.ts +0 -3
- package/src/utils/add-path-to-tsconfig.util.ts +0 -50
- package/src/utils/index.ts +0 -2
- package/tsconfig.json +0 -31
- package/tsconfig.lib.json +0 -11
- package/tsconfig.schematics.json +0 -30
- package/tsconfig.spec.json +0 -9
- package/{src/schematics → schematics}/collection.json +0 -0
- package/{src/schematics → schematics}/components/files/avatar/avatar.component.scss +0 -0
- package/{src/schematics → schematics}/components/files/avatar/avatar.component.spec.ts +0 -0
- package/{src/schematics → schematics}/components/files/avatar/avatar.component.ts +0 -0
- package/{src/schematics → schematics}/components/files/avatar/avatar.stories.ts +0 -0
- package/{src/schematics → schematics}/components/files/avatar/index.ts +0 -0
- package/{src/schematics → schematics}/components/files/button/button.component.spec.ts +0 -0
- package/{src/schematics → schematics}/components/files/button/button.component.ts +0 -0
- package/{src/schematics → schematics}/components/files/button/index.ts +0 -0
- package/{src/schematics → schematics}/components/files/checkbox/checkbox.component.spec.ts +0 -0
- package/{src/schematics → schematics}/components/files/checkbox/checkbox.component.ts +1 -1
- /package/{src/schematics → schematics}/components/files/checkbox/index.ts +0 -0
- /package/{src/schematics → schematics}/components/files/input/index.ts +0 -0
- /package/{src/schematics → schematics}/components/files/input/input.component.spec.ts +0 -0
- /package/{src/schematics → schematics}/components/files/input/input.component.ts +0 -0
- /package/{src/schematics → schematics}/components/files/switch/index.ts +0 -0
- /package/{src/schematics → schematics}/components/files/switch/switch.component.spec.ts +0 -0
- /package/{src/schematics → schematics}/components/files/switch/switch.component.ts +0 -0
- /package/{src/schematics → schematics}/components/files/textarea/index.ts +0 -0
- /package/{src/schematics → schematics}/components/files/textarea/textarea.component.spec.ts +0 -0
- /package/{src/schematics → schematics}/components/files/textarea/textarea.component.ts +0 -0
- /package/{src/schematics → schematics}/components/index.ts +0 -0
- /package/{src/schematics → schematics}/components/templates/README.md.template +0 -0
- /package/{src/schematics → schematics}/ng-add/schema.json +0 -0
- /package/{src/types → types}/generator-schema-base.interface.ts +0 -0
- /package/{src/types → types}/index.ts +0 -0
- /package/{src/types → types}/schematics-folder.type.ts +0 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|