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
|
@@ -27,8 +27,8 @@ import { DeviceUtils } from "igniteui-webcomponents-core";
|
|
|
27
27
|
import { ToolPanelOrientation_$type } from "./ToolPanelOrientation";
|
|
28
28
|
import { stringReplace } from "igniteui-webcomponents-core";
|
|
29
29
|
import { isNaN_, tryParseNumber } from "igniteui-webcomponents-core";
|
|
30
|
-
import { BrushUtil } from "igniteui-webcomponents-core";
|
|
31
30
|
import { Thickness } from "igniteui-webcomponents-core";
|
|
31
|
+
import { BrushUtil } from "igniteui-webcomponents-core";
|
|
32
32
|
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
33
33
|
import { ToolPanelContentRefreshedEventArgs } from "./ToolPanelContentRefreshedEventArgs";
|
|
34
34
|
import { SRProvider } from "igniteui-webcomponents-core";
|
|
@@ -116,8 +116,8 @@ export let ToolPanelView = /*@__PURE__*/ (() => {
|
|
|
116
116
|
}
|
|
117
117
|
let b = a.rootWrapper;
|
|
118
118
|
if (null != b) {
|
|
119
|
-
NativeUI.o(b, this.c.
|
|
120
|
-
NativeUI.k(b, this.c.
|
|
119
|
+
NativeUI.o(b, this.c.ba);
|
|
120
|
+
NativeUI.k(b, this.c.a7);
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
f() {
|
|
@@ -522,12 +522,18 @@ export let ToolAction = /*@__PURE__*/ (() => {
|
|
|
522
522
|
b = new ToolActionIconButton();
|
|
523
523
|
break;
|
|
524
524
|
case 4:
|
|
525
|
-
b = new
|
|
525
|
+
b = new ToolActionLabel();
|
|
526
526
|
break;
|
|
527
527
|
case 5:
|
|
528
|
-
b = new
|
|
528
|
+
b = new ToolActionNumberInput();
|
|
529
529
|
break;
|
|
530
530
|
case 6:
|
|
531
|
+
b = new ToolActionRadio();
|
|
532
|
+
break;
|
|
533
|
+
case 7:
|
|
534
|
+
b = new ToolActionSeparator();
|
|
535
|
+
break;
|
|
536
|
+
case 8:
|
|
531
537
|
b = new ToolActionIconMenu();
|
|
532
538
|
break;
|
|
533
539
|
case 0: return null;
|
|
@@ -553,13 +559,166 @@ export let ToolAction = /*@__PURE__*/ (() => {
|
|
|
553
559
|
ToolAction.$t = /*@__PURE__*/ markType(ToolAction, 'ToolAction', Base.$, [INotifyPropertyChanged_$type]);
|
|
554
560
|
return ToolAction;
|
|
555
561
|
})();
|
|
562
|
+
/**
|
|
563
|
+
* @hidden
|
|
564
|
+
*/
|
|
565
|
+
export let ToolActionLabel = /*@__PURE__*/ (() => {
|
|
566
|
+
class ToolActionLabel extends ToolAction {
|
|
567
|
+
get_f() {
|
|
568
|
+
return 4;
|
|
569
|
+
}
|
|
570
|
+
bf(a, b, c, d, e, f, g) {
|
|
571
|
+
if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
|
|
572
|
+
a.a0 = b;
|
|
573
|
+
if (g.a == 1) {
|
|
574
|
+
b.d = 0;
|
|
575
|
+
}
|
|
576
|
+
else {
|
|
577
|
+
b.d = 3;
|
|
578
|
+
}
|
|
579
|
+
b.a7(0, 2, 1);
|
|
580
|
+
b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
|
|
581
|
+
b.a6(1, 1, isNaN_(g.g) ? 0 : g.g);
|
|
582
|
+
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
583
|
+
if (b.av == 0) {
|
|
584
|
+
b.aw(c);
|
|
585
|
+
}
|
|
586
|
+
b.bb(c, 0);
|
|
587
|
+
b.ba(c, 1);
|
|
588
|
+
c.e = 1;
|
|
589
|
+
b.a1 = runOn(this, this.be);
|
|
590
|
+
}
|
|
591
|
+
b.h = f.a.j;
|
|
592
|
+
b.aj = BrushUtil.g(0, 0, 0, 0);
|
|
593
|
+
c.au = this.ap;
|
|
594
|
+
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
595
|
+
}
|
|
596
|
+
be(a, b) {
|
|
597
|
+
this.a9(this.b(false), this);
|
|
598
|
+
}
|
|
599
|
+
bb(a, b, c, d) {
|
|
600
|
+
super.bb(a, b, c, d);
|
|
601
|
+
let e = c.b;
|
|
602
|
+
if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
|
|
603
|
+
NativeUIComponent.ab(b.l.r(), [7, 3], (f) => {
|
|
604
|
+
let g = f[0];
|
|
605
|
+
let h = f[1];
|
|
606
|
+
e.a0 = g;
|
|
607
|
+
this.bf(e, g, h, a, b, c, d);
|
|
608
|
+
});
|
|
609
|
+
;
|
|
610
|
+
}
|
|
611
|
+
else {
|
|
612
|
+
let f = e.a0;
|
|
613
|
+
let g = f.au(0);
|
|
614
|
+
this.bf(e, f, g, a, b, c, d);
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
ToolActionLabel.$t = /*@__PURE__*/ markType(ToolActionLabel, 'ToolActionLabel', ToolAction.$);
|
|
619
|
+
return ToolActionLabel;
|
|
620
|
+
})();
|
|
621
|
+
/**
|
|
622
|
+
* @hidden
|
|
623
|
+
*/
|
|
624
|
+
export let ToolActionRadio = /*@__PURE__*/ (() => {
|
|
625
|
+
class ToolActionRadio extends ToolAction {
|
|
626
|
+
constructor() {
|
|
627
|
+
super(...arguments);
|
|
628
|
+
this.bf = null;
|
|
629
|
+
this.be = null;
|
|
630
|
+
}
|
|
631
|
+
get_f() {
|
|
632
|
+
return 6;
|
|
633
|
+
}
|
|
634
|
+
b(a) {
|
|
635
|
+
let b = new ToolActionEventDetail();
|
|
636
|
+
b.a = this;
|
|
637
|
+
b.b = this.f;
|
|
638
|
+
b.d = a;
|
|
639
|
+
if (this.be != null) {
|
|
640
|
+
b.c = this.be.aw;
|
|
641
|
+
}
|
|
642
|
+
return b;
|
|
643
|
+
}
|
|
644
|
+
x() {
|
|
645
|
+
return this.be.aw;
|
|
646
|
+
}
|
|
647
|
+
bg() {
|
|
648
|
+
if (this.be != null) {
|
|
649
|
+
this.be.aw = false;
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
o(a, b) {
|
|
653
|
+
return 30;
|
|
654
|
+
}
|
|
655
|
+
bi(a, b, c, d, e, f, g, h) {
|
|
656
|
+
if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
|
|
657
|
+
a.a0 = b;
|
|
658
|
+
if (h.a == 1) {
|
|
659
|
+
b.d = 0;
|
|
660
|
+
}
|
|
661
|
+
else {
|
|
662
|
+
b.d = 3;
|
|
663
|
+
}
|
|
664
|
+
b.a7(0, 2, 1);
|
|
665
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
666
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
667
|
+
b.a6(1, 2, 1);
|
|
668
|
+
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
669
|
+
if (b.av == 0) {
|
|
670
|
+
b.aw(c);
|
|
671
|
+
b.aw(d);
|
|
672
|
+
}
|
|
673
|
+
b.bb(c, 0);
|
|
674
|
+
b.ba(c, 1);
|
|
675
|
+
b.bb(d, 0);
|
|
676
|
+
b.ba(d, 2);
|
|
677
|
+
this.be = d;
|
|
678
|
+
d.ax = 25;
|
|
679
|
+
d.av = true;
|
|
680
|
+
d.d = 2;
|
|
681
|
+
d.e = 1;
|
|
682
|
+
d.au = runOn(this, this.bh);
|
|
683
|
+
c.e = 1;
|
|
684
|
+
}
|
|
685
|
+
b.h = g.a.j;
|
|
686
|
+
c.au = this.ap;
|
|
687
|
+
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
688
|
+
}
|
|
689
|
+
bh(a, b) {
|
|
690
|
+
this.a9(this.b(true), this);
|
|
691
|
+
}
|
|
692
|
+
bb(a, b, c, d) {
|
|
693
|
+
super.bb(a, b, c, d);
|
|
694
|
+
let e = c.b;
|
|
695
|
+
if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
|
|
696
|
+
NativeUIComponent.ab(b.l.r(), [7, 3, 6], (f) => {
|
|
697
|
+
let g = f[0];
|
|
698
|
+
let h = f[1];
|
|
699
|
+
let i = f[2];
|
|
700
|
+
e.a0 = g;
|
|
701
|
+
this.bi(e, g, h, i, a, b, c, d);
|
|
702
|
+
});
|
|
703
|
+
}
|
|
704
|
+
else {
|
|
705
|
+
let f = e.a0;
|
|
706
|
+
let g = f.au(0);
|
|
707
|
+
let h = f.au(1);
|
|
708
|
+
this.bi(e, f, g, h, a, b, c, d);
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
ToolActionRadio.$t = /*@__PURE__*/ markType(ToolActionRadio, 'ToolActionRadio', ToolAction.$);
|
|
713
|
+
return ToolActionRadio;
|
|
714
|
+
})();
|
|
556
715
|
/**
|
|
557
716
|
* @hidden
|
|
558
717
|
*/
|
|
559
718
|
export let ToolActionSeparator = /*@__PURE__*/ (() => {
|
|
560
719
|
class ToolActionSeparator extends ToolAction {
|
|
561
720
|
get_f() {
|
|
562
|
-
return
|
|
721
|
+
return 7;
|
|
563
722
|
}
|
|
564
723
|
a5(a, b) {
|
|
565
724
|
super.a5(a, b);
|
|
@@ -643,14 +802,14 @@ export let ToolActionIconButton = /*@__PURE__*/ (() => {
|
|
|
643
802
|
else {
|
|
644
803
|
b.d = 3;
|
|
645
804
|
}
|
|
646
|
-
b.
|
|
647
|
-
b.
|
|
805
|
+
b.a7(0, 2, 1);
|
|
806
|
+
b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
|
|
648
807
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
649
808
|
if (b.av == 0) {
|
|
650
809
|
b.aw(c);
|
|
651
810
|
}
|
|
652
|
-
b.
|
|
653
|
-
b.
|
|
811
|
+
b.bb(c, 0);
|
|
812
|
+
b.ba(c, 0);
|
|
654
813
|
this.be = c;
|
|
655
814
|
this.be.av = 2;
|
|
656
815
|
this.be.au = runOn(this, this.bf);
|
|
@@ -700,9 +859,9 @@ export let ToolActionGroupHeader = /*@__PURE__*/ (() => {
|
|
|
700
859
|
else {
|
|
701
860
|
b.d = 3;
|
|
702
861
|
}
|
|
703
|
-
b.
|
|
704
|
-
b.
|
|
705
|
-
b.
|
|
862
|
+
b.a7(0, 2, 1);
|
|
863
|
+
b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
|
|
864
|
+
b.a6(1, 2, 1);
|
|
706
865
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
707
866
|
if (b.av == 0) {
|
|
708
867
|
b.aw(c);
|
|
@@ -715,8 +874,8 @@ export let ToolActionGroupHeader = /*@__PURE__*/ (() => {
|
|
|
715
874
|
b.aq = new Thickness(1, 0, 0, 0, 2);
|
|
716
875
|
c.au = this.ap;
|
|
717
876
|
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
718
|
-
b.
|
|
719
|
-
b.
|
|
877
|
+
b.bb(c, 0);
|
|
878
|
+
b.ba(c, 1);
|
|
720
879
|
}
|
|
721
880
|
bb(a, b, c, d) {
|
|
722
881
|
super.bb(a, b, c, d);
|
|
@@ -883,14 +1042,14 @@ export let ToolActionIconMenu = /*@__PURE__*/ (() => {
|
|
|
883
1042
|
else {
|
|
884
1043
|
b.d = 3;
|
|
885
1044
|
}
|
|
886
|
-
b.
|
|
887
|
-
b.
|
|
1045
|
+
b.a7(0, 2, 1);
|
|
1046
|
+
b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
|
|
888
1047
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
889
1048
|
if (b.av == 0) {
|
|
890
1049
|
b.aw(c);
|
|
891
1050
|
}
|
|
892
|
-
b.
|
|
893
|
-
b.
|
|
1051
|
+
b.bb(c, 0);
|
|
1052
|
+
b.ba(c, 0);
|
|
894
1053
|
this.bz = c;
|
|
895
1054
|
this.bz.av = 2;
|
|
896
1055
|
this.bz.au = runOn(this, this.b0);
|
|
@@ -960,19 +1119,19 @@ export let ToolActionCheckbox = /*@__PURE__*/ (() => {
|
|
|
960
1119
|
else {
|
|
961
1120
|
b.d = 3;
|
|
962
1121
|
}
|
|
963
|
-
b.
|
|
964
|
-
b.
|
|
965
|
-
b.
|
|
966
|
-
b.
|
|
1122
|
+
b.a7(0, 2, 1);
|
|
1123
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
1124
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
1125
|
+
b.a6(1, 2, 1);
|
|
967
1126
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
968
1127
|
if (b.av == 0) {
|
|
969
1128
|
b.aw(c);
|
|
970
1129
|
b.aw(d);
|
|
971
1130
|
}
|
|
972
|
-
b.
|
|
973
|
-
b.
|
|
974
|
-
b.
|
|
975
|
-
b.
|
|
1131
|
+
b.bb(c, 0);
|
|
1132
|
+
b.ba(c, 1);
|
|
1133
|
+
b.bb(d, 0);
|
|
1134
|
+
b.ba(d, 2);
|
|
976
1135
|
this.be = d;
|
|
977
1136
|
d.av = true;
|
|
978
1137
|
d.d = 2;
|
|
@@ -1020,7 +1179,7 @@ export let ToolActionNumberInput = /*@__PURE__*/ (() => {
|
|
|
1020
1179
|
this.be = null;
|
|
1021
1180
|
}
|
|
1022
1181
|
get_f() {
|
|
1023
|
-
return
|
|
1182
|
+
return 5;
|
|
1024
1183
|
}
|
|
1025
1184
|
x() {
|
|
1026
1185
|
return this.bf();
|
|
@@ -1037,19 +1196,19 @@ export let ToolActionNumberInput = /*@__PURE__*/ (() => {
|
|
|
1037
1196
|
else {
|
|
1038
1197
|
b.d = 3;
|
|
1039
1198
|
}
|
|
1040
|
-
b.
|
|
1041
|
-
b.
|
|
1042
|
-
b.
|
|
1043
|
-
b.
|
|
1199
|
+
b.a7(0, 2, 1);
|
|
1200
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
1201
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
1202
|
+
b.a6(1, 2, 1);
|
|
1044
1203
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
1045
1204
|
if (b.av == 0) {
|
|
1046
1205
|
b.aw(c);
|
|
1047
1206
|
b.aw(d);
|
|
1048
1207
|
}
|
|
1049
|
-
b.
|
|
1050
|
-
b.
|
|
1051
|
-
b.
|
|
1052
|
-
b.
|
|
1208
|
+
b.bb(c, 0);
|
|
1209
|
+
b.ba(c, 1);
|
|
1210
|
+
b.bb(d, 0);
|
|
1211
|
+
b.ba(d, 2);
|
|
1053
1212
|
this.be = d;
|
|
1054
1213
|
d.n = 100;
|
|
1055
1214
|
d.au = 2;
|
|
@@ -1187,8 +1346,8 @@ export let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
1187
1346
|
this.v = new Dictionary$2(String_$type, ToolAction.$, 0);
|
|
1188
1347
|
this.m = null;
|
|
1189
1348
|
this.a = null;
|
|
1190
|
-
this.a4 = ToolPanel.a7;
|
|
1191
1349
|
this.a5 = ToolPanel.a8;
|
|
1350
|
+
this.a6 = ToolPanel.a9;
|
|
1192
1351
|
this.b = null;
|
|
1193
1352
|
this.z = Number.POSITIVE_INFINITY;
|
|
1194
1353
|
this.i = ToolPanel.j;
|
|
@@ -1311,7 +1470,7 @@ export let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
1311
1470
|
}
|
|
1312
1471
|
this.t = false;
|
|
1313
1472
|
this.al();
|
|
1314
|
-
this.
|
|
1473
|
+
this.a4();
|
|
1315
1474
|
for (let a = 0; a < this.d.count; a++) {
|
|
1316
1475
|
this.as(this.d._inner[a]);
|
|
1317
1476
|
}
|
|
@@ -1338,6 +1497,15 @@ export let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
1338
1497
|
}
|
|
1339
1498
|
}
|
|
1340
1499
|
}
|
|
1500
|
+
for (let d = 0; d < this.d.count; d++) {
|
|
1501
|
+
if (this.d._inner[d].f == 6) {
|
|
1502
|
+
let e = this.d._inner[d].bf;
|
|
1503
|
+
if (!this.x.containsKey(e)) {
|
|
1504
|
+
this.x.item(e, new List$1(ToolAction.$, 0));
|
|
1505
|
+
}
|
|
1506
|
+
this.x.item(e).add(this.d._inner[d]);
|
|
1507
|
+
}
|
|
1508
|
+
}
|
|
1341
1509
|
}
|
|
1342
1510
|
u(a) {
|
|
1343
1511
|
if (a.ao == null) {
|
|
@@ -1388,7 +1556,7 @@ export let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
1388
1556
|
}
|
|
1389
1557
|
}
|
|
1390
1558
|
}
|
|
1391
|
-
|
|
1559
|
+
a4() {
|
|
1392
1560
|
this.f = new ToolActionMeasurementContext();
|
|
1393
1561
|
this.f.a = this.k;
|
|
1394
1562
|
this.f.b = this.z;
|
|
@@ -1406,6 +1574,19 @@ export let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
1406
1574
|
this.b.bt();
|
|
1407
1575
|
}
|
|
1408
1576
|
}
|
|
1577
|
+
a3(a) {
|
|
1578
|
+
let b = a.bf;
|
|
1579
|
+
let c = a.ao;
|
|
1580
|
+
if (this.x != null) {
|
|
1581
|
+
if (this.x.containsKey(b)) {
|
|
1582
|
+
for (let d = 0; d < this.x.item(b).count; d++) {
|
|
1583
|
+
if (this.x.item(b)._inner[d].ao != c) {
|
|
1584
|
+
this.x.item(b)._inner[d].bg();
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
}
|
|
1409
1590
|
ar(a, b) {
|
|
1410
1591
|
this.av();
|
|
1411
1592
|
}
|
|
@@ -1467,23 +1648,23 @@ export let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
1467
1648
|
break;
|
|
1468
1649
|
}
|
|
1469
1650
|
}
|
|
1470
|
-
get
|
|
1471
|
-
return this.a4;
|
|
1472
|
-
}
|
|
1473
|
-
set a6(a) {
|
|
1474
|
-
let b = this.a4;
|
|
1475
|
-
this.a4 = a;
|
|
1476
|
-
if (b != this.a4) {
|
|
1477
|
-
this.ax("BackgroundColor", b, a);
|
|
1478
|
-
}
|
|
1479
|
-
}
|
|
1480
|
-
get a9() {
|
|
1651
|
+
get a7() {
|
|
1481
1652
|
return this.a5;
|
|
1482
1653
|
}
|
|
1483
|
-
set
|
|
1654
|
+
set a7(a) {
|
|
1484
1655
|
let b = this.a5;
|
|
1485
1656
|
this.a5 = a;
|
|
1486
1657
|
if (b != this.a5) {
|
|
1658
|
+
this.ax("BackgroundColor", b, a);
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
get ba() {
|
|
1662
|
+
return this.a6;
|
|
1663
|
+
}
|
|
1664
|
+
set ba(a) {
|
|
1665
|
+
let b = this.a6;
|
|
1666
|
+
this.a6 = a;
|
|
1667
|
+
if (b != this.a6) {
|
|
1487
1668
|
this.ax("TextColor", b, a);
|
|
1488
1669
|
}
|
|
1489
1670
|
}
|
|
@@ -1505,11 +1686,14 @@ export let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
1505
1686
|
return $ret;
|
|
1506
1687
|
})()));
|
|
1507
1688
|
}
|
|
1689
|
+
if (a.f == 6) {
|
|
1690
|
+
this.a3(a);
|
|
1691
|
+
}
|
|
1508
1692
|
}
|
|
1509
1693
|
}
|
|
1510
1694
|
ToolPanel.$t = /*@__PURE__*/ markType(ToolPanel, 'ToolPanel', Base.$, [INotifyPropertyChanged_$type]);
|
|
1511
|
-
ToolPanel.
|
|
1512
|
-
ToolPanel.
|
|
1695
|
+
ToolPanel.a8 = /*@__PURE__*/ BrushUtil.g(255, 248, 248, 248);
|
|
1696
|
+
ToolPanel.a9 = /*@__PURE__*/ BrushUtil.g(255, 24, 29, 31);
|
|
1513
1697
|
ToolPanel.j = 0;
|
|
1514
1698
|
return ToolPanel;
|
|
1515
1699
|
})();
|
|
@@ -253,6 +253,11 @@ export let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
253
253
|
this._a("textColor", brushToString(this.i.cv));
|
|
254
254
|
}
|
|
255
255
|
findByName(name) {
|
|
256
|
+
if (this.findEphemera) {
|
|
257
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
258
|
+
return this.findEphemera(name);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
256
261
|
return null;
|
|
257
262
|
}
|
|
258
263
|
get hasUserValues() {
|
|
@@ -382,6 +387,7 @@ export let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
382
387
|
}
|
|
383
388
|
};
|
|
384
389
|
this.i.contentRefreshed = delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
|
|
390
|
+
;
|
|
385
391
|
}
|
|
386
392
|
get rowUpdating() {
|
|
387
393
|
return this._rowUpdating;
|
|
@@ -404,6 +410,7 @@ export let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
404
410
|
}
|
|
405
411
|
};
|
|
406
412
|
this.i.rowUpdating = delegateCombine(this.i.rowUpdating, this._rowUpdating_wrapped);
|
|
413
|
+
;
|
|
407
414
|
}
|
|
408
415
|
get itemWidthRequested() {
|
|
409
416
|
return this._itemWidthRequested;
|
|
@@ -426,6 +433,7 @@ export let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
426
433
|
}
|
|
427
434
|
};
|
|
428
435
|
this.i.itemWidthRequested = delegateCombine(this.i.itemWidthRequested, this._itemWidthRequested_wrapped);
|
|
436
|
+
;
|
|
429
437
|
}
|
|
430
438
|
get itemHeightRequested() {
|
|
431
439
|
return this._itemHeightRequested;
|
|
@@ -448,6 +456,7 @@ export let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
448
456
|
}
|
|
449
457
|
};
|
|
450
458
|
this.i.itemHeightRequested = delegateCombine(this.i.itemHeightRequested, this._itemHeightRequested_wrapped);
|
|
459
|
+
;
|
|
451
460
|
}
|
|
452
461
|
}
|
|
453
462
|
IgcListPanelComponent._observedAttributesIgcListPanelComponent = null;
|
|
@@ -23,15 +23,21 @@ export class IgcListPanelTemplateItemUpdatingEventArgs {
|
|
|
23
23
|
this.onImplementationCreated();
|
|
24
24
|
}
|
|
25
25
|
get model() {
|
|
26
|
-
|
|
26
|
+
const r = this.i.a;
|
|
27
|
+
if (r == null) {
|
|
27
28
|
return null;
|
|
28
29
|
}
|
|
29
|
-
if (!
|
|
30
|
+
if (!r.externalObject) {
|
|
30
31
|
let e = new IgcListPanelItemModel();
|
|
31
|
-
e.
|
|
32
|
-
|
|
32
|
+
if (e.i.setNativeElement) {
|
|
33
|
+
e.i.setNativeElement(r);
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
e._implementation = r;
|
|
37
|
+
}
|
|
38
|
+
r.externalObject = e;
|
|
33
39
|
}
|
|
34
|
-
return
|
|
40
|
+
return r.externalObject;
|
|
35
41
|
}
|
|
36
42
|
set model(v) {
|
|
37
43
|
v == null ? this.i.a = null : this.i.a = v.i;
|
|
@@ -245,6 +245,11 @@ export let IgcPopupComponent = /*@__PURE__*/ (() => {
|
|
|
245
245
|
this._a("background", brushToString(this.i.a8));
|
|
246
246
|
}
|
|
247
247
|
findByName(name) {
|
|
248
|
+
if (this.findEphemera) {
|
|
249
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
250
|
+
return this.findEphemera(name);
|
|
251
|
+
}
|
|
252
|
+
}
|
|
248
253
|
return null;
|
|
249
254
|
}
|
|
250
255
|
get hasUserValues() {
|
|
@@ -347,6 +352,7 @@ export let IgcPopupComponent = /*@__PURE__*/ (() => {
|
|
|
347
352
|
}
|
|
348
353
|
};
|
|
349
354
|
this.i.onClosed = delegateCombine(this.i.onClosed, this._onClosed_wrapped);
|
|
355
|
+
;
|
|
350
356
|
}
|
|
351
357
|
/**
|
|
352
358
|
* Fires when the popup is shown
|
|
@@ -372,6 +378,7 @@ export let IgcPopupComponent = /*@__PURE__*/ (() => {
|
|
|
372
378
|
}
|
|
373
379
|
};
|
|
374
380
|
this.i.onPopup = delegateCombine(this.i.onPopup, this._onPopup_wrapped);
|
|
381
|
+
;
|
|
375
382
|
}
|
|
376
383
|
}
|
|
377
384
|
IgcPopupComponent._observedAttributesIgcPopupComponent = null;
|
|
@@ -22,10 +22,10 @@ export class IgcPropertyEditorDataSource {
|
|
|
22
22
|
this.onImplementationCreated();
|
|
23
23
|
}
|
|
24
24
|
get descriptionType() {
|
|
25
|
-
return this.i.
|
|
25
|
+
return this.i.n;
|
|
26
26
|
}
|
|
27
27
|
set descriptionType(v) {
|
|
28
|
-
this.i.
|
|
28
|
+
this.i.n = v;
|
|
29
29
|
}
|
|
30
30
|
get context() {
|
|
31
31
|
return this.i.b;
|
|
@@ -34,6 +34,11 @@ export class IgcPropertyEditorDataSource {
|
|
|
34
34
|
this.i.b = v;
|
|
35
35
|
}
|
|
36
36
|
findByName(name) {
|
|
37
|
+
if (this.findEphemera) {
|
|
38
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
39
|
+
return this.findEphemera(name);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
37
42
|
return null;
|
|
38
43
|
}
|
|
39
44
|
}
|
|
@@ -62,6 +62,11 @@ export class IgcPropertyEditorDescriptionObject {
|
|
|
62
62
|
this.i.a = innerColl;
|
|
63
63
|
}
|
|
64
64
|
findByName(name) {
|
|
65
|
+
if (this.findEphemera) {
|
|
66
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
67
|
+
return this.findEphemera(name);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
65
70
|
if (this.properties != null && this.properties.findByName && this.properties.findByName(name)) {
|
|
66
71
|
return this.properties.findByName(name);
|
|
67
72
|
}
|
|
@@ -356,6 +356,11 @@ export let IgcPropertyEditorPanelComponent = /*@__PURE__*/ (() => {
|
|
|
356
356
|
this._a("textColor", brushToString(this.i.d9));
|
|
357
357
|
}
|
|
358
358
|
findByName(name) {
|
|
359
|
+
if (this.findEphemera) {
|
|
360
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
361
|
+
return this.findEphemera(name);
|
|
362
|
+
}
|
|
363
|
+
}
|
|
359
364
|
if (this.actualDataSource != null && this.actualDataSource.findByName && this.actualDataSource.findByName(name)) {
|
|
360
365
|
return this.actualDataSource.findByName(name);
|
|
361
366
|
}
|