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
@@ -5,6 +5,9 @@ import { ControlDisplayDensity } from "igniteui-webcomponents-core";
5
5
  import { BaseControlTheme } from "igniteui-webcomponents-core";
6
6
  import { ElevationMode } from "igniteui-webcomponents-core";
7
7
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
8
+ import { HorizontalAlignment } from "igniteui-webcomponents-core";
9
+ import { VerticalAlignment } from "igniteui-webcomponents-core";
10
+ import { IgcFocusEventArgs } from "igniteui-webcomponents-core";
8
11
  export declare class IgcXButtonComponent extends IgcHTMLElement {
9
12
  private _portalManager;
10
13
  private _container;
@@ -28,7 +31,7 @@ export declare class IgcXButtonComponent extends IgcHTMLElement {
28
31
  /**
29
32
  * @hidden
30
33
  */
31
- readonly i: XButton; /**
34
+ get i(): XButton; /**
32
35
  * @hidden
33
36
  */
34
37
  static _createFromInternal(internal: any): IgcXButtonComponent;
@@ -39,7 +42,7 @@ export declare class IgcXButtonComponent extends IgcHTMLElement {
39
42
  protected _flushQueuedAttributes(): void;
40
43
  protected _a(attrName: string, attrValue: any): void;
41
44
  private static _observedAttributesIgcXButtonComponent;
42
- static readonly observedAttributes: string[];
45
+ static get observedAttributes(): string[];
43
46
  private _updatingFromAttribute;
44
47
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
45
48
  static htmlTagName: string;
@@ -48,606 +51,820 @@ export declare class IgcXButtonComponent extends IgcHTMLElement {
48
51
  /**
49
52
  * Gets or sets the min width to use for the button.
50
53
  */
51
- minWidth: number;
54
+ get minWidth(): number;
55
+ set minWidth(v: number);
52
56
  /**
53
57
  * Gets or sets the min height to use for the button.
54
58
  */
55
- minHeight: number;
59
+ get minHeight(): number;
60
+ set minHeight(v: number);
56
61
  /**
57
62
  * Gets or sets the display style to use for the button.
58
63
  */
59
- displayType: ButtonDisplayStyle;
64
+ get displayType(): ButtonDisplayStyle;
65
+ set displayType(v: ButtonDisplayStyle);
60
66
  /**
61
67
  * Gets or sets the display density to use for the button.
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 button.
66
73
  */
67
- baseTheme: BaseControlTheme;
74
+ get baseTheme(): BaseControlTheme;
75
+ set baseTheme(v: BaseControlTheme);
68
76
  /**
69
77
  * Gets the actual display density to use for the label.
70
78
  */
71
- actualDensity: ControlDisplayDensity;
79
+ get actualDensity(): ControlDisplayDensity;
80
+ set actualDensity(v: ControlDisplayDensity);
72
81
  /**
73
82
  * Gets or sets the color to use for the check mark when the checkbox is checked.
74
83
  */
75
- actualBorderColor: string;
84
+ get actualBorderColor(): string;
85
+ set actualBorderColor(v: string);
76
86
  /**
77
87
  * Gets or sets the color to use for the check mark when the checkbox is checked.
78
88
  */
79
- actualUmbraShadowColor: string;
89
+ get actualUmbraShadowColor(): string;
90
+ set actualUmbraShadowColor(v: string);
80
91
  /**
81
92
  * Gets or sets the color to use for the check mark when the checkbox is checked.
82
93
  */
83
- actualPenumbraShadowColor: string;
94
+ get actualPenumbraShadowColor(): string;
95
+ set actualPenumbraShadowColor(v: string);
84
96
  /**
85
97
  * Gets or sets the color to use for the check mark when the checkbox is checked.
86
98
  */
87
- actualAmbientShadowColor: string;
99
+ get actualAmbientShadowColor(): string;
100
+ set actualAmbientShadowColor(v: string);
88
101
  /**
89
102
  * Gets or sets the color to use for the check mark when the checkbox is checked.
90
103
  */
91
- actualRestingElevation: number;
104
+ get actualRestingElevation(): number;
105
+ set actualRestingElevation(v: number);
92
106
  /**
93
107
  * Gets or sets the color to use for the check mark when the checkbox is checked.
94
108
  */
95
- actualFocusElevation: number;
109
+ get actualFocusElevation(): number;
110
+ set actualFocusElevation(v: number);
96
111
  /**
97
112
  * Gets or sets the color to use for the check mark when the checkbox is checked.
98
113
  */
99
- actualHoverElevation: number;
114
+ get actualHoverElevation(): number;
115
+ set actualHoverElevation(v: number);
100
116
  /**
101
117
  * Gets or sets the color to use for the ripple when the button is pressed.
102
118
  */
103
- actualRippleColor: string;
104
- actualCornerRadiusBottomRight: number;
105
- actualCornerRadiusBottomLeft: number;
106
- actualCornerRadiusTopLeft: number;
107
- actualCornerRadiusTopRight: number;
119
+ get actualRippleColor(): string;
120
+ set actualRippleColor(v: string);
121
+ get actualCornerRadiusBottomRight(): number;
122
+ set actualCornerRadiusBottomRight(v: number);
123
+ get actualCornerRadiusBottomLeft(): number;
124
+ set actualCornerRadiusBottomLeft(v: number);
125
+ get actualCornerRadiusTopLeft(): number;
126
+ set actualCornerRadiusTopLeft(v: number);
127
+ get actualCornerRadiusTopRight(): number;
128
+ set actualCornerRadiusTopRight(v: number);
108
129
  ensureActualCornerRadius(): void;
109
130
  /**
110
131
  * Gets the color to use for the actual background.
111
132
  */
112
- actualBackgroundColor: string;
133
+ get actualBackgroundColor(): string;
134
+ set actualBackgroundColor(v: string);
113
135
  /**
114
136
  * Gets the actual color to use for the disabled background of the button.
115
137
  */
116
- actualDisabledBackgroundColor: string;
138
+ get actualDisabledBackgroundColor(): string;
139
+ set actualDisabledBackgroundColor(v: string);
117
140
  /**
118
141
  * Gets the actual color to use for the disabled border of the button.
119
142
  */
120
- actualDisabledBorderColor: string;
143
+ get actualDisabledBorderColor(): string;
144
+ set actualDisabledBorderColor(v: string);
121
145
  /**
122
146
  * Gets the actual color to use for the disabled text of the button.
123
147
  */
124
- actualDisabledTextColor: string;
148
+ get actualDisabledTextColor(): string;
149
+ set actualDisabledTextColor(v: string);
125
150
  /**
126
151
  * Gets the actual disabled elevation to use for the button.
127
152
  */
128
- actualDisabledElevation: number;
153
+ get actualDisabledElevation(): number;
154
+ set actualDisabledElevation(v: number);
129
155
  /**
130
156
  * Gets the actual disabled elevation to use for the button.
131
157
  */
132
- actualElevationMode: ElevationMode;
158
+ get actualElevationMode(): ElevationMode;
159
+ set actualElevationMode(v: ElevationMode);
133
160
  /**
134
161
  * Gets the color to use for the actual background.
135
162
  */
136
- actualTextColor: string;
163
+ get actualTextColor(): string;
164
+ set actualTextColor(v: string);
137
165
  /**
138
166
  * Gets the color to use for the actual background.
139
167
  */
140
- actualHoverTextColor: string;
168
+ get actualHoverTextColor(): string;
169
+ set actualHoverTextColor(v: string);
141
170
  /**
142
171
  * Gets the color to use for the actual background.
143
172
  */
144
- actualFocusBackgroundColor: string;
173
+ get actualFocusBackgroundColor(): string;
174
+ set actualFocusBackgroundColor(v: string);
145
175
  /**
146
176
  * Gets the actual color to use for the focused text.
147
177
  */
148
- actualFocusTextColor: string;
178
+ get actualFocusTextColor(): string;
179
+ set actualFocusTextColor(v: string);
149
180
  /**
150
181
  * Gets the hover color to use for the actual background.
151
182
  */
152
- actualHoverBackgroundColor: string;
183
+ get actualHoverBackgroundColor(): string;
184
+ set actualHoverBackgroundColor(v: string);
153
185
  /**
154
186
  * Gets or sets the Width to use for the check mark when the checkbox is checked.
155
187
  */
156
- actualBorderWidth: number;
188
+ get actualBorderWidth(): number;
189
+ set actualBorderWidth(v: number);
157
190
  /**
158
191
  * Gets or sets the color to use for the background of the button when the type is raised.
159
192
  */
160
- raisedBackgroundColor: string;
193
+ get raisedBackgroundColor(): string;
194
+ set raisedBackgroundColor(v: string);
161
195
  /**
162
196
  * Gets or sets the color to use for the disabled background of the button when the type is raised.
163
197
  */
164
- raisedDisabledBackgroundColor: string;
198
+ get raisedDisabledBackgroundColor(): string;
199
+ set raisedDisabledBackgroundColor(v: string);
165
200
  /**
166
201
  * Gets or sets the color to use for the disabled border of the button when the type is raised.
167
202
  */
168
- raisedDisabledBorderColor: string;
203
+ get raisedDisabledBorderColor(): string;
204
+ set raisedDisabledBorderColor(v: string);
169
205
  /**
170
206
  * Gets or sets the color to use for the disabled text of the button when the type is raised.
171
207
  */
172
- raisedDisabledTextColor: string;
208
+ get raisedDisabledTextColor(): string;
209
+ set raisedDisabledTextColor(v: string);
173
210
  /**
174
211
  * Gets or sets the disabled elevation to use for the button when the type is raised.
175
212
  */
176
- raisedDisabledElevation: number;
213
+ get raisedDisabledElevation(): number;
214
+ set raisedDisabledElevation(v: number);
177
215
  /**
178
216
  * Gets or sets the hover color to use for the background of the button when the type is raised.
179
217
  */
180
- raisedHoverBackgroundColor: string;
218
+ get raisedHoverBackgroundColor(): string;
219
+ set raisedHoverBackgroundColor(v: string);
181
220
  /**
182
221
  * Gets or sets the border color to use for the button when the type is raised.
183
222
  */
184
- raisedBorderColor: string;
223
+ get raisedBorderColor(): string;
224
+ set raisedBorderColor(v: string);
185
225
  /**
186
226
  * Gets or sets the elevation to use for the button when the type is raised.
187
227
  */
188
- raisedRestingElevation: number;
228
+ get raisedRestingElevation(): number;
229
+ set raisedRestingElevation(v: number);
189
230
  /**
190
231
  * Gets or sets the hover elevation to use for the button when the type is raised.
191
232
  */
192
- raisedHoverElevation: number;
233
+ get raisedHoverElevation(): number;
234
+ set raisedHoverElevation(v: number);
193
235
  /**
194
236
  * Gets or sets the focus elevation to use for the button when the type is raised.
195
237
  */
196
- raisedFocusElevation: number;
238
+ get raisedFocusElevation(): number;
239
+ set raisedFocusElevation(v: number);
197
240
  /**
198
241
  * Gets or sets the width to use for the button border when the type is raised.
199
242
  */
200
- raisedBorderWidth: number;
201
- raisedCornerRadiusBottomRight: number;
202
- raisedCornerRadiusBottomLeft: number;
203
- raisedCornerRadiusTopLeft: number;
204
- raisedCornerRadiusTopRight: number;
243
+ get raisedBorderWidth(): number;
244
+ set raisedBorderWidth(v: number);
245
+ get raisedCornerRadiusBottomRight(): number;
246
+ set raisedCornerRadiusBottomRight(v: number);
247
+ get raisedCornerRadiusBottomLeft(): number;
248
+ set raisedCornerRadiusBottomLeft(v: number);
249
+ get raisedCornerRadiusTopLeft(): number;
250
+ set raisedCornerRadiusTopLeft(v: number);
251
+ get raisedCornerRadiusTopRight(): number;
252
+ set raisedCornerRadiusTopRight(v: number);
205
253
  ensureRaisedCornerRadius(): void;
206
254
  /**
207
255
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
208
256
  */
209
- raisedRippleColor: string;
257
+ get raisedRippleColor(): string;
258
+ set raisedRippleColor(v: string);
210
259
  /**
211
260
  * Gets or sets the color to use for the background of the button when the type is flat.
212
261
  */
213
- flatBackgroundColor: string;
262
+ get flatBackgroundColor(): string;
263
+ set flatBackgroundColor(v: string);
214
264
  /**
215
265
  * Gets or sets the color to use for the disabled background of the button when the type is flat.
216
266
  */
217
- flatDisabledBackgroundColor: string;
267
+ get flatDisabledBackgroundColor(): string;
268
+ set flatDisabledBackgroundColor(v: string);
218
269
  /**
219
270
  * Gets or sets the color to use for the disabled border of the button when the type is flat.
220
271
  */
221
- flatDisabledBorderColor: string;
272
+ get flatDisabledBorderColor(): string;
273
+ set flatDisabledBorderColor(v: string);
222
274
  /**
223
275
  * Gets or sets the color to use for the disabled text of the button when the type is flat.
224
276
  */
225
- flatDisabledTextColor: string;
277
+ get flatDisabledTextColor(): string;
278
+ set flatDisabledTextColor(v: string);
226
279
  /**
227
280
  * Gets or sets the disabled elevation to use for the button when the type is flat.
228
281
  */
229
- flatDisabledElevation: number;
282
+ get flatDisabledElevation(): number;
283
+ set flatDisabledElevation(v: number);
230
284
  /**
231
285
  * Gets or sets the hover color to use for the background of the button when the type is flat.
232
286
  */
233
- flatHoverBackgroundColor: string;
287
+ get flatHoverBackgroundColor(): string;
288
+ set flatHoverBackgroundColor(v: string);
234
289
  /**
235
290
  * Gets or sets the border color to use for the button when the type is flat.
236
291
  */
237
- flatBorderColor: string;
292
+ get flatBorderColor(): string;
293
+ set flatBorderColor(v: string);
238
294
  /**
239
295
  * Gets or sets the elevation to use for the button when the type is flat.
240
296
  */
241
- flatRestingElevation: number;
297
+ get flatRestingElevation(): number;
298
+ set flatRestingElevation(v: number);
242
299
  /**
243
300
  * Gets or sets the hover elevation to use for the button when the type is flat.
244
301
  */
245
- flatHoverElevation: number;
302
+ get flatHoverElevation(): number;
303
+ set flatHoverElevation(v: number);
246
304
  /**
247
305
  * Gets or sets the focus elevation to use for the button when the type is flat.
248
306
  */
249
- flatFocusElevation: number;
307
+ get flatFocusElevation(): number;
308
+ set flatFocusElevation(v: number);
250
309
  /**
251
310
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
252
311
  */
253
- flatRippleColor: string;
312
+ get flatRippleColor(): string;
313
+ set flatRippleColor(v: string);
254
314
  /**
255
315
  * Gets or sets the color to use for the text of the button when type is flat.
256
316
  */
257
- flatTextColor: string;
317
+ get flatTextColor(): string;
318
+ set flatTextColor(v: string);
258
319
  /**
259
320
  * Gets or sets the color to use for the hovered text of the button when type is flat.
260
321
  */
261
- flatHoverTextColor: string;
322
+ get flatHoverTextColor(): string;
323
+ set flatHoverTextColor(v: string);
262
324
  /**
263
325
  * Gets or sets the color to use for the backround the button when it is focused and flat.
264
326
  */
265
- flatFocusBackgroundColor: string;
327
+ get flatFocusBackgroundColor(): string;
328
+ set flatFocusBackgroundColor(v: string);
266
329
  /**
267
330
  * Gets or sets the color to use for the text the button when it is focused and flat.
268
331
  */
269
- flatFocusTextColor: string;
332
+ get flatFocusTextColor(): string;
333
+ set flatFocusTextColor(v: string);
270
334
  /**
271
335
  * Gets or sets the width to use for the button border when the type is flat.
272
336
  */
273
- flatBorderWidth: number;
274
- flatCornerRadiusBottomRight: number;
275
- flatCornerRadiusBottomLeft: number;
276
- flatCornerRadiusTopLeft: number;
277
- flatCornerRadiusTopRight: number;
337
+ get flatBorderWidth(): number;
338
+ set flatBorderWidth(v: number);
339
+ get flatCornerRadiusBottomRight(): number;
340
+ set flatCornerRadiusBottomRight(v: number);
341
+ get flatCornerRadiusBottomLeft(): number;
342
+ set flatCornerRadiusBottomLeft(v: number);
343
+ get flatCornerRadiusTopLeft(): number;
344
+ set flatCornerRadiusTopLeft(v: number);
345
+ get flatCornerRadiusTopRight(): number;
346
+ set flatCornerRadiusTopRight(v: number);
278
347
  ensureFlatCornerRadius(): void;
279
348
  /**
280
349
  * Gets or sets the color to use for the background when the button regardless of type.
281
350
  */
282
- backgroundColor: string;
351
+ get backgroundColor(): string;
352
+ set backgroundColor(v: string);
283
353
  /**
284
354
  * Gets or sets the color to use for the disabled background of the button when the type is disabled.
285
355
  */
286
- disabledBackgroundColor: string;
356
+ get disabledBackgroundColor(): string;
357
+ set disabledBackgroundColor(v: string);
287
358
  /**
288
359
  * Gets or sets the color to use for the disabled border of the button when the type is raised.
289
360
  */
290
- disabledBorderColor: string;
361
+ get disabledBorderColor(): string;
362
+ set disabledBorderColor(v: string);
291
363
  /**
292
364
  * Gets or sets the color to use for the disabled text of the button when the type is raised.
293
365
  */
294
- disabledTextColor: string;
366
+ get disabledTextColor(): string;
367
+ set disabledTextColor(v: string);
295
368
  /**
296
369
  * Gets or sets the disabled elevation to use for the button when the type is raised.
297
370
  */
298
- disabledElevation: number;
371
+ get disabledElevation(): number;
372
+ set disabledElevation(v: number);
299
373
  /**
300
374
  * Gets or sets the disabled elevation to use for the button when the type is raised.
301
375
  */
302
- elevationMode: ElevationMode;
376
+ get elevationMode(): ElevationMode;
377
+ set elevationMode(v: ElevationMode);
303
378
  /**
304
379
  * Gets or sets the hover color to use for the background of the button when the type is hovered.
305
380
  */
306
- hoverBackgroundColor: string;
381
+ get hoverBackgroundColor(): string;
382
+ set hoverBackgroundColor(v: string);
307
383
  /**
308
384
  * Gets or sets the border color to use for the button regardless of type.
309
385
  */
310
- borderColor: string;
386
+ get borderColor(): string;
387
+ set borderColor(v: string);
311
388
  /**
312
389
  * Gets or sets the elevation to use for the button regardless of type.
313
390
  */
314
- restingElevation: number;
391
+ get restingElevation(): number;
392
+ set restingElevation(v: number);
315
393
  /**
316
394
  * Gets or sets the hover elevation to use for the button regardless of type.
317
395
  */
318
- hoverElevation: number;
396
+ get hoverElevation(): number;
397
+ set hoverElevation(v: number);
319
398
  /**
320
399
  * Gets or sets the focus elevation to use for the button regardless of type.
321
400
  */
322
- focusElevation: number;
401
+ get focusElevation(): number;
402
+ set focusElevation(v: number);
323
403
  /**
324
404
  * Gets or sets the use for the button.
325
405
  */
326
- textStyle: string;
406
+ get textStyle(): string;
407
+ set textStyle(v: string);
327
408
  /**
328
409
  * Gets or sets the color to use for the text of the button regardless of type.
329
410
  */
330
- textColor: string;
411
+ get textColor(): string;
412
+ set textColor(v: string);
331
413
  /**
332
414
  * Gets or sets the color to use for the hovered text of the button regardless of type.
333
415
  */
334
- hoverTextColor: string;
416
+ get hoverTextColor(): string;
417
+ set hoverTextColor(v: string);
335
418
  /**
336
419
  * Gets or sets the color to use for the background of the button regardless of type.
337
420
  */
338
- rippleColor: string;
421
+ get rippleColor(): string;
422
+ set rippleColor(v: string);
339
423
  /**
340
424
  * Gets or sets the color to use for the text of the button when type is raised.
341
425
  */
342
- raisedTextColor: string;
426
+ get raisedTextColor(): string;
427
+ set raisedTextColor(v: string);
343
428
  /**
344
429
  * Gets or sets the color to use for the hovered text of the button when type is raised.
345
430
  */
346
- raisedHoverTextColor: string;
431
+ get raisedHoverTextColor(): string;
432
+ set raisedHoverTextColor(v: string);
347
433
  /**
348
434
  * Gets or sets the color to use for the backround the button when it is focused and raised.
349
435
  */
350
- raisedFocusBackgroundColor: string;
436
+ get raisedFocusBackgroundColor(): string;
437
+ set raisedFocusBackgroundColor(v: string);
351
438
  /**
352
439
  * Gets or sets the color to use for the text the button when it is focused and raised.
353
440
  */
354
- raisedFocusTextColor: string;
441
+ get raisedFocusTextColor(): string;
442
+ set raisedFocusTextColor(v: string);
355
443
  /**
356
444
  * Gets or sets the color to use for the backround the button when it is focused.
357
445
  */
358
- focusBackgroundColor: string;
446
+ get focusBackgroundColor(): string;
447
+ set focusBackgroundColor(v: string);
359
448
  /**
360
449
  * Gets or sets the color to use for the text of the button when it is focused.
361
450
  */
362
- focusTextColor: string;
451
+ get focusTextColor(): string;
452
+ set focusTextColor(v: string);
363
453
  /**
364
454
  * Gets or sets the width to use for the button border regardless of type.
365
455
  */
366
- borderWidth: number;
367
- cornerRadiusBottomRight: number;
368
- cornerRadiusBottomLeft: number;
369
- cornerRadiusTopLeft: number;
370
- cornerRadiusTopRight: number;
456
+ get borderWidth(): number;
457
+ set borderWidth(v: number);
458
+ get cornerRadiusBottomRight(): number;
459
+ set cornerRadiusBottomRight(v: number);
460
+ get cornerRadiusBottomLeft(): number;
461
+ set cornerRadiusBottomLeft(v: number);
462
+ get cornerRadiusTopLeft(): number;
463
+ set cornerRadiusTopLeft(v: number);
464
+ get cornerRadiusTopRight(): number;
465
+ set cornerRadiusTopRight(v: number);
371
466
  ensureCornerRadius(): void;
372
467
  /**
373
468
  * Gets or sets the color to use for the background of the button when the type is outlined.
374
469
  */
375
- outlinedBackgroundColor: string;
470
+ get outlinedBackgroundColor(): string;
471
+ set outlinedBackgroundColor(v: string);
376
472
  /**
377
473
  * Gets or sets the color to use for the disabled background of the button when the type is outlined.
378
474
  */
379
- outlinedDisabledBackgroundColor: string;
475
+ get outlinedDisabledBackgroundColor(): string;
476
+ set outlinedDisabledBackgroundColor(v: string);
380
477
  /**
381
478
  * Gets or sets the color to use for the disabled border of the button when the type is outlined.
382
479
  */
383
- outlinedDisabledBorderColor: string;
480
+ get outlinedDisabledBorderColor(): string;
481
+ set outlinedDisabledBorderColor(v: string);
384
482
  /**
385
483
  * Gets or sets the color to use for the disabled text of the button when the type is outlined.
386
484
  */
387
- outlinedDisabledTextColor: string;
485
+ get outlinedDisabledTextColor(): string;
486
+ set outlinedDisabledTextColor(v: string);
388
487
  /**
389
488
  * Gets or sets the disabled elevation to use for the button when the type is outlined.
390
489
  */
391
- outlinedDisabledElevation: number;
490
+ get outlinedDisabledElevation(): number;
491
+ set outlinedDisabledElevation(v: number);
392
492
  /**
393
493
  * Gets or sets the hover color to use for the background of the button when the type is hoveredOutlined.
394
494
  */
395
- outlinedHoverBackgroundColor: string;
495
+ get outlinedHoverBackgroundColor(): string;
496
+ set outlinedHoverBackgroundColor(v: string);
396
497
  /**
397
498
  * Gets or sets the border color to use for the button when the type is outlined.
398
499
  */
399
- outlinedBorderColor: string;
500
+ get outlinedBorderColor(): string;
501
+ set outlinedBorderColor(v: string);
400
502
  /**
401
503
  * Gets or sets the elevation to use for the button when the type is outlined.
402
504
  */
403
- outlinedRestingElevation: number;
505
+ get outlinedRestingElevation(): number;
506
+ set outlinedRestingElevation(v: number);
404
507
  /**
405
508
  * Gets or sets the hover elevation to use for the button when the type is outlined.
406
509
  */
407
- outlinedHoverElevation: number;
510
+ get outlinedHoverElevation(): number;
511
+ set outlinedHoverElevation(v: number);
408
512
  /**
409
513
  * Gets or sets the focus elevation to use for the button when the type is outlined.
410
514
  */
411
- outlinedFocusElevation: number;
515
+ get outlinedFocusElevation(): number;
516
+ set outlinedFocusElevation(v: number);
412
517
  /**
413
518
  * Gets or sets the width to use for the button border when the type is outlined.
414
519
  */
415
- outlinedBorderWidth: number;
416
- outlinedCornerRadiusBottomRight: number;
417
- outlinedCornerRadiusBottomLeft: number;
418
- outlinedCornerRadiusTopLeft: number;
419
- outlinedCornerRadiusTopRight: number;
520
+ get outlinedBorderWidth(): number;
521
+ set outlinedBorderWidth(v: number);
522
+ get outlinedCornerRadiusBottomRight(): number;
523
+ set outlinedCornerRadiusBottomRight(v: number);
524
+ get outlinedCornerRadiusBottomLeft(): number;
525
+ set outlinedCornerRadiusBottomLeft(v: number);
526
+ get outlinedCornerRadiusTopLeft(): number;
527
+ set outlinedCornerRadiusTopLeft(v: number);
528
+ get outlinedCornerRadiusTopRight(): number;
529
+ set outlinedCornerRadiusTopRight(v: number);
420
530
  ensureOutlinedCornerRadius(): void;
421
531
  /**
422
532
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
423
533
  */
424
- outlinedRippleColor: string;
534
+ get outlinedRippleColor(): string;
535
+ set outlinedRippleColor(v: string);
425
536
  /**
426
537
  * Gets or sets the color to use for the text of the button when type is outlined.
427
538
  */
428
- outlinedTextColor: string;
539
+ get outlinedTextColor(): string;
540
+ set outlinedTextColor(v: string);
429
541
  /**
430
542
  * Gets or sets the color to use for the hovered text of the button when type is outlined.
431
543
  */
432
- outlinedHoverTextColor: string;
544
+ get outlinedHoverTextColor(): string;
545
+ set outlinedHoverTextColor(v: string);
433
546
  /**
434
547
  * Gets or sets the color to use for the backround the button when it is focused and outlined.
435
548
  */
436
- outlinedFocusBackgroundColor: string;
549
+ get outlinedFocusBackgroundColor(): string;
550
+ set outlinedFocusBackgroundColor(v: string);
437
551
  /**
438
552
  * Gets or sets the color to use for the text the button when it is focused and outlined.
439
553
  */
440
- outlinedFocusTextColor: string;
554
+ get outlinedFocusTextColor(): string;
555
+ set outlinedFocusTextColor(v: string);
441
556
  /**
442
557
  * Gets or sets the color to use for the background of the button when the type is floating action button.
443
558
  */
444
- fabBackgroundColor: string;
559
+ get fabBackgroundColor(): string;
560
+ set fabBackgroundColor(v: string);
445
561
  /**
446
562
  * Gets or sets the color to use for the disabled background of the button when the type is fab.
447
563
  */
448
- fabDisabledBackgroundColor: string;
564
+ get fabDisabledBackgroundColor(): string;
565
+ set fabDisabledBackgroundColor(v: string);
449
566
  /**
450
567
  * Gets or sets the color to use for the disabled border of the button when the type is fab.
451
568
  */
452
- fabDisabledBorderColor: string;
569
+ get fabDisabledBorderColor(): string;
570
+ set fabDisabledBorderColor(v: string);
453
571
  /**
454
572
  * Gets or sets the color to use for the disabled text of the button when the type is fab.
455
573
  */
456
- fabDisabledTextColor: string;
574
+ get fabDisabledTextColor(): string;
575
+ set fabDisabledTextColor(v: string);
457
576
  /**
458
577
  * Gets or sets the disabled elevation to use for the button when the type is fab.
459
578
  */
460
- fabDisabledElevation: number;
579
+ get fabDisabledElevation(): number;
580
+ set fabDisabledElevation(v: number);
461
581
  /**
462
582
  * Gets or sets the hover color to use for the background of the button when the type is hoveredFab.
463
583
  */
464
- fabHoverBackgroundColor: string;
584
+ get fabHoverBackgroundColor(): string;
585
+ set fabHoverBackgroundColor(v: string);
465
586
  /**
466
587
  * Gets or sets the border color to use for the button when the type is floating action button.
467
588
  */
468
- fabBorderColor: string;
589
+ get fabBorderColor(): string;
590
+ set fabBorderColor(v: string);
469
591
  /**
470
592
  * Gets or sets the elevation to use for the button when the type is floating action button.
471
593
  */
472
- fabRestingElevation: number;
594
+ get fabRestingElevation(): number;
595
+ set fabRestingElevation(v: number);
473
596
  /**
474
597
  * Gets or sets the hover elevation to use for the button when the type is floating action button.
475
598
  */
476
- fabHoverElevation: number;
599
+ get fabHoverElevation(): number;
600
+ set fabHoverElevation(v: number);
477
601
  /**
478
602
  * Gets or sets the focus elevation to use for the button when the type is floating action button.
479
603
  */
480
- fabFocusElevation: number;
604
+ get fabFocusElevation(): number;
605
+ set fabFocusElevation(v: number);
481
606
  /**
482
607
  * Gets or sets the width to use for the button border when the type is floating action button.
483
608
  */
484
- fabBorderWidth: number;
485
- fabCornerRadiusBottomRight: number;
486
- fabCornerRadiusBottomLeft: number;
487
- fabCornerRadiusTopLeft: number;
488
- fabCornerRadiusTopRight: number;
609
+ get fabBorderWidth(): number;
610
+ set fabBorderWidth(v: number);
611
+ get fabCornerRadiusBottomRight(): number;
612
+ set fabCornerRadiusBottomRight(v: number);
613
+ get fabCornerRadiusBottomLeft(): number;
614
+ set fabCornerRadiusBottomLeft(v: number);
615
+ get fabCornerRadiusTopLeft(): number;
616
+ set fabCornerRadiusTopLeft(v: number);
617
+ get fabCornerRadiusTopRight(): number;
618
+ set fabCornerRadiusTopRight(v: number);
489
619
  ensureFabCornerRadius(): void;
490
620
  /**
491
621
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
492
622
  */
493
- fabRippleColor: string;
623
+ get fabRippleColor(): string;
624
+ set fabRippleColor(v: string);
494
625
  /**
495
626
  * Gets or sets the color to use for the text of the button when type is floating action button.
496
627
  */
497
- fabTextColor: string;
628
+ get fabTextColor(): string;
629
+ set fabTextColor(v: string);
498
630
  /**
499
631
  * Gets or sets the color to use for the hovered text of the button when type is floating action button.
500
632
  */
501
- fabHoverTextColor: string;
633
+ get fabHoverTextColor(): string;
634
+ set fabHoverTextColor(v: string);
502
635
  /**
503
636
  * Gets or sets the color to use for the backround the button when it is focused and fab.
504
637
  */
505
- fabFocusBackgroundColor: string;
638
+ get fabFocusBackgroundColor(): string;
639
+ set fabFocusBackgroundColor(v: string);
506
640
  /**
507
641
  * Gets or sets the color to use for the text the button when it is focused and fab.
508
642
  */
509
- fabFocusTextColor: string;
643
+ get fabFocusTextColor(): string;
644
+ set fabFocusTextColor(v: string);
510
645
  /**
511
646
  * Gets or sets the color to use for the background of the button when the type is icon.
512
647
  */
513
- iconBackgroundColor: string;
648
+ get iconBackgroundColor(): string;
649
+ set iconBackgroundColor(v: string);
514
650
  /**
515
651
  * Gets or sets the color to use for the disabled background of the button when the type is icon.
516
652
  */
517
- iconDisabledBackgroundColor: string;
653
+ get iconDisabledBackgroundColor(): string;
654
+ set iconDisabledBackgroundColor(v: string);
518
655
  /**
519
656
  * Gets or sets the color to use for the disabled border of the button when the type is icon.
520
657
  */
521
- iconDisabledBorderColor: string;
658
+ get iconDisabledBorderColor(): string;
659
+ set iconDisabledBorderColor(v: string);
522
660
  /**
523
661
  * Gets or sets the color to use for the disabled text of the button when the type is icon.
524
662
  */
525
- iconDisabledTextColor: string;
663
+ get iconDisabledTextColor(): string;
664
+ set iconDisabledTextColor(v: string);
526
665
  /**
527
666
  * Gets or sets the disabled elevation to use for the button when the type is icon.
528
667
  */
529
- iconDisabledElevation: number;
668
+ get iconDisabledElevation(): number;
669
+ set iconDisabledElevation(v: number);
530
670
  /**
531
671
  * Gets or sets the hover color to use for the background of the button when the type is hoveredIcon.
532
672
  */
533
- iconHoverBackgroundColor: string;
673
+ get iconHoverBackgroundColor(): string;
674
+ set iconHoverBackgroundColor(v: string);
534
675
  /**
535
676
  * Gets or sets the border color to use for the button when the type is icon.
536
677
  */
537
- iconBorderColor: string;
678
+ get iconBorderColor(): string;
679
+ set iconBorderColor(v: string);
538
680
  /**
539
681
  * Gets or sets the elevation to use for the button when the type is icon.
540
682
  */
541
- iconRestingElevation: number;
683
+ get iconRestingElevation(): number;
684
+ set iconRestingElevation(v: number);
542
685
  /**
543
686
  * Gets or sets the hover elevation to use for the button when the type is icon.
544
687
  */
545
- iconHoverElevation: number;
688
+ get iconHoverElevation(): number;
689
+ set iconHoverElevation(v: number);
546
690
  /**
547
691
  * Gets or sets the focus elevation to use for the button when the type is icon.
548
692
  */
549
- iconFocusElevation: number;
693
+ get iconFocusElevation(): number;
694
+ set iconFocusElevation(v: number);
550
695
  /**
551
696
  * Gets or sets the width to use for the button border when the type is icon.
552
697
  */
553
- iconBorderWidth: number;
554
- iconCornerRadiusBottomRight: number;
555
- iconCornerRadiusBottomLeft: number;
556
- iconCornerRadiusTopLeft: number;
557
- iconCornerRadiusTopRight: number;
698
+ get iconBorderWidth(): number;
699
+ set iconBorderWidth(v: number);
700
+ get iconCornerRadiusBottomRight(): number;
701
+ set iconCornerRadiusBottomRight(v: number);
702
+ get iconCornerRadiusBottomLeft(): number;
703
+ set iconCornerRadiusBottomLeft(v: number);
704
+ get iconCornerRadiusTopLeft(): number;
705
+ set iconCornerRadiusTopLeft(v: number);
706
+ get iconCornerRadiusTopRight(): number;
707
+ set iconCornerRadiusTopRight(v: number);
558
708
  ensureIconCornerRadius(): void;
559
709
  /**
560
710
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
561
711
  */
562
- iconRippleColor: string;
712
+ get iconRippleColor(): string;
713
+ set iconRippleColor(v: string);
563
714
  /**
564
715
  * Gets or sets the color to use for the text of the button when type is icon.
565
716
  */
566
- iconTextColor: string;
717
+ get iconTextColor(): string;
718
+ set iconTextColor(v: string);
567
719
  /**
568
720
  * Gets or sets the color to use for the hovered text of the button when type is icon.
569
721
  */
570
- iconHoverTextColor: string;
722
+ get iconHoverTextColor(): string;
723
+ set iconHoverTextColor(v: string);
571
724
  /**
572
725
  * Gets or sets the color to use for the backround the button when it is focused and icon.
573
726
  */
574
- iconFocusBackgroundColor: string;
727
+ get iconFocusBackgroundColor(): string;
728
+ set iconFocusBackgroundColor(v: string);
575
729
  /**
576
730
  * Gets or sets the color to use for the text the button when it is focused and icon.
577
731
  */
578
- iconFocusTextColor: string;
732
+ get iconFocusTextColor(): string;
733
+ set iconFocusTextColor(v: string);
579
734
  /**
580
735
  * Gets or sets the id to use for the internal native checkbox.
581
736
  */
582
- inputId: string;
737
+ get inputId(): string;
738
+ set inputId(v: string);
583
739
  /**
584
740
  * Gets or sets the id to use for the checkbox.
585
741
  */
586
- id: string;
742
+ get id(): string;
743
+ set id(v: string);
587
744
  /**
588
745
  * Gets or sets the id to use for the checkbox.
589
746
  */
590
- display: string;
747
+ get display(): string;
748
+ set display(v: string);
591
749
  /**
592
750
  * Gets or sets the id to use for the checkbox.
593
751
  */
594
- flexDirection: string;
752
+ get flexDirection(): string;
753
+ set flexDirection(v: string);
595
754
  /**
596
755
  * Gets or sets the flex-grow setting for the button.
597
756
  */
598
- flexGrow: string;
757
+ get flexGrow(): string;
758
+ set flexGrow(v: string);
599
759
  /**
600
760
  * Gets or sets the id to use for the checkbox.
601
761
  */
602
- alignItems: string;
762
+ get alignItems(): string;
763
+ set alignItems(v: string);
603
764
  /**
604
765
  * Gets or sets value to use for the checkbox.
605
766
  */
606
- value: any;
767
+ get value(): any;
768
+ set value(v: any);
607
769
  /**
608
770
  * Gets or sets name to use for the button.
609
771
  */
610
- name: string;
772
+ get name(): string;
773
+ set name(v: string);
611
774
  /**
612
775
  * Gets or sets TabIndex to use for the checkbox.
613
776
  */
614
- tabIndex: number;
777
+ get tabIndex(): number;
778
+ set tabIndex(v: number);
615
779
  /**
616
780
  * Gets or sets the value of the aria-label attribute.
617
781
  */
618
- ariaLabel: string;
782
+ get ariaLabel(): string;
783
+ set ariaLabel(v: string);
784
+ /**
785
+ * Gets or sets whether the button should fill the available space. If false, the button
786
+ * will use an intrinsic size.
787
+ */
788
+ get fillAvailableSpace(): boolean;
789
+ set fillAvailableSpace(v: boolean);
619
790
  /**
620
791
  * Gets or sets if the checkbox is Focused.
621
792
  */
622
- focused: boolean;
793
+ get focused(): boolean;
794
+ set focused(v: boolean);
623
795
  /**
624
796
  * Gets or sets if the button show use styling to show focus.
625
797
  */
626
- isFocusStyleEnabled: boolean;
798
+ get isFocusStyleEnabled(): boolean;
799
+ set isFocusStyleEnabled(v: boolean);
627
800
  /**
628
801
  * Gets or sets whether to disable the ripple effect for the button.
629
802
  */
630
- disableRipple: boolean;
803
+ get disableRipple(): boolean;
804
+ set disableRipple(v: boolean);
631
805
  /**
632
806
  * Gets whether to actually disable the ripple effect for the button.
633
807
  */
634
- actualDisableRipple: boolean;
808
+ get actualDisableRipple(): boolean;
809
+ set actualDisableRipple(v: boolean);
810
+ /**
811
+ * Gets or sets whether the hover effect is disabled.
812
+ */
813
+ get disableHover(): boolean;
814
+ set disableHover(v: boolean);
635
815
  /**
636
816
  * Gets or sets whether the checkbox is checked.
637
817
  */
638
- isHover: boolean;
818
+ get isHover(): boolean;
819
+ set isHover(v: boolean);
639
820
  /**
640
821
  * Gets or sets whether the checkbox is disabled.
641
822
  */
642
- disabled: boolean;
823
+ get disabled(): boolean;
824
+ set disabled(v: boolean);
643
825
  /**
644
826
  * Gets or sets whether the checkbox transitions are disabled.
645
827
  */
646
- disableTransitions: boolean;
828
+ get disableTransitions(): boolean;
829
+ set disableTransitions(v: boolean);
830
+ /**
831
+ * Gets or sets whether the cursor will change into a pointer when the button is hovered.
832
+ */
833
+ get disablePointer(): boolean;
834
+ set disablePointer(v: boolean);
835
+ /**
836
+ * Gets or sets the left padding for the button content.
837
+ */
838
+ get contentPaddingLeft(): number;
839
+ set contentPaddingLeft(v: number);
840
+ /**
841
+ * Gets or sets the top padding for the button content.
842
+ */
843
+ get contentPaddingTop(): number;
844
+ set contentPaddingTop(v: number);
845
+ /**
846
+ * Gets or sets the right padding for the button content.
847
+ */
848
+ get contentPaddingRight(): number;
849
+ set contentPaddingRight(v: number);
850
+ /**
851
+ * Gets or sets the bottom padding for the button content.
852
+ */
853
+ get contentPaddingBottom(): number;
854
+ set contentPaddingBottom(v: number);
855
+ get horizontalContentAlignment(): HorizontalAlignment;
856
+ set horizontalContentAlignment(v: HorizontalAlignment);
857
+ get verticalContentAlignment(): VerticalAlignment;
858
+ set verticalContentAlignment(v: VerticalAlignment);
859
+ /**
860
+ * Gets or sets if clicking on the button is allowed to tunnel down to button content.
861
+ */
862
+ get clickTunneling(): boolean;
863
+ set clickTunneling(v: boolean);
647
864
  findByName(name: string): any;
648
865
  protected __p: string;
649
866
  protected _hasUserValues: Set<string>;
650
- protected readonly hasUserValues: Set<string>;
867
+ protected get hasUserValues(): Set<string>;
651
868
  protected __m(propertyName: string): void;
652
869
  protected _stylingContainer: any;
653
870
  protected _stylingParent: any;
@@ -667,5 +884,14 @@ export declare class IgcXButtonComponent extends IgcHTMLElement {
667
884
  exportSerializedVisualModel(): string;
668
885
  private _clicked;
669
886
  private _clicked_wrapped;
670
- clicked: (s: IgcXButtonComponent, e: IgcButtonClickEventArgs) => void;
887
+ get clicked(): (s: IgcXButtonComponent, e: IgcButtonClickEventArgs) => void;
888
+ set clicked(ev: (s: IgcXButtonComponent, e: IgcButtonClickEventArgs) => void);
889
+ private _gotFocus;
890
+ private _gotFocus_wrapped;
891
+ get gotFocus(): (s: IgcXButtonComponent, e: IgcFocusEventArgs) => void;
892
+ set gotFocus(ev: (s: IgcXButtonComponent, e: IgcFocusEventArgs) => void);
893
+ private _lostFocus;
894
+ private _lostFocus_wrapped;
895
+ get lostFocus(): (s: IgcXButtonComponent, e: IgcFocusEventArgs) => void;
896
+ set lostFocus(ev: (s: IgcXButtonComponent, e: IgcFocusEventArgs) => void);
671
897
  }