igniteui-webcomponents-inputs 4.2.4-alpha → 4.3.0-beta.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 (146) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +98 -98
  4. package/esm2015/lib/ButtonView_combined.js +2206 -1799
  5. package/esm2015/lib/CalendarView_combined.js +156 -156
  6. package/esm2015/lib/CheckboxView_combined.js +532 -458
  7. package/esm2015/lib/DatePickerView_combined.js +398 -364
  8. package/esm2015/lib/IconView_combined.js +553 -355
  9. package/esm2015/lib/InputGroupView_combined.js +2432 -2152
  10. package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/Theme.js +48 -0
  13. package/esm2015/lib/ThemeResolver.js +131 -7
  14. package/esm2015/lib/XButtonBridge.js +218 -22
  15. package/esm2015/lib/XCheckboxBridge.js +25 -16
  16. package/esm2015/lib/XComponentBridge.js +20 -6
  17. package/esm2015/lib/XIconBridge.js +93 -0
  18. package/esm2015/lib/XIconButtonBridge.js +45 -33
  19. package/esm2015/lib/XInputBridge.js +91 -38
  20. package/esm2015/lib/XPopupBridge.js +287 -0
  21. package/esm2015/lib/igc-date-picker-component.js +60 -58
  22. package/esm2015/lib/igc-x-button-component.js +694 -546
  23. package/esm2015/lib/igc-x-button-group-component.js +28 -28
  24. package/esm2015/lib/igc-x-calendar-component.js +16 -16
  25. package/esm2015/lib/igc-x-checkbox-component.js +77 -77
  26. package/esm2015/lib/igc-x-icon-component.js +239 -118
  27. package/esm2015/lib/igc-x-input-component.js +61 -43
  28. package/esm2015/lib/igc-x-input-group-component.js +576 -576
  29. package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
  30. package/esm2015/lib/igc-x-ripple-component.js +35 -35
  31. package/esm2015/public_api.js +3 -0
  32. package/esm5/lib/ButtonClickEventArgs.js +2 -2
  33. package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
  34. package/esm5/lib/ButtonGroupView_combined.js +176 -176
  35. package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
  36. package/esm5/lib/ButtonView_combined.js +2259 -1808
  37. package/esm5/lib/ButtonVisualModelExport.js +2 -2
  38. package/esm5/lib/CalendarView_combined.js +181 -181
  39. package/esm5/lib/CalendarVisualModelExport.js +2 -2
  40. package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
  41. package/esm5/lib/CheckboxView_combined.js +561 -483
  42. package/esm5/lib/CheckboxVisualModelExport.js +2 -2
  43. package/esm5/lib/DatePickerView_combined.js +421 -383
  44. package/esm5/lib/DatePickerVisualModelExport.js +2 -2
  45. package/esm5/lib/DateTimeValueFormatter.js +2 -2
  46. package/esm5/lib/DayInfo.js +2 -2
  47. package/esm5/lib/ElevationHelper.js +2 -2
  48. package/esm5/lib/GotFocusEventArgs.js +2 -2
  49. package/esm5/lib/IconClickedEventArgs.js +2 -2
  50. package/esm5/lib/IconView_combined.js +600 -362
  51. package/esm5/lib/IconVisualModelExport.js +3 -3
  52. package/esm5/lib/InputChangeEventArgs.js +4 -4
  53. package/esm5/lib/InputGroupView_combined.js +2534 -2246
  54. package/esm5/lib/InputGroupVisualModelExport.js +2 -2
  55. package/esm5/lib/InputVisualModelExport.js +2 -2
  56. package/esm5/lib/LabelVisualModelExport.js +2 -2
  57. package/esm5/lib/LostFocusEventArgs.js +2 -2
  58. package/esm5/lib/MaskOptions.js +2 -2
  59. package/esm5/lib/MaskParsingService.js +5 -5
  60. package/esm5/lib/NativeUIXInputsFactory.js +69 -27
  61. package/esm5/lib/PrefixVisualModelExport.js +2 -2
  62. package/esm5/lib/Replaced.js +2 -2
  63. package/esm5/lib/RippleView_combined.js +17 -17
  64. package/esm5/lib/RippleVisualModelExport.js +2 -2
  65. package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
  66. package/esm5/lib/SuffixVisualModelExport.js +2 -2
  67. package/esm5/lib/TextElementsVisualModelExport.js +2 -2
  68. package/esm5/lib/Theme.js +58 -0
  69. package/esm5/lib/ThemeResolver.js +137 -11
  70. package/esm5/lib/XButtonBridge.js +220 -24
  71. package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
  72. package/esm5/lib/XCheckboxBridge.js +27 -18
  73. package/esm5/lib/XComponentBridge.js +26 -8
  74. package/esm5/lib/XIconBridge.js +95 -0
  75. package/esm5/lib/XIconButtonBridge.js +47 -35
  76. package/esm5/lib/XInputBridge.js +93 -40
  77. package/esm5/lib/XPopupBridge.js +289 -0
  78. package/esm5/lib/igc-button-click-event-args.js +1 -1
  79. package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
  80. package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
  81. package/esm5/lib/igc-date-picker-component.js +80 -78
  82. package/esm5/lib/igc-got-focus-event-args.js +1 -1
  83. package/esm5/lib/igc-input-change-event-args.js +3 -3
  84. package/esm5/lib/igc-lost-focus-event-args.js +1 -1
  85. package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
  86. package/esm5/lib/igc-x-button-component.js +908 -710
  87. package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
  88. package/esm5/lib/igc-x-button-group-component.js +73 -73
  89. package/esm5/lib/igc-x-calendar-component.js +30 -30
  90. package/esm5/lib/igc-x-checkbox-component.js +117 -117
  91. package/esm5/lib/igc-x-icon-component.js +297 -136
  92. package/esm5/lib/igc-x-input-component.js +104 -78
  93. package/esm5/lib/igc-x-input-group-component.js +716 -716
  94. package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
  95. package/esm5/lib/igc-x-input-group-item-component.js +6 -6
  96. package/esm5/lib/igc-x-label-component.js +30 -30
  97. package/esm5/lib/igc-x-prefix-component.js +9 -9
  98. package/esm5/lib/igc-x-ripple-component.js +19 -19
  99. package/esm5/lib/igc-x-suffix-component.js +9 -9
  100. package/esm5/public_api.js +3 -0
  101. package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
  102. package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
  103. package/lib/ButtonGroupView_combined.d.ts +136 -70
  104. package/lib/ButtonView_combined.d.ts +609 -583
  105. package/lib/CalendarView_combined.d.ts +43 -22
  106. package/lib/CheckboxChangeEventArgs.d.ts +4 -2
  107. package/lib/CheckboxView_combined.d.ts +150 -117
  108. package/lib/DatePickerView_combined.d.ts +109 -81
  109. package/lib/IconView_combined.d.ts +164 -93
  110. package/lib/IconVisualModelExport.d.ts +2 -1
  111. package/lib/InputChangeEventArgs.d.ts +4 -2
  112. package/lib/InputGroupView_combined.d.ts +771 -771
  113. package/lib/NativeUIXInputsFactory.d.ts +6 -4
  114. package/lib/RippleView_combined.d.ts +19 -10
  115. package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
  116. package/lib/Theme.d.ts +15 -0
  117. package/lib/ThemeResolver.d.ts +44 -6
  118. package/lib/XButtonBridge.d.ts +23 -5
  119. package/lib/XCheckboxBridge.d.ts +3 -3
  120. package/lib/XComponentBridge.d.ts +2 -1
  121. package/lib/XIconBridge.d.ts +14 -0
  122. package/lib/XIconButtonBridge.d.ts +4 -4
  123. package/lib/XInputBridge.d.ts +11 -7
  124. package/lib/XPopupBridge.d.ts +52 -0
  125. package/lib/igc-button-click-event-args.d.ts +1 -1
  126. package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
  127. package/lib/igc-checkbox-change-event-args.d.ts +5 -3
  128. package/lib/igc-date-picker-component.d.ts +65 -34
  129. package/lib/igc-got-focus-event-args.d.ts +1 -1
  130. package/lib/igc-input-change-event-args.d.ts +5 -3
  131. package/lib/igc-lost-focus-event-args.d.ts +1 -1
  132. package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
  133. package/lib/igc-x-button-component.d.ts +399 -173
  134. package/lib/igc-x-button-group-component.d.ts +136 -70
  135. package/lib/igc-x-calendar-component.d.ts +53 -28
  136. package/lib/igc-x-checkbox-component.d.ts +71 -37
  137. package/lib/igc-x-icon-component.d.ts +140 -44
  138. package/lib/igc-x-input-component.d.ts +69 -32
  139. package/lib/igc-x-input-group-component.d.ts +325 -165
  140. package/lib/igc-x-input-group-item-component.d.ts +5 -4
  141. package/lib/igc-x-label-component.d.ts +52 -27
  142. package/lib/igc-x-prefix-component.d.ts +10 -6
  143. package/lib/igc-x-ripple-component.d.ts +31 -17
  144. package/lib/igc-x-suffix-component.d.ts +10 -6
  145. package/package.json +2 -2
  146. package/public_api.d.ts +3 -0
@@ -23,7 +23,7 @@ export declare class IgcXButtonGroupComponent extends IgcHTMLElement {
23
23
  /**
24
24
  * A collection or manually added axes for the chart.
25
25
  */
26
- readonly buttons: IgcXButtonGroupButtonCollection;
26
+ get buttons(): IgcXButtonGroupButtonCollection;
27
27
  constructor();
28
28
  private _onChildrenChanged;
29
29
  private updateButtons;
@@ -40,7 +40,7 @@ export declare class IgcXButtonGroupComponent extends IgcHTMLElement {
40
40
  /**
41
41
  * @hidden
42
42
  */
43
- readonly i: XButtonGroup; /**
43
+ get i(): XButtonGroup; /**
44
44
  * @hidden
45
45
  */
46
46
  static _createFromInternal(internal: any): IgcXButtonGroupComponent;
@@ -51,7 +51,7 @@ export declare class IgcXButtonGroupComponent extends IgcHTMLElement {
51
51
  protected _flushQueuedAttributes(): void;
52
52
  protected _a(attrName: string, attrValue: any): void;
53
53
  private static _observedAttributesIgcXButtonGroupComponent;
54
- static readonly observedAttributes: string[];
54
+ static get observedAttributes(): string[];
55
55
  private _updatingFromAttribute;
56
56
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
57
57
  static htmlTagName: string;
@@ -60,267 +60,332 @@ export declare class IgcXButtonGroupComponent extends IgcHTMLElement {
60
60
  /**
61
61
  * Gets or sets the display style to use for the button.
62
62
  */
63
- displayType: ButtonGroupDisplayStyle;
63
+ get displayType(): ButtonGroupDisplayStyle;
64
+ set displayType(v: ButtonGroupDisplayStyle);
64
65
  /**
65
66
  * Gets or sets the base built in theme to use for the button group.
66
67
  */
67
- baseTheme: BaseControlTheme;
68
+ get baseTheme(): BaseControlTheme;
69
+ set baseTheme(v: BaseControlTheme);
68
70
  /**
69
71
  * Gets or sets the display density to use for the button group.
70
72
  */
71
- density: ControlDisplayDensity;
73
+ get density(): ControlDisplayDensity;
74
+ set density(v: ControlDisplayDensity);
72
75
  /**
73
76
  * Gets the actual display density to use for the button group.
74
77
  */
75
- actualDensity: ControlDisplayDensity;
78
+ get actualDensity(): ControlDisplayDensity;
79
+ set actualDensity(v: ControlDisplayDensity);
76
80
  /**
77
81
  * Gets the currently selected button indices.
78
82
  */
79
- selectedIndices: number[];
83
+ get selectedIndices(): number[];
84
+ set selectedIndices(v: number[]);
80
85
  /**
81
86
  * Gets the actual item corner radius for the appropriate corners.
82
87
  */
83
- actualItemCornerRadius: number;
88
+ get actualItemCornerRadius(): number;
89
+ set actualItemCornerRadius(v: number);
84
90
  /**
85
91
  * Gets the actual item background color.
86
92
  */
87
- actualItemBackgroundColor: string;
93
+ get actualItemBackgroundColor(): string;
94
+ set actualItemBackgroundColor(v: string);
88
95
  /**
89
96
  * Gets the actual item background color.
90
97
  */
91
- actualItemDisabledBackgroundColor: string;
98
+ get actualItemDisabledBackgroundColor(): string;
99
+ set actualItemDisabledBackgroundColor(v: string);
92
100
  /**
93
101
  * Gets the actual item text color.
94
102
  */
95
- actualItemTextColor: string;
103
+ get actualItemTextColor(): string;
104
+ set actualItemTextColor(v: string);
96
105
  /**
97
106
  * Gets the actual item text color.
98
107
  */
99
- actualItemDisabledTextColor: string;
108
+ get actualItemDisabledTextColor(): string;
109
+ set actualItemDisabledTextColor(v: string);
100
110
  /**
101
111
  * Gets the actual item border color.
102
112
  */
103
- actualItemBorderColor: string;
113
+ get actualItemBorderColor(): string;
114
+ set actualItemBorderColor(v: string);
104
115
  /**
105
116
  * Gets the actual item border color.
106
117
  */
107
- actualItemDisabledBorderColor: string;
118
+ get actualItemDisabledBorderColor(): string;
119
+ set actualItemDisabledBorderColor(v: string);
108
120
  /**
109
121
  * Gets the actual item border width.
110
122
  */
111
- actualItemBorderWidth: number;
123
+ get actualItemBorderWidth(): number;
124
+ set actualItemBorderWidth(v: number);
112
125
  /**
113
126
  * Gets the actual selected item background color.
114
127
  */
115
- actualSelectedItemBackgroundColor: string;
128
+ get actualSelectedItemBackgroundColor(): string;
129
+ set actualSelectedItemBackgroundColor(v: string);
116
130
  /**
117
131
  * Gets the stroke actual selected item text color.
118
132
  */
119
- actualSelectedItemTextColor: string;
133
+ get actualSelectedItemTextColor(): string;
134
+ set actualSelectedItemTextColor(v: string);
120
135
  /**
121
136
  * Gets the actual item hovered background color.
122
137
  */
123
- actualItemHoverBackgroundColor: string;
138
+ get actualItemHoverBackgroundColor(): string;
139
+ set actualItemHoverBackgroundColor(v: string);
124
140
  /**
125
141
  * Gets the actual item text color.
126
142
  */
127
- actualItemHoverTextColor: string;
143
+ get actualItemHoverTextColor(): string;
144
+ set actualItemHoverTextColor(v: string);
128
145
  /**
129
146
  * Gets the actual selected item hovered background color.
130
147
  */
131
- actualSelectedItemHoverBackgroundColor: string;
148
+ get actualSelectedItemHoverBackgroundColor(): string;
149
+ set actualSelectedItemHoverBackgroundColor(v: string);
132
150
  /**
133
151
  * Gets the actual selected item hovered text color.
134
152
  */
135
- actualSelectedItemHoverTextColor: string;
153
+ get actualSelectedItemHoverTextColor(): string;
154
+ set actualSelectedItemHoverTextColor(v: string);
136
155
  /**
137
156
  * Gets or sets the corner radius to use for the appropriate corners for the item buttons.
138
157
  */
139
- itemCornerRadius: number;
158
+ get itemCornerRadius(): number;
159
+ set itemCornerRadius(v: number);
140
160
  /**
141
161
  * Gets or sets the color to use the background of the buttons in the group.
142
162
  */
143
- itemBackgroundColor: string;
163
+ get itemBackgroundColor(): string;
164
+ set itemBackgroundColor(v: string);
144
165
  /**
145
166
  * Gets or sets the disabled color to use the background of the buttons in the group.
146
167
  */
147
- itemDisabledBackgroundColor: string;
168
+ get itemDisabledBackgroundColor(): string;
169
+ set itemDisabledBackgroundColor(v: string);
148
170
  /**
149
171
  * Gets or sets the color to use the text of the buttons in the group.
150
172
  */
151
- itemTextColor: string;
173
+ get itemTextColor(): string;
174
+ set itemTextColor(v: string);
152
175
  /**
153
176
  * Gets or sets the disabled color to use the text of the buttons in the group.
154
177
  */
155
- itemDisabledTextColor: string;
178
+ get itemDisabledTextColor(): string;
179
+ set itemDisabledTextColor(v: string);
156
180
  /**
157
181
  * Gets or sets the color to use the hovered background of the buttons in the group.
158
182
  */
159
- itemHoverBackgroundColor: string;
183
+ get itemHoverBackgroundColor(): string;
184
+ set itemHoverBackgroundColor(v: string);
160
185
  /**
161
186
  * Gets or sets the color to use the border of the buttons in the group.
162
187
  */
163
- itemBorderColor: string;
188
+ get itemBorderColor(): string;
189
+ set itemBorderColor(v: string);
164
190
  /**
165
191
  * Gets or sets the disabled color to use the border of the buttons in the group.
166
192
  */
167
- itemDisabledBorderColor: string;
193
+ get itemDisabledBorderColor(): string;
194
+ set itemDisabledBorderColor(v: string);
168
195
  /**
169
196
  * Gets or sets the border width to use for the buttons in the group.
170
197
  */
171
- itemBorderWidth: number;
198
+ get itemBorderWidth(): number;
199
+ set itemBorderWidth(v: number);
172
200
  /**
173
201
  * Gets or sets the color to use the hovered text of the buttons in the group.
174
202
  */
175
- itemHoverTextColor: string;
203
+ get itemHoverTextColor(): string;
204
+ set itemHoverTextColor(v: string);
176
205
  /**
177
206
  * Gets or sets the color to use the background of the buttons in the group that are selected.
178
207
  */
179
- selectedItemBackgroundColor: string;
208
+ get selectedItemBackgroundColor(): string;
209
+ set selectedItemBackgroundColor(v: string);
180
210
  /**
181
211
  * Gets or sets the color to use the text of the buttons in the group that are selected.
182
212
  */
183
- selectedItemTextColor: string;
213
+ get selectedItemTextColor(): string;
214
+ set selectedItemTextColor(v: string);
184
215
  /**
185
216
  * Gets or sets the color to use the hovered background of the buttons in the group that are selected.
186
217
  */
187
- selectedItemHoverBackgroundColor: string;
218
+ get selectedItemHoverBackgroundColor(): string;
219
+ set selectedItemHoverBackgroundColor(v: string);
188
220
  /**
189
221
  * Gets or sets the color to use the hovered text of the buttons in the group that are selected.
190
222
  */
191
- selectedItemHoverTextColor: string;
223
+ get selectedItemHoverTextColor(): string;
224
+ set selectedItemHoverTextColor(v: string);
192
225
  /**
193
226
  * Gets or sets the corner radius to use for the appropriate corners for the outlined type item buttons.
194
227
  */
195
- outlinedItemCornerRadius: number;
228
+ get outlinedItemCornerRadius(): number;
229
+ set outlinedItemCornerRadius(v: number);
196
230
  /**
197
231
  * Gets or sets the color to use the background of the buttons in the group when type is outlined.
198
232
  */
199
- outlinedItemBackgroundColor: string;
233
+ get outlinedItemBackgroundColor(): string;
234
+ set outlinedItemBackgroundColor(v: string);
200
235
  /**
201
236
  * Gets or sets the disabled color to use the background of the buttons in the group when type is outlined.
202
237
  */
203
- outlinedItemDisabledBackgroundColor: string;
238
+ get outlinedItemDisabledBackgroundColor(): string;
239
+ set outlinedItemDisabledBackgroundColor(v: string);
204
240
  /**
205
241
  * Gets or sets the color to use the text of the buttons in the group when type is outlined.
206
242
  */
207
- outlinedItemTextColor: string;
243
+ get outlinedItemTextColor(): string;
244
+ set outlinedItemTextColor(v: string);
208
245
  /**
209
246
  * Gets or sets the disabled color to use the text of the buttons in the group when type is outlined.
210
247
  */
211
- outlinedItemDisabledTextColor: string;
248
+ get outlinedItemDisabledTextColor(): string;
249
+ set outlinedItemDisabledTextColor(v: string);
212
250
  /**
213
251
  * Gets or sets the color to use the hovered background of the buttons in the group when type is outlined.
214
252
  */
215
- outlinedItemHoverBackgroundColor: string;
253
+ get outlinedItemHoverBackgroundColor(): string;
254
+ set outlinedItemHoverBackgroundColor(v: string);
216
255
  /**
217
256
  * Gets or sets the color to use the border of the buttons in the group when type is outlined.
218
257
  */
219
- outlinedItemBorderColor: string;
258
+ get outlinedItemBorderColor(): string;
259
+ set outlinedItemBorderColor(v: string);
220
260
  /**
221
261
  * Gets or sets the disabled color to use the border of the buttons in the group when type is outlined.
222
262
  */
223
- outlinedItemDisabledBorderColor: string;
263
+ get outlinedItemDisabledBorderColor(): string;
264
+ set outlinedItemDisabledBorderColor(v: string);
224
265
  /**
225
266
  * Gets or sets the border width to use for the buttons in the group when type is outlined.
226
267
  */
227
- outlinedItemBorderWidth: number;
268
+ get outlinedItemBorderWidth(): number;
269
+ set outlinedItemBorderWidth(v: number);
228
270
  /**
229
271
  * Gets or sets the color to use the hovered text of the buttons in the group when type is outlined.
230
272
  */
231
- outlinedItemHoverTextColor: string;
273
+ get outlinedItemHoverTextColor(): string;
274
+ set outlinedItemHoverTextColor(v: string);
232
275
  /**
233
276
  * Gets or sets the color to use the background of the buttons in the group that are selected when type is outlined.
234
277
  */
235
- outlinedSelectedItemBackgroundColor: string;
278
+ get outlinedSelectedItemBackgroundColor(): string;
279
+ set outlinedSelectedItemBackgroundColor(v: string);
236
280
  /**
237
281
  * Gets or sets the color to use the text of the buttons in the group that are selected when type is outlined.
238
282
  */
239
- outlinedSelectedItemTextColor: string;
283
+ get outlinedSelectedItemTextColor(): string;
284
+ set outlinedSelectedItemTextColor(v: string);
240
285
  /**
241
286
  * Gets or sets the color to use the hovered background of the buttons in the group that are selected when type is outlined.
242
287
  */
243
- outlinedSelectedItemHoverBackgroundColor: string;
288
+ get outlinedSelectedItemHoverBackgroundColor(): string;
289
+ set outlinedSelectedItemHoverBackgroundColor(v: string);
244
290
  /**
245
291
  * Gets or sets the color to use the hovered text of the buttons in the group that are selected when type is outlined.
246
292
  */
247
- outlinedSelectedItemHoverTextColor: string;
293
+ get outlinedSelectedItemHoverTextColor(): string;
294
+ set outlinedSelectedItemHoverTextColor(v: string);
248
295
  /**
249
296
  * Gets or sets the corner radius to use for the appropriate corners for the flat type item buttons.
250
297
  */
251
- flatItemCornerRadius: number;
298
+ get flatItemCornerRadius(): number;
299
+ set flatItemCornerRadius(v: number);
252
300
  /**
253
301
  * Gets or sets the color to use the background of the buttons in the group when type is flat.
254
302
  */
255
- flatItemBackgroundColor: string;
303
+ get flatItemBackgroundColor(): string;
304
+ set flatItemBackgroundColor(v: string);
256
305
  /**
257
306
  * Gets or sets the disabled color to use the background of the buttons in the group when type is flat.
258
307
  */
259
- flatItemDisabledBackgroundColor: string;
308
+ get flatItemDisabledBackgroundColor(): string;
309
+ set flatItemDisabledBackgroundColor(v: string);
260
310
  /**
261
311
  * Gets or sets the color to use the text of the buttons in the group when type is flat.
262
312
  */
263
- flatItemTextColor: string;
313
+ get flatItemTextColor(): string;
314
+ set flatItemTextColor(v: string);
264
315
  /**
265
316
  * Gets or sets the disabled color to use the text of the buttons in the group when type is flat.
266
317
  */
267
- flatItemDisabledTextColor: string;
318
+ get flatItemDisabledTextColor(): string;
319
+ set flatItemDisabledTextColor(v: string);
268
320
  /**
269
321
  * Gets or sets the color to use the hovered background of the buttons in the group when type is flat.
270
322
  */
271
- flatItemHoverBackgroundColor: string;
323
+ get flatItemHoverBackgroundColor(): string;
324
+ set flatItemHoverBackgroundColor(v: string);
272
325
  /**
273
326
  * Gets or sets the color to use the border of the buttons in the group when type is flat.
274
327
  */
275
- flatItemBorderColor: string;
328
+ get flatItemBorderColor(): string;
329
+ set flatItemBorderColor(v: string);
276
330
  /**
277
331
  * Gets or sets the disabled color to use the border of the buttons in the group when type is flat.
278
332
  */
279
- flatItemDisabledBorderColor: string;
333
+ get flatItemDisabledBorderColor(): string;
334
+ set flatItemDisabledBorderColor(v: string);
280
335
  /**
281
336
  * Gets or sets the border width to use for the buttons in the group when type is flat.
282
337
  */
283
- flatItemBorderWidth: number;
338
+ get flatItemBorderWidth(): number;
339
+ set flatItemBorderWidth(v: number);
284
340
  /**
285
341
  * Gets or sets the color to use the hovered text of the buttons in the group when type is flat.
286
342
  */
287
- flatItemHoverTextColor: string;
343
+ get flatItemHoverTextColor(): string;
344
+ set flatItemHoverTextColor(v: string);
288
345
  /**
289
346
  * Gets or sets the color to use the background of the buttons in the group that are selected when type is flat.
290
347
  */
291
- flatSelectedItemBackgroundColor: string;
348
+ get flatSelectedItemBackgroundColor(): string;
349
+ set flatSelectedItemBackgroundColor(v: string);
292
350
  /**
293
351
  * Gets or sets the color to use the text of the buttons in the group that are selected when type is flat.
294
352
  */
295
- flatSelectedItemTextColor: string;
353
+ get flatSelectedItemTextColor(): string;
354
+ set flatSelectedItemTextColor(v: string);
296
355
  /**
297
356
  * Gets or sets the color to use the hovered background of the buttons in the group that are selected when type is flat.
298
357
  */
299
- flatSelectedItemHoverBackgroundColor: string;
358
+ get flatSelectedItemHoverBackgroundColor(): string;
359
+ set flatSelectedItemHoverBackgroundColor(v: string);
300
360
  /**
301
361
  * Gets or sets the color to use the hovered text of the buttons in the group that are selected when type is flat.
302
362
  */
303
- flatSelectedItemHoverTextColor: string;
363
+ get flatSelectedItemHoverTextColor(): string;
364
+ set flatSelectedItemHoverTextColor(v: string);
304
365
  /**
305
366
  * Gets or sets the oreientation to use the button group when type is outlined.
306
367
  */
307
- orientation: ButtonGroupOrientation;
368
+ get orientation(): ButtonGroupOrientation;
369
+ set orientation(v: ButtonGroupOrientation);
308
370
  /**
309
371
  * Gets or sets the id to use for the button group.
310
372
  */
311
- id: string;
373
+ get id(): string;
374
+ set id(v: string);
312
375
  /**
313
376
  * Gets or sets whether the checkbox is disabled.
314
377
  */
315
- disabled: boolean;
378
+ get disabled(): boolean;
379
+ set disabled(v: boolean);
316
380
  /**
317
381
  * Gets or sets whether the group supports multi-select.
318
382
  */
319
- isMultiSelect: boolean;
383
+ get isMultiSelect(): boolean;
384
+ set isMultiSelect(v: boolean);
320
385
  findByName(name: string): any;
321
386
  protected __p: string;
322
387
  protected _hasUserValues: Set<string>;
323
- protected readonly hasUserValues: Set<string>;
388
+ protected get hasUserValues(): Set<string>;
324
389
  protected __m(propertyName: string): void;
325
390
  protected _stylingContainer: any;
326
391
  protected _stylingParent: any;
@@ -340,5 +405,6 @@ export declare class IgcXButtonGroupComponent extends IgcHTMLElement {
340
405
  exportSerializedVisualModel(): string;
341
406
  private _selectionChanged;
342
407
  private _selectionChanged_wrapped;
343
- selectionChanged: (s: IgcXButtonGroupComponent, e: IgcButtonGroupSelectionChangedEventArgs) => void;
408
+ get selectionChanged(): (s: IgcXButtonGroupComponent, e: IgcButtonGroupSelectionChangedEventArgs) => void;
409
+ set selectionChanged(ev: (s: IgcXButtonGroupComponent, e: IgcButtonGroupSelectionChangedEventArgs) => void);
344
410
  }
@@ -7,8 +7,10 @@ import { FirstWeek } from "./FirstWeek";
7
7
  export declare class IgcXCalendarComponent extends HTMLElement {
8
8
  private _height;
9
9
  private _width;
10
- height: string;
11
- width: string;
10
+ set height(value: string);
11
+ get height(): string;
12
+ set width(value: string);
13
+ get width(): string;
12
14
  private _container;
13
15
  private _renderer;
14
16
  constructor();
@@ -24,7 +26,7 @@ export declare class IgcXCalendarComponent extends HTMLElement {
24
26
  /**
25
27
  * @hidden
26
28
  */
27
- readonly i: XCalendar; /**
29
+ get i(): XCalendar; /**
28
30
  * @hidden
29
31
  */
30
32
  static _createFromInternal(internal: any): IgcXCalendarComponent;
@@ -35,7 +37,7 @@ export declare class IgcXCalendarComponent extends HTMLElement {
35
37
  protected _flushQueuedAttributes(): void;
36
38
  protected _a(attrName: string, attrValue: any): void;
37
39
  private static _observedAttributesIgcXCalendarComponent;
38
- static readonly observedAttributes: string[];
40
+ static get observedAttributes(): string[];
39
41
  private _updatingFromAttribute;
40
42
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
41
43
  static htmlTagName: string;
@@ -44,90 +46,111 @@ export declare class IgcXCalendarComponent extends HTMLElement {
44
46
  /**
45
47
  * Gets or Sets the value for the calendar.
46
48
  */
47
- value: Date;
49
+ get value(): Date;
50
+ set value(v: Date);
48
51
  /**
49
52
  * Gets or Sets the property name that contains the values.
50
53
  */
51
- today: Date;
54
+ get today(): Date;
55
+ set today(v: Date);
52
56
  /**
53
57
  * Gets or Sets the property name that contains the MinDate.
54
58
  */
55
- minDate: Date;
59
+ get minDate(): Date;
60
+ set minDate(v: Date);
56
61
  /**
57
62
  * Gets or Sets the property name that contains the MaxDate.
58
63
  */
59
- maxDate: Date;
64
+ get maxDate(): Date;
65
+ set maxDate(v: Date);
60
66
  /**
61
67
  * Gets or sets the display density to use for the calendar.
62
68
  */
63
- density: ControlDisplayDensity;
69
+ get density(): ControlDisplayDensity;
70
+ set density(v: ControlDisplayDensity);
64
71
  /**
65
72
  * Gets or sets the base built in theme to use for the calendar.
66
73
  */
67
- baseTheme: BaseControlTheme;
74
+ get baseTheme(): BaseControlTheme;
75
+ set baseTheme(v: BaseControlTheme);
68
76
  /**
69
77
  * Gets or Sets the selected date background color
70
78
  */
71
- backgroundColor: string;
79
+ get backgroundColor(): string;
80
+ set backgroundColor(v: string);
72
81
  /**
73
82
  * Gets or Sets the selected date background color
74
83
  */
75
- selectedDateBackgroundColor: string;
84
+ get selectedDateBackgroundColor(): string;
85
+ set selectedDateBackgroundColor(v: string);
76
86
  /**
77
87
  * Gets or Sets the selected date background color
78
88
  */
79
- selectedFocusDateBackgroundColor: string;
89
+ get selectedFocusDateBackgroundColor(): string;
90
+ set selectedFocusDateBackgroundColor(v: string);
80
91
  /**
81
92
  * Gets or Sets the focus date background color
82
93
  */
83
- focusDateBackgroundColor: string;
94
+ get focusDateBackgroundColor(): string;
95
+ set focusDateBackgroundColor(v: string);
84
96
  /**
85
97
  * Gets or Sets the focus date background color
86
98
  */
87
- hoverBackgroundColor: string;
99
+ get hoverBackgroundColor(): string;
100
+ set hoverBackgroundColor(v: string);
88
101
  /**
89
102
  * Gets or Sets the selected date text color
90
103
  */
91
- textColor: string;
104
+ get textColor(): string;
105
+ set textColor(v: string);
92
106
  /**
93
107
  * Gets or Sets the selected date text color
94
108
  */
95
- selectedDateTextColor: string;
109
+ get selectedDateTextColor(): string;
110
+ set selectedDateTextColor(v: string);
96
111
  /**
97
112
  * Gets or Sets the focus date text color
98
113
  */
99
- focusDateTextColor: string;
114
+ get focusDateTextColor(): string;
115
+ set focusDateTextColor(v: string);
100
116
  /**
101
117
  * Gets or Sets the current date text color
102
118
  */
103
- currentDateTextColor: string;
119
+ get currentDateTextColor(): string;
120
+ set currentDateTextColor(v: string);
104
121
  /**
105
122
  * Gets or Sets the current date text color
106
123
  */
107
- currentDateBorderColor: string;
124
+ get currentDateBorderColor(): string;
125
+ set currentDateBorderColor(v: string);
108
126
  /**
109
127
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
110
128
  */
111
- showTodayButton: boolean;
129
+ get showTodayButton(): boolean;
130
+ set showTodayButton(v: boolean);
112
131
  /**
113
132
  * Gets or sets the font to use for the combobox.
114
133
  */
115
- textStyle: string;
134
+ get textStyle(): string;
135
+ set textStyle(v: string);
116
136
  /**
117
137
  * Gets or sets the FirstDayOfWeek property to detirmine first day of the week
118
138
  */
119
- firstDayOfWeek: DayOfWeek;
139
+ get firstDayOfWeek(): DayOfWeek;
140
+ set firstDayOfWeek(v: DayOfWeek);
120
141
  /**
121
142
  * Gets or sets the FirstWeekOfYear property to detirmine first week of the year
122
143
  */
123
- firstWeekOfYear: FirstWeek;
144
+ get firstWeekOfYear(): FirstWeek;
145
+ set firstWeekOfYear(v: FirstWeek);
124
146
  /**
125
147
  * Gets or sets the ShowWeekNumbers property to detirmine if the week numbers are shown
126
148
  */
127
- showWeekNumbers: boolean;
149
+ get showWeekNumbers(): boolean;
150
+ set showWeekNumbers(v: boolean);
128
151
  protected __p: string;
129
152
  protected _hasUserValues: Set<string>;
130
- protected readonly hasUserValues: Set<string>;
153
+ protected get hasUserValues(): Set<string>;
131
154
  protected __m(propertyName: string): void;
132
155
  protected _stylingContainer: any;
133
156
  protected _stylingParent: any;
@@ -148,8 +171,10 @@ export declare class IgcXCalendarComponent extends HTMLElement {
148
171
  /**
149
172
  * Called when date is selected.
150
173
  */
151
- selectedValueChanged: (s: IgcXCalendarComponent, e: IgcSelectedValueChangedEventArgs) => void;
174
+ get selectedValueChanged(): (s: IgcXCalendarComponent, e: IgcSelectedValueChangedEventArgs) => void;
175
+ set selectedValueChanged(ev: (s: IgcXCalendarComponent, e: IgcSelectedValueChangedEventArgs) => void);
152
176
  private _valueChange;
153
177
  private _valueChange_wrapped;
154
- valueChange: (s: IgcXCalendarComponent, e: Date) => void;
178
+ get valueChange(): (s: IgcXCalendarComponent, e: Date) => void;
179
+ set valueChange(ev: (s: IgcXCalendarComponent, e: Date) => void);
155
180
  }