igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.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/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- package/public_api.d.ts +3 -0
|
@@ -16,6 +16,34 @@ import { ButtonGroupDisplayStyle_$type } from './ButtonGroupDisplayStyle';
|
|
|
16
16
|
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
17
17
|
export let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
18
18
|
class IgcXButtonGroupComponent extends IgcHTMLElement {
|
|
19
|
+
/**
|
|
20
|
+
* A collection or manually added axes for the chart.
|
|
21
|
+
*/
|
|
22
|
+
get buttons() {
|
|
23
|
+
if (this._buttons === null) {
|
|
24
|
+
let coll = new IgcXButtonGroupButtonCollection();
|
|
25
|
+
let inner = coll._innerColl;
|
|
26
|
+
inner.addListener((sender, e) => {
|
|
27
|
+
switch (e.action) {
|
|
28
|
+
case NotifyCollectionChangedAction.Add:
|
|
29
|
+
this._buttonsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
30
|
+
break;
|
|
31
|
+
case NotifyCollectionChangedAction.Remove:
|
|
32
|
+
this._buttonsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
33
|
+
break;
|
|
34
|
+
case NotifyCollectionChangedAction.Replace:
|
|
35
|
+
this._buttonsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
36
|
+
this._buttonsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
37
|
+
break;
|
|
38
|
+
case NotifyCollectionChangedAction.Reset:
|
|
39
|
+
this._buttonsAdapter.clearManualItems();
|
|
40
|
+
break;
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
this._buttons = coll;
|
|
44
|
+
}
|
|
45
|
+
return this._buttons;
|
|
46
|
+
}
|
|
19
47
|
constructor() {
|
|
20
48
|
super();
|
|
21
49
|
this.contentButtons = [];
|
|
@@ -81,34 +109,6 @@ export let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
81
109
|
// this._checkbox.notifySizeChanged();
|
|
82
110
|
//});
|
|
83
111
|
}
|
|
84
|
-
/**
|
|
85
|
-
* A collection or manually added axes for the chart.
|
|
86
|
-
*/
|
|
87
|
-
get buttons() {
|
|
88
|
-
if (this._buttons === null) {
|
|
89
|
-
let coll = new IgcXButtonGroupButtonCollection();
|
|
90
|
-
let inner = coll._innerColl;
|
|
91
|
-
inner.addListener((sender, e) => {
|
|
92
|
-
switch (e.action) {
|
|
93
|
-
case NotifyCollectionChangedAction.Add:
|
|
94
|
-
this._buttonsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
95
|
-
break;
|
|
96
|
-
case NotifyCollectionChangedAction.Remove:
|
|
97
|
-
this._buttonsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
98
|
-
break;
|
|
99
|
-
case NotifyCollectionChangedAction.Replace:
|
|
100
|
-
this._buttonsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
101
|
-
this._buttonsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
102
|
-
break;
|
|
103
|
-
case NotifyCollectionChangedAction.Reset:
|
|
104
|
-
this._buttonsAdapter.clearManualItems();
|
|
105
|
-
break;
|
|
106
|
-
}
|
|
107
|
-
});
|
|
108
|
-
this._buttons = coll;
|
|
109
|
-
}
|
|
110
|
-
return this._buttons;
|
|
111
|
-
}
|
|
112
112
|
_onChildrenChanged() {
|
|
113
113
|
var children = [];
|
|
114
114
|
for (var i = 0; i < this.childNodes.length; i++) {
|
|
@@ -12,6 +12,22 @@ import { DayOfWeek_$type } from "./DayOfWeek";
|
|
|
12
12
|
import { FirstWeek_$type } from "./FirstWeek";
|
|
13
13
|
export let IgcXCalendarComponent = /*@__PURE__*/ (() => {
|
|
14
14
|
class IgcXCalendarComponent extends HTMLElement {
|
|
15
|
+
set height(value) {
|
|
16
|
+
this._height = value;
|
|
17
|
+
this.style.height = value;
|
|
18
|
+
this.i.notifySizeChanged();
|
|
19
|
+
}
|
|
20
|
+
get height() {
|
|
21
|
+
return this._height;
|
|
22
|
+
}
|
|
23
|
+
set width(value) {
|
|
24
|
+
this._width = value;
|
|
25
|
+
this.style.width = value;
|
|
26
|
+
this.i.notifySizeChanged();
|
|
27
|
+
}
|
|
28
|
+
get width() {
|
|
29
|
+
return this._width;
|
|
30
|
+
}
|
|
15
31
|
constructor() {
|
|
16
32
|
super();
|
|
17
33
|
this._disconnected = false;
|
|
@@ -44,22 +60,6 @@ export let IgcXCalendarComponent = /*@__PURE__*/ (() => {
|
|
|
44
60
|
this._calendar.notifySizeChanged();
|
|
45
61
|
});
|
|
46
62
|
}
|
|
47
|
-
set height(value) {
|
|
48
|
-
this._height = value;
|
|
49
|
-
this.style.height = value;
|
|
50
|
-
this.i.notifySizeChanged();
|
|
51
|
-
}
|
|
52
|
-
get height() {
|
|
53
|
-
return this._height;
|
|
54
|
-
}
|
|
55
|
-
set width(value) {
|
|
56
|
-
this._width = value;
|
|
57
|
-
this.style.width = value;
|
|
58
|
-
this.i.notifySizeChanged();
|
|
59
|
-
}
|
|
60
|
-
get width() {
|
|
61
|
-
return this._width;
|
|
62
|
-
}
|
|
63
63
|
// supports angular themes or custom properties set in CSS
|
|
64
64
|
updateStyle() {
|
|
65
65
|
this._styling(this, this);
|
|
@@ -192,189 +192,189 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
192
192
|
* Gets or sets the base built in theme to use for the checkbox.
|
|
193
193
|
*/
|
|
194
194
|
get baseTheme() {
|
|
195
|
-
return this.i.
|
|
195
|
+
return this.i.n;
|
|
196
196
|
}
|
|
197
197
|
set baseTheme(v) {
|
|
198
|
-
this.i.
|
|
199
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
198
|
+
this.i.n = ensureEnum(BaseControlTheme_$type, v);
|
|
199
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.n));
|
|
200
200
|
}
|
|
201
201
|
/**
|
|
202
202
|
* Gets or sets the color to use for the background when the checkbox is unchecked.
|
|
203
203
|
*/
|
|
204
204
|
get uncheckedBackgroundColor() {
|
|
205
|
-
return brushToString(this.i.
|
|
205
|
+
return brushToString(this.i.dl);
|
|
206
206
|
}
|
|
207
207
|
set uncheckedBackgroundColor(v) {
|
|
208
|
-
this.i.
|
|
209
|
-
this._a("uncheckedBackgroundColor", brushToString(this.i.
|
|
208
|
+
this.i.dl = stringToBrush(v);
|
|
209
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.dl));
|
|
210
210
|
}
|
|
211
211
|
/**
|
|
212
212
|
* Gets or sets the color to use for the actual background when the checkbox is unchecked.
|
|
213
213
|
*/
|
|
214
214
|
get actualUncheckedBackgroundColor() {
|
|
215
|
-
return brushToString(this.i.
|
|
215
|
+
return brushToString(this.i.db);
|
|
216
216
|
}
|
|
217
217
|
set actualUncheckedBackgroundColor(v) {
|
|
218
|
-
this.i.
|
|
219
|
-
this._a("actualUncheckedBackgroundColor", brushToString(this.i.
|
|
218
|
+
this.i.db = stringToBrush(v);
|
|
219
|
+
this._a("actualUncheckedBackgroundColor", brushToString(this.i.db));
|
|
220
220
|
}
|
|
221
221
|
/**
|
|
222
222
|
* Gets or sets the color to use for the background when the checkbox is checked.
|
|
223
223
|
*/
|
|
224
224
|
get checkedBackgroundColor() {
|
|
225
|
-
return brushToString(this.i.
|
|
225
|
+
return brushToString(this.i.dd);
|
|
226
226
|
}
|
|
227
227
|
set checkedBackgroundColor(v) {
|
|
228
|
-
this.i.
|
|
229
|
-
this._a("checkedBackgroundColor", brushToString(this.i.
|
|
228
|
+
this.i.dd = stringToBrush(v);
|
|
229
|
+
this._a("checkedBackgroundColor", brushToString(this.i.dd));
|
|
230
230
|
}
|
|
231
231
|
/**
|
|
232
232
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
233
233
|
*/
|
|
234
234
|
get tickColor() {
|
|
235
|
-
return brushToString(this.i.
|
|
235
|
+
return brushToString(this.i.dk);
|
|
236
236
|
}
|
|
237
237
|
set tickColor(v) {
|
|
238
|
-
this.i.
|
|
239
|
-
this._a("tickColor", brushToString(this.i.
|
|
238
|
+
this.i.dk = stringToBrush(v);
|
|
239
|
+
this._a("tickColor", brushToString(this.i.dk));
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
243
243
|
*/
|
|
244
244
|
get actualTickColor() {
|
|
245
|
-
return brushToString(this.i.
|
|
245
|
+
return brushToString(this.i.da);
|
|
246
246
|
}
|
|
247
247
|
set actualTickColor(v) {
|
|
248
|
-
this.i.
|
|
249
|
-
this._a("actualTickColor", brushToString(this.i.
|
|
248
|
+
this.i.da = stringToBrush(v);
|
|
249
|
+
this._a("actualTickColor", brushToString(this.i.da));
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
252
|
* Gets or sets the color to use for the check mark when the checkbox is unchecked.
|
|
253
253
|
*/
|
|
254
254
|
get uncheckedBorderColor() {
|
|
255
|
-
return brushToString(this.i.
|
|
255
|
+
return brushToString(this.i.dm);
|
|
256
256
|
}
|
|
257
257
|
set uncheckedBorderColor(v) {
|
|
258
|
-
this.i.
|
|
259
|
-
this._a("uncheckedBorderColor", brushToString(this.i.
|
|
258
|
+
this.i.dm = stringToBrush(v);
|
|
259
|
+
this._a("uncheckedBorderColor", brushToString(this.i.dm));
|
|
260
260
|
}
|
|
261
261
|
/**
|
|
262
262
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
263
263
|
*/
|
|
264
264
|
get checkedBorderColor() {
|
|
265
|
-
return brushToString(this.i.
|
|
265
|
+
return brushToString(this.i.de);
|
|
266
266
|
}
|
|
267
267
|
set checkedBorderColor(v) {
|
|
268
|
-
this.i.
|
|
269
|
-
this._a("checkedBorderColor", brushToString(this.i.
|
|
268
|
+
this.i.de = stringToBrush(v);
|
|
269
|
+
this._a("checkedBorderColor", brushToString(this.i.de));
|
|
270
270
|
}
|
|
271
271
|
/**
|
|
272
272
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
273
273
|
*/
|
|
274
274
|
get actualUncheckedBorderColor() {
|
|
275
|
-
return brushToString(this.i.
|
|
275
|
+
return brushToString(this.i.dc);
|
|
276
276
|
}
|
|
277
277
|
set actualUncheckedBorderColor(v) {
|
|
278
|
-
this.i.
|
|
279
|
-
this._a("actualUncheckedBorderColor", brushToString(this.i.
|
|
278
|
+
this.i.dc = stringToBrush(v);
|
|
279
|
+
this._a("actualUncheckedBorderColor", brushToString(this.i.dc));
|
|
280
280
|
}
|
|
281
281
|
/**
|
|
282
282
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
283
283
|
*/
|
|
284
284
|
get actualCheckedBorderColor() {
|
|
285
|
-
return brushToString(this.i.
|
|
285
|
+
return brushToString(this.i.c9);
|
|
286
286
|
}
|
|
287
287
|
set actualCheckedBorderColor(v) {
|
|
288
|
-
this.i.
|
|
289
|
-
this._a("actualCheckedBorderColor", brushToString(this.i.
|
|
288
|
+
this.i.c9 = stringToBrush(v);
|
|
289
|
+
this._a("actualCheckedBorderColor", brushToString(this.i.c9));
|
|
290
290
|
}
|
|
291
291
|
/**
|
|
292
292
|
* Gets or sets the Width to use for the check mark when the checkbox is checked.
|
|
293
293
|
*/
|
|
294
294
|
get borderWidth() {
|
|
295
|
-
return this.i.
|
|
295
|
+
return this.i.aq;
|
|
296
296
|
}
|
|
297
297
|
set borderWidth(v) {
|
|
298
|
-
this.i.
|
|
299
|
-
this._a("borderWidth", this.i.
|
|
298
|
+
this.i.aq = +v;
|
|
299
|
+
this._a("borderWidth", this.i.aq);
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
302
302
|
* Gets or sets the Width to use for the check mark when the checkbox is checked.
|
|
303
303
|
*/
|
|
304
304
|
get actualBorderWidth() {
|
|
305
|
-
return this.i.
|
|
305
|
+
return this.i.an;
|
|
306
306
|
}
|
|
307
307
|
set actualBorderWidth(v) {
|
|
308
|
-
this.i.
|
|
309
|
-
this._a("actualBorderWidth", this.i.
|
|
308
|
+
this.i.an = +v;
|
|
309
|
+
this._a("actualBorderWidth", this.i.an);
|
|
310
310
|
}
|
|
311
311
|
/**
|
|
312
312
|
* Gets or sets the corner radius to use for the checkbox.
|
|
313
313
|
*/
|
|
314
314
|
get cornerRadius() {
|
|
315
|
-
return this.i.
|
|
315
|
+
return this.i.ar;
|
|
316
316
|
}
|
|
317
317
|
set cornerRadius(v) {
|
|
318
|
-
this.i.
|
|
319
|
-
this._a("cornerRadius", this.i.
|
|
318
|
+
this.i.ar = +v;
|
|
319
|
+
this._a("cornerRadius", this.i.ar);
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
322
|
* Gets or sets the corner radius to use for the checkbox.
|
|
323
323
|
*/
|
|
324
324
|
get tickStrokeWidth() {
|
|
325
|
-
return this.i.
|
|
325
|
+
return this.i.av;
|
|
326
326
|
}
|
|
327
327
|
set tickStrokeWidth(v) {
|
|
328
|
-
this.i.
|
|
329
|
-
this._a("tickStrokeWidth", this.i.
|
|
328
|
+
this.i.av = +v;
|
|
329
|
+
this._a("tickStrokeWidth", this.i.av);
|
|
330
330
|
}
|
|
331
331
|
/**
|
|
332
332
|
* Gets or sets the stroke width to use for the check mark.
|
|
333
333
|
*/
|
|
334
334
|
get actualTickStrokeWidth() {
|
|
335
|
-
return this.i.
|
|
335
|
+
return this.i.ap;
|
|
336
336
|
}
|
|
337
337
|
set actualTickStrokeWidth(v) {
|
|
338
|
-
this.i.
|
|
339
|
-
this._a("actualTickStrokeWidth", this.i.
|
|
338
|
+
this.i.ap = +v;
|
|
339
|
+
this._a("actualTickStrokeWidth", this.i.ap);
|
|
340
340
|
}
|
|
341
341
|
/**
|
|
342
342
|
* Gets the actual corner radius to use for the checkbox.
|
|
343
343
|
*/
|
|
344
344
|
get actualCornerRadius() {
|
|
345
|
-
return this.i.
|
|
345
|
+
return this.i.ao;
|
|
346
346
|
}
|
|
347
347
|
set actualCornerRadius(v) {
|
|
348
|
-
this.i.
|
|
349
|
-
this._a("actualCornerRadius", this.i.
|
|
348
|
+
this.i.ao = +v;
|
|
349
|
+
this._a("actualCornerRadius", this.i.ao);
|
|
350
350
|
}
|
|
351
351
|
/**
|
|
352
352
|
* Gets or sets the color to use for the actual background when the checkbox is checked.
|
|
353
353
|
*/
|
|
354
354
|
get actualCheckedBackgroundColor() {
|
|
355
|
-
return brushToString(this.i.
|
|
355
|
+
return brushToString(this.i.c8);
|
|
356
356
|
}
|
|
357
357
|
set actualCheckedBackgroundColor(v) {
|
|
358
|
-
this.i.
|
|
359
|
-
this._a("actualCheckedBackgroundColor", brushToString(this.i.
|
|
358
|
+
this.i.c8 = stringToBrush(v);
|
|
359
|
+
this._a("actualCheckedBackgroundColor", brushToString(this.i.c8));
|
|
360
360
|
}
|
|
361
361
|
/**
|
|
362
362
|
* Gets or sets the id to use for the internal native checkbox.
|
|
363
363
|
*/
|
|
364
364
|
get inputId() {
|
|
365
|
-
return this.i.
|
|
365
|
+
return this.i.b1;
|
|
366
366
|
}
|
|
367
367
|
set inputId(v) {
|
|
368
|
-
this.i.
|
|
368
|
+
this.i.b1 = v;
|
|
369
369
|
}
|
|
370
370
|
/**
|
|
371
371
|
* Gets or sets the id to use for the checkbox.
|
|
372
372
|
*/
|
|
373
373
|
get id() {
|
|
374
|
-
return this.i.
|
|
374
|
+
return this.i.bz;
|
|
375
375
|
}
|
|
376
376
|
set id(v) {
|
|
377
|
-
this.i.
|
|
377
|
+
this.i.bz = v;
|
|
378
378
|
}
|
|
379
379
|
/**
|
|
380
380
|
* Gets or sets id to use for the checkbox label.
|
|
@@ -389,57 +389,57 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
389
389
|
* Gets or sets name to use for the checkbox.
|
|
390
390
|
*/
|
|
391
391
|
get name() {
|
|
392
|
-
return this.i.
|
|
392
|
+
return this.i.ca;
|
|
393
393
|
}
|
|
394
394
|
set name(v) {
|
|
395
|
-
this.i.
|
|
395
|
+
this.i.ca = v;
|
|
396
396
|
}
|
|
397
397
|
/**
|
|
398
398
|
* Gets or sets TabIndex to use for the checkbox.
|
|
399
399
|
*/
|
|
400
400
|
get tabIndex() {
|
|
401
|
-
return this.i.
|
|
401
|
+
return this.i.az;
|
|
402
402
|
}
|
|
403
403
|
set tabIndex(v) {
|
|
404
|
-
this.i.
|
|
405
|
-
this._a("tabIndex", this.i.
|
|
404
|
+
this.i.az = +v;
|
|
405
|
+
this._a("tabIndex", this.i.az);
|
|
406
406
|
}
|
|
407
407
|
/**
|
|
408
408
|
* Gets or sets if the checkbox is required.
|
|
409
409
|
*/
|
|
410
410
|
get required() {
|
|
411
|
-
return this.i.
|
|
411
|
+
return this.i.ay;
|
|
412
412
|
}
|
|
413
413
|
set required(v) {
|
|
414
|
-
this.i.
|
|
415
|
-
this._a("required", this.i.
|
|
414
|
+
this.i.ay = +v;
|
|
415
|
+
this._a("required", this.i.ay);
|
|
416
416
|
}
|
|
417
417
|
/**
|
|
418
418
|
* Gets or sets the value of the aria-labelledby attribute.
|
|
419
419
|
*/
|
|
420
420
|
get ariaLabelledBy() {
|
|
421
|
-
return this.i.
|
|
421
|
+
return this.i.bn;
|
|
422
422
|
}
|
|
423
423
|
set ariaLabelledBy(v) {
|
|
424
|
-
this.i.
|
|
424
|
+
this.i.bn = v;
|
|
425
425
|
}
|
|
426
426
|
/**
|
|
427
427
|
* Gets or sets the value of the aria-label attribute.
|
|
428
428
|
*/
|
|
429
429
|
get ariaLabel() {
|
|
430
|
-
return this.i.
|
|
430
|
+
return this.i.bm;
|
|
431
431
|
}
|
|
432
432
|
set ariaLabel(v) {
|
|
433
|
-
this.i.
|
|
433
|
+
this.i.bm = v;
|
|
434
434
|
}
|
|
435
435
|
/**
|
|
436
436
|
* Gets or sets value to use for the checkbox.
|
|
437
437
|
*/
|
|
438
438
|
get value() {
|
|
439
|
-
return this.i.
|
|
439
|
+
return this.i.a4;
|
|
440
440
|
}
|
|
441
441
|
set value(v) {
|
|
442
|
-
this.i.
|
|
442
|
+
this.i.a4 = v;
|
|
443
443
|
}
|
|
444
444
|
/**
|
|
445
445
|
* Gets or sets if the checkbox is Focused.
|
|
@@ -465,11 +465,11 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
465
465
|
* Gets or sets whether to disable the ripple effect for the checkbox.
|
|
466
466
|
*/
|
|
467
467
|
get disableRipple() {
|
|
468
|
-
return this.i.
|
|
468
|
+
return this.i.y;
|
|
469
469
|
}
|
|
470
470
|
set disableRipple(v) {
|
|
471
|
-
this.i.
|
|
472
|
-
this._a("disableRipple", this.i.
|
|
471
|
+
this.i.y = ensureBool(v);
|
|
472
|
+
this._a("disableRipple", this.i.y);
|
|
473
473
|
}
|
|
474
474
|
/**
|
|
475
475
|
* Gets or sets whether the checkbox is checked.
|
|
@@ -505,11 +505,11 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
505
505
|
* Gets or sets whether the checkbox transitions are disabled.
|
|
506
506
|
*/
|
|
507
507
|
get disableTransitions() {
|
|
508
|
-
return this.i.
|
|
508
|
+
return this.i.z;
|
|
509
509
|
}
|
|
510
510
|
set disableTransitions(v) {
|
|
511
|
-
this.i.
|
|
512
|
-
this._a("disableTransitions", this.i.
|
|
511
|
+
this.i.z = ensureBool(v);
|
|
512
|
+
this._a("disableTransitions", this.i.z);
|
|
513
513
|
}
|
|
514
514
|
findByName(name) {
|
|
515
515
|
if (this.findEphemera) {
|
|
@@ -583,7 +583,7 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
583
583
|
|
|
584
584
|
*/
|
|
585
585
|
exportVisualModel() {
|
|
586
|
-
let iv = this.i.
|
|
586
|
+
let iv = this.i.a3();
|
|
587
587
|
return (iv);
|
|
588
588
|
}
|
|
589
589
|
/**
|
|
@@ -591,7 +591,7 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
591
591
|
|
|
592
592
|
*/
|
|
593
593
|
exportSerializedVisualModel() {
|
|
594
|
-
let iv = this.i.
|
|
594
|
+
let iv = this.i.by();
|
|
595
595
|
return (iv);
|
|
596
596
|
}
|
|
597
597
|
get change() {
|