igniteui-webcomponents-inputs 6.2.2-alpha.3 → 6.3.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 +1336 -1142
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +1 -1
- package/esm2015/lib/ButtonGroupVisualModelExport.js +9 -1
- package/esm2015/lib/ButtonView_combined.js +315 -308
- package/esm2015/lib/CheckboxListVisualModelExport.js +43 -0
- package/esm2015/lib/CheckboxView_combined.js +179 -164
- package/esm2015/lib/CheckboxVisualModelExport.js +14 -6
- package/esm2015/lib/ColorEditorVisualModelExport.js +40 -0
- package/esm2015/lib/IconView_combined.js +27 -22
- package/esm2015/lib/InputGroupView_combined.js +274 -262
- package/esm2015/lib/InputGroupVisualModelExport.js +2 -2
- package/esm2015/lib/InputVisualModelExport.js +34 -32
- package/esm2015/lib/MultiSliderView_combined.js +2 -2
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +324 -299
- package/esm2015/lib/XButtonBridge.js +1 -1
- package/esm2015/lib/XButtonGroupBridge.js +7 -1
- package/esm2015/lib/XCheckboxBridge.js +2 -1
- package/esm2015/lib/XIconBridge.js +2 -1
- package/esm2015/lib/XInputBridge.js +11 -1
- package/esm2015/lib/igc-color-editor-component.js +63 -47
- package/esm2015/public_api.js +2 -0
- package/esm5/lib/ButtonGroupView_combined.js +1 -1
- package/esm5/lib/ButtonGroupVisualModelExport.js +9 -1
- package/esm5/lib/ButtonView_combined.js +315 -308
- package/esm5/lib/CheckboxListVisualModelExport.js +45 -0
- package/esm5/lib/CheckboxView_combined.js +177 -162
- package/esm5/lib/CheckboxVisualModelExport.js +14 -6
- package/esm5/lib/ColorEditorVisualModelExport.js +42 -0
- package/esm5/lib/IconView_combined.js +32 -27
- package/esm5/lib/InputGroupView_combined.js +275 -263
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +34 -32
- package/esm5/lib/MultiSliderView_combined.js +2 -2
- package/esm5/lib/NativeUIXInputsFactory_combined.js +315 -290
- package/esm5/lib/XButtonBridge.js +1 -1
- package/esm5/lib/XButtonGroupBridge.js +7 -1
- package/esm5/lib/XCheckboxBridge.js +2 -1
- package/esm5/lib/XIconBridge.js +2 -1
- package/esm5/lib/XInputBridge.js +11 -1
- package/esm5/lib/igc-color-editor-component.js +63 -47
- package/esm5/public_api.js +2 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +1342 -1150
- package/fesm5/igniteui-webcomponents-inputs.js +1336 -1144
- package/lib/ButtonGroupVisualModelExport.d.ts +5 -1
- package/lib/ButtonView_combined.d.ts +42 -41
- package/lib/CheckboxListVisualModelExport.d.ts +18 -0
- package/lib/CheckboxView_combined.d.ts +30 -29
- package/lib/CheckboxVisualModelExport.d.ts +7 -3
- package/lib/ColorEditorVisualModelExport.d.ts +17 -0
- package/lib/IconView_combined.d.ts +2 -0
- package/lib/InputGroupView_combined.d.ts +57 -56
- package/lib/InputVisualModelExport.d.ts +14 -12
- package/lib/NativeUIXInputsFactory_combined.d.ts +90 -85
- package/lib/igc-color-editor-component.d.ts +10 -0
- package/package.json +2 -2
- package/public_api.d.ts +2 -0
|
@@ -1447,46 +1447,46 @@
|
|
|
1447
1447
|
tslib.__extends(ButtonView, _super);
|
|
1448
1448
|
function ButtonView() {
|
|
1449
1449
|
var _this = _super.call(this) || this;
|
|
1450
|
-
_this.b = null;
|
|
1451
|
-
_this.k = null;
|
|
1452
|
-
_this.d = null;
|
|
1453
|
-
_this.h = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Delegate_$type, 0);
|
|
1454
|
-
_this.e = true;
|
|
1455
|
-
_this.n = null;
|
|
1456
|
-
_this.j = NaN;
|
|
1457
|
-
_this.i = NaN;
|
|
1458
|
-
_this.l = null;
|
|
1459
1450
|
_this.c = null;
|
|
1451
|
+
_this.l = null;
|
|
1452
|
+
_this.e = null;
|
|
1453
|
+
_this.i = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Delegate_$type, 0);
|
|
1454
|
+
_this.f = true;
|
|
1455
|
+
_this.o = null;
|
|
1456
|
+
_this.k = NaN;
|
|
1457
|
+
_this.j = NaN;
|
|
1460
1458
|
_this.m = null;
|
|
1459
|
+
_this.d = null;
|
|
1460
|
+
_this.n = null;
|
|
1461
|
+
_this.q = null;
|
|
1461
1462
|
_this.p = null;
|
|
1462
|
-
_this.o = null;
|
|
1463
1463
|
return _this;
|
|
1464
1464
|
}
|
|
1465
|
-
ButtonView.prototype.
|
|
1465
|
+
ButtonView.prototype.ar = function () {
|
|
1466
1466
|
};
|
|
1467
|
-
ButtonView.prototype.
|
|
1467
|
+
ButtonView.prototype.h = function () {
|
|
1468
1468
|
return true;
|
|
1469
1469
|
};
|
|
1470
|
-
Object.defineProperty(ButtonView.prototype, "
|
|
1470
|
+
Object.defineProperty(ButtonView.prototype, "r", {
|
|
1471
1471
|
get: function () {
|
|
1472
|
-
return this.
|
|
1472
|
+
return this.o;
|
|
1473
1473
|
},
|
|
1474
1474
|
enumerable: false,
|
|
1475
1475
|
configurable: true
|
|
1476
1476
|
});
|
|
1477
|
-
Object.defineProperty(ButtonView.prototype, "
|
|
1477
|
+
Object.defineProperty(ButtonView.prototype, "t", {
|
|
1478
1478
|
get: function () {
|
|
1479
|
-
return this.
|
|
1479
|
+
return this.n;
|
|
1480
1480
|
},
|
|
1481
1481
|
enumerable: false,
|
|
1482
1482
|
configurable: true
|
|
1483
1483
|
});
|
|
1484
|
-
ButtonView.prototype.
|
|
1484
|
+
ButtonView.prototype.al = function (a) {
|
|
1485
1485
|
var e_1, _a;
|
|
1486
1486
|
var _this = this;
|
|
1487
1487
|
if (a == null) {
|
|
1488
1488
|
try {
|
|
1489
|
-
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.
|
|
1489
|
+
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.i)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
1490
1490
|
var b = _c.value;
|
|
1491
1491
|
b();
|
|
1492
1492
|
}
|
|
@@ -1504,46 +1504,46 @@
|
|
|
1504
1504
|
throw e_1.error;
|
|
1505
1505
|
}
|
|
1506
1506
|
}
|
|
1507
|
-
this.
|
|
1507
|
+
this.i.clear();
|
|
1508
1508
|
return;
|
|
1509
1509
|
}
|
|
1510
|
-
this.
|
|
1511
|
-
this.
|
|
1512
|
-
this.
|
|
1513
|
-
this.
|
|
1514
|
-
this.
|
|
1515
|
-
var c = this.
|
|
1516
|
-
this.
|
|
1517
|
-
this.
|
|
1518
|
-
this.
|
|
1519
|
-
this.
|
|
1520
|
-
this.
|
|
1521
|
-
this.
|
|
1522
|
-
this.
|
|
1523
|
-
this.
|
|
1524
|
-
this.
|
|
1525
|
-
this.
|
|
1526
|
-
this.
|
|
1527
|
-
this.
|
|
1528
|
-
this.
|
|
1529
|
-
this.
|
|
1530
|
-
this.
|
|
1531
|
-
igniteuiWebcomponentsCore.NativeUI.o(this.
|
|
1532
|
-
this.
|
|
1533
|
-
this.
|
|
1534
|
-
this.
|
|
1535
|
-
this.
|
|
1536
|
-
this.
|
|
1537
|
-
this.
|
|
1538
|
-
this.
|
|
1539
|
-
this.
|
|
1540
|
-
this.
|
|
1541
|
-
this.
|
|
1542
|
-
this.
|
|
1543
|
-
this.
|
|
1544
|
-
this.
|
|
1545
|
-
var d = this.
|
|
1546
|
-
var e = this.
|
|
1510
|
+
this.l = a;
|
|
1511
|
+
this.l.rootWrapper.setStyleProperty("display", "flex");
|
|
1512
|
+
this.l.rootWrapper.setStyleProperty("flex-direction", "row");
|
|
1513
|
+
this.l.rootWrapper.setStyleProperty("flex-wrap", "no-wrap");
|
|
1514
|
+
this.l.rootWrapper.setStyleProperty("align-items", "center");
|
|
1515
|
+
var c = this.l.createElement("button");
|
|
1516
|
+
this.o = c;
|
|
1517
|
+
this.o.setStyleProperty("position", "relative");
|
|
1518
|
+
this.o.setStyleProperty("display", "inline-flex");
|
|
1519
|
+
this.o.setStyleProperty("align-items", "center");
|
|
1520
|
+
this.o.setStyleProperty("justify-content", "center");
|
|
1521
|
+
this.a1();
|
|
1522
|
+
this.o.setStyleProperty("border", "none");
|
|
1523
|
+
this.o.setStyleProperty("cursor", "pointer");
|
|
1524
|
+
this.o.setStyleProperty("user-select", "none");
|
|
1525
|
+
this.o.setStyleProperty("outline-style", "none");
|
|
1526
|
+
this.o.setStyleProperty("-webkit-tap-highlight-color", "transparent");
|
|
1527
|
+
this.o.setStyleProperty("overflow", "hidden");
|
|
1528
|
+
this.o.setStyleProperty("white-space", "no-wrap");
|
|
1529
|
+
this.o.setStyleProperty("color", "#000");
|
|
1530
|
+
this.o.setStyleProperty("background", this.c.no._fill);
|
|
1531
|
+
igniteuiWebcomponentsCore.NativeUI.o(this.o, this.c.kz);
|
|
1532
|
+
this.o.setAttribute("id", this.c.hy);
|
|
1533
|
+
this.ay();
|
|
1534
|
+
this.i.add(c.listen("change", igniteuiWebcomponentsCore.runOn(this, this.aa)));
|
|
1535
|
+
this.i.add(c.listen("click", igniteuiWebcomponentsCore.runOn(this, this.ab)));
|
|
1536
|
+
this.i.add(c.listen("focus", igniteuiWebcomponentsCore.runOn(this, this.ac)));
|
|
1537
|
+
this.i.add(c.listen("blur", igniteuiWebcomponentsCore.runOn(this, this.z)));
|
|
1538
|
+
this.i.add(this.l.rootWrapper.listen("mouseenter", igniteuiWebcomponentsCore.runOn(this, this.w)));
|
|
1539
|
+
this.i.add(this.l.rootWrapper.listen("mouseleave", igniteuiWebcomponentsCore.runOn(this, this.x)));
|
|
1540
|
+
this.i.add(this.l.rootWrapper.listen("mousedown", igniteuiWebcomponentsCore.runOn(this, this.v)));
|
|
1541
|
+
this.i.add(this.l.rootWrapper.listen("mouseup", igniteuiWebcomponentsCore.runOn(this, this.y)));
|
|
1542
|
+
this.i.add(this.l.rootWrapper.listen("focusin", igniteuiWebcomponentsCore.runOn(this, this.ad)));
|
|
1543
|
+
this.i.add(this.l.rootWrapper.listen("focusout", igniteuiWebcomponentsCore.runOn(this, this.ae)));
|
|
1544
|
+
this.l.append(c);
|
|
1545
|
+
var d = this.l.createElement("div");
|
|
1546
|
+
var e = this.l.getSubRenderer(d);
|
|
1547
1547
|
d.setStyleProperty("position", "absolute");
|
|
1548
1548
|
d.setStyleProperty("width", "100%");
|
|
1549
1549
|
d.setStyleProperty("height", "100%");
|
|
@@ -1553,40 +1553,40 @@
|
|
|
1553
1553
|
var f = new XRipple();
|
|
1554
1554
|
f.provideContainer(e);
|
|
1555
1555
|
f.q = c;
|
|
1556
|
-
var g = this.
|
|
1556
|
+
var g = this.l.getExternal(f, this.l.rootWrapper, this.l.getExternal(this.c, null, null));
|
|
1557
1557
|
f.h = false;
|
|
1558
1558
|
f.k = true;
|
|
1559
|
-
this.
|
|
1560
|
-
this.
|
|
1561
|
-
var h = this.
|
|
1559
|
+
this.d = f;
|
|
1560
|
+
this.o.append(d);
|
|
1561
|
+
var h = this.l.createElement("div");
|
|
1562
1562
|
h.addClass("ig-button-content");
|
|
1563
1563
|
h.setStyleProperty("font-family", "Verdana");
|
|
1564
1564
|
h.setStyleProperty("font-weight", "400");
|
|
1565
1565
|
h.setStyleProperty("font-size", ".875rem");
|
|
1566
|
-
this.
|
|
1567
|
-
this.
|
|
1568
|
-
this.
|
|
1569
|
-
this.
|
|
1570
|
-
this.
|
|
1566
|
+
this.n = h;
|
|
1567
|
+
this.i.add(h.listen("click", igniteuiWebcomponentsCore.runOn(this, this.u)));
|
|
1568
|
+
this.o.append(h);
|
|
1569
|
+
this.p = h;
|
|
1570
|
+
this.l.getPortal(h, "ChildContent", function (i) {
|
|
1571
1571
|
var comp_ = i.componentRef;
|
|
1572
|
-
_this.
|
|
1572
|
+
_this.q = comp_;
|
|
1573
1573
|
{
|
|
1574
|
-
_this.
|
|
1575
|
-
_this.
|
|
1576
|
-
var direction_ = _this.
|
|
1577
|
-
var display_ = _this.
|
|
1578
|
-
var alignItems_ = _this.
|
|
1574
|
+
_this.p.setStyleProperty("flex-direction", _this.c.g4);
|
|
1575
|
+
_this.p.setStyleProperty("align-items", _this.c.fb);
|
|
1576
|
+
var direction_ = _this.c.g4;
|
|
1577
|
+
var display_ = _this.c.fj != null ? _this.c.fj : _this.c.f0;
|
|
1578
|
+
var alignItems_ = _this.c.fb;
|
|
1579
1579
|
comp_.display = display_;
|
|
1580
1580
|
comp_.flexDirection = direction_;
|
|
1581
1581
|
comp_.alignItems = alignItems_;
|
|
1582
1582
|
}
|
|
1583
1583
|
}, true);
|
|
1584
|
-
this.
|
|
1584
|
+
this.c.kl();
|
|
1585
1585
|
};
|
|
1586
|
-
ButtonView.prototype.
|
|
1587
|
-
this.
|
|
1586
|
+
ButtonView.prototype.an = function () {
|
|
1587
|
+
this.d.i = this.c.as;
|
|
1588
1588
|
};
|
|
1589
|
-
ButtonView.prototype.
|
|
1589
|
+
ButtonView.prototype.a1 = function () {
|
|
1590
1590
|
var a = "2.25rem";
|
|
1591
1591
|
var b = "2.25rem";
|
|
1592
1592
|
var c = "2.25rem";
|
|
@@ -1600,7 +1600,7 @@
|
|
|
1600
1600
|
var k = "0px";
|
|
1601
1601
|
var l = ".9375rem";
|
|
1602
1602
|
var m = ".5625rem 1rem";
|
|
1603
|
-
switch (this.
|
|
1603
|
+
switch (this.c.q) {
|
|
1604
1604
|
case 2:
|
|
1605
1605
|
m = ".375rem .75rem";
|
|
1606
1606
|
j = "1.875rem";
|
|
@@ -1633,130 +1633,130 @@
|
|
|
1633
1633
|
c = "1rem";
|
|
1634
1634
|
break;
|
|
1635
1635
|
}
|
|
1636
|
-
if (!igniteuiWebcomponentsCore.isNaN_(this.
|
|
1637
|
-
m = this.
|
|
1636
|
+
if (!igniteuiWebcomponentsCore.isNaN_(this.c.bm) && !igniteuiWebcomponentsCore.isNaN_(this.c.bo) && !igniteuiWebcomponentsCore.isNaN_(this.c.bn) && !igniteuiWebcomponentsCore.isNaN_(this.c.bl)) {
|
|
1637
|
+
m = this.c.bo + "px " + this.c.bn + "px " + this.c.bl + "px " + this.c.bm + "px";
|
|
1638
1638
|
}
|
|
1639
|
-
if (this.
|
|
1640
|
-
this.
|
|
1641
|
-
this.
|
|
1642
|
-
this.
|
|
1643
|
-
this.
|
|
1644
|
-
this.
|
|
1639
|
+
if (this.c.e == 4) {
|
|
1640
|
+
this.o.setStyleProperty("min-width", a);
|
|
1641
|
+
this.o.setStyleProperty("min-height", b);
|
|
1642
|
+
this.o.setStyleProperty("padding", k);
|
|
1643
|
+
this.o.setStyleProperty("width", c);
|
|
1644
|
+
this.o.setStyleProperty("height", d);
|
|
1645
1645
|
}
|
|
1646
|
-
else if (this.
|
|
1647
|
-
this.
|
|
1648
|
-
this.
|
|
1649
|
-
this.
|
|
1650
|
-
this.
|
|
1651
|
-
this.
|
|
1646
|
+
else if (this.c.e == 3) {
|
|
1647
|
+
this.o.setStyleProperty("min-width", e);
|
|
1648
|
+
this.o.setStyleProperty("min-height", f);
|
|
1649
|
+
this.o.setStyleProperty("padding", l);
|
|
1650
|
+
this.o.setStyleProperty("width", g);
|
|
1651
|
+
this.o.setStyleProperty("height", h);
|
|
1652
1652
|
}
|
|
1653
1653
|
else {
|
|
1654
|
-
this.
|
|
1655
|
-
this.
|
|
1656
|
-
this.
|
|
1657
|
-
this.
|
|
1658
|
-
this.
|
|
1654
|
+
this.o.setStyleProperty("width", "auto");
|
|
1655
|
+
this.o.setStyleProperty("height", "auto");
|
|
1656
|
+
this.o.setStyleProperty("min-width", i);
|
|
1657
|
+
this.o.setStyleProperty("min-height", j);
|
|
1658
|
+
this.o.setStyleProperty("padding", m);
|
|
1659
1659
|
}
|
|
1660
|
-
this.
|
|
1661
|
-
if (!igniteuiWebcomponentsCore.isNaN_(this.
|
|
1662
|
-
this.
|
|
1660
|
+
this.l.rootWrapper.setStyleProperty("height", "auto");
|
|
1661
|
+
if (!igniteuiWebcomponentsCore.isNaN_(this.c.bj) && this.c.bj > 0) {
|
|
1662
|
+
this.o.setStyleProperty("border-style", "solid");
|
|
1663
1663
|
}
|
|
1664
1664
|
else {
|
|
1665
|
-
this.
|
|
1665
|
+
this.o.setStyleProperty("border-style", "none");
|
|
1666
1666
|
}
|
|
1667
|
-
if (!igniteuiWebcomponentsCore.isNaN_(this.
|
|
1668
|
-
this.
|
|
1667
|
+
if (!igniteuiWebcomponentsCore.isNaN_(this.k)) {
|
|
1668
|
+
this.o.setStyleProperty("min-width", this.k.toString() + "px");
|
|
1669
1669
|
}
|
|
1670
|
-
if (!igniteuiWebcomponentsCore.isNaN_(this.
|
|
1671
|
-
this.
|
|
1670
|
+
if (!igniteuiWebcomponentsCore.isNaN_(this.j)) {
|
|
1671
|
+
this.o.setStyleProperty("min-height", this.j.toString() + "px");
|
|
1672
1672
|
}
|
|
1673
|
-
if (this.
|
|
1674
|
-
this.
|
|
1675
|
-
this.
|
|
1676
|
-
this.
|
|
1673
|
+
if (this.c.ay) {
|
|
1674
|
+
this.o.setStyleProperty("width", "100%");
|
|
1675
|
+
this.o.setStyleProperty("height", "100%");
|
|
1676
|
+
this.l.rootWrapper.setStyleProperty("height", "100%");
|
|
1677
1677
|
}
|
|
1678
1678
|
};
|
|
1679
|
-
ButtonView.prototype.
|
|
1680
|
-
switch (this.
|
|
1679
|
+
ButtonView.prototype.av = function () {
|
|
1680
|
+
switch (this.c.le) {
|
|
1681
1681
|
case 1:
|
|
1682
|
-
this.
|
|
1683
|
-
this.
|
|
1682
|
+
this.o.setStyleProperty("justify-content", "center");
|
|
1683
|
+
this.p.setStyleProperty("flex-grow", "unset");
|
|
1684
1684
|
break;
|
|
1685
1685
|
case 3:
|
|
1686
|
-
this.
|
|
1687
|
-
this.
|
|
1686
|
+
this.o.setStyleProperty("justify-content", "stretch");
|
|
1687
|
+
this.p.setStyleProperty("flex-grow", "1");
|
|
1688
1688
|
break;
|
|
1689
1689
|
case 0:
|
|
1690
|
-
this.
|
|
1691
|
-
this.
|
|
1690
|
+
this.o.setStyleProperty("justify-content", "left");
|
|
1691
|
+
this.p.setStyleProperty("flex-grow", "unset");
|
|
1692
1692
|
break;
|
|
1693
1693
|
case 2:
|
|
1694
|
-
this.
|
|
1695
|
-
this.
|
|
1694
|
+
this.o.setStyleProperty("justify-content", "right");
|
|
1695
|
+
this.p.setStyleProperty("flex-grow", "unset");
|
|
1696
1696
|
break;
|
|
1697
1697
|
}
|
|
1698
1698
|
};
|
|
1699
|
+
ButtonView.prototype.ax = function (a) {
|
|
1700
|
+
this.k = a;
|
|
1701
|
+
};
|
|
1699
1702
|
ButtonView.prototype.aw = function (a) {
|
|
1700
1703
|
this.j = a;
|
|
1701
1704
|
};
|
|
1702
|
-
ButtonView.prototype.
|
|
1703
|
-
this.
|
|
1704
|
-
|
|
1705
|
-
ButtonView.prototype.as = function () {
|
|
1706
|
-
this.n.setAttribute("disabled", this.b.disabled ? "true" : "false");
|
|
1707
|
-
this.n.setProperty("disabled", this.b.disabled);
|
|
1705
|
+
ButtonView.prototype.at = function () {
|
|
1706
|
+
this.o.setAttribute("disabled", this.c.disabled ? "true" : "false");
|
|
1707
|
+
this.o.setProperty("disabled", this.c.disabled);
|
|
1708
1708
|
};
|
|
1709
|
-
ButtonView.prototype.
|
|
1710
|
-
if (this.
|
|
1711
|
-
this.
|
|
1712
|
-
var comp_ = this.
|
|
1713
|
-
if (this.
|
|
1714
|
-
this.
|
|
1715
|
-
var display_ = this.
|
|
1709
|
+
ButtonView.prototype.ao = function () {
|
|
1710
|
+
if (this.l != null) {
|
|
1711
|
+
this.l.rootWrapper.setStyleProperty("display", this.c.f0);
|
|
1712
|
+
var comp_ = this.q;
|
|
1713
|
+
if (this.q != null) {
|
|
1714
|
+
this.p.setStyleProperty("display", this.c.f0);
|
|
1715
|
+
var display_ = this.c.fj != null ? this.c.f0 : this.c.fj;
|
|
1716
1716
|
comp_.display = display_;
|
|
1717
1717
|
}
|
|
1718
|
-
var ext_ = this.
|
|
1718
|
+
var ext_ = this.l.getExternal(this.c, null, null);
|
|
1719
1719
|
if (ext_ && ext_._onDisplayChanged) {
|
|
1720
1720
|
ext_._onDisplayChanged();
|
|
1721
1721
|
}
|
|
1722
1722
|
;
|
|
1723
1723
|
}
|
|
1724
1724
|
};
|
|
1725
|
-
ButtonView.prototype.
|
|
1726
|
-
if (this.
|
|
1727
|
-
var comp_ = this.
|
|
1728
|
-
if (this.
|
|
1729
|
-
var display_ = this.
|
|
1725
|
+
ButtonView.prototype.ak = function () {
|
|
1726
|
+
if (this.l != null) {
|
|
1727
|
+
var comp_ = this.q;
|
|
1728
|
+
if (this.q != null) {
|
|
1729
|
+
var display_ = this.c.fj != null ? this.c.fj : this.c.f0;
|
|
1730
1730
|
comp_.display = display_;
|
|
1731
1731
|
}
|
|
1732
1732
|
}
|
|
1733
1733
|
};
|
|
1734
|
-
ButtonView.prototype.
|
|
1735
|
-
if (this.
|
|
1736
|
-
this.
|
|
1737
|
-
this.
|
|
1738
|
-
var comp_ = this.
|
|
1739
|
-
if (this.
|
|
1740
|
-
this.
|
|
1741
|
-
var alignItems_ = this.
|
|
1734
|
+
ButtonView.prototype.ai = function () {
|
|
1735
|
+
if (this.l != null) {
|
|
1736
|
+
this.l.rootWrapper.setStyleProperty("align-items", this.c.fb);
|
|
1737
|
+
this.o.setStyleProperty("align-items", this.c.fb);
|
|
1738
|
+
var comp_ = this.q;
|
|
1739
|
+
if (this.q != null) {
|
|
1740
|
+
this.p.setStyleProperty("align-items", this.c.fb);
|
|
1741
|
+
var alignItems_ = this.c.fb;
|
|
1742
1742
|
comp_.alignItems = alignItems_;
|
|
1743
1743
|
}
|
|
1744
|
-
var ext_ = this.
|
|
1744
|
+
var ext_ = this.l.getExternal(this.c, null, null);
|
|
1745
1745
|
if (ext_ && ext_._onAlignItemsChanged) {
|
|
1746
1746
|
ext_._onAlignItemsChanged();
|
|
1747
1747
|
}
|
|
1748
1748
|
;
|
|
1749
1749
|
}
|
|
1750
1750
|
};
|
|
1751
|
-
ButtonView.prototype.
|
|
1752
|
-
if (this.
|
|
1753
|
-
this.
|
|
1754
|
-
this.
|
|
1755
|
-
var ext_ = this.
|
|
1756
|
-
var comp_ = this.
|
|
1757
|
-
if (this.
|
|
1758
|
-
this.
|
|
1759
|
-
var direction_ = this.
|
|
1751
|
+
ButtonView.prototype.ap = function () {
|
|
1752
|
+
if (this.l != null) {
|
|
1753
|
+
this.l.rootWrapper.setStyleProperty("flex-direction", this.c.g4);
|
|
1754
|
+
this.o.setStyleProperty("flex-direction", this.c.g4);
|
|
1755
|
+
var ext_ = this.l.getExternal(this.c, null, null);
|
|
1756
|
+
var comp_ = this.q;
|
|
1757
|
+
if (this.q != null) {
|
|
1758
|
+
this.p.setStyleProperty("flex-direction", this.c.g4);
|
|
1759
|
+
var direction_ = this.c.g4;
|
|
1760
1760
|
comp_.flexDirection = direction_;
|
|
1761
1761
|
}
|
|
1762
1762
|
if (ext_ && ext_._onFlexDirectionChanged) {
|
|
@@ -1765,114 +1765,114 @@
|
|
|
1765
1765
|
;
|
|
1766
1766
|
}
|
|
1767
1767
|
};
|
|
1768
|
-
ButtonView.prototype.
|
|
1769
|
-
if (this.
|
|
1770
|
-
this.
|
|
1771
|
-
this.
|
|
1772
|
-
var ext_ = this.
|
|
1768
|
+
ButtonView.prototype.aq = function () {
|
|
1769
|
+
if (this.l != null) {
|
|
1770
|
+
this.l.rootWrapper.setStyleProperty("flex-grow", this.c.g6);
|
|
1771
|
+
this.o.setStyleProperty("flex-grow", this.c.g6);
|
|
1772
|
+
var ext_ = this.l.getExternal(this.c, null, null);
|
|
1773
1773
|
if (ext_ && ext_._onFlexGrowChanged) {
|
|
1774
1774
|
ext_._onFlexGrowChanged();
|
|
1775
1775
|
}
|
|
1776
1776
|
;
|
|
1777
1777
|
}
|
|
1778
1778
|
};
|
|
1779
|
-
ButtonView.prototype.
|
|
1779
|
+
ButtonView.prototype.u = function (a) {
|
|
1780
1780
|
};
|
|
1781
|
-
ButtonView.prototype.
|
|
1782
|
-
if (this.
|
|
1783
|
-
var a = this.
|
|
1784
|
-
this.
|
|
1785
|
-
this.
|
|
1786
|
-
if (this.
|
|
1787
|
-
this.
|
|
1781
|
+
ButtonView.prototype.ay = function () {
|
|
1782
|
+
if (this.h()) {
|
|
1783
|
+
var a = this.c.hy;
|
|
1784
|
+
this.o.setAttribute("name", this.c.h6);
|
|
1785
|
+
this.o.setProperty("value", this.c.ee);
|
|
1786
|
+
if (this.c.az) {
|
|
1787
|
+
this.o.setAttribute("tabindex", this.c.d7.toString());
|
|
1788
1788
|
}
|
|
1789
|
-
this.
|
|
1789
|
+
this.o.setProperty("disabled", this.c.disabled);
|
|
1790
1790
|
{
|
|
1791
1791
|
}
|
|
1792
|
-
this.
|
|
1793
|
-
this.
|
|
1792
|
+
this.o.setAttribute("aria-label", this.c.fd);
|
|
1793
|
+
this.o.setStyleProperty("cursor", !this.c.av ? "pointer" : "unset");
|
|
1794
1794
|
}
|
|
1795
1795
|
};
|
|
1796
|
-
ButtonView.prototype.
|
|
1797
|
-
if (this.
|
|
1798
|
-
var a = this.
|
|
1799
|
-
this.
|
|
1796
|
+
ButtonView.prototype.as = function () {
|
|
1797
|
+
if (this.h()) {
|
|
1798
|
+
var a = this.c.hy;
|
|
1799
|
+
this.o.setAttribute("id", a);
|
|
1800
1800
|
}
|
|
1801
1801
|
};
|
|
1802
|
-
ButtonView.prototype.
|
|
1803
|
-
this.
|
|
1804
|
-
if (this.
|
|
1802
|
+
ButtonView.prototype.w = function (a) {
|
|
1803
|
+
this.c.kh();
|
|
1804
|
+
if (this.c.a5) {
|
|
1805
1805
|
a.stopPropagation();
|
|
1806
1806
|
}
|
|
1807
1807
|
};
|
|
1808
|
-
ButtonView.prototype.
|
|
1809
|
-
this.
|
|
1810
|
-
if (this.
|
|
1808
|
+
ButtonView.prototype.x = function (a) {
|
|
1809
|
+
this.c.ki();
|
|
1810
|
+
if (this.c.a5) {
|
|
1811
1811
|
a.stopPropagation();
|
|
1812
1812
|
}
|
|
1813
1813
|
};
|
|
1814
|
-
ButtonView.prototype.
|
|
1815
|
-
this.
|
|
1816
|
-
if (this.
|
|
1814
|
+
ButtonView.prototype.v = function (a) {
|
|
1815
|
+
this.c.kg();
|
|
1816
|
+
if (this.c.a5) {
|
|
1817
1817
|
a.stopPropagation();
|
|
1818
1818
|
}
|
|
1819
1819
|
};
|
|
1820
|
-
ButtonView.prototype.
|
|
1821
|
-
this.
|
|
1822
|
-
if (this.
|
|
1820
|
+
ButtonView.prototype.y = function (a) {
|
|
1821
|
+
this.c.kj();
|
|
1822
|
+
if (this.c.a5) {
|
|
1823
1823
|
a.stopPropagation();
|
|
1824
1824
|
}
|
|
1825
1825
|
};
|
|
1826
|
-
ButtonView.prototype.
|
|
1827
|
-
this.
|
|
1826
|
+
ButtonView.prototype.z = function (a) {
|
|
1827
|
+
this.c.ka();
|
|
1828
1828
|
};
|
|
1829
|
-
ButtonView.prototype.
|
|
1830
|
-
this.
|
|
1829
|
+
ButtonView.prototype.ac = function (a) {
|
|
1830
|
+
this.c.kd();
|
|
1831
1831
|
};
|
|
1832
|
-
ButtonView.prototype.
|
|
1833
|
-
this.
|
|
1834
|
-
if (!this.
|
|
1832
|
+
ButtonView.prototype.ab = function (a) {
|
|
1833
|
+
this.c.kb();
|
|
1834
|
+
if (!this.c.at) {
|
|
1835
1835
|
a.preventDefault();
|
|
1836
1836
|
}
|
|
1837
|
-
if (this.
|
|
1837
|
+
if (this.c.a5) {
|
|
1838
1838
|
a.stopPropagation();
|
|
1839
1839
|
}
|
|
1840
1840
|
};
|
|
1841
|
-
ButtonView.prototype.ac = function (a) {
|
|
1842
|
-
this.b.ke();
|
|
1843
|
-
};
|
|
1844
1841
|
ButtonView.prototype.ad = function (a) {
|
|
1845
|
-
this.
|
|
1842
|
+
this.c.ke();
|
|
1843
|
+
};
|
|
1844
|
+
ButtonView.prototype.ae = function (a) {
|
|
1845
|
+
this.c.kf(a.originalEvent.relatedTarget, a.originalEvent.target);
|
|
1846
1846
|
};
|
|
1847
|
-
ButtonView.prototype.
|
|
1847
|
+
ButtonView.prototype.g = function () {
|
|
1848
1848
|
return false;
|
|
1849
1849
|
};
|
|
1850
|
-
ButtonView.prototype.
|
|
1850
|
+
ButtonView.prototype.aa = function (a) {
|
|
1851
1851
|
};
|
|
1852
|
-
ButtonView.prototype.
|
|
1852
|
+
ButtonView.prototype.ah = function () {
|
|
1853
1853
|
if (igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h == null) {
|
|
1854
|
-
igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h = this.
|
|
1854
|
+
igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h = this.l;
|
|
1855
1855
|
}
|
|
1856
1856
|
};
|
|
1857
|
-
ButtonView.prototype.
|
|
1858
|
-
this.
|
|
1859
|
-
this.
|
|
1860
|
-
this.
|
|
1861
|
-
this.
|
|
1862
|
-
this.
|
|
1863
|
-
this.
|
|
1864
|
-
this.
|
|
1865
|
-
this.
|
|
1866
|
-
this.
|
|
1867
|
-
this.
|
|
1868
|
-
this.
|
|
1869
|
-
this.
|
|
1870
|
-
};
|
|
1871
|
-
ButtonView.prototype.
|
|
1857
|
+
ButtonView.prototype.aj = function () {
|
|
1858
|
+
this.f = true;
|
|
1859
|
+
this.i.add(this.o.listen("change", igniteuiWebcomponentsCore.runOn(this, this.aa)));
|
|
1860
|
+
this.i.add(this.o.listen("click", igniteuiWebcomponentsCore.runOn(this, this.ab)));
|
|
1861
|
+
this.i.add(this.o.listen("focus", igniteuiWebcomponentsCore.runOn(this, this.ac)));
|
|
1862
|
+
this.i.add(this.o.listen("blur", igniteuiWebcomponentsCore.runOn(this, this.z)));
|
|
1863
|
+
this.i.add(this.n.listen("click", igniteuiWebcomponentsCore.runOn(this, this.u)));
|
|
1864
|
+
this.i.add(this.o.listen("mouseenter", igniteuiWebcomponentsCore.runOn(this, this.w)));
|
|
1865
|
+
this.i.add(this.o.listen("mouseleave", igniteuiWebcomponentsCore.runOn(this, this.x)));
|
|
1866
|
+
this.i.add(this.o.listen("mousedown", igniteuiWebcomponentsCore.runOn(this, this.v)));
|
|
1867
|
+
this.i.add(this.o.listen("mouseup", igniteuiWebcomponentsCore.runOn(this, this.y)));
|
|
1868
|
+
this.i.add(this.o.listen("focusin", igniteuiWebcomponentsCore.runOn(this, this.ad)));
|
|
1869
|
+
this.i.add(this.o.listen("focusout", igniteuiWebcomponentsCore.runOn(this, this.ae)));
|
|
1870
|
+
};
|
|
1871
|
+
ButtonView.prototype.am = function () {
|
|
1872
1872
|
var e_2, _a;
|
|
1873
|
-
this.
|
|
1873
|
+
this.f = false;
|
|
1874
1874
|
try {
|
|
1875
|
-
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.
|
|
1875
|
+
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.i)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
1876
1876
|
var a = _c.value;
|
|
1877
1877
|
a();
|
|
1878
1878
|
}
|
|
@@ -1890,39 +1890,39 @@
|
|
|
1890
1890
|
throw e_2.error;
|
|
1891
1891
|
}
|
|
1892
1892
|
}
|
|
1893
|
-
this.
|
|
1893
|
+
this.i.clear();
|
|
1894
1894
|
};
|
|
1895
|
-
ButtonView.prototype.
|
|
1896
|
-
var model_ = this.
|
|
1895
|
+
ButtonView.prototype.au = function () {
|
|
1896
|
+
var model_ = this.c;
|
|
1897
1897
|
if (model_.externalObject && model_.externalObject.refreshDefaults) {
|
|
1898
1898
|
model_.externalObject.refreshDefaults();
|
|
1899
1899
|
}
|
|
1900
1900
|
;
|
|
1901
1901
|
};
|
|
1902
|
-
ButtonView.prototype.ay = function (a, b) {
|
|
1903
|
-
this.c.ax = a;
|
|
1904
|
-
this.c.aw = b;
|
|
1905
|
-
};
|
|
1906
1902
|
ButtonView.prototype.az = function (a, b) {
|
|
1907
|
-
|
|
1908
|
-
this.
|
|
1903
|
+
this.d.ax = a;
|
|
1904
|
+
this.d.aw = b;
|
|
1905
|
+
};
|
|
1906
|
+
ButtonView.prototype.a0 = function (a, b) {
|
|
1907
|
+
var c = ElevationHelper.e(a, this.c.n0, this.c.nx, this.c.nn, b);
|
|
1908
|
+
this.o.setStyleProperty("box-shadow", c);
|
|
1909
1909
|
};
|
|
1910
|
-
ButtonView.prototype.
|
|
1910
|
+
ButtonView.prototype.a2 = function (a) {
|
|
1911
1911
|
if (a != null) {
|
|
1912
|
-
this.
|
|
1912
|
+
this.n.setStyleProperty("font", a.fontString);
|
|
1913
1913
|
}
|
|
1914
1914
|
};
|
|
1915
|
-
ButtonView.prototype.
|
|
1916
|
-
this.
|
|
1915
|
+
ButtonView.prototype.af = function (a) {
|
|
1916
|
+
this.n.append(a);
|
|
1917
1917
|
};
|
|
1918
|
-
ButtonView.prototype.
|
|
1919
|
-
this.
|
|
1918
|
+
ButtonView.prototype.ag = function () {
|
|
1919
|
+
this.n.removeChildren();
|
|
1920
1920
|
};
|
|
1921
|
-
ButtonView.prototype.
|
|
1922
|
-
return this.
|
|
1921
|
+
ButtonView.prototype.s = function () {
|
|
1922
|
+
return this.n.getChildCount() > 0 ? this.n.getChildAt(0) : null;
|
|
1923
1923
|
};
|
|
1924
|
-
ButtonView.prototype.
|
|
1925
|
-
var rect_ = this.
|
|
1924
|
+
ButtonView.prototype.b = function () {
|
|
1925
|
+
var rect_ = this.l.rootWrapper.getNativeElement().getBoundingClientRect();
|
|
1926
1926
|
var a = (rect_.top);
|
|
1927
1927
|
var b = (rect_.left);
|
|
1928
1928
|
var c = new Array(2);
|
|
@@ -1930,6 +1930,12 @@
|
|
|
1930
1930
|
c[1] = b;
|
|
1931
1931
|
return c;
|
|
1932
1932
|
};
|
|
1933
|
+
ButtonView.prototype.a = function () {
|
|
1934
|
+
var a = new Array(2);
|
|
1935
|
+
a[0] = igniteuiWebcomponentsCore.NativeUI.k(this.r);
|
|
1936
|
+
a[1] = igniteuiWebcomponentsCore.NativeUI.d(this.r);
|
|
1937
|
+
return a;
|
|
1938
|
+
};
|
|
1933
1939
|
ButtonView.$t = igniteuiWebcomponentsCore.markType(ButtonView, 'ButtonView');
|
|
1934
1940
|
return ButtonView;
|
|
1935
1941
|
}(igniteuiWebcomponentsCore.Base));
|
|
@@ -2201,9 +2207,9 @@
|
|
|
2201
2207
|
_this.gotFocus = null;
|
|
2202
2208
|
_this.lostFocus = null;
|
|
2203
2209
|
var a = new ButtonView();
|
|
2204
|
-
a.
|
|
2210
|
+
a.c = _this;
|
|
2205
2211
|
_this.view = a;
|
|
2206
|
-
_this.view.
|
|
2212
|
+
_this.view.ar();
|
|
2207
2213
|
return _this;
|
|
2208
2214
|
}
|
|
2209
2215
|
Object.defineProperty(XButton.prototype, "view", {
|
|
@@ -2339,7 +2345,7 @@
|
|
|
2339
2345
|
case "IsDisabled":
|
|
2340
2346
|
this.as = this.disabled || this.aw;
|
|
2341
2347
|
this.kq();
|
|
2342
|
-
this.view.
|
|
2348
|
+
this.view.at();
|
|
2343
2349
|
this.kp();
|
|
2344
2350
|
break;
|
|
2345
2351
|
case "DisableRipple":
|
|
@@ -2351,7 +2357,7 @@
|
|
|
2351
2357
|
this.kp();
|
|
2352
2358
|
break;
|
|
2353
2359
|
case "ActualDisableRipple":
|
|
2354
|
-
this.view.
|
|
2360
|
+
this.view.an();
|
|
2355
2361
|
break;
|
|
2356
2362
|
case "ActualBackgroundColor":
|
|
2357
2363
|
case "ActualDisabledBackgroundColor":
|
|
@@ -2374,11 +2380,11 @@
|
|
|
2374
2380
|
if (this.e == 4) {
|
|
2375
2381
|
this.ko();
|
|
2376
2382
|
}
|
|
2377
|
-
this.view.
|
|
2383
|
+
this.view.a1();
|
|
2378
2384
|
this.kp();
|
|
2379
2385
|
break;
|
|
2380
2386
|
case "DisplayType":
|
|
2381
|
-
this.view.
|
|
2387
|
+
this.view.a1();
|
|
2382
2388
|
this.kq();
|
|
2383
2389
|
this.kp();
|
|
2384
2390
|
break;
|
|
@@ -2387,43 +2393,43 @@
|
|
|
2387
2393
|
case "ContentPaddingRight":
|
|
2388
2394
|
case "ContentPaddingBottom":
|
|
2389
2395
|
case "FillAvailableSpace":
|
|
2390
|
-
this.view.
|
|
2396
|
+
this.view.a1();
|
|
2391
2397
|
break;
|
|
2392
2398
|
case "HorizontalContentAlignment":
|
|
2393
2399
|
case "VerticalContentAlignment":
|
|
2394
|
-
this.view.
|
|
2400
|
+
this.view.av();
|
|
2395
2401
|
break;
|
|
2396
2402
|
case "InputId":
|
|
2397
|
-
this.view.
|
|
2403
|
+
this.view.as();
|
|
2398
2404
|
break;
|
|
2399
2405
|
case "Display":
|
|
2400
|
-
this.view.
|
|
2406
|
+
this.view.ao();
|
|
2401
2407
|
break;
|
|
2402
2408
|
case "ChildContentDisplay":
|
|
2403
|
-
this.view.
|
|
2409
|
+
this.view.ak();
|
|
2404
2410
|
break;
|
|
2405
2411
|
case "FlexDirection":
|
|
2406
|
-
this.view.
|
|
2412
|
+
this.view.ap();
|
|
2407
2413
|
break;
|
|
2408
2414
|
case "FlexGrow":
|
|
2409
|
-
this.view.
|
|
2415
|
+
this.view.aq();
|
|
2410
2416
|
break;
|
|
2411
2417
|
case "AlignItems":
|
|
2412
|
-
this.view.
|
|
2418
|
+
this.view.ai();
|
|
2413
2419
|
break;
|
|
2414
2420
|
case "TabIndex":
|
|
2415
|
-
this.view.
|
|
2421
|
+
this.view.ay();
|
|
2416
2422
|
break;
|
|
2417
2423
|
case "DisablePointer":
|
|
2418
|
-
this.view.
|
|
2424
|
+
this.view.ay();
|
|
2419
2425
|
break;
|
|
2420
2426
|
case "MinWidth":
|
|
2421
|
-
this.view.
|
|
2422
|
-
this.view.
|
|
2427
|
+
this.view.ax(this.by);
|
|
2428
|
+
this.view.a1();
|
|
2423
2429
|
break;
|
|
2424
2430
|
case "MinHeight":
|
|
2425
|
-
this.view.
|
|
2426
|
-
this.view.
|
|
2431
|
+
this.view.aw(this.bx);
|
|
2432
|
+
this.view.a1();
|
|
2427
2433
|
break;
|
|
2428
2434
|
}
|
|
2429
2435
|
};
|
|
@@ -2607,7 +2613,7 @@
|
|
|
2607
2613
|
}
|
|
2608
2614
|
};
|
|
2609
2615
|
XButton.prototype.kp = function () {
|
|
2610
|
-
var a = this.view.
|
|
2616
|
+
var a = this.view.r;
|
|
2611
2617
|
if (a == null) {
|
|
2612
2618
|
return;
|
|
2613
2619
|
}
|
|
@@ -2617,17 +2623,17 @@
|
|
|
2617
2623
|
igniteuiWebcomponentsCore.NativeUI.p(a, new igniteuiWebcomponentsCore.Thickness(0, this.bj));
|
|
2618
2624
|
}
|
|
2619
2625
|
if (this.disabled) {
|
|
2620
|
-
this.view.
|
|
2626
|
+
this.view.a0(this.cu, this.u);
|
|
2621
2627
|
}
|
|
2622
2628
|
else if (this.focused && this.a2) {
|
|
2623
|
-
this.view.
|
|
2629
|
+
this.view.a0(this.cv, this.u);
|
|
2624
2630
|
}
|
|
2625
2631
|
else {
|
|
2626
2632
|
if (this.a3 && !this.au) {
|
|
2627
|
-
this.view.
|
|
2633
|
+
this.view.a0(this.cw, this.u);
|
|
2628
2634
|
}
|
|
2629
2635
|
else {
|
|
2630
|
-
this.view.
|
|
2636
|
+
this.view.a0(this.cx, this.u);
|
|
2631
2637
|
}
|
|
2632
2638
|
}
|
|
2633
2639
|
if (this.disabled) {
|
|
@@ -2644,26 +2650,26 @@
|
|
|
2644
2650
|
igniteuiWebcomponentsCore.NativeUI.m(a, this.no);
|
|
2645
2651
|
}
|
|
2646
2652
|
}
|
|
2647
|
-
this.view.
|
|
2653
|
+
this.view.az(this.ny, igniteuiWebcomponentsCore.BrushUtil.j(0, 0, 0, 0));
|
|
2648
2654
|
if (this.aa != null) {
|
|
2649
|
-
this.view.
|
|
2655
|
+
this.view.a2(this.aa);
|
|
2650
2656
|
}
|
|
2651
2657
|
if (this.disabled) {
|
|
2652
|
-
igniteuiWebcomponentsCore.NativeUI.q(this.view.
|
|
2653
|
-
igniteuiWebcomponentsCore.NativeUI.r(this.view.
|
|
2658
|
+
igniteuiWebcomponentsCore.NativeUI.q(this.view.t, this.ns);
|
|
2659
|
+
igniteuiWebcomponentsCore.NativeUI.r(this.view.t, this.ns);
|
|
2654
2660
|
}
|
|
2655
2661
|
else if (this.focused && this.a2) {
|
|
2656
|
-
igniteuiWebcomponentsCore.NativeUI.q(this.view.
|
|
2657
|
-
igniteuiWebcomponentsCore.NativeUI.r(this.view.
|
|
2662
|
+
igniteuiWebcomponentsCore.NativeUI.q(this.view.t, this.nu);
|
|
2663
|
+
igniteuiWebcomponentsCore.NativeUI.r(this.view.t, this.nu);
|
|
2658
2664
|
}
|
|
2659
2665
|
else {
|
|
2660
2666
|
if (this.a3 && !this.au) {
|
|
2661
|
-
igniteuiWebcomponentsCore.NativeUI.q(this.view.
|
|
2662
|
-
igniteuiWebcomponentsCore.NativeUI.r(this.view.
|
|
2667
|
+
igniteuiWebcomponentsCore.NativeUI.q(this.view.t, this.nw);
|
|
2668
|
+
igniteuiWebcomponentsCore.NativeUI.r(this.view.t, this.nw);
|
|
2663
2669
|
}
|
|
2664
2670
|
else {
|
|
2665
|
-
igniteuiWebcomponentsCore.NativeUI.q(this.view.
|
|
2666
|
-
igniteuiWebcomponentsCore.NativeUI.r(this.view.
|
|
2671
|
+
igniteuiWebcomponentsCore.NativeUI.q(this.view.t, this.nz);
|
|
2672
|
+
igniteuiWebcomponentsCore.NativeUI.r(this.view.t, this.nz);
|
|
2667
2673
|
}
|
|
2668
2674
|
}
|
|
2669
2675
|
};
|
|
@@ -5008,7 +5014,7 @@
|
|
|
5008
5014
|
});
|
|
5009
5015
|
XButton.prototype.kl = function () {
|
|
5010
5016
|
this.j8();
|
|
5011
|
-
this.view.
|
|
5017
|
+
this.view.az(this.ny, igniteuiWebcomponentsCore.BrushUtil.j(0, 0, 0, 0));
|
|
5012
5018
|
this.kp();
|
|
5013
5019
|
};
|
|
5014
5020
|
Object.defineProperty(XButton.prototype, "a", {
|
|
@@ -5022,25 +5028,25 @@
|
|
|
5022
5028
|
configurable: true
|
|
5023
5029
|
});
|
|
5024
5030
|
XButton.prototype.j8 = function () {
|
|
5025
|
-
this.view.
|
|
5031
|
+
this.view.ah();
|
|
5026
5032
|
};
|
|
5027
5033
|
XButton.prototype.onDetachedFromUI = function () {
|
|
5028
|
-
this.view.
|
|
5034
|
+
this.view.am();
|
|
5029
5035
|
};
|
|
5030
5036
|
XButton.prototype.onAttachedToUI = function () {
|
|
5031
|
-
this.view.
|
|
5037
|
+
this.view.aj();
|
|
5032
5038
|
};
|
|
5033
5039
|
XButton.prototype.appendButtonContent = function (a) {
|
|
5034
|
-
this.view.
|
|
5040
|
+
this.view.af(a);
|
|
5035
5041
|
};
|
|
5036
5042
|
XButton.prototype.clearButtonContent = function () {
|
|
5037
|
-
this.view.
|
|
5043
|
+
this.view.ag();
|
|
5038
5044
|
};
|
|
5039
5045
|
XButton.prototype.getButtonContent = function () {
|
|
5040
|
-
return this.view.
|
|
5046
|
+
return this.view.s();
|
|
5041
5047
|
};
|
|
5042
5048
|
XButton.prototype.a4 = function () {
|
|
5043
|
-
return this.view.
|
|
5049
|
+
return this.view.h();
|
|
5044
5050
|
};
|
|
5045
5051
|
XButton.prototype.eb = function () {
|
|
5046
5052
|
return this.b();
|
|
@@ -5050,14 +5056,15 @@
|
|
|
5050
5056
|
return a.serialize();
|
|
5051
5057
|
};
|
|
5052
5058
|
XButton.prototype.b = function () {
|
|
5053
|
-
var a = this.view.
|
|
5054
|
-
var b = this.view.
|
|
5059
|
+
var a = this.view.r;
|
|
5060
|
+
var b = this.view.t;
|
|
5055
5061
|
var c = new ButtonVisualModelExport();
|
|
5056
|
-
var d = this.view.
|
|
5062
|
+
var d = this.view.b();
|
|
5057
5063
|
c.s = d[0];
|
|
5058
5064
|
c.q = d[1];
|
|
5059
|
-
|
|
5060
|
-
c.t =
|
|
5065
|
+
var e = this.view.a();
|
|
5066
|
+
c.t = e[0];
|
|
5067
|
+
c.p = e[1];
|
|
5061
5068
|
c.h = this.n;
|
|
5062
5069
|
c.i = this.q;
|
|
5063
5070
|
c.c = igniteuiWebcomponentsCore.AppearanceHelper.a(igniteuiWebcomponentsCore.NativeUI.ak(a));
|
|
@@ -5075,44 +5082,44 @@
|
|
|
5075
5082
|
c.y = this.g4;
|
|
5076
5083
|
c.z = this.g6;
|
|
5077
5084
|
c.w = this.fb;
|
|
5078
|
-
c.v = this.view.
|
|
5085
|
+
c.v = this.view.t.getNativeElement().innerText;
|
|
5079
5086
|
c.aa = this.h6;
|
|
5080
5087
|
c.m = this.focused;
|
|
5081
5088
|
c.k = this.as;
|
|
5082
5089
|
c.n = this.a3;
|
|
5083
5090
|
c.l = this.disabled;
|
|
5084
5091
|
if (this.aa != null) {
|
|
5085
|
-
var
|
|
5086
|
-
if (this.view != null &&
|
|
5087
|
-
var
|
|
5088
|
-
var
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5092
|
+
var f = this.aa;
|
|
5093
|
+
if (this.view != null && f.q == null) {
|
|
5094
|
+
var g = this.view.l;
|
|
5095
|
+
var h = igniteuiWebcomponentsCore.FontUtil.getFontInfoFromString(g, f.fontString);
|
|
5096
|
+
f.q = h.q;
|
|
5097
|
+
f.f = h.f;
|
|
5098
|
+
f.r = h.r;
|
|
5099
|
+
f.t = h.t;
|
|
5100
|
+
f.u = h.u;
|
|
5101
|
+
f.v = h.v;
|
|
5095
5102
|
}
|
|
5096
|
-
if (
|
|
5097
|
-
c.ab =
|
|
5103
|
+
if (f.q != null) {
|
|
5104
|
+
c.ab = f.q;
|
|
5098
5105
|
}
|
|
5099
|
-
if (!igniteuiWebcomponentsCore.isNaN_(
|
|
5100
|
-
c.r =
|
|
5106
|
+
if (!igniteuiWebcomponentsCore.isNaN_(f.f)) {
|
|
5107
|
+
c.r = f.f;
|
|
5101
5108
|
}
|
|
5102
|
-
if (
|
|
5103
|
-
c.af =
|
|
5109
|
+
if (f.v != null) {
|
|
5110
|
+
c.af = f.v;
|
|
5104
5111
|
}
|
|
5105
|
-
if (
|
|
5106
|
-
c.ad =
|
|
5112
|
+
if (f.t != null) {
|
|
5113
|
+
c.ad = f.t;
|
|
5107
5114
|
}
|
|
5108
|
-
if (
|
|
5109
|
-
c.ac =
|
|
5115
|
+
if (f.r != null) {
|
|
5116
|
+
c.ac = f.t;
|
|
5110
5117
|
}
|
|
5111
5118
|
}
|
|
5112
5119
|
return c;
|
|
5113
5120
|
};
|
|
5114
5121
|
XButton.prototype.provideContainer = function (a) {
|
|
5115
|
-
this.view.
|
|
5122
|
+
this.view.al(a);
|
|
5116
5123
|
};
|
|
5117
5124
|
XButton.$t = igniteuiWebcomponentsCore.markType(XButton, 'XButton', igniteuiWebcomponentsCore.Base.$, [igniteuiWebcomponentsCore.INotifyPropertyChanged_$type]);
|
|
5118
5125
|
XButton.m = 2;
|
|
@@ -8906,6 +8913,9 @@
|
|
|
8906
8913
|
this.v.rootWrapper.setStyleProperty("font", a.fontString);
|
|
8907
8914
|
}
|
|
8908
8915
|
};
|
|
8916
|
+
IconView.prototype.a2 = function () {
|
|
8917
|
+
return new igniteuiWebcomponentsCore.Size(1, this.v.rootWrapper.width(), this.v.rootWrapper.height());
|
|
8918
|
+
};
|
|
8909
8919
|
IconView.prototype.b = function () {
|
|
8910
8920
|
var rect_ = this.v.rootWrapper.getNativeElement().getBoundingClientRect();
|
|
8911
8921
|
var a = (rect_.top);
|
|
@@ -10079,38 +10089,39 @@
|
|
|
10079
10089
|
var b = this.view.b();
|
|
10080
10090
|
a.i = b[0];
|
|
10081
10091
|
a.g = b[1];
|
|
10082
|
-
|
|
10083
|
-
a.
|
|
10092
|
+
var c = this.view.a2();
|
|
10093
|
+
a.f = c.height;
|
|
10094
|
+
a.j = c.width;
|
|
10084
10095
|
a.a = this.view.a();
|
|
10085
10096
|
a.svg = this.svg;
|
|
10086
10097
|
a.svgPath = this.svgPath;
|
|
10087
10098
|
a.k = this.b0;
|
|
10088
10099
|
if (this.o != null) {
|
|
10089
|
-
var
|
|
10090
|
-
if (this.view != null &&
|
|
10091
|
-
var
|
|
10092
|
-
var
|
|
10093
|
-
|
|
10094
|
-
|
|
10095
|
-
|
|
10096
|
-
|
|
10097
|
-
|
|
10098
|
-
|
|
10100
|
+
var d = this.o;
|
|
10101
|
+
if (this.view != null && d.q == null) {
|
|
10102
|
+
var e = this.view.v;
|
|
10103
|
+
var f = igniteuiWebcomponentsCore.FontUtil.getFontInfoFromString(e, d.fontString);
|
|
10104
|
+
d.q = f.q;
|
|
10105
|
+
d.f = f.f;
|
|
10106
|
+
d.r = f.r;
|
|
10107
|
+
d.t = f.t;
|
|
10108
|
+
d.u = f.u;
|
|
10109
|
+
d.v = f.v;
|
|
10099
10110
|
}
|
|
10100
|
-
if (
|
|
10101
|
-
a.o =
|
|
10111
|
+
if (d.q != null) {
|
|
10112
|
+
a.o = d.q;
|
|
10102
10113
|
}
|
|
10103
|
-
if (!igniteuiWebcomponentsCore.isNaN_(
|
|
10104
|
-
a.h =
|
|
10114
|
+
if (!igniteuiWebcomponentsCore.isNaN_(d.f)) {
|
|
10115
|
+
a.h = d.f;
|
|
10105
10116
|
}
|
|
10106
|
-
if (
|
|
10107
|
-
a.s =
|
|
10117
|
+
if (d.v != null) {
|
|
10118
|
+
a.s = d.v;
|
|
10108
10119
|
}
|
|
10109
|
-
if (
|
|
10110
|
-
a.q =
|
|
10120
|
+
if (d.t != null) {
|
|
10121
|
+
a.q = d.t;
|
|
10111
10122
|
}
|
|
10112
|
-
if (
|
|
10113
|
-
a.p =
|
|
10123
|
+
if (d.r != null) {
|
|
10124
|
+
a.p = d.t;
|
|
10114
10125
|
}
|
|
10115
10126
|
}
|
|
10116
10127
|
return a;
|
|
@@ -15253,8 +15264,8 @@
|
|
|
15253
15264
|
if (e != 0) {
|
|
15254
15265
|
a.l(",");
|
|
15255
15266
|
}
|
|
15256
|
-
var f = this.k._inner[e].
|
|
15257
|
-
a.l(this.k._inner[e].
|
|
15267
|
+
var f = this.k._inner[e].m.charAt(0).toString().toLowerCase() + this.k._inner[e].m.substr(1);
|
|
15268
|
+
a.l(this.k._inner[e].p());
|
|
15258
15269
|
}
|
|
15259
15270
|
a.l("],");
|
|
15260
15271
|
a.l("suffixModels : [");
|
|
@@ -15367,61 +15378,63 @@
|
|
|
15367
15378
|
tslib.__extends(InputVisualModelExport, _super);
|
|
15368
15379
|
function InputVisualModelExport() {
|
|
15369
15380
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
15370
|
-
_this.
|
|
15381
|
+
_this.i = 0;
|
|
15382
|
+
_this.g = 0;
|
|
15383
|
+
_this.j = 0;
|
|
15371
15384
|
_this.f = 0;
|
|
15372
15385
|
_this.b = 0;
|
|
15373
15386
|
_this.c = 0;
|
|
15374
|
-
_this.
|
|
15375
|
-
_this.
|
|
15387
|
+
_this.l = null;
|
|
15388
|
+
_this.o = null;
|
|
15376
15389
|
_this.d = false;
|
|
15377
15390
|
_this.a = null;
|
|
15378
|
-
_this.q = null;
|
|
15379
|
-
_this.r = null;
|
|
15380
15391
|
_this.s = null;
|
|
15381
|
-
_this.g = 0;
|
|
15382
|
-
_this.o = null;
|
|
15383
|
-
_this.p = null;
|
|
15384
|
-
_this.i = null;
|
|
15385
|
-
_this.l = null;
|
|
15386
|
-
_this.e = false;
|
|
15387
15392
|
_this.t = null;
|
|
15393
|
+
_this.u = null;
|
|
15394
|
+
_this.h = 0;
|
|
15395
|
+
_this.q = null;
|
|
15396
|
+
_this.r = null;
|
|
15388
15397
|
_this.k = null;
|
|
15398
|
+
_this.n = null;
|
|
15399
|
+
_this.e = false;
|
|
15400
|
+
_this.v = null;
|
|
15401
|
+
_this.m = null;
|
|
15389
15402
|
return _this;
|
|
15390
15403
|
}
|
|
15391
|
-
InputVisualModelExport.prototype.
|
|
15404
|
+
InputVisualModelExport.prototype.p = function () {
|
|
15392
15405
|
var a = new igniteuiWebcomponentsCore.StringBuilder(0);
|
|
15393
15406
|
a.l("{");
|
|
15394
|
-
a.l("top : " + this.
|
|
15395
|
-
a.l("left : " + this.
|
|
15407
|
+
a.l("top : " + this.i + ", ");
|
|
15408
|
+
a.l("left : " + this.g + ", ");
|
|
15396
15409
|
a.l("shiftType : " + this.b + ", ");
|
|
15397
15410
|
a.l("actualDensity : " + this.c + ", ");
|
|
15398
|
-
a.l("mask : \"" + this.
|
|
15399
|
-
a.l("promptChar : \"" + this.
|
|
15411
|
+
a.l("mask : \"" + this.l + "\", ");
|
|
15412
|
+
a.l("promptChar : \"" + this.o + "\", ");
|
|
15400
15413
|
a.l("includeLiterals : " + this.d + ", ");
|
|
15401
15414
|
a.l("actualTextColor : " + this.a.serialize() + ", ");
|
|
15402
|
-
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.
|
|
15403
|
-
a.l("textStyleFontStyle : \"" + this.
|
|
15415
|
+
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.s)) {
|
|
15416
|
+
a.l("textStyleFontStyle : \"" + this.s + "\", ");
|
|
15404
15417
|
}
|
|
15405
|
-
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.
|
|
15406
|
-
a.l("textStyleFontVariant : \"" + this.
|
|
15418
|
+
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.t)) {
|
|
15419
|
+
a.l("textStyleFontVariant : \"" + this.t + "\", ");
|
|
15407
15420
|
}
|
|
15408
|
-
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.
|
|
15409
|
-
a.l("textStyleFontWeight : \"" + this.
|
|
15421
|
+
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.u)) {
|
|
15422
|
+
a.l("textStyleFontWeight : \"" + this.u + "\", ");
|
|
15410
15423
|
}
|
|
15411
|
-
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.
|
|
15412
|
-
a.l("textStyleFontFamily : \"" + this.
|
|
15424
|
+
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.q)) {
|
|
15425
|
+
a.l("textStyleFontFamily : \"" + this.q + "\", ");
|
|
15413
15426
|
}
|
|
15414
|
-
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.
|
|
15415
|
-
a.l("textStyleFontStretch : \"" + this.
|
|
15427
|
+
if (!igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.r)) {
|
|
15428
|
+
a.l("textStyleFontStretch : \"" + this.r + "\", ");
|
|
15416
15429
|
}
|
|
15417
|
-
if (!igniteuiWebcomponentsCore.isNaN_(this.
|
|
15418
|
-
a.l("textStyleFontSize : " + this.
|
|
15430
|
+
if (!igniteuiWebcomponentsCore.isNaN_(this.h)) {
|
|
15431
|
+
a.l("textStyleFontSize : " + this.h + ", ");
|
|
15419
15432
|
}
|
|
15420
|
-
a.l("inputType : \"" + this.
|
|
15421
|
-
a.l("placeholder : \"" + this.
|
|
15433
|
+
a.l("inputType : \"" + this.k + "\", ");
|
|
15434
|
+
a.l("placeholder : \"" + this.n + "\", ");
|
|
15422
15435
|
a.l("isHover : " + this.e + ", ");
|
|
15423
|
-
a.l("value : \"" + this.
|
|
15424
|
-
a.l("name : \"" + this.
|
|
15436
|
+
a.l("value : \"" + this.v + "\", ");
|
|
15437
|
+
a.l("name : \"" + this.m + "\", ");
|
|
15425
15438
|
a.l("}");
|
|
15426
15439
|
return a.toString();
|
|
15427
15440
|
};
|
|
@@ -16665,50 +16678,50 @@
|
|
|
16665
16678
|
tslib.__extends(InputView, _super);
|
|
16666
16679
|
function InputView() {
|
|
16667
16680
|
var _this = _super.call(this) || this;
|
|
16668
|
-
_this.b = null;
|
|
16669
|
-
_this.l = null;
|
|
16670
16681
|
_this.c = null;
|
|
16671
|
-
_this.j = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Delegate_$type, 0);
|
|
16672
|
-
_this.g = false;
|
|
16673
|
-
_this.f = false;
|
|
16674
|
-
_this.r = null;
|
|
16675
|
-
_this.d = true;
|
|
16676
16682
|
_this.m = null;
|
|
16677
|
-
_this.
|
|
16683
|
+
_this.d = null;
|
|
16684
|
+
_this.k = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Delegate_$type, 0);
|
|
16685
|
+
_this.h = false;
|
|
16678
16686
|
_this.g = false;
|
|
16687
|
+
_this.s = null;
|
|
16688
|
+
_this.e = true;
|
|
16689
|
+
_this.n = null;
|
|
16690
|
+
_this.o = null;
|
|
16691
|
+
_this.h = false;
|
|
16679
16692
|
return _this;
|
|
16680
16693
|
}
|
|
16681
|
-
InputView.prototype.
|
|
16694
|
+
InputView.prototype.at = function () {
|
|
16682
16695
|
};
|
|
16683
|
-
InputView.prototype.
|
|
16696
|
+
InputView.prototype.i = function () {
|
|
16684
16697
|
return true;
|
|
16685
16698
|
};
|
|
16686
|
-
Object.defineProperty(InputView.prototype, "
|
|
16699
|
+
Object.defineProperty(InputView.prototype, "r", {
|
|
16687
16700
|
get: function () {
|
|
16688
|
-
return this.
|
|
16701
|
+
return this.n;
|
|
16689
16702
|
},
|
|
16690
16703
|
enumerable: false,
|
|
16691
16704
|
configurable: true
|
|
16692
16705
|
});
|
|
16693
|
-
Object.defineProperty(InputView.prototype, "
|
|
16706
|
+
Object.defineProperty(InputView.prototype, "be", {
|
|
16694
16707
|
get: function () {
|
|
16695
16708
|
return null;
|
|
16696
16709
|
},
|
|
16697
16710
|
enumerable: false,
|
|
16698
16711
|
configurable: true
|
|
16699
16712
|
});
|
|
16700
|
-
Object.defineProperty(InputView.prototype, "
|
|
16713
|
+
Object.defineProperty(InputView.prototype, "j", {
|
|
16701
16714
|
get: function () {
|
|
16702
16715
|
return true;
|
|
16703
16716
|
},
|
|
16704
16717
|
enumerable: false,
|
|
16705
16718
|
configurable: true
|
|
16706
16719
|
});
|
|
16707
|
-
InputView.prototype.
|
|
16720
|
+
InputView.prototype.aq = function (a) {
|
|
16708
16721
|
var e_9, _a;
|
|
16709
16722
|
if (a == null) {
|
|
16710
16723
|
try {
|
|
16711
|
-
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.
|
|
16724
|
+
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.k)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
16712
16725
|
var b = _c.value;
|
|
16713
16726
|
b();
|
|
16714
16727
|
}
|
|
@@ -16726,12 +16739,12 @@
|
|
|
16726
16739
|
throw e_9.error;
|
|
16727
16740
|
}
|
|
16728
16741
|
}
|
|
16729
|
-
this.
|
|
16742
|
+
this.k.clear();
|
|
16730
16743
|
}
|
|
16731
|
-
this.
|
|
16732
|
-
this.
|
|
16733
|
-
var c = this.
|
|
16734
|
-
c.setAttribute("type", this.
|
|
16744
|
+
this.m = a;
|
|
16745
|
+
this.m.rootWrapper.setStyleProperty("display", "inline-block");
|
|
16746
|
+
var c = this.m.createElement("input");
|
|
16747
|
+
c.setAttribute("type", this.c.b8);
|
|
16735
16748
|
c.setStyleProperty("position", "relative");
|
|
16736
16749
|
c.setStyleProperty("box-sizing", "border-box");
|
|
16737
16750
|
c.setStyleProperty("display", "inline-block");
|
|
@@ -16750,75 +16763,75 @@
|
|
|
16750
16763
|
c.setStyleProperty("background-attachment", "initial");
|
|
16751
16764
|
c.setStyleProperty("background-origin", "initial");
|
|
16752
16765
|
c.setStyleProperty("background-color", "transparent");
|
|
16753
|
-
igniteuiWebcomponentsCore.NativeUI.q(c, this.
|
|
16766
|
+
igniteuiWebcomponentsCore.NativeUI.q(c, this.c.d4);
|
|
16754
16767
|
c.setStyleProperty("outline-style", "none");
|
|
16755
16768
|
c.setStyleProperty("box-shadow", "none");
|
|
16756
16769
|
c.setStyleProperty("border-top", "0.1875rem solid transparent");
|
|
16757
16770
|
c.setStyleProperty("padding-bottom", "0.1875rem");
|
|
16758
|
-
c.setStyleProperty("text-align", this.
|
|
16771
|
+
c.setStyleProperty("text-align", this.u(this.c.dy));
|
|
16759
16772
|
c.setStyleProperty("font-family", "Verdana");
|
|
16760
16773
|
c.setStyleProperty("font-size", "1rem");
|
|
16761
|
-
this.
|
|
16762
|
-
this.
|
|
16763
|
-
this.
|
|
16764
|
-
this.
|
|
16765
|
-
this.
|
|
16766
|
-
this.
|
|
16767
|
-
this.
|
|
16768
|
-
this.
|
|
16769
|
-
this.
|
|
16770
|
-
this.
|
|
16771
|
-
this.
|
|
16772
|
-
this.
|
|
16773
|
-
this.
|
|
16774
|
-
this.
|
|
16775
|
-
this.
|
|
16776
|
-
this.
|
|
16777
|
-
this.
|
|
16778
|
-
this.
|
|
16779
|
-
this.
|
|
16780
|
-
this.
|
|
16774
|
+
this.k.add(c.listen("change", igniteuiWebcomponentsCore.runOn(this, this.z)));
|
|
16775
|
+
this.k.add(c.listen("input", igniteuiWebcomponentsCore.runOn(this, this.aa)));
|
|
16776
|
+
this.k.add(c.listen("focus", igniteuiWebcomponentsCore.runOn(this, this.af)));
|
|
16777
|
+
this.k.add(c.listen("blur", igniteuiWebcomponentsCore.runOn(this, this.y)));
|
|
16778
|
+
this.k.add(c.listen("mouseenter", igniteuiWebcomponentsCore.runOn(this, this.w)));
|
|
16779
|
+
this.k.add(c.listen("mouseleave", igniteuiWebcomponentsCore.runOn(this, this.x)));
|
|
16780
|
+
this.k.add(c.listen("keydown", igniteuiWebcomponentsCore.runOn(this, this.ag)));
|
|
16781
|
+
this.k.add(c.listen("keyup", igniteuiWebcomponentsCore.runOn(this, this.ai)));
|
|
16782
|
+
this.k.add(c.listen("keypress", igniteuiWebcomponentsCore.runOn(this, this.ah)));
|
|
16783
|
+
this.k.add(c.listen("paste", igniteuiWebcomponentsCore.runOn(this, this.al)));
|
|
16784
|
+
this.k.add(c.listen("dragenter", igniteuiWebcomponentsCore.runOn(this, this.ad)));
|
|
16785
|
+
this.k.add(c.listen("dragleave", igniteuiWebcomponentsCore.runOn(this, this.ae)));
|
|
16786
|
+
this.k.add(c.listen("compositionstart", igniteuiWebcomponentsCore.runOn(this, this.ac)));
|
|
16787
|
+
this.k.add(c.listen("compositionend", igniteuiWebcomponentsCore.runOn(this, this.ab)));
|
|
16788
|
+
this.k.add(c.listen("mousedown", igniteuiWebcomponentsCore.runOn(this, this.aj)));
|
|
16789
|
+
this.k.add(c.listen("mouseup", igniteuiWebcomponentsCore.runOn(this, this.ak)));
|
|
16790
|
+
this.n = c;
|
|
16791
|
+
this.m.append(this.n);
|
|
16792
|
+
this.an();
|
|
16793
|
+
this.c.dl();
|
|
16781
16794
|
};
|
|
16782
|
-
InputView.prototype.
|
|
16795
|
+
InputView.prototype.a1 = function (a) {
|
|
16783
16796
|
if (a) {
|
|
16784
|
-
this.
|
|
16797
|
+
this.n.setAttribute("readonly", a.toString());
|
|
16785
16798
|
}
|
|
16786
16799
|
else {
|
|
16787
|
-
this.
|
|
16800
|
+
this.n.getNativeElement().removeAttribute("readonly");
|
|
16788
16801
|
}
|
|
16789
16802
|
};
|
|
16790
|
-
InputView.prototype.
|
|
16803
|
+
InputView.prototype.az = function (a) {
|
|
16791
16804
|
if (a) {
|
|
16792
|
-
this.
|
|
16805
|
+
this.n.setAttribute("disabled", "true");
|
|
16793
16806
|
}
|
|
16794
16807
|
else {
|
|
16795
|
-
this.
|
|
16808
|
+
this.n.getNativeElement().removeAttribute("disabled");
|
|
16796
16809
|
}
|
|
16797
16810
|
};
|
|
16798
|
-
InputView.prototype.
|
|
16799
|
-
this.
|
|
16811
|
+
InputView.prototype.a6 = function (a) {
|
|
16812
|
+
this.n.setStyleProperty("text-align", this.u(a));
|
|
16800
16813
|
};
|
|
16801
|
-
InputView.prototype.
|
|
16814
|
+
InputView.prototype.a5 = function (a) {
|
|
16802
16815
|
if (a) {
|
|
16803
|
-
this.
|
|
16816
|
+
this.n.removeClass("ig-input-hide-spinner");
|
|
16804
16817
|
}
|
|
16805
16818
|
else {
|
|
16806
|
-
this.
|
|
16819
|
+
this.n.addClass("ig-input-hide-spinner");
|
|
16807
16820
|
}
|
|
16808
16821
|
};
|
|
16809
|
-
InputView.prototype.
|
|
16810
|
-
this.
|
|
16811
|
-
this.
|
|
16822
|
+
InputView.prototype.ac = function (a) {
|
|
16823
|
+
this.h = true;
|
|
16824
|
+
this.c.c3();
|
|
16812
16825
|
};
|
|
16813
|
-
InputView.prototype.
|
|
16814
|
-
this.
|
|
16826
|
+
InputView.prototype.ab = function (a) {
|
|
16827
|
+
this.h = false;
|
|
16815
16828
|
var b = null;
|
|
16816
16829
|
if (a.originalEvent != null) {
|
|
16817
16830
|
b = (a.originalEvent.data);
|
|
16818
16831
|
}
|
|
16819
|
-
this.
|
|
16832
|
+
this.c.c2(b);
|
|
16820
16833
|
};
|
|
16821
|
-
InputView.prototype.
|
|
16834
|
+
InputView.prototype.u = function (a) {
|
|
16822
16835
|
switch (a) {
|
|
16823
16836
|
case 0: return "left";
|
|
16824
16837
|
case 2: return "right";
|
|
@@ -16826,54 +16839,54 @@
|
|
|
16826
16839
|
}
|
|
16827
16840
|
return "left";
|
|
16828
16841
|
};
|
|
16829
|
-
InputView.prototype.
|
|
16830
|
-
this.
|
|
16831
|
-
if (this.
|
|
16832
|
-
this.
|
|
16842
|
+
InputView.prototype.ax = function () {
|
|
16843
|
+
this.n.setAttribute("type", this.c.b8);
|
|
16844
|
+
if (this.c.b8 == "date") {
|
|
16845
|
+
this.n.setStyleProperty("line-height", "normal");
|
|
16833
16846
|
}
|
|
16834
16847
|
else {
|
|
16835
|
-
this.
|
|
16848
|
+
this.n.setStyleProperty("line-height", "0");
|
|
16836
16849
|
}
|
|
16837
16850
|
};
|
|
16838
|
-
InputView.prototype.
|
|
16839
|
-
this.
|
|
16851
|
+
InputView.prototype.av = function () {
|
|
16852
|
+
this.n.setAttribute("placeholder", this.c.cg);
|
|
16840
16853
|
};
|
|
16841
|
-
InputView.prototype.
|
|
16842
|
-
switch (this.
|
|
16854
|
+
InputView.prototype.ba = function () {
|
|
16855
|
+
switch (this.c.z) {
|
|
16843
16856
|
case 1:
|
|
16844
|
-
this.
|
|
16845
|
-
this.
|
|
16857
|
+
this.n.setStyleProperty("height", "2rem");
|
|
16858
|
+
this.n.setStyleProperty("font-size", "1rem");
|
|
16846
16859
|
break;
|
|
16847
16860
|
case 2:
|
|
16848
|
-
this.
|
|
16849
|
-
this.
|
|
16861
|
+
this.n.setStyleProperty("height", "1.68421rem");
|
|
16862
|
+
this.n.setStyleProperty("font-size", "1rem");
|
|
16850
16863
|
break;
|
|
16851
16864
|
case 3:
|
|
16852
|
-
this.
|
|
16853
|
-
this.
|
|
16865
|
+
this.n.setStyleProperty("height", "1.45455rem");
|
|
16866
|
+
this.n.setStyleProperty("font-size", ".95455rem");
|
|
16854
16867
|
break;
|
|
16855
16868
|
case 4:
|
|
16856
|
-
this.
|
|
16857
|
-
this.
|
|
16869
|
+
this.n.setStyleProperty("height", "1.388445rem");
|
|
16870
|
+
this.n.setStyleProperty("font-size", "0.91116rem");
|
|
16858
16871
|
break;
|
|
16859
16872
|
}
|
|
16860
16873
|
};
|
|
16861
|
-
InputView.prototype.
|
|
16874
|
+
InputView.prototype.a9 = function () {
|
|
16862
16875
|
var _this = this;
|
|
16863
|
-
var a = this.
|
|
16876
|
+
var a = this.l();
|
|
16864
16877
|
if (igniteuiWebcomponentsCore.isNaN_(a) || a == 0) {
|
|
16865
|
-
if (!this.
|
|
16866
|
-
this.
|
|
16867
|
-
this.
|
|
16868
|
-
_this.
|
|
16869
|
-
_this.
|
|
16878
|
+
if (!this.g) {
|
|
16879
|
+
this.g = true;
|
|
16880
|
+
this.m.setTimeout(function () {
|
|
16881
|
+
_this.g = false;
|
|
16882
|
+
_this.a9();
|
|
16870
16883
|
}, 100);
|
|
16871
16884
|
}
|
|
16872
16885
|
}
|
|
16873
16886
|
var b = new igniteuiWebcomponentsCore.TransformGroup();
|
|
16874
16887
|
b.j.add(((function () {
|
|
16875
16888
|
var $ret = new igniteuiWebcomponentsCore.TranslateTransform();
|
|
16876
|
-
$ret.k = _this.
|
|
16889
|
+
$ret.k = _this.c.o == 2 ? (_this.l() * -0.25) : 0;
|
|
16877
16890
|
return $ret;
|
|
16878
16891
|
})()));
|
|
16879
16892
|
b.j.add(((function () {
|
|
@@ -16882,141 +16895,141 @@
|
|
|
16882
16895
|
$ret.m = 1;
|
|
16883
16896
|
return $ret;
|
|
16884
16897
|
})()));
|
|
16885
|
-
igniteuiWebcomponentsCore.NativeUI.af(this.
|
|
16886
|
-
this.
|
|
16898
|
+
igniteuiWebcomponentsCore.NativeUI.af(this.m.rootWrapper, b);
|
|
16899
|
+
this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
16887
16900
|
};
|
|
16888
|
-
InputView.prototype.
|
|
16889
|
-
var a = this.
|
|
16901
|
+
InputView.prototype.l = function () {
|
|
16902
|
+
var a = this.m.rootWrapper.getStyleProperty("height");
|
|
16890
16903
|
var b = parseFloat(igniteuiWebcomponentsCore.stringReplace(a, "px", ""));
|
|
16891
16904
|
return b;
|
|
16892
16905
|
};
|
|
16893
|
-
InputView.prototype.
|
|
16894
|
-
this.
|
|
16906
|
+
InputView.prototype.ay = function (a) {
|
|
16907
|
+
this.n.setProperty("value", a);
|
|
16895
16908
|
};
|
|
16896
|
-
InputView.prototype.
|
|
16897
|
-
this.
|
|
16909
|
+
InputView.prototype.a0 = function (a) {
|
|
16910
|
+
this.n.setAttribute("name", a);
|
|
16898
16911
|
};
|
|
16899
|
-
InputView.prototype.
|
|
16900
|
-
this.
|
|
16912
|
+
InputView.prototype.y = function (a) {
|
|
16913
|
+
this.c.cz();
|
|
16901
16914
|
};
|
|
16902
|
-
InputView.prototype.
|
|
16903
|
-
this.
|
|
16915
|
+
InputView.prototype.af = function (a) {
|
|
16916
|
+
this.c.c7();
|
|
16904
16917
|
};
|
|
16905
|
-
InputView.prototype.
|
|
16906
|
-
var b = this.
|
|
16907
|
-
this.
|
|
16918
|
+
InputView.prototype.aj = function (a) {
|
|
16919
|
+
var b = this.bd(a);
|
|
16920
|
+
this.c.dd(b);
|
|
16908
16921
|
if (b.handled) {
|
|
16909
16922
|
a.preventDefault();
|
|
16910
16923
|
}
|
|
16911
16924
|
};
|
|
16912
|
-
InputView.prototype.
|
|
16913
|
-
var b = this.
|
|
16914
|
-
this.
|
|
16925
|
+
InputView.prototype.ak = function (a) {
|
|
16926
|
+
var b = this.bd(a);
|
|
16927
|
+
this.c.dg(b);
|
|
16915
16928
|
if (b.handled) {
|
|
16916
16929
|
a.preventDefault();
|
|
16917
16930
|
}
|
|
16918
16931
|
};
|
|
16919
|
-
InputView.prototype.
|
|
16932
|
+
InputView.prototype.bd = function (a) {
|
|
16920
16933
|
var b = new igniteuiWebcomponentsCore.MouseButtonEventArgs();
|
|
16921
16934
|
b.position = { $type: igniteuiWebcomponentsCore.Point_$type, x: a.offsetX, y: a.offsetY };
|
|
16922
16935
|
return b;
|
|
16923
16936
|
};
|
|
16924
|
-
InputView.prototype.y = function (a) {
|
|
16925
|
-
this.b.c0();
|
|
16926
|
-
};
|
|
16927
16937
|
InputView.prototype.z = function (a) {
|
|
16928
|
-
this.
|
|
16938
|
+
this.c.c0();
|
|
16929
16939
|
};
|
|
16930
|
-
InputView.prototype.
|
|
16931
|
-
|
|
16932
|
-
this.b.da(b);
|
|
16940
|
+
InputView.prototype.aa = function (a) {
|
|
16941
|
+
this.c.c1();
|
|
16933
16942
|
};
|
|
16934
|
-
InputView.prototype.
|
|
16943
|
+
InputView.prototype.ag = function (a) {
|
|
16935
16944
|
var b = new igniteuiWebcomponentsCore.KeyEventArgs(0, a);
|
|
16936
|
-
this.
|
|
16945
|
+
this.c.da(b);
|
|
16937
16946
|
};
|
|
16938
|
-
InputView.prototype.
|
|
16947
|
+
InputView.prototype.ai = function (a) {
|
|
16939
16948
|
var b = new igniteuiWebcomponentsCore.KeyEventArgs(0, a);
|
|
16940
|
-
this.
|
|
16949
|
+
this.c.dc(b);
|
|
16941
16950
|
};
|
|
16942
|
-
InputView.prototype.
|
|
16943
|
-
|
|
16951
|
+
InputView.prototype.ah = function (a) {
|
|
16952
|
+
var b = new igniteuiWebcomponentsCore.KeyEventArgs(0, a);
|
|
16953
|
+
this.c.db(b);
|
|
16944
16954
|
};
|
|
16945
|
-
InputView.prototype.
|
|
16946
|
-
this.
|
|
16955
|
+
InputView.prototype.al = function (a) {
|
|
16956
|
+
this.c.dh();
|
|
16947
16957
|
};
|
|
16948
16958
|
InputView.prototype.ad = function (a) {
|
|
16949
|
-
this.
|
|
16959
|
+
this.c.c5();
|
|
16950
16960
|
};
|
|
16951
|
-
InputView.prototype.
|
|
16952
|
-
|
|
16953
|
-
|
|
16954
|
-
|
|
16955
|
-
|
|
16961
|
+
InputView.prototype.ae = function (a) {
|
|
16962
|
+
this.c.c6();
|
|
16963
|
+
};
|
|
16964
|
+
InputView.prototype.bb = function (a) {
|
|
16965
|
+
if (this.s != a) {
|
|
16966
|
+
this.s = a;
|
|
16967
|
+
if (this.o != null) {
|
|
16968
|
+
this.o.setAttribute("d", this.s);
|
|
16956
16969
|
}
|
|
16957
16970
|
}
|
|
16958
16971
|
};
|
|
16959
|
-
InputView.prototype.
|
|
16960
|
-
return this.
|
|
16972
|
+
InputView.prototype.t = function () {
|
|
16973
|
+
return this.n.getProperty("value");
|
|
16961
16974
|
};
|
|
16962
|
-
InputView.prototype.
|
|
16975
|
+
InputView.prototype.v = function (a) {
|
|
16963
16976
|
};
|
|
16964
|
-
InputView.prototype.
|
|
16965
|
-
if (this.
|
|
16966
|
-
if (this.
|
|
16967
|
-
this.
|
|
16977
|
+
InputView.prototype.a8 = function () {
|
|
16978
|
+
if (this.i()) {
|
|
16979
|
+
if (this.c.as) {
|
|
16980
|
+
this.n.setAttribute("tabindex", this.c.be.toString());
|
|
16968
16981
|
}
|
|
16969
16982
|
else {
|
|
16970
|
-
this.
|
|
16983
|
+
this.n.getNativeElement().removeAttribute("tabindex");
|
|
16971
16984
|
}
|
|
16972
16985
|
}
|
|
16973
16986
|
};
|
|
16974
|
-
InputView.prototype.
|
|
16975
|
-
var a = this.
|
|
16987
|
+
InputView.prototype.q = function () {
|
|
16988
|
+
var a = this.n.getProperty("selectionStart");
|
|
16976
16989
|
return igniteuiWebcomponentsCore.typeGetValue(a);
|
|
16977
16990
|
};
|
|
16978
|
-
InputView.prototype.
|
|
16979
|
-
var a = this.
|
|
16991
|
+
InputView.prototype.p = function () {
|
|
16992
|
+
var a = this.n.getProperty("selectionEnd");
|
|
16980
16993
|
return igniteuiWebcomponentsCore.typeGetValue(a);
|
|
16981
16994
|
};
|
|
16982
|
-
InputView.prototype.
|
|
16983
|
-
this.
|
|
16995
|
+
InputView.prototype.a4 = function (a) {
|
|
16996
|
+
this.n.setProperty("selectionStart", a);
|
|
16984
16997
|
};
|
|
16985
|
-
InputView.prototype.
|
|
16986
|
-
this.
|
|
16998
|
+
InputView.prototype.a2 = function (a) {
|
|
16999
|
+
this.n.setProperty("selectionEnd", a);
|
|
16987
17000
|
};
|
|
16988
|
-
InputView.prototype.
|
|
16989
|
-
if (this.
|
|
17001
|
+
InputView.prototype.au = function () {
|
|
17002
|
+
if (this.i()) {
|
|
16990
17003
|
}
|
|
16991
17004
|
};
|
|
16992
|
-
InputView.prototype.v = function (a) {
|
|
16993
|
-
this.b.de();
|
|
16994
|
-
};
|
|
16995
17005
|
InputView.prototype.w = function (a) {
|
|
16996
|
-
this.
|
|
17006
|
+
this.c.de();
|
|
16997
17007
|
};
|
|
16998
|
-
InputView.prototype.
|
|
16999
|
-
this.
|
|
17000
|
-
|
|
17001
|
-
|
|
17002
|
-
this.
|
|
17003
|
-
this.
|
|
17004
|
-
this.
|
|
17005
|
-
this.
|
|
17006
|
-
this.
|
|
17007
|
-
this.
|
|
17008
|
-
this.
|
|
17009
|
-
this.
|
|
17010
|
-
this.
|
|
17011
|
-
this.
|
|
17012
|
-
this.
|
|
17013
|
-
this.
|
|
17014
|
-
|
|
17015
|
-
|
|
17008
|
+
InputView.prototype.x = function (a) {
|
|
17009
|
+
this.c.df();
|
|
17010
|
+
};
|
|
17011
|
+
InputView.prototype.ao = function () {
|
|
17012
|
+
this.e = true;
|
|
17013
|
+
this.k.add(this.n.listen("change", igniteuiWebcomponentsCore.runOn(this, this.z)));
|
|
17014
|
+
this.k.add(this.n.listen("input", igniteuiWebcomponentsCore.runOn(this, this.aa)));
|
|
17015
|
+
this.k.add(this.n.listen("focus", igniteuiWebcomponentsCore.runOn(this, this.af)));
|
|
17016
|
+
this.k.add(this.n.listen("blur", igniteuiWebcomponentsCore.runOn(this, this.y)));
|
|
17017
|
+
this.k.add(this.n.listen("mouseenter", igniteuiWebcomponentsCore.runOn(this, this.w)));
|
|
17018
|
+
this.k.add(this.n.listen("mouseleave", igniteuiWebcomponentsCore.runOn(this, this.x)));
|
|
17019
|
+
this.k.add(this.n.listen("keydown", igniteuiWebcomponentsCore.runOn(this, this.ag)));
|
|
17020
|
+
this.k.add(this.n.listen("paste", igniteuiWebcomponentsCore.runOn(this, this.al)));
|
|
17021
|
+
this.k.add(this.n.listen("dragenter", igniteuiWebcomponentsCore.runOn(this, this.ad)));
|
|
17022
|
+
this.k.add(this.n.listen("dragleave", igniteuiWebcomponentsCore.runOn(this, this.ae)));
|
|
17023
|
+
this.k.add(this.n.listen("compositionstart", igniteuiWebcomponentsCore.runOn(this, this.ac)));
|
|
17024
|
+
this.k.add(this.n.listen("compositionend", igniteuiWebcomponentsCore.runOn(this, this.ab)));
|
|
17025
|
+
this.k.add(this.n.listen("mousedown", igniteuiWebcomponentsCore.runOn(this, this.aj)));
|
|
17026
|
+
this.k.add(this.n.listen("mouseup", igniteuiWebcomponentsCore.runOn(this, this.ak)));
|
|
17027
|
+
};
|
|
17028
|
+
InputView.prototype.ar = function () {
|
|
17016
17029
|
var e_10, _a;
|
|
17017
|
-
this.
|
|
17030
|
+
this.e = false;
|
|
17018
17031
|
try {
|
|
17019
|
-
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.
|
|
17032
|
+
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.k)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
17020
17033
|
var a = _c.value;
|
|
17021
17034
|
a();
|
|
17022
17035
|
}
|
|
@@ -17034,58 +17047,67 @@
|
|
|
17034
17047
|
throw e_10.error;
|
|
17035
17048
|
}
|
|
17036
17049
|
}
|
|
17037
|
-
this.
|
|
17050
|
+
this.k.clear();
|
|
17038
17051
|
};
|
|
17039
|
-
InputView.prototype.
|
|
17052
|
+
InputView.prototype.bc = function (a) {
|
|
17040
17053
|
if (a != null) {
|
|
17041
|
-
this.
|
|
17054
|
+
this.n.setStyleProperty("font", a.fontString);
|
|
17042
17055
|
}
|
|
17043
17056
|
};
|
|
17044
|
-
InputView.prototype.
|
|
17057
|
+
InputView.prototype.a7 = function () {
|
|
17045
17058
|
};
|
|
17046
|
-
InputView.prototype.
|
|
17047
|
-
if (this.
|
|
17048
|
-
var a = this.
|
|
17059
|
+
InputView.prototype.ap = function () {
|
|
17060
|
+
if (this.n != null) {
|
|
17061
|
+
var a = this.n.getNativeElement();
|
|
17049
17062
|
a.blur();
|
|
17050
17063
|
}
|
|
17051
17064
|
};
|
|
17052
|
-
InputView.prototype.
|
|
17053
|
-
if (this.
|
|
17054
|
-
this.
|
|
17065
|
+
InputView.prototype.as = function (a) {
|
|
17066
|
+
if (this.n != null) {
|
|
17067
|
+
this.n.focus(a);
|
|
17055
17068
|
}
|
|
17056
17069
|
};
|
|
17057
|
-
InputView.prototype.
|
|
17058
|
-
if (this.
|
|
17059
|
-
var nativeInput_ = this.
|
|
17070
|
+
InputView.prototype.aw = function () {
|
|
17071
|
+
if (this.n != null) {
|
|
17072
|
+
var nativeInput_ = this.n;
|
|
17060
17073
|
nativeInput_.getNativeElement().select();
|
|
17061
17074
|
}
|
|
17062
17075
|
};
|
|
17063
|
-
InputView.prototype.
|
|
17064
|
-
if (this.
|
|
17065
|
-
var c = this.
|
|
17076
|
+
InputView.prototype.a3 = function (a, b) {
|
|
17077
|
+
if (this.n != null) {
|
|
17078
|
+
var c = this.n.getNativeElement();
|
|
17066
17079
|
c.setSelectionRange(a, b);
|
|
17067
17080
|
}
|
|
17068
17081
|
};
|
|
17069
|
-
InputView.prototype.
|
|
17082
|
+
InputView.prototype.am = function () {
|
|
17070
17083
|
if (igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h == null) {
|
|
17071
|
-
igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h = this.
|
|
17084
|
+
igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h = this.m;
|
|
17072
17085
|
}
|
|
17073
17086
|
};
|
|
17074
|
-
InputView.prototype.
|
|
17075
|
-
return new igniteuiWebcomponentsCore.AnimationKeyFrameEffect(0, this.
|
|
17087
|
+
InputView.prototype.b = function (a) {
|
|
17088
|
+
return new igniteuiWebcomponentsCore.AnimationKeyFrameEffect(0, this.m.rootWrapper, 0, null, a);
|
|
17076
17089
|
};
|
|
17077
|
-
InputView.prototype.
|
|
17078
|
-
if (InputView.
|
|
17090
|
+
InputView.prototype.an = function () {
|
|
17091
|
+
if (InputView.f) {
|
|
17079
17092
|
return;
|
|
17080
17093
|
}
|
|
17081
17094
|
var a = "\r\n.ig-input-hide-spinner::-webkit-outer-spin-button,\r\n.ig-input-hide-spinner::-webkit-inner-spin-button {\r\n -webkit-appearance: none;\r\n margin: 0;\r\n}";
|
|
17082
|
-
var b = this.
|
|
17095
|
+
var b = this.m.createElement("style");
|
|
17083
17096
|
b.setRawText(a);
|
|
17084
17097
|
document.head.appendChild(b.getNativeElement());
|
|
17085
|
-
InputView.
|
|
17098
|
+
InputView.f = true;
|
|
17099
|
+
};
|
|
17100
|
+
InputView.prototype.a = function () {
|
|
17101
|
+
var rect_ = this.n.getNativeElement().getBoundingClientRect();
|
|
17102
|
+
var a = (rect_.top);
|
|
17103
|
+
var b = (rect_.left);
|
|
17104
|
+
var c = new Array(2);
|
|
17105
|
+
c[0] = a;
|
|
17106
|
+
c[1] = b;
|
|
17107
|
+
return c;
|
|
17086
17108
|
};
|
|
17087
17109
|
InputView.$t = igniteuiWebcomponentsCore.markType(InputView, 'InputView');
|
|
17088
|
-
InputView.
|
|
17110
|
+
InputView.f = false;
|
|
17089
17111
|
return InputView;
|
|
17090
17112
|
}(igniteuiWebcomponentsCore.Base));
|
|
17091
17113
|
/**
|
|
@@ -18256,7 +18278,7 @@
|
|
|
18256
18278
|
configurable: true
|
|
18257
18279
|
});
|
|
18258
18280
|
XInputGroup.prototype.onChildrenMutated = function () {
|
|
18259
|
-
this.jr(function (a) { return a.view.
|
|
18281
|
+
this.jr(function (a) { return a.view.a9(); });
|
|
18260
18282
|
this.js(function (a) { return a.view.aj(); });
|
|
18261
18283
|
this.jt(function (a) { return a.view.r(); });
|
|
18262
18284
|
this.ju(function (a) { return a.view.r(); });
|
|
@@ -20190,7 +20212,7 @@
|
|
|
20190
20212
|
this.view.ag();
|
|
20191
20213
|
};
|
|
20192
20214
|
XInputGroup.prototype.ensureShift = function () {
|
|
20193
|
-
this.jr(function (a) { return a.view.
|
|
20215
|
+
this.jr(function (a) { return a.view.a9(); });
|
|
20194
20216
|
this.js(function (a) { return a.view.aj(); });
|
|
20195
20217
|
this.jt(function (a) { return a.view.r(); });
|
|
20196
20218
|
this.ju(function (a) { return a.view.r(); });
|
|
@@ -21637,9 +21659,9 @@
|
|
|
21637
21659
|
_this.a0 = false;
|
|
21638
21660
|
_this.u = new MaskParsingService();
|
|
21639
21661
|
var a = new InputView();
|
|
21640
|
-
a.
|
|
21662
|
+
a.c = _this;
|
|
21641
21663
|
_this.view = a;
|
|
21642
|
-
_this.view.
|
|
21664
|
+
_this.view.at();
|
|
21643
21665
|
XInput.ae = new igniteuiWebcomponentsCore.FontInfo();
|
|
21644
21666
|
XInput.ae.q = "Verdana";
|
|
21645
21667
|
return _this;
|
|
@@ -21784,7 +21806,7 @@
|
|
|
21784
21806
|
break;
|
|
21785
21807
|
case "Value":
|
|
21786
21808
|
if (!this.al) {
|
|
21787
|
-
this.view.
|
|
21809
|
+
this.view.ay(this.cq);
|
|
21788
21810
|
if (this.b != null) {
|
|
21789
21811
|
this.b.kh();
|
|
21790
21812
|
}
|
|
@@ -21794,14 +21816,14 @@
|
|
|
21794
21816
|
}
|
|
21795
21817
|
break;
|
|
21796
21818
|
case "Name":
|
|
21797
|
-
this.view.
|
|
21819
|
+
this.view.a0(this.e);
|
|
21798
21820
|
break;
|
|
21799
21821
|
case "Density":
|
|
21800
21822
|
this.z = this.aa == 0 ? 1 : this.aa;
|
|
21801
21823
|
break;
|
|
21802
21824
|
case "ActualDensity":
|
|
21825
|
+
this.view.ba();
|
|
21803
21826
|
this.view.a9();
|
|
21804
|
-
this.view.a8();
|
|
21805
21827
|
break;
|
|
21806
21828
|
case "InputGroup":
|
|
21807
21829
|
this.c8();
|
|
@@ -21824,33 +21846,33 @@
|
|
|
21824
21846
|
this.c9();
|
|
21825
21847
|
break;
|
|
21826
21848
|
case "IsDisabled":
|
|
21827
|
-
this.view.
|
|
21849
|
+
this.view.az(this.am);
|
|
21828
21850
|
break;
|
|
21829
21851
|
case "IsReadOnly":
|
|
21830
|
-
this.view.
|
|
21852
|
+
this.view.a1(this.ao);
|
|
21831
21853
|
break;
|
|
21832
21854
|
case "TextAlignment":
|
|
21833
|
-
this.view.
|
|
21855
|
+
this.view.a6(this.dy);
|
|
21834
21856
|
break;
|
|
21835
21857
|
case "ShowSpinner":
|
|
21836
|
-
this.view.
|
|
21858
|
+
this.view.a5(this.a1);
|
|
21837
21859
|
break;
|
|
21838
21860
|
case "TabIndex":
|
|
21839
|
-
this.view.
|
|
21861
|
+
this.view.a8();
|
|
21840
21862
|
break;
|
|
21841
21863
|
}
|
|
21842
21864
|
};
|
|
21843
21865
|
XInput.prototype.di = function () {
|
|
21844
|
-
this.view.
|
|
21866
|
+
this.view.av();
|
|
21845
21867
|
};
|
|
21846
21868
|
XInput.prototype.dk = function () {
|
|
21847
|
-
this.view.
|
|
21869
|
+
this.view.ax();
|
|
21848
21870
|
};
|
|
21849
21871
|
XInput.prototype.dj = function () {
|
|
21850
|
-
this.view.
|
|
21872
|
+
this.view.a9();
|
|
21851
21873
|
};
|
|
21852
21874
|
XInput.prototype.c8 = function () {
|
|
21853
|
-
this.view.
|
|
21875
|
+
this.view.a9();
|
|
21854
21876
|
};
|
|
21855
21877
|
XInput.prototype.dv = function () {
|
|
21856
21878
|
this.d4 = this.d8 != null ? this.d8 : XInput.d6;
|
|
@@ -21859,10 +21881,10 @@
|
|
|
21859
21881
|
};
|
|
21860
21882
|
XInput.prototype.du = function () {
|
|
21861
21883
|
if (this.ad != null) {
|
|
21862
|
-
this.view.
|
|
21884
|
+
this.view.bc(this.ad);
|
|
21863
21885
|
}
|
|
21864
|
-
igniteuiWebcomponentsCore.NativeUI.q(this.view.
|
|
21865
|
-
this.view.
|
|
21886
|
+
igniteuiWebcomponentsCore.NativeUI.q(this.view.r, this.d4);
|
|
21887
|
+
this.view.a7();
|
|
21866
21888
|
};
|
|
21867
21889
|
Object.defineProperty(XInput.prototype, "d4", {
|
|
21868
21890
|
get: function () {
|
|
@@ -21993,12 +22015,12 @@
|
|
|
21993
22015
|
XInput.prototype.c0 = function () {
|
|
21994
22016
|
var _this = this;
|
|
21995
22017
|
this.al = true;
|
|
21996
|
-
this.cq = this.view.
|
|
22018
|
+
this.cq = this.view.t();
|
|
21997
22019
|
if (this.change != null) {
|
|
21998
22020
|
this.change(this, ((function () {
|
|
21999
22021
|
var $ret = new InputChangeEventArgs();
|
|
22000
22022
|
$ret.value = _this.cq;
|
|
22001
|
-
$ret.isCompositionInProgress = _this.view.
|
|
22023
|
+
$ret.isCompositionInProgress = _this.view.h;
|
|
22002
22024
|
return $ret;
|
|
22003
22025
|
})()));
|
|
22004
22026
|
}
|
|
@@ -22007,7 +22029,7 @@
|
|
|
22007
22029
|
XInput.prototype.c1 = function () {
|
|
22008
22030
|
var _this = this;
|
|
22009
22031
|
this.al = true;
|
|
22010
|
-
this.cq = this.view.
|
|
22032
|
+
this.cq = this.view.t();
|
|
22011
22033
|
this.al = false;
|
|
22012
22034
|
if (this.ce != null) {
|
|
22013
22035
|
this.aq = true;
|
|
@@ -22050,7 +22072,7 @@
|
|
|
22050
22072
|
this.changing(this, ((function () {
|
|
22051
22073
|
var $ret = new InputChangeEventArgs();
|
|
22052
22074
|
$ret.value = _this.cq;
|
|
22053
|
-
$ret.isCompositionInProgress = _this.view.
|
|
22075
|
+
$ret.isCompositionInProgress = _this.view.h;
|
|
22054
22076
|
return $ret;
|
|
22055
22077
|
})()));
|
|
22056
22078
|
}
|
|
@@ -22171,7 +22193,7 @@
|
|
|
22171
22193
|
XInput.prototype.cu = function () {
|
|
22172
22194
|
this.a9 = 0;
|
|
22173
22195
|
this.aj = false;
|
|
22174
|
-
this.view.
|
|
22196
|
+
this.view.a8();
|
|
22175
22197
|
};
|
|
22176
22198
|
Object.defineProperty(XInput.prototype, "b2", {
|
|
22177
22199
|
get: function () {
|
|
@@ -22281,86 +22303,89 @@
|
|
|
22281
22303
|
XInput.prototype.dl = function () {
|
|
22282
22304
|
};
|
|
22283
22305
|
XInput.prototype.onDetachedFromUI = function () {
|
|
22284
|
-
this.view.
|
|
22306
|
+
this.view.ar();
|
|
22285
22307
|
};
|
|
22286
22308
|
XInput.prototype.onAttachedToUI = function () {
|
|
22287
|
-
this.view.
|
|
22309
|
+
this.view.ao();
|
|
22288
22310
|
};
|
|
22289
22311
|
XInput.prototype.az = function () {
|
|
22290
|
-
return this.view.
|
|
22312
|
+
return this.view.i();
|
|
22291
22313
|
};
|
|
22292
22314
|
XInput.prototype.bg = function () {
|
|
22293
22315
|
return this.j();
|
|
22294
22316
|
};
|
|
22295
22317
|
XInput.prototype.b1 = function () {
|
|
22296
22318
|
var a = this.j();
|
|
22297
|
-
return a.
|
|
22319
|
+
return a.p();
|
|
22298
22320
|
};
|
|
22299
22321
|
XInput.prototype.j = function () {
|
|
22300
22322
|
var a = new InputVisualModelExport();
|
|
22301
|
-
var b = this.view.
|
|
22302
|
-
|
|
22303
|
-
a.
|
|
22323
|
+
var b = this.view.r;
|
|
22324
|
+
var c = this.view.a();
|
|
22325
|
+
a.i = c[0];
|
|
22326
|
+
a.g = c[1];
|
|
22327
|
+
a.f = this.view.m.rootWrapper.height();
|
|
22328
|
+
a.j = this.view.m.rootWrapper.width();
|
|
22304
22329
|
a.b = this.o;
|
|
22305
22330
|
a.c = this.z;
|
|
22306
|
-
a.
|
|
22307
|
-
a.
|
|
22331
|
+
a.l = this.ce;
|
|
22332
|
+
a.o = this.ci;
|
|
22308
22333
|
a.d = this.au;
|
|
22309
22334
|
a.a = igniteuiWebcomponentsCore.AppearanceHelper.a(igniteuiWebcomponentsCore.NativeUI.al(b));
|
|
22310
|
-
a.
|
|
22311
|
-
a.
|
|
22335
|
+
a.k = this.b8;
|
|
22336
|
+
a.n = this.cg;
|
|
22312
22337
|
a.e = this.aw;
|
|
22313
|
-
a.
|
|
22314
|
-
a.
|
|
22338
|
+
a.v = this.cq;
|
|
22339
|
+
a.m = this.e;
|
|
22315
22340
|
if (this.ad != null) {
|
|
22316
|
-
var
|
|
22317
|
-
if (this.view != null &&
|
|
22318
|
-
var
|
|
22319
|
-
var
|
|
22320
|
-
|
|
22321
|
-
|
|
22322
|
-
|
|
22323
|
-
|
|
22324
|
-
|
|
22325
|
-
|
|
22341
|
+
var d = this.ad;
|
|
22342
|
+
if (this.view != null && d.q == null) {
|
|
22343
|
+
var e = this.view.m;
|
|
22344
|
+
var f = igniteuiWebcomponentsCore.FontUtil.getFontInfoFromString(e, d.fontString);
|
|
22345
|
+
d.q = f.q;
|
|
22346
|
+
d.f = f.f;
|
|
22347
|
+
d.r = f.r;
|
|
22348
|
+
d.t = f.t;
|
|
22349
|
+
d.u = f.u;
|
|
22350
|
+
d.v = f.v;
|
|
22326
22351
|
}
|
|
22327
|
-
if (
|
|
22328
|
-
a.
|
|
22352
|
+
if (d.q != null) {
|
|
22353
|
+
a.q = d.q;
|
|
22329
22354
|
}
|
|
22330
|
-
if (!igniteuiWebcomponentsCore.isNaN_(
|
|
22331
|
-
a.
|
|
22355
|
+
if (!igniteuiWebcomponentsCore.isNaN_(d.f)) {
|
|
22356
|
+
a.h = d.f;
|
|
22332
22357
|
}
|
|
22333
|
-
if (
|
|
22334
|
-
a.
|
|
22358
|
+
if (d.v != null) {
|
|
22359
|
+
a.u = d.v;
|
|
22335
22360
|
}
|
|
22336
|
-
if (
|
|
22337
|
-
a.
|
|
22361
|
+
if (d.t != null) {
|
|
22362
|
+
a.s = d.t;
|
|
22338
22363
|
}
|
|
22339
|
-
if (
|
|
22340
|
-
a.
|
|
22364
|
+
if (d.r != null) {
|
|
22365
|
+
a.r = d.t;
|
|
22341
22366
|
}
|
|
22342
22367
|
}
|
|
22343
22368
|
return a;
|
|
22344
22369
|
};
|
|
22345
22370
|
XInput.prototype.dr = function (a, b) {
|
|
22346
|
-
this.view.
|
|
22371
|
+
this.view.a3(a, b);
|
|
22347
22372
|
};
|
|
22348
22373
|
XInput.prototype.provideContainer = function (a) {
|
|
22349
|
-
this.view.
|
|
22374
|
+
this.view.aq(a);
|
|
22350
22375
|
};
|
|
22351
22376
|
XInput.prototype.ct = function () {
|
|
22352
22377
|
this.cz();
|
|
22353
|
-
this.view.
|
|
22378
|
+
this.view.ap();
|
|
22354
22379
|
};
|
|
22355
22380
|
XInput.prototype.focus = function (a) {
|
|
22356
22381
|
if (a === void 0) {
|
|
22357
22382
|
a = false;
|
|
22358
22383
|
}
|
|
22359
22384
|
this.c7();
|
|
22360
|
-
this.view.
|
|
22385
|
+
this.view.as(a);
|
|
22361
22386
|
};
|
|
22362
22387
|
XInput.prototype.dp = function () {
|
|
22363
|
-
this.view.
|
|
22388
|
+
this.view.aw();
|
|
22364
22389
|
};
|
|
22365
22390
|
XInput.prototype.dt = function (a) {
|
|
22366
22391
|
this.aq = true;
|
|
@@ -22395,7 +22420,7 @@
|
|
|
22395
22420
|
this.changing(this, ((function () {
|
|
22396
22421
|
var $ret = new InputChangeEventArgs();
|
|
22397
22422
|
$ret.value = _this.cq;
|
|
22398
|
-
$ret.isCompositionInProgress = _this.view.
|
|
22423
|
+
$ret.isCompositionInProgress = _this.view.h;
|
|
22399
22424
|
return $ret;
|
|
22400
22425
|
})()));
|
|
22401
22426
|
}
|
|
@@ -22408,19 +22433,19 @@
|
|
|
22408
22433
|
this.q = 0;
|
|
22409
22434
|
};
|
|
22410
22435
|
XInput.prototype.bb = function () {
|
|
22411
|
-
var a = this.view.
|
|
22412
|
-
var b = this.view.
|
|
22436
|
+
var a = this.view.q();
|
|
22437
|
+
var b = this.view.p();
|
|
22413
22438
|
return a == b && this.ai ? b - this.bk.length : a;
|
|
22414
22439
|
};
|
|
22415
22440
|
XInput.prototype.ba = function () {
|
|
22416
|
-
return this.view.
|
|
22441
|
+
return this.view.p();
|
|
22417
22442
|
};
|
|
22418
22443
|
Object.defineProperty(XInput.prototype, "selectionStart", {
|
|
22419
22444
|
get: function () {
|
|
22420
22445
|
return this.bb();
|
|
22421
22446
|
},
|
|
22422
22447
|
set: function (a) {
|
|
22423
|
-
this.view.
|
|
22448
|
+
this.view.a4(a);
|
|
22424
22449
|
},
|
|
22425
22450
|
enumerable: false,
|
|
22426
22451
|
configurable: true
|
|
@@ -22430,7 +22455,7 @@
|
|
|
22430
22455
|
return this.ba();
|
|
22431
22456
|
},
|
|
22432
22457
|
set: function (a) {
|
|
22433
|
-
this.view.
|
|
22458
|
+
this.view.a2(a);
|
|
22434
22459
|
},
|
|
22435
22460
|
enumerable: false,
|
|
22436
22461
|
configurable: true
|
|
@@ -22471,9 +22496,9 @@
|
|
|
22471
22496
|
this.dm(this.ag, this.ay);
|
|
22472
22497
|
};
|
|
22473
22498
|
XInput.prototype.cw = function () {
|
|
22474
|
-
this.view.
|
|
22499
|
+
this.view.am();
|
|
22475
22500
|
if (this.ag == null) {
|
|
22476
|
-
this.ag = igniteuiWebcomponentsCore.KeyFrameAnimationFactory.f.c(this.view.
|
|
22501
|
+
this.ag = igniteuiWebcomponentsCore.KeyFrameAnimationFactory.f.c(this.view.b(this.i).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(1, 0)).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(1, 1)));
|
|
22477
22502
|
}
|
|
22478
22503
|
};
|
|
22479
22504
|
Object.defineProperty(XInput.prototype, "i", {
|
|
@@ -30299,7 +30324,16 @@
|
|
|
30299
30324
|
window.setTimeout(function () { return e.dr(b, c); }, 0);
|
|
30300
30325
|
};
|
|
30301
30326
|
XInputBridge.prototype.exportVisualData = function (a) {
|
|
30302
|
-
|
|
30327
|
+
if (!(igniteuiWebcomponentsCore.typeCast(XInputGroup.$, a) !== null)) {
|
|
30328
|
+
return null;
|
|
30329
|
+
}
|
|
30330
|
+
var b = a;
|
|
30331
|
+
if (b.inputs == null || b.inputs.count == 0 || !(igniteuiWebcomponentsCore.typeCast(XInput.$, b.inputs._inner[0]) !== null)) {
|
|
30332
|
+
return null;
|
|
30333
|
+
}
|
|
30334
|
+
var c = b.inputs._inner[0];
|
|
30335
|
+
var d = c.bg();
|
|
30336
|
+
return d;
|
|
30303
30337
|
};
|
|
30304
30338
|
XInputBridge.$t = igniteuiWebcomponentsCore.markType(XInputBridge, 'XInputBridge', XComponentBridge.$, [igniteuiWebcomponentsCore.INativeUIInputBridge_$type]);
|
|
30305
30339
|
return XInputBridge;
|
|
@@ -30426,7 +30460,7 @@
|
|
|
30426
30460
|
}
|
|
30427
30461
|
else {
|
|
30428
30462
|
this.ac = c;
|
|
30429
|
-
var e = d.view.
|
|
30463
|
+
var e = d.view.l.createElement("span");
|
|
30430
30464
|
e.setText(this.ac == null ? null : this.ac.toString());
|
|
30431
30465
|
d.appendButtonContent(e);
|
|
30432
30466
|
}
|
|
@@ -31953,7 +31987,7 @@
|
|
|
31953
31987
|
this.v = i;
|
|
31954
31988
|
var j = this.u.get2DCanvasContext(this.v);
|
|
31955
31989
|
this.l = new igniteuiWebcomponentsCore.RenderingContext(new igniteuiWebcomponentsCore.CanvasViewRenderer(), j);
|
|
31956
|
-
this.l.
|
|
31990
|
+
this.l.af(this.j);
|
|
31957
31991
|
this.ab();
|
|
31958
31992
|
this.a = new igniteuiWebcomponentsCore.CanvasGestureDOMEventProxy(this.u.rootWrapper, this.u, false);
|
|
31959
31993
|
this.a.bl = this.g.e0;
|
|
@@ -32028,7 +32062,7 @@
|
|
|
32028
32062
|
this.i = c;
|
|
32029
32063
|
this.j = this.i;
|
|
32030
32064
|
this.s = igniteuiWebcomponentsCore.FontUtil.getCurrentFontHeight(this.u, this.j);
|
|
32031
|
-
this.l.
|
|
32065
|
+
this.l.af(this.i);
|
|
32032
32066
|
this.g.trackDirty();
|
|
32033
32067
|
}
|
|
32034
32068
|
};
|
|
@@ -33963,6 +33997,10 @@
|
|
|
33963
33997
|
tslib.__extends(ButtonGroupVisualModelExport, _super);
|
|
33964
33998
|
function ButtonGroupVisualModelExport() {
|
|
33965
33999
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
34000
|
+
_this.m = 0;
|
|
34001
|
+
_this.n = 0;
|
|
34002
|
+
_this.o = 0;
|
|
34003
|
+
_this.l = 0;
|
|
33966
34004
|
_this.e = 0;
|
|
33967
34005
|
_this.f = 0;
|
|
33968
34006
|
_this.a = null;
|
|
@@ -33976,9 +34014,13 @@
|
|
|
33976
34014
|
_this.i = null;
|
|
33977
34015
|
return _this;
|
|
33978
34016
|
}
|
|
33979
|
-
ButtonGroupVisualModelExport.prototype.
|
|
34017
|
+
ButtonGroupVisualModelExport.prototype.p = function () {
|
|
33980
34018
|
var a = new igniteuiWebcomponentsCore.StringBuilder(0);
|
|
33981
34019
|
a.l("{");
|
|
34020
|
+
a.l("left : " + this.m + ", ");
|
|
34021
|
+
a.l("top : " + this.n + ", ");
|
|
34022
|
+
a.l("height : " + this.l + ", ");
|
|
34023
|
+
a.l("width : " + this.o + ", ");
|
|
33982
34024
|
a.l("baseTheme : " + igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.BaseControlTheme_$type, this.e) + ", ");
|
|
33983
34025
|
a.l("actualDensity : " + igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.f) + ", ");
|
|
33984
34026
|
a.l("selectedIndices : " + this.a + ", ");
|
|
@@ -35594,7 +35636,7 @@
|
|
|
35594
35636
|
};
|
|
35595
35637
|
XButtonGroup.prototype.bq = function () {
|
|
35596
35638
|
var a = this.e();
|
|
35597
|
-
return a.
|
|
35639
|
+
return a.p();
|
|
35598
35640
|
};
|
|
35599
35641
|
XButtonGroup.prototype.e = function () {
|
|
35600
35642
|
var a = new ButtonGroupVisualModelExport();
|
|
@@ -35832,7 +35874,13 @@
|
|
|
35832
35874
|
}
|
|
35833
35875
|
};
|
|
35834
35876
|
XButtonGroupBridge.prototype.exportVisualData = function (a) {
|
|
35835
|
-
|
|
35877
|
+
var b = a.a5();
|
|
35878
|
+
var c = this.getBoundingRect(a);
|
|
35879
|
+
b.m = c.left;
|
|
35880
|
+
b.n = c.top;
|
|
35881
|
+
b.o = c.width;
|
|
35882
|
+
b.l = c.height;
|
|
35883
|
+
return b;
|
|
35836
35884
|
};
|
|
35837
35885
|
XButtonGroupBridge.prototype.addButton = function (a, b) {
|
|
35838
35886
|
this.v.add(b);
|
|
@@ -35927,6 +35975,10 @@
|
|
|
35927
35975
|
tslib.__extends(CheckboxVisualModelExport, _super);
|
|
35928
35976
|
function CheckboxVisualModelExport() {
|
|
35929
35977
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
35978
|
+
_this.r = 0;
|
|
35979
|
+
_this.t = 0;
|
|
35980
|
+
_this.u = 0;
|
|
35981
|
+
_this.q = 0;
|
|
35930
35982
|
_this.f = 0;
|
|
35931
35983
|
_this.d = null;
|
|
35932
35984
|
_this.c = null;
|
|
@@ -35935,11 +35987,11 @@
|
|
|
35935
35987
|
_this.o = 0;
|
|
35936
35988
|
_this.l = 0;
|
|
35937
35989
|
_this.p = 0;
|
|
35938
|
-
_this.
|
|
35990
|
+
_this.s = 0;
|
|
35939
35991
|
_this.n = 0;
|
|
35940
35992
|
_this.m = 0;
|
|
35941
35993
|
_this.a = null;
|
|
35942
|
-
_this.
|
|
35994
|
+
_this.v = null;
|
|
35943
35995
|
_this.j = false;
|
|
35944
35996
|
_this.g = false;
|
|
35945
35997
|
_this.h = false;
|
|
@@ -35947,9 +35999,13 @@
|
|
|
35947
35999
|
_this.i = false;
|
|
35948
36000
|
return _this;
|
|
35949
36001
|
}
|
|
35950
|
-
CheckboxVisualModelExport.prototype.
|
|
36002
|
+
CheckboxVisualModelExport.prototype.w = function () {
|
|
35951
36003
|
var a = new igniteuiWebcomponentsCore.StringBuilder(0);
|
|
35952
36004
|
a.l("{");
|
|
36005
|
+
a.l("left : " + this.r + ", ");
|
|
36006
|
+
a.l("top : " + this.t + ", ");
|
|
36007
|
+
a.l("height : " + this.q + ", ");
|
|
36008
|
+
a.l("width : " + this.u + ", ");
|
|
35953
36009
|
a.l("baseTheme : " + this.f + ", ");
|
|
35954
36010
|
a.l("actualUncheckedBackgroundColor : " + this.d.serialize() + ", ");
|
|
35955
36011
|
a.l("actualTickColor : " + this.c + ", ");
|
|
@@ -35957,11 +36013,11 @@
|
|
|
35957
36013
|
a.l("actualCheckedBorderColor : " + this.b.serialize() + ", ");
|
|
35958
36014
|
a.l("borderWidth : " + this.o + ", ");
|
|
35959
36015
|
a.l("actualBorderWidth : " + this.l + ", ");
|
|
35960
|
-
a.l("tickStrokeWidth : " + this.
|
|
36016
|
+
a.l("tickStrokeWidth : " + this.s + ", ");
|
|
35961
36017
|
a.l("actualTickStrokeWidth : " + this.n + ", ");
|
|
35962
36018
|
a.l("actualCheckedBackgroundColor : " + this.a.serialize() + ", ");
|
|
35963
|
-
if (this.
|
|
35964
|
-
a.l("value : \"" + this.
|
|
36019
|
+
if (this.v != null) {
|
|
36020
|
+
a.l("value : \"" + this.v.toString() + "\", ");
|
|
35965
36021
|
}
|
|
35966
36022
|
a.l("isFocused : " + this.j + ", ");
|
|
35967
36023
|
a.l("disableRipple : " + this.g + ", ");
|
|
@@ -35988,30 +36044,30 @@
|
|
|
35988
36044
|
tslib.__extends(CheckboxView, _super);
|
|
35989
36045
|
function CheckboxView() {
|
|
35990
36046
|
var _this = _super.call(this) || this;
|
|
35991
|
-
_this.
|
|
35992
|
-
_this.l = null;
|
|
35993
|
-
_this.f = null;
|
|
35994
|
-
_this.j = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Delegate_$type, 0);
|
|
35995
|
-
_this.g = true;
|
|
35996
|
-
_this.r = null;
|
|
36047
|
+
_this.d = null;
|
|
35997
36048
|
_this.m = null;
|
|
35998
|
-
_this.
|
|
36049
|
+
_this.g = null;
|
|
36050
|
+
_this.k = new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.Delegate_$type, 0);
|
|
36051
|
+
_this.h = true;
|
|
36052
|
+
_this.s = null;
|
|
35999
36053
|
_this.n = null;
|
|
36054
|
+
_this.r = null;
|
|
36000
36055
|
_this.o = null;
|
|
36001
|
-
_this.d = null;
|
|
36002
36056
|
_this.p = null;
|
|
36057
|
+
_this.e = null;
|
|
36058
|
+
_this.q = null;
|
|
36003
36059
|
return _this;
|
|
36004
36060
|
}
|
|
36005
|
-
CheckboxView.prototype.
|
|
36061
|
+
CheckboxView.prototype.ag = function () {
|
|
36006
36062
|
};
|
|
36007
|
-
CheckboxView.prototype.
|
|
36063
|
+
CheckboxView.prototype.j = function () {
|
|
36008
36064
|
return true;
|
|
36009
36065
|
};
|
|
36010
|
-
CheckboxView.prototype.
|
|
36066
|
+
CheckboxView.prototype.ae = function (a) {
|
|
36011
36067
|
var e_1, _a;
|
|
36012
36068
|
if (a == null) {
|
|
36013
36069
|
try {
|
|
36014
|
-
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.
|
|
36070
|
+
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.k)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
36015
36071
|
var b = _c.value;
|
|
36016
36072
|
b();
|
|
36017
36073
|
}
|
|
@@ -36029,46 +36085,46 @@
|
|
|
36029
36085
|
throw e_1.error;
|
|
36030
36086
|
}
|
|
36031
36087
|
}
|
|
36032
|
-
this.
|
|
36088
|
+
this.k.clear();
|
|
36033
36089
|
return;
|
|
36034
36090
|
}
|
|
36035
|
-
this.
|
|
36036
|
-
this.
|
|
36037
|
-
this.
|
|
36038
|
-
this.
|
|
36039
|
-
this.
|
|
36040
|
-
var c = this.
|
|
36041
|
-
this.
|
|
36042
|
-
this.
|
|
36043
|
-
this.
|
|
36044
|
-
this.
|
|
36045
|
-
this.
|
|
36046
|
-
this.
|
|
36047
|
-
this.
|
|
36048
|
-
this.
|
|
36049
|
-
this.
|
|
36050
|
-
this.
|
|
36051
|
-
this.
|
|
36052
|
-
this.
|
|
36053
|
-
this.
|
|
36054
|
-
this.
|
|
36055
|
-
this.
|
|
36056
|
-
this.
|
|
36057
|
-
this.
|
|
36058
|
-
this.
|
|
36059
|
-
this.
|
|
36060
|
-
this.
|
|
36061
|
-
this.
|
|
36062
|
-
this.
|
|
36063
|
-
var d = this.
|
|
36091
|
+
this.m = a;
|
|
36092
|
+
this.m.rootWrapper.setStyleProperty("display", "flex");
|
|
36093
|
+
this.m.rootWrapper.setStyleProperty("flex-direction", "row");
|
|
36094
|
+
this.m.rootWrapper.setStyleProperty("flex-wrap", "no-wrap");
|
|
36095
|
+
this.m.rootWrapper.setStyleProperty("align-items", "center");
|
|
36096
|
+
var c = this.m.createElement("input");
|
|
36097
|
+
this.s = c;
|
|
36098
|
+
this.s.addClass("ig-native-checkbox");
|
|
36099
|
+
this.s.setStyleProperty("position", "absolute");
|
|
36100
|
+
this.s.setStyleProperty("width", "1px");
|
|
36101
|
+
this.s.setStyleProperty("height", "1px");
|
|
36102
|
+
this.s.setStyleProperty("margin", "-1px");
|
|
36103
|
+
this.s.setStyleProperty("border", "none");
|
|
36104
|
+
this.s.setStyleProperty("clip", "rect(0, 0, 0, 0)");
|
|
36105
|
+
this.s.setStyleProperty("outline", "0");
|
|
36106
|
+
this.s.setStyleProperty("pointer-events", "none");
|
|
36107
|
+
this.s.setStyleProperty("overflow", "hidden");
|
|
36108
|
+
this.s.setStyleProperty("-webkit-appearance", "none");
|
|
36109
|
+
this.s.setStyleProperty("-moz-appearance", "none");
|
|
36110
|
+
this.s.setStyleProperty("appearance", "none");
|
|
36111
|
+
this.s.setAttribute("type", "checkbox");
|
|
36112
|
+
this.s.setAttribute("id", this.d.b1);
|
|
36113
|
+
this.ak();
|
|
36114
|
+
this.k.add(c.listen("change", igniteuiWebcomponentsCore.runOn(this, this.y)));
|
|
36115
|
+
this.k.add(c.listen("click", igniteuiWebcomponentsCore.runOn(this, this.z)));
|
|
36116
|
+
this.k.add(c.listen("focus", igniteuiWebcomponentsCore.runOn(this, this.aa)));
|
|
36117
|
+
this.k.add(c.listen("blur", igniteuiWebcomponentsCore.runOn(this, this.x)));
|
|
36118
|
+
this.m.append(c);
|
|
36119
|
+
var d = this.m.createElement("div");
|
|
36064
36120
|
d.addClass("ig-checkbox-box");
|
|
36065
36121
|
d.setStyleProperty("width", "1.25em");
|
|
36066
36122
|
d.setStyleProperty("height", "1.25em");
|
|
36067
36123
|
d.setStyleProperty("position", "relative");
|
|
36068
|
-
this.
|
|
36069
|
-
this.
|
|
36070
|
-
var e = this.
|
|
36071
|
-
e.setAttribute("for", this.
|
|
36124
|
+
this.n = d;
|
|
36125
|
+
this.m.append(d);
|
|
36126
|
+
var e = this.m.createElement("label");
|
|
36127
|
+
e.setAttribute("for", this.d.b1);
|
|
36072
36128
|
e.addClass("ig-checkbox-composite");
|
|
36073
36129
|
e.setStyleProperty("box-sizing", "border-box");
|
|
36074
36130
|
e.setStyleProperty("position", "relative");
|
|
@@ -36087,9 +36143,9 @@
|
|
|
36087
36143
|
e.setStyleProperty("border-radius", "2px");
|
|
36088
36144
|
e.setStyleProperty("-webkit-tap-highlight-color", "transparent");
|
|
36089
36145
|
e.setStyleProperty("overflow", "hidden");
|
|
36090
|
-
this.
|
|
36091
|
-
this.
|
|
36092
|
-
var f = this.
|
|
36146
|
+
this.r = e;
|
|
36147
|
+
this.n.append(e);
|
|
36148
|
+
var f = this.m.createElementNS("svg", "http://www.w3.org/2000/svg");
|
|
36093
36149
|
f.setAttribute("viewBox", "0 0 24 24");
|
|
36094
36150
|
f.addClass("ig-checkbox-mark");
|
|
36095
36151
|
f.setStyleProperty("position", "absolute");
|
|
@@ -36105,14 +36161,14 @@
|
|
|
36105
36161
|
f.setStyleProperty("fill", "none");
|
|
36106
36162
|
f.setStyleProperty("opacity", "0");
|
|
36107
36163
|
f.setStyleProperty("z-index", "1");
|
|
36108
|
-
this.
|
|
36164
|
+
this.p = f;
|
|
36109
36165
|
e.append(f);
|
|
36110
|
-
var g = this.
|
|
36111
|
-
g.setAttribute("d", this.
|
|
36166
|
+
var g = this.m.createElementNS("path", "http://www.w3.org/2000/svg");
|
|
36167
|
+
g.setAttribute("d", this.d.bf);
|
|
36112
36168
|
f.append(g);
|
|
36113
|
-
this.
|
|
36114
|
-
var h = this.
|
|
36115
|
-
var i = this.
|
|
36169
|
+
this.o = g;
|
|
36170
|
+
var h = this.m.createElement("div");
|
|
36171
|
+
var i = this.m.getSubRenderer(h);
|
|
36116
36172
|
h.setStyleProperty("position", "absolute");
|
|
36117
36173
|
h.setStyleProperty("width", "3em");
|
|
36118
36174
|
h.setStyleProperty("height", "3em");
|
|
@@ -36123,12 +36179,12 @@
|
|
|
36123
36179
|
var j = new XRipple();
|
|
36124
36180
|
j.provideContainer(i);
|
|
36125
36181
|
j.q = d;
|
|
36126
|
-
var k = this.
|
|
36182
|
+
var k = this.m.getExternal(j, this.m.rootWrapper, this.m.getExternal(this.d, null, null));
|
|
36127
36183
|
j.h = true;
|
|
36128
36184
|
j.k = true;
|
|
36129
|
-
this.
|
|
36185
|
+
this.e = j;
|
|
36130
36186
|
d.append(h);
|
|
36131
|
-
var l = this.
|
|
36187
|
+
var l = this.m.createElement("span");
|
|
36132
36188
|
l.addClass("ig-checkbox-label");
|
|
36133
36189
|
l.setStyleProperty("font-family", "Verdana");
|
|
36134
36190
|
l.setStyleProperty("font-weight", "400");
|
|
@@ -36141,125 +36197,134 @@
|
|
|
36141
36197
|
l.setStyleProperty("margin-bottom", "0");
|
|
36142
36198
|
l.setStyleProperty("cursor", "pointer");
|
|
36143
36199
|
l.setStyleProperty("role", "label");
|
|
36144
|
-
this.
|
|
36145
|
-
this.
|
|
36146
|
-
this.
|
|
36147
|
-
this.
|
|
36200
|
+
this.q = l;
|
|
36201
|
+
this.k.add(l.listen("click", igniteuiWebcomponentsCore.runOn(this, this.w)));
|
|
36202
|
+
this.m.append(l);
|
|
36203
|
+
this.m.getPortal(l, "ChildContent", function (m) {
|
|
36148
36204
|
}, true);
|
|
36149
|
-
this.
|
|
36150
|
-
};
|
|
36151
|
-
CheckboxView.prototype.v = function (a) {
|
|
36152
|
-
this.c.toggle();
|
|
36205
|
+
this.d.cp();
|
|
36153
36206
|
};
|
|
36154
|
-
CheckboxView.prototype.
|
|
36155
|
-
|
|
36156
|
-
|
|
36157
|
-
|
|
36158
|
-
|
|
36159
|
-
|
|
36160
|
-
|
|
36161
|
-
|
|
36162
|
-
|
|
36163
|
-
|
|
36164
|
-
|
|
36165
|
-
this.
|
|
36166
|
-
|
|
36167
|
-
|
|
36207
|
+
CheckboxView.prototype.w = function (a) {
|
|
36208
|
+
this.d.toggle();
|
|
36209
|
+
};
|
|
36210
|
+
CheckboxView.prototype.ak = function () {
|
|
36211
|
+
if (this.j()) {
|
|
36212
|
+
var a = this.d.b1;
|
|
36213
|
+
this.s.setAttribute("name", this.d.ca);
|
|
36214
|
+
this.s.setProperty("value", this.d.a4);
|
|
36215
|
+
if (this.d.aa) {
|
|
36216
|
+
this.s.setAttribute("tabindex", this.d.az.toString());
|
|
36217
|
+
}
|
|
36218
|
+
this.s.setProperty("disabled", this.d.disabled);
|
|
36219
|
+
this.s.setProperty("indeterminate", this.d.indeterminate);
|
|
36220
|
+
this.s.setProperty("checked", this.d.checked);
|
|
36221
|
+
this.s.setProperty("required", this.d.ay);
|
|
36222
|
+
if (this.d.indeterminate) {
|
|
36223
|
+
this.s.setAttribute("aria-checked", "mixed");
|
|
36168
36224
|
}
|
|
36169
36225
|
else {
|
|
36170
|
-
this.
|
|
36226
|
+
this.s.setAttribute("aria-checked", this.d.checked ? "true" : "false");
|
|
36171
36227
|
}
|
|
36172
|
-
this.
|
|
36173
|
-
this.
|
|
36228
|
+
this.s.setAttribute("aria-labelledby", this.d.bn);
|
|
36229
|
+
this.s.setAttribute("aria-label", this.d.bm);
|
|
36174
36230
|
}
|
|
36175
36231
|
};
|
|
36176
|
-
CheckboxView.prototype.
|
|
36177
|
-
return new igniteuiWebcomponentsCore.Size(1, this.
|
|
36232
|
+
CheckboxView.prototype.am = function () {
|
|
36233
|
+
return new igniteuiWebcomponentsCore.Size(1, this.r.width(), this.r.height());
|
|
36178
36234
|
};
|
|
36179
|
-
CheckboxView.prototype.
|
|
36180
|
-
this.
|
|
36235
|
+
CheckboxView.prototype.a = function () {
|
|
36236
|
+
var rect_ = this.r.getNativeElement().getBoundingClientRect();
|
|
36237
|
+
var a = (rect_.top);
|
|
36238
|
+
var b = (rect_.left);
|
|
36239
|
+
var c = new Array(2);
|
|
36240
|
+
c[0] = a;
|
|
36241
|
+
c[1] = b;
|
|
36242
|
+
return c;
|
|
36181
36243
|
};
|
|
36182
|
-
CheckboxView.prototype.
|
|
36183
|
-
|
|
36184
|
-
|
|
36185
|
-
|
|
36186
|
-
|
|
36244
|
+
CheckboxView.prototype.aj = function () {
|
|
36245
|
+
this.o.setAttribute("d", this.d.bf);
|
|
36246
|
+
};
|
|
36247
|
+
CheckboxView.prototype.ah = function () {
|
|
36248
|
+
if (this.j()) {
|
|
36249
|
+
var a = this.d.b1;
|
|
36250
|
+
this.s.setAttribute("id", a);
|
|
36251
|
+
this.r.setAttribute("for", a);
|
|
36187
36252
|
}
|
|
36188
36253
|
};
|
|
36189
|
-
CheckboxView.prototype.
|
|
36190
|
-
this.
|
|
36254
|
+
CheckboxView.prototype.x = function (a) {
|
|
36255
|
+
this.d.focused = false;
|
|
36191
36256
|
};
|
|
36192
|
-
CheckboxView.prototype.
|
|
36193
|
-
this.
|
|
36257
|
+
CheckboxView.prototype.aa = function (a) {
|
|
36258
|
+
this.d.focused = true;
|
|
36194
36259
|
};
|
|
36195
|
-
CheckboxView.prototype.
|
|
36260
|
+
CheckboxView.prototype.z = function (a) {
|
|
36196
36261
|
a.stopPropagation();
|
|
36197
|
-
if (this.
|
|
36198
|
-
var native_ = this.
|
|
36262
|
+
if (this.i()) {
|
|
36263
|
+
var native_ = this.s.getNativeElement();
|
|
36199
36264
|
native_.blur();
|
|
36200
36265
|
}
|
|
36201
|
-
this.
|
|
36266
|
+
this.d.toggle();
|
|
36202
36267
|
};
|
|
36203
|
-
CheckboxView.prototype.
|
|
36268
|
+
CheckboxView.prototype.i = function () {
|
|
36204
36269
|
return false;
|
|
36205
36270
|
};
|
|
36206
|
-
CheckboxView.prototype.
|
|
36271
|
+
CheckboxView.prototype.y = function (a) {
|
|
36207
36272
|
a.stopPropagation();
|
|
36208
36273
|
};
|
|
36209
|
-
CheckboxView.prototype.
|
|
36274
|
+
CheckboxView.prototype.ab = function () {
|
|
36210
36275
|
if (igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h == null) {
|
|
36211
|
-
igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h = this.
|
|
36276
|
+
igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h = this.m;
|
|
36212
36277
|
}
|
|
36213
36278
|
};
|
|
36214
|
-
CheckboxView.prototype.a = function (a) {
|
|
36215
|
-
return new igniteuiWebcomponentsCore.AnimationKeyFrameEffect(0, this.q, 0, null, a);
|
|
36216
|
-
};
|
|
36217
36279
|
CheckboxView.prototype.b = function (a) {
|
|
36218
|
-
return new igniteuiWebcomponentsCore.AnimationKeyFrameEffect(0, this.
|
|
36280
|
+
return new igniteuiWebcomponentsCore.AnimationKeyFrameEffect(0, this.r, 0, null, a);
|
|
36219
36281
|
};
|
|
36220
|
-
CheckboxView.prototype.
|
|
36282
|
+
CheckboxView.prototype.c = function (a) {
|
|
36283
|
+
return new igniteuiWebcomponentsCore.AnimationKeyFrameEffect(0, this.p, 0, null, a);
|
|
36221
36284
|
};
|
|
36222
|
-
|
|
36285
|
+
CheckboxView.prototype.ac = function (a) {
|
|
36286
|
+
};
|
|
36287
|
+
Object.defineProperty(CheckboxView.prototype, "u", {
|
|
36223
36288
|
get: function () {
|
|
36224
|
-
return this.
|
|
36289
|
+
return this.r;
|
|
36225
36290
|
},
|
|
36226
36291
|
enumerable: false,
|
|
36227
36292
|
configurable: true
|
|
36228
36293
|
});
|
|
36229
|
-
Object.defineProperty(CheckboxView.prototype, "
|
|
36294
|
+
Object.defineProperty(CheckboxView.prototype, "t", {
|
|
36230
36295
|
get: function () {
|
|
36231
|
-
return this.
|
|
36296
|
+
return this.r;
|
|
36232
36297
|
},
|
|
36233
36298
|
enumerable: false,
|
|
36234
36299
|
configurable: true
|
|
36235
36300
|
});
|
|
36236
|
-
Object.defineProperty(CheckboxView.prototype, "
|
|
36301
|
+
Object.defineProperty(CheckboxView.prototype, "f", {
|
|
36237
36302
|
get: function () {
|
|
36238
|
-
return this.
|
|
36303
|
+
return this.e;
|
|
36239
36304
|
},
|
|
36240
36305
|
enumerable: false,
|
|
36241
36306
|
configurable: true
|
|
36242
36307
|
});
|
|
36243
|
-
Object.defineProperty(CheckboxView.prototype, "
|
|
36308
|
+
Object.defineProperty(CheckboxView.prototype, "v", {
|
|
36244
36309
|
get: function () {
|
|
36245
|
-
return this.
|
|
36310
|
+
return this.p;
|
|
36246
36311
|
},
|
|
36247
36312
|
enumerable: false,
|
|
36248
36313
|
configurable: true
|
|
36249
36314
|
});
|
|
36250
|
-
CheckboxView.prototype.
|
|
36251
|
-
this.
|
|
36252
|
-
this.
|
|
36253
|
-
this.
|
|
36254
|
-
this.
|
|
36255
|
-
this.
|
|
36256
|
-
this.
|
|
36315
|
+
CheckboxView.prototype.ad = function () {
|
|
36316
|
+
this.h = true;
|
|
36317
|
+
this.k.add(this.s.listen("change", igniteuiWebcomponentsCore.runOn(this, this.y)));
|
|
36318
|
+
this.k.add(this.s.listen("click", igniteuiWebcomponentsCore.runOn(this, this.z)));
|
|
36319
|
+
this.k.add(this.s.listen("focus", igniteuiWebcomponentsCore.runOn(this, this.aa)));
|
|
36320
|
+
this.k.add(this.s.listen("blur", igniteuiWebcomponentsCore.runOn(this, this.x)));
|
|
36321
|
+
this.k.add(this.q.listen("click", igniteuiWebcomponentsCore.runOn(this, this.w)));
|
|
36257
36322
|
};
|
|
36258
|
-
CheckboxView.prototype.
|
|
36323
|
+
CheckboxView.prototype.af = function () {
|
|
36259
36324
|
var e_2, _a;
|
|
36260
|
-
this.
|
|
36325
|
+
this.h = false;
|
|
36261
36326
|
try {
|
|
36262
|
-
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.
|
|
36327
|
+
for (var _b = tslib.__values(igniteuiWebcomponentsCore.fromEnum(this.k)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
36263
36328
|
var a = _c.value;
|
|
36264
36329
|
a();
|
|
36265
36330
|
}
|
|
@@ -36277,21 +36342,21 @@
|
|
|
36277
36342
|
throw e_2.error;
|
|
36278
36343
|
}
|
|
36279
36344
|
}
|
|
36280
|
-
this.
|
|
36345
|
+
this.k.clear();
|
|
36281
36346
|
};
|
|
36282
|
-
CheckboxView.prototype.
|
|
36283
|
-
var model_ = this.
|
|
36347
|
+
CheckboxView.prototype.ai = function () {
|
|
36348
|
+
var model_ = this.d;
|
|
36284
36349
|
if (model_.externalObject && model_.externalObject.refreshDefaults) {
|
|
36285
36350
|
model_.externalObject.refreshDefaults();
|
|
36286
36351
|
}
|
|
36287
36352
|
;
|
|
36288
36353
|
};
|
|
36289
|
-
CheckboxView.prototype.
|
|
36290
|
-
this.
|
|
36291
|
-
this.
|
|
36354
|
+
CheckboxView.prototype.al = function (a, b) {
|
|
36355
|
+
this.e.ax = a;
|
|
36356
|
+
this.e.aw = b;
|
|
36292
36357
|
};
|
|
36293
|
-
CheckboxView.prototype.
|
|
36294
|
-
var a = this.
|
|
36358
|
+
CheckboxView.prototype.l = function () {
|
|
36359
|
+
var a = this.r.getStyleProperty("border-top-width");
|
|
36295
36360
|
a = igniteuiWebcomponentsCore.stringReplace(a, "px", "");
|
|
36296
36361
|
return parseFloat(a);
|
|
36297
36362
|
};
|
|
@@ -36359,9 +36424,9 @@
|
|
|
36359
36424
|
_this.ba = _this.a8 + "-label";
|
|
36360
36425
|
_this.a7 = _this.ba;
|
|
36361
36426
|
var a = new CheckboxView();
|
|
36362
|
-
a.
|
|
36427
|
+
a.d = _this;
|
|
36363
36428
|
_this.view = a;
|
|
36364
|
-
_this.view.
|
|
36429
|
+
_this.view.ag();
|
|
36365
36430
|
return _this;
|
|
36366
36431
|
}
|
|
36367
36432
|
Object.defineProperty(XCheckbox.prototype, "view", {
|
|
@@ -36465,7 +36530,7 @@
|
|
|
36465
36530
|
this.ct();
|
|
36466
36531
|
break;
|
|
36467
36532
|
case "ActualCheckPath":
|
|
36468
|
-
this.view.
|
|
36533
|
+
this.view.aj();
|
|
36469
36534
|
break;
|
|
36470
36535
|
case "IsChecked":
|
|
36471
36536
|
if (!this.s) {
|
|
@@ -36485,16 +36550,16 @@
|
|
|
36485
36550
|
}
|
|
36486
36551
|
break;
|
|
36487
36552
|
case "DisableRipple":
|
|
36488
|
-
this.view.
|
|
36553
|
+
this.view.f.i = this.y;
|
|
36489
36554
|
break;
|
|
36490
36555
|
case "InputId":
|
|
36491
|
-
this.view.
|
|
36556
|
+
this.view.ah();
|
|
36492
36557
|
break;
|
|
36493
36558
|
}
|
|
36494
36559
|
};
|
|
36495
36560
|
XCheckbox.prototype.ct = function () {
|
|
36496
|
-
var a = this.view.
|
|
36497
|
-
var b = this.view.
|
|
36561
|
+
var a = this.view.u;
|
|
36562
|
+
var b = this.view.t;
|
|
36498
36563
|
if (a == null || b == null) {
|
|
36499
36564
|
return;
|
|
36500
36565
|
}
|
|
@@ -36513,7 +36578,7 @@
|
|
|
36513
36578
|
}
|
|
36514
36579
|
};
|
|
36515
36580
|
XCheckbox.prototype.cw = function () {
|
|
36516
|
-
var a = this.view.
|
|
36581
|
+
var a = this.view.v;
|
|
36517
36582
|
if (a == null) {
|
|
36518
36583
|
return;
|
|
36519
36584
|
}
|
|
@@ -37004,10 +37069,10 @@
|
|
|
37004
37069
|
XCheckbox.prototype.cp = function () {
|
|
37005
37070
|
this.ck();
|
|
37006
37071
|
if (this.checked) {
|
|
37007
|
-
this.view.
|
|
37072
|
+
this.view.al(igniteuiWebcomponentsCore.BrushUtil.s(this.c8, 0.6), igniteuiWebcomponentsCore.BrushUtil.s(this.c8, 0.1));
|
|
37008
37073
|
}
|
|
37009
37074
|
else {
|
|
37010
|
-
this.view.
|
|
37075
|
+
this.view.al(igniteuiWebcomponentsCore.BrushUtil.s(this.c8, 0.6), igniteuiWebcomponentsCore.BrushUtil.s(this.dc, 0.1));
|
|
37011
37076
|
}
|
|
37012
37077
|
};
|
|
37013
37078
|
Object.defineProperty(XCheckbox.prototype, "a", {
|
|
@@ -37021,15 +37086,15 @@
|
|
|
37021
37086
|
configurable: true
|
|
37022
37087
|
});
|
|
37023
37088
|
XCheckbox.prototype.ck = function () {
|
|
37024
|
-
this.view.
|
|
37089
|
+
this.view.ab();
|
|
37025
37090
|
var a = false;
|
|
37026
37091
|
if (this.o == null) {
|
|
37027
37092
|
if (!a) {
|
|
37028
37093
|
a = true;
|
|
37029
|
-
this.view.
|
|
37094
|
+
this.view.ai();
|
|
37030
37095
|
}
|
|
37031
|
-
this.o = igniteuiWebcomponentsCore.KeyFrameAnimationFactory.f.c(this.view.
|
|
37032
|
-
this.p = igniteuiWebcomponentsCore.KeyFrameAnimationFactory.f.c(this.view.
|
|
37096
|
+
this.o = igniteuiWebcomponentsCore.KeyFrameAnimationFactory.f.c(this.view.b(this.a).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(2, this.db), new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(3, this.dc)).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(2, this.c8), new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(3, this.c9)));
|
|
37097
|
+
this.p = igniteuiWebcomponentsCore.KeyFrameAnimationFactory.f.c(this.view.c(this.a).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(19, 24), new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(1, 0)).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(19, 0), new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(1, 1)));
|
|
37033
37098
|
}
|
|
37034
37099
|
};
|
|
37035
37100
|
XCheckbox.prototype.toggle = function () {
|
|
@@ -37067,21 +37132,21 @@
|
|
|
37067
37132
|
c = -1;
|
|
37068
37133
|
}
|
|
37069
37134
|
if (b) {
|
|
37070
|
-
this.view.
|
|
37135
|
+
this.view.al(igniteuiWebcomponentsCore.BrushUtil.s(this.c8, 0.6), igniteuiWebcomponentsCore.BrushUtil.s(this.c8, 0.1));
|
|
37071
37136
|
}
|
|
37072
37137
|
else {
|
|
37073
|
-
this.view.
|
|
37138
|
+
this.view.al(igniteuiWebcomponentsCore.BrushUtil.s(this.c8, 0.6), igniteuiWebcomponentsCore.BrushUtil.s(this.dc, 0.1));
|
|
37074
37139
|
}
|
|
37075
37140
|
if (!this.indeterminate) {
|
|
37076
|
-
igniteuiWebcomponentsCore.NativeUI.af(this.view.
|
|
37141
|
+
igniteuiWebcomponentsCore.NativeUI.af(this.view.v, null);
|
|
37077
37142
|
}
|
|
37078
37143
|
if (this.z || this.indeterminate || a) {
|
|
37079
|
-
var d = this.view.
|
|
37080
|
-
var e = this.view.
|
|
37081
|
-
var f = this.view.
|
|
37144
|
+
var d = this.view.u;
|
|
37145
|
+
var e = this.view.t;
|
|
37146
|
+
var f = this.view.v;
|
|
37082
37147
|
if (this.indeterminate) {
|
|
37083
37148
|
var g = new igniteuiWebcomponentsCore.TransformGroup();
|
|
37084
|
-
var h = this.view.
|
|
37149
|
+
var h = this.view.am();
|
|
37085
37150
|
g.j.add(((function () {
|
|
37086
37151
|
var $ret = new igniteuiWebcomponentsCore.RotateTransform();
|
|
37087
37152
|
$ret.j = 45;
|
|
@@ -37089,7 +37154,7 @@
|
|
|
37089
37154
|
})()));
|
|
37090
37155
|
g.j.add(((function () {
|
|
37091
37156
|
var $ret = new igniteuiWebcomponentsCore.TranslateTransform();
|
|
37092
|
-
$ret.j = -_this.view.
|
|
37157
|
+
$ret.j = -_this.view.l();
|
|
37093
37158
|
return $ret;
|
|
37094
37159
|
})()));
|
|
37095
37160
|
igniteuiWebcomponentsCore.NativeUI.m(d, this.c8);
|
|
@@ -37148,10 +37213,10 @@
|
|
|
37148
37213
|
}
|
|
37149
37214
|
};
|
|
37150
37215
|
XCheckbox.prototype.onDetachedFromUI = function () {
|
|
37151
|
-
this.view.
|
|
37216
|
+
this.view.af();
|
|
37152
37217
|
};
|
|
37153
37218
|
XCheckbox.prototype.onAttachedToUI = function () {
|
|
37154
|
-
this.view.
|
|
37219
|
+
this.view.ad();
|
|
37155
37220
|
};
|
|
37156
37221
|
XCheckbox.prototype.onContentReady = function () {
|
|
37157
37222
|
if (this.indeterminate) {
|
|
@@ -37159,17 +37224,23 @@
|
|
|
37159
37224
|
}
|
|
37160
37225
|
};
|
|
37161
37226
|
XCheckbox.prototype.af = function () {
|
|
37162
|
-
return this.view.
|
|
37227
|
+
return this.view.j();
|
|
37163
37228
|
};
|
|
37164
37229
|
XCheckbox.prototype.a3 = function () {
|
|
37165
37230
|
return this.b();
|
|
37166
37231
|
};
|
|
37167
37232
|
XCheckbox.prototype.by = function () {
|
|
37168
37233
|
var a = this.b();
|
|
37169
|
-
return a.
|
|
37234
|
+
return a.w();
|
|
37170
37235
|
};
|
|
37171
37236
|
XCheckbox.prototype.b = function () {
|
|
37172
37237
|
var a = new CheckboxVisualModelExport();
|
|
37238
|
+
var b = this.view.am();
|
|
37239
|
+
var c = this.view.a();
|
|
37240
|
+
a.u = b.width;
|
|
37241
|
+
a.q = b.height;
|
|
37242
|
+
a.t = c[0];
|
|
37243
|
+
a.r = c[1];
|
|
37173
37244
|
a.f = this.n;
|
|
37174
37245
|
a.d = igniteuiWebcomponentsCore.AppearanceHelper.a(this.db);
|
|
37175
37246
|
a.c = igniteuiWebcomponentsCore.AppearanceHelper.a(this.da);
|
|
@@ -37178,11 +37249,11 @@
|
|
|
37178
37249
|
a.o = this.aq;
|
|
37179
37250
|
a.l = this.an;
|
|
37180
37251
|
a.p = this.ar;
|
|
37181
|
-
a.
|
|
37252
|
+
a.s = this.av;
|
|
37182
37253
|
a.n = this.ap;
|
|
37183
37254
|
a.m = this.ao;
|
|
37184
37255
|
a.a = igniteuiWebcomponentsCore.AppearanceHelper.a(this.c8);
|
|
37185
|
-
a.
|
|
37256
|
+
a.v = this.a4;
|
|
37186
37257
|
a.j = this.focused;
|
|
37187
37258
|
a.g = this.y;
|
|
37188
37259
|
a.h = this.checked;
|
|
@@ -37191,7 +37262,7 @@
|
|
|
37191
37262
|
return a;
|
|
37192
37263
|
};
|
|
37193
37264
|
XCheckbox.prototype.provideContainer = function (a) {
|
|
37194
|
-
this.view.
|
|
37265
|
+
this.view.ae(a);
|
|
37195
37266
|
};
|
|
37196
37267
|
XCheckbox.$t = igniteuiWebcomponentsCore.markType(XCheckbox, 'XCheckbox', igniteuiWebcomponentsCore.Base.$, [igniteuiWebcomponentsCore.INotifyPropertyChanged_$type]);
|
|
37197
37268
|
XCheckbox.g = ThemeResolver.a(((function () {
|
|
@@ -37357,7 +37428,8 @@
|
|
|
37357
37428
|
}
|
|
37358
37429
|
};
|
|
37359
37430
|
XCheckboxBridge.prototype.exportVisualData = function (a) {
|
|
37360
|
-
|
|
37431
|
+
var b = a.a3();
|
|
37432
|
+
return b;
|
|
37361
37433
|
};
|
|
37362
37434
|
XCheckboxBridge.$t = igniteuiWebcomponentsCore.markType(XCheckboxBridge, 'XCheckboxBridge', XComponentBridge.$);
|
|
37363
37435
|
return XCheckboxBridge;
|
|
@@ -37481,7 +37553,8 @@
|
|
|
37481
37553
|
}
|
|
37482
37554
|
};
|
|
37483
37555
|
XIconBridge.prototype.exportVisualData = function (a) {
|
|
37484
|
-
|
|
37556
|
+
var b = a.bg();
|
|
37557
|
+
return b;
|
|
37485
37558
|
};
|
|
37486
37559
|
XIconBridge.$t = igniteuiWebcomponentsCore.markType(XIconBridge, 'XIconBridge', XComponentBridge.$);
|
|
37487
37560
|
return XIconBridge;
|
|
@@ -37842,6 +37915,45 @@
|
|
|
37842
37915
|
return ColorEditorPanelSelectedValueChangedEventArgs;
|
|
37843
37916
|
}(igniteuiWebcomponentsCore.EventArgs));
|
|
37844
37917
|
|
|
37918
|
+
/*
|
|
37919
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
37920
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
37921
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
37922
|
+
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.
|
|
37923
|
+
*/
|
|
37924
|
+
/**
|
|
37925
|
+
* @hidden
|
|
37926
|
+
*/
|
|
37927
|
+
var ColorEditorVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
37928
|
+
tslib.__extends(ColorEditorVisualModelExport, _super);
|
|
37929
|
+
function ColorEditorVisualModelExport() {
|
|
37930
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
37931
|
+
_this.e = 0;
|
|
37932
|
+
_this.f = 0;
|
|
37933
|
+
_this.g = 0;
|
|
37934
|
+
_this.d = 0;
|
|
37935
|
+
_this.b = 0;
|
|
37936
|
+
_this.a = null;
|
|
37937
|
+
_this.c = false;
|
|
37938
|
+
return _this;
|
|
37939
|
+
}
|
|
37940
|
+
ColorEditorVisualModelExport.prototype.h = function () {
|
|
37941
|
+
var a = new igniteuiWebcomponentsCore.StringBuilder(0);
|
|
37942
|
+
a.l("{");
|
|
37943
|
+
a.l("left : " + this.e + ", ");
|
|
37944
|
+
a.l("top : " + this.f + ", ");
|
|
37945
|
+
a.l("height : " + this.d + ", ");
|
|
37946
|
+
a.l("width : " + this.g + ", ");
|
|
37947
|
+
a.l("baseTheme : " + this.b + ", ");
|
|
37948
|
+
a.l("value : " + this.a.serialize() + ", ");
|
|
37949
|
+
a.l("isDisabled : " + this.c + ", ");
|
|
37950
|
+
a.l("}");
|
|
37951
|
+
return a.toString();
|
|
37952
|
+
};
|
|
37953
|
+
ColorEditorVisualModelExport.$t = igniteuiWebcomponentsCore.markType(ColorEditorVisualModelExport, 'ColorEditorVisualModelExport');
|
|
37954
|
+
return ColorEditorVisualModelExport;
|
|
37955
|
+
}(igniteuiWebcomponentsCore.Base));
|
|
37956
|
+
|
|
37845
37957
|
/*
|
|
37846
37958
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
37847
37959
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -38193,6 +38305,15 @@
|
|
|
38193
38305
|
break;
|
|
38194
38306
|
}
|
|
38195
38307
|
};
|
|
38308
|
+
ColorEditorBridge.prototype.exportVisualData = function (a) {
|
|
38309
|
+
var b = a.as();
|
|
38310
|
+
var c = this.getBoundingRect(a);
|
|
38311
|
+
b.e = c.left;
|
|
38312
|
+
b.f = c.top;
|
|
38313
|
+
b.g = c.width;
|
|
38314
|
+
b.d = c.height;
|
|
38315
|
+
return b;
|
|
38316
|
+
};
|
|
38196
38317
|
ColorEditorBridge.$t = igniteuiWebcomponentsCore.markType(ColorEditorBridge, 'ColorEditorBridge', XComponentBridge.$);
|
|
38197
38318
|
return ColorEditorBridge;
|
|
38198
38319
|
}(XComponentBridge));
|
|
@@ -38587,7 +38708,7 @@
|
|
|
38587
38708
|
this.a.a = new igniteuiWebcomponentsCore.DOMExecutionContext(a);
|
|
38588
38709
|
}
|
|
38589
38710
|
this.h = a;
|
|
38590
|
-
this.a.
|
|
38711
|
+
this.a.bj();
|
|
38591
38712
|
};
|
|
38592
38713
|
ColorEditorView.prototype.m = function () {
|
|
38593
38714
|
if (igniteuiWebcomponentsCore.KeyFrameAnimationFactory.h == null) {
|
|
@@ -38646,55 +38767,55 @@
|
|
|
38646
38767
|
tslib.__extends(ColorEditor, _super);
|
|
38647
38768
|
function ColorEditor() {
|
|
38648
38769
|
var _this = _super.call(this) || this;
|
|
38649
|
-
_this.
|
|
38770
|
+
_this.h = null;
|
|
38771
|
+
_this.s = null;
|
|
38650
38772
|
_this.r = null;
|
|
38651
|
-
_this.
|
|
38652
|
-
_this.d = null;
|
|
38653
|
-
_this.v = false;
|
|
38654
|
-
_this.af = false;
|
|
38655
|
-
_this.ad = false;
|
|
38656
|
-
_this.cj = igniteuiWebcomponentsCore.BrushUtil.j(0, 0, 0, 0);
|
|
38773
|
+
_this.e = null;
|
|
38657
38774
|
_this.w = false;
|
|
38775
|
+
_this.ag = false;
|
|
38776
|
+
_this.ae = false;
|
|
38777
|
+
_this.cm = igniteuiWebcomponentsCore.BrushUtil.j(0, 0, 0, 0);
|
|
38778
|
+
_this.x = false;
|
|
38658
38779
|
_this.propertyChanged = null;
|
|
38659
38780
|
_this.valueChanged = null;
|
|
38660
38781
|
_this.valueChanging = null;
|
|
38661
|
-
_this.
|
|
38782
|
+
_this.t = null;
|
|
38662
38783
|
_this.a = null;
|
|
38663
|
-
_this.
|
|
38664
|
-
_this.
|
|
38665
|
-
_this.
|
|
38666
|
-
_this.l = null;
|
|
38667
|
-
_this.j = 2;
|
|
38668
|
-
_this.h = 1;
|
|
38784
|
+
_this.co = igniteuiWebcomponentsCore.BrushUtil.j(255, 0, 0, 255);
|
|
38785
|
+
_this.at = "";
|
|
38786
|
+
_this.cl = igniteuiWebcomponentsCore.BrushUtil.j(255, 24, 29, 31);
|
|
38669
38787
|
_this.m = null;
|
|
38670
|
-
_this.
|
|
38671
|
-
_this.
|
|
38788
|
+
_this.k = 2;
|
|
38789
|
+
_this.i = 1;
|
|
38790
|
+
_this.n = null;
|
|
38791
|
+
_this.cn = igniteuiWebcomponentsCore.BrushUtil.j(255, 24, 29, 31);
|
|
38792
|
+
_this.ck = igniteuiWebcomponentsCore.BrushUtil.j(255, 163, 172, 184);
|
|
38793
|
+
_this.ad = true;
|
|
38794
|
+
_this.v = true;
|
|
38672
38795
|
_this.ac = true;
|
|
38673
|
-
_this.u = true;
|
|
38674
|
-
_this.ab = true;
|
|
38675
|
-
_this.x = false;
|
|
38676
|
-
_this.ap = 0;
|
|
38677
38796
|
_this.y = false;
|
|
38678
|
-
_this.
|
|
38679
|
-
_this.ae = false;
|
|
38797
|
+
_this.aq = 0;
|
|
38680
38798
|
_this.z = false;
|
|
38799
|
+
_this.ab = false;
|
|
38800
|
+
_this.af = false;
|
|
38801
|
+
_this.aa = false;
|
|
38681
38802
|
_this.gotFocus = null;
|
|
38682
38803
|
_this.lostFocus = null;
|
|
38683
38804
|
igniteuiWebcomponentsCore.NativeUIInputsFactory.n();
|
|
38684
38805
|
NativeUIXInputsFactory.m();
|
|
38685
38806
|
var a = new ColorEditorView();
|
|
38686
38807
|
a.a = _this;
|
|
38687
|
-
_this.
|
|
38688
|
-
_this.
|
|
38808
|
+
_this.h = a;
|
|
38809
|
+
_this.h.q();
|
|
38689
38810
|
return _this;
|
|
38690
38811
|
}
|
|
38691
38812
|
ColorEditor.prototype.onAttachedToUI = function () {
|
|
38692
|
-
this.
|
|
38813
|
+
this.h.n();
|
|
38693
38814
|
};
|
|
38694
38815
|
ColorEditor.prototype.onDetachedFromUI = function () {
|
|
38695
|
-
this.
|
|
38816
|
+
this.h.p();
|
|
38696
38817
|
};
|
|
38697
|
-
ColorEditor.prototype.
|
|
38818
|
+
ColorEditor.prototype.b4 = function (a, b) {
|
|
38698
38819
|
if (this.valueChanging != null) {
|
|
38699
38820
|
this.valueChanging(this, ((function () {
|
|
38700
38821
|
var $ret = new ColorEditorPanelSelectedValueChangedEventArgs();
|
|
@@ -38703,7 +38824,7 @@
|
|
|
38703
38824
|
return $ret;
|
|
38704
38825
|
})()));
|
|
38705
38826
|
}
|
|
38706
|
-
if (this.
|
|
38827
|
+
if (this.x) {
|
|
38707
38828
|
}
|
|
38708
38829
|
};
|
|
38709
38830
|
ColorEditor.prototype.notifySizeChanged = function () {
|
|
@@ -38712,290 +38833,290 @@
|
|
|
38712
38833
|
this.provideContainer(null);
|
|
38713
38834
|
};
|
|
38714
38835
|
ColorEditor.prototype.provideContainer = function (a) {
|
|
38715
|
-
this.
|
|
38836
|
+
this.h.o(a);
|
|
38716
38837
|
};
|
|
38717
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38838
|
+
Object.defineProperty(ColorEditor.prototype, "u", {
|
|
38718
38839
|
get: function () {
|
|
38719
|
-
if (this.
|
|
38720
|
-
this.
|
|
38721
|
-
this.
|
|
38840
|
+
if (this.t == null) {
|
|
38841
|
+
this.t = new igniteuiWebcomponentsCore.SRProvider(this.h.h);
|
|
38842
|
+
this.t.cb("ColorEditor");
|
|
38722
38843
|
}
|
|
38723
|
-
return this.
|
|
38844
|
+
return this.t;
|
|
38724
38845
|
},
|
|
38725
38846
|
enumerable: false,
|
|
38726
38847
|
configurable: true
|
|
38727
38848
|
});
|
|
38728
38849
|
Object.defineProperty(ColorEditor.prototype, "value", {
|
|
38729
38850
|
get: function () {
|
|
38730
|
-
return this.
|
|
38851
|
+
return this.co;
|
|
38731
38852
|
},
|
|
38732
38853
|
set: function (a) {
|
|
38733
|
-
var b = this.
|
|
38734
|
-
this.
|
|
38735
|
-
this.
|
|
38736
|
-
if (b != this.
|
|
38737
|
-
this.
|
|
38854
|
+
var b = this.co;
|
|
38855
|
+
this.cm = b;
|
|
38856
|
+
this.co = a;
|
|
38857
|
+
if (b != this.co) {
|
|
38858
|
+
this.b3("Value", b, this.co);
|
|
38738
38859
|
}
|
|
38739
38860
|
},
|
|
38740
38861
|
enumerable: false,
|
|
38741
38862
|
configurable: true
|
|
38742
38863
|
});
|
|
38743
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38864
|
+
Object.defineProperty(ColorEditor.prototype, "a2", {
|
|
38744
38865
|
get: function () {
|
|
38745
|
-
return this.
|
|
38866
|
+
return this.at;
|
|
38746
38867
|
},
|
|
38747
38868
|
set: function (a) {
|
|
38748
|
-
var b = this.
|
|
38749
|
-
this.
|
|
38750
|
-
if (b != this.
|
|
38751
|
-
this.
|
|
38869
|
+
var b = this.at;
|
|
38870
|
+
this.at = a;
|
|
38871
|
+
if (b != this.at) {
|
|
38872
|
+
this.b3("Label", b, this.at);
|
|
38752
38873
|
}
|
|
38753
38874
|
},
|
|
38754
38875
|
enumerable: false,
|
|
38755
38876
|
configurable: true
|
|
38756
38877
|
});
|
|
38757
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38878
|
+
Object.defineProperty(ColorEditor.prototype, "cq", {
|
|
38758
38879
|
get: function () {
|
|
38759
|
-
return this.
|
|
38880
|
+
return this.cl;
|
|
38760
38881
|
},
|
|
38761
38882
|
set: function (a) {
|
|
38762
|
-
var b = this.
|
|
38763
|
-
this.
|
|
38764
|
-
if (b != this.
|
|
38765
|
-
this.
|
|
38883
|
+
var b = this.cl;
|
|
38884
|
+
this.cl = a;
|
|
38885
|
+
if (b != this.cl) {
|
|
38886
|
+
this.b3("LabelTextColor", b, a);
|
|
38766
38887
|
}
|
|
38767
38888
|
},
|
|
38768
38889
|
enumerable: false,
|
|
38769
38890
|
configurable: true
|
|
38770
38891
|
});
|
|
38771
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38892
|
+
Object.defineProperty(ColorEditor.prototype, "p", {
|
|
38772
38893
|
get: function () {
|
|
38773
|
-
return this.
|
|
38894
|
+
return this.m;
|
|
38774
38895
|
},
|
|
38775
38896
|
set: function (a) {
|
|
38776
|
-
var b = this.
|
|
38777
|
-
this.
|
|
38778
|
-
if (b != this.
|
|
38779
|
-
this.
|
|
38897
|
+
var b = this.m;
|
|
38898
|
+
this.m = a;
|
|
38899
|
+
if (b != this.m) {
|
|
38900
|
+
this.b3("LabelTextStyle", b, this.m);
|
|
38780
38901
|
}
|
|
38781
38902
|
},
|
|
38782
38903
|
enumerable: false,
|
|
38783
38904
|
configurable: true
|
|
38784
38905
|
});
|
|
38785
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38906
|
+
Object.defineProperty(ColorEditor.prototype, "l", {
|
|
38786
38907
|
get: function () {
|
|
38787
|
-
return this.
|
|
38908
|
+
return this.k;
|
|
38788
38909
|
},
|
|
38789
38910
|
set: function (a) {
|
|
38790
|
-
var b = this.
|
|
38791
|
-
this.
|
|
38792
|
-
if (b != this.
|
|
38793
|
-
this.
|
|
38911
|
+
var b = this.k;
|
|
38912
|
+
this.k = a;
|
|
38913
|
+
if (b != this.k) {
|
|
38914
|
+
this.b3("Density", igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, b), igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.k));
|
|
38794
38915
|
}
|
|
38795
38916
|
},
|
|
38796
38917
|
enumerable: false,
|
|
38797
38918
|
configurable: true
|
|
38798
38919
|
});
|
|
38799
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38920
|
+
Object.defineProperty(ColorEditor.prototype, "j", {
|
|
38800
38921
|
get: function () {
|
|
38801
|
-
return this.
|
|
38922
|
+
return this.i;
|
|
38802
38923
|
},
|
|
38803
38924
|
set: function (a) {
|
|
38804
|
-
var b = this.
|
|
38805
|
-
this.
|
|
38806
|
-
if (b != this.
|
|
38807
|
-
this.
|
|
38925
|
+
var b = this.i;
|
|
38926
|
+
this.i = a;
|
|
38927
|
+
if (b != this.i) {
|
|
38928
|
+
this.b3("BaseTheme", igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.BaseControlTheme_$type, b), igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.BaseControlTheme_$type, this.i));
|
|
38808
38929
|
}
|
|
38809
38930
|
},
|
|
38810
38931
|
enumerable: false,
|
|
38811
38932
|
configurable: true
|
|
38812
38933
|
});
|
|
38813
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38934
|
+
Object.defineProperty(ColorEditor.prototype, "q", {
|
|
38814
38935
|
get: function () {
|
|
38815
|
-
return this.
|
|
38936
|
+
return this.n;
|
|
38816
38937
|
},
|
|
38817
38938
|
set: function (a) {
|
|
38818
|
-
var b = this.
|
|
38819
|
-
this.
|
|
38820
|
-
if (b != this.
|
|
38821
|
-
this.
|
|
38939
|
+
var b = this.n;
|
|
38940
|
+
this.n = a;
|
|
38941
|
+
if (b != this.n) {
|
|
38942
|
+
this.b3("TextStyle", b, this.n);
|
|
38822
38943
|
}
|
|
38823
38944
|
},
|
|
38824
38945
|
enumerable: false,
|
|
38825
38946
|
configurable: true
|
|
38826
38947
|
});
|
|
38827
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38948
|
+
Object.defineProperty(ColorEditor.prototype, "cr", {
|
|
38828
38949
|
get: function () {
|
|
38829
|
-
return this.
|
|
38950
|
+
return this.cn;
|
|
38830
38951
|
},
|
|
38831
38952
|
set: function (a) {
|
|
38832
|
-
var b = this.
|
|
38833
|
-
this.
|
|
38834
|
-
if (b != this.
|
|
38835
|
-
this.
|
|
38953
|
+
var b = this.cn;
|
|
38954
|
+
this.cn = a;
|
|
38955
|
+
if (b != this.cn) {
|
|
38956
|
+
this.b3("TextColor", b, this.cn);
|
|
38836
38957
|
}
|
|
38837
38958
|
},
|
|
38838
38959
|
enumerable: false,
|
|
38839
38960
|
configurable: true
|
|
38840
38961
|
});
|
|
38841
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38962
|
+
Object.defineProperty(ColorEditor.prototype, "cp", {
|
|
38842
38963
|
get: function () {
|
|
38843
|
-
return this.
|
|
38964
|
+
return this.ck;
|
|
38844
38965
|
},
|
|
38845
38966
|
set: function (a) {
|
|
38846
|
-
var b = this.
|
|
38847
|
-
this.
|
|
38848
|
-
if (b != this.
|
|
38849
|
-
this.
|
|
38967
|
+
var b = this.ck;
|
|
38968
|
+
this.ck = a;
|
|
38969
|
+
if (b != this.ck) {
|
|
38970
|
+
this.b3("IconColor", b, this.ck);
|
|
38850
38971
|
}
|
|
38851
38972
|
},
|
|
38852
38973
|
enumerable: false,
|
|
38853
38974
|
configurable: true
|
|
38854
38975
|
});
|
|
38855
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38976
|
+
Object.defineProperty(ColorEditor.prototype, "an", {
|
|
38856
38977
|
get: function () {
|
|
38857
|
-
return this.
|
|
38978
|
+
return this.ad;
|
|
38858
38979
|
},
|
|
38859
38980
|
set: function (a) {
|
|
38860
|
-
var b = this.
|
|
38861
|
-
this.
|
|
38862
|
-
if (b != this.
|
|
38863
|
-
this.
|
|
38981
|
+
var b = this.ad;
|
|
38982
|
+
this.ad = a;
|
|
38983
|
+
if (b != this.ad) {
|
|
38984
|
+
this.b3("ShowClearButton", b, this.ad);
|
|
38864
38985
|
}
|
|
38865
38986
|
},
|
|
38866
38987
|
enumerable: false,
|
|
38867
38988
|
configurable: true
|
|
38868
38989
|
});
|
|
38869
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
38990
|
+
Object.defineProperty(ColorEditor.prototype, "ah", {
|
|
38870
38991
|
get: function () {
|
|
38871
|
-
return this.
|
|
38992
|
+
return this.v;
|
|
38872
38993
|
},
|
|
38873
38994
|
set: function (a) {
|
|
38874
|
-
var b = this.
|
|
38875
|
-
this.
|
|
38876
|
-
if (b != this.
|
|
38877
|
-
this.
|
|
38995
|
+
var b = this.v;
|
|
38996
|
+
this.v = a;
|
|
38997
|
+
if (b != this.v) {
|
|
38998
|
+
this.b3("AllowTextInput", b, this.v);
|
|
38878
38999
|
}
|
|
38879
39000
|
},
|
|
38880
39001
|
enumerable: false,
|
|
38881
39002
|
configurable: true
|
|
38882
39003
|
});
|
|
38883
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
39004
|
+
Object.defineProperty(ColorEditor.prototype, "al", {
|
|
38884
39005
|
get: function () {
|
|
38885
|
-
return this.
|
|
39006
|
+
return this.ac;
|
|
38886
39007
|
},
|
|
38887
39008
|
set: function (a) {
|
|
38888
|
-
var b = this.
|
|
38889
|
-
this.
|
|
38890
|
-
if (b != this.
|
|
38891
|
-
this.
|
|
39009
|
+
var b = this.ac;
|
|
39010
|
+
this.ac = a;
|
|
39011
|
+
if (b != this.ac) {
|
|
39012
|
+
this.b3("OpenOnFocus", b, this.ac);
|
|
38892
39013
|
}
|
|
38893
39014
|
},
|
|
38894
39015
|
enumerable: false,
|
|
38895
39016
|
configurable: true
|
|
38896
39017
|
});
|
|
38897
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
39018
|
+
Object.defineProperty(ColorEditor.prototype, "ai", {
|
|
38898
39019
|
get: function () {
|
|
38899
|
-
return this.
|
|
39020
|
+
return this.y;
|
|
38900
39021
|
},
|
|
38901
39022
|
set: function (a) {
|
|
38902
|
-
var b = this.
|
|
38903
|
-
this.
|
|
38904
|
-
if (b != this.
|
|
38905
|
-
this.
|
|
39023
|
+
var b = this.y;
|
|
39024
|
+
this.y = a;
|
|
39025
|
+
if (b != this.y) {
|
|
39026
|
+
this.b3("IsDisabled", b, this.y);
|
|
38906
39027
|
}
|
|
38907
39028
|
},
|
|
38908
39029
|
enumerable: false,
|
|
38909
39030
|
configurable: true
|
|
38910
39031
|
});
|
|
38911
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
39032
|
+
Object.defineProperty(ColorEditor.prototype, "ar", {
|
|
38912
39033
|
get: function () {
|
|
38913
|
-
return this.
|
|
39034
|
+
return this.aq;
|
|
38914
39035
|
},
|
|
38915
39036
|
set: function (a) {
|
|
38916
|
-
var b = this.
|
|
38917
|
-
this.
|
|
38918
|
-
if (b != this.
|
|
38919
|
-
this.
|
|
39037
|
+
var b = this.aq;
|
|
39038
|
+
this.aq = a;
|
|
39039
|
+
if (b != this.aq) {
|
|
39040
|
+
this.b3("TabIndex", b, this.aq);
|
|
38920
39041
|
}
|
|
38921
39042
|
},
|
|
38922
39043
|
enumerable: false,
|
|
38923
39044
|
configurable: true
|
|
38924
39045
|
});
|
|
38925
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
39046
|
+
Object.defineProperty(ColorEditor.prototype, "aj", {
|
|
38926
39047
|
get: function () {
|
|
38927
|
-
return this.
|
|
39048
|
+
return this.z;
|
|
38928
39049
|
},
|
|
38929
39050
|
set: function (a) {
|
|
38930
|
-
var b = this.
|
|
38931
|
-
this.
|
|
38932
|
-
if (b != this.
|
|
38933
|
-
this.
|
|
39051
|
+
var b = this.z;
|
|
39052
|
+
this.z = a;
|
|
39053
|
+
if (b != this.z) {
|
|
39054
|
+
this.b3("IsFixed", b, this.z);
|
|
38934
39055
|
}
|
|
38935
39056
|
},
|
|
38936
39057
|
enumerable: false,
|
|
38937
39058
|
configurable: true
|
|
38938
39059
|
});
|
|
38939
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
39060
|
+
Object.defineProperty(ColorEditor.prototype, "ak", {
|
|
38940
39061
|
get: function () {
|
|
38941
|
-
return this.
|
|
39062
|
+
return this.ab;
|
|
38942
39063
|
},
|
|
38943
39064
|
set: function (a) {
|
|
38944
|
-
var b = this.
|
|
38945
|
-
this.
|
|
38946
|
-
if (b != this.
|
|
38947
|
-
this.
|
|
39065
|
+
var b = this.ab;
|
|
39066
|
+
this.ab = a;
|
|
39067
|
+
if (b != this.ab) {
|
|
39068
|
+
this.b3("OpenAsChild", b, this.ab);
|
|
38948
39069
|
}
|
|
38949
39070
|
},
|
|
38950
39071
|
enumerable: false,
|
|
38951
39072
|
configurable: true
|
|
38952
39073
|
});
|
|
38953
|
-
Object.defineProperty(ColorEditor.prototype, "
|
|
39074
|
+
Object.defineProperty(ColorEditor.prototype, "ao", {
|
|
38954
39075
|
get: function () {
|
|
38955
|
-
return this.
|
|
39076
|
+
return this.af;
|
|
38956
39077
|
},
|
|
38957
39078
|
set: function (a) {
|
|
38958
|
-
var b = this.
|
|
38959
|
-
this.
|
|
38960
|
-
if (b != this.
|
|
38961
|
-
this.
|
|
39079
|
+
var b = this.af;
|
|
39080
|
+
this.af = a;
|
|
39081
|
+
if (b != this.af) {
|
|
39082
|
+
this.b3("UseTopLayer", b, this.af);
|
|
38962
39083
|
}
|
|
38963
39084
|
},
|
|
38964
39085
|
enumerable: false,
|
|
38965
39086
|
configurable: true
|
|
38966
39087
|
});
|
|
38967
|
-
ColorEditor.prototype.
|
|
39088
|
+
ColorEditor.prototype.b3 = function (a, b, c) {
|
|
38968
39089
|
if (this.propertyChanged != null) {
|
|
38969
39090
|
this.propertyChanged(this, new igniteuiWebcomponentsCore.PropertyChangedEventArgs(a));
|
|
38970
39091
|
}
|
|
38971
|
-
this.
|
|
39092
|
+
this.b9(a, b, c);
|
|
38972
39093
|
};
|
|
38973
|
-
ColorEditor.prototype.
|
|
39094
|
+
ColorEditor.prototype.b9 = function (a, b, c) {
|
|
38974
39095
|
switch (a) {
|
|
38975
39096
|
case "Density":
|
|
38976
|
-
this.
|
|
39097
|
+
this.cc();
|
|
38977
39098
|
break;
|
|
38978
39099
|
case "BaseTheme":
|
|
38979
|
-
this.
|
|
39100
|
+
this.cd();
|
|
38980
39101
|
break;
|
|
38981
39102
|
case "Value":
|
|
38982
|
-
this.
|
|
38983
|
-
this.
|
|
38984
|
-
if (this.
|
|
38985
|
-
this.
|
|
39103
|
+
this.b4(this.cm, this.value);
|
|
39104
|
+
this.cm = this.value;
|
|
39105
|
+
if (this.e != null && !this.x) {
|
|
39106
|
+
this.e.value = this.value;
|
|
38986
39107
|
}
|
|
38987
39108
|
break;
|
|
38988
39109
|
case "Label":
|
|
38989
|
-
if (this.
|
|
38990
|
-
this.
|
|
39110
|
+
if (this.r != null) {
|
|
39111
|
+
this.r.b5 = this.a2;
|
|
38991
39112
|
}
|
|
38992
39113
|
break;
|
|
38993
39114
|
case "TextStyle":
|
|
38994
|
-
this.
|
|
39115
|
+
this.ci();
|
|
38995
39116
|
break;
|
|
38996
39117
|
case "ShowClearButton":
|
|
38997
|
-
if (this.
|
|
38998
|
-
if (this.
|
|
39118
|
+
if (this.r != null) {
|
|
39119
|
+
if (this.r.b7 != "") {
|
|
38999
39120
|
}
|
|
39000
39121
|
}
|
|
39001
39122
|
break;
|
|
@@ -39003,274 +39124,288 @@
|
|
|
39003
39124
|
case "LabelTextStyle":
|
|
39004
39125
|
case "TextColor":
|
|
39005
39126
|
case "IconColor":
|
|
39006
|
-
this.
|
|
39127
|
+
this.cj();
|
|
39007
39128
|
break;
|
|
39008
39129
|
case "AllowTextInput":
|
|
39009
|
-
if (this.
|
|
39010
|
-
this.
|
|
39130
|
+
if (this.r != null) {
|
|
39131
|
+
this.r.b0 = this.am();
|
|
39011
39132
|
}
|
|
39012
39133
|
break;
|
|
39013
39134
|
case "OpenOnFocus": break;
|
|
39014
39135
|
case "IsDisabled":
|
|
39015
39136
|
{
|
|
39016
|
-
if (this.
|
|
39017
|
-
this.
|
|
39137
|
+
if (this.r != null) {
|
|
39138
|
+
this.r.b0 = this.am();
|
|
39018
39139
|
}
|
|
39019
39140
|
}
|
|
39020
39141
|
break;
|
|
39021
39142
|
}
|
|
39022
39143
|
};
|
|
39023
|
-
ColorEditor.prototype.
|
|
39024
|
-
return this.
|
|
39144
|
+
ColorEditor.prototype.am = function () {
|
|
39145
|
+
return this.ai || !this.ah;
|
|
39025
39146
|
};
|
|
39026
|
-
ColorEditor.prototype.
|
|
39027
|
-
if (this.
|
|
39028
|
-
this.
|
|
39147
|
+
ColorEditor.prototype.cj = function () {
|
|
39148
|
+
if (this.r != null) {
|
|
39149
|
+
this.r.ce = this.cr;
|
|
39029
39150
|
}
|
|
39030
39151
|
};
|
|
39031
|
-
ColorEditor.prototype.
|
|
39032
|
-
if (this.
|
|
39152
|
+
ColorEditor.prototype.ch = function () {
|
|
39153
|
+
if (this.r != null) {
|
|
39033
39154
|
}
|
|
39034
39155
|
};
|
|
39035
|
-
ColorEditor.prototype.
|
|
39036
|
-
if (this.
|
|
39037
|
-
this.
|
|
39156
|
+
ColorEditor.prototype.ci = function () {
|
|
39157
|
+
if (this.n != null) {
|
|
39158
|
+
this.r.bk = this.n;
|
|
39038
39159
|
}
|
|
39039
39160
|
};
|
|
39040
|
-
ColorEditor.prototype.
|
|
39041
|
-
if (this.
|
|
39161
|
+
ColorEditor.prototype.bh = function () {
|
|
39162
|
+
if (this.ai == true) {
|
|
39042
39163
|
return;
|
|
39043
39164
|
}
|
|
39044
|
-
if (this.
|
|
39045
|
-
this.
|
|
39165
|
+
if (this.r != null) {
|
|
39166
|
+
this.r.b7 = "";
|
|
39046
39167
|
}
|
|
39047
39168
|
this.value = igniteuiWebcomponentsCore.BrushUtil.j(0, 0, 0, 0);
|
|
39048
|
-
this.
|
|
39049
|
-
this.
|
|
39169
|
+
this.e.ax();
|
|
39170
|
+
this.aa = false;
|
|
39050
39171
|
};
|
|
39051
|
-
ColorEditor.prototype.
|
|
39052
|
-
this.
|
|
39172
|
+
ColorEditor.prototype.b1 = function () {
|
|
39173
|
+
this.aa = true;
|
|
39053
39174
|
};
|
|
39054
|
-
ColorEditor.prototype.
|
|
39055
|
-
this.
|
|
39175
|
+
ColorEditor.prototype.b2 = function () {
|
|
39176
|
+
this.aa = false;
|
|
39056
39177
|
};
|
|
39057
|
-
ColorEditor.prototype.
|
|
39058
|
-
igniteuiWebcomponentsCore.NativeUIWindow.h(15, igniteuiWebcomponentsCore.runOn(this, this.
|
|
39059
|
-
igniteuiWebcomponentsCore.NativeUIWindow.h(9, igniteuiWebcomponentsCore.runOn(this, this.
|
|
39178
|
+
ColorEditor.prototype.br = function () {
|
|
39179
|
+
igniteuiWebcomponentsCore.NativeUIWindow.h(15, igniteuiWebcomponentsCore.runOn(this, this.b7), this.h.h);
|
|
39180
|
+
igniteuiWebcomponentsCore.NativeUIWindow.h(9, igniteuiWebcomponentsCore.runOn(this, this.b6), this.h.h);
|
|
39060
39181
|
};
|
|
39061
|
-
ColorEditor.prototype.
|
|
39062
|
-
igniteuiWebcomponentsCore.NativeUIWindow.i(15, igniteuiWebcomponentsCore.runOn(this, this.
|
|
39063
|
-
igniteuiWebcomponentsCore.NativeUIWindow.i(9, igniteuiWebcomponentsCore.runOn(this, this.
|
|
39182
|
+
ColorEditor.prototype.bv = function () {
|
|
39183
|
+
igniteuiWebcomponentsCore.NativeUIWindow.i(15, igniteuiWebcomponentsCore.runOn(this, this.b7));
|
|
39184
|
+
igniteuiWebcomponentsCore.NativeUIWindow.i(9, igniteuiWebcomponentsCore.runOn(this, this.b6));
|
|
39064
39185
|
};
|
|
39065
|
-
ColorEditor.prototype.
|
|
39186
|
+
ColorEditor.prototype.b6 = function (a) {
|
|
39066
39187
|
var b = a;
|
|
39067
|
-
if (this.
|
|
39068
|
-
if (this.
|
|
39069
|
-
this.
|
|
39188
|
+
if (this.r != null) {
|
|
39189
|
+
if (this.s.b6 && !this.s.t(b.b) && !this.r.t(b.b)) {
|
|
39190
|
+
this.bi();
|
|
39070
39191
|
}
|
|
39071
39192
|
}
|
|
39072
39193
|
};
|
|
39073
|
-
ColorEditor.prototype.
|
|
39074
|
-
if (this.
|
|
39075
|
-
var b = this.
|
|
39076
|
-
this.
|
|
39194
|
+
ColorEditor.prototype.b7 = function (a) {
|
|
39195
|
+
if (this.r != null) {
|
|
39196
|
+
var b = this.r.be();
|
|
39197
|
+
this.s.ce(b);
|
|
39077
39198
|
}
|
|
39078
39199
|
};
|
|
39079
|
-
ColorEditor.prototype.
|
|
39200
|
+
ColorEditor.prototype.bj = function () {
|
|
39080
39201
|
var _this = this;
|
|
39081
|
-
igniteuiWebcomponentsCore.NativeUIComponent.av(this.
|
|
39202
|
+
igniteuiWebcomponentsCore.NativeUIComponent.av(this.h.j(), [12, 2, 7, 0], [2, 2, 2, 2], function (a) {
|
|
39082
39203
|
var b = a[0];
|
|
39083
39204
|
var c = a[1];
|
|
39084
39205
|
var d = a[2];
|
|
39085
39206
|
var e = a[3];
|
|
39086
|
-
var f = _this.
|
|
39087
|
-
_this.
|
|
39207
|
+
var f = _this.h.i();
|
|
39208
|
+
_this.h.k(e, f);
|
|
39088
39209
|
b.bn(d);
|
|
39089
39210
|
d.bn(e);
|
|
39090
|
-
_this.
|
|
39211
|
+
_this.h.l(c);
|
|
39091
39212
|
b.ch = igniteuiWebcomponentsCore.BrushUtil.j(255, 255, 255, 255);
|
|
39092
39213
|
b.ca = 150;
|
|
39093
39214
|
b.b8 = 8;
|
|
39094
39215
|
b.cb = 4;
|
|
39095
39216
|
b.b1 = true;
|
|
39096
|
-
_this.
|
|
39097
|
-
_this.
|
|
39098
|
-
_this.
|
|
39099
|
-
_this.
|
|
39100
|
-
_this.
|
|
39101
|
-
_this.
|
|
39102
|
-
_this.
|
|
39103
|
-
_this.
|
|
39104
|
-
_this.
|
|
39105
|
-
_this.
|
|
39106
|
-
_this.
|
|
39107
|
-
_this.
|
|
39108
|
-
_this.
|
|
39109
|
-
var g = _this.
|
|
39110
|
-
g.closed = igniteuiWebcomponentsCore.delegateCombine(g.closed, igniteuiWebcomponentsCore.runOn(_this, _this.
|
|
39111
|
-
var h = _this.
|
|
39112
|
-
h.valueChanged = igniteuiWebcomponentsCore.delegateCombine(h.valueChanged, igniteuiWebcomponentsCore.runOn(_this, _this.
|
|
39113
|
-
d.o = igniteuiWebcomponentsCore.runOn(_this, _this.
|
|
39114
|
-
var i = _this.
|
|
39115
|
-
i.valueChanged = igniteuiWebcomponentsCore.delegateCombine(i.valueChanged, igniteuiWebcomponentsCore.runOn(_this, _this.
|
|
39217
|
+
_this.r = c;
|
|
39218
|
+
_this.r.c = _this.j;
|
|
39219
|
+
_this.r.bp = _this.l;
|
|
39220
|
+
_this.r.b6 = ColorEditor.a8;
|
|
39221
|
+
_this.r.cc = igniteuiWebcomponentsCore.BrushUtil.j(255, 255, 255, 255);
|
|
39222
|
+
_this.r.cd = igniteuiWebcomponentsCore.BrushUtil.j(255, 0, 0, 0);
|
|
39223
|
+
_this.r.bn = igniteuiWebcomponentsCore.runOn(_this, _this.cf);
|
|
39224
|
+
_this.r.n = igniteuiWebcomponentsCore.runOn(_this, _this.by);
|
|
39225
|
+
_this.r.o = igniteuiWebcomponentsCore.runOn(_this, _this.b0);
|
|
39226
|
+
_this.r.cb = igniteuiWebcomponentsCore.BrushUtil.j(255, 0, 0, 255);
|
|
39227
|
+
_this.s = b;
|
|
39228
|
+
_this.e = _this.h.c(f);
|
|
39229
|
+
_this.e.value = _this.value;
|
|
39230
|
+
var g = _this.e;
|
|
39231
|
+
g.closed = igniteuiWebcomponentsCore.delegateCombine(g.closed, igniteuiWebcomponentsCore.runOn(_this, _this.bf));
|
|
39232
|
+
var h = _this.e;
|
|
39233
|
+
h.valueChanged = igniteuiWebcomponentsCore.delegateCombine(h.valueChanged, igniteuiWebcomponentsCore.runOn(_this, _this.bg));
|
|
39234
|
+
d.o = igniteuiWebcomponentsCore.runOn(_this, _this.b0);
|
|
39235
|
+
var i = _this.e;
|
|
39236
|
+
i.valueChanged = igniteuiWebcomponentsCore.delegateCombine(i.valueChanged, igniteuiWebcomponentsCore.runOn(_this, _this.bm));
|
|
39116
39237
|
});
|
|
39117
39238
|
};
|
|
39118
|
-
ColorEditor.prototype.
|
|
39239
|
+
ColorEditor.prototype.bg = function (a, b) {
|
|
39119
39240
|
if (this.valueChanged != null) {
|
|
39120
39241
|
this.valueChanged(this, b);
|
|
39121
39242
|
}
|
|
39122
39243
|
};
|
|
39123
|
-
ColorEditor.prototype.
|
|
39124
|
-
this.
|
|
39244
|
+
ColorEditor.prototype.bf = function (a, b) {
|
|
39245
|
+
this.bl(a);
|
|
39125
39246
|
};
|
|
39126
|
-
ColorEditor.prototype.
|
|
39127
|
-
if (!this.
|
|
39128
|
-
this.
|
|
39247
|
+
ColorEditor.prototype.b0 = function (a, b) {
|
|
39248
|
+
if (!this.s.t(b.b) && !this.r.t(b.b) && !(this.r.an == b.b)) {
|
|
39249
|
+
this.bp();
|
|
39129
39250
|
}
|
|
39130
39251
|
};
|
|
39131
|
-
ColorEditor.prototype.
|
|
39252
|
+
ColorEditor.prototype.by = function (a, b) {
|
|
39132
39253
|
this.focus();
|
|
39133
39254
|
};
|
|
39134
|
-
ColorEditor.prototype.
|
|
39135
|
-
this.
|
|
39255
|
+
ColorEditor.prototype.cf = function (a, b) {
|
|
39256
|
+
this.cg();
|
|
39136
39257
|
};
|
|
39137
|
-
ColorEditor.prototype.
|
|
39138
|
-
this.
|
|
39258
|
+
ColorEditor.prototype.bm = function (a, b) {
|
|
39259
|
+
this.x = true;
|
|
39139
39260
|
this.value = b.newValue;
|
|
39140
|
-
this.
|
|
39141
|
-
this.
|
|
39261
|
+
this.x = false;
|
|
39262
|
+
this.b5(b.oldValue, b.newValue);
|
|
39142
39263
|
};
|
|
39143
|
-
ColorEditor.prototype.
|
|
39144
|
-
if (this.
|
|
39145
|
-
this.
|
|
39264
|
+
ColorEditor.prototype.b5 = function (a, b) {
|
|
39265
|
+
if (this.r != null) {
|
|
39266
|
+
this.r.cb = b;
|
|
39146
39267
|
}
|
|
39147
39268
|
};
|
|
39148
|
-
ColorEditor.prototype.
|
|
39149
|
-
if (this.
|
|
39150
|
-
this.
|
|
39151
|
-
this.
|
|
39269
|
+
ColorEditor.prototype.bl = function (a) {
|
|
39270
|
+
if (this.s.b6) {
|
|
39271
|
+
this.w = true;
|
|
39272
|
+
this.bi();
|
|
39152
39273
|
}
|
|
39153
39274
|
};
|
|
39154
|
-
ColorEditor.prototype.
|
|
39155
|
-
if (this.
|
|
39156
|
-
if (this.
|
|
39157
|
-
this.
|
|
39275
|
+
ColorEditor.prototype.cg = function () {
|
|
39276
|
+
if (this.w == false) {
|
|
39277
|
+
if (this.s.b6) {
|
|
39278
|
+
this.bi();
|
|
39158
39279
|
}
|
|
39159
39280
|
else {
|
|
39160
|
-
this.
|
|
39281
|
+
this.b8();
|
|
39161
39282
|
}
|
|
39162
39283
|
}
|
|
39163
39284
|
else {
|
|
39164
|
-
this.
|
|
39285
|
+
this.w = false;
|
|
39165
39286
|
}
|
|
39166
39287
|
};
|
|
39167
|
-
ColorEditor.prototype.
|
|
39168
|
-
if (this.
|
|
39288
|
+
ColorEditor.prototype.b8 = function () {
|
|
39289
|
+
if (this.ai) {
|
|
39169
39290
|
return;
|
|
39170
39291
|
}
|
|
39171
|
-
if (this.
|
|
39172
|
-
var a = this.
|
|
39173
|
-
var b = this.
|
|
39292
|
+
if (this.s != null) {
|
|
39293
|
+
var a = this.h.r(false);
|
|
39294
|
+
var b = this.h.s();
|
|
39174
39295
|
var c = b.height;
|
|
39175
39296
|
var d = 240;
|
|
39176
39297
|
var e = a.bottom + d;
|
|
39177
39298
|
if (!igniteuiWebcomponentsCore.isNaN_(c) && c < e) {
|
|
39178
39299
|
var f = a.top - d;
|
|
39179
39300
|
if (f < 0) {
|
|
39180
|
-
this.
|
|
39301
|
+
this.ce(1, 0);
|
|
39181
39302
|
}
|
|
39182
39303
|
else {
|
|
39183
|
-
this.
|
|
39304
|
+
this.ce(2, 0);
|
|
39184
39305
|
}
|
|
39185
39306
|
}
|
|
39186
39307
|
else {
|
|
39187
|
-
this.
|
|
39308
|
+
this.ce(1, 0);
|
|
39188
39309
|
}
|
|
39189
39310
|
}
|
|
39190
39311
|
};
|
|
39191
|
-
ColorEditor.prototype.
|
|
39312
|
+
ColorEditor.prototype.ce = function (a, b) {
|
|
39192
39313
|
{
|
|
39193
|
-
var c = this.
|
|
39194
|
-
this.
|
|
39314
|
+
var c = this.h.r(true);
|
|
39315
|
+
this.s.cf(c, a, b);
|
|
39195
39316
|
}
|
|
39196
39317
|
};
|
|
39197
|
-
ColorEditor.prototype.
|
|
39318
|
+
ColorEditor.prototype.bi = function () {
|
|
39198
39319
|
var _this = this;
|
|
39199
|
-
if (this.
|
|
39200
|
-
this.a.executeDelayed(function () { return _this.
|
|
39320
|
+
if (this.s != null) {
|
|
39321
|
+
this.a.executeDelayed(function () { return _this.s.cc(); }, 0);
|
|
39201
39322
|
}
|
|
39202
|
-
if (this.
|
|
39203
|
-
this.
|
|
39323
|
+
if (this.e != null) {
|
|
39324
|
+
this.e.bg();
|
|
39204
39325
|
}
|
|
39205
|
-
this.
|
|
39326
|
+
this.w = false;
|
|
39206
39327
|
};
|
|
39207
39328
|
ColorEditor.prototype.focus = function (a) {
|
|
39208
39329
|
var _this = this;
|
|
39209
39330
|
if (a === void 0) {
|
|
39210
39331
|
a = false;
|
|
39211
39332
|
}
|
|
39212
|
-
if (this.
|
|
39213
|
-
this.
|
|
39333
|
+
if (this.r != null) {
|
|
39334
|
+
this.r.a0();
|
|
39214
39335
|
}
|
|
39215
|
-
if (!this.
|
|
39216
|
-
if (this.
|
|
39217
|
-
if (this.
|
|
39336
|
+
if (!this.s.b6 && this.al == true) {
|
|
39337
|
+
if (this.w == false) {
|
|
39338
|
+
if (this.aa) {
|
|
39218
39339
|
return;
|
|
39219
39340
|
}
|
|
39220
|
-
if (this.
|
|
39221
|
-
this.
|
|
39222
|
-
this.
|
|
39223
|
-
this.a.executeDelayed(function () { return _this.
|
|
39341
|
+
if (this.ah == false) {
|
|
39342
|
+
this.b8();
|
|
39343
|
+
this.w = true;
|
|
39344
|
+
this.a.executeDelayed(function () { return _this.bo(); }, 0);
|
|
39224
39345
|
}
|
|
39225
39346
|
else {
|
|
39226
|
-
if (this.
|
|
39227
|
-
this.
|
|
39228
|
-
this.
|
|
39229
|
-
this.a.executeDelayed(function () { return _this.
|
|
39347
|
+
if (this.al == true && this.ae == false) {
|
|
39348
|
+
this.b8();
|
|
39349
|
+
this.w = true;
|
|
39350
|
+
this.a.executeDelayed(function () { return _this.bo(); }, 0);
|
|
39230
39351
|
}
|
|
39231
39352
|
}
|
|
39232
39353
|
}
|
|
39233
39354
|
else {
|
|
39234
|
-
this.
|
|
39355
|
+
this.w = false;
|
|
39235
39356
|
}
|
|
39236
39357
|
}
|
|
39237
39358
|
};
|
|
39238
|
-
ColorEditor.prototype.
|
|
39239
|
-
this.
|
|
39359
|
+
ColorEditor.prototype.bp = function () {
|
|
39360
|
+
this.w = false;
|
|
39240
39361
|
};
|
|
39241
|
-
ColorEditor.prototype.
|
|
39242
|
-
if (this.
|
|
39243
|
-
this.
|
|
39362
|
+
ColorEditor.prototype.cb = function () {
|
|
39363
|
+
if (this.r != null) {
|
|
39364
|
+
this.r.b9();
|
|
39244
39365
|
}
|
|
39245
39366
|
};
|
|
39246
|
-
ColorEditor.prototype.
|
|
39247
|
-
this.
|
|
39367
|
+
ColorEditor.prototype.bo = function () {
|
|
39368
|
+
this.e.a3();
|
|
39248
39369
|
};
|
|
39249
|
-
ColorEditor.prototype.
|
|
39370
|
+
ColorEditor.prototype.bt = function () {
|
|
39250
39371
|
var a = new ColorEditorGotFocusEventArgs();
|
|
39251
|
-
this.
|
|
39372
|
+
this.bx(a);
|
|
39252
39373
|
};
|
|
39253
|
-
ColorEditor.prototype.
|
|
39374
|
+
ColorEditor.prototype.bu = function () {
|
|
39254
39375
|
var a = new ColorEditorLostFocusEventArgs();
|
|
39255
|
-
this.
|
|
39376
|
+
this.bz(a);
|
|
39377
|
+
};
|
|
39378
|
+
ColorEditor.prototype.cd = function () {
|
|
39379
|
+
};
|
|
39380
|
+
ColorEditor.prototype.cc = function () {
|
|
39381
|
+
};
|
|
39382
|
+
ColorEditor.prototype.as = function () {
|
|
39383
|
+
return this.b();
|
|
39256
39384
|
};
|
|
39257
|
-
ColorEditor.prototype.
|
|
39385
|
+
ColorEditor.prototype.ay = function () {
|
|
39386
|
+
var a = this.b();
|
|
39387
|
+
return a.h();
|
|
39258
39388
|
};
|
|
39259
|
-
ColorEditor.prototype.
|
|
39389
|
+
ColorEditor.prototype.b = function () {
|
|
39390
|
+
var a = new ColorEditorVisualModelExport();
|
|
39391
|
+
a.b = this.j;
|
|
39392
|
+
a.a = igniteuiWebcomponentsCore.AppearanceHelper.a(this.value);
|
|
39393
|
+
a.c = this.ai;
|
|
39394
|
+
return a;
|
|
39260
39395
|
};
|
|
39261
|
-
ColorEditor.prototype.
|
|
39396
|
+
ColorEditor.prototype.bx = function (a) {
|
|
39262
39397
|
if (null != this.gotFocus) {
|
|
39263
39398
|
this.gotFocus(this, a);
|
|
39264
39399
|
}
|
|
39265
39400
|
};
|
|
39266
|
-
ColorEditor.prototype.
|
|
39401
|
+
ColorEditor.prototype.bz = function (a) {
|
|
39267
39402
|
if (null != this.lostFocus) {
|
|
39268
39403
|
this.lostFocus(this, a);
|
|
39269
39404
|
}
|
|
39270
39405
|
};
|
|
39271
39406
|
ColorEditor.$t = igniteuiWebcomponentsCore.markType(ColorEditor, 'ColorEditor', igniteuiWebcomponentsCore.Base.$, [igniteuiWebcomponentsCore.INotifyPropertyChanged_$type]);
|
|
39272
|
-
ColorEditor.
|
|
39273
|
-
ColorEditor.
|
|
39407
|
+
ColorEditor.a8 = "M13.093 6.743a1.074 1.074 0 011.306.251l.237.237-6.4 6.4-.242-.231a1.074 1.074 0 01-.251-1.306c.446-.693 1.553-2.516.515-3.554-1.584-1.585-2.225-.94-3.809-2.528S2.714 3 3.354 2.354s2.073-.489 3.658 1.095.943 2.225 2.527 3.809c1.038 1.042 2.861-.069 3.554-.515zm6.93 5.874L15.31 7.9 8.9 14.31l4.433 4.433c-.039.159-.084.327-.137.508 0 0-.8 2.749.8 2.749s.8-2.749.8-2.749a10.75 10.75 0 01-.272-1.14L16.2 16.44a8.944 8.944 0 00-2.072-3.314s.555-.545 3.323 2.063l.811-.811-1.54-2.5 2.5 1.539z";
|
|
39408
|
+
ColorEditor.o = null;
|
|
39274
39409
|
return ColorEditor;
|
|
39275
39410
|
}(igniteuiWebcomponentsCore.Base));
|
|
39276
39411
|
/**
|
|
@@ -40499,10 +40634,10 @@
|
|
|
40499
40634
|
* Gets or Sets the property name that contains the label.
|
|
40500
40635
|
*/
|
|
40501
40636
|
get: function () {
|
|
40502
|
-
return this.i.
|
|
40637
|
+
return this.i.a2;
|
|
40503
40638
|
},
|
|
40504
40639
|
set: function (v) {
|
|
40505
|
-
this.i.
|
|
40640
|
+
this.i.a2 = v;
|
|
40506
40641
|
},
|
|
40507
40642
|
enumerable: false,
|
|
40508
40643
|
configurable: true
|
|
@@ -40512,11 +40647,11 @@
|
|
|
40512
40647
|
* Gets or sets the color to use for the text.
|
|
40513
40648
|
*/
|
|
40514
40649
|
get: function () {
|
|
40515
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
40650
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.cq);
|
|
40516
40651
|
},
|
|
40517
40652
|
set: function (v) {
|
|
40518
|
-
this.i.
|
|
40519
|
-
this._a("labelTextColor", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
40653
|
+
this.i.cq = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
40654
|
+
this._a("labelTextColor", igniteuiWebcomponentsCore.brushToString(this.i.cq));
|
|
40520
40655
|
},
|
|
40521
40656
|
enumerable: false,
|
|
40522
40657
|
configurable: true
|
|
@@ -40526,16 +40661,16 @@
|
|
|
40526
40661
|
* Gets or sets the font to use for the input.
|
|
40527
40662
|
*/
|
|
40528
40663
|
get: function () {
|
|
40529
|
-
if (this.i.
|
|
40664
|
+
if (this.i.p == null) {
|
|
40530
40665
|
return null;
|
|
40531
40666
|
}
|
|
40532
|
-
return this.i.
|
|
40667
|
+
return this.i.p.fontString;
|
|
40533
40668
|
},
|
|
40534
40669
|
set: function (v) {
|
|
40535
40670
|
var fi = new igniteuiWebcomponentsCore.FontInfo();
|
|
40536
40671
|
fi.fontString = v;
|
|
40537
|
-
this.i.
|
|
40538
|
-
this._a("labelTextStyle", this.i.
|
|
40672
|
+
this.i.p = fi;
|
|
40673
|
+
this._a("labelTextStyle", this.i.p != null ? this.i.p.fontString : "");
|
|
40539
40674
|
},
|
|
40540
40675
|
enumerable: false,
|
|
40541
40676
|
configurable: true
|
|
@@ -40545,11 +40680,11 @@
|
|
|
40545
40680
|
* Gets or sets the display density to use for the date pcicker.
|
|
40546
40681
|
*/
|
|
40547
40682
|
get: function () {
|
|
40548
|
-
return this.i.
|
|
40683
|
+
return this.i.l;
|
|
40549
40684
|
},
|
|
40550
40685
|
set: function (v) {
|
|
40551
|
-
this.i.
|
|
40552
|
-
this._a("density", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.i.
|
|
40686
|
+
this.i.l = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, v);
|
|
40687
|
+
this._a("density", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.i.l));
|
|
40553
40688
|
},
|
|
40554
40689
|
enumerable: false,
|
|
40555
40690
|
configurable: true
|
|
@@ -40559,11 +40694,11 @@
|
|
|
40559
40694
|
* Gets or sets the base built in theme to use for the date picker.
|
|
40560
40695
|
*/
|
|
40561
40696
|
get: function () {
|
|
40562
|
-
return this.i.
|
|
40697
|
+
return this.i.j;
|
|
40563
40698
|
},
|
|
40564
40699
|
set: function (v) {
|
|
40565
|
-
this.i.
|
|
40566
|
-
this._a("baseTheme", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.BaseControlTheme_$type, this.i.
|
|
40700
|
+
this.i.j = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.BaseControlTheme_$type, v);
|
|
40701
|
+
this._a("baseTheme", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.BaseControlTheme_$type, this.i.j));
|
|
40567
40702
|
},
|
|
40568
40703
|
enumerable: false,
|
|
40569
40704
|
configurable: true
|
|
@@ -40573,16 +40708,16 @@
|
|
|
40573
40708
|
* Gets or sets the font to use for the combobox.
|
|
40574
40709
|
*/
|
|
40575
40710
|
get: function () {
|
|
40576
|
-
if (this.i.
|
|
40711
|
+
if (this.i.q == null) {
|
|
40577
40712
|
return null;
|
|
40578
40713
|
}
|
|
40579
|
-
return this.i.
|
|
40714
|
+
return this.i.q.fontString;
|
|
40580
40715
|
},
|
|
40581
40716
|
set: function (v) {
|
|
40582
40717
|
var fi = new igniteuiWebcomponentsCore.FontInfo();
|
|
40583
40718
|
fi.fontString = v;
|
|
40584
|
-
this.i.
|
|
40585
|
-
this._a("textStyle", this.i.
|
|
40719
|
+
this.i.q = fi;
|
|
40720
|
+
this._a("textStyle", this.i.q != null ? this.i.q.fontString : "");
|
|
40586
40721
|
},
|
|
40587
40722
|
enumerable: false,
|
|
40588
40723
|
configurable: true
|
|
@@ -40592,11 +40727,11 @@
|
|
|
40592
40727
|
* Gets or Sets the text color
|
|
40593
40728
|
*/
|
|
40594
40729
|
get: function () {
|
|
40595
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
40730
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.cr);
|
|
40596
40731
|
},
|
|
40597
40732
|
set: function (v) {
|
|
40598
|
-
this.i.
|
|
40599
|
-
this._a("textColor", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
40733
|
+
this.i.cr = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
40734
|
+
this._a("textColor", igniteuiWebcomponentsCore.brushToString(this.i.cr));
|
|
40600
40735
|
},
|
|
40601
40736
|
enumerable: false,
|
|
40602
40737
|
configurable: true
|
|
@@ -40606,11 +40741,11 @@
|
|
|
40606
40741
|
* Gets or Sets the text color
|
|
40607
40742
|
*/
|
|
40608
40743
|
get: function () {
|
|
40609
|
-
return igniteuiWebcomponentsCore.brushToString(this.i.
|
|
40744
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.cp);
|
|
40610
40745
|
},
|
|
40611
40746
|
set: function (v) {
|
|
40612
|
-
this.i.
|
|
40613
|
-
this._a("iconColor", igniteuiWebcomponentsCore.brushToString(this.i.
|
|
40747
|
+
this.i.cp = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
40748
|
+
this._a("iconColor", igniteuiWebcomponentsCore.brushToString(this.i.cp));
|
|
40614
40749
|
},
|
|
40615
40750
|
enumerable: false,
|
|
40616
40751
|
configurable: true
|
|
@@ -40620,11 +40755,11 @@
|
|
|
40620
40755
|
* Gets or sets the ShowClearButton property to detirmine if the clear button is shown
|
|
40621
40756
|
*/
|
|
40622
40757
|
get: function () {
|
|
40623
|
-
return this.i.
|
|
40758
|
+
return this.i.an;
|
|
40624
40759
|
},
|
|
40625
40760
|
set: function (v) {
|
|
40626
|
-
this.i.
|
|
40627
|
-
this._a("showClearButton", this.i.
|
|
40761
|
+
this.i.an = igniteuiWebcomponentsCore.ensureBool(v);
|
|
40762
|
+
this._a("showClearButton", this.i.an);
|
|
40628
40763
|
},
|
|
40629
40764
|
enumerable: false,
|
|
40630
40765
|
configurable: true
|
|
@@ -40634,11 +40769,11 @@
|
|
|
40634
40769
|
* Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
|
|
40635
40770
|
*/
|
|
40636
40771
|
get: function () {
|
|
40637
|
-
return this.i.
|
|
40772
|
+
return this.i.ah;
|
|
40638
40773
|
},
|
|
40639
40774
|
set: function (v) {
|
|
40640
|
-
this.i.
|
|
40641
|
-
this._a("allowTextInput", this.i.
|
|
40775
|
+
this.i.ah = igniteuiWebcomponentsCore.ensureBool(v);
|
|
40776
|
+
this._a("allowTextInput", this.i.ah);
|
|
40642
40777
|
},
|
|
40643
40778
|
enumerable: false,
|
|
40644
40779
|
configurable: true
|
|
@@ -40648,22 +40783,22 @@
|
|
|
40648
40783
|
* Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
|
|
40649
40784
|
*/
|
|
40650
40785
|
get: function () {
|
|
40651
|
-
return this.i.
|
|
40786
|
+
return this.i.al;
|
|
40652
40787
|
},
|
|
40653
40788
|
set: function (v) {
|
|
40654
|
-
this.i.
|
|
40655
|
-
this._a("openOnFocus", this.i.
|
|
40789
|
+
this.i.al = igniteuiWebcomponentsCore.ensureBool(v);
|
|
40790
|
+
this._a("openOnFocus", this.i.al);
|
|
40656
40791
|
},
|
|
40657
40792
|
enumerable: false,
|
|
40658
40793
|
configurable: true
|
|
40659
40794
|
});
|
|
40660
40795
|
Object.defineProperty(IgcColorEditorComponent.prototype, "isDisabled", {
|
|
40661
40796
|
get: function () {
|
|
40662
|
-
return this.i.
|
|
40797
|
+
return this.i.ai;
|
|
40663
40798
|
},
|
|
40664
40799
|
set: function (v) {
|
|
40665
|
-
this.i.
|
|
40666
|
-
this._a("isDisabled", this.i.
|
|
40800
|
+
this.i.ai = igniteuiWebcomponentsCore.ensureBool(v);
|
|
40801
|
+
this._a("isDisabled", this.i.ai);
|
|
40667
40802
|
},
|
|
40668
40803
|
enumerable: false,
|
|
40669
40804
|
configurable: true
|
|
@@ -40673,11 +40808,11 @@
|
|
|
40673
40808
|
* Indicates that the editor dropdown will position itself relative to the window instead of the document.
|
|
40674
40809
|
*/
|
|
40675
40810
|
get: function () {
|
|
40676
|
-
return this.i.
|
|
40811
|
+
return this.i.aj;
|
|
40677
40812
|
},
|
|
40678
40813
|
set: function (v) {
|
|
40679
|
-
this.i.
|
|
40680
|
-
this._a("isFixed", this.i.
|
|
40814
|
+
this.i.aj = igniteuiWebcomponentsCore.ensureBool(v);
|
|
40815
|
+
this._a("isFixed", this.i.aj);
|
|
40681
40816
|
},
|
|
40682
40817
|
enumerable: false,
|
|
40683
40818
|
configurable: true
|
|
@@ -40687,11 +40822,11 @@
|
|
|
40687
40822
|
* Indicates that the dropdown should open as a child of the color editor.
|
|
40688
40823
|
*/
|
|
40689
40824
|
get: function () {
|
|
40690
|
-
return this.i.
|
|
40825
|
+
return this.i.ak;
|
|
40691
40826
|
},
|
|
40692
40827
|
set: function (v) {
|
|
40693
|
-
this.i.
|
|
40694
|
-
this._a("openAsChild", this.i.
|
|
40828
|
+
this.i.ak = igniteuiWebcomponentsCore.ensureBool(v);
|
|
40829
|
+
this._a("openAsChild", this.i.ak);
|
|
40695
40830
|
},
|
|
40696
40831
|
enumerable: false,
|
|
40697
40832
|
configurable: true
|
|
@@ -40701,11 +40836,11 @@
|
|
|
40701
40836
|
* Indicates that the dropdown will place itself into the browser top layer.
|
|
40702
40837
|
*/
|
|
40703
40838
|
get: function () {
|
|
40704
|
-
return this.i.
|
|
40839
|
+
return this.i.ao;
|
|
40705
40840
|
},
|
|
40706
40841
|
set: function (v) {
|
|
40707
|
-
this.i.
|
|
40708
|
-
this._a("useTopLayer", this.i.
|
|
40842
|
+
this.i.ao = igniteuiWebcomponentsCore.ensureBool(v);
|
|
40843
|
+
this._a("useTopLayer", this.i.ao);
|
|
40709
40844
|
},
|
|
40710
40845
|
enumerable: false,
|
|
40711
40846
|
configurable: true
|
|
@@ -40776,7 +40911,23 @@
|
|
|
40776
40911
|
this._inStyling = false;
|
|
40777
40912
|
};
|
|
40778
40913
|
IgcColorEditorComponent.prototype.select = function () {
|
|
40779
|
-
this.i.
|
|
40914
|
+
this.i.cb();
|
|
40915
|
+
};
|
|
40916
|
+
/**
|
|
40917
|
+
* Exports visual information about the current state of the color editor.
|
|
40918
|
+
|
|
40919
|
+
*/
|
|
40920
|
+
IgcColorEditorComponent.prototype.exportVisualModel = function () {
|
|
40921
|
+
var iv = this.i.as();
|
|
40922
|
+
return (iv);
|
|
40923
|
+
};
|
|
40924
|
+
/**
|
|
40925
|
+
* Returns a serialized copy of the exported visual model
|
|
40926
|
+
|
|
40927
|
+
*/
|
|
40928
|
+
IgcColorEditorComponent.prototype.exportSerializedVisualModel = function () {
|
|
40929
|
+
var iv = this.i.ay();
|
|
40930
|
+
return (iv);
|
|
40780
40931
|
};
|
|
40781
40932
|
Object.defineProperty(IgcColorEditorComponent.prototype, "valueChanged", {
|
|
40782
40933
|
/**
|
|
@@ -46295,6 +46446,47 @@
|
|
|
46295
46446
|
*/
|
|
46296
46447
|
var IconViewType_$type = /*@__PURE__*/ igniteuiWebcomponentsCore.markEnum('IconViewType', 'SVG,0|SVGPath,1|SVGPaths,2|DataURL,3|Source,4|None,5');
|
|
46297
46448
|
|
|
46449
|
+
/*
|
|
46450
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46451
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
46452
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
46453
|
+
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.
|
|
46454
|
+
*/
|
|
46455
|
+
/**
|
|
46456
|
+
* @hidden
|
|
46457
|
+
*/
|
|
46458
|
+
var CheckboxListVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
46459
|
+
tslib.__extends(CheckboxListVisualModelExport, _super);
|
|
46460
|
+
function CheckboxListVisualModelExport() {
|
|
46461
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
46462
|
+
_this.f = 0;
|
|
46463
|
+
_this.g = 0;
|
|
46464
|
+
_this.h = 0;
|
|
46465
|
+
_this.e = 0;
|
|
46466
|
+
_this.c = 0;
|
|
46467
|
+
_this.b = null;
|
|
46468
|
+
_this.a = null;
|
|
46469
|
+
_this.d = 0;
|
|
46470
|
+
return _this;
|
|
46471
|
+
}
|
|
46472
|
+
CheckboxListVisualModelExport.prototype.i = function () {
|
|
46473
|
+
var a = new igniteuiWebcomponentsCore.StringBuilder(0);
|
|
46474
|
+
a.l("{");
|
|
46475
|
+
a.l("left : " + this.f + ", ");
|
|
46476
|
+
a.l("top : " + this.g + ", ");
|
|
46477
|
+
a.l("height : " + this.e + ", ");
|
|
46478
|
+
a.l("width : " + this.h + ", ");
|
|
46479
|
+
a.l("baseTheme : " + igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.BaseControlTheme_$type, this.c) + ", ");
|
|
46480
|
+
a.l("backgroundColor : " + this.b.serialize() + ", ");
|
|
46481
|
+
a.l("actualSelectAllCaptionTextColor : " + this.a.serialize() + ", ");
|
|
46482
|
+
a.l("actualRowHeight : " + this.d);
|
|
46483
|
+
a.l("}");
|
|
46484
|
+
return a.toString();
|
|
46485
|
+
};
|
|
46486
|
+
CheckboxListVisualModelExport.$t = igniteuiWebcomponentsCore.markType(CheckboxListVisualModelExport, 'CheckboxListVisualModelExport');
|
|
46487
|
+
return CheckboxListVisualModelExport;
|
|
46488
|
+
}(igniteuiWebcomponentsCore.Base));
|
|
46489
|
+
|
|
46298
46490
|
/*
|
|
46299
46491
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46300
46492
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -46370,6 +46562,7 @@
|
|
|
46370
46562
|
exports.CalendarVisualModelExport = CalendarVisualModelExport;
|
|
46371
46563
|
exports.CheckboxChangeEventArgs = CheckboxChangeEventArgs;
|
|
46372
46564
|
exports.CheckboxLabelPosition_$type = CheckboxLabelPosition_$type;
|
|
46565
|
+
exports.CheckboxListVisualModelExport = CheckboxListVisualModelExport;
|
|
46373
46566
|
exports.CheckboxView = CheckboxView;
|
|
46374
46567
|
exports.CheckboxVisualModelExport = CheckboxVisualModelExport;
|
|
46375
46568
|
exports.ColorEditor = ColorEditor;
|
|
@@ -46381,6 +46574,7 @@
|
|
|
46381
46574
|
exports.ColorEditorPanelSelectedValueChangedEventArgs = ColorEditorPanelSelectedValueChangedEventArgs;
|
|
46382
46575
|
exports.ColorEditorPanelView = ColorEditorPanelView;
|
|
46383
46576
|
exports.ColorEditorView = ColorEditorView;
|
|
46577
|
+
exports.ColorEditorVisualModelExport = ColorEditorVisualModelExport;
|
|
46384
46578
|
exports.DateFormats = DateFormats;
|
|
46385
46579
|
exports.DateFormats_$type = DateFormats_$type;
|
|
46386
46580
|
exports.DatePickerView = DatePickerView;
|