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
@@ -3,24 +3,6 @@ import { TypeRegistrar } from "igniteui-webcomponents-core";
3
3
  import { NamePatcher, getAllPropertyNames, fromSpinal, toSpinal, initializePropertiesFromCss } from "igniteui-webcomponents-core";
4
4
  export let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
5
5
  class IgcXInputGroupItemComponent extends IgcHTMLElement {
6
- constructor() {
7
- super();
8
- this._settingAttributes = false;
9
- this._attached = false;
10
- this._queuedSetAttributes = [];
11
- this._updatingFromAttribute = false;
12
- this.__p = null;
13
- this._hasUserValues = new Set();
14
- this._stylingContainer = null;
15
- this._stylingParent = null;
16
- this._inStyling = false;
17
- if (this._styling) {
18
- NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
19
- }
20
- this._implementation = this.createImplementation();
21
- this._implementation.externalObject = this;
22
- this.onImplementationCreated();
23
- }
24
6
  createImplementation() {
25
7
  return null;
26
8
  }
@@ -48,6 +30,24 @@ export let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
48
30
  }
49
31
  onImplementationCreated() {
50
32
  }
33
+ constructor() {
34
+ super();
35
+ this._settingAttributes = false;
36
+ this._attached = false;
37
+ this._queuedSetAttributes = [];
38
+ this._updatingFromAttribute = false;
39
+ this.__p = null;
40
+ this._hasUserValues = new Set();
41
+ this._stylingContainer = null;
42
+ this._stylingParent = null;
43
+ this._inStyling = false;
44
+ if (this._styling) {
45
+ NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
46
+ }
47
+ this._implementation = this.createImplementation();
48
+ this._implementation.externalObject = this;
49
+ this.onImplementationCreated();
50
+ }
51
51
  _enqueueSetAttribute(attrName, attrValue) {
52
52
  this._queuedSetAttributes.push({ attrName: attrName, attrValue: attrValue });
53
53
  }
@@ -6,6 +6,41 @@ import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
6
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
7
7
  export let IgcXRippleComponent = /*@__PURE__*/ (() => {
8
8
  class IgcXRippleComponent extends IgcHTMLElement {
9
+ set height(value) {
10
+ this._height = value;
11
+ this.style.height = value;
12
+ }
13
+ get height() {
14
+ return this._height;
15
+ }
16
+ set width(value) {
17
+ this._width = value;
18
+ this.style.width = value;
19
+ }
20
+ get width() {
21
+ return this._width;
22
+ }
23
+ set top(value) {
24
+ this._top = value;
25
+ this.style.top = value;
26
+ }
27
+ get top() {
28
+ return this._top;
29
+ }
30
+ set left(value) {
31
+ this._left = value;
32
+ this.style.left = value;
33
+ }
34
+ get left() {
35
+ return this._left;
36
+ }
37
+ set position(value) {
38
+ this._position = value;
39
+ this.style.position = value;
40
+ }
41
+ get position() {
42
+ return this._position;
43
+ }
9
44
  constructor() {
10
45
  super();
11
46
  this._disconnected = false;
@@ -54,41 +89,6 @@ export let IgcXRippleComponent = /*@__PURE__*/ (() => {
54
89
  // this._ripple.notifySizeChanged();
55
90
  //});
56
91
  }
57
- set height(value) {
58
- this._height = value;
59
- this.style.height = value;
60
- }
61
- get height() {
62
- return this._height;
63
- }
64
- set width(value) {
65
- this._width = value;
66
- this.style.width = value;
67
- }
68
- get width() {
69
- return this._width;
70
- }
71
- set top(value) {
72
- this._top = value;
73
- this.style.top = value;
74
- }
75
- get top() {
76
- return this._top;
77
- }
78
- set left(value) {
79
- this._left = value;
80
- this.style.left = value;
81
- }
82
- get left() {
83
- return this._left;
84
- }
85
- set position(value) {
86
- this._position = value;
87
- this.style.position = value;
88
- }
89
- get position() {
90
- return this._position;
91
- }
92
92
  // supports angular themes or custom properties set in CSS
93
93
  updateStyle() {
94
94
  this._styling(this, this);
@@ -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';
@@ -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 ButtonClickEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
- tslib_1.__extends(ButtonClickEventArgs, _super);
13
+ __extends(ButtonClickEventArgs, _super);
14
14
  function ButtonClickEventArgs() {
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 { EventArgs, markType } from "igniteui-webcomponents-core";
9
9
  /**
10
10
  * @hidden
11
11
  */
12
12
  var ButtonGroupSelectionChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
- tslib_1.__extends(ButtonGroupSelectionChangedEventArgs, _super);
13
+ __extends(ButtonGroupSelectionChangedEventArgs, _super);
14
14
  function ButtonGroupSelectionChangedEventArgs() {
15
15
  return _super !== null && _super.apply(this, arguments) || this;
16
16
  }