igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,11 +1,11 @@
1
- import * as tslib_1 from "tslib";
1
+ import { __extends } from "tslib";
2
2
  import { IgCollection } from "igniteui-webcomponents-core";
3
3
  import { markType } from "igniteui-webcomponents-core";
4
4
  import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
5
5
  import { XInputGroupItem as XInputGroupItem_internal } from './XInputGroupItem';
6
6
  import { IgcXInputGroupItemComponent as IgcXInputGroupItemComponent } from './igc-x-input-group-item-component';
7
7
  var IgcXInputGroupInputCollection = /** @class */ /*@__PURE__*/ (function (_super) {
8
- tslib_1.__extends(IgcXInputGroupInputCollection, _super);
8
+ __extends(IgcXInputGroupInputCollection, _super);
9
9
  function IgcXInputGroupInputCollection(list) {
10
10
  var _this = _super.call(this) || this;
11
11
  if (!IgcXInputGroupItemComponent.$type) {
@@ -1,9 +1,9 @@
1
- import * as tslib_1 from "tslib";
1
+ import { __extends } from "tslib";
2
2
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
3
3
  import { TypeRegistrar } from "igniteui-webcomponents-core";
4
4
  import { NamePatcher, getAllPropertyNames, fromSpinal, toSpinal, initializePropertiesFromCss } from "igniteui-webcomponents-core";
5
5
  var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super) {
6
- tslib_1.__extends(IgcXInputGroupItemComponent, _super);
6
+ __extends(IgcXInputGroupItemComponent, _super);
7
7
  function IgcXInputGroupItemComponent() {
8
8
  var _this = _super.call(this) || this;
9
9
  _this._settingAttributes = false;
@@ -35,7 +35,7 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
35
35
  } /**
36
36
  * @hidden
37
37
  */,
38
- enumerable: true,
38
+ enumerable: false,
39
39
  configurable: true
40
40
  });
41
41
  IgcXInputGroupItemComponent._createFromInternal = function (internal) {
@@ -116,7 +116,7 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
116
116
  }
117
117
  return IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent;
118
118
  },
119
- enumerable: true,
119
+ enumerable: false,
120
120
  configurable: true
121
121
  });
122
122
  IgcXInputGroupItemComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
@@ -138,7 +138,7 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
138
138
  set: function (v) {
139
139
  this.i.e = v;
140
140
  },
141
- enumerable: true,
141
+ enumerable: false,
142
142
  configurable: true
143
143
  });
144
144
  IgcXInputGroupItemComponent.prototype.findByName = function (name) {
@@ -153,7 +153,7 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
153
153
  get: function () {
154
154
  return this._hasUserValues;
155
155
  },
156
- enumerable: true,
156
+ enumerable: false,
157
157
  configurable: true
158
158
  });
159
159
  IgcXInputGroupItemComponent.prototype.__m = function (propertyName) {
@@ -1,4 +1,4 @@
1
- import * as tslib_1 from "tslib";
1
+ import { __extends, __values } from "tslib";
2
2
  import { XLabel } from "./XLabel";
3
3
  import { ensureEnum, brushToString, stringToBrush, ensureBool, NamePatcher, toSpinal, enumToString, getAllPropertyNames } from "igniteui-webcomponents-core";
4
4
  import { FontInfo } from "igniteui-webcomponents-core";
@@ -8,7 +8,7 @@ import { IgcXInputGroupItemComponent } from './igc-x-input-group-item-component'
8
8
  import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core";
9
9
  import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
10
10
  var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11
- tslib_1.__extends(IgcXLabelComponent, _super);
11
+ __extends(IgcXLabelComponent, _super);
12
12
  function IgcXLabelComponent() {
13
13
  var _this = _super.call(this) || this;
14
14
  _this._disconnected = false;
@@ -37,7 +37,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
37
37
  var mut = new MutationObserver(function (list) {
38
38
  var e_1, _b;
39
39
  try {
40
- for (var list_1 = tslib_1.__values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
40
+ for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
41
41
  var mutation = list_1_1.value;
42
42
  if (mutation.type == 'childList') {
43
43
  _this._onChildrenChanged();
@@ -139,7 +139,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
139
139
  get: function () {
140
140
  return this._implementation;
141
141
  },
142
- enumerable: true,
142
+ enumerable: false,
143
143
  configurable: true
144
144
  });
145
145
  Object.defineProperty(IgcXLabelComponent, "observedAttributes", {
@@ -153,7 +153,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
153
153
  }
154
154
  return IgcXLabelComponent._observedAttributesIgcXLabelComponent;
155
155
  },
156
- enumerable: true,
156
+ enumerable: false,
157
157
  configurable: true
158
158
  });
159
159
  IgcXLabelComponent.register = function () {
@@ -173,7 +173,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
173
173
  this.i.p = ensureEnum(BaseControlTheme_$type, v);
174
174
  this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.p));
175
175
  },
176
- enumerable: true,
176
+ enumerable: false,
177
177
  configurable: true
178
178
  });
179
179
  Object.defineProperty(IgcXLabelComponent.prototype, "density", {
@@ -187,7 +187,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
187
187
  this.i.t = ensureEnum(ControlDisplayDensity_$type, v);
188
188
  this._a("density", enumToString(ControlDisplayDensity_$type, this.i.t));
189
189
  },
190
- enumerable: true,
190
+ enumerable: false,
191
191
  configurable: true
192
192
  });
193
193
  Object.defineProperty(IgcXLabelComponent.prototype, "actualDensity", {
@@ -201,7 +201,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
201
201
  this.i.s = ensureEnum(ControlDisplayDensity_$type, v);
202
202
  this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.s));
203
203
  },
204
- enumerable: true,
204
+ enumerable: false,
205
205
  configurable: true
206
206
  });
207
207
  Object.defineProperty(IgcXLabelComponent.prototype, "actualTextColor", {
@@ -215,7 +215,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
215
215
  this.i.cz = stringToBrush(v);
216
216
  this._a("actualTextColor", brushToString(this.i.cz));
217
217
  },
218
- enumerable: true,
218
+ enumerable: false,
219
219
  configurable: true
220
220
  });
221
221
  Object.defineProperty(IgcXLabelComponent.prototype, "actualHighlightTextColor", {
@@ -229,7 +229,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
229
229
  this.i.cw = stringToBrush(v);
230
230
  this._a("actualHighlightTextColor", brushToString(this.i.cw));
231
231
  },
232
- enumerable: true,
232
+ enumerable: false,
233
233
  configurable: true
234
234
  });
235
235
  Object.defineProperty(IgcXLabelComponent.prototype, "actualHoverHighlightTextColor", {
@@ -243,7 +243,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
243
243
  this.i.cx = stringToBrush(v);
244
244
  this._a("actualHoverHighlightTextColor", brushToString(this.i.cx));
245
245
  },
246
- enumerable: true,
246
+ enumerable: false,
247
247
  configurable: true
248
248
  });
249
249
  Object.defineProperty(IgcXLabelComponent.prototype, "actualHoverTextColor", {
@@ -257,7 +257,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
257
257
  this.i.cy = stringToBrush(v);
258
258
  this._a("actualHoverTextColor", brushToString(this.i.cy));
259
259
  },
260
- enumerable: true,
260
+ enumerable: false,
261
261
  configurable: true
262
262
  });
263
263
  Object.defineProperty(IgcXLabelComponent.prototype, "textColor", {
@@ -271,7 +271,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
271
271
  this.i.df = stringToBrush(v);
272
272
  this._a("textColor", brushToString(this.i.df));
273
273
  },
274
- enumerable: true,
274
+ enumerable: false,
275
275
  configurable: true
276
276
  });
277
277
  Object.defineProperty(IgcXLabelComponent.prototype, "highlightTextColor", {
@@ -285,7 +285,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
285
285
  this.i.dc = stringToBrush(v);
286
286
  this._a("highlightTextColor", brushToString(this.i.dc));
287
287
  },
288
- enumerable: true,
288
+ enumerable: false,
289
289
  configurable: true
290
290
  });
291
291
  Object.defineProperty(IgcXLabelComponent.prototype, "hoverHighlightTextColor", {
@@ -299,7 +299,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
299
299
  this.i.dd = stringToBrush(v);
300
300
  this._a("hoverHighlightTextColor", brushToString(this.i.dd));
301
301
  },
302
- enumerable: true,
302
+ enumerable: false,
303
303
  configurable: true
304
304
  });
305
305
  Object.defineProperty(IgcXLabelComponent.prototype, "textStyle", {
@@ -318,7 +318,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
318
318
  this.i.y = fi;
319
319
  this._a("textStyle", this.i.y != null ? this.i.y.fontString : "");
320
320
  },
321
- enumerable: true,
321
+ enumerable: false,
322
322
  configurable: true
323
323
  });
324
324
  Object.defineProperty(IgcXLabelComponent.prototype, "hoverTextColor", {
@@ -332,7 +332,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
332
332
  this.i.de = stringToBrush(v);
333
333
  this._a("hoverTextColor", brushToString(this.i.de));
334
334
  },
335
- enumerable: true,
335
+ enumerable: false,
336
336
  configurable: true
337
337
  });
338
338
  Object.defineProperty(IgcXLabelComponent.prototype, "id", {
@@ -345,7 +345,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
345
345
  set: function (v) {
346
346
  this.i.bu = v;
347
347
  },
348
- enumerable: true,
348
+ enumerable: false,
349
349
  configurable: true
350
350
  });
351
351
  Object.defineProperty(IgcXLabelComponent.prototype, "display", {
@@ -358,7 +358,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
358
358
  set: function (v) {
359
359
  this.i.bi = v;
360
360
  },
361
- enumerable: true,
361
+ enumerable: false,
362
362
  configurable: true
363
363
  });
364
364
  Object.defineProperty(IgcXLabelComponent.prototype, "flexDirection", {
@@ -371,7 +371,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
371
371
  set: function (v) {
372
372
  this.i.bl = v;
373
373
  },
374
- enumerable: true,
374
+ enumerable: false,
375
375
  configurable: true
376
376
  });
377
377
  Object.defineProperty(IgcXLabelComponent.prototype, "flexGrow", {
@@ -384,7 +384,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
384
384
  set: function (v) {
385
385
  this.i.bn = v;
386
386
  },
387
- enumerable: true,
387
+ enumerable: false,
388
388
  configurable: true
389
389
  });
390
390
  Object.defineProperty(IgcXLabelComponent.prototype, "alignItems", {
@@ -397,7 +397,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
397
397
  set: function (v) {
398
398
  this.i.ba = v;
399
399
  },
400
- enumerable: true,
400
+ enumerable: false,
401
401
  configurable: true
402
402
  });
403
403
  Object.defineProperty(IgcXLabelComponent.prototype, "alignSelf", {
@@ -410,7 +410,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
410
410
  set: function (v) {
411
411
  this.i.bc = v;
412
412
  },
413
- enumerable: true,
413
+ enumerable: false,
414
414
  configurable: true
415
415
  });
416
416
  Object.defineProperty(IgcXLabelComponent.prototype, "tabIndex", {
@@ -424,7 +424,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
424
424
  this.i.as = +v;
425
425
  this._a("tabIndex", this.i.as);
426
426
  },
427
- enumerable: true,
427
+ enumerable: false,
428
428
  configurable: true
429
429
  });
430
430
  Object.defineProperty(IgcXLabelComponent.prototype, "for", {
@@ -437,7 +437,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
437
437
  set: function (v) {
438
438
  this.i.bp = v;
439
439
  },
440
- enumerable: true,
440
+ enumerable: false,
441
441
  configurable: true
442
442
  });
443
443
  Object.defineProperty(IgcXLabelComponent.prototype, "ariaLabel", {
@@ -450,7 +450,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
450
450
  set: function (v) {
451
451
  this.i.be = v;
452
452
  },
453
- enumerable: true,
453
+ enumerable: false,
454
454
  configurable: true
455
455
  });
456
456
  Object.defineProperty(IgcXLabelComponent.prototype, "text", {
@@ -463,7 +463,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
463
463
  set: function (v) {
464
464
  this.i.text = v;
465
465
  },
466
- enumerable: true,
466
+ enumerable: false,
467
467
  configurable: true
468
468
  });
469
469
  Object.defineProperty(IgcXLabelComponent.prototype, "isHover", {
@@ -477,7 +477,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
477
477
  this.i.am = ensureBool(v);
478
478
  this._a("isHover", this.i.am);
479
479
  },
480
- enumerable: true,
480
+ enumerable: false,
481
481
  configurable: true
482
482
  });
483
483
  Object.defineProperty(IgcXLabelComponent.prototype, "value", {
@@ -491,7 +491,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
491
491
  this.i.aq = ensureBool(v);
492
492
  this._a("value", this.i.aq);
493
493
  },
494
- enumerable: true,
494
+ enumerable: false,
495
495
  configurable: true
496
496
  });
497
497
  Object.defineProperty(IgcXLabelComponent.prototype, "disabled", {
@@ -505,7 +505,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
505
505
  this.i.disabled = ensureBool(v);
506
506
  this._a("disabled", this.i.disabled);
507
507
  },
508
- enumerable: true,
508
+ enumerable: false,
509
509
  configurable: true
510
510
  });
511
511
  IgcXLabelComponent.prototype.onDetachedFromUI = function () {
@@ -1,11 +1,11 @@
1
- import * as tslib_1 from "tslib";
1
+ import { __extends, __values } from "tslib";
2
2
  import { XPrefix } from "./XPrefix";
3
3
  import { ensureBool, NamePatcher, toSpinal, getAllPropertyNames } from "igniteui-webcomponents-core";
4
4
  import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
5
5
  import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
6
  import { IgcXInputGroupItemComponent } from './igc-x-input-group-item-component';
7
7
  var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
8
- tslib_1.__extends(IgcXPrefixComponent, _super);
8
+ __extends(IgcXPrefixComponent, _super);
9
9
  function IgcXPrefixComponent() {
10
10
  var _this = _super.call(this) || this;
11
11
  _this._disconnected = false;
@@ -34,7 +34,7 @@ var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
34
34
  var mut = new MutationObserver(function (list) {
35
35
  var e_1, _b;
36
36
  try {
37
- for (var list_1 = tslib_1.__values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
37
+ for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
38
38
  var mutation = list_1_1.value;
39
39
  if (mutation.type == 'childList') {
40
40
  _this._onChildrenChanged();
@@ -121,7 +121,7 @@ var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
121
121
  get: function () {
122
122
  return this._implementation;
123
123
  },
124
- enumerable: true,
124
+ enumerable: false,
125
125
  configurable: true
126
126
  });
127
127
  Object.defineProperty(IgcXPrefixComponent, "observedAttributes", {
@@ -135,7 +135,7 @@ var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
135
135
  }
136
136
  return IgcXPrefixComponent._observedAttributesIgcXPrefixComponent;
137
137
  },
138
- enumerable: true,
138
+ enumerable: false,
139
139
  configurable: true
140
140
  });
141
141
  IgcXPrefixComponent.register = function () {
@@ -154,7 +154,7 @@ var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
154
154
  set: function (v) {
155
155
  this.i.z = v;
156
156
  },
157
- enumerable: true,
157
+ enumerable: false,
158
158
  configurable: true
159
159
  });
160
160
  Object.defineProperty(IgcXPrefixComponent.prototype, "ariaLabel", {
@@ -167,7 +167,7 @@ var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
167
167
  set: function (v) {
168
168
  this.i.w = v;
169
169
  },
170
- enumerable: true,
170
+ enumerable: false,
171
171
  configurable: true
172
172
  });
173
173
  Object.defineProperty(IgcXPrefixComponent.prototype, "isHover", {
@@ -181,7 +181,7 @@ var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
181
181
  this.i.q = ensureBool(v);
182
182
  this._a("isHover", this.i.q);
183
183
  },
184
- enumerable: true,
184
+ enumerable: false,
185
185
  configurable: true
186
186
  });
187
187
  Object.defineProperty(IgcXPrefixComponent.prototype, "disabled", {
@@ -195,7 +195,7 @@ var IgcXPrefixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
195
195
  this.i.disabled = ensureBool(v);
196
196
  this._a("disabled", this.i.disabled);
197
197
  },
198
- enumerable: true,
198
+ enumerable: false,
199
199
  configurable: true
200
200
  });
201
201
  IgcXPrefixComponent.prototype.onDetachedFromUI = function () {
@@ -1,4 +1,4 @@
1
- import * as tslib_1 from "tslib";
1
+ import { __extends } from "tslib";
2
2
  import { XRipple } from "./XRipple";
3
3
  import { brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
4
4
  import { WebComponentRenderer } from "igniteui-webcomponents-core";
@@ -6,7 +6,7 @@ import { TypeRegistrar } from "igniteui-webcomponents-core";
6
6
  import { RegisterElementHelper } from "igniteui-webcomponents-core";
7
7
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
8
8
  var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
9
- tslib_1.__extends(IgcXRippleComponent, _super);
9
+ __extends(IgcXRippleComponent, _super);
10
10
  function IgcXRippleComponent() {
11
11
  var _this = _super.call(this) || this;
12
12
  _this._disconnected = false;
@@ -64,7 +64,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
64
64
  this._height = value;
65
65
  this.style.height = value;
66
66
  },
67
- enumerable: true,
67
+ enumerable: false,
68
68
  configurable: true
69
69
  });
70
70
  Object.defineProperty(IgcXRippleComponent.prototype, "width", {
@@ -75,7 +75,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
75
75
  this._width = value;
76
76
  this.style.width = value;
77
77
  },
78
- enumerable: true,
78
+ enumerable: false,
79
79
  configurable: true
80
80
  });
81
81
  Object.defineProperty(IgcXRippleComponent.prototype, "top", {
@@ -86,7 +86,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
86
86
  this._top = value;
87
87
  this.style.top = value;
88
88
  },
89
- enumerable: true,
89
+ enumerable: false,
90
90
  configurable: true
91
91
  });
92
92
  Object.defineProperty(IgcXRippleComponent.prototype, "left", {
@@ -97,7 +97,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
97
97
  this._left = value;
98
98
  this.style.left = value;
99
99
  },
100
- enumerable: true,
100
+ enumerable: false,
101
101
  configurable: true
102
102
  });
103
103
  Object.defineProperty(IgcXRippleComponent.prototype, "position", {
@@ -108,7 +108,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
108
108
  this._position = value;
109
109
  this.style.position = value;
110
110
  },
111
- enumerable: true,
111
+ enumerable: false,
112
112
  configurable: true
113
113
  });
114
114
  // supports angular themes or custom properties set in CSS
@@ -160,7 +160,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
160
160
  } /**
161
161
  * @hidden
162
162
  */,
163
- enumerable: true,
163
+ enumerable: false,
164
164
  configurable: true
165
165
  });
166
166
  IgcXRippleComponent._createFromInternal = function (internal) {
@@ -216,7 +216,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
216
216
  }
217
217
  return IgcXRippleComponent._observedAttributesIgcXRippleComponent;
218
218
  },
219
- enumerable: true,
219
+ enumerable: false,
220
220
  configurable: true
221
221
  });
222
222
  IgcXRippleComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
@@ -244,7 +244,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
244
244
  set: function (v) {
245
245
  this.i.q = v;
246
246
  },
247
- enumerable: true,
247
+ enumerable: false,
248
248
  configurable: true
249
249
  });
250
250
  Object.defineProperty(IgcXRippleComponent.prototype, "rippleColor", {
@@ -258,7 +258,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
258
258
  this.i.ax = stringToBrush(v);
259
259
  this._a("rippleColor", brushToString(this.i.ax));
260
260
  },
261
- enumerable: true,
261
+ enumerable: false,
262
262
  configurable: true
263
263
  });
264
264
  Object.defineProperty(IgcXRippleComponent.prototype, "hoverColor", {
@@ -272,7 +272,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
272
272
  this.i.aw = stringToBrush(v);
273
273
  this._a("hoverColor", brushToString(this.i.aw));
274
274
  },
275
- enumerable: true,
275
+ enumerable: false,
276
276
  configurable: true
277
277
  });
278
278
  Object.defineProperty(IgcXRippleComponent.prototype, "actualHoverColor", {
@@ -286,7 +286,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
286
286
  this.i.as = stringToBrush(v);
287
287
  this._a("actualHoverColor", brushToString(this.i.as));
288
288
  },
289
- enumerable: true,
289
+ enumerable: false,
290
290
  configurable: true
291
291
  });
292
292
  Object.defineProperty(IgcXRippleComponent.prototype, "actualRippleColor", {
@@ -300,7 +300,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
300
300
  this.i.at = stringToBrush(v);
301
301
  this._a("actualRippleColor", brushToString(this.i.at));
302
302
  },
303
- enumerable: true,
303
+ enumerable: false,
304
304
  configurable: true
305
305
  });
306
306
  Object.defineProperty(IgcXRippleComponent.prototype, "rippleDuration", {
@@ -314,7 +314,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
314
314
  this.i.o = +v;
315
315
  this._a("rippleDuration", this.i.o);
316
316
  },
317
- enumerable: true,
317
+ enumerable: false,
318
318
  configurable: true
319
319
  });
320
320
  Object.defineProperty(IgcXRippleComponent.prototype, "isDisabled", {
@@ -328,7 +328,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
328
328
  this.i.i = ensureBool(v);
329
329
  this._a("isDisabled", this.i.i);
330
330
  },
331
- enumerable: true,
331
+ enumerable: false,
332
332
  configurable: true
333
333
  });
334
334
  Object.defineProperty(IgcXRippleComponent.prototype, "isCentered", {
@@ -342,7 +342,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
342
342
  this.i.h = ensureBool(v);
343
343
  this._a("isCentered", this.i.h);
344
344
  },
345
- enumerable: true,
345
+ enumerable: false,
346
346
  configurable: true
347
347
  });
348
348
  Object.defineProperty(IgcXRippleComponent.prototype, "isHoverEnabled", {
@@ -356,7 +356,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
356
356
  this.i.k = ensureBool(v);
357
357
  this._a("isHoverEnabled", this.i.k);
358
358
  },
359
- enumerable: true,
359
+ enumerable: false,
360
360
  configurable: true
361
361
  });
362
362
  IgcXRippleComponent.prototype.findByName = function (name) {
@@ -371,7 +371,7 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
371
371
  get: function () {
372
372
  return this._hasUserValues;
373
373
  },
374
- enumerable: true,
374
+ enumerable: false,
375
375
  configurable: true
376
376
  });
377
377
  IgcXRippleComponent.prototype.__m = function (propertyName) {
@@ -1,11 +1,11 @@
1
- import * as tslib_1 from "tslib";
1
+ import { __extends, __values } from "tslib";
2
2
  import { XSuffix } from "./XSuffix";
3
3
  import { ensureBool, NamePatcher, toSpinal, getAllPropertyNames } from "igniteui-webcomponents-core";
4
4
  import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
5
5
  import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
6
  import { IgcXInputGroupItemComponent } from './igc-x-input-group-item-component';
7
7
  var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
8
- tslib_1.__extends(IgcXSuffixComponent, _super);
8
+ __extends(IgcXSuffixComponent, _super);
9
9
  function IgcXSuffixComponent() {
10
10
  var _this = _super.call(this) || this;
11
11
  _this._disconnected = false;
@@ -34,7 +34,7 @@ var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
34
34
  var mut = new MutationObserver(function (list) {
35
35
  var e_1, _b;
36
36
  try {
37
- for (var list_1 = tslib_1.__values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
37
+ for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
38
38
  var mutation = list_1_1.value;
39
39
  if (mutation.type == 'childList') {
40
40
  _this._onChildrenChanged();
@@ -121,7 +121,7 @@ var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
121
121
  get: function () {
122
122
  return this._implementation;
123
123
  },
124
- enumerable: true,
124
+ enumerable: false,
125
125
  configurable: true
126
126
  });
127
127
  Object.defineProperty(IgcXSuffixComponent, "observedAttributes", {
@@ -135,7 +135,7 @@ var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
135
135
  }
136
136
  return IgcXSuffixComponent._observedAttributesIgcXSuffixComponent;
137
137
  },
138
- enumerable: true,
138
+ enumerable: false,
139
139
  configurable: true
140
140
  });
141
141
  IgcXSuffixComponent.register = function () {
@@ -154,7 +154,7 @@ var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
154
154
  set: function (v) {
155
155
  this.i.z = v;
156
156
  },
157
- enumerable: true,
157
+ enumerable: false,
158
158
  configurable: true
159
159
  });
160
160
  Object.defineProperty(IgcXSuffixComponent.prototype, "ariaLabel", {
@@ -167,7 +167,7 @@ var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
167
167
  set: function (v) {
168
168
  this.i.w = v;
169
169
  },
170
- enumerable: true,
170
+ enumerable: false,
171
171
  configurable: true
172
172
  });
173
173
  Object.defineProperty(IgcXSuffixComponent.prototype, "isHover", {
@@ -181,7 +181,7 @@ var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
181
181
  this.i.q = ensureBool(v);
182
182
  this._a("isHover", this.i.q);
183
183
  },
184
- enumerable: true,
184
+ enumerable: false,
185
185
  configurable: true
186
186
  });
187
187
  Object.defineProperty(IgcXSuffixComponent.prototype, "disabled", {
@@ -195,7 +195,7 @@ var IgcXSuffixComponent = /** @class */ /*@__PURE__*/ (function (_super) {
195
195
  this.i.disabled = ensureBool(v);
196
196
  this._a("disabled", this.i.disabled);
197
197
  },
198
- enumerable: true,
198
+ enumerable: false,
199
199
  configurable: true
200
200
  });
201
201
  IgcXSuffixComponent.prototype.onDetachedFromUI = function () {
@@ -47,6 +47,8 @@ export * from './lib/XButtonBridge';
47
47
  export * from './lib/XCheckboxBridge';
48
48
  export * from './lib/XIconButtonBridge';
49
49
  export * from './lib/XInputBridge';
50
+ export * from './lib/XIconBridge';
51
+ export * from './lib/XPopupBridge';
50
52
  export * from './lib/KEYCODES';
51
53
  export * from './lib/MaskOptions';
52
54
  export * from './lib/Replaced';
@@ -89,6 +91,7 @@ export * from './lib/XIcon';
89
91
  export * from './lib/IconClickedEventArgs';
90
92
  export * from './lib/XButton';
91
93
  export * from './lib/ThemeResolver';
94
+ export * from './lib/Theme';
92
95
  export * from './lib/ButtonDisplayStyle';
93
96
  export * from './lib/ButtonClickEventArgs';
94
97
  export * from './lib/igc-button-click-event-args';