i-tech-shared-components 1.1.28 → 1.1.30
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/README.md +26 -26
- package/fesm2022/i-tech-shared-components.mjs +64 -64
- package/fesm2022/i-tech-shared-components.mjs.map +1 -1
- package/lib/components/text/text-input.component.d.ts +2 -3
- package/package.json +13 -14
- package/theme/_ag-grid.scss +95 -95
- package/theme/_buttons.scss +58 -58
- package/theme/_color_themes.scss +136 -136
- package/theme/_date_picker.scss +77 -77
- package/theme/_flex.scss +92 -0
- package/theme/_form_fields.scss +116 -116
- package/theme/_icon-button.scss +123 -123
- package/theme/_label.scss +133 -119
- package/theme/_margin_padding_height_width.scss +143 -0
- package/theme/_mat-selects.scss +266 -266
- package/theme/_material_ovveride.scss +82 -0
- package/theme/_menu.scss +9 -9
- package/theme/_modal_and_cards.scss +56 -0
- package/theme/_text_input.scss +28 -28
- package/theme/_texts.scss +87 -0
- package/theme/variables/_colors.scss +20 -20
- package/theme/variables/_desctop_sizes.scss +8 -0
- package/theme.scss +34 -32
- package/esm2022/i-tech-shared-components.mjs +0 -5
- package/esm2022/lib/components/autocomplete-select/autocomplete-select.component.mjs +0 -420
- package/esm2022/lib/components/button/button.component.mjs +0 -122
- package/esm2022/lib/components/clear-value/clear-value.component.mjs +0 -34
- package/esm2022/lib/components/date-picker/date-picker.component.mjs +0 -117
- package/esm2022/lib/components/date-range-datepicker/date-range-datepicker.component.mjs +0 -118
- package/esm2022/lib/components/icon-button/icon-button.component.mjs +0 -49
- package/esm2022/lib/components/menu/menu.component.mjs +0 -51
- package/esm2022/lib/components/text/text-input.component.mjs +0 -81
- package/esm2022/lib/directives/date-mask.directive.mjs +0 -92
- package/esm2022/lib/directives/input-mask.directive.mjs +0 -95
- package/esm2022/lib/interfaces/app-input.interface.mjs +0 -2
- package/esm2022/lib/interfaces/autocomplete-configs.interface.mjs +0 -2
- package/esm2022/lib/interfaces/button-types.enum.mjs +0 -17
- package/esm2022/lib/interfaces/dropdown-selection.constants.mjs +0 -12
- package/esm2022/lib/pipes/array-to-string.pipe.mjs +0 -17
- package/esm2022/lib/pipes/generate-error-messages.pipe.mjs +0 -29
- package/esm2022/lib/pipes/get-value-by-key-from-object.pipe.mjs +0 -45
- package/esm2022/lib/services/input.service.mjs +0 -35
- package/esm2022/public-api.mjs +0 -20
package/README.md
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
# i-tech-material-shared-components
|
|
2
|
-
|
|
3
|
-
A library of Angular Material-based components designed for seamless integration and scalability.
|
|
4
|
-
|
|
5
|
-
***
|
|
6
|
-
|
|
7
|
-
## Modules
|
|
8
|
-
|
|
9
|
-
- [Main Documentation](https://gitlab.com/a.karapetyan/t3_ui_kit/-/tree/documentation/projects/shared-components/docs)
|
|
10
|
-
|
|
11
|
-
## Installation
|
|
12
|
-
Install the library using npm:
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
npm install i-tech-shared-components
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
Once installed, the cascading stylesheets (CSS) and JavaScript (JS) files will be available in the `node_modules` directory.
|
|
19
|
-
|
|
20
|
-
You can then include them in your project as needed.
|
|
21
|
-
|
|
22
|
-
You will need to import the styles in your global stylesheet:
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
@import "node_modules/i-tech-shared-components/theme.scss";
|
|
26
|
-
```
|
|
1
|
+
# i-tech-material-shared-components
|
|
2
|
+
|
|
3
|
+
A library of Angular Material-based components designed for seamless integration and scalability.
|
|
4
|
+
|
|
5
|
+
***
|
|
6
|
+
|
|
7
|
+
## Modules
|
|
8
|
+
|
|
9
|
+
- [Main Documentation](https://gitlab.com/a.karapetyan/t3_ui_kit/-/tree/documentation/projects/shared-components/docs)
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
Install the library using npm:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install i-tech-shared-components
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Once installed, the cascading stylesheets (CSS) and JavaScript (JS) files will be available in the `node_modules` directory.
|
|
19
|
+
|
|
20
|
+
You can then include them in your project as needed.
|
|
21
|
+
|
|
22
|
+
You will need to import the styles in your global stylesheet:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
@import "node_modules/i-tech-shared-components/theme.scss";
|
|
26
|
+
```
|