igniteui-angular-core 13.2.0 → 14.0.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-angular-core.umd.js +62 -17
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/IgcSliderBridge.js +38 -12
- package/esm2015/lib/NativeUIInputsFactory.js +1 -0
- package/esm2015/lib/NativeUISlider.js +24 -10
- package/esm5/lib/IgcSliderBridge.js +38 -12
- package/esm5/lib/NativeUIInputsFactory.js +1 -0
- package/esm5/lib/NativeUISlider.js +23 -5
- package/fesm2015/igniteui-angular-core.js +63 -22
- package/fesm5/igniteui-angular-core.js +62 -17
- package/lib/IgcSliderBridge.d.ts +7 -3
- package/lib/NativeUISlider.d.ts +9 -6
- package/package.json +4 -4
|
@@ -14,24 +14,43 @@ export let IgcSliderBridge = /*@__PURE__*/ (() => {
|
|
|
14
14
|
class IgcSliderBridge extends NativeUIElementBridge {
|
|
15
15
|
constructor() {
|
|
16
16
|
super(...arguments);
|
|
17
|
-
this.d = null;
|
|
18
|
-
this.c = null;
|
|
19
17
|
this.e = null;
|
|
18
|
+
this.c = null;
|
|
19
|
+
this.g = null;
|
|
20
|
+
this.f = null;
|
|
21
|
+
this.d = null;
|
|
22
|
+
this.h = null;
|
|
20
23
|
}
|
|
21
24
|
addHandler(a, b, c, d) {
|
|
22
25
|
switch (c) {
|
|
26
|
+
case 0:
|
|
27
|
+
{
|
|
28
|
+
let e = a;
|
|
29
|
+
this.f = e.listen("igcInput", runOn(this, this.j));
|
|
30
|
+
this.d = d;
|
|
31
|
+
this.h = b;
|
|
32
|
+
}
|
|
33
|
+
break;
|
|
23
34
|
case 4:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
35
|
+
{
|
|
36
|
+
let f = a;
|
|
37
|
+
this.e = f.listen("igcChange", runOn(this, this.i));
|
|
38
|
+
this.c = d;
|
|
39
|
+
this.g = b;
|
|
40
|
+
}
|
|
28
41
|
break;
|
|
29
42
|
}
|
|
30
43
|
}
|
|
31
|
-
|
|
44
|
+
j(a) {
|
|
45
|
+
if (this.d != null) {
|
|
46
|
+
let b = new NativeUISliderValueChangedEventArgs();
|
|
47
|
+
this.d(this.h, b);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
i(a) {
|
|
32
51
|
if (this.c != null) {
|
|
33
52
|
let b = new NativeUISliderValueChangedEventArgs();
|
|
34
|
-
this.c(this.
|
|
53
|
+
this.c(this.g, b);
|
|
35
54
|
}
|
|
36
55
|
}
|
|
37
56
|
getValue(a, b) {
|
|
@@ -45,12 +64,19 @@ export let IgcSliderBridge = /*@__PURE__*/ (() => {
|
|
|
45
64
|
}
|
|
46
65
|
removeHandler(a, b, c, d) {
|
|
47
66
|
switch (c) {
|
|
48
|
-
case
|
|
49
|
-
if (this.
|
|
50
|
-
this.
|
|
67
|
+
case 0:
|
|
68
|
+
if (this.f != null) {
|
|
69
|
+
this.f();
|
|
70
|
+
}
|
|
71
|
+
this.d = null;
|
|
72
|
+
this.h = null;
|
|
73
|
+
break;
|
|
74
|
+
case 4:
|
|
75
|
+
if (this.e != null) {
|
|
76
|
+
this.e();
|
|
51
77
|
}
|
|
52
78
|
this.c = null;
|
|
53
|
-
this.
|
|
79
|
+
this.g = null;
|
|
54
80
|
break;
|
|
55
81
|
}
|
|
56
82
|
}
|
|
@@ -14,42 +14,43 @@ export let NativeUISlider = /*@__PURE__*/ (() => {
|
|
|
14
14
|
constructor() {
|
|
15
15
|
super(...arguments);
|
|
16
16
|
this.ap = null;
|
|
17
|
+
this.aq = null;
|
|
17
18
|
}
|
|
18
19
|
get_c() {
|
|
19
20
|
return 5;
|
|
20
21
|
}
|
|
21
|
-
get
|
|
22
|
+
get aw() {
|
|
22
23
|
let a = this.o(2);
|
|
23
24
|
return a;
|
|
24
25
|
}
|
|
25
|
-
set
|
|
26
|
+
set aw(a) {
|
|
26
27
|
this.ad(2, a);
|
|
27
28
|
}
|
|
28
|
-
get
|
|
29
|
+
get au() {
|
|
29
30
|
let a = this.o(10);
|
|
30
31
|
return a;
|
|
31
32
|
}
|
|
32
|
-
set
|
|
33
|
+
set au(a) {
|
|
33
34
|
this.ad(10, a);
|
|
34
35
|
}
|
|
35
|
-
get
|
|
36
|
+
get at() {
|
|
36
37
|
let a = this.o(11);
|
|
37
38
|
return a;
|
|
38
39
|
}
|
|
39
|
-
set
|
|
40
|
+
set at(a) {
|
|
40
41
|
this.ad(11, a);
|
|
41
42
|
}
|
|
42
|
-
get
|
|
43
|
+
get av() {
|
|
43
44
|
let a = this.o(12);
|
|
44
45
|
return a;
|
|
45
46
|
}
|
|
46
|
-
set
|
|
47
|
+
set av(a) {
|
|
47
48
|
this.ad(12, a);
|
|
48
49
|
}
|
|
49
|
-
get
|
|
50
|
+
get ar() {
|
|
50
51
|
return this.ap;
|
|
51
52
|
}
|
|
52
|
-
set
|
|
53
|
+
set ar(a) {
|
|
53
54
|
let b = this.ap;
|
|
54
55
|
this.ap = a;
|
|
55
56
|
if (this.ap != null) {
|
|
@@ -59,6 +60,19 @@ export let NativeUISlider = /*@__PURE__*/ (() => {
|
|
|
59
60
|
this.ab(4, b);
|
|
60
61
|
}
|
|
61
62
|
}
|
|
63
|
+
get as() {
|
|
64
|
+
return this.aq;
|
|
65
|
+
}
|
|
66
|
+
set as(a) {
|
|
67
|
+
let b = this.aq;
|
|
68
|
+
this.aq = a;
|
|
69
|
+
if (this.aq != null) {
|
|
70
|
+
this.w(0, this.aq);
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
this.ab(0, b);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
62
76
|
}
|
|
63
77
|
NativeUISlider.$t = markType(NativeUISlider, 'NativeUISlider', NativeUIComponent.$);
|
|
64
78
|
return NativeUISlider;
|
|
@@ -15,25 +15,44 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15
15
|
__extends(IgcSliderBridge, _super);
|
|
16
16
|
function IgcSliderBridge() {
|
|
17
17
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
18
|
-
_this.d = null;
|
|
19
|
-
_this.c = null;
|
|
20
18
|
_this.e = null;
|
|
19
|
+
_this.c = null;
|
|
20
|
+
_this.g = null;
|
|
21
|
+
_this.f = null;
|
|
22
|
+
_this.d = null;
|
|
23
|
+
_this.h = null;
|
|
21
24
|
return _this;
|
|
22
25
|
}
|
|
23
26
|
IgcSliderBridge.prototype.addHandler = function (a, b, c, d) {
|
|
24
27
|
switch (c) {
|
|
28
|
+
case 0:
|
|
29
|
+
{
|
|
30
|
+
var e = a;
|
|
31
|
+
this.f = e.listen("igcInput", runOn(this, this.j));
|
|
32
|
+
this.d = d;
|
|
33
|
+
this.h = b;
|
|
34
|
+
}
|
|
35
|
+
break;
|
|
25
36
|
case 4:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
37
|
+
{
|
|
38
|
+
var f = a;
|
|
39
|
+
this.e = f.listen("igcChange", runOn(this, this.i));
|
|
40
|
+
this.c = d;
|
|
41
|
+
this.g = b;
|
|
42
|
+
}
|
|
30
43
|
break;
|
|
31
44
|
}
|
|
32
45
|
};
|
|
33
|
-
IgcSliderBridge.prototype.
|
|
46
|
+
IgcSliderBridge.prototype.j = function (a) {
|
|
47
|
+
if (this.d != null) {
|
|
48
|
+
var b = new NativeUISliderValueChangedEventArgs();
|
|
49
|
+
this.d(this.h, b);
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
IgcSliderBridge.prototype.i = function (a) {
|
|
34
53
|
if (this.c != null) {
|
|
35
54
|
var b = new NativeUISliderValueChangedEventArgs();
|
|
36
|
-
this.c(this.
|
|
55
|
+
this.c(this.g, b);
|
|
37
56
|
}
|
|
38
57
|
};
|
|
39
58
|
IgcSliderBridge.prototype.getValue = function (a, b) {
|
|
@@ -47,12 +66,19 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
47
66
|
};
|
|
48
67
|
IgcSliderBridge.prototype.removeHandler = function (a, b, c, d) {
|
|
49
68
|
switch (c) {
|
|
50
|
-
case
|
|
51
|
-
if (this.
|
|
52
|
-
this.
|
|
69
|
+
case 0:
|
|
70
|
+
if (this.f != null) {
|
|
71
|
+
this.f();
|
|
72
|
+
}
|
|
73
|
+
this.d = null;
|
|
74
|
+
this.h = null;
|
|
75
|
+
break;
|
|
76
|
+
case 4:
|
|
77
|
+
if (this.e != null) {
|
|
78
|
+
this.e();
|
|
53
79
|
}
|
|
54
80
|
this.c = null;
|
|
55
|
-
this.
|
|
81
|
+
this.g = null;
|
|
56
82
|
break;
|
|
57
83
|
}
|
|
58
84
|
};
|
|
@@ -113,6 +113,7 @@ var NativeUIInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
113
113
|
NativeUIInputsFactory.prototype.j = function (a, b) {
|
|
114
114
|
var c = a;
|
|
115
115
|
var d = c.createElement("igc-slider");
|
|
116
|
+
d.setProperty("hideTooltip", true);
|
|
116
117
|
var e = new IgcSliderBridge();
|
|
117
118
|
var f = new NativeUISlider();
|
|
118
119
|
f.u = d;
|
|
@@ -15,12 +15,13 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15
15
|
function NativeUISlider() {
|
|
16
16
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
17
17
|
_this.ap = null;
|
|
18
|
+
_this.aq = null;
|
|
18
19
|
return _this;
|
|
19
20
|
}
|
|
20
21
|
NativeUISlider.prototype.get_c = function () {
|
|
21
22
|
return 5;
|
|
22
23
|
};
|
|
23
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
24
|
+
Object.defineProperty(NativeUISlider.prototype, "aw", {
|
|
24
25
|
get: function () {
|
|
25
26
|
var a = this.o(2);
|
|
26
27
|
return a;
|
|
@@ -31,7 +32,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
31
32
|
enumerable: false,
|
|
32
33
|
configurable: true
|
|
33
34
|
});
|
|
34
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
35
|
+
Object.defineProperty(NativeUISlider.prototype, "au", {
|
|
35
36
|
get: function () {
|
|
36
37
|
var a = this.o(10);
|
|
37
38
|
return a;
|
|
@@ -42,7 +43,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
42
43
|
enumerable: false,
|
|
43
44
|
configurable: true
|
|
44
45
|
});
|
|
45
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
46
|
+
Object.defineProperty(NativeUISlider.prototype, "at", {
|
|
46
47
|
get: function () {
|
|
47
48
|
var a = this.o(11);
|
|
48
49
|
return a;
|
|
@@ -53,7 +54,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53
54
|
enumerable: false,
|
|
54
55
|
configurable: true
|
|
55
56
|
});
|
|
56
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
57
|
+
Object.defineProperty(NativeUISlider.prototype, "av", {
|
|
57
58
|
get: function () {
|
|
58
59
|
var a = this.o(12);
|
|
59
60
|
return a;
|
|
@@ -64,7 +65,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
64
65
|
enumerable: false,
|
|
65
66
|
configurable: true
|
|
66
67
|
});
|
|
67
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
68
|
+
Object.defineProperty(NativeUISlider.prototype, "ar", {
|
|
68
69
|
get: function () {
|
|
69
70
|
return this.ap;
|
|
70
71
|
},
|
|
@@ -81,6 +82,23 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81
82
|
enumerable: false,
|
|
82
83
|
configurable: true
|
|
83
84
|
});
|
|
85
|
+
Object.defineProperty(NativeUISlider.prototype, "as", {
|
|
86
|
+
get: function () {
|
|
87
|
+
return this.aq;
|
|
88
|
+
},
|
|
89
|
+
set: function (a) {
|
|
90
|
+
var b = this.aq;
|
|
91
|
+
this.aq = a;
|
|
92
|
+
if (this.aq != null) {
|
|
93
|
+
this.w(0, this.aq);
|
|
94
|
+
}
|
|
95
|
+
else {
|
|
96
|
+
this.ab(0, b);
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
enumerable: false,
|
|
100
|
+
configurable: true
|
|
101
|
+
});
|
|
84
102
|
NativeUISlider.$t = markType(NativeUISlider, 'NativeUISlider', NativeUIComponent.$);
|
|
85
103
|
return NativeUISlider;
|
|
86
104
|
}(NativeUIComponent));
|
|
@@ -27334,42 +27334,43 @@ let NativeUISlider = /*@__PURE__*/ (() => {
|
|
|
27334
27334
|
constructor() {
|
|
27335
27335
|
super(...arguments);
|
|
27336
27336
|
this.ap = null;
|
|
27337
|
+
this.aq = null;
|
|
27337
27338
|
}
|
|
27338
27339
|
get_c() {
|
|
27339
27340
|
return 5;
|
|
27340
27341
|
}
|
|
27341
|
-
get
|
|
27342
|
+
get aw() {
|
|
27342
27343
|
let a = this.o(2);
|
|
27343
27344
|
return a;
|
|
27344
27345
|
}
|
|
27345
|
-
set
|
|
27346
|
+
set aw(a) {
|
|
27346
27347
|
this.ad(2, a);
|
|
27347
27348
|
}
|
|
27348
|
-
get
|
|
27349
|
+
get au() {
|
|
27349
27350
|
let a = this.o(10);
|
|
27350
27351
|
return a;
|
|
27351
27352
|
}
|
|
27352
|
-
set
|
|
27353
|
+
set au(a) {
|
|
27353
27354
|
this.ad(10, a);
|
|
27354
27355
|
}
|
|
27355
|
-
get
|
|
27356
|
+
get at() {
|
|
27356
27357
|
let a = this.o(11);
|
|
27357
27358
|
return a;
|
|
27358
27359
|
}
|
|
27359
|
-
set
|
|
27360
|
+
set at(a) {
|
|
27360
27361
|
this.ad(11, a);
|
|
27361
27362
|
}
|
|
27362
|
-
get
|
|
27363
|
+
get av() {
|
|
27363
27364
|
let a = this.o(12);
|
|
27364
27365
|
return a;
|
|
27365
27366
|
}
|
|
27366
|
-
set
|
|
27367
|
+
set av(a) {
|
|
27367
27368
|
this.ad(12, a);
|
|
27368
27369
|
}
|
|
27369
|
-
get
|
|
27370
|
+
get ar() {
|
|
27370
27371
|
return this.ap;
|
|
27371
27372
|
}
|
|
27372
|
-
set
|
|
27373
|
+
set ar(a) {
|
|
27373
27374
|
let b = this.ap;
|
|
27374
27375
|
this.ap = a;
|
|
27375
27376
|
if (this.ap != null) {
|
|
@@ -27379,6 +27380,19 @@ let NativeUISlider = /*@__PURE__*/ (() => {
|
|
|
27379
27380
|
this.ab(4, b);
|
|
27380
27381
|
}
|
|
27381
27382
|
}
|
|
27383
|
+
get as() {
|
|
27384
|
+
return this.aq;
|
|
27385
|
+
}
|
|
27386
|
+
set as(a) {
|
|
27387
|
+
let b = this.aq;
|
|
27388
|
+
this.aq = a;
|
|
27389
|
+
if (this.aq != null) {
|
|
27390
|
+
this.w(0, this.aq);
|
|
27391
|
+
}
|
|
27392
|
+
else {
|
|
27393
|
+
this.ab(0, b);
|
|
27394
|
+
}
|
|
27395
|
+
}
|
|
27382
27396
|
}
|
|
27383
27397
|
NativeUISlider.$t = markType(NativeUISlider, 'NativeUISlider', NativeUIComponent.$);
|
|
27384
27398
|
return NativeUISlider;
|
|
@@ -33350,24 +33364,43 @@ let IgcSliderBridge = /*@__PURE__*/ (() => {
|
|
|
33350
33364
|
class IgcSliderBridge extends NativeUIElementBridge {
|
|
33351
33365
|
constructor() {
|
|
33352
33366
|
super(...arguments);
|
|
33353
|
-
this.d = null;
|
|
33354
|
-
this.c = null;
|
|
33355
33367
|
this.e = null;
|
|
33368
|
+
this.c = null;
|
|
33369
|
+
this.g = null;
|
|
33370
|
+
this.f = null;
|
|
33371
|
+
this.d = null;
|
|
33372
|
+
this.h = null;
|
|
33356
33373
|
}
|
|
33357
33374
|
addHandler(a, b, c, d) {
|
|
33358
33375
|
switch (c) {
|
|
33376
|
+
case 0:
|
|
33377
|
+
{
|
|
33378
|
+
let e = a;
|
|
33379
|
+
this.f = e.listen("igcInput", runOn(this, this.j));
|
|
33380
|
+
this.d = d;
|
|
33381
|
+
this.h = b;
|
|
33382
|
+
}
|
|
33383
|
+
break;
|
|
33359
33384
|
case 4:
|
|
33360
|
-
|
|
33361
|
-
|
|
33362
|
-
|
|
33363
|
-
|
|
33385
|
+
{
|
|
33386
|
+
let f = a;
|
|
33387
|
+
this.e = f.listen("igcChange", runOn(this, this.i));
|
|
33388
|
+
this.c = d;
|
|
33389
|
+
this.g = b;
|
|
33390
|
+
}
|
|
33364
33391
|
break;
|
|
33365
33392
|
}
|
|
33366
33393
|
}
|
|
33367
|
-
|
|
33394
|
+
j(a) {
|
|
33395
|
+
if (this.d != null) {
|
|
33396
|
+
let b = new NativeUISliderValueChangedEventArgs();
|
|
33397
|
+
this.d(this.h, b);
|
|
33398
|
+
}
|
|
33399
|
+
}
|
|
33400
|
+
i(a) {
|
|
33368
33401
|
if (this.c != null) {
|
|
33369
33402
|
let b = new NativeUISliderValueChangedEventArgs();
|
|
33370
|
-
this.c(this.
|
|
33403
|
+
this.c(this.g, b);
|
|
33371
33404
|
}
|
|
33372
33405
|
}
|
|
33373
33406
|
getValue(a, b) {
|
|
@@ -33381,12 +33414,19 @@ let IgcSliderBridge = /*@__PURE__*/ (() => {
|
|
|
33381
33414
|
}
|
|
33382
33415
|
removeHandler(a, b, c, d) {
|
|
33383
33416
|
switch (c) {
|
|
33384
|
-
case
|
|
33385
|
-
if (this.
|
|
33386
|
-
this.
|
|
33417
|
+
case 0:
|
|
33418
|
+
if (this.f != null) {
|
|
33419
|
+
this.f();
|
|
33420
|
+
}
|
|
33421
|
+
this.d = null;
|
|
33422
|
+
this.h = null;
|
|
33423
|
+
break;
|
|
33424
|
+
case 4:
|
|
33425
|
+
if (this.e != null) {
|
|
33426
|
+
this.e();
|
|
33387
33427
|
}
|
|
33388
33428
|
this.c = null;
|
|
33389
|
-
this.
|
|
33429
|
+
this.g = null;
|
|
33390
33430
|
break;
|
|
33391
33431
|
}
|
|
33392
33432
|
}
|
|
@@ -33929,6 +33969,7 @@ let NativeUIInputsFactory = /*@__PURE__*/ (() => {
|
|
|
33929
33969
|
j(a, b) {
|
|
33930
33970
|
let c = a;
|
|
33931
33971
|
let d = c.createElement("igc-slider");
|
|
33972
|
+
d.setProperty("hideTooltip", true);
|
|
33932
33973
|
let e = new IgcSliderBridge();
|
|
33933
33974
|
let f = new NativeUISlider();
|
|
33934
33975
|
f.u = d;
|
|
@@ -30880,12 +30880,13 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30880
30880
|
function NativeUISlider() {
|
|
30881
30881
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
30882
30882
|
_this.ap = null;
|
|
30883
|
+
_this.aq = null;
|
|
30883
30884
|
return _this;
|
|
30884
30885
|
}
|
|
30885
30886
|
NativeUISlider.prototype.get_c = function () {
|
|
30886
30887
|
return 5;
|
|
30887
30888
|
};
|
|
30888
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30889
|
+
Object.defineProperty(NativeUISlider.prototype, "aw", {
|
|
30889
30890
|
get: function () {
|
|
30890
30891
|
var a = this.o(2);
|
|
30891
30892
|
return a;
|
|
@@ -30896,7 +30897,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30896
30897
|
enumerable: false,
|
|
30897
30898
|
configurable: true
|
|
30898
30899
|
});
|
|
30899
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30900
|
+
Object.defineProperty(NativeUISlider.prototype, "au", {
|
|
30900
30901
|
get: function () {
|
|
30901
30902
|
var a = this.o(10);
|
|
30902
30903
|
return a;
|
|
@@ -30907,7 +30908,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30907
30908
|
enumerable: false,
|
|
30908
30909
|
configurable: true
|
|
30909
30910
|
});
|
|
30910
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30911
|
+
Object.defineProperty(NativeUISlider.prototype, "at", {
|
|
30911
30912
|
get: function () {
|
|
30912
30913
|
var a = this.o(11);
|
|
30913
30914
|
return a;
|
|
@@ -30918,7 +30919,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30918
30919
|
enumerable: false,
|
|
30919
30920
|
configurable: true
|
|
30920
30921
|
});
|
|
30921
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30922
|
+
Object.defineProperty(NativeUISlider.prototype, "av", {
|
|
30922
30923
|
get: function () {
|
|
30923
30924
|
var a = this.o(12);
|
|
30924
30925
|
return a;
|
|
@@ -30929,7 +30930,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30929
30930
|
enumerable: false,
|
|
30930
30931
|
configurable: true
|
|
30931
30932
|
});
|
|
30932
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30933
|
+
Object.defineProperty(NativeUISlider.prototype, "ar", {
|
|
30933
30934
|
get: function () {
|
|
30934
30935
|
return this.ap;
|
|
30935
30936
|
},
|
|
@@ -30946,6 +30947,23 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30946
30947
|
enumerable: false,
|
|
30947
30948
|
configurable: true
|
|
30948
30949
|
});
|
|
30950
|
+
Object.defineProperty(NativeUISlider.prototype, "as", {
|
|
30951
|
+
get: function () {
|
|
30952
|
+
return this.aq;
|
|
30953
|
+
},
|
|
30954
|
+
set: function (a) {
|
|
30955
|
+
var b = this.aq;
|
|
30956
|
+
this.aq = a;
|
|
30957
|
+
if (this.aq != null) {
|
|
30958
|
+
this.w(0, this.aq);
|
|
30959
|
+
}
|
|
30960
|
+
else {
|
|
30961
|
+
this.ab(0, b);
|
|
30962
|
+
}
|
|
30963
|
+
},
|
|
30964
|
+
enumerable: false,
|
|
30965
|
+
configurable: true
|
|
30966
|
+
});
|
|
30949
30967
|
NativeUISlider.$t = markType(NativeUISlider, 'NativeUISlider', NativeUIComponent.$);
|
|
30950
30968
|
return NativeUISlider;
|
|
30951
30969
|
}(NativeUIComponent));
|
|
@@ -37785,25 +37803,44 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
37785
37803
|
__extends(IgcSliderBridge, _super);
|
|
37786
37804
|
function IgcSliderBridge() {
|
|
37787
37805
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
37788
|
-
_this.d = null;
|
|
37789
|
-
_this.c = null;
|
|
37790
37806
|
_this.e = null;
|
|
37807
|
+
_this.c = null;
|
|
37808
|
+
_this.g = null;
|
|
37809
|
+
_this.f = null;
|
|
37810
|
+
_this.d = null;
|
|
37811
|
+
_this.h = null;
|
|
37791
37812
|
return _this;
|
|
37792
37813
|
}
|
|
37793
37814
|
IgcSliderBridge.prototype.addHandler = function (a, b, c, d) {
|
|
37794
37815
|
switch (c) {
|
|
37816
|
+
case 0:
|
|
37817
|
+
{
|
|
37818
|
+
var e = a;
|
|
37819
|
+
this.f = e.listen("igcInput", runOn(this, this.j));
|
|
37820
|
+
this.d = d;
|
|
37821
|
+
this.h = b;
|
|
37822
|
+
}
|
|
37823
|
+
break;
|
|
37795
37824
|
case 4:
|
|
37796
|
-
|
|
37797
|
-
|
|
37798
|
-
|
|
37799
|
-
|
|
37825
|
+
{
|
|
37826
|
+
var f = a;
|
|
37827
|
+
this.e = f.listen("igcChange", runOn(this, this.i));
|
|
37828
|
+
this.c = d;
|
|
37829
|
+
this.g = b;
|
|
37830
|
+
}
|
|
37800
37831
|
break;
|
|
37801
37832
|
}
|
|
37802
37833
|
};
|
|
37803
|
-
IgcSliderBridge.prototype.
|
|
37834
|
+
IgcSliderBridge.prototype.j = function (a) {
|
|
37835
|
+
if (this.d != null) {
|
|
37836
|
+
var b = new NativeUISliderValueChangedEventArgs();
|
|
37837
|
+
this.d(this.h, b);
|
|
37838
|
+
}
|
|
37839
|
+
};
|
|
37840
|
+
IgcSliderBridge.prototype.i = function (a) {
|
|
37804
37841
|
if (this.c != null) {
|
|
37805
37842
|
var b = new NativeUISliderValueChangedEventArgs();
|
|
37806
|
-
this.c(this.
|
|
37843
|
+
this.c(this.g, b);
|
|
37807
37844
|
}
|
|
37808
37845
|
};
|
|
37809
37846
|
IgcSliderBridge.prototype.getValue = function (a, b) {
|
|
@@ -37817,12 +37854,19 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
37817
37854
|
};
|
|
37818
37855
|
IgcSliderBridge.prototype.removeHandler = function (a, b, c, d) {
|
|
37819
37856
|
switch (c) {
|
|
37820
|
-
case
|
|
37821
|
-
if (this.
|
|
37822
|
-
this.
|
|
37857
|
+
case 0:
|
|
37858
|
+
if (this.f != null) {
|
|
37859
|
+
this.f();
|
|
37860
|
+
}
|
|
37861
|
+
this.d = null;
|
|
37862
|
+
this.h = null;
|
|
37863
|
+
break;
|
|
37864
|
+
case 4:
|
|
37865
|
+
if (this.e != null) {
|
|
37866
|
+
this.e();
|
|
37823
37867
|
}
|
|
37824
37868
|
this.c = null;
|
|
37825
|
-
this.
|
|
37869
|
+
this.g = null;
|
|
37826
37870
|
break;
|
|
37827
37871
|
}
|
|
37828
37872
|
};
|
|
@@ -38373,6 +38417,7 @@ var NativeUIInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
38373
38417
|
NativeUIInputsFactory.prototype.j = function (a, b) {
|
|
38374
38418
|
var c = a;
|
|
38375
38419
|
var d = c.createElement("igc-slider");
|
|
38420
|
+
d.setProperty("hideTooltip", true);
|
|
38376
38421
|
var e = new IgcSliderBridge();
|
|
38377
38422
|
var f = new NativeUISlider();
|
|
38378
38423
|
f.u = d;
|
package/lib/IgcSliderBridge.d.ts
CHANGED
|
@@ -8,11 +8,15 @@ import { NativeUIBuiltInProperties } from "./NativeUIBuiltInProperties";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare class IgcSliderBridge extends NativeUIElementBridge {
|
|
10
10
|
static $t: Type;
|
|
11
|
-
private d;
|
|
12
|
-
private c;
|
|
13
11
|
private e;
|
|
14
|
-
|
|
12
|
+
private c;
|
|
13
|
+
private g;
|
|
15
14
|
private f;
|
|
15
|
+
private d;
|
|
16
|
+
private h;
|
|
17
|
+
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
18
|
+
private j;
|
|
19
|
+
private i;
|
|
16
20
|
getValue(a: any, b: NativeUIBuiltInProperties): any;
|
|
17
21
|
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
18
22
|
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
|
package/lib/NativeUISlider.d.ts
CHANGED
|
@@ -8,15 +8,18 @@ import { NativeUISliderValueChangedEventArgs } from "./NativeUISliderValueChange
|
|
|
8
8
|
export declare class NativeUISlider extends NativeUIComponent {
|
|
9
9
|
static $t: Type;
|
|
10
10
|
protected get_c(): NativeUIComponentBuiltInType;
|
|
11
|
+
get aw(): number;
|
|
12
|
+
set aw(a: number);
|
|
11
13
|
get au(): number;
|
|
12
14
|
set au(a: number);
|
|
13
|
-
get as(): number;
|
|
14
|
-
set as(a: number);
|
|
15
|
-
get ar(): number;
|
|
16
|
-
set ar(a: number);
|
|
17
15
|
get at(): number;
|
|
18
16
|
set at(a: number);
|
|
17
|
+
get av(): number;
|
|
18
|
+
set av(a: number);
|
|
19
19
|
private ap;
|
|
20
|
-
get
|
|
21
|
-
set
|
|
20
|
+
get ar(): (sender: any, args: NativeUISliderValueChangedEventArgs) => void;
|
|
21
|
+
set ar(a: (sender: any, args: NativeUISliderValueChangedEventArgs) => void);
|
|
22
|
+
private aq;
|
|
23
|
+
get as(): (sender: any, args: NativeUISliderValueChangedEventArgs) => void;
|
|
24
|
+
set as(a: (sender: any, args: NativeUISliderValueChangedEventArgs) => void);
|
|
22
25
|
}
|