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.
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
@@ -1,4 +1,4 @@
1
- import * as tslib_1 from "tslib";
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
- tslib_1.__extends(IgcXCheckboxComponent, _super);
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 = tslib_1.__values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
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: true,
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: true,
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.i;
223
+ return this.i.n;
224
224
  },
225
225
  set: function (v) {
226
- this.i.i = ensureEnum(BaseControlTheme_$type, v);
227
- this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.i));
226
+ this.i.n = ensureEnum(BaseControlTheme_$type, v);
227
+ this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.n));
228
228
  },
229
- enumerable: true,
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.dt);
237
+ return brushToString(this.i.dl);
238
238
  },
239
239
  set: function (v) {
240
- this.i.dt = stringToBrush(v);
241
- this._a("uncheckedBackgroundColor", brushToString(this.i.dt));
240
+ this.i.dl = stringToBrush(v);
241
+ this._a("uncheckedBackgroundColor", brushToString(this.i.dl));
242
242
  },
243
- enumerable: true,
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.c8);
251
+ return brushToString(this.i.db);
252
252
  },
253
253
  set: function (v) {
254
- this.i.c8 = stringToBrush(v);
255
- this._a("actualUncheckedBackgroundColor", brushToString(this.i.c8));
254
+ this.i.db = stringToBrush(v);
255
+ this._a("actualUncheckedBackgroundColor", brushToString(this.i.db));
256
256
  },
257
- enumerable: true,
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.da);
265
+ return brushToString(this.i.dd);
266
266
  },
267
267
  set: function (v) {
268
- this.i.da = stringToBrush(v);
269
- this._a("checkedBackgroundColor", brushToString(this.i.da));
268
+ this.i.dd = stringToBrush(v);
269
+ this._a("checkedBackgroundColor", brushToString(this.i.dd));
270
270
  },
271
- enumerable: true,
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.ds);
279
+ return brushToString(this.i.dk);
280
280
  },
281
281
  set: function (v) {
282
- this.i.ds = stringToBrush(v);
283
- this._a("tickColor", brushToString(this.i.ds));
282
+ this.i.dk = stringToBrush(v);
283
+ this._a("tickColor", brushToString(this.i.dk));
284
284
  },
285
- enumerable: true,
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.c7);
293
+ return brushToString(this.i.da);
294
294
  },
295
295
  set: function (v) {
296
- this.i.c7 = stringToBrush(v);
297
- this._a("actualTickColor", brushToString(this.i.c7));
296
+ this.i.da = stringToBrush(v);
297
+ this._a("actualTickColor", brushToString(this.i.da));
298
298
  },
299
- enumerable: true,
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.du);
307
+ return brushToString(this.i.dm);
308
308
  },
309
309
  set: function (v) {
310
- this.i.du = stringToBrush(v);
311
- this._a("uncheckedBorderColor", brushToString(this.i.du));
310
+ this.i.dm = stringToBrush(v);
311
+ this._a("uncheckedBorderColor", brushToString(this.i.dm));
312
312
  },
313
- enumerable: true,
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.db);
321
+ return brushToString(this.i.de);
322
322
  },
323
323
  set: function (v) {
324
- this.i.db = stringToBrush(v);
325
- this._a("checkedBorderColor", brushToString(this.i.db));
324
+ this.i.de = stringToBrush(v);
325
+ this._a("checkedBorderColor", brushToString(this.i.de));
326
326
  },
327
- enumerable: true,
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.c9);
335
+ return brushToString(this.i.dc);
336
336
  },
337
337
  set: function (v) {
338
- this.i.c9 = stringToBrush(v);
339
- this._a("actualUncheckedBorderColor", brushToString(this.i.c9));
338
+ this.i.dc = stringToBrush(v);
339
+ this._a("actualUncheckedBorderColor", brushToString(this.i.dc));
340
340
  },
341
- enumerable: true,
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.c6);
349
+ return brushToString(this.i.c9);
350
350
  },
351
351
  set: function (v) {
352
- this.i.c6 = stringToBrush(v);
353
- this._a("actualCheckedBorderColor", brushToString(this.i.c6));
352
+ this.i.c9 = stringToBrush(v);
353
+ this._a("actualCheckedBorderColor", brushToString(this.i.c9));
354
354
  },
355
- enumerable: true,
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.al;
363
+ return this.i.aq;
364
364
  },
365
365
  set: function (v) {
366
- this.i.al = +v;
367
- this._a("borderWidth", this.i.al);
366
+ this.i.aq = +v;
367
+ this._a("borderWidth", this.i.aq);
368
368
  },
369
- enumerable: true,
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.ai;
377
+ return this.i.an;
378
378
  },
379
379
  set: function (v) {
380
- this.i.ai = +v;
381
- this._a("actualBorderWidth", this.i.ai);
380
+ this.i.an = +v;
381
+ this._a("actualBorderWidth", this.i.an);
382
382
  },
383
- enumerable: true,
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.am;
391
+ return this.i.ar;
392
392
  },
393
393
  set: function (v) {
394
- this.i.am = +v;
395
- this._a("cornerRadius", this.i.am);
394
+ this.i.ar = +v;
395
+ this._a("cornerRadius", this.i.ar);
396
396
  },
397
- enumerable: true,
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.aw;
405
+ return this.i.av;
406
406
  },
407
407
  set: function (v) {
408
- this.i.aw = +v;
409
- this._a("tickStrokeWidth", this.i.aw);
408
+ this.i.av = +v;
409
+ this._a("tickStrokeWidth", this.i.av);
410
410
  },
411
- enumerable: true,
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.ak;
419
+ return this.i.ap;
420
420
  },
421
421
  set: function (v) {
422
- this.i.ak = +v;
423
- this._a("actualTickStrokeWidth", this.i.ak);
422
+ this.i.ap = +v;
423
+ this._a("actualTickStrokeWidth", this.i.ap);
424
424
  },
425
- enumerable: true,
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.aj;
433
+ return this.i.ao;
434
434
  },
435
435
  set: function (v) {
436
- this.i.aj = +v;
437
- this._a("actualCornerRadius", this.i.aj);
436
+ this.i.ao = +v;
437
+ this._a("actualCornerRadius", this.i.ao);
438
438
  },
439
- enumerable: true,
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.c5);
447
+ return brushToString(this.i.c8);
448
448
  },
449
449
  set: function (v) {
450
- this.i.c5 = stringToBrush(v);
451
- this._a("actualCheckedBackgroundColor", brushToString(this.i.c5));
450
+ this.i.c8 = stringToBrush(v);
451
+ this._a("actualCheckedBackgroundColor", brushToString(this.i.c8));
452
452
  },
453
- enumerable: true,
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.by;
461
+ return this.i.b1;
462
462
  },
463
463
  set: function (v) {
464
- this.i.by = v;
464
+ this.i.b1 = v;
465
465
  },
466
- enumerable: true,
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.bw;
474
+ return this.i.bz;
475
475
  },
476
476
  set: function (v) {
477
- this.i.bw = v;
477
+ this.i.bz = v;
478
478
  },
479
- enumerable: true,
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: true,
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.b7;
500
+ return this.i.ca;
501
501
  },
502
502
  set: function (v) {
503
- this.i.b7 = v;
503
+ this.i.ca = v;
504
504
  },
505
- enumerable: true,
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.a0;
513
+ return this.i.az;
514
514
  },
515
515
  set: function (v) {
516
- this.i.a0 = +v;
517
- this._a("tabIndex", this.i.a0);
516
+ this.i.az = +v;
517
+ this._a("tabIndex", this.i.az);
518
518
  },
519
- enumerable: true,
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.az;
527
+ return this.i.ay;
528
528
  },
529
529
  set: function (v) {
530
- this.i.az = +v;
531
- this._a("required", this.i.az);
530
+ this.i.ay = +v;
531
+ this._a("required", this.i.ay);
532
532
  },
533
- enumerable: true,
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.bl;
541
+ return this.i.bn;
542
542
  },
543
543
  set: function (v) {
544
- this.i.bl = v;
544
+ this.i.bn = v;
545
545
  },
546
- enumerable: true,
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.bk;
554
+ return this.i.bm;
555
555
  },
556
556
  set: function (v) {
557
- this.i.bk = v;
557
+ this.i.bm = v;
558
558
  },
559
- enumerable: true,
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.a5;
567
+ return this.i.a4;
568
568
  },
569
569
  set: function (v) {
570
- this.i.a5 = v;
570
+ this.i.a4 = v;
571
571
  },
572
- enumerable: true,
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: true,
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: true,
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.t;
608
+ return this.i.y;
609
609
  },
610
610
  set: function (v) {
611
- this.i.t = ensureBool(v);
612
- this._a("disableRipple", this.i.t);
611
+ this.i.y = ensureBool(v);
612
+ this._a("disableRipple", this.i.y);
613
613
  },
614
- enumerable: true,
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: true,
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: true,
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: true,
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.u;
664
+ return this.i.z;
665
665
  },
666
666
  set: function (v) {
667
- this.i.u = ensureBool(v);
668
- this._a("disableTransitions", this.i.u);
667
+ this.i.z = ensureBool(v);
668
+ this._a("disableTransitions", this.i.z);
669
669
  },
670
- enumerable: true,
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: true,
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.a4();
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.bv();
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: true,
785
+ enumerable: false,
786
786
  configurable: true
787
787
  });
788
788
  IgcXCheckboxComponent._observedAttributesIgcXCheckboxComponent = null;