i-tech-shared-components 1.1.3 → 1.1.5

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 (34) hide show
  1. package/package.json +1 -1
  2. package/docs/README.md +0 -80
  3. package/docs/components/autocomplete-select/autocomplete-select.component/README.md +0 -13
  4. package/docs/components/autocomplete-select/autocomplete-select.component/classes/AutocompleteSelectComponent.md +0 -793
  5. package/docs/components/button/button.component/README.md +0 -13
  6. package/docs/components/button/button.component/classes/ButtonComponent.md +0 -191
  7. package/docs/components/button/button.component.spec/README.md +0 -7
  8. package/docs/components/clear-value/clear-value.component/README.md +0 -13
  9. package/docs/components/clear-value/clear-value.component/classes/ClearValueComponent.md +0 -47
  10. package/docs/components/date-picker/date-picker.component/README.md +0 -13
  11. package/docs/components/date-picker/date-picker.component/classes/DatePickerComponent.md +0 -253
  12. package/docs/components/date-range-datepicker/date-range-datepicker.component/README.md +0 -13
  13. package/docs/components/date-range-datepicker/date-range-datepicker.component/classes/DateRangeDatepickerComponent.md +0 -341
  14. package/docs/components/icon-button/icon-button.component/README.md +0 -13
  15. package/docs/components/icon-button/icon-button.component/classes/IconButtonComponent.md +0 -107
  16. package/docs/components/label/label.component/README.md +0 -13
  17. package/docs/components/label/label.component/classes/LabelComponent.md +0 -97
  18. package/docs/components/menu/menu.component/README.md +0 -13
  19. package/docs/components/menu/menu.component/classes/MenuComponent.md +0 -139
  20. package/docs/components/text/text-input.component/README.md +0 -13
  21. package/docs/components/text/text-input.component/classes/TextInputComponent.md +0 -133
  22. package/docs/interfaces/app-input.interface/README.md +0 -13
  23. package/docs/interfaces/app-input.interface/interfaces/AppInputInterface.md +0 -297
  24. package/docs/interfaces/autocomplete-configs.interface/README.md +0 -13
  25. package/docs/interfaces/autocomplete-configs.interface/interfaces/AutocompleteConfigsInterface.md +0 -357
  26. package/docs/interfaces/button-types.enum/README.md +0 -13
  27. package/docs/interfaces/button-types.enum/enumerations/ButtonType.md +0 -69
  28. package/docs/interfaces/dropdown-selection.constants/README.md +0 -17
  29. package/docs/interfaces/dropdown-selection.constants/enumerations/DropdownSelectionType.md +0 -37
  30. package/docs/interfaces/dropdown-selection.constants/variables/DropdownItemIcon.md +0 -27
  31. package/docs/interfaces/label-type.enum/README.md +0 -13
  32. package/docs/interfaces/label-type.enum/enumerations/LabelTypeEnum.md +0 -127
  33. package/docs/services/input.service/README.md +0 -13
  34. package/docs/services/input.service/classes/InputService.md +0 -31
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i-tech-shared-components",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^18.2.14",
6
6
  "@angular/material": "^18.2.14",
package/docs/README.md DELETED
@@ -1,80 +0,0 @@
1
- **i-tech-shared-components**
2
-
3
- ***
4
-
5
- # i-tech-shared-components
6
-
7
- ## Modules
8
-
9
- - [docs/components/autocomplete-select/autocomplete-select.component](components/autocomplete-select/autocomplete-select.component/README.md)
10
- - [docs/components/button/button.component](components/button/button.component/README.md)
11
- - [docs/components/clear-value/clear-value.component](components/clear-value/clear-value.component/README.md)
12
- - [docs/components/date-picker/date-picker.component](components/date-picker/date-picker.component/README.md)
13
- - [docs/components/date-range-datepicker/date-range-datepicker.component](components/date-range-datepicker/date-range-datepicker.component/README.md)
14
- - [docs/components/icon-button/icon-button.component](components/icon-button/icon-button.component/README.md)
15
- - [docs/components/label/label.component](components/label/label.component/README.md)
16
- - [docs/components/menu/menu.component](components/menu/menu.component/README.md)
17
- - [docs/components/text/text-input.component](components/text/text-input.component/README.md)
18
- - [docs/interfaces/app-input.interface](interfaces/app-input.interface/README.md)
19
- - [docs/interfaces/autocomplete-configs.interface](interfaces/autocomplete-configs.interface/README.md)
20
- - [docs/interfaces/button-types.enum](interfaces/button-types.enum/README.md)
21
- - [docs/interfaces/dropdown-selection.constants](interfaces/dropdown-selection.constants/README.md)
22
- - [docs/interfaces/label-type.enum](interfaces/label-type.enum/README.md)
23
- - [docs/services/input.service](services/input.service/README.md)
24
-
25
-
26
- ## Example
27
-
28
-
29
- #### **Code Blocks**
30
- ```markdown
31
- Here shown example how can use components
32
- ```
33
- ### Button Component
34
- ```html
35
- <i-tech-button
36
- (buttonClick)="handleClick()"
37
- [customClass]="'your-custom-class'"
38
- [text]="'Click me'"
39
- [disabled]="false"
40
- [submit]="false"
41
- [icon]="'add'">
42
- </i-tech-button>
43
-
44
-
45
-
46
- #### **Tables**
47
- ```markdown
48
- | Input | Type | Default | Description |
49
- |------------|-----------|----------|---------------------------------------------------------------------------------|
50
- | `type` | `string` | `FILLED` | Button type (e.g., FILLED, TEXT). |
51
- | `disabled` | `boolean` | `false` | Disables the button when true. |
52
- | `icon` | `string` | `add` | Set a material or font icon, also you can register and submit your own SVG. |
53
-
54
- ```
55
- ### Icon Button Component
56
- ```html
57
- <i-tech-icon-button
58
- (buttonClick)="handleClick()"
59
- [iconName]="'add'"
60
- [tooltip]="'show info'"
61
- [size]="'small'">
62
- </i-tech-icon-button>
63
-
64
-
65
-
66
- #### **Tables**
67
- ```markdown
68
- | Input | Type | Default | Description |
69
- |------------|-----------|----------|---------------------------------------------------------------------------------|
70
- | `type` | `string` | `FILLED` | Button type (e.g., FILLED, TEXT). |
71
- | `size` | `string` | `FILLED` | Button size (medium, small). |
72
- | `disabled` | `boolean` | `false` | Disables the button when true. |
73
- | `iconName` | `string` | `add` | Set a material or font icon. |
74
- | `iconSvg` | `string` | `add` | You can register and submit your own SVG. |
75
- | `tooltip` | `string` | `add` | Information about work of icon button.
76
-
77
- ```markdown
78
- | Output | Type | Default | Description |
79
- |--------------|------------|----------|------------------------------------------------------------------------------|
80
- | `buttonClick`| `void` | `void` | For output and handle icon click. | |
@@ -1,13 +0,0 @@
1
- [**i-tech-shared-components**](../../../README.md)
2
-
3
- ***
4
-
5
- [i-tech-shared-components](../../../README.md) / components/autocomplete-select/autocomplete-select.component
6
-
7
- # components/autocomplete-select/autocomplete-select.component
8
-
9
- ## Index
10
-
11
- ### Classes
12
-
13
- - [AutocompleteSelectComponent](classes/AutocompleteSelectComponent.md)