igniteui-webcomponents-inputs 7.1.0 → 7.1.1-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 +37 -37
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/igc-button-click-event-args.js +2 -2
- package/esm2015/lib/igc-button-group-selection-changed-event-args.js +2 -2
- package/esm2015/lib/igc-checkbox-change-event-args.js +2 -2
- package/esm2015/lib/igc-color-editor-got-focus-event-args.js +2 -2
- package/esm2015/lib/igc-color-editor-lost-focus-event-args.js +2 -2
- package/esm2015/lib/igc-color-editor-panel-closed-event-args.js +2 -2
- package/esm2015/lib/igc-color-editor-panel-selected-value-changed-event-args.js +2 -2
- package/esm2015/lib/igc-got-focus-event-args.js +2 -2
- package/esm2015/lib/igc-input-change-event-args.js +2 -2
- package/esm2015/lib/igc-lost-focus-event-args.js +2 -2
- package/esm2015/lib/igc-multi-slider-component.js +1 -1
- package/esm2015/lib/igc-multi-slider-resolving-tool-tip-value-event-args.js +2 -2
- package/esm2015/lib/igc-multi-slider-thumb-component.js +2 -2
- package/esm2015/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -3
- package/esm2015/lib/igc-multi-slider-track-thumb-range.js +4 -4
- package/esm2015/lib/igc-multi-slider-y-value-changing-event-args.js +2 -2
- package/esm2015/lib/igc-selected-value-changed-event-args.js +2 -2
- package/esm2015/lib/igc-x-input-group-item-component.js +1 -1
- package/esm5/lib/igc-button-click-event-args.js +2 -2
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +2 -2
- package/esm5/lib/igc-checkbox-change-event-args.js +2 -2
- package/esm5/lib/igc-color-editor-got-focus-event-args.js +2 -2
- package/esm5/lib/igc-color-editor-lost-focus-event-args.js +2 -2
- package/esm5/lib/igc-color-editor-panel-closed-event-args.js +2 -2
- package/esm5/lib/igc-color-editor-panel-selected-value-changed-event-args.js +2 -2
- package/esm5/lib/igc-got-focus-event-args.js +2 -2
- package/esm5/lib/igc-input-change-event-args.js +2 -2
- package/esm5/lib/igc-lost-focus-event-args.js +2 -2
- package/esm5/lib/igc-multi-slider-component.js +1 -1
- package/esm5/lib/igc-multi-slider-resolving-tool-tip-value-event-args.js +2 -2
- package/esm5/lib/igc-multi-slider-thumb-component.js +2 -2
- package/esm5/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -3
- package/esm5/lib/igc-multi-slider-track-thumb-range.js +4 -4
- package/esm5/lib/igc-multi-slider-y-value-changing-event-args.js +2 -2
- package/esm5/lib/igc-selected-value-changed-event-args.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +1 -1
- package/fesm2015/igniteui-webcomponents-inputs.js +37 -37
- package/fesm5/igniteui-webcomponents-inputs.js +37 -37
- package/package.json +2 -2
|
@@ -13,7 +13,7 @@ export class IgcButtonClickEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcButtonClickEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcButtonGroupSelectionChangedEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcButtonGroupSelectionChangedEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -14,7 +14,7 @@ export class IgcCheckboxChangeEventArgs {
|
|
|
14
14
|
}
|
|
15
15
|
constructor() {
|
|
16
16
|
this._implementation = this.createImplementation();
|
|
17
|
-
this._implementation
|
|
17
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
18
18
|
this.onImplementationCreated();
|
|
19
19
|
if (this._initializeAdapters) {
|
|
20
20
|
this._initializeAdapters();
|
|
@@ -22,7 +22,7 @@ export class IgcCheckboxChangeEventArgs {
|
|
|
22
22
|
}
|
|
23
23
|
_provideImplementation(i) {
|
|
24
24
|
this._implementation = i;
|
|
25
|
-
this._implementation
|
|
25
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
26
26
|
this.onImplementationCreated();
|
|
27
27
|
if (this._initializeAdapters) {
|
|
28
28
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcColorEditorGotFocusEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcColorEditorGotFocusEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcColorEditorLostFocusEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcColorEditorLostFocusEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcColorEditorPanelClosedEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcColorEditorPanelClosedEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -14,7 +14,7 @@ export class IgcColorEditorPanelSelectedValueChangedEventArgs {
|
|
|
14
14
|
}
|
|
15
15
|
constructor() {
|
|
16
16
|
this._implementation = this.createImplementation();
|
|
17
|
-
this._implementation
|
|
17
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
18
18
|
this.onImplementationCreated();
|
|
19
19
|
if (this._initializeAdapters) {
|
|
20
20
|
this._initializeAdapters();
|
|
@@ -22,7 +22,7 @@ export class IgcColorEditorPanelSelectedValueChangedEventArgs {
|
|
|
22
22
|
}
|
|
23
23
|
_provideImplementation(i) {
|
|
24
24
|
this._implementation = i;
|
|
25
|
-
this._implementation
|
|
25
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
26
26
|
this.onImplementationCreated();
|
|
27
27
|
if (this._initializeAdapters) {
|
|
28
28
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcGotFocusEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcGotFocusEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -14,7 +14,7 @@ export class IgcInputChangeEventArgs {
|
|
|
14
14
|
}
|
|
15
15
|
constructor() {
|
|
16
16
|
this._implementation = this.createImplementation();
|
|
17
|
-
this._implementation
|
|
17
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
18
18
|
this.onImplementationCreated();
|
|
19
19
|
if (this._initializeAdapters) {
|
|
20
20
|
this._initializeAdapters();
|
|
@@ -22,7 +22,7 @@ export class IgcInputChangeEventArgs {
|
|
|
22
22
|
}
|
|
23
23
|
_provideImplementation(i) {
|
|
24
24
|
this._implementation = i;
|
|
25
|
-
this._implementation
|
|
25
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
26
26
|
this.onImplementationCreated();
|
|
27
27
|
if (this._initializeAdapters) {
|
|
28
28
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcLostFocusEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcLostFocusEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -68,7 +68,7 @@ let IgcMultiSliderComponent = /*@__PURE__*/ (() => {
|
|
|
68
68
|
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
|
|
69
69
|
}
|
|
70
70
|
this._implementation = this.createImplementation();
|
|
71
|
-
this._implementation
|
|
71
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
72
72
|
this.onImplementationCreated();
|
|
73
73
|
if (this._initializeAdapters) {
|
|
74
74
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcMultiSliderResolvingToolTipValueEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcMultiSliderResolvingToolTipValueEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -53,7 +53,7 @@ let IgcMultiSliderThumbComponent = /*@__PURE__*/ (() => {
|
|
|
53
53
|
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
|
|
54
54
|
}
|
|
55
55
|
this._implementation = this.createImplementation();
|
|
56
|
-
this._implementation
|
|
56
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
57
57
|
this.onImplementationCreated();
|
|
58
58
|
if (this._initializeAdapters) {
|
|
59
59
|
this._initializeAdapters();
|
|
@@ -164,7 +164,7 @@ let IgcMultiSliderThumbComponent = /*@__PURE__*/ (() => {
|
|
|
164
164
|
e.i.setNativeElement(r);
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
|
-
r
|
|
167
|
+
Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
|
|
168
168
|
}
|
|
169
169
|
return r.externalObject;
|
|
170
170
|
}
|
|
@@ -14,7 +14,7 @@ export class IgcMultiSliderThumbValueChangingEventArgs {
|
|
|
14
14
|
}
|
|
15
15
|
constructor() {
|
|
16
16
|
this._implementation = this.createImplementation();
|
|
17
|
-
this._implementation
|
|
17
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
18
18
|
this.onImplementationCreated();
|
|
19
19
|
if (this._initializeAdapters) {
|
|
20
20
|
this._initializeAdapters();
|
|
@@ -22,7 +22,7 @@ export class IgcMultiSliderThumbValueChangingEventArgs {
|
|
|
22
22
|
}
|
|
23
23
|
_provideImplementation(i) {
|
|
24
24
|
this._implementation = i;
|
|
25
|
-
this._implementation
|
|
25
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
26
26
|
this.onImplementationCreated();
|
|
27
27
|
if (this._initializeAdapters) {
|
|
28
28
|
this._initializeAdapters();
|
|
@@ -44,7 +44,7 @@ export class IgcMultiSliderThumbValueChangingEventArgs {
|
|
|
44
44
|
if (e) {
|
|
45
45
|
e._implementation = r;
|
|
46
46
|
}
|
|
47
|
-
r
|
|
47
|
+
Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
|
|
48
48
|
}
|
|
49
49
|
return r.externalObject;
|
|
50
50
|
}
|
|
@@ -14,7 +14,7 @@ export class IgcMultiSliderTrackThumbRange {
|
|
|
14
14
|
}
|
|
15
15
|
constructor() {
|
|
16
16
|
this._implementation = this.createImplementation();
|
|
17
|
-
this._implementation
|
|
17
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
18
18
|
this.onImplementationCreated();
|
|
19
19
|
if (this._initializeAdapters) {
|
|
20
20
|
this._initializeAdapters();
|
|
@@ -22,7 +22,7 @@ export class IgcMultiSliderTrackThumbRange {
|
|
|
22
22
|
}
|
|
23
23
|
_provideImplementation(i) {
|
|
24
24
|
this._implementation = i;
|
|
25
|
-
this._implementation
|
|
25
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
26
26
|
this.onImplementationCreated();
|
|
27
27
|
if (this._initializeAdapters) {
|
|
28
28
|
this._initializeAdapters();
|
|
@@ -62,7 +62,7 @@ export class IgcMultiSliderTrackThumbRange {
|
|
|
62
62
|
if (e) {
|
|
63
63
|
e._implementation = r;
|
|
64
64
|
}
|
|
65
|
-
r
|
|
65
|
+
Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
|
|
66
66
|
}
|
|
67
67
|
return r.externalObject;
|
|
68
68
|
}
|
|
@@ -79,7 +79,7 @@ export class IgcMultiSliderTrackThumbRange {
|
|
|
79
79
|
if (e) {
|
|
80
80
|
e._implementation = r;
|
|
81
81
|
}
|
|
82
|
-
r
|
|
82
|
+
Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
|
|
83
83
|
}
|
|
84
84
|
return r.externalObject;
|
|
85
85
|
}
|
|
@@ -13,7 +13,7 @@ export class IgcMultiSliderYValueChangingEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcMultiSliderYValueChangingEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -13,7 +13,7 @@ export class IgcSelectedValueChangedEventArgs {
|
|
|
13
13
|
}
|
|
14
14
|
constructor() {
|
|
15
15
|
this._implementation = this.createImplementation();
|
|
16
|
-
this._implementation
|
|
16
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
17
17
|
this.onImplementationCreated();
|
|
18
18
|
if (this._initializeAdapters) {
|
|
19
19
|
this._initializeAdapters();
|
|
@@ -21,7 +21,7 @@ export class IgcSelectedValueChangedEventArgs {
|
|
|
21
21
|
}
|
|
22
22
|
_provideImplementation(i) {
|
|
23
23
|
this._implementation = i;
|
|
24
|
-
this._implementation
|
|
24
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
if (this._initializeAdapters) {
|
|
27
27
|
this._initializeAdapters();
|
|
@@ -45,7 +45,7 @@ let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
|
|
|
45
45
|
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
|
|
46
46
|
}
|
|
47
47
|
this._implementation = this.createImplementation();
|
|
48
|
-
this._implementation
|
|
48
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
49
49
|
this.onImplementationCreated();
|
|
50
50
|
if (this._initializeAdapters) {
|
|
51
51
|
this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { ButtonClickEventArgs as ButtonClickEventArgs_internal } from "./ButtonC
|
|
|
2
2
|
var IgcButtonClickEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcButtonClickEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcButtonClickEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
|
25
25
|
};
|
|
26
26
|
IgcButtonClickEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { ButtonGroupSelectionChangedEventArgs as ButtonGroupSelectionChangedEven
|
|
|
2
2
|
var IgcButtonGroupSelectionChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcButtonGroupSelectionChangedEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcButtonGroupSelectionChangedEventArgs = /** @class */ /*@__PURE__*/ (funct
|
|
|
25
25
|
};
|
|
26
26
|
IgcButtonGroupSelectionChangedEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -3,7 +3,7 @@ import { ensureBool } from "igniteui-webcomponents-core";
|
|
|
3
3
|
var IgcCheckboxChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
4
4
|
function IgcCheckboxChangeEventArgs() {
|
|
5
5
|
this._implementation = this.createImplementation();
|
|
6
|
-
this._implementation
|
|
6
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
7
7
|
this.onImplementationCreated();
|
|
8
8
|
if (this._initializeAdapters) {
|
|
9
9
|
this._initializeAdapters();
|
|
@@ -26,7 +26,7 @@ var IgcCheckboxChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
|
26
26
|
};
|
|
27
27
|
IgcCheckboxChangeEventArgs.prototype._provideImplementation = function (i) {
|
|
28
28
|
this._implementation = i;
|
|
29
|
-
this._implementation
|
|
29
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
30
30
|
this.onImplementationCreated();
|
|
31
31
|
if (this._initializeAdapters) {
|
|
32
32
|
this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { ColorEditorGotFocusEventArgs as ColorEditorGotFocusEventArgs_internal }
|
|
|
2
2
|
var IgcColorEditorGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcColorEditorGotFocusEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcColorEditorGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
|
25
25
|
};
|
|
26
26
|
IgcColorEditorGotFocusEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { ColorEditorLostFocusEventArgs as ColorEditorLostFocusEventArgs_internal
|
|
|
2
2
|
var IgcColorEditorLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcColorEditorLostFocusEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcColorEditorLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function ()
|
|
|
25
25
|
};
|
|
26
26
|
IgcColorEditorLostFocusEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { ColorEditorPanelClosedEventArgs as ColorEditorPanelClosedEventArgs_inte
|
|
|
2
2
|
var IgcColorEditorPanelClosedEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcColorEditorPanelClosedEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcColorEditorPanelClosedEventArgs = /** @class */ /*@__PURE__*/ (function (
|
|
|
25
25
|
};
|
|
26
26
|
IgcColorEditorPanelClosedEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -3,7 +3,7 @@ import { brushToString, stringToBrush } from "igniteui-webcomponents-core";
|
|
|
3
3
|
var IgcColorEditorPanelSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
4
4
|
function IgcColorEditorPanelSelectedValueChangedEventArgs() {
|
|
5
5
|
this._implementation = this.createImplementation();
|
|
6
|
-
this._implementation
|
|
6
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
7
7
|
this.onImplementationCreated();
|
|
8
8
|
if (this._initializeAdapters) {
|
|
9
9
|
this._initializeAdapters();
|
|
@@ -26,7 +26,7 @@ var IgcColorEditorPanelSelectedValueChangedEventArgs = /** @class */ /*@__PURE__
|
|
|
26
26
|
};
|
|
27
27
|
IgcColorEditorPanelSelectedValueChangedEventArgs.prototype._provideImplementation = function (i) {
|
|
28
28
|
this._implementation = i;
|
|
29
|
-
this._implementation
|
|
29
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
30
30
|
this.onImplementationCreated();
|
|
31
31
|
if (this._initializeAdapters) {
|
|
32
32
|
this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { GotFocusEventArgs as GotFocusEventArgs_internal } from "./GotFocusEvent
|
|
|
2
2
|
var IgcGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcGotFocusEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
|
25
25
|
};
|
|
26
26
|
IgcGotFocusEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -3,7 +3,7 @@ import { ensureBool } from "igniteui-webcomponents-core";
|
|
|
3
3
|
var IgcInputChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
4
4
|
function IgcInputChangeEventArgs() {
|
|
5
5
|
this._implementation = this.createImplementation();
|
|
6
|
-
this._implementation
|
|
6
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
7
7
|
this.onImplementationCreated();
|
|
8
8
|
if (this._initializeAdapters) {
|
|
9
9
|
this._initializeAdapters();
|
|
@@ -26,7 +26,7 @@ var IgcInputChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
|
26
26
|
};
|
|
27
27
|
IgcInputChangeEventArgs.prototype._provideImplementation = function (i) {
|
|
28
28
|
this._implementation = i;
|
|
29
|
-
this._implementation
|
|
29
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
30
30
|
this.onImplementationCreated();
|
|
31
31
|
if (this._initializeAdapters) {
|
|
32
32
|
this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { LostFocusEventArgs as LostFocusEventArgs_internal } from "./LostFocusEv
|
|
|
2
2
|
var IgcLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcLostFocusEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
|
25
25
|
};
|
|
26
26
|
IgcLostFocusEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -42,7 +42,7 @@ export var IgcMultiSliderComponent = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
42
42
|
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(_this));
|
|
43
43
|
}
|
|
44
44
|
_this._implementation = _this.createImplementation();
|
|
45
|
-
_this._implementation
|
|
45
|
+
Object.defineProperty(_this._implementation, 'externalObject', { value: _this, enumerable: false, configurable: true, writable: true });
|
|
46
46
|
_this.onImplementationCreated();
|
|
47
47
|
if (_this._initializeAdapters) {
|
|
48
48
|
_this._initializeAdapters();
|
|
@@ -2,7 +2,7 @@ import { MultiSliderResolvingToolTipValueEventArgs as MultiSliderResolvingToolTi
|
|
|
2
2
|
var IgcMultiSliderResolvingToolTipValueEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
3
|
function IgcMultiSliderResolvingToolTipValueEventArgs() {
|
|
4
4
|
this._implementation = this.createImplementation();
|
|
5
|
-
this._implementation
|
|
5
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
6
6
|
this.onImplementationCreated();
|
|
7
7
|
if (this._initializeAdapters) {
|
|
8
8
|
this._initializeAdapters();
|
|
@@ -25,7 +25,7 @@ var IgcMultiSliderResolvingToolTipValueEventArgs = /** @class */ /*@__PURE__*/ (
|
|
|
25
25
|
};
|
|
26
26
|
IgcMultiSliderResolvingToolTipValueEventArgs.prototype._provideImplementation = function (i) {
|
|
27
27
|
this._implementation = i;
|
|
28
|
-
this._implementation
|
|
28
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
29
29
|
this.onImplementationCreated();
|
|
30
30
|
if (this._initializeAdapters) {
|
|
31
31
|
this._initializeAdapters();
|
|
@@ -27,7 +27,7 @@ export var IgcMultiSliderThumbComponent = /** @class */ /*@__PURE__*/ (function
|
|
|
27
27
|
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(_this));
|
|
28
28
|
}
|
|
29
29
|
_this._implementation = _this.createImplementation();
|
|
30
|
-
_this._implementation
|
|
30
|
+
Object.defineProperty(_this._implementation, 'externalObject', { value: _this, enumerable: false, configurable: true, writable: true });
|
|
31
31
|
_this.onImplementationCreated();
|
|
32
32
|
if (_this._initializeAdapters) {
|
|
33
33
|
_this._initializeAdapters();
|
|
@@ -183,7 +183,7 @@ export var IgcMultiSliderThumbComponent = /** @class */ /*@__PURE__*/ (function
|
|
|
183
183
|
e.i.setNativeElement(r);
|
|
184
184
|
}
|
|
185
185
|
}
|
|
186
|
-
r
|
|
186
|
+
Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
|
|
187
187
|
}
|
|
188
188
|
return r.externalObject;
|
|
189
189
|
},
|
|
@@ -3,7 +3,7 @@ import { MultiSliderThumbValueChangingEventArgs as MultiSliderThumbValueChanging
|
|
|
3
3
|
var IgcMultiSliderThumbValueChangingEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
4
4
|
function IgcMultiSliderThumbValueChangingEventArgs() {
|
|
5
5
|
this._implementation = this.createImplementation();
|
|
6
|
-
this._implementation
|
|
6
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
7
7
|
this.onImplementationCreated();
|
|
8
8
|
if (this._initializeAdapters) {
|
|
9
9
|
this._initializeAdapters();
|
|
@@ -26,7 +26,7 @@ var IgcMultiSliderThumbValueChangingEventArgs = /** @class */ /*@__PURE__*/ (fun
|
|
|
26
26
|
};
|
|
27
27
|
IgcMultiSliderThumbValueChangingEventArgs.prototype._provideImplementation = function (i) {
|
|
28
28
|
this._implementation = i;
|
|
29
|
-
this._implementation
|
|
29
|
+
Object.defineProperty(this._implementation, 'externalObject', { value: this, enumerable: false, configurable: true, writable: true });
|
|
30
30
|
this.onImplementationCreated();
|
|
31
31
|
if (this._initializeAdapters) {
|
|
32
32
|
this._initializeAdapters();
|
|
@@ -53,7 +53,7 @@ var IgcMultiSliderThumbValueChangingEventArgs = /** @class */ /*@__PURE__*/ (fun
|
|
|
53
53
|
if (e) {
|
|
54
54
|
e._implementation = r;
|
|
55
55
|
}
|
|
56
|
-
r
|
|
56
|
+
Object.defineProperty(r, 'externalObject', { value: e, enumerable: false, configurable: true, writable: true });
|
|
57
57
|
}
|
|
58
58
|
return r.externalObject;
|
|
59
59
|
},
|