i-tech-shared-components 1.0.15 → 1.1.1
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 +1 -52
- package/docs/README.md +80 -0
- package/docs/components/autocomplete-select/autocomplete-select.component/README.md +13 -0
- package/docs/components/autocomplete-select/autocomplete-select.component/classes/AutocompleteSelectComponent.md +793 -0
- package/docs/components/button/button.component/README.md +13 -0
- package/docs/components/button/button.component/classes/ButtonComponent.md +191 -0
- package/docs/components/button/button.component.spec/README.md +7 -0
- package/docs/components/clear-value/clear-value.component/README.md +13 -0
- package/docs/components/clear-value/clear-value.component/classes/ClearValueComponent.md +47 -0
- package/docs/components/date-picker/date-picker.component/README.md +13 -0
- package/docs/components/date-picker/date-picker.component/classes/DatePickerComponent.md +253 -0
- package/docs/components/date-range-datepicker/date-range-datepicker.component/README.md +13 -0
- package/docs/components/date-range-datepicker/date-range-datepicker.component/classes/DateRangeDatepickerComponent.md +341 -0
- package/docs/components/icon-button/icon-button.component/README.md +13 -0
- package/docs/components/icon-button/icon-button.component/classes/IconButtonComponent.md +107 -0
- package/docs/components/label/label.component/README.md +13 -0
- package/docs/components/label/label.component/classes/LabelComponent.md +97 -0
- package/docs/components/menu/menu.component/README.md +13 -0
- package/docs/components/menu/menu.component/classes/MenuComponent.md +139 -0
- package/docs/components/text/text-input.component/README.md +13 -0
- package/docs/components/text/text-input.component/classes/TextInputComponent.md +133 -0
- package/docs/interfaces/app-input.interface/README.md +13 -0
- package/docs/interfaces/app-input.interface/interfaces/AppInputInterface.md +297 -0
- package/docs/interfaces/autocomplete-configs.interface/README.md +13 -0
- package/docs/interfaces/autocomplete-configs.interface/interfaces/AutocompleteConfigsInterface.md +357 -0
- package/docs/interfaces/button-types.enum/README.md +13 -0
- package/docs/interfaces/button-types.enum/enumerations/ButtonType.md +69 -0
- package/docs/interfaces/dropdown-selection.constants/README.md +17 -0
- package/docs/interfaces/dropdown-selection.constants/enumerations/DropdownSelectionType.md +37 -0
- package/docs/interfaces/dropdown-selection.constants/variables/DropdownItemIcon.md +27 -0
- package/docs/interfaces/label-type.enum/README.md +13 -0
- package/docs/interfaces/label-type.enum/enumerations/LabelTypeEnum.md +127 -0
- package/docs/services/input.service/README.md +13 -0
- package/docs/services/input.service/classes/InputService.md +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[**i-tech-shared-components**](../../../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[i-tech-shared-components](../../../README.md) / components/button/button.component
|
|
6
|
+
|
|
7
|
+
# components/button/button.component
|
|
8
|
+
|
|
9
|
+
## Index
|
|
10
|
+
|
|
11
|
+
### Classes
|
|
12
|
+
|
|
13
|
+
- [ButtonComponent](classes/ButtonComponent.md)
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
[**i-tech-shared-components**](../../../../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[i-tech-shared-components](../../../../README.md) / [components/button/button.component](../README.md) / ButtonComponent
|
|
6
|
+
|
|
7
|
+
# Class: ButtonComponent
|
|
8
|
+
|
|
9
|
+
A reusable button component with Material Design styling and custom functionality.
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new ButtonComponent()
|
|
14
|
+
|
|
15
|
+
> **new ButtonComponent**(): [`ButtonComponent`](ButtonComponent.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`ButtonComponent`](ButtonComponent.md)
|
|
20
|
+
|
|
21
|
+
#### Defined in
|
|
22
|
+
|
|
23
|
+
[components/button/button.component.ts:94](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L94)
|
|
24
|
+
|
|
25
|
+
## Properties
|
|
26
|
+
|
|
27
|
+
### activated
|
|
28
|
+
|
|
29
|
+
> **activated**: `boolean` = `false`
|
|
30
|
+
|
|
31
|
+
Indicates whether the button is currently activated.
|
|
32
|
+
|
|
33
|
+
#### Defined in
|
|
34
|
+
|
|
35
|
+
[components/button/button.component.ts:77](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L77)
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### buttonClick
|
|
40
|
+
|
|
41
|
+
> **buttonClick**: `EventEmitter`\<`void`\>
|
|
42
|
+
|
|
43
|
+
Emits an event when the button is clicked.
|
|
44
|
+
|
|
45
|
+
#### Defined in
|
|
46
|
+
|
|
47
|
+
[components/button/button.component.ts:87](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L87)
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### ButtonType
|
|
52
|
+
|
|
53
|
+
> `protected` `readonly` **ButtonType**: *typeof* [`ButtonType`](../../../../interfaces/button-types.enum/enumerations/ButtonType.md)
|
|
54
|
+
|
|
55
|
+
Enum reference for `ButtonType` to use in templates.
|
|
56
|
+
|
|
57
|
+
#### Defined in
|
|
58
|
+
|
|
59
|
+
[components/button/button.component.ts:92](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L92)
|
|
60
|
+
|
|
61
|
+
***
|
|
62
|
+
|
|
63
|
+
### color
|
|
64
|
+
|
|
65
|
+
> **color**: `"primary"` \| `"warn"` = `'primary'`
|
|
66
|
+
|
|
67
|
+
The color of the button (e.g., `primary`, `warn`).
|
|
68
|
+
|
|
69
|
+
#### Defined in
|
|
70
|
+
|
|
71
|
+
[components/button/button.component.ts:82](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L82)
|
|
72
|
+
|
|
73
|
+
***
|
|
74
|
+
|
|
75
|
+
### customClass
|
|
76
|
+
|
|
77
|
+
> **customClass**: `string` = `''`
|
|
78
|
+
|
|
79
|
+
Additional custom classes to style the button.
|
|
80
|
+
|
|
81
|
+
#### Defined in
|
|
82
|
+
|
|
83
|
+
[components/button/button.component.ts:62](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L62)
|
|
84
|
+
|
|
85
|
+
***
|
|
86
|
+
|
|
87
|
+
### data\_cy
|
|
88
|
+
|
|
89
|
+
> **data\_cy**: `string` = `''`
|
|
90
|
+
|
|
91
|
+
Data attribute used for Cypress or other testing frameworks.
|
|
92
|
+
|
|
93
|
+
#### Defined in
|
|
94
|
+
|
|
95
|
+
[components/button/button.component.ts:42](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L42)
|
|
96
|
+
|
|
97
|
+
***
|
|
98
|
+
|
|
99
|
+
### disabled
|
|
100
|
+
|
|
101
|
+
> **disabled**: `boolean` = `false`
|
|
102
|
+
|
|
103
|
+
If true, the button is disabled and cannot be clicked.
|
|
104
|
+
|
|
105
|
+
#### Defined in
|
|
106
|
+
|
|
107
|
+
[components/button/button.component.ts:72](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L72)
|
|
108
|
+
|
|
109
|
+
***
|
|
110
|
+
|
|
111
|
+
### fontIcon
|
|
112
|
+
|
|
113
|
+
> **fontIcon**: `string` = `''`
|
|
114
|
+
|
|
115
|
+
Font icon class for displaying an icon (e.g., Material Icons).
|
|
116
|
+
|
|
117
|
+
#### Defined in
|
|
118
|
+
|
|
119
|
+
[components/button/button.component.ts:47](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L47)
|
|
120
|
+
|
|
121
|
+
***
|
|
122
|
+
|
|
123
|
+
### submit
|
|
124
|
+
|
|
125
|
+
> **submit**: `boolean` = `false`
|
|
126
|
+
|
|
127
|
+
If true, the button acts as a submit button.
|
|
128
|
+
|
|
129
|
+
#### Defined in
|
|
130
|
+
|
|
131
|
+
[components/button/button.component.ts:67](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L67)
|
|
132
|
+
|
|
133
|
+
***
|
|
134
|
+
|
|
135
|
+
### svgIcon
|
|
136
|
+
|
|
137
|
+
> **svgIcon**: `string` = `''`
|
|
138
|
+
|
|
139
|
+
SVG icon name for displaying an SVG icon.
|
|
140
|
+
|
|
141
|
+
#### Defined in
|
|
142
|
+
|
|
143
|
+
[components/button/button.component.ts:52](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L52)
|
|
144
|
+
|
|
145
|
+
***
|
|
146
|
+
|
|
147
|
+
### text
|
|
148
|
+
|
|
149
|
+
> **text**: `string` = `''`
|
|
150
|
+
|
|
151
|
+
The text displayed inside the button.
|
|
152
|
+
|
|
153
|
+
#### Defined in
|
|
154
|
+
|
|
155
|
+
[components/button/button.component.ts:37](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L37)
|
|
156
|
+
|
|
157
|
+
***
|
|
158
|
+
|
|
159
|
+
### type
|
|
160
|
+
|
|
161
|
+
> **type**: [`ButtonType`](../../../../interfaces/button-types.enum/enumerations/ButtonType.md) = `ButtonType.FILLED`
|
|
162
|
+
|
|
163
|
+
Defines the type of button (e.g., `FILLED`, `OUTLINED`).
|
|
164
|
+
|
|
165
|
+
#### Defined in
|
|
166
|
+
|
|
167
|
+
[components/button/button.component.ts:57](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L57)
|
|
168
|
+
|
|
169
|
+
## Methods
|
|
170
|
+
|
|
171
|
+
### onClick()
|
|
172
|
+
|
|
173
|
+
> **onClick**(`event`): `void`
|
|
174
|
+
|
|
175
|
+
Handles the button click event.
|
|
176
|
+
|
|
177
|
+
#### Parameters
|
|
178
|
+
|
|
179
|
+
##### event
|
|
180
|
+
|
|
181
|
+
`MouseEvent`
|
|
182
|
+
|
|
183
|
+
The mouse event triggered by clicking the button.
|
|
184
|
+
|
|
185
|
+
#### Returns
|
|
186
|
+
|
|
187
|
+
`void`
|
|
188
|
+
|
|
189
|
+
#### Defined in
|
|
190
|
+
|
|
191
|
+
[components/button/button.component.ts:101](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/button/button.component.ts#L101)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[**i-tech-shared-components**](../../../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[i-tech-shared-components](../../../README.md) / components/clear-value/clear-value.component
|
|
6
|
+
|
|
7
|
+
# components/clear-value/clear-value.component
|
|
8
|
+
|
|
9
|
+
## Index
|
|
10
|
+
|
|
11
|
+
### Classes
|
|
12
|
+
|
|
13
|
+
- [ClearValueComponent](classes/ClearValueComponent.md)
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
[**i-tech-shared-components**](../../../../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[i-tech-shared-components](../../../../README.md) / [components/clear-value/clear-value.component](../README.md) / ClearValueComponent
|
|
6
|
+
|
|
7
|
+
# Class: ClearValueComponent
|
|
8
|
+
|
|
9
|
+
## Constructors
|
|
10
|
+
|
|
11
|
+
### new ClearValueComponent()
|
|
12
|
+
|
|
13
|
+
> **new ClearValueComponent**(): [`ClearValueComponent`](ClearValueComponent.md)
|
|
14
|
+
|
|
15
|
+
#### Returns
|
|
16
|
+
|
|
17
|
+
[`ClearValueComponent`](ClearValueComponent.md)
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### additionalClass
|
|
22
|
+
|
|
23
|
+
> **additionalClass**: `string`
|
|
24
|
+
|
|
25
|
+
#### Defined in
|
|
26
|
+
|
|
27
|
+
[components/clear-value/clear-value.component.ts:42](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/clear-value/clear-value.component.ts#L42)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### className
|
|
32
|
+
|
|
33
|
+
> **className**: `string`
|
|
34
|
+
|
|
35
|
+
#### Defined in
|
|
36
|
+
|
|
37
|
+
[components/clear-value/clear-value.component.ts:41](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/clear-value/clear-value.component.ts#L41)
|
|
38
|
+
|
|
39
|
+
***
|
|
40
|
+
|
|
41
|
+
### reset
|
|
42
|
+
|
|
43
|
+
> **reset**: `EventEmitter`\<`any`\>
|
|
44
|
+
|
|
45
|
+
#### Defined in
|
|
46
|
+
|
|
47
|
+
[components/clear-value/clear-value.component.ts:43](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/clear-value/clear-value.component.ts#L43)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[**i-tech-shared-components**](../../../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[i-tech-shared-components](../../../README.md) / components/date-picker/date-picker.component
|
|
6
|
+
|
|
7
|
+
# components/date-picker/date-picker.component
|
|
8
|
+
|
|
9
|
+
## Index
|
|
10
|
+
|
|
11
|
+
### Classes
|
|
12
|
+
|
|
13
|
+
- [DatePickerComponent](classes/DatePickerComponent.md)
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
[**i-tech-shared-components**](../../../../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[i-tech-shared-components](../../../../README.md) / [components/date-picker/date-picker.component](../README.md) / DatePickerComponent
|
|
6
|
+
|
|
7
|
+
# Class: DatePickerComponent
|
|
8
|
+
|
|
9
|
+
## Constructors
|
|
10
|
+
|
|
11
|
+
### new DatePickerComponent()
|
|
12
|
+
|
|
13
|
+
> **new DatePickerComponent**(`inputService`): [`DatePickerComponent`](DatePickerComponent.md)
|
|
14
|
+
|
|
15
|
+
#### Parameters
|
|
16
|
+
|
|
17
|
+
##### inputService
|
|
18
|
+
|
|
19
|
+
[`InputService`](../../../../services/input.service/classes/InputService.md)
|
|
20
|
+
|
|
21
|
+
#### Returns
|
|
22
|
+
|
|
23
|
+
[`DatePickerComponent`](DatePickerComponent.md)
|
|
24
|
+
|
|
25
|
+
#### Defined in
|
|
26
|
+
|
|
27
|
+
[components/date-picker/date-picker.component.ts:54](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L54)
|
|
28
|
+
|
|
29
|
+
## Properties
|
|
30
|
+
|
|
31
|
+
### customErrorStateMatcher
|
|
32
|
+
|
|
33
|
+
> **customErrorStateMatcher**: `object`
|
|
34
|
+
|
|
35
|
+
#### isErrorState()
|
|
36
|
+
|
|
37
|
+
> **isErrorState**: (`control`, `form`) => `boolean`
|
|
38
|
+
|
|
39
|
+
##### Parameters
|
|
40
|
+
|
|
41
|
+
###### control
|
|
42
|
+
|
|
43
|
+
`any`
|
|
44
|
+
|
|
45
|
+
###### form
|
|
46
|
+
|
|
47
|
+
`any`
|
|
48
|
+
|
|
49
|
+
##### Returns
|
|
50
|
+
|
|
51
|
+
`boolean`
|
|
52
|
+
|
|
53
|
+
#### Defined in
|
|
54
|
+
|
|
55
|
+
[components/date-picker/date-picker.component.ts:70](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L70)
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### defaultPatternKey
|
|
60
|
+
|
|
61
|
+
> **defaultPatternKey**: `string`
|
|
62
|
+
|
|
63
|
+
#### Defined in
|
|
64
|
+
|
|
65
|
+
[components/date-picker/date-picker.component.ts:34](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L34)
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### focused
|
|
70
|
+
|
|
71
|
+
> **focused**: `boolean` = `false`
|
|
72
|
+
|
|
73
|
+
#### Defined in
|
|
74
|
+
|
|
75
|
+
[components/date-picker/date-picker.component.ts:50](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L50)
|
|
76
|
+
|
|
77
|
+
***
|
|
78
|
+
|
|
79
|
+
### hintText
|
|
80
|
+
|
|
81
|
+
> **hintText**: `string` = `''`
|
|
82
|
+
|
|
83
|
+
#### Defined in
|
|
84
|
+
|
|
85
|
+
[components/date-picker/date-picker.component.ts:36](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L36)
|
|
86
|
+
|
|
87
|
+
***
|
|
88
|
+
|
|
89
|
+
### iconPrefix?
|
|
90
|
+
|
|
91
|
+
> `optional` **iconPrefix**: `string`
|
|
92
|
+
|
|
93
|
+
#### Defined in
|
|
94
|
+
|
|
95
|
+
[components/date-picker/date-picker.component.ts:38](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L38)
|
|
96
|
+
|
|
97
|
+
***
|
|
98
|
+
|
|
99
|
+
### iconPrefixColor?
|
|
100
|
+
|
|
101
|
+
> `optional` **iconPrefixColor**: `string`
|
|
102
|
+
|
|
103
|
+
#### Defined in
|
|
104
|
+
|
|
105
|
+
[components/date-picker/date-picker.component.ts:41](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L41)
|
|
106
|
+
|
|
107
|
+
***
|
|
108
|
+
|
|
109
|
+
### iconPrefixSvg?
|
|
110
|
+
|
|
111
|
+
> `optional` **iconPrefixSvg**: `string`
|
|
112
|
+
|
|
113
|
+
#### Defined in
|
|
114
|
+
|
|
115
|
+
[components/date-picker/date-picker.component.ts:39](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L39)
|
|
116
|
+
|
|
117
|
+
***
|
|
118
|
+
|
|
119
|
+
### iconPrefixTooltip?
|
|
120
|
+
|
|
121
|
+
> `optional` **iconPrefixTooltip**: `string`
|
|
122
|
+
|
|
123
|
+
#### Defined in
|
|
124
|
+
|
|
125
|
+
[components/date-picker/date-picker.component.ts:40](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L40)
|
|
126
|
+
|
|
127
|
+
***
|
|
128
|
+
|
|
129
|
+
### iconPrefixVariant?
|
|
130
|
+
|
|
131
|
+
> `optional` **iconPrefixVariant**: `string`
|
|
132
|
+
|
|
133
|
+
#### Defined in
|
|
134
|
+
|
|
135
|
+
[components/date-picker/date-picker.component.ts:42](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L42)
|
|
136
|
+
|
|
137
|
+
***
|
|
138
|
+
|
|
139
|
+
### inputElement
|
|
140
|
+
|
|
141
|
+
> **inputElement**: `ElementRef`\<`any`\>
|
|
142
|
+
|
|
143
|
+
#### Defined in
|
|
144
|
+
|
|
145
|
+
[components/date-picker/date-picker.component.ts:46](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L46)
|
|
146
|
+
|
|
147
|
+
***
|
|
148
|
+
|
|
149
|
+
### isOpen
|
|
150
|
+
|
|
151
|
+
> **isOpen**: `boolean` = `false`
|
|
152
|
+
|
|
153
|
+
#### Defined in
|
|
154
|
+
|
|
155
|
+
[components/date-picker/date-picker.component.ts:49](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L49)
|
|
156
|
+
|
|
157
|
+
***
|
|
158
|
+
|
|
159
|
+
### label
|
|
160
|
+
|
|
161
|
+
> **label**: `string` = `''`
|
|
162
|
+
|
|
163
|
+
#### Defined in
|
|
164
|
+
|
|
165
|
+
[components/date-picker/date-picker.component.ts:33](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L33)
|
|
166
|
+
|
|
167
|
+
***
|
|
168
|
+
|
|
169
|
+
### ngControl
|
|
170
|
+
|
|
171
|
+
> **ngControl**: `FormControlName`
|
|
172
|
+
|
|
173
|
+
#### Defined in
|
|
174
|
+
|
|
175
|
+
[components/date-picker/date-picker.component.ts:52](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L52)
|
|
176
|
+
|
|
177
|
+
***
|
|
178
|
+
|
|
179
|
+
### placeholder
|
|
180
|
+
|
|
181
|
+
> **placeholder**: `string` = `'MM/DD/YYYY'`
|
|
182
|
+
|
|
183
|
+
#### Defined in
|
|
184
|
+
|
|
185
|
+
[components/date-picker/date-picker.component.ts:37](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L37)
|
|
186
|
+
|
|
187
|
+
***
|
|
188
|
+
|
|
189
|
+
### required
|
|
190
|
+
|
|
191
|
+
> **required**: `boolean` = `false`
|
|
192
|
+
|
|
193
|
+
#### Defined in
|
|
194
|
+
|
|
195
|
+
[components/date-picker/date-picker.component.ts:35](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L35)
|
|
196
|
+
|
|
197
|
+
***
|
|
198
|
+
|
|
199
|
+
### submit
|
|
200
|
+
|
|
201
|
+
> **submit**: `boolean` = `false`
|
|
202
|
+
|
|
203
|
+
#### Defined in
|
|
204
|
+
|
|
205
|
+
[components/date-picker/date-picker.component.ts:45](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L45)
|
|
206
|
+
|
|
207
|
+
***
|
|
208
|
+
|
|
209
|
+
### valueChangeEmit?
|
|
210
|
+
|
|
211
|
+
> `optional` **valueChangeEmit**: `boolean`
|
|
212
|
+
|
|
213
|
+
#### Defined in
|
|
214
|
+
|
|
215
|
+
[components/date-picker/date-picker.component.ts:43](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L43)
|
|
216
|
+
|
|
217
|
+
***
|
|
218
|
+
|
|
219
|
+
### valueChangeEmitter
|
|
220
|
+
|
|
221
|
+
> **valueChangeEmitter**: `EventEmitter`\<`void`\>
|
|
222
|
+
|
|
223
|
+
#### Defined in
|
|
224
|
+
|
|
225
|
+
[components/date-picker/date-picker.component.ts:47](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L47)
|
|
226
|
+
|
|
227
|
+
## Methods
|
|
228
|
+
|
|
229
|
+
### clickForFocusOut()
|
|
230
|
+
|
|
231
|
+
> **clickForFocusOut**(): `void`
|
|
232
|
+
|
|
233
|
+
#### Returns
|
|
234
|
+
|
|
235
|
+
`void`
|
|
236
|
+
|
|
237
|
+
#### Defined in
|
|
238
|
+
|
|
239
|
+
[components/date-picker/date-picker.component.ts:63](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L63)
|
|
240
|
+
|
|
241
|
+
***
|
|
242
|
+
|
|
243
|
+
### emitChange()
|
|
244
|
+
|
|
245
|
+
> **emitChange**(): `void`
|
|
246
|
+
|
|
247
|
+
#### Returns
|
|
248
|
+
|
|
249
|
+
`void`
|
|
250
|
+
|
|
251
|
+
#### Defined in
|
|
252
|
+
|
|
253
|
+
[components/date-picker/date-picker.component.ts:58](https://gitlab.com/a.karapetyan/t3_ui_kit/-/blob/ad829a3d5be01b5efd166d86cddc623dce305e4d/projects/shared-components/src/lib/components/date-picker/date-picker.component.ts#L58)
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
|
6
|
+
|
|
7
|
+
# components/date-range-datepicker/date-range-datepicker.component
|
|
8
|
+
|
|
9
|
+
## Index
|
|
10
|
+
|
|
11
|
+
### Classes
|
|
12
|
+
|
|
13
|
+
- [DateRangeDatepickerComponent](classes/DateRangeDatepickerComponent.md)
|