igniteui-webcomponents-layouts 3.2.4 → 3.5.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-layouts.umd.js +789 -157
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/PropertyEditorPanelView_combined.js +20 -20
- package/esm2015/lib/PropertyEditorPropertyDescription_combined.js +84 -58
- package/esm2015/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm2015/lib/PropertyEditorValueType.js +2 -1
- package/esm2015/lib/ToolActionLabel.js +7 -0
- package/esm2015/lib/ToolActionRadio.js +7 -0
- package/esm2015/lib/ToolPanelView_combined.js +237 -53
- package/esm2015/lib/igc-list-panel-component.js +9 -0
- package/esm2015/lib/igc-list-panel-item-model.js +5 -0
- package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
- package/esm2015/lib/igc-popup-component.js +7 -0
- package/esm2015/lib/igc-property-editor-data-source.js +7 -2
- package/esm2015/lib/igc-property-editor-description-object.js +5 -0
- package/esm2015/lib/igc-property-editor-panel-component.js +5 -0
- package/esm2015/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm2015/lib/igc-tool-action-checkbox-component.js +14 -0
- package/esm2015/lib/igc-tool-action-component.js +21 -0
- package/esm2015/lib/igc-tool-action-event-detail.js +12 -6
- package/esm2015/lib/igc-tool-action-group-header-component.js +14 -0
- package/esm2015/lib/igc-tool-action-icon-button-component.js +14 -0
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +14 -0
- package/esm2015/lib/igc-tool-action-label-component.js +63 -0
- package/esm2015/lib/igc-tool-action-label-module.js +16 -0
- package/esm2015/lib/igc-tool-action-menu-base-component.js +14 -0
- package/esm2015/lib/igc-tool-action-number-input-component.js +14 -0
- package/esm2015/lib/igc-tool-action-performed-event-args.js +11 -5
- package/esm2015/lib/igc-tool-action-radio-component.js +69 -0
- package/esm2015/lib/igc-tool-action-radio-module.js +16 -0
- package/esm2015/lib/igc-tool-action-separator-component.js +14 -0
- package/esm2015/lib/igc-tool-panel-component.js +13 -6
- package/esm2015/lib/igc-toolbar-component.js +5 -0
- package/esm2015/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm2015/public_api.js +6 -0
- package/esm5/lib/PropertyEditorPanelView_combined.js +20 -20
- package/esm5/lib/PropertyEditorPropertyDescription_combined.js +82 -57
- package/esm5/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm5/lib/PropertyEditorValueType.js +2 -1
- package/esm5/lib/ToolActionLabel.js +7 -0
- package/esm5/lib/ToolActionRadio.js +7 -0
- package/esm5/lib/ToolPanelView_combined.js +241 -51
- package/esm5/lib/igc-list-panel-component.js +9 -0
- package/esm5/lib/igc-list-panel-item-model.js +5 -0
- package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
- package/esm5/lib/igc-popup-component.js +7 -0
- package/esm5/lib/igc-property-editor-data-source.js +7 -2
- package/esm5/lib/igc-property-editor-description-object.js +5 -0
- package/esm5/lib/igc-property-editor-panel-component.js +5 -0
- package/esm5/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm5/lib/igc-tool-action-checkbox-component.js +14 -0
- package/esm5/lib/igc-tool-action-component.js +21 -0
- package/esm5/lib/igc-tool-action-event-detail.js +12 -6
- package/esm5/lib/igc-tool-action-group-header-component.js +14 -0
- package/esm5/lib/igc-tool-action-icon-button-component.js +14 -0
- package/esm5/lib/igc-tool-action-icon-menu-component.js +14 -0
- package/esm5/lib/igc-tool-action-label-component.js +72 -0
- package/esm5/lib/igc-tool-action-label-module.js +20 -0
- package/esm5/lib/igc-tool-action-menu-base-component.js +14 -0
- package/esm5/lib/igc-tool-action-number-input-component.js +14 -0
- package/esm5/lib/igc-tool-action-performed-event-args.js +11 -5
- package/esm5/lib/igc-tool-action-radio-component.js +82 -0
- package/esm5/lib/igc-tool-action-radio-module.js +20 -0
- package/esm5/lib/igc-tool-action-separator-component.js +14 -0
- package/esm5/lib/igc-tool-panel-component.js +13 -6
- package/esm5/lib/igc-toolbar-component.js +5 -0
- package/esm5/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm5/public_api.js +6 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +761 -162
- package/fesm5/igniteui-webcomponents-layouts.js +785 -159
- package/lib/PropertyEditorPropertyDescription_combined.d.ts +13 -10
- package/lib/PropertyEditorValueType.d.ts +2 -1
- package/lib/ToolActionLabel.d.ts +1 -0
- package/lib/ToolActionRadio.d.ts +1 -0
- package/lib/ToolPanelView_combined.d.ts +33 -6
- package/lib/igc-property-editor-property-description-component.d.ts +1 -0
- package/lib/igc-tool-action-checkbox-component.d.ts +1 -0
- package/lib/igc-tool-action-component.d.ts +1 -0
- package/lib/igc-tool-action-group-header-component.d.ts +1 -0
- package/lib/igc-tool-action-icon-button-component.d.ts +1 -0
- package/lib/igc-tool-action-icon-menu-component.d.ts +1 -0
- package/lib/igc-tool-action-label-component.d.ts +17 -0
- package/lib/igc-tool-action-label-module.d.ts +3 -0
- package/lib/igc-tool-action-menu-base-component.d.ts +1 -0
- package/lib/igc-tool-action-number-input-component.d.ts +1 -0
- package/lib/igc-tool-action-radio-component.d.ts +18 -0
- package/lib/igc-tool-action-radio-module.d.ts +3 -0
- package/lib/igc-tool-action-separator-component.d.ts +1 -0
- package/package.json +3 -3
- package/public_api.d.ts +6 -0
|
@@ -28,8 +28,8 @@ import { DeviceUtils } from "igniteui-webcomponents-core";
|
|
|
28
28
|
import { ToolPanelOrientation_$type } from "./ToolPanelOrientation";
|
|
29
29
|
import { stringReplace } from "igniteui-webcomponents-core";
|
|
30
30
|
import { isNaN_, tryParseNumber } from "igniteui-webcomponents-core";
|
|
31
|
-
import { BrushUtil } from "igniteui-webcomponents-core";
|
|
32
31
|
import { Thickness } from "igniteui-webcomponents-core";
|
|
32
|
+
import { BrushUtil } from "igniteui-webcomponents-core";
|
|
33
33
|
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
34
34
|
import { ToolPanelContentRefreshedEventArgs } from "./ToolPanelContentRefreshedEventArgs";
|
|
35
35
|
import { SRProvider } from "igniteui-webcomponents-core";
|
|
@@ -118,8 +118,8 @@ var ToolPanelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
118
118
|
}
|
|
119
119
|
var b = a.rootWrapper;
|
|
120
120
|
if (null != b) {
|
|
121
|
-
NativeUI.o(b, this.c.
|
|
122
|
-
NativeUI.k(b, this.c.
|
|
121
|
+
NativeUI.o(b, this.c.ba);
|
|
122
|
+
NativeUI.k(b, this.c.a7);
|
|
123
123
|
}
|
|
124
124
|
};
|
|
125
125
|
ToolPanelView.prototype.f = function () {
|
|
@@ -587,12 +587,18 @@ var ToolAction = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
587
587
|
b = new ToolActionIconButton();
|
|
588
588
|
break;
|
|
589
589
|
case 4:
|
|
590
|
-
b = new
|
|
590
|
+
b = new ToolActionLabel();
|
|
591
591
|
break;
|
|
592
592
|
case 5:
|
|
593
|
-
b = new
|
|
593
|
+
b = new ToolActionNumberInput();
|
|
594
594
|
break;
|
|
595
595
|
case 6:
|
|
596
|
+
b = new ToolActionRadio();
|
|
597
|
+
break;
|
|
598
|
+
case 7:
|
|
599
|
+
b = new ToolActionSeparator();
|
|
600
|
+
break;
|
|
601
|
+
case 8:
|
|
596
602
|
b = new ToolActionIconMenu();
|
|
597
603
|
break;
|
|
598
604
|
case 0: return null;
|
|
@@ -618,6 +624,165 @@ var ToolAction = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
618
624
|
return ToolAction;
|
|
619
625
|
}(Base));
|
|
620
626
|
export { ToolAction };
|
|
627
|
+
/**
|
|
628
|
+
* @hidden
|
|
629
|
+
*/
|
|
630
|
+
var ToolActionLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
631
|
+
tslib_1.__extends(ToolActionLabel, _super);
|
|
632
|
+
function ToolActionLabel() {
|
|
633
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
634
|
+
}
|
|
635
|
+
ToolActionLabel.prototype.get_f = function () {
|
|
636
|
+
return 4;
|
|
637
|
+
};
|
|
638
|
+
ToolActionLabel.prototype.bf = function (a, b, c, d, e, f, g) {
|
|
639
|
+
if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
|
|
640
|
+
a.a0 = b;
|
|
641
|
+
if (g.a == 1) {
|
|
642
|
+
b.d = 0;
|
|
643
|
+
}
|
|
644
|
+
else {
|
|
645
|
+
b.d = 3;
|
|
646
|
+
}
|
|
647
|
+
b.a7(0, 2, 1);
|
|
648
|
+
b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
|
|
649
|
+
b.a6(1, 1, isNaN_(g.g) ? 0 : g.g);
|
|
650
|
+
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
651
|
+
if (b.av == 0) {
|
|
652
|
+
b.aw(c);
|
|
653
|
+
}
|
|
654
|
+
b.bb(c, 0);
|
|
655
|
+
b.ba(c, 1);
|
|
656
|
+
c.e = 1;
|
|
657
|
+
b.a1 = runOn(this, this.be);
|
|
658
|
+
}
|
|
659
|
+
b.h = f.a.j;
|
|
660
|
+
b.aj = BrushUtil.g(0, 0, 0, 0);
|
|
661
|
+
c.au = this.ap;
|
|
662
|
+
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
663
|
+
};
|
|
664
|
+
ToolActionLabel.prototype.be = function (a, b) {
|
|
665
|
+
this.a9(this.b(false), this);
|
|
666
|
+
};
|
|
667
|
+
ToolActionLabel.prototype.bb = function (a, b, c, d) {
|
|
668
|
+
var _this = this;
|
|
669
|
+
_super.prototype.bb.call(this, a, b, c, d);
|
|
670
|
+
var e = c.b;
|
|
671
|
+
if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
|
|
672
|
+
NativeUIComponent.ab(b.l.r(), [7, 3], function (f) {
|
|
673
|
+
var g = f[0];
|
|
674
|
+
var h = f[1];
|
|
675
|
+
e.a0 = g;
|
|
676
|
+
_this.bf(e, g, h, a, b, c, d);
|
|
677
|
+
});
|
|
678
|
+
;
|
|
679
|
+
}
|
|
680
|
+
else {
|
|
681
|
+
var f = e.a0;
|
|
682
|
+
var g = f.au(0);
|
|
683
|
+
this.bf(e, f, g, a, b, c, d);
|
|
684
|
+
}
|
|
685
|
+
};
|
|
686
|
+
ToolActionLabel.$t = markType(ToolActionLabel, 'ToolActionLabel', ToolAction.$);
|
|
687
|
+
return ToolActionLabel;
|
|
688
|
+
}(ToolAction));
|
|
689
|
+
export { ToolActionLabel };
|
|
690
|
+
/**
|
|
691
|
+
* @hidden
|
|
692
|
+
*/
|
|
693
|
+
var ToolActionRadio = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
694
|
+
tslib_1.__extends(ToolActionRadio, _super);
|
|
695
|
+
function ToolActionRadio() {
|
|
696
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
697
|
+
_this.bf = null;
|
|
698
|
+
_this.be = null;
|
|
699
|
+
return _this;
|
|
700
|
+
}
|
|
701
|
+
ToolActionRadio.prototype.get_f = function () {
|
|
702
|
+
return 6;
|
|
703
|
+
};
|
|
704
|
+
ToolActionRadio.prototype.b = function (a) {
|
|
705
|
+
var b = new ToolActionEventDetail();
|
|
706
|
+
b.a = this;
|
|
707
|
+
b.b = this.f;
|
|
708
|
+
b.d = a;
|
|
709
|
+
if (this.be != null) {
|
|
710
|
+
b.c = this.be.aw;
|
|
711
|
+
}
|
|
712
|
+
return b;
|
|
713
|
+
};
|
|
714
|
+
ToolActionRadio.prototype.x = function () {
|
|
715
|
+
return this.be.aw;
|
|
716
|
+
};
|
|
717
|
+
ToolActionRadio.prototype.bg = function () {
|
|
718
|
+
if (this.be != null) {
|
|
719
|
+
this.be.aw = false;
|
|
720
|
+
}
|
|
721
|
+
};
|
|
722
|
+
ToolActionRadio.prototype.o = function (a, b) {
|
|
723
|
+
return 30;
|
|
724
|
+
};
|
|
725
|
+
ToolActionRadio.prototype.bi = function (a, b, c, d, e, f, g, h) {
|
|
726
|
+
if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
|
|
727
|
+
a.a0 = b;
|
|
728
|
+
if (h.a == 1) {
|
|
729
|
+
b.d = 0;
|
|
730
|
+
}
|
|
731
|
+
else {
|
|
732
|
+
b.d = 3;
|
|
733
|
+
}
|
|
734
|
+
b.a7(0, 2, 1);
|
|
735
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
736
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
737
|
+
b.a6(1, 2, 1);
|
|
738
|
+
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
739
|
+
if (b.av == 0) {
|
|
740
|
+
b.aw(c);
|
|
741
|
+
b.aw(d);
|
|
742
|
+
}
|
|
743
|
+
b.bb(c, 0);
|
|
744
|
+
b.ba(c, 1);
|
|
745
|
+
b.bb(d, 0);
|
|
746
|
+
b.ba(d, 2);
|
|
747
|
+
this.be = d;
|
|
748
|
+
d.ax = 25;
|
|
749
|
+
d.av = true;
|
|
750
|
+
d.d = 2;
|
|
751
|
+
d.e = 1;
|
|
752
|
+
d.au = runOn(this, this.bh);
|
|
753
|
+
c.e = 1;
|
|
754
|
+
}
|
|
755
|
+
b.h = g.a.j;
|
|
756
|
+
c.au = this.ap;
|
|
757
|
+
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
758
|
+
};
|
|
759
|
+
ToolActionRadio.prototype.bh = function (a, b) {
|
|
760
|
+
this.a9(this.b(true), this);
|
|
761
|
+
};
|
|
762
|
+
ToolActionRadio.prototype.bb = function (a, b, c, d) {
|
|
763
|
+
var _this = this;
|
|
764
|
+
_super.prototype.bb.call(this, a, b, c, d);
|
|
765
|
+
var e = c.b;
|
|
766
|
+
if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
|
|
767
|
+
NativeUIComponent.ab(b.l.r(), [7, 3, 6], function (f) {
|
|
768
|
+
var g = f[0];
|
|
769
|
+
var h = f[1];
|
|
770
|
+
var i = f[2];
|
|
771
|
+
e.a0 = g;
|
|
772
|
+
_this.bi(e, g, h, i, a, b, c, d);
|
|
773
|
+
});
|
|
774
|
+
}
|
|
775
|
+
else {
|
|
776
|
+
var f = e.a0;
|
|
777
|
+
var g = f.au(0);
|
|
778
|
+
var h = f.au(1);
|
|
779
|
+
this.bi(e, f, g, h, a, b, c, d);
|
|
780
|
+
}
|
|
781
|
+
};
|
|
782
|
+
ToolActionRadio.$t = markType(ToolActionRadio, 'ToolActionRadio', ToolAction.$);
|
|
783
|
+
return ToolActionRadio;
|
|
784
|
+
}(ToolAction));
|
|
785
|
+
export { ToolActionRadio };
|
|
621
786
|
/**
|
|
622
787
|
* @hidden
|
|
623
788
|
*/
|
|
@@ -627,7 +792,7 @@ var ToolActionSeparator = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
627
792
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
628
793
|
}
|
|
629
794
|
ToolActionSeparator.prototype.get_f = function () {
|
|
630
|
-
return
|
|
795
|
+
return 7;
|
|
631
796
|
};
|
|
632
797
|
ToolActionSeparator.prototype.a5 = function (a, b) {
|
|
633
798
|
_super.prototype.a5.call(this, a, b);
|
|
@@ -713,14 +878,14 @@ var ToolActionIconButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
713
878
|
else {
|
|
714
879
|
b.d = 3;
|
|
715
880
|
}
|
|
716
|
-
b.
|
|
717
|
-
b.
|
|
881
|
+
b.a7(0, 2, 1);
|
|
882
|
+
b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
|
|
718
883
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
719
884
|
if (b.av == 0) {
|
|
720
885
|
b.aw(c);
|
|
721
886
|
}
|
|
722
|
-
b.
|
|
723
|
-
b.
|
|
887
|
+
b.bb(c, 0);
|
|
888
|
+
b.ba(c, 0);
|
|
724
889
|
this.be = c;
|
|
725
890
|
this.be.av = 2;
|
|
726
891
|
this.be.au = runOn(this, this.bf);
|
|
@@ -774,9 +939,9 @@ var ToolActionGroupHeader = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
774
939
|
else {
|
|
775
940
|
b.d = 3;
|
|
776
941
|
}
|
|
777
|
-
b.
|
|
778
|
-
b.
|
|
779
|
-
b.
|
|
942
|
+
b.a7(0, 2, 1);
|
|
943
|
+
b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
|
|
944
|
+
b.a6(1, 2, 1);
|
|
780
945
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
781
946
|
if (b.av == 0) {
|
|
782
947
|
b.aw(c);
|
|
@@ -789,8 +954,8 @@ var ToolActionGroupHeader = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
789
954
|
b.aq = new Thickness(1, 0, 0, 0, 2);
|
|
790
955
|
c.au = this.ap;
|
|
791
956
|
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
792
|
-
b.
|
|
793
|
-
b.
|
|
957
|
+
b.bb(c, 0);
|
|
958
|
+
b.ba(c, 1);
|
|
794
959
|
};
|
|
795
960
|
ToolActionGroupHeader.prototype.bb = function (a, b, c, d) {
|
|
796
961
|
var _this = this;
|
|
@@ -965,14 +1130,14 @@ var ToolActionIconMenu = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
965
1130
|
else {
|
|
966
1131
|
b.d = 3;
|
|
967
1132
|
}
|
|
968
|
-
b.
|
|
969
|
-
b.
|
|
1133
|
+
b.a7(0, 2, 1);
|
|
1134
|
+
b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
|
|
970
1135
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
971
1136
|
if (b.av == 0) {
|
|
972
1137
|
b.aw(c);
|
|
973
1138
|
}
|
|
974
|
-
b.
|
|
975
|
-
b.
|
|
1139
|
+
b.bb(c, 0);
|
|
1140
|
+
b.ba(c, 0);
|
|
976
1141
|
this.bz = c;
|
|
977
1142
|
this.bz.av = 2;
|
|
978
1143
|
this.bz.au = runOn(this, this.b0);
|
|
@@ -1044,19 +1209,19 @@ var ToolActionCheckbox = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1044
1209
|
else {
|
|
1045
1210
|
b.d = 3;
|
|
1046
1211
|
}
|
|
1047
|
-
b.
|
|
1048
|
-
b.
|
|
1049
|
-
b.
|
|
1050
|
-
b.
|
|
1212
|
+
b.a7(0, 2, 1);
|
|
1213
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
1214
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
1215
|
+
b.a6(1, 2, 1);
|
|
1051
1216
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
1052
1217
|
if (b.av == 0) {
|
|
1053
1218
|
b.aw(c);
|
|
1054
1219
|
b.aw(d);
|
|
1055
1220
|
}
|
|
1056
|
-
b.
|
|
1057
|
-
b.
|
|
1058
|
-
b.
|
|
1059
|
-
b.
|
|
1221
|
+
b.bb(c, 0);
|
|
1222
|
+
b.ba(c, 1);
|
|
1223
|
+
b.bb(d, 0);
|
|
1224
|
+
b.ba(d, 2);
|
|
1060
1225
|
this.be = d;
|
|
1061
1226
|
d.av = true;
|
|
1062
1227
|
d.d = 2;
|
|
@@ -1106,7 +1271,7 @@ var ToolActionNumberInput = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1106
1271
|
return _this;
|
|
1107
1272
|
}
|
|
1108
1273
|
ToolActionNumberInput.prototype.get_f = function () {
|
|
1109
|
-
return
|
|
1274
|
+
return 5;
|
|
1110
1275
|
};
|
|
1111
1276
|
ToolActionNumberInput.prototype.x = function () {
|
|
1112
1277
|
return this.bf();
|
|
@@ -1123,19 +1288,19 @@ var ToolActionNumberInput = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1123
1288
|
else {
|
|
1124
1289
|
b.d = 3;
|
|
1125
1290
|
}
|
|
1126
|
-
b.
|
|
1127
|
-
b.
|
|
1128
|
-
b.
|
|
1129
|
-
b.
|
|
1291
|
+
b.a7(0, 2, 1);
|
|
1292
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
1293
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
1294
|
+
b.a6(1, 2, 1);
|
|
1130
1295
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
1131
1296
|
if (b.av == 0) {
|
|
1132
1297
|
b.aw(c);
|
|
1133
1298
|
b.aw(d);
|
|
1134
1299
|
}
|
|
1135
|
-
b.
|
|
1136
|
-
b.
|
|
1137
|
-
b.
|
|
1138
|
-
b.
|
|
1300
|
+
b.bb(c, 0);
|
|
1301
|
+
b.ba(c, 1);
|
|
1302
|
+
b.bb(d, 0);
|
|
1303
|
+
b.ba(d, 2);
|
|
1139
1304
|
this.be = d;
|
|
1140
1305
|
d.n = 100;
|
|
1141
1306
|
d.au = 2;
|
|
@@ -1277,8 +1442,8 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1277
1442
|
_this.v = new Dictionary$2(String_$type, ToolAction.$, 0);
|
|
1278
1443
|
_this.m = null;
|
|
1279
1444
|
_this.a = null;
|
|
1280
|
-
_this.a4 = ToolPanel.a7;
|
|
1281
1445
|
_this.a5 = ToolPanel.a8;
|
|
1446
|
+
_this.a6 = ToolPanel.a9;
|
|
1282
1447
|
_this.b = null;
|
|
1283
1448
|
_this.z = Number.POSITIVE_INFINITY;
|
|
1284
1449
|
_this.i = ToolPanel.j;
|
|
@@ -1443,7 +1608,7 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1443
1608
|
}
|
|
1444
1609
|
this.t = false;
|
|
1445
1610
|
this.al();
|
|
1446
|
-
this.
|
|
1611
|
+
this.a4();
|
|
1447
1612
|
for (var a = 0; a < this.d.count; a++) {
|
|
1448
1613
|
this.as(this.d._inner[a]);
|
|
1449
1614
|
}
|
|
@@ -1470,6 +1635,15 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1470
1635
|
}
|
|
1471
1636
|
}
|
|
1472
1637
|
}
|
|
1638
|
+
for (var d = 0; d < this.d.count; d++) {
|
|
1639
|
+
if (this.d._inner[d].f == 6) {
|
|
1640
|
+
var e = this.d._inner[d].bf;
|
|
1641
|
+
if (!this.x.containsKey(e)) {
|
|
1642
|
+
this.x.item(e, new List$1(ToolAction.$, 0));
|
|
1643
|
+
}
|
|
1644
|
+
this.x.item(e).add(this.d._inner[d]);
|
|
1645
|
+
}
|
|
1646
|
+
}
|
|
1473
1647
|
};
|
|
1474
1648
|
ToolPanel.prototype.u = function (a) {
|
|
1475
1649
|
if (a.ao == null) {
|
|
@@ -1520,7 +1694,7 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1520
1694
|
}
|
|
1521
1695
|
}
|
|
1522
1696
|
};
|
|
1523
|
-
ToolPanel.prototype.
|
|
1697
|
+
ToolPanel.prototype.a4 = function () {
|
|
1524
1698
|
this.f = new ToolActionMeasurementContext();
|
|
1525
1699
|
this.f.a = this.k;
|
|
1526
1700
|
this.f.b = this.z;
|
|
@@ -1538,6 +1712,19 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1538
1712
|
this.b.bt();
|
|
1539
1713
|
}
|
|
1540
1714
|
};
|
|
1715
|
+
ToolPanel.prototype.a3 = function (a) {
|
|
1716
|
+
var b = a.bf;
|
|
1717
|
+
var c = a.ao;
|
|
1718
|
+
if (this.x != null) {
|
|
1719
|
+
if (this.x.containsKey(b)) {
|
|
1720
|
+
for (var d = 0; d < this.x.item(b).count; d++) {
|
|
1721
|
+
if (this.x.item(b)._inner[d].ao != c) {
|
|
1722
|
+
this.x.item(b)._inner[d].bg();
|
|
1723
|
+
}
|
|
1724
|
+
}
|
|
1725
|
+
}
|
|
1726
|
+
}
|
|
1727
|
+
};
|
|
1541
1728
|
ToolPanel.prototype.ar = function (a, b) {
|
|
1542
1729
|
this.av();
|
|
1543
1730
|
};
|
|
@@ -1603,28 +1790,28 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1603
1790
|
break;
|
|
1604
1791
|
}
|
|
1605
1792
|
};
|
|
1606
|
-
Object.defineProperty(ToolPanel.prototype, "
|
|
1793
|
+
Object.defineProperty(ToolPanel.prototype, "a7", {
|
|
1607
1794
|
get: function () {
|
|
1608
|
-
return this.
|
|
1795
|
+
return this.a5;
|
|
1609
1796
|
},
|
|
1610
1797
|
set: function (a) {
|
|
1611
|
-
var b = this.
|
|
1612
|
-
this.
|
|
1613
|
-
if (b != this.
|
|
1798
|
+
var b = this.a5;
|
|
1799
|
+
this.a5 = a;
|
|
1800
|
+
if (b != this.a5) {
|
|
1614
1801
|
this.ax("BackgroundColor", b, a);
|
|
1615
1802
|
}
|
|
1616
1803
|
},
|
|
1617
1804
|
enumerable: true,
|
|
1618
1805
|
configurable: true
|
|
1619
1806
|
});
|
|
1620
|
-
Object.defineProperty(ToolPanel.prototype, "
|
|
1807
|
+
Object.defineProperty(ToolPanel.prototype, "ba", {
|
|
1621
1808
|
get: function () {
|
|
1622
|
-
return this.
|
|
1809
|
+
return this.a6;
|
|
1623
1810
|
},
|
|
1624
1811
|
set: function (a) {
|
|
1625
|
-
var b = this.
|
|
1626
|
-
this.
|
|
1627
|
-
if (b != this.
|
|
1812
|
+
var b = this.a6;
|
|
1813
|
+
this.a6 = a;
|
|
1814
|
+
if (b != this.a6) {
|
|
1628
1815
|
this.ax("TextColor", b, a);
|
|
1629
1816
|
}
|
|
1630
1817
|
},
|
|
@@ -1653,10 +1840,13 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1653
1840
|
return $ret;
|
|
1654
1841
|
})()));
|
|
1655
1842
|
}
|
|
1843
|
+
if (a.f == 6) {
|
|
1844
|
+
this.a3(a);
|
|
1845
|
+
}
|
|
1656
1846
|
};
|
|
1657
1847
|
ToolPanel.$t = markType(ToolPanel, 'ToolPanel', Base.$, [INotifyPropertyChanged_$type]);
|
|
1658
|
-
ToolPanel.
|
|
1659
|
-
ToolPanel.
|
|
1848
|
+
ToolPanel.a8 = BrushUtil.g(255, 248, 248, 248);
|
|
1849
|
+
ToolPanel.a9 = BrushUtil.g(255, 24, 29, 31);
|
|
1660
1850
|
ToolPanel.j = 0;
|
|
1661
1851
|
return ToolPanel;
|
|
1662
1852
|
}(Base));
|
|
@@ -307,6 +307,11 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
307
307
|
configurable: true
|
|
308
308
|
});
|
|
309
309
|
IgcListPanelComponent.prototype.findByName = function (name) {
|
|
310
|
+
if (this.findEphemera) {
|
|
311
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
312
|
+
return this.findEphemera(name);
|
|
313
|
+
}
|
|
314
|
+
}
|
|
310
315
|
return null;
|
|
311
316
|
};
|
|
312
317
|
Object.defineProperty(IgcListPanelComponent.prototype, "hasUserValues", {
|
|
@@ -442,6 +447,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
442
447
|
}
|
|
443
448
|
};
|
|
444
449
|
this.i.contentRefreshed = delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
|
|
450
|
+
;
|
|
445
451
|
},
|
|
446
452
|
enumerable: true,
|
|
447
453
|
configurable: true
|
|
@@ -469,6 +475,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
469
475
|
}
|
|
470
476
|
};
|
|
471
477
|
this.i.rowUpdating = delegateCombine(this.i.rowUpdating, this._rowUpdating_wrapped);
|
|
478
|
+
;
|
|
472
479
|
},
|
|
473
480
|
enumerable: true,
|
|
474
481
|
configurable: true
|
|
@@ -496,6 +503,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
496
503
|
}
|
|
497
504
|
};
|
|
498
505
|
this.i.itemWidthRequested = delegateCombine(this.i.itemWidthRequested, this._itemWidthRequested_wrapped);
|
|
506
|
+
;
|
|
499
507
|
},
|
|
500
508
|
enumerable: true,
|
|
501
509
|
configurable: true
|
|
@@ -523,6 +531,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
523
531
|
}
|
|
524
532
|
};
|
|
525
533
|
this.i.itemHeightRequested = delegateCombine(this.i.itemHeightRequested, this._itemHeightRequested_wrapped);
|
|
534
|
+
;
|
|
526
535
|
},
|
|
527
536
|
enumerable: true,
|
|
528
537
|
configurable: true
|
|
@@ -67,6 +67,11 @@ var IgcListPanelItemModel = /** @class */ /*@__PURE__*/ (function () {
|
|
|
67
67
|
configurable: true
|
|
68
68
|
});
|
|
69
69
|
IgcListPanelItemModel.prototype.findByName = function (name) {
|
|
70
|
+
if (this.findEphemera) {
|
|
71
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
72
|
+
return this.findEphemera(name);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
70
75
|
return null;
|
|
71
76
|
};
|
|
72
77
|
return IgcListPanelItemModel;
|
|
@@ -28,15 +28,21 @@ var IgcListPanelTemplateItemUpdatingEventArgs = /** @class */ /*@__PURE__*/ (fun
|
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "model", {
|
|
30
30
|
get: function () {
|
|
31
|
-
|
|
31
|
+
var r = this.i.a;
|
|
32
|
+
if (r == null) {
|
|
32
33
|
return null;
|
|
33
34
|
}
|
|
34
|
-
if (!
|
|
35
|
+
if (!r.externalObject) {
|
|
35
36
|
var e = new IgcListPanelItemModel();
|
|
36
|
-
e.
|
|
37
|
-
|
|
37
|
+
if (e.i.setNativeElement) {
|
|
38
|
+
e.i.setNativeElement(r);
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
e._implementation = r;
|
|
42
|
+
}
|
|
43
|
+
r.externalObject = e;
|
|
38
44
|
}
|
|
39
|
-
return
|
|
45
|
+
return r.externalObject;
|
|
40
46
|
},
|
|
41
47
|
set: function (v) {
|
|
42
48
|
v == null ? this.i.a = null : this.i.a = v.i;
|
|
@@ -316,6 +316,11 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
316
316
|
configurable: true
|
|
317
317
|
});
|
|
318
318
|
IgcPopupComponent.prototype.findByName = function (name) {
|
|
319
|
+
if (this.findEphemera) {
|
|
320
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
321
|
+
return this.findEphemera(name);
|
|
322
|
+
}
|
|
323
|
+
}
|
|
319
324
|
return null;
|
|
320
325
|
};
|
|
321
326
|
Object.defineProperty(IgcPopupComponent.prototype, "hasUserValues", {
|
|
@@ -424,6 +429,7 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
424
429
|
}
|
|
425
430
|
};
|
|
426
431
|
this.i.onClosed = delegateCombine(this.i.onClosed, this._onClosed_wrapped);
|
|
432
|
+
;
|
|
427
433
|
},
|
|
428
434
|
enumerable: true,
|
|
429
435
|
configurable: true
|
|
@@ -454,6 +460,7 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
454
460
|
}
|
|
455
461
|
};
|
|
456
462
|
this.i.onPopup = delegateCombine(this.i.onPopup, this._onPopup_wrapped);
|
|
463
|
+
;
|
|
457
464
|
},
|
|
458
465
|
enumerable: true,
|
|
459
466
|
configurable: true
|
|
@@ -27,10 +27,10 @@ var IgcPropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function () {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(IgcPropertyEditorDataSource.prototype, "descriptionType", {
|
|
29
29
|
get: function () {
|
|
30
|
-
return this.i.
|
|
30
|
+
return this.i.n;
|
|
31
31
|
},
|
|
32
32
|
set: function (v) {
|
|
33
|
-
this.i.
|
|
33
|
+
this.i.n = v;
|
|
34
34
|
},
|
|
35
35
|
enumerable: true,
|
|
36
36
|
configurable: true
|
|
@@ -46,6 +46,11 @@ var IgcPropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function () {
|
|
|
46
46
|
configurable: true
|
|
47
47
|
});
|
|
48
48
|
IgcPropertyEditorDataSource.prototype.findByName = function (name) {
|
|
49
|
+
if (this.findEphemera) {
|
|
50
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
51
|
+
return this.findEphemera(name);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
49
54
|
return null;
|
|
50
55
|
};
|
|
51
56
|
return IgcPropertyEditorDataSource;
|
|
@@ -74,6 +74,11 @@ var IgcPropertyEditorDescriptionObject = /** @class */ /*@__PURE__*/ (function (
|
|
|
74
74
|
configurable: true
|
|
75
75
|
});
|
|
76
76
|
IgcPropertyEditorDescriptionObject.prototype.findByName = function (name) {
|
|
77
|
+
if (this.findEphemera) {
|
|
78
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
79
|
+
return this.findEphemera(name);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
77
82
|
if (this.properties != null && this.properties.findByName && this.properties.findByName(name)) {
|
|
78
83
|
return this.properties.findByName(name);
|
|
79
84
|
}
|
|
@@ -452,6 +452,11 @@ var IgcPropertyEditorPanelComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
452
452
|
configurable: true
|
|
453
453
|
});
|
|
454
454
|
IgcPropertyEditorPanelComponent.prototype.findByName = function (name) {
|
|
455
|
+
if (this.findEphemera) {
|
|
456
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
457
|
+
return this.findEphemera(name);
|
|
458
|
+
}
|
|
459
|
+
}
|
|
455
460
|
if (this.actualDataSource != null && this.actualDataSource.findByName && this.actualDataSource.findByName(name)) {
|
|
456
461
|
return this.actualDataSource.findByName(name);
|
|
457
462
|
}
|