@vality/matez 20.0.1-c049440.0 → 21.0.1-b340479.0

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.
Files changed (40) hide show
  1. package/README.md +64 -0
  2. package/fesm2022/vality-matez.mjs +1336 -887
  3. package/fesm2022/vality-matez.mjs.map +1 -1
  4. package/package.json +28 -25
  5. package/{index.d.ts → types/vality-matez.d.ts} +319 -82
  6. package/_index.scss +0 -9
  7. package/src/lib/components/actions/actions.component.scss +0 -20
  8. package/src/lib/components/content-loading/content-loading.component.scss +0 -26
  9. package/src/lib/components/date-range-field/date-range-field.component.scss +0 -19
  10. package/src/lib/components/datetime-field/datetime-field.component.scss +0 -11
  11. package/src/lib/components/dialog/_dialog-theme.scss +0 -9
  12. package/src/lib/components/dialog/dialog.component.scss +0 -71
  13. package/src/lib/components/error-page/error-page.component.scss +0 -19
  14. package/src/lib/components/file-upload/file-upload.component.scss +0 -16
  15. package/src/lib/components/filters/components/filters-dialog/filters-dialog.component.scss +0 -19
  16. package/src/lib/components/filters/components/more-filters-button/more-filters-button.component.scss +0 -0
  17. package/src/lib/components/filters/filters.component.scss +0 -24
  18. package/src/lib/components/input-field/_input-field-theme.scss +0 -7
  19. package/src/lib/components/input-field/input-field.component.scss +0 -21
  20. package/src/lib/components/nav/_nav-theme.scss +0 -33
  21. package/src/lib/components/nav/nav.component.scss +0 -32
  22. package/src/lib/components/number-range-field/number-range-field.component.scss +0 -5
  23. package/src/lib/components/select-autocomplete/autocomplete-field/autocomplete-field.component.scss +0 -5
  24. package/src/lib/components/select-autocomplete/select-field/select-field.component.scss +0 -26
  25. package/src/lib/components/table/_table-theme.scss +0 -11
  26. package/src/lib/components/table/components/table-info-bar/table-info-bar.component.scss +0 -49
  27. package/src/lib/components/table/table.component.scss +0 -84
  28. package/src/lib/components/tag/_tag-theme.scss +0 -30
  29. package/src/lib/components/tag/tag.component.scss +0 -40
  30. package/src/lib/components/value/_value-theme.scss +0 -10
  31. package/src/lib/components/value/value.component.scss +0 -42
  32. package/src/lib/services/toast/toast.component.scss +0 -13
  33. package/src/lib/styles/_all-component-themes.scss +0 -23
  34. package/src/lib/styles/_app.scss +0 -10
  35. package/src/lib/styles/_core.scss +0 -8
  36. package/src/lib/styles/_mat-component-variants.scss +0 -65
  37. package/src/lib/styles/_select-theme.scss +0 -6
  38. package/src/lib/styles/_typography-hierarchy.scss +0 -37
  39. package/src/lib/styles/_v-tokens.scss +0 -11
  40. package/src/lib/styles/utils/create-palette.scss +0 -84
package/README.md CHANGED
@@ -6,3 +6,67 @@ Core is a custom library designed to enhance and streamline Angular application
6
6
  - Dialog
7
7
  - Tag
8
8
  - Value
9
+ - ...and others
10
+
11
+ > This project was generated using [Angular CLI](https://github.com/angular/angular-cli).
12
+
13
+ ## Code scaffolding
14
+
15
+ Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
16
+
17
+ ```bash
18
+ ng generate component component-name
19
+ ```
20
+
21
+ For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
22
+
23
+ ```bash
24
+ ng generate --help
25
+ ```
26
+
27
+ ## Building
28
+
29
+ To build the library, run:
30
+
31
+ ```bash
32
+ ng build matez
33
+ ```
34
+
35
+ This command will compile your project, and the build artifacts will be placed in the `dist/` directory.
36
+
37
+ ### Publishing the Library
38
+
39
+ Once the project is built, you can publish your library by following these steps:
40
+
41
+ 1. Navigate to the `dist` directory:
42
+
43
+ ```bash
44
+ cd dist/matez
45
+ ```
46
+
47
+ 2. Run the `npm publish` command to publish your library to the npm registry:
48
+ ```bash
49
+ npm publish
50
+ ```
51
+
52
+ ## Running unit tests
53
+
54
+ To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
55
+
56
+ ```bash
57
+ ng test
58
+ ```
59
+
60
+ ## Running end-to-end tests
61
+
62
+ For end-to-end (e2e) testing, run:
63
+
64
+ ```bash
65
+ ng e2e
66
+ ```
67
+
68
+ Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
69
+
70
+ ## Additional Resources
71
+
72
+ For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.