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
@@ -4,14 +4,14 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  import { StringBuilder } from "igniteui-webcomponents-core";
10
10
  /**
11
11
  * @hidden
12
12
  */
13
13
  var InputGroupVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
14
- tslib_1.__extends(InputGroupVisualModelExport, _super);
14
+ __extends(InputGroupVisualModelExport, _super);
15
15
  function InputGroupVisualModelExport() {
16
16
  var _this = _super !== null && _super.apply(this, arguments) || this;
17
17
  _this.f = 0;
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  import { StringBuilder } from "igniteui-webcomponents-core";
10
10
  import { stringIsNullOrEmpty } from "igniteui-webcomponents-core";
@@ -13,7 +13,7 @@ import { isNaN_ } from "igniteui-webcomponents-core";
13
13
  * @hidden
14
14
  */
15
15
  var InputVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
16
- tslib_1.__extends(InputVisualModelExport, _super);
16
+ __extends(InputVisualModelExport, _super);
17
17
  function InputVisualModelExport() {
18
18
  var _this = _super !== null && _super.apply(this, arguments) || this;
19
19
  _this.h = 0;
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  import { StringBuilder } from "igniteui-webcomponents-core";
10
10
  import { stringIsNullOrEmpty } from "igniteui-webcomponents-core";
@@ -13,7 +13,7 @@ import { isNaN_ } from "igniteui-webcomponents-core";
13
13
  * @hidden
14
14
  */
15
15
  var LabelVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
16
- tslib_1.__extends(LabelVisualModelExport, _super);
16
+ __extends(LabelVisualModelExport, _super);
17
17
  function LabelVisualModelExport() {
18
18
  var _this = _super !== null && _super.apply(this, arguments) || this;
19
19
  _this.c = 0;
@@ -4,13 +4,13 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { EventArgs, markType } from "igniteui-webcomponents-core";
9
9
  /**
10
10
  * @hidden
11
11
  */
12
12
  var LostFocusEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
- tslib_1.__extends(LostFocusEventArgs, _super);
13
+ __extends(LostFocusEventArgs, _super);
14
14
  function LostFocusEventArgs() {
15
15
  return _super !== null && _super.apply(this, arguments) || this;
16
16
  }
@@ -4,13 +4,13 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  /**
10
10
  * @hidden
11
11
  */
12
12
  var MaskOptions = /** @class */ /*@__PURE__*/ (function (_super) {
13
- tslib_1.__extends(MaskOptions, _super);
13
+ __extends(MaskOptions, _super);
14
14
  function MaskOptions() {
15
15
  var _this = _super !== null && _super.apply(this, arguments) || this;
16
16
  _this.a = null;
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends, __values } from "tslib";
8
8
  import { Base, String_$type, Number_$type, fromEnum, markType } from "igniteui-webcomponents-core";
9
9
  import { Dictionary$2 } from "igniteui-webcomponents-core";
10
10
  import { List$1 } from "igniteui-webcomponents-core";
@@ -15,7 +15,7 @@ import { ObservableCollection$1 } from "igniteui-webcomponents-core";
15
15
  * @hidden
16
16
  */
17
17
  var MaskParsingService = /** @class */ /*@__PURE__*/ (function (_super) {
18
- tslib_1.__extends(MaskParsingService, _super);
18
+ __extends(MaskParsingService, _super);
19
19
  function MaskParsingService() {
20
20
  return _super !== null && _super.apply(this, arguments) || this;
21
21
  }
@@ -35,7 +35,7 @@ var MaskParsingService = /** @class */ /*@__PURE__*/ (function (_super) {
35
35
  c += b.b;
36
36
  }
37
37
  try {
38
- for (var _c = tslib_1.__values(fromEnum(f)), _d = _c.next(); !_d.done; _d = _c.next()) {
38
+ for (var _c = __values(fromEnum(f)), _d = _c.next(); !_d.done; _d = _c.next()) {
39
39
  var k = _d.value;
40
40
  c = this.j(c, k.key, k.value);
41
41
  }
@@ -69,7 +69,7 @@ var MaskParsingService = /** @class */ /*@__PURE__*/ (function (_super) {
69
69
  }
70
70
  var p = 0;
71
71
  try {
72
- for (var _e = tslib_1.__values(fromEnum(l)), _f = _e.next(); !_f.done; _f = _e.next()) {
72
+ for (var _e = __values(fromEnum(l)), _f = _e.next(); !_f.done; _f = _e.next()) {
73
73
  var q = _f.value;
74
74
  var r = q;
75
75
  c = this.j(c, h._inner[p++], r);
@@ -97,7 +97,7 @@ var MaskParsingService = /** @class */ /*@__PURE__*/ (function (_super) {
97
97
  var e = this.d(d);
98
98
  var f = new HashSet$1(String_$type, 0);
99
99
  try {
100
- for (var _b = tslib_1.__values(fromEnum(e.values)), _c = _b.next(); !_c.done; _c = _b.next()) {
100
+ for (var _b = __values(fromEnum(e.values)), _c = _b.next(); !_c.done; _c = _b.next()) {
101
101
  var g = _c.value;
102
102
  f.add_1(g);
103
103
  }
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  import { INativeUIElementFactory_$type } from "igniteui-webcomponents-core";
10
10
  import { NativeUIComponent } from "igniteui-webcomponents-core";
@@ -19,13 +19,16 @@ import { XCheckbox } from "./XCheckbox";
19
19
  import { XCheckboxBridge } from "./XCheckboxBridge";
20
20
  import { NativeUICheckbox } from "igniteui-webcomponents-core";
21
21
  import { XIcon } from "./XIcon";
22
- import { XIconButtonBridge } from "./XIconButtonBridge";
23
- import { NativeUIIconButton } from "igniteui-webcomponents-core";
22
+ import { XIconBridge } from "./XIconBridge";
23
+ import { NativeUIIcon } from "igniteui-webcomponents-core";
24
+ import { XPopupBridge } from "./XPopupBridge";
25
+ import { NativeUIPopup } from "igniteui-webcomponents-core";
26
+ import { Popup } from "igniteui-webcomponents-core";
24
27
  /**
25
28
  * @hidden
26
29
  */
27
30
  var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
28
- tslib_1.__extends(NativeUIXInputsFactory, _super);
31
+ __extends(NativeUIXInputsFactory, _super);
29
32
  function NativeUIXInputsFactory() {
30
33
  var _this = _super !== null && _super.apply(this, arguments) || this;
31
34
  _this.c = 2;
@@ -38,17 +41,17 @@ var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
38
41
  }
39
42
  return NativeUIXInputsFactory.a;
40
43
  },
41
- enumerable: true,
44
+ enumerable: false,
42
45
  configurable: true
43
46
  });
44
- NativeUIXInputsFactory.h = function () {
45
- NativeUIComponent.ab(NativeUIXInputsFactory.b);
47
+ NativeUIXInputsFactory.j = function () {
48
+ NativeUIComponent.ap(NativeUIXInputsFactory.b);
46
49
  };
47
50
  Object.defineProperty(NativeUIXInputsFactory.prototype, "flavor", {
48
51
  get: function () {
49
52
  return this.c;
50
53
  },
51
- enumerable: true,
54
+ enumerable: false,
52
55
  configurable: true
53
56
  });
54
57
  NativeUIXInputsFactory.prototype.createComponent = function (a, b, c) {
@@ -60,10 +63,16 @@ var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
60
63
  this.e(a, c);
61
64
  break;
62
65
  case 10:
63
- this.f(a, c);
66
+ this.g(a, c);
64
67
  break;
65
68
  case 2:
66
- this.g(a, c);
69
+ this.h(a, c);
70
+ break;
71
+ case 11:
72
+ this.f(a, c);
73
+ break;
74
+ case 12:
75
+ this.i(a, c);
67
76
  break;
68
77
  }
69
78
  };
@@ -76,10 +85,12 @@ var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
76
85
  case 6: return true;
77
86
  case 10: return true;
78
87
  case 2: return true;
88
+ case 11: return true;
89
+ case 12: return true;
79
90
  }
80
91
  return false;
81
92
  };
82
- NativeUIXInputsFactory.prototype.g = function (a, b) {
93
+ NativeUIXInputsFactory.prototype.h = function (a, b) {
83
94
  var c = a;
84
95
  var d = c.createElement("div");
85
96
  var e = c.getSubRenderer(d);
@@ -96,7 +107,7 @@ var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
96
107
  f.inputs.add(j);
97
108
  var l = new XInputBridge(f);
98
109
  var m = new NativeUIInput();
99
- m.x = d;
110
+ m.al = d;
100
111
  m.d = l;
101
112
  b(m);
102
113
  };
@@ -106,10 +117,11 @@ var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
106
117
  var e = c.getSubRenderer(d);
107
118
  var f = new XButton();
108
119
  f.provideContainer(e);
120
+ f.ff = "none";
109
121
  var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
110
122
  var h = new XButtonBridge(f);
111
123
  var i = new NativeUIButton();
112
- i.x = d;
124
+ i.al = d;
113
125
  i.d = h;
114
126
  b(i);
115
127
  };
@@ -122,29 +134,59 @@ var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
122
134
  var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
123
135
  var h = new XCheckboxBridge(f);
124
136
  var i = new NativeUICheckbox();
125
- i.x = d;
137
+ i.al = d;
126
138
  i.d = h;
127
139
  b(i);
128
140
  };
141
+ NativeUIXInputsFactory.prototype.g = function (a, b) {
142
+ var c = a;
143
+ var d = c.createElement("div");
144
+ var e = c.getSubRenderer(d);
145
+ var f = new XIcon();
146
+ f.provideContainer(e);
147
+ var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
148
+ var h = new XIconBridge(f);
149
+ var i = new NativeUIIcon();
150
+ i.al = d;
151
+ i.d = h;
152
+ var j = c.createElement("div");
153
+ var k = c.getSubRenderer(j);
154
+ var l = new XButton();
155
+ l.provideContainer(k);
156
+ l.e = 4;
157
+ l.ff = "none";
158
+ var m = k.getExternal(l, k.rootWrapper, k.getExternal(l, null, null));
159
+ var n = new XButtonBridge(l);
160
+ var o = new NativeUIButton();
161
+ o.al = j;
162
+ o.d = n;
163
+ o.bj = i;
164
+ b(o);
165
+ };
129
166
  NativeUIXInputsFactory.prototype.f = function (a, b) {
130
167
  var c = a;
131
168
  var d = c.createElement("div");
132
169
  var e = c.getSubRenderer(d);
133
- var f = new XButton();
170
+ var f = new XIcon();
134
171
  f.provideContainer(e);
135
- f.e = 4;
136
172
  var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
137
- var h = c.createElement("div");
138
- var i = c.getSubRenderer(h);
139
- var j = new XIcon();
140
- j.provideContainer(i);
141
- var k = e.getExternal(j, i.rootWrapper, i.getExternal(j, null, null));
142
- f.appendButtonContent(h);
143
- var l = new XIconButtonBridge(f, j);
144
- var m = new NativeUIIconButton();
145
- m.x = d;
146
- m.d = l;
147
- b(m);
173
+ var h = new XIconBridge(f);
174
+ var i = new NativeUIIcon();
175
+ i.al = d;
176
+ i.d = h;
177
+ b(i);
178
+ };
179
+ NativeUIXInputsFactory.prototype.i = function (a, b) {
180
+ var c = a;
181
+ var d = c.createElement("div");
182
+ var e = c.getSubRenderer(d);
183
+ var f = new Popup();
184
+ f.provideRenderer(e);
185
+ var g = new XPopupBridge(f);
186
+ var h = new NativeUIPopup();
187
+ h.al = d;
188
+ h.d = g;
189
+ b(h);
148
190
  };
149
191
  NativeUIXInputsFactory.$t = markType(NativeUIXInputsFactory, 'NativeUIXInputsFactory', Base.$, [INativeUIElementFactory_$type]);
150
192
  NativeUIXInputsFactory.a = null;
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, enumGetBox, markType } from "igniteui-webcomponents-core";
9
9
  import { PrefixShiftType_$type } from "./PrefixShiftType";
10
10
  import { StringBuilder } from "igniteui-webcomponents-core";
@@ -12,7 +12,7 @@ import { StringBuilder } from "igniteui-webcomponents-core";
12
12
  * @hidden
13
13
  */
14
14
  var PrefixVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
15
- tslib_1.__extends(PrefixVisualModelExport, _super);
15
+ __extends(PrefixVisualModelExport, _super);
16
16
  function PrefixVisualModelExport() {
17
17
  var _this = _super !== null && _super.apply(this, arguments) || this;
18
18
  _this.a = 0;
@@ -4,13 +4,13 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  /**
10
10
  * @hidden
11
11
  */
12
12
  var Replaced = /** @class */ /*@__PURE__*/ (function (_super) {
13
- tslib_1.__extends(Replaced, _super);
13
+ __extends(Replaced, _super);
14
14
  function Replaced() {
15
15
  var _this = _super !== null && _super.apply(this, arguments) || this;
16
16
  _this.b = null;
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends, __values } from "tslib";
8
8
  import { Base, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
9
9
  import { List$1 } from "igniteui-webcomponents-core";
10
10
  import { ScaleTransform } from "igniteui-webcomponents-core";
@@ -22,7 +22,7 @@ import { BrushUtil } from "igniteui-webcomponents-core";
22
22
  * @hidden
23
23
  */
24
24
  var RippleView = /** @class */ /*@__PURE__*/ (function (_super) {
25
- tslib_1.__extends(RippleView, _super);
25
+ __extends(RippleView, _super);
26
26
  function RippleView() {
27
27
  var _this = _super.call(this) || this;
28
28
  _this.b = null;
@@ -46,7 +46,7 @@ var RippleView = /** @class */ /*@__PURE__*/ (function (_super) {
46
46
  var e_1, _a;
47
47
  if (a == null) {
48
48
  try {
49
- for (var _b = tslib_1.__values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
49
+ for (var _b = __values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
50
50
  var b = _c.value;
51
51
  b();
52
52
  }
@@ -74,7 +74,7 @@ var RippleView = /** @class */ /*@__PURE__*/ (function (_super) {
74
74
  if (this.b.q == null) {
75
75
  this.l = null;
76
76
  try {
77
- for (var _b = tslib_1.__values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
77
+ for (var _b = __values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
78
78
  var a = _c.value;
79
79
  a();
80
80
  }
@@ -140,7 +140,7 @@ var RippleView = /** @class */ /*@__PURE__*/ (function (_super) {
140
140
  d.setStyleProperty("pointer-events", "none");
141
141
  d.setStyleProperty("border-radius", c + "px");
142
142
  d.setStyleProperty("opacity", ".5");
143
- NativeUI.ab(d, ((function () {
143
+ NativeUI.ad(d, ((function () {
144
144
  var $ret = new ScaleTransform();
145
145
  $ret.l = 0.3;
146
146
  $ret.m = 0.3;
@@ -171,7 +171,7 @@ var RippleView = /** @class */ /*@__PURE__*/ (function (_super) {
171
171
  var e_3, _a;
172
172
  this.d = false;
173
173
  try {
174
- for (var _b = tslib_1.__values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
174
+ for (var _b = __values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
175
175
  var a = _c.value;
176
176
  a();
177
177
  }
@@ -199,7 +199,7 @@ export { RippleView };
199
199
  * @hidden
200
200
  */
201
201
  var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
202
- tslib_1.__extends(XRipple, _super);
202
+ __extends(XRipple, _super);
203
203
  function XRipple() {
204
204
  var _this = _super.call(this) || this;
205
205
  _this.c = null;
@@ -287,7 +287,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
287
287
  this.ah("EventSource", b, a);
288
288
  }
289
289
  },
290
- enumerable: true,
290
+ enumerable: false,
291
291
  configurable: true
292
292
  });
293
293
  Object.defineProperty(XRipple.prototype, "ax", {
@@ -301,7 +301,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
301
301
  this.ah("RippleColor", b, a);
302
302
  }
303
303
  },
304
- enumerable: true,
304
+ enumerable: false,
305
305
  configurable: true
306
306
  });
307
307
  Object.defineProperty(XRipple.prototype, "aw", {
@@ -315,7 +315,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
315
315
  this.ah("HoverColor", b, a);
316
316
  }
317
317
  },
318
- enumerable: true,
318
+ enumerable: false,
319
319
  configurable: true
320
320
  });
321
321
  Object.defineProperty(XRipple.prototype, "as", {
@@ -329,7 +329,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
329
329
  this.ah("ActualHoverColor", b, a);
330
330
  }
331
331
  },
332
- enumerable: true,
332
+ enumerable: false,
333
333
  configurable: true
334
334
  });
335
335
  XRipple.prototype.al = function (a, b, c, d) {
@@ -382,7 +382,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
382
382
  this.ah("ActualRippleColor", b, a);
383
383
  }
384
384
  },
385
- enumerable: true,
385
+ enumerable: false,
386
386
  configurable: true
387
387
  });
388
388
  Object.defineProperty(XRipple.prototype, "o", {
@@ -396,7 +396,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
396
396
  this.ah("RippleDuration", b, a);
397
397
  }
398
398
  },
399
- enumerable: true,
399
+ enumerable: false,
400
400
  configurable: true
401
401
  });
402
402
  Object.defineProperty(XRipple.prototype, "i", {
@@ -410,7 +410,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
410
410
  this.ah("IsDisabled", b, a);
411
411
  }
412
412
  },
413
- enumerable: true,
413
+ enumerable: false,
414
414
  configurable: true
415
415
  });
416
416
  Object.defineProperty(XRipple.prototype, "h", {
@@ -424,7 +424,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
424
424
  this.ah("IsCentered", b, a);
425
425
  }
426
426
  },
427
- enumerable: true,
427
+ enumerable: false,
428
428
  configurable: true
429
429
  });
430
430
  Object.defineProperty(XRipple.prototype, "k", {
@@ -438,7 +438,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
438
438
  this.ah("IsHoverEnabled", b, a);
439
439
  }
440
440
  },
441
- enumerable: true,
441
+ enumerable: false,
442
442
  configurable: true
443
443
  });
444
444
  XRipple.prototype.ai = function () {
@@ -451,7 +451,7 @@ var XRipple = /** @class */ /*@__PURE__*/ (function (_super) {
451
451
  a.b = 0;
452
452
  return a;
453
453
  },
454
- enumerable: true,
454
+ enumerable: false,
455
455
  configurable: true
456
456
  });
457
457
  XRipple.prototype.onDetachedFromUI = function () {
@@ -4,14 +4,14 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  import { StringBuilder } from "igniteui-webcomponents-core";
10
10
  /**
11
11
  * @hidden
12
12
  */
13
13
  var RippleVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
14
- tslib_1.__extends(RippleVisualModelExport, _super);
14
+ __extends(RippleVisualModelExport, _super);
15
15
  function RippleVisualModelExport() {
16
16
  var _this = _super !== null && _super.apply(this, arguments) || this;
17
17
  _this.a = null;
@@ -4,13 +4,13 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { EventArgs, markType } from "igniteui-webcomponents-core";
9
9
  /**
10
10
  * @hidden
11
11
  */
12
12
  var SelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
- tslib_1.__extends(SelectedValueChangedEventArgs, _super);
13
+ __extends(SelectedValueChangedEventArgs, _super);
14
14
  function SelectedValueChangedEventArgs() {
15
15
  var _this = _super !== null && _super.apply(this, arguments) || this;
16
16
  _this._oldValue = new Date();
@@ -24,7 +24,7 @@ var SelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_supe
24
24
  set: function (a) {
25
25
  this._oldValue = a;
26
26
  },
27
- enumerable: true,
27
+ enumerable: false,
28
28
  configurable: true
29
29
  });
30
30
  Object.defineProperty(SelectedValueChangedEventArgs.prototype, "newValue", {
@@ -34,7 +34,7 @@ var SelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_supe
34
34
  set: function (a) {
35
35
  this._newValue = a;
36
36
  },
37
- enumerable: true,
37
+ enumerable: false,
38
38
  configurable: true
39
39
  });
40
40
  SelectedValueChangedEventArgs.$t = markType(SelectedValueChangedEventArgs, 'SelectedValueChangedEventArgs', EventArgs.$);
@@ -4,14 +4,14 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  import { StringBuilder } from "igniteui-webcomponents-core";
10
10
  /**
11
11
  * @hidden
12
12
  */
13
13
  var SuffixVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
14
- tslib_1.__extends(SuffixVisualModelExport, _super);
14
+ __extends(SuffixVisualModelExport, _super);
15
15
  function SuffixVisualModelExport() {
16
16
  var _this = _super !== null && _super.apply(this, arguments) || this;
17
17
  _this.a = 0;
@@ -4,14 +4,14 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import * as tslib_1 from "tslib";
7
+ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-webcomponents-core";
9
9
  import { StringBuilder } from "igniteui-webcomponents-core";
10
10
  /**
11
11
  * @hidden
12
12
  */
13
13
  var TextElementsVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
14
- tslib_1.__extends(TextElementsVisualModelExport, _super);
14
+ __extends(TextElementsVisualModelExport, _super);
15
15
  function TextElementsVisualModelExport() {
16
16
  var _this = _super !== null && _super.apply(this, arguments) || this;
17
17
  _this.e = 0;
@@ -0,0 +1,58 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, markType } from "igniteui-webcomponents-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var Theme = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(Theme, _super);
14
+ function Theme(a) {
15
+ var _rest = [];
16
+ for (var _i = 1; _i < arguments.length; _i++) {
17
+ _rest[_i - 1] = arguments[_i];
18
+ }
19
+ var _this = _super.call(this) || this;
20
+ _this.b = null;
21
+ _this.a = null;
22
+ a = (a == void 0) ? 0 : a;
23
+ switch (a) {
24
+ case 0:
25
+ {
26
+ var c = _rest[0];
27
+ _this.b = c;
28
+ }
29
+ break;
30
+ case 1:
31
+ {
32
+ var c = _rest[0];
33
+ var d = _rest[1];
34
+ var e = [c];
35
+ {
36
+ var g = e[0];
37
+ _this.b = g;
38
+ }
39
+ _this.a = d;
40
+ }
41
+ break;
42
+ }
43
+ return _this;
44
+ }
45
+ Object.defineProperty(Theme.prototype, "c", {
46
+ get: function () {
47
+ return this.a;
48
+ },
49
+ enumerable: false,
50
+ configurable: true
51
+ });
52
+ Theme.prototype.item = function (a) {
53
+ return this.b.item(a);
54
+ };
55
+ Theme.$t = markType(Theme, 'Theme');
56
+ return Theme;
57
+ }(Base));
58
+ export { Theme };