igniteui-webcomponents-inputs 4.2.5 → 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.
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { __extends, __values } from "tslib";
|
|
2
2
|
import { XCheckbox } from "./XCheckbox";
|
|
3
3
|
import { ensureEnum, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, enumToString, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
|
|
4
4
|
import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
|
|
@@ -12,7 +12,7 @@ import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
|
12
12
|
var pending = [];
|
|
13
13
|
var checked = /*@__PURE__*/ new WeakMap(); // TODO why not WeakSet?
|
|
14
14
|
var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
|
-
|
|
15
|
+
__extends(IgcXCheckboxComponent, _super);
|
|
16
16
|
function IgcXCheckboxComponent() {
|
|
17
17
|
var _this = _super.call(this) || this;
|
|
18
18
|
_this._disconnected = false;
|
|
@@ -52,7 +52,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
52
52
|
var mut = new MutationObserver(function (list) {
|
|
53
53
|
var e_1, _b;
|
|
54
54
|
try {
|
|
55
|
-
for (var list_1 =
|
|
55
|
+
for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
|
|
56
56
|
var mutation = list_1_1.value;
|
|
57
57
|
if (mutation.type == 'childList') {
|
|
58
58
|
_this._onChildrenChanged();
|
|
@@ -141,7 +141,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
141
141
|
} /**
|
|
142
142
|
* @hidden
|
|
143
143
|
*/,
|
|
144
|
-
enumerable:
|
|
144
|
+
enumerable: false,
|
|
145
145
|
configurable: true
|
|
146
146
|
});
|
|
147
147
|
IgcXCheckboxComponent._createFromInternal = function (internal) {
|
|
@@ -197,7 +197,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
197
197
|
}
|
|
198
198
|
return IgcXCheckboxComponent._observedAttributesIgcXCheckboxComponent;
|
|
199
199
|
},
|
|
200
|
-
enumerable:
|
|
200
|
+
enumerable: false,
|
|
201
201
|
configurable: true
|
|
202
202
|
});
|
|
203
203
|
IgcXCheckboxComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
|
|
@@ -220,13 +220,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
220
220
|
* Gets or sets the base built in theme to use for the checkbox.
|
|
221
221
|
*/
|
|
222
222
|
get: function () {
|
|
223
|
-
return this.i.
|
|
223
|
+
return this.i.n;
|
|
224
224
|
},
|
|
225
225
|
set: function (v) {
|
|
226
|
-
this.i.
|
|
227
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
226
|
+
this.i.n = ensureEnum(BaseControlTheme_$type, v);
|
|
227
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.n));
|
|
228
228
|
},
|
|
229
|
-
enumerable:
|
|
229
|
+
enumerable: false,
|
|
230
230
|
configurable: true
|
|
231
231
|
});
|
|
232
232
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "uncheckedBackgroundColor", {
|
|
@@ -234,13 +234,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
234
234
|
* Gets or sets the color to use for the background when the checkbox is unchecked.
|
|
235
235
|
*/
|
|
236
236
|
get: function () {
|
|
237
|
-
return brushToString(this.i.
|
|
237
|
+
return brushToString(this.i.dl);
|
|
238
238
|
},
|
|
239
239
|
set: function (v) {
|
|
240
|
-
this.i.
|
|
241
|
-
this._a("uncheckedBackgroundColor", brushToString(this.i.
|
|
240
|
+
this.i.dl = stringToBrush(v);
|
|
241
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.dl));
|
|
242
242
|
},
|
|
243
|
-
enumerable:
|
|
243
|
+
enumerable: false,
|
|
244
244
|
configurable: true
|
|
245
245
|
});
|
|
246
246
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualUncheckedBackgroundColor", {
|
|
@@ -248,13 +248,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
248
248
|
* Gets or sets the color to use for the actual background when the checkbox is unchecked.
|
|
249
249
|
*/
|
|
250
250
|
get: function () {
|
|
251
|
-
return brushToString(this.i.
|
|
251
|
+
return brushToString(this.i.db);
|
|
252
252
|
},
|
|
253
253
|
set: function (v) {
|
|
254
|
-
this.i.
|
|
255
|
-
this._a("actualUncheckedBackgroundColor", brushToString(this.i.
|
|
254
|
+
this.i.db = stringToBrush(v);
|
|
255
|
+
this._a("actualUncheckedBackgroundColor", brushToString(this.i.db));
|
|
256
256
|
},
|
|
257
|
-
enumerable:
|
|
257
|
+
enumerable: false,
|
|
258
258
|
configurable: true
|
|
259
259
|
});
|
|
260
260
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "checkedBackgroundColor", {
|
|
@@ -262,13 +262,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
262
262
|
* Gets or sets the color to use for the background when the checkbox is checked.
|
|
263
263
|
*/
|
|
264
264
|
get: function () {
|
|
265
|
-
return brushToString(this.i.
|
|
265
|
+
return brushToString(this.i.dd);
|
|
266
266
|
},
|
|
267
267
|
set: function (v) {
|
|
268
|
-
this.i.
|
|
269
|
-
this._a("checkedBackgroundColor", brushToString(this.i.
|
|
268
|
+
this.i.dd = stringToBrush(v);
|
|
269
|
+
this._a("checkedBackgroundColor", brushToString(this.i.dd));
|
|
270
270
|
},
|
|
271
|
-
enumerable:
|
|
271
|
+
enumerable: false,
|
|
272
272
|
configurable: true
|
|
273
273
|
});
|
|
274
274
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "tickColor", {
|
|
@@ -276,13 +276,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
276
276
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
277
277
|
*/
|
|
278
278
|
get: function () {
|
|
279
|
-
return brushToString(this.i.
|
|
279
|
+
return brushToString(this.i.dk);
|
|
280
280
|
},
|
|
281
281
|
set: function (v) {
|
|
282
|
-
this.i.
|
|
283
|
-
this._a("tickColor", brushToString(this.i.
|
|
282
|
+
this.i.dk = stringToBrush(v);
|
|
283
|
+
this._a("tickColor", brushToString(this.i.dk));
|
|
284
284
|
},
|
|
285
|
-
enumerable:
|
|
285
|
+
enumerable: false,
|
|
286
286
|
configurable: true
|
|
287
287
|
});
|
|
288
288
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualTickColor", {
|
|
@@ -290,13 +290,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
290
290
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
291
291
|
*/
|
|
292
292
|
get: function () {
|
|
293
|
-
return brushToString(this.i.
|
|
293
|
+
return brushToString(this.i.da);
|
|
294
294
|
},
|
|
295
295
|
set: function (v) {
|
|
296
|
-
this.i.
|
|
297
|
-
this._a("actualTickColor", brushToString(this.i.
|
|
296
|
+
this.i.da = stringToBrush(v);
|
|
297
|
+
this._a("actualTickColor", brushToString(this.i.da));
|
|
298
298
|
},
|
|
299
|
-
enumerable:
|
|
299
|
+
enumerable: false,
|
|
300
300
|
configurable: true
|
|
301
301
|
});
|
|
302
302
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "uncheckedBorderColor", {
|
|
@@ -304,13 +304,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
304
304
|
* Gets or sets the color to use for the check mark when the checkbox is unchecked.
|
|
305
305
|
*/
|
|
306
306
|
get: function () {
|
|
307
|
-
return brushToString(this.i.
|
|
307
|
+
return brushToString(this.i.dm);
|
|
308
308
|
},
|
|
309
309
|
set: function (v) {
|
|
310
|
-
this.i.
|
|
311
|
-
this._a("uncheckedBorderColor", brushToString(this.i.
|
|
310
|
+
this.i.dm = stringToBrush(v);
|
|
311
|
+
this._a("uncheckedBorderColor", brushToString(this.i.dm));
|
|
312
312
|
},
|
|
313
|
-
enumerable:
|
|
313
|
+
enumerable: false,
|
|
314
314
|
configurable: true
|
|
315
315
|
});
|
|
316
316
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "checkedBorderColor", {
|
|
@@ -318,13 +318,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
318
318
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
319
319
|
*/
|
|
320
320
|
get: function () {
|
|
321
|
-
return brushToString(this.i.
|
|
321
|
+
return brushToString(this.i.de);
|
|
322
322
|
},
|
|
323
323
|
set: function (v) {
|
|
324
|
-
this.i.
|
|
325
|
-
this._a("checkedBorderColor", brushToString(this.i.
|
|
324
|
+
this.i.de = stringToBrush(v);
|
|
325
|
+
this._a("checkedBorderColor", brushToString(this.i.de));
|
|
326
326
|
},
|
|
327
|
-
enumerable:
|
|
327
|
+
enumerable: false,
|
|
328
328
|
configurable: true
|
|
329
329
|
});
|
|
330
330
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualUncheckedBorderColor", {
|
|
@@ -332,13 +332,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
332
332
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
333
333
|
*/
|
|
334
334
|
get: function () {
|
|
335
|
-
return brushToString(this.i.
|
|
335
|
+
return brushToString(this.i.dc);
|
|
336
336
|
},
|
|
337
337
|
set: function (v) {
|
|
338
|
-
this.i.
|
|
339
|
-
this._a("actualUncheckedBorderColor", brushToString(this.i.
|
|
338
|
+
this.i.dc = stringToBrush(v);
|
|
339
|
+
this._a("actualUncheckedBorderColor", brushToString(this.i.dc));
|
|
340
340
|
},
|
|
341
|
-
enumerable:
|
|
341
|
+
enumerable: false,
|
|
342
342
|
configurable: true
|
|
343
343
|
});
|
|
344
344
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualCheckedBorderColor", {
|
|
@@ -346,13 +346,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
346
346
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
347
347
|
*/
|
|
348
348
|
get: function () {
|
|
349
|
-
return brushToString(this.i.
|
|
349
|
+
return brushToString(this.i.c9);
|
|
350
350
|
},
|
|
351
351
|
set: function (v) {
|
|
352
|
-
this.i.
|
|
353
|
-
this._a("actualCheckedBorderColor", brushToString(this.i.
|
|
352
|
+
this.i.c9 = stringToBrush(v);
|
|
353
|
+
this._a("actualCheckedBorderColor", brushToString(this.i.c9));
|
|
354
354
|
},
|
|
355
|
-
enumerable:
|
|
355
|
+
enumerable: false,
|
|
356
356
|
configurable: true
|
|
357
357
|
});
|
|
358
358
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "borderWidth", {
|
|
@@ -360,13 +360,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
360
360
|
* Gets or sets the Width to use for the check mark when the checkbox is checked.
|
|
361
361
|
*/
|
|
362
362
|
get: function () {
|
|
363
|
-
return this.i.
|
|
363
|
+
return this.i.aq;
|
|
364
364
|
},
|
|
365
365
|
set: function (v) {
|
|
366
|
-
this.i.
|
|
367
|
-
this._a("borderWidth", this.i.
|
|
366
|
+
this.i.aq = +v;
|
|
367
|
+
this._a("borderWidth", this.i.aq);
|
|
368
368
|
},
|
|
369
|
-
enumerable:
|
|
369
|
+
enumerable: false,
|
|
370
370
|
configurable: true
|
|
371
371
|
});
|
|
372
372
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualBorderWidth", {
|
|
@@ -374,13 +374,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
374
374
|
* Gets or sets the Width to use for the check mark when the checkbox is checked.
|
|
375
375
|
*/
|
|
376
376
|
get: function () {
|
|
377
|
-
return this.i.
|
|
377
|
+
return this.i.an;
|
|
378
378
|
},
|
|
379
379
|
set: function (v) {
|
|
380
|
-
this.i.
|
|
381
|
-
this._a("actualBorderWidth", this.i.
|
|
380
|
+
this.i.an = +v;
|
|
381
|
+
this._a("actualBorderWidth", this.i.an);
|
|
382
382
|
},
|
|
383
|
-
enumerable:
|
|
383
|
+
enumerable: false,
|
|
384
384
|
configurable: true
|
|
385
385
|
});
|
|
386
386
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "cornerRadius", {
|
|
@@ -388,13 +388,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
388
388
|
* Gets or sets the corner radius to use for the checkbox.
|
|
389
389
|
*/
|
|
390
390
|
get: function () {
|
|
391
|
-
return this.i.
|
|
391
|
+
return this.i.ar;
|
|
392
392
|
},
|
|
393
393
|
set: function (v) {
|
|
394
|
-
this.i.
|
|
395
|
-
this._a("cornerRadius", this.i.
|
|
394
|
+
this.i.ar = +v;
|
|
395
|
+
this._a("cornerRadius", this.i.ar);
|
|
396
396
|
},
|
|
397
|
-
enumerable:
|
|
397
|
+
enumerable: false,
|
|
398
398
|
configurable: true
|
|
399
399
|
});
|
|
400
400
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "tickStrokeWidth", {
|
|
@@ -402,13 +402,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
402
402
|
* Gets or sets the corner radius to use for the checkbox.
|
|
403
403
|
*/
|
|
404
404
|
get: function () {
|
|
405
|
-
return this.i.
|
|
405
|
+
return this.i.av;
|
|
406
406
|
},
|
|
407
407
|
set: function (v) {
|
|
408
|
-
this.i.
|
|
409
|
-
this._a("tickStrokeWidth", this.i.
|
|
408
|
+
this.i.av = +v;
|
|
409
|
+
this._a("tickStrokeWidth", this.i.av);
|
|
410
410
|
},
|
|
411
|
-
enumerable:
|
|
411
|
+
enumerable: false,
|
|
412
412
|
configurable: true
|
|
413
413
|
});
|
|
414
414
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualTickStrokeWidth", {
|
|
@@ -416,13 +416,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
416
416
|
* Gets or sets the stroke width to use for the check mark.
|
|
417
417
|
*/
|
|
418
418
|
get: function () {
|
|
419
|
-
return this.i.
|
|
419
|
+
return this.i.ap;
|
|
420
420
|
},
|
|
421
421
|
set: function (v) {
|
|
422
|
-
this.i.
|
|
423
|
-
this._a("actualTickStrokeWidth", this.i.
|
|
422
|
+
this.i.ap = +v;
|
|
423
|
+
this._a("actualTickStrokeWidth", this.i.ap);
|
|
424
424
|
},
|
|
425
|
-
enumerable:
|
|
425
|
+
enumerable: false,
|
|
426
426
|
configurable: true
|
|
427
427
|
});
|
|
428
428
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualCornerRadius", {
|
|
@@ -430,13 +430,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
430
430
|
* Gets the actual corner radius to use for the checkbox.
|
|
431
431
|
*/
|
|
432
432
|
get: function () {
|
|
433
|
-
return this.i.
|
|
433
|
+
return this.i.ao;
|
|
434
434
|
},
|
|
435
435
|
set: function (v) {
|
|
436
|
-
this.i.
|
|
437
|
-
this._a("actualCornerRadius", this.i.
|
|
436
|
+
this.i.ao = +v;
|
|
437
|
+
this._a("actualCornerRadius", this.i.ao);
|
|
438
438
|
},
|
|
439
|
-
enumerable:
|
|
439
|
+
enumerable: false,
|
|
440
440
|
configurable: true
|
|
441
441
|
});
|
|
442
442
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "actualCheckedBackgroundColor", {
|
|
@@ -444,13 +444,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
444
444
|
* Gets or sets the color to use for the actual background when the checkbox is checked.
|
|
445
445
|
*/
|
|
446
446
|
get: function () {
|
|
447
|
-
return brushToString(this.i.
|
|
447
|
+
return brushToString(this.i.c8);
|
|
448
448
|
},
|
|
449
449
|
set: function (v) {
|
|
450
|
-
this.i.
|
|
451
|
-
this._a("actualCheckedBackgroundColor", brushToString(this.i.
|
|
450
|
+
this.i.c8 = stringToBrush(v);
|
|
451
|
+
this._a("actualCheckedBackgroundColor", brushToString(this.i.c8));
|
|
452
452
|
},
|
|
453
|
-
enumerable:
|
|
453
|
+
enumerable: false,
|
|
454
454
|
configurable: true
|
|
455
455
|
});
|
|
456
456
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "inputId", {
|
|
@@ -458,12 +458,12 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
458
458
|
* Gets or sets the id to use for the internal native checkbox.
|
|
459
459
|
*/
|
|
460
460
|
get: function () {
|
|
461
|
-
return this.i.
|
|
461
|
+
return this.i.b1;
|
|
462
462
|
},
|
|
463
463
|
set: function (v) {
|
|
464
|
-
this.i.
|
|
464
|
+
this.i.b1 = v;
|
|
465
465
|
},
|
|
466
|
-
enumerable:
|
|
466
|
+
enumerable: false,
|
|
467
467
|
configurable: true
|
|
468
468
|
});
|
|
469
469
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "id", {
|
|
@@ -471,12 +471,12 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
471
471
|
* Gets or sets the id to use for the checkbox.
|
|
472
472
|
*/
|
|
473
473
|
get: function () {
|
|
474
|
-
return this.i.
|
|
474
|
+
return this.i.bz;
|
|
475
475
|
},
|
|
476
476
|
set: function (v) {
|
|
477
|
-
this.i.
|
|
477
|
+
this.i.bz = v;
|
|
478
478
|
},
|
|
479
|
-
enumerable:
|
|
479
|
+
enumerable: false,
|
|
480
480
|
configurable: true
|
|
481
481
|
});
|
|
482
482
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "labelId", {
|
|
@@ -489,7 +489,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
489
489
|
set: function (v) {
|
|
490
490
|
this.i.labelId = v;
|
|
491
491
|
},
|
|
492
|
-
enumerable:
|
|
492
|
+
enumerable: false,
|
|
493
493
|
configurable: true
|
|
494
494
|
});
|
|
495
495
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "name", {
|
|
@@ -497,12 +497,12 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
497
497
|
* Gets or sets name to use for the checkbox.
|
|
498
498
|
*/
|
|
499
499
|
get: function () {
|
|
500
|
-
return this.i.
|
|
500
|
+
return this.i.ca;
|
|
501
501
|
},
|
|
502
502
|
set: function (v) {
|
|
503
|
-
this.i.
|
|
503
|
+
this.i.ca = v;
|
|
504
504
|
},
|
|
505
|
-
enumerable:
|
|
505
|
+
enumerable: false,
|
|
506
506
|
configurable: true
|
|
507
507
|
});
|
|
508
508
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "tabIndex", {
|
|
@@ -510,13 +510,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
510
510
|
* Gets or sets TabIndex to use for the checkbox.
|
|
511
511
|
*/
|
|
512
512
|
get: function () {
|
|
513
|
-
return this.i.
|
|
513
|
+
return this.i.az;
|
|
514
514
|
},
|
|
515
515
|
set: function (v) {
|
|
516
|
-
this.i.
|
|
517
|
-
this._a("tabIndex", this.i.
|
|
516
|
+
this.i.az = +v;
|
|
517
|
+
this._a("tabIndex", this.i.az);
|
|
518
518
|
},
|
|
519
|
-
enumerable:
|
|
519
|
+
enumerable: false,
|
|
520
520
|
configurable: true
|
|
521
521
|
});
|
|
522
522
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "required", {
|
|
@@ -524,13 +524,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
524
524
|
* Gets or sets if the checkbox is required.
|
|
525
525
|
*/
|
|
526
526
|
get: function () {
|
|
527
|
-
return this.i.
|
|
527
|
+
return this.i.ay;
|
|
528
528
|
},
|
|
529
529
|
set: function (v) {
|
|
530
|
-
this.i.
|
|
531
|
-
this._a("required", this.i.
|
|
530
|
+
this.i.ay = +v;
|
|
531
|
+
this._a("required", this.i.ay);
|
|
532
532
|
},
|
|
533
|
-
enumerable:
|
|
533
|
+
enumerable: false,
|
|
534
534
|
configurable: true
|
|
535
535
|
});
|
|
536
536
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "ariaLabelledBy", {
|
|
@@ -538,12 +538,12 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
538
538
|
* Gets or sets the value of the aria-labelledby attribute.
|
|
539
539
|
*/
|
|
540
540
|
get: function () {
|
|
541
|
-
return this.i.
|
|
541
|
+
return this.i.bn;
|
|
542
542
|
},
|
|
543
543
|
set: function (v) {
|
|
544
|
-
this.i.
|
|
544
|
+
this.i.bn = v;
|
|
545
545
|
},
|
|
546
|
-
enumerable:
|
|
546
|
+
enumerable: false,
|
|
547
547
|
configurable: true
|
|
548
548
|
});
|
|
549
549
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "ariaLabel", {
|
|
@@ -551,12 +551,12 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
551
551
|
* Gets or sets the value of the aria-label attribute.
|
|
552
552
|
*/
|
|
553
553
|
get: function () {
|
|
554
|
-
return this.i.
|
|
554
|
+
return this.i.bm;
|
|
555
555
|
},
|
|
556
556
|
set: function (v) {
|
|
557
|
-
this.i.
|
|
557
|
+
this.i.bm = v;
|
|
558
558
|
},
|
|
559
|
-
enumerable:
|
|
559
|
+
enumerable: false,
|
|
560
560
|
configurable: true
|
|
561
561
|
});
|
|
562
562
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "value", {
|
|
@@ -564,12 +564,12 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
564
564
|
* Gets or sets value to use for the checkbox.
|
|
565
565
|
*/
|
|
566
566
|
get: function () {
|
|
567
|
-
return this.i.
|
|
567
|
+
return this.i.a4;
|
|
568
568
|
},
|
|
569
569
|
set: function (v) {
|
|
570
|
-
this.i.
|
|
570
|
+
this.i.a4 = v;
|
|
571
571
|
},
|
|
572
|
-
enumerable:
|
|
572
|
+
enumerable: false,
|
|
573
573
|
configurable: true
|
|
574
574
|
});
|
|
575
575
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "focused", {
|
|
@@ -583,7 +583,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
583
583
|
this.i.focused = ensureBool(v);
|
|
584
584
|
this._a("focused", this.i.focused);
|
|
585
585
|
},
|
|
586
|
-
enumerable:
|
|
586
|
+
enumerable: false,
|
|
587
587
|
configurable: true
|
|
588
588
|
});
|
|
589
589
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "labelPosition", {
|
|
@@ -597,7 +597,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
597
597
|
this.i.e = ensureEnum(CheckboxLabelPosition_$type, v);
|
|
598
598
|
this._a("labelPosition", enumToString(CheckboxLabelPosition_$type, this.i.e));
|
|
599
599
|
},
|
|
600
|
-
enumerable:
|
|
600
|
+
enumerable: false,
|
|
601
601
|
configurable: true
|
|
602
602
|
});
|
|
603
603
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "disableRipple", {
|
|
@@ -605,13 +605,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
605
605
|
* Gets or sets whether to disable the ripple effect for the checkbox.
|
|
606
606
|
*/
|
|
607
607
|
get: function () {
|
|
608
|
-
return this.i.
|
|
608
|
+
return this.i.y;
|
|
609
609
|
},
|
|
610
610
|
set: function (v) {
|
|
611
|
-
this.i.
|
|
612
|
-
this._a("disableRipple", this.i.
|
|
611
|
+
this.i.y = ensureBool(v);
|
|
612
|
+
this._a("disableRipple", this.i.y);
|
|
613
613
|
},
|
|
614
|
-
enumerable:
|
|
614
|
+
enumerable: false,
|
|
615
615
|
configurable: true
|
|
616
616
|
});
|
|
617
617
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "checked", {
|
|
@@ -625,7 +625,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
625
625
|
this.i.checked = ensureBool(v);
|
|
626
626
|
this._a("checked", this.i.checked);
|
|
627
627
|
},
|
|
628
|
-
enumerable:
|
|
628
|
+
enumerable: false,
|
|
629
629
|
configurable: true
|
|
630
630
|
});
|
|
631
631
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "indeterminate", {
|
|
@@ -639,7 +639,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
639
639
|
this.i.indeterminate = ensureBool(v);
|
|
640
640
|
this._a("indeterminate", this.i.indeterminate);
|
|
641
641
|
},
|
|
642
|
-
enumerable:
|
|
642
|
+
enumerable: false,
|
|
643
643
|
configurable: true
|
|
644
644
|
});
|
|
645
645
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "disabled", {
|
|
@@ -653,7 +653,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
653
653
|
this.i.disabled = ensureBool(v);
|
|
654
654
|
this._a("disabled", this.i.disabled);
|
|
655
655
|
},
|
|
656
|
-
enumerable:
|
|
656
|
+
enumerable: false,
|
|
657
657
|
configurable: true
|
|
658
658
|
});
|
|
659
659
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "disableTransitions", {
|
|
@@ -661,13 +661,13 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
661
661
|
* Gets or sets whether the checkbox transitions are disabled.
|
|
662
662
|
*/
|
|
663
663
|
get: function () {
|
|
664
|
-
return this.i.
|
|
664
|
+
return this.i.z;
|
|
665
665
|
},
|
|
666
666
|
set: function (v) {
|
|
667
|
-
this.i.
|
|
668
|
-
this._a("disableTransitions", this.i.
|
|
667
|
+
this.i.z = ensureBool(v);
|
|
668
|
+
this._a("disableTransitions", this.i.z);
|
|
669
669
|
},
|
|
670
|
-
enumerable:
|
|
670
|
+
enumerable: false,
|
|
671
671
|
configurable: true
|
|
672
672
|
});
|
|
673
673
|
IgcXCheckboxComponent.prototype.findByName = function (name) {
|
|
@@ -682,7 +682,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
682
682
|
get: function () {
|
|
683
683
|
return this._hasUserValues;
|
|
684
684
|
},
|
|
685
|
-
enumerable:
|
|
685
|
+
enumerable: false,
|
|
686
686
|
configurable: true
|
|
687
687
|
});
|
|
688
688
|
IgcXCheckboxComponent.prototype.__m = function (propertyName) {
|
|
@@ -746,7 +746,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
746
746
|
|
|
747
747
|
*/
|
|
748
748
|
IgcXCheckboxComponent.prototype.exportVisualModel = function () {
|
|
749
|
-
var iv = this.i.
|
|
749
|
+
var iv = this.i.a3();
|
|
750
750
|
return (iv);
|
|
751
751
|
};
|
|
752
752
|
/**
|
|
@@ -754,7 +754,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
754
754
|
|
|
755
755
|
*/
|
|
756
756
|
IgcXCheckboxComponent.prototype.exportSerializedVisualModel = function () {
|
|
757
|
-
var iv = this.i.
|
|
757
|
+
var iv = this.i.by();
|
|
758
758
|
return (iv);
|
|
759
759
|
};
|
|
760
760
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "change", {
|
|
@@ -782,7 +782,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
782
782
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
783
783
|
;
|
|
784
784
|
},
|
|
785
|
-
enumerable:
|
|
785
|
+
enumerable: false,
|
|
786
786
|
configurable: true
|
|
787
787
|
});
|
|
788
788
|
IgcXCheckboxComponent._observedAttributesIgcXCheckboxComponent = null;
|