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.
- package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- 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);
|
package/esm2015/public_api.js
CHANGED
|
@@ -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
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
13
|
+
__extends(ButtonGroupSelectionChangedEventArgs, _super);
|
|
14
14
|
function ButtonGroupSelectionChangedEventArgs() {
|
|
15
15
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
16
16
|
}
|