i-tech-shared-components 1.1.6 → 1.1.9
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/.npmignore +2 -0
- package/README.md +23 -23
- package/esm2022/i-tech-shared-components.mjs +5 -0
- package/esm2022/lib/components/autocomplete-select/autocomplete-select.component.mjs +409 -0
- package/esm2022/lib/components/button/button.component.mjs +122 -0
- package/esm2022/lib/components/clear-value/clear-value.component.mjs +34 -0
- package/esm2022/lib/components/date-picker/date-picker.component.mjs +111 -0
- package/esm2022/lib/components/date-range-datepicker/date-range-datepicker.component.mjs +118 -0
- package/esm2022/lib/components/icon-button/icon-button.component.mjs +49 -0
- package/esm2022/lib/components/menu/menu.component.mjs +51 -0
- package/esm2022/lib/components/text/text-input.component.mjs +73 -0
- package/esm2022/lib/directives/date-mask.directive.mjs +92 -0
- package/esm2022/lib/directives/input-mask.directive.mjs +92 -0
- package/esm2022/lib/interfaces/app-input.interface.mjs +2 -0
- package/esm2022/lib/interfaces/autocomplete-configs.interface.mjs +2 -0
- package/esm2022/lib/interfaces/button-types.enum.mjs +17 -0
- package/esm2022/lib/interfaces/dropdown-selection.constants.mjs +12 -0
- package/esm2022/lib/pipes/array-to-string.pipe.mjs +17 -0
- package/esm2022/lib/pipes/generate-error-messages.pipe.mjs +31 -0
- package/esm2022/lib/pipes/get-value-by-key-from-object.pipe.mjs +45 -0
- package/esm2022/lib/services/input.service.mjs +29 -0
- package/esm2022/public-api.mjs +20 -0
- package/fesm2022/i-tech-shared-components.mjs +1216 -0
- package/fesm2022/i-tech-shared-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/autocomplete-select/autocomplete-select.component.d.ts +84 -0
- package/lib/components/button/button.component.d.ts +65 -0
- package/lib/components/clear-value/clear-value.component.d.ts +9 -0
- package/lib/components/date-picker/date-picker.component.d.ts +35 -0
- package/lib/components/date-range-datepicker/date-range-datepicker.component.d.ts +36 -0
- package/lib/components/icon-button/icon-button.component.d.ts +14 -0
- package/lib/components/menu/menu.component.d.ts +28 -0
- package/lib/components/text/text-input.component.d.ts +21 -0
- package/lib/directives/date-mask.directive.d.ts +25 -0
- package/lib/directives/input-mask.directive.d.ts +21 -0
- package/lib/interfaces/app-input.interface.d.ts +31 -0
- package/lib/interfaces/autocomplete-configs.interface.d.ts +37 -0
- package/lib/interfaces/button-types.enum.d.ts +15 -0
- package/lib/interfaces/dropdown-selection.constants.d.ts +10 -0
- package/lib/pipes/array-to-string.pipe.d.ts +7 -0
- package/lib/pipes/generate-error-messages.pipe.d.ts +10 -0
- package/lib/pipes/get-value-by-key-from-object.pipe.d.ts +7 -0
- package/lib/services/input.service.d.ts +7 -0
- package/package.json +32 -19
- package/{src/public-api.ts → public-api.d.ts} +16 -20
- package/theme/_buttons.scss +63 -63
- package/theme/_color_themes.scss +136 -136
- package/theme/_date_picker.scss +77 -77
- package/theme/_form_fields.scss +112 -112
- package/theme/_icon-button.scss +123 -123
- package/theme/_label.scss +119 -119
- package/theme/_mat-selects.scss +248 -248
- package/theme/_menu.scss +9 -9
- package/theme/_text_input.scss +28 -28
- package/theme/variables/_colors.scss +20 -20
- package/theme.scss +31 -33
- package/docs/README.md +0 -87
- package/docs/components/autocomplete-select/autocomplete-select.component/README.md +0 -13
- package/docs/components/autocomplete-select/autocomplete-select.component/classes/AutocompleteSelectComponent.md +0 -793
- package/docs/components/button/button.component/README.md +0 -13
- package/docs/components/button/button.component/classes/ButtonComponent.md +0 -191
- package/docs/components/button/button.component.spec/README.md +0 -7
- package/docs/components/clear-value/clear-value.component/README.md +0 -13
- package/docs/components/clear-value/clear-value.component/classes/ClearValueComponent.md +0 -47
- package/docs/components/date-picker/date-picker.component/README.md +0 -13
- package/docs/components/date-picker/date-picker.component/classes/DatePickerComponent.md +0 -253
- package/docs/components/date-range-datepicker/date-range-datepicker.component/README.md +0 -13
- package/docs/components/date-range-datepicker/date-range-datepicker.component/classes/DateRangeDatepickerComponent.md +0 -341
- package/docs/components/icon-button/icon-button.component/README.md +0 -13
- package/docs/components/icon-button/icon-button.component/classes/IconButtonComponent.md +0 -107
- package/docs/components/label/label.component/README.md +0 -13
- package/docs/components/label/label.component/classes/LabelComponent.md +0 -97
- package/docs/components/menu/menu.component/README.md +0 -13
- package/docs/components/menu/menu.component/classes/MenuComponent.md +0 -139
- package/docs/components/text/text-input.component/README.md +0 -13
- package/docs/components/text/text-input.component/classes/TextInputComponent.md +0 -133
- package/docs/interfaces/app-input.interface/README.md +0 -13
- package/docs/interfaces/app-input.interface/interfaces/AppInputInterface.md +0 -297
- package/docs/interfaces/autocomplete-configs.interface/README.md +0 -13
- package/docs/interfaces/autocomplete-configs.interface/interfaces/AutocompleteConfigsInterface.md +0 -357
- package/docs/interfaces/button-types.enum/README.md +0 -13
- package/docs/interfaces/button-types.enum/enumerations/ButtonType.md +0 -69
- package/docs/interfaces/dropdown-selection.constants/README.md +0 -17
- package/docs/interfaces/dropdown-selection.constants/enumerations/DropdownSelectionType.md +0 -37
- package/docs/interfaces/dropdown-selection.constants/variables/DropdownItemIcon.md +0 -27
- package/docs/interfaces/label-type.enum/README.md +0 -13
- package/docs/interfaces/label-type.enum/enumerations/LabelTypeEnum.md +0 -127
- package/docs/services/input.service/README.md +0 -13
- package/docs/services/input.service/classes/InputService.md +0 -31
- package/ng-package.json +0 -17
- package/src/README.md +0 -0
- package/src/lib/components/autocomplete-select/autocomplete-select.component.html +0 -211
- package/src/lib/components/autocomplete-select/autocomplete-select.component.scss +0 -58
- package/src/lib/components/autocomplete-select/autocomplete-select.component.ts +0 -430
- package/src/lib/components/autocomplete-select/loader.svg +0 -6
- package/src/lib/components/button/button.component.css +0 -0
- package/src/lib/components/button/button.component.html +0 -48
- package/src/lib/components/button/button.component.spec.ts +0 -23
- package/src/lib/components/button/button.component.ts +0 -106
- package/src/lib/components/clear-value/clear-value.component.ts +0 -44
- package/src/lib/components/date-picker/date-picker.component.html +0 -61
- package/src/lib/components/date-picker/date-picker.component.ts +0 -75
- package/src/lib/components/date-range-datepicker/date-range-datepicker.component.html +0 -44
- package/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts +0 -105
- package/src/lib/components/icon-button/icon-button.component.html +0 -27
- package/src/lib/components/icon-button/icon-button.component.scss +0 -0
- package/src/lib/components/icon-button/icon-button.component.ts +0 -37
- package/src/lib/components/label/label.component.html +0 -15
- package/src/lib/components/label/label.component.ts +0 -33
- package/src/lib/components/menu/menu.component.html +0 -20
- package/src/lib/components/menu/menu.component.scss +0 -9
- package/src/lib/components/menu/menu.component.ts +0 -39
- package/src/lib/components/text/text-input.component.html +0 -91
- package/src/lib/components/text/text-input.component.ts +0 -73
- package/src/lib/directives/date-mask.directive.ts +0 -97
- package/src/lib/directives/input-mask.directive.ts +0 -93
- package/src/lib/interfaces/app-input.interface.ts +0 -32
- package/src/lib/interfaces/autocomplete-configs.interface.ts +0 -37
- package/src/lib/interfaces/button-types.enum.ts +0 -19
- package/src/lib/interfaces/dropdown-selection.constants.ts +0 -11
- package/src/lib/interfaces/label-type.enum.ts +0 -14
- package/src/lib/pipes/array-to-string.pipe.ts +0 -13
- package/src/lib/pipes/generate-error-messages.pipe.ts +0 -31
- package/src/lib/pipes/get-value-by-key-from-object.pipe.ts +0 -46
- package/src/lib/services/input.service.ts +0 -30
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -11
- package/tsconfig.spec.json +0 -15
|
@@ -1,341 +0,0 @@
|
|
|
1
|
-
[**i-tech-shared-components**](../../../../README.md)
|
|
2
|
-
|
|
3
|
-
***
|
|
4
|
-
|
|
5
|
-
[i-tech-shared-components](../../../../README.md) / [components/date-range-datepicker/date-range-datepicker.component](../README.md) / DateRangeDatepickerComponent
|
|
6
|
-
|
|
7
|
-
# Class: DateRangeDatepickerComponent
|
|
8
|
-
|
|
9
|
-
## Implements
|
|
10
|
-
|
|
11
|
-
- `OnChanges`
|
|
12
|
-
- `AfterViewInit`
|
|
13
|
-
|
|
14
|
-
## Constructors
|
|
15
|
-
|
|
16
|
-
### new DateRangeDatepickerComponent()
|
|
17
|
-
|
|
18
|
-
> **new DateRangeDatepickerComponent**(): [`DateRangeDatepickerComponent`](DateRangeDatepickerComponent.md)
|
|
19
|
-
|
|
20
|
-
#### Returns
|
|
21
|
-
|
|
22
|
-
[`DateRangeDatepickerComponent`](DateRangeDatepickerComponent.md)
|
|
23
|
-
|
|
24
|
-
## Properties
|
|
25
|
-
|
|
26
|
-
### clearValue
|
|
27
|
-
|
|
28
|
-
> **clearValue**: `boolean` = `true`
|
|
29
|
-
|
|
30
|
-
#### Defined in
|
|
31
|
-
|
|
32
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:39](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L39)
|
|
33
|
-
|
|
34
|
-
***
|
|
35
|
-
|
|
36
|
-
### customErrorStateMatcher
|
|
37
|
-
|
|
38
|
-
> **customErrorStateMatcher**: `object`
|
|
39
|
-
|
|
40
|
-
#### isErrorState()
|
|
41
|
-
|
|
42
|
-
> **isErrorState**: (`control`, `form`) => `boolean`
|
|
43
|
-
|
|
44
|
-
##### Parameters
|
|
45
|
-
|
|
46
|
-
###### control
|
|
47
|
-
|
|
48
|
-
`any`
|
|
49
|
-
|
|
50
|
-
###### form
|
|
51
|
-
|
|
52
|
-
`any`
|
|
53
|
-
|
|
54
|
-
##### Returns
|
|
55
|
-
|
|
56
|
-
`boolean`
|
|
57
|
-
|
|
58
|
-
#### Defined in
|
|
59
|
-
|
|
60
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:88](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L88)
|
|
61
|
-
|
|
62
|
-
***
|
|
63
|
-
|
|
64
|
-
### dateRangeForm
|
|
65
|
-
|
|
66
|
-
> **dateRangeForm**: `UntypedFormGroup`
|
|
67
|
-
|
|
68
|
-
#### Defined in
|
|
69
|
-
|
|
70
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:49](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L49)
|
|
71
|
-
|
|
72
|
-
***
|
|
73
|
-
|
|
74
|
-
### defaultValue?
|
|
75
|
-
|
|
76
|
-
> `optional` **defaultValue**: `Date`[]
|
|
77
|
-
|
|
78
|
-
#### Defined in
|
|
79
|
-
|
|
80
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:36](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L36)
|
|
81
|
-
|
|
82
|
-
***
|
|
83
|
-
|
|
84
|
-
### errorMessage
|
|
85
|
-
|
|
86
|
-
> **errorMessage**: `string` = `''`
|
|
87
|
-
|
|
88
|
-
#### Defined in
|
|
89
|
-
|
|
90
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:40](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L40)
|
|
91
|
-
|
|
92
|
-
***
|
|
93
|
-
|
|
94
|
-
### hintText
|
|
95
|
-
|
|
96
|
-
> **hintText**: `string` = `'MM/DD/YYYY - MM/DD/YYYY'`
|
|
97
|
-
|
|
98
|
-
#### Defined in
|
|
99
|
-
|
|
100
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:42](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L42)
|
|
101
|
-
|
|
102
|
-
***
|
|
103
|
-
|
|
104
|
-
### isOpen
|
|
105
|
-
|
|
106
|
-
> **isOpen**: `boolean` = `false`
|
|
107
|
-
|
|
108
|
-
#### Defined in
|
|
109
|
-
|
|
110
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:47](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L47)
|
|
111
|
-
|
|
112
|
-
***
|
|
113
|
-
|
|
114
|
-
### key?
|
|
115
|
-
|
|
116
|
-
> `optional` **key**: `object`
|
|
117
|
-
|
|
118
|
-
#### end
|
|
119
|
-
|
|
120
|
-
> **end**: `string`
|
|
121
|
-
|
|
122
|
-
#### start
|
|
123
|
-
|
|
124
|
-
> **start**: `string`
|
|
125
|
-
|
|
126
|
-
#### title
|
|
127
|
-
|
|
128
|
-
> **title**: `string`
|
|
129
|
-
|
|
130
|
-
#### Defined in
|
|
131
|
-
|
|
132
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:37](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L37)
|
|
133
|
-
|
|
134
|
-
***
|
|
135
|
-
|
|
136
|
-
### label?
|
|
137
|
-
|
|
138
|
-
> `optional` **label**: `string`
|
|
139
|
-
|
|
140
|
-
#### Defined in
|
|
141
|
-
|
|
142
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:33](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L33)
|
|
143
|
-
|
|
144
|
-
***
|
|
145
|
-
|
|
146
|
-
### min
|
|
147
|
-
|
|
148
|
-
> **min**: `ElementRef`\<`any`\>
|
|
149
|
-
|
|
150
|
-
#### Defined in
|
|
151
|
-
|
|
152
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:46](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L46)
|
|
153
|
-
|
|
154
|
-
***
|
|
155
|
-
|
|
156
|
-
### onePlaceholder?
|
|
157
|
-
|
|
158
|
-
> `optional` **onePlaceholder**: `string`
|
|
159
|
-
|
|
160
|
-
#### Defined in
|
|
161
|
-
|
|
162
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:41](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L41)
|
|
163
|
-
|
|
164
|
-
***
|
|
165
|
-
|
|
166
|
-
### picker
|
|
167
|
-
|
|
168
|
-
> **picker**: `MatDateRangePicker`\<`any`\>
|
|
169
|
-
|
|
170
|
-
#### Defined in
|
|
171
|
-
|
|
172
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:45](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L45)
|
|
173
|
-
|
|
174
|
-
***
|
|
175
|
-
|
|
176
|
-
### placeholder?
|
|
177
|
-
|
|
178
|
-
> `optional` **placeholder**: `string`[]
|
|
179
|
-
|
|
180
|
-
#### Defined in
|
|
181
|
-
|
|
182
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:34](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L34)
|
|
183
|
-
|
|
184
|
-
***
|
|
185
|
-
|
|
186
|
-
### resetForm
|
|
187
|
-
|
|
188
|
-
> **resetForm**: `EventEmitter`\<`any`\>
|
|
189
|
-
|
|
190
|
-
#### Defined in
|
|
191
|
-
|
|
192
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:43](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L43)
|
|
193
|
-
|
|
194
|
-
***
|
|
195
|
-
|
|
196
|
-
### selectionChange
|
|
197
|
-
|
|
198
|
-
> **selectionChange**: `EventEmitter`\<`any`\>
|
|
199
|
-
|
|
200
|
-
#### Defined in
|
|
201
|
-
|
|
202
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:44](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L44)
|
|
203
|
-
|
|
204
|
-
***
|
|
205
|
-
|
|
206
|
-
### submit
|
|
207
|
-
|
|
208
|
-
> **submit**: `boolean` = `false`
|
|
209
|
-
|
|
210
|
-
#### Defined in
|
|
211
|
-
|
|
212
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:38](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L38)
|
|
213
|
-
|
|
214
|
-
***
|
|
215
|
-
|
|
216
|
-
### value?
|
|
217
|
-
|
|
218
|
-
> `optional` **value**: (`null` \| `string`)[]
|
|
219
|
-
|
|
220
|
-
#### Defined in
|
|
221
|
-
|
|
222
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:35](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L35)
|
|
223
|
-
|
|
224
|
-
## Methods
|
|
225
|
-
|
|
226
|
-
### clickForFocusOut()
|
|
227
|
-
|
|
228
|
-
> **clickForFocusOut**(): `void`
|
|
229
|
-
|
|
230
|
-
#### Returns
|
|
231
|
-
|
|
232
|
-
`void`
|
|
233
|
-
|
|
234
|
-
#### Defined in
|
|
235
|
-
|
|
236
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:81](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L81)
|
|
237
|
-
|
|
238
|
-
***
|
|
239
|
-
|
|
240
|
-
### keyEventHandler()
|
|
241
|
-
|
|
242
|
-
> **keyEventHandler**(`event`, `value`, `element`): `void`
|
|
243
|
-
|
|
244
|
-
#### Parameters
|
|
245
|
-
|
|
246
|
-
##### event
|
|
247
|
-
|
|
248
|
-
`KeyboardEvent`
|
|
249
|
-
|
|
250
|
-
##### value
|
|
251
|
-
|
|
252
|
-
(`null` \| `string`)[]
|
|
253
|
-
|
|
254
|
-
##### element
|
|
255
|
-
|
|
256
|
-
`any`
|
|
257
|
-
|
|
258
|
-
#### Returns
|
|
259
|
-
|
|
260
|
-
`void`
|
|
261
|
-
|
|
262
|
-
#### Defined in
|
|
263
|
-
|
|
264
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:99](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L99)
|
|
265
|
-
|
|
266
|
-
***
|
|
267
|
-
|
|
268
|
-
### ngAfterViewInit()
|
|
269
|
-
|
|
270
|
-
> **ngAfterViewInit**(): `void`
|
|
271
|
-
|
|
272
|
-
A callback method that is invoked immediately after
|
|
273
|
-
Angular has completed initialization of a component's view.
|
|
274
|
-
It is invoked only once when the view is instantiated.
|
|
275
|
-
|
|
276
|
-
#### Returns
|
|
277
|
-
|
|
278
|
-
`void`
|
|
279
|
-
|
|
280
|
-
#### Implementation of
|
|
281
|
-
|
|
282
|
-
`AfterViewInit.ngAfterViewInit`
|
|
283
|
-
|
|
284
|
-
#### Defined in
|
|
285
|
-
|
|
286
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:54](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L54)
|
|
287
|
-
|
|
288
|
-
***
|
|
289
|
-
|
|
290
|
-
### ngOnChanges()
|
|
291
|
-
|
|
292
|
-
> **ngOnChanges**(`changes`): `void`
|
|
293
|
-
|
|
294
|
-
A callback method that is invoked immediately after the
|
|
295
|
-
default change detector has checked data-bound properties
|
|
296
|
-
if at least one has changed, and before the view and content
|
|
297
|
-
children are checked.
|
|
298
|
-
|
|
299
|
-
#### Parameters
|
|
300
|
-
|
|
301
|
-
##### changes
|
|
302
|
-
|
|
303
|
-
`SimpleChanges`
|
|
304
|
-
|
|
305
|
-
The changed properties.
|
|
306
|
-
|
|
307
|
-
#### Returns
|
|
308
|
-
|
|
309
|
-
`void`
|
|
310
|
-
|
|
311
|
-
#### Implementation of
|
|
312
|
-
|
|
313
|
-
`OnChanges.ngOnChanges`
|
|
314
|
-
|
|
315
|
-
#### Defined in
|
|
316
|
-
|
|
317
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:65](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L65)
|
|
318
|
-
|
|
319
|
-
***
|
|
320
|
-
|
|
321
|
-
### setDate()
|
|
322
|
-
|
|
323
|
-
> **setDate**(`value`, `element`): `void`
|
|
324
|
-
|
|
325
|
-
#### Parameters
|
|
326
|
-
|
|
327
|
-
##### value
|
|
328
|
-
|
|
329
|
-
(`null` \| `string`)[]
|
|
330
|
-
|
|
331
|
-
##### element
|
|
332
|
-
|
|
333
|
-
`any`
|
|
334
|
-
|
|
335
|
-
#### Returns
|
|
336
|
-
|
|
337
|
-
`void`
|
|
338
|
-
|
|
339
|
-
#### Defined in
|
|
340
|
-
|
|
341
|
-
[components/date-range-datepicker/date-range-datepicker.component.ts:94](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-range-datepicker/date-range-datepicker.component.ts#L94)
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
[**i-tech-shared-components**](../../../README.md)
|
|
2
|
-
|
|
3
|
-
***
|
|
4
|
-
|
|
5
|
-
[i-tech-shared-components](../../../README.md) / components/icon-button/icon-button.component
|
|
6
|
-
|
|
7
|
-
# components/icon-button/icon-button.component
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Classes
|
|
12
|
-
|
|
13
|
-
- [IconButtonComponent](classes/IconButtonComponent.md)
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
[**i-tech-shared-components**](../../../../README.md)
|
|
2
|
-
|
|
3
|
-
***
|
|
4
|
-
|
|
5
|
-
[i-tech-shared-components](../../../../README.md) / [components/icon-button/icon-button.component](../README.md) / IconButtonComponent
|
|
6
|
-
|
|
7
|
-
# Class: IconButtonComponent
|
|
8
|
-
|
|
9
|
-
## Constructors
|
|
10
|
-
|
|
11
|
-
### new IconButtonComponent()
|
|
12
|
-
|
|
13
|
-
> **new IconButtonComponent**(): [`IconButtonComponent`](IconButtonComponent.md)
|
|
14
|
-
|
|
15
|
-
#### Returns
|
|
16
|
-
|
|
17
|
-
[`IconButtonComponent`](IconButtonComponent.md)
|
|
18
|
-
|
|
19
|
-
## Properties
|
|
20
|
-
|
|
21
|
-
### buttonClick
|
|
22
|
-
|
|
23
|
-
> **buttonClick**: `EventEmitter`\<`void`\>
|
|
24
|
-
|
|
25
|
-
#### Defined in
|
|
26
|
-
|
|
27
|
-
[components/icon-button/icon-button.component.ts:30](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L30)
|
|
28
|
-
|
|
29
|
-
***
|
|
30
|
-
|
|
31
|
-
### disabled
|
|
32
|
-
|
|
33
|
-
> **disabled**: `boolean`
|
|
34
|
-
|
|
35
|
-
#### Defined in
|
|
36
|
-
|
|
37
|
-
[components/icon-button/icon-button.component.ts:29](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L29)
|
|
38
|
-
|
|
39
|
-
***
|
|
40
|
-
|
|
41
|
-
### iconName
|
|
42
|
-
|
|
43
|
-
> **iconName**: `string`
|
|
44
|
-
|
|
45
|
-
#### Defined in
|
|
46
|
-
|
|
47
|
-
[components/icon-button/icon-button.component.ts:27](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L27)
|
|
48
|
-
|
|
49
|
-
***
|
|
50
|
-
|
|
51
|
-
### iconSvg
|
|
52
|
-
|
|
53
|
-
> **iconSvg**: `string`
|
|
54
|
-
|
|
55
|
-
#### Defined in
|
|
56
|
-
|
|
57
|
-
[components/icon-button/icon-button.component.ts:26](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L26)
|
|
58
|
-
|
|
59
|
-
***
|
|
60
|
-
|
|
61
|
-
### size
|
|
62
|
-
|
|
63
|
-
> **size**: `"medium"` \| `"small"` = `'medium'`
|
|
64
|
-
|
|
65
|
-
#### Defined in
|
|
66
|
-
|
|
67
|
-
[components/icon-button/icon-button.component.ts:24](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L24)
|
|
68
|
-
|
|
69
|
-
***
|
|
70
|
-
|
|
71
|
-
### tooltip
|
|
72
|
-
|
|
73
|
-
> **tooltip**: `string`
|
|
74
|
-
|
|
75
|
-
#### Defined in
|
|
76
|
-
|
|
77
|
-
[components/icon-button/icon-button.component.ts:28](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L28)
|
|
78
|
-
|
|
79
|
-
***
|
|
80
|
-
|
|
81
|
-
### type
|
|
82
|
-
|
|
83
|
-
> **type**: `"standard"` \| `"filled"` \| `"tonal"` = `'tonal'`
|
|
84
|
-
|
|
85
|
-
#### Defined in
|
|
86
|
-
|
|
87
|
-
[components/icon-button/icon-button.component.ts:25](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L25)
|
|
88
|
-
|
|
89
|
-
## Methods
|
|
90
|
-
|
|
91
|
-
### onClick()
|
|
92
|
-
|
|
93
|
-
> **onClick**(`event`): `void`
|
|
94
|
-
|
|
95
|
-
#### Parameters
|
|
96
|
-
|
|
97
|
-
##### event
|
|
98
|
-
|
|
99
|
-
`MouseEvent`
|
|
100
|
-
|
|
101
|
-
#### Returns
|
|
102
|
-
|
|
103
|
-
`void`
|
|
104
|
-
|
|
105
|
-
#### Defined in
|
|
106
|
-
|
|
107
|
-
[components/icon-button/icon-button.component.ts:32](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/icon-button/icon-button.component.ts#L32)
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
[**i-tech-shared-components**](../../../README.md)
|
|
2
|
-
|
|
3
|
-
***
|
|
4
|
-
|
|
5
|
-
[i-tech-shared-components](../../../README.md) / components/label/label.component
|
|
6
|
-
|
|
7
|
-
# components/label/label.component
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Classes
|
|
12
|
-
|
|
13
|
-
- [LabelComponent](classes/LabelComponent.md)
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
[**i-tech-shared-components**](../../../../README.md)
|
|
2
|
-
|
|
3
|
-
***
|
|
4
|
-
|
|
5
|
-
[i-tech-shared-components](../../../../README.md) / [components/label/label.component](../README.md) / LabelComponent
|
|
6
|
-
|
|
7
|
-
# Class: LabelComponent
|
|
8
|
-
|
|
9
|
-
## Constructors
|
|
10
|
-
|
|
11
|
-
### new LabelComponent()
|
|
12
|
-
|
|
13
|
-
> **new LabelComponent**(): [`LabelComponent`](LabelComponent.md)
|
|
14
|
-
|
|
15
|
-
#### Returns
|
|
16
|
-
|
|
17
|
-
[`LabelComponent`](LabelComponent.md)
|
|
18
|
-
|
|
19
|
-
## Properties
|
|
20
|
-
|
|
21
|
-
### bordered
|
|
22
|
-
|
|
23
|
-
> **bordered**: `boolean` = `false`
|
|
24
|
-
|
|
25
|
-
#### Defined in
|
|
26
|
-
|
|
27
|
-
[components/label/label.component.ts:25](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L25)
|
|
28
|
-
|
|
29
|
-
***
|
|
30
|
-
|
|
31
|
-
### color
|
|
32
|
-
|
|
33
|
-
> **color**: [`LabelTypeEnum`](../../../../interfaces/label-type.enum/enumerations/LabelTypeEnum.md) = `LabelTypeEnum.primary`
|
|
34
|
-
|
|
35
|
-
#### Defined in
|
|
36
|
-
|
|
37
|
-
[components/label/label.component.ts:23](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L23)
|
|
38
|
-
|
|
39
|
-
***
|
|
40
|
-
|
|
41
|
-
### disableRipple
|
|
42
|
-
|
|
43
|
-
> **disableRipple**: `boolean` = `false`
|
|
44
|
-
|
|
45
|
-
#### Defined in
|
|
46
|
-
|
|
47
|
-
[components/label/label.component.ts:30](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L30)
|
|
48
|
-
|
|
49
|
-
***
|
|
50
|
-
|
|
51
|
-
### iconName?
|
|
52
|
-
|
|
53
|
-
> `optional` **iconName**: `string`
|
|
54
|
-
|
|
55
|
-
#### Defined in
|
|
56
|
-
|
|
57
|
-
[components/label/label.component.ts:28](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L28)
|
|
58
|
-
|
|
59
|
-
***
|
|
60
|
-
|
|
61
|
-
### iconSvg?
|
|
62
|
-
|
|
63
|
-
> `optional` **iconSvg**: `string`
|
|
64
|
-
|
|
65
|
-
#### Defined in
|
|
66
|
-
|
|
67
|
-
[components/label/label.component.ts:29](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L29)
|
|
68
|
-
|
|
69
|
-
***
|
|
70
|
-
|
|
71
|
-
### size
|
|
72
|
-
|
|
73
|
-
> **size**: `"small"` \| `"standard"` = `'standard'`
|
|
74
|
-
|
|
75
|
-
#### Defined in
|
|
76
|
-
|
|
77
|
-
[components/label/label.component.ts:27](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L27)
|
|
78
|
-
|
|
79
|
-
***
|
|
80
|
-
|
|
81
|
-
### text
|
|
82
|
-
|
|
83
|
-
> **text**: `string`
|
|
84
|
-
|
|
85
|
-
#### Defined in
|
|
86
|
-
|
|
87
|
-
[components/label/label.component.ts:24](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L24)
|
|
88
|
-
|
|
89
|
-
***
|
|
90
|
-
|
|
91
|
-
### tooltip?
|
|
92
|
-
|
|
93
|
-
> `optional` **tooltip**: `string`
|
|
94
|
-
|
|
95
|
-
#### Defined in
|
|
96
|
-
|
|
97
|
-
[components/label/label.component.ts:26](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/label/label.component.ts#L26)
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
[**i-tech-shared-components**](../../../README.md)
|
|
2
|
-
|
|
3
|
-
***
|
|
4
|
-
|
|
5
|
-
[i-tech-shared-components](../../../README.md) / components/menu/menu.component
|
|
6
|
-
|
|
7
|
-
# components/menu/menu.component
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Classes
|
|
12
|
-
|
|
13
|
-
- [MenuComponent](classes/MenuComponent.md)
|