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 } from "tslib";
2
2
  import { ensureEnum, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, enumToString, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
3
3
  import { FontInfo } from "igniteui-webcomponents-core";
4
4
  import { WebComponentRenderer } from "igniteui-webcomponents-core";
@@ -18,7 +18,7 @@ import { DayOfWeek_$type } from "./DayOfWeek";
18
18
  import { FirstWeek_$type } from "./FirstWeek";
19
19
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
20
20
  var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
21
- tslib_1.__extends(IgcDatePickerComponent, _super);
21
+ __extends(IgcDatePickerComponent, _super);
22
22
  function IgcDatePickerComponent() {
23
23
  var _this = _super.call(this) || this;
24
24
  _this._disconnected = false;
@@ -48,6 +48,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
48
48
  }
49
49
  _this._renderer = new WebComponentRenderer(_this, document, true, null);
50
50
  _this._implementation = _this.createImplementation();
51
+ _this._implementation.externalObject = _this;
51
52
  _this._container = _this._renderer.createElement("div");
52
53
  _this._renderer.updateRoot(_this._container);
53
54
  //this._renderer.rootWrapper.append(this._container);
@@ -69,7 +70,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
69
70
  this.style.height = value;
70
71
  this.i.notifySizeChanged();
71
72
  },
72
- enumerable: true,
73
+ enumerable: false,
73
74
  configurable: true
74
75
  });
75
76
  Object.defineProperty(IgcDatePickerComponent.prototype, "width", {
@@ -81,7 +82,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
81
82
  this.style.width = value;
82
83
  this.i.notifySizeChanged();
83
84
  },
84
- enumerable: true,
85
+ enumerable: false,
85
86
  configurable: true
86
87
  });
87
88
  // supports angular themes or custom properties set in CSS
@@ -96,6 +97,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
96
97
  };
97
98
  IgcDatePickerComponent.prototype.disconnectedCallback = function () {
98
99
  this._disconnected = true;
100
+ this._datePicker.provideContainer(null);
99
101
  };
100
102
  IgcDatePickerComponent.prototype.connectedCallback = function () {
101
103
  if (this._disconnected) {
@@ -140,7 +142,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
140
142
  } /**
141
143
  * @hidden
142
144
  */,
143
- enumerable: true,
145
+ enumerable: false,
144
146
  configurable: true
145
147
  });
146
148
  IgcDatePickerComponent._createFromInternal = function (internal) {
@@ -196,7 +198,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
196
198
  }
197
199
  return IgcDatePickerComponent._observedAttributesIgcDatePickerComponent;
198
200
  },
199
- enumerable: true,
201
+ enumerable: false,
200
202
  configurable: true
201
203
  });
202
204
  IgcDatePickerComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
@@ -224,7 +226,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
224
226
  set: function (v) {
225
227
  this.i.value = v;
226
228
  },
227
- enumerable: true,
229
+ enumerable: false,
228
230
  configurable: true
229
231
  });
230
232
  Object.defineProperty(IgcDatePickerComponent.prototype, "today", {
@@ -232,12 +234,12 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
232
234
  * Gets or Sets the property name that contains the values.
233
235
  */
234
236
  get: function () {
235
- return this.i.a2;
237
+ return this.i.a3;
236
238
  },
237
239
  set: function (v) {
238
- this.i.a2 = v;
240
+ this.i.a3 = v;
239
241
  },
240
- enumerable: true,
242
+ enumerable: false,
241
243
  configurable: true
242
244
  });
243
245
  Object.defineProperty(IgcDatePickerComponent.prototype, "label", {
@@ -245,12 +247,12 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
245
247
  * Gets or Sets the property name that contains the label.
246
248
  */
247
249
  get: function () {
248
- return this.i.bs;
250
+ return this.i.bv;
249
251
  },
250
252
  set: function (v) {
251
- this.i.bs = v;
253
+ this.i.bv = v;
252
254
  },
253
- enumerable: true,
255
+ enumerable: false,
254
256
  configurable: true
255
257
  });
256
258
  Object.defineProperty(IgcDatePickerComponent.prototype, "labelTextColor", {
@@ -258,13 +260,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
258
260
  * Gets or sets the color to use for the text.
259
261
  */
260
262
  get: function () {
261
- return brushToString(this.i.dd);
263
+ return brushToString(this.i.dh);
262
264
  },
263
265
  set: function (v) {
264
- this.i.dd = stringToBrush(v);
265
- this._a("labelTextColor", brushToString(this.i.dd));
266
+ this.i.dh = stringToBrush(v);
267
+ this._a("labelTextColor", brushToString(this.i.dh));
266
268
  },
267
- enumerable: true,
269
+ enumerable: false,
268
270
  configurable: true
269
271
  });
270
272
  Object.defineProperty(IgcDatePickerComponent.prototype, "labelTextStyle", {
@@ -283,7 +285,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
283
285
  this.i.ac = fi;
284
286
  this._a("labelTextStyle", this.i.ac != null ? this.i.ac.fontString : "");
285
287
  },
286
- enumerable: true,
288
+ enumerable: false,
287
289
  configurable: true
288
290
  });
289
291
  Object.defineProperty(IgcDatePickerComponent.prototype, "placeholder", {
@@ -291,12 +293,12 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
291
293
  * Gets or Sets the property name that contains the placeholder.
292
294
  */
293
295
  get: function () {
294
- return this.i.bz;
296
+ return this.i.b2;
295
297
  },
296
298
  set: function (v) {
297
- this.i.bz = v;
299
+ this.i.b2 = v;
298
300
  },
299
- enumerable: true,
301
+ enumerable: false,
300
302
  configurable: true
301
303
  });
302
304
  Object.defineProperty(IgcDatePickerComponent.prototype, "minDate", {
@@ -304,12 +306,12 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
304
306
  * Gets or Sets the property name that contains the MinDate.
305
307
  */
306
308
  get: function () {
307
- return this.i.a1;
309
+ return this.i.a2;
308
310
  },
309
311
  set: function (v) {
310
- this.i.a1 = v;
312
+ this.i.a2 = v;
311
313
  },
312
- enumerable: true,
314
+ enumerable: false,
313
315
  configurable: true
314
316
  });
315
317
  Object.defineProperty(IgcDatePickerComponent.prototype, "maxDate", {
@@ -317,12 +319,12 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
317
319
  * Gets or Sets the property name that contains the MaxDate.
318
320
  */
319
321
  get: function () {
320
- return this.i.a0;
322
+ return this.i.a1;
321
323
  },
322
324
  set: function (v) {
323
- this.i.a0 = v;
325
+ this.i.a1 = v;
324
326
  },
325
- enumerable: true,
327
+ enumerable: false,
326
328
  configurable: true
327
329
  });
328
330
  Object.defineProperty(IgcDatePickerComponent.prototype, "density", {
@@ -336,7 +338,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
336
338
  this.i.y = ensureEnum(ControlDisplayDensity_$type, v);
337
339
  this._a("density", enumToString(ControlDisplayDensity_$type, this.i.y));
338
340
  },
339
- enumerable: true,
341
+ enumerable: false,
340
342
  configurable: true
341
343
  });
342
344
  Object.defineProperty(IgcDatePickerComponent.prototype, "baseTheme", {
@@ -350,7 +352,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
350
352
  this.i.w = ensureEnum(BaseControlTheme_$type, v);
351
353
  this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.w));
352
354
  },
353
- enumerable: true,
355
+ enumerable: false,
354
356
  configurable: true
355
357
  });
356
358
  Object.defineProperty(IgcDatePickerComponent.prototype, "textStyle", {
@@ -369,7 +371,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
369
371
  this.i.ad = fi;
370
372
  this._a("textStyle", this.i.ad != null ? this.i.ad.fontString : "");
371
373
  },
372
- enumerable: true,
374
+ enumerable: false,
373
375
  configurable: true
374
376
  });
375
377
  Object.defineProperty(IgcDatePickerComponent.prototype, "textColor", {
@@ -377,13 +379,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
377
379
  * Gets or Sets the text color
378
380
  */
379
381
  get: function () {
380
- return brushToString(this.i.de);
382
+ return brushToString(this.i.di);
381
383
  },
382
384
  set: function (v) {
383
- this.i.de = stringToBrush(v);
384
- this._a("textColor", brushToString(this.i.de));
385
+ this.i.di = stringToBrush(v);
386
+ this._a("textColor", brushToString(this.i.di));
385
387
  },
386
- enumerable: true,
388
+ enumerable: false,
387
389
  configurable: true
388
390
  });
389
391
  Object.defineProperty(IgcDatePickerComponent.prototype, "iconColor", {
@@ -391,13 +393,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
391
393
  * Gets or Sets the text color
392
394
  */
393
395
  get: function () {
394
- return brushToString(this.i.dc);
396
+ return brushToString(this.i.dg);
395
397
  },
396
398
  set: function (v) {
397
- this.i.dc = stringToBrush(v);
398
- this._a("iconColor", brushToString(this.i.dc));
399
+ this.i.dg = stringToBrush(v);
400
+ this._a("iconColor", brushToString(this.i.dg));
399
401
  },
400
- enumerable: true,
402
+ enumerable: false,
401
403
  configurable: true
402
404
  });
403
405
  Object.defineProperty(IgcDatePickerComponent.prototype, "showClearButton", {
@@ -405,13 +407,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
405
407
  * Gets or sets the ShowClearButton property to detirmine if the clear button is shown
406
408
  */
407
409
  get: function () {
408
- return this.i.as;
410
+ return this.i.at;
409
411
  },
410
412
  set: function (v) {
411
- this.i.as = ensureBool(v);
412
- this._a("showClearButton", this.i.as);
413
+ this.i.at = ensureBool(v);
414
+ this._a("showClearButton", this.i.at);
413
415
  },
414
- enumerable: true,
416
+ enumerable: false,
415
417
  configurable: true
416
418
  });
417
419
  Object.defineProperty(IgcDatePickerComponent.prototype, "showTodayButton", {
@@ -419,13 +421,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
419
421
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
420
422
  */
421
423
  get: function () {
422
- return this.i.at;
424
+ return this.i.au;
423
425
  },
424
426
  set: function (v) {
425
- this.i.at = ensureBool(v);
426
- this._a("showTodayButton", this.i.at);
427
+ this.i.au = ensureBool(v);
428
+ this._a("showTodayButton", this.i.au);
427
429
  },
428
- enumerable: true,
430
+ enumerable: false,
429
431
  configurable: true
430
432
  });
431
433
  Object.defineProperty(IgcDatePickerComponent.prototype, "allowTextInput", {
@@ -433,13 +435,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
433
435
  * Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
434
436
  */
435
437
  get: function () {
436
- return this.i.ap;
438
+ return this.i.aq;
437
439
  },
438
440
  set: function (v) {
439
- this.i.ap = ensureBool(v);
440
- this._a("allowTextInput", this.i.ap);
441
+ this.i.aq = ensureBool(v);
442
+ this._a("allowTextInput", this.i.aq);
441
443
  },
442
- enumerable: true,
444
+ enumerable: false,
443
445
  configurable: true
444
446
  });
445
447
  Object.defineProperty(IgcDatePickerComponent.prototype, "openOnFocus", {
@@ -447,13 +449,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
447
449
  * Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
448
450
  */
449
451
  get: function () {
450
- return this.i.ar;
452
+ return this.i.as;
451
453
  },
452
454
  set: function (v) {
453
- this.i.ar = ensureBool(v);
454
- this._a("openOnFocus", this.i.ar);
455
+ this.i.as = ensureBool(v);
456
+ this._a("openOnFocus", this.i.as);
455
457
  },
456
- enumerable: true,
458
+ enumerable: false,
457
459
  configurable: true
458
460
  });
459
461
  Object.defineProperty(IgcDatePickerComponent.prototype, "firstDayOfWeek", {
@@ -467,7 +469,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
467
469
  this.i.j = ensureEnum(DayOfWeek_$type, v);
468
470
  this._a("firstDayOfWeek", enumToString(DayOfWeek_$type, this.i.j));
469
471
  },
470
- enumerable: true,
472
+ enumerable: false,
471
473
  configurable: true
472
474
  });
473
475
  Object.defineProperty(IgcDatePickerComponent.prototype, "firstWeekOfYear", {
@@ -481,7 +483,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
481
483
  this.i.l = ensureEnum(FirstWeek_$type, v);
482
484
  this._a("firstWeekOfYear", enumToString(FirstWeek_$type, this.i.l));
483
485
  },
484
- enumerable: true,
486
+ enumerable: false,
485
487
  configurable: true
486
488
  });
487
489
  Object.defineProperty(IgcDatePickerComponent.prototype, "showWeekNumbers", {
@@ -489,13 +491,13 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
489
491
  * Gets or sets the ShowWeekNumbers property to detirmine if the week numbers are shown
490
492
  */
491
493
  get: function () {
492
- return this.i.au;
494
+ return this.i.av;
493
495
  },
494
496
  set: function (v) {
495
- this.i.au = ensureBool(v);
496
- this._a("showWeekNumbers", this.i.au);
497
+ this.i.av = ensureBool(v);
498
+ this._a("showWeekNumbers", this.i.av);
497
499
  },
498
- enumerable: true,
500
+ enumerable: false,
499
501
  configurable: true
500
502
  });
501
503
  Object.defineProperty(IgcDatePickerComponent.prototype, "dateFormat", {
@@ -509,7 +511,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
509
511
  this.i.e = ensureEnum(DateFormats_$type, v);
510
512
  this._a("dateFormat", enumToString(DateFormats_$type, this.i.e));
511
513
  },
512
- enumerable: true,
514
+ enumerable: false,
513
515
  configurable: true
514
516
  });
515
517
  Object.defineProperty(IgcDatePickerComponent.prototype, "formatString", {
@@ -517,30 +519,30 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
517
519
  * Gets or sets the Format property to detirmine the format of the date in the input
518
520
  */
519
521
  get: function () {
520
- return this.i.bo;
522
+ return this.i.br;
521
523
  },
522
524
  set: function (v) {
523
- this.i.bo = v;
525
+ this.i.br = v;
524
526
  },
525
- enumerable: true,
527
+ enumerable: false,
526
528
  configurable: true
527
529
  });
528
530
  Object.defineProperty(IgcDatePickerComponent.prototype, "isDisabled", {
529
531
  get: function () {
530
- return this.i.aq;
532
+ return this.i.ar;
531
533
  },
532
534
  set: function (v) {
533
- this.i.aq = ensureBool(v);
534
- this._a("isDisabled", this.i.aq);
535
+ this.i.ar = ensureBool(v);
536
+ this._a("isDisabled", this.i.ar);
535
537
  },
536
- enumerable: true,
538
+ enumerable: false,
537
539
  configurable: true
538
540
  });
539
541
  Object.defineProperty(IgcDatePickerComponent.prototype, "hasUserValues", {
540
542
  get: function () {
541
543
  return this._hasUserValues;
542
544
  },
543
- enumerable: true,
545
+ enumerable: false,
544
546
  configurable: true
545
547
  });
546
548
  IgcDatePickerComponent.prototype.__m = function (propertyName) {
@@ -594,14 +596,14 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
594
596
  this._inStyling = false;
595
597
  };
596
598
  IgcDatePickerComponent.prototype.select = function () {
597
- this.i.cz();
599
+ this.i.c3();
598
600
  };
599
601
  /**
600
602
  * Exports visual information about the current state of the grid.
601
603
 
602
604
  */
603
605
  IgcDatePickerComponent.prototype.exportVisualModel = function () {
604
- var iv = this.i.a5();
606
+ var iv = this.i.a8();
605
607
  return (iv);
606
608
  };
607
609
  /**
@@ -609,7 +611,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
609
611
 
610
612
  */
611
613
  IgcDatePickerComponent.prototype.exportSerializedVisualModel = function () {
612
- var iv = this.i.bl();
614
+ var iv = this.i.bo();
613
615
  return (iv);
614
616
  };
615
617
  Object.defineProperty(IgcDatePickerComponent.prototype, "selectedValueChanged", {
@@ -640,7 +642,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
640
642
  this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
641
643
  ;
642
644
  },
643
- enumerable: true,
645
+ enumerable: false,
644
646
  configurable: true
645
647
  });
646
648
  Object.defineProperty(IgcDatePickerComponent.prototype, "gotFocus", {
@@ -668,7 +670,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
668
670
  this.i.gotFocus = delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
669
671
  ;
670
672
  },
671
- enumerable: true,
673
+ enumerable: false,
672
674
  configurable: true
673
675
  });
674
676
  Object.defineProperty(IgcDatePickerComponent.prototype, "lostFocus", {
@@ -696,7 +698,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
696
698
  this.i.lostFocus = delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
697
699
  ;
698
700
  },
699
- enumerable: true,
701
+ enumerable: false,
700
702
  configurable: true
701
703
  });
702
704
  Object.defineProperty(IgcDatePickerComponent.prototype, "keyDown", {
@@ -724,7 +726,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
724
726
  this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
725
727
  ;
726
728
  },
727
- enumerable: true,
729
+ enumerable: false,
728
730
  configurable: true
729
731
  });
730
732
  Object.defineProperty(IgcDatePickerComponent.prototype, "changing", {
@@ -752,7 +754,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
752
754
  this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
753
755
  ;
754
756
  },
755
- enumerable: true,
757
+ enumerable: false,
756
758
  configurable: true
757
759
  });
758
760
  Object.defineProperty(IgcDatePickerComponent.prototype, "valueChange", {
@@ -780,7 +782,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
780
782
  };
781
783
  this.i.propertyChanged = delegateCombine(this.i.propertyChanged, this._valueChange_wrapped);
782
784
  },
783
- enumerable: true,
785
+ enumerable: false,
784
786
  configurable: true
785
787
  });
786
788
  IgcDatePickerComponent._observedAttributesIgcDatePickerComponent = null;
@@ -15,7 +15,7 @@ var IgcGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
15
15
  get: function () {
16
16
  return this._implementation;
17
17
  },
18
- enumerable: true,
18
+ enumerable: false,
19
19
  configurable: true
20
20
  });
21
21
  IgcGotFocusEventArgs.prototype.onImplementationCreated = function () {
@@ -16,7 +16,7 @@ var IgcInputChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
16
16
  get: function () {
17
17
  return this._implementation;
18
18
  },
19
- enumerable: true,
19
+ enumerable: false,
20
20
  configurable: true
21
21
  });
22
22
  IgcInputChangeEventArgs.prototype.onImplementationCreated = function () {
@@ -33,7 +33,7 @@ var IgcInputChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
33
33
  set: function (v) {
34
34
  this.i.value = v;
35
35
  },
36
- enumerable: true,
36
+ enumerable: false,
37
37
  configurable: true
38
38
  });
39
39
  Object.defineProperty(IgcInputChangeEventArgs.prototype, "isCompositionInProgress", {
@@ -43,7 +43,7 @@ var IgcInputChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
43
43
  set: function (v) {
44
44
  this.i.isCompositionInProgress = ensureBool(v);
45
45
  },
46
- enumerable: true,
46
+ enumerable: false,
47
47
  configurable: true
48
48
  });
49
49
  return IgcInputChangeEventArgs;
@@ -15,7 +15,7 @@ var IgcLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
15
15
  get: function () {
16
16
  return this._implementation;
17
17
  },
18
- enumerable: true,
18
+ enumerable: false,
19
19
  configurable: true
20
20
  });
21
21
  IgcLostFocusEventArgs.prototype.onImplementationCreated = function () {
@@ -15,7 +15,7 @@ var IgcSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function ()
15
15
  get: function () {
16
16
  return this._implementation;
17
17
  },
18
- enumerable: true,
18
+ enumerable: false,
19
19
  configurable: true
20
20
  });
21
21
  IgcSelectedValueChangedEventArgs.prototype.onImplementationCreated = function () {
@@ -32,7 +32,7 @@ var IgcSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function ()
32
32
  set: function (v) {
33
33
  this.i.oldValue = v;
34
34
  },
35
- enumerable: true,
35
+ enumerable: false,
36
36
  configurable: true
37
37
  });
38
38
  Object.defineProperty(IgcSelectedValueChangedEventArgs.prototype, "newValue", {
@@ -42,7 +42,7 @@ var IgcSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function ()
42
42
  set: function (v) {
43
43
  this.i.newValue = v;
44
44
  },
45
- enumerable: true,
45
+ enumerable: false,
46
46
  configurable: true
47
47
  });
48
48
  return IgcSelectedValueChangedEventArgs;