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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
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.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import { Base, markType, EventArgs, ElevationHelper, NativeUI, AnimationKeyFrameEffect, KeyFrameAnimationFactory, runOn, BaseDOMEventProxy, BrushUtil, stringEmpty, PropertyChangedEventArgs, AnimationKeyFrameProperty, TranslateTransform, AnimationKeyFrameEffectTiming, INotifyPropertyChanged_$type, IgcHTMLElement, NamePatcher, PortalManager, WebComponentRenderer, toSpinal, getAllPropertyNames, fromSpinal, RegisterElementHelper, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, delegateRemove, delegateCombine, TypeRegistrar, ValueType, markStruct, StringBuilder, Size, stringFormat, Rect, List$1, truncate, AppearanceHelper, toRect, IgcChildContentModule, markEnum, enumGetBox, ObservableCollection$1,
|
|
8
|
+
import { Base, markType, EventArgs, ElevationHelper, NativeUI, AnimationKeyFrameEffect, KeyFrameAnimationFactory, runOn, BaseDOMEventProxy, BrushUtil, stringEmpty, PropertyChangedEventArgs, AnimationKeyFrameProperty, TranslateTransform, AnimationKeyFrameEffectTiming, INotifyPropertyChanged_$type, IgcHTMLElement, NamePatcher, PortalManager, WebComponentRenderer, toSpinal, getAllPropertyNames, fromSpinal, RegisterElementHelper, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, delegateRemove, delegateCombine, TypeRegistrar, ValueType, markStruct, StringBuilder, Size, stringFormat, Rect, List$1, truncate, AppearanceHelper, toRect, IgcChildContentModule, markEnum, enumGetBox, ObservableCollection$1, Dictionary$2, String_$type, stringEndsWith, stringSplit, stringContains, stringReplace, typeCast, IgCollection, SyncableObservableCollection$2, SyncableObservableCollection$1, ensureEnum, enumToString, DescriptionTreeNode, JsonDictionaryObject, Number_$type, stringJoin, DescriptionSerializerBuilder, DescriptionSerializer, FontInfo, DOMExecutionContext, RenderingContext, CanvasViewRenderer, NativeUIComponent, FontUtil, DeviceUtils, NativeUIInputsFactory, SRProvider, fromEn, LocalDataSource, ComponentRenderer, fromEnum, Thickness, HashSet$1, isNaN_, tryParseNumber, tryParseBool, typeGetValue, CollectionAdapter, NotifyCollectionChangedAction, FastIterationDictionary$2, Stack$1, IDataSource_$type, IDataSourceUpdateNotifier_$type, ToolCommandArgument, ToolCommand, EnumUtil, ToolActionType_$type, NativeUIContent, SvgIconRegistry, Type } from 'igniteui-webcomponents-core';
|
|
9
9
|
|
|
10
10
|
/*
|
|
11
11
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
@@ -1193,6 +1193,11 @@ let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
|
|
|
1193
1193
|
this._a("actualAmbientShadowColor", brushToString(this.i.bi));
|
|
1194
1194
|
}
|
|
1195
1195
|
findByName(name) {
|
|
1196
|
+
if (this.findEphemera) {
|
|
1197
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
1198
|
+
return this.findEphemera(name);
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1196
1201
|
return null;
|
|
1197
1202
|
}
|
|
1198
1203
|
get hasUserValues() {
|
|
@@ -1293,6 +1298,7 @@ let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
|
|
|
1293
1298
|
}
|
|
1294
1299
|
};
|
|
1295
1300
|
this.i.onCollapsed = delegateCombine(this.i.onCollapsed, this._onCollapsed_wrapped);
|
|
1301
|
+
;
|
|
1296
1302
|
}
|
|
1297
1303
|
get onExpanded() {
|
|
1298
1304
|
return this._onExpanded;
|
|
@@ -1315,6 +1321,7 @@ let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
|
|
|
1315
1321
|
}
|
|
1316
1322
|
};
|
|
1317
1323
|
this.i.onExpanded = delegateCombine(this.i.onExpanded, this._onExpanded_wrapped);
|
|
1324
|
+
;
|
|
1318
1325
|
}
|
|
1319
1326
|
}
|
|
1320
1327
|
IgcXExpansionPanelComponent._observedAttributesIgcXExpansionPanelComponent = null;
|
|
@@ -2371,6 +2378,11 @@ let IgcPopupComponent = /*@__PURE__*/ (() => {
|
|
|
2371
2378
|
this._a("background", brushToString(this.i.a8));
|
|
2372
2379
|
}
|
|
2373
2380
|
findByName(name) {
|
|
2381
|
+
if (this.findEphemera) {
|
|
2382
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
2383
|
+
return this.findEphemera(name);
|
|
2384
|
+
}
|
|
2385
|
+
}
|
|
2374
2386
|
return null;
|
|
2375
2387
|
}
|
|
2376
2388
|
get hasUserValues() {
|
|
@@ -2473,6 +2485,7 @@ let IgcPopupComponent = /*@__PURE__*/ (() => {
|
|
|
2473
2485
|
}
|
|
2474
2486
|
};
|
|
2475
2487
|
this.i.onClosed = delegateCombine(this.i.onClosed, this._onClosed_wrapped);
|
|
2488
|
+
;
|
|
2476
2489
|
}
|
|
2477
2490
|
/**
|
|
2478
2491
|
* Fires when the popup is shown
|
|
@@ -2498,6 +2511,7 @@ let IgcPopupComponent = /*@__PURE__*/ (() => {
|
|
|
2498
2511
|
}
|
|
2499
2512
|
};
|
|
2500
2513
|
this.i.onPopup = delegateCombine(this.i.onPopup, this._onPopup_wrapped);
|
|
2514
|
+
;
|
|
2501
2515
|
}
|
|
2502
2516
|
}
|
|
2503
2517
|
IgcPopupComponent._observedAttributesIgcPopupComponent = null;
|
|
@@ -2551,12 +2565,13 @@ var PropertyEditorValueType = /*@__PURE__*/ (function (PropertyEditorValueType)
|
|
|
2551
2565
|
PropertyEditorValueType[PropertyEditorValueType["TimeSpan"] = 19] = "TimeSpan";
|
|
2552
2566
|
PropertyEditorValueType[PropertyEditorValueType["Button"] = 20] = "Button";
|
|
2553
2567
|
PropertyEditorValueType[PropertyEditorValueType["Slider"] = 21] = "Slider";
|
|
2568
|
+
PropertyEditorValueType[PropertyEditorValueType["TemplateRef"] = 22] = "TemplateRef";
|
|
2554
2569
|
return PropertyEditorValueType;
|
|
2555
2570
|
})({});
|
|
2556
2571
|
/**
|
|
2557
2572
|
* @hidden
|
|
2558
2573
|
*/
|
|
2559
|
-
let PropertyEditorValueType_$type = /*@__PURE__*/ markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21');
|
|
2574
|
+
let PropertyEditorValueType_$type = /*@__PURE__*/ markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21|TemplateRef,22');
|
|
2560
2575
|
|
|
2561
2576
|
/*
|
|
2562
2577
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
@@ -2868,7 +2883,7 @@ let PropertyEditorPropertyDescription = /*@__PURE__*/ (() => {
|
|
|
2868
2883
|
return this.e;
|
|
2869
2884
|
}
|
|
2870
2885
|
if (this.e != null) {
|
|
2871
|
-
return this.e.
|
|
2886
|
+
return this.e.e(a, false);
|
|
2872
2887
|
}
|
|
2873
2888
|
return null;
|
|
2874
2889
|
}
|
|
@@ -2920,18 +2935,19 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
2920
2935
|
class PropertyEditorDataSource extends Base {
|
|
2921
2936
|
constructor() {
|
|
2922
2937
|
super(...arguments);
|
|
2923
|
-
this.
|
|
2938
|
+
this.k = null;
|
|
2924
2939
|
this.a = null;
|
|
2925
|
-
this.
|
|
2940
|
+
this.g = null;
|
|
2926
2941
|
this.propertyChanged = null;
|
|
2942
|
+
this.j = null;
|
|
2927
2943
|
}
|
|
2928
|
-
get
|
|
2929
|
-
return this.
|
|
2944
|
+
get n() {
|
|
2945
|
+
return this.k;
|
|
2930
2946
|
}
|
|
2931
|
-
set
|
|
2932
|
-
let b = this.
|
|
2933
|
-
this.
|
|
2934
|
-
this.
|
|
2947
|
+
set n(a) {
|
|
2948
|
+
let b = this.k;
|
|
2949
|
+
this.k = a;
|
|
2950
|
+
this.p("DescriptionType", b, this.k);
|
|
2935
2951
|
}
|
|
2936
2952
|
get b() {
|
|
2937
2953
|
return this.a;
|
|
@@ -2939,61 +2955,69 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
2939
2955
|
set b(a) {
|
|
2940
2956
|
let b = this.a;
|
|
2941
2957
|
this.a = a;
|
|
2942
|
-
this.
|
|
2958
|
+
this.p("Context", b, this.a);
|
|
2943
2959
|
}
|
|
2944
|
-
get
|
|
2945
|
-
return this.
|
|
2960
|
+
get h() {
|
|
2961
|
+
return this.g;
|
|
2946
2962
|
}
|
|
2947
|
-
set
|
|
2948
|
-
let b = this.
|
|
2949
|
-
this.
|
|
2950
|
-
this.
|
|
2963
|
+
set h(a) {
|
|
2964
|
+
let b = this.g;
|
|
2965
|
+
this.g = a;
|
|
2966
|
+
this.p("Data", b, this.g);
|
|
2951
2967
|
}
|
|
2952
|
-
|
|
2968
|
+
p(a, b, c) {
|
|
2953
2969
|
if (this.propertyChanged != null) {
|
|
2954
2970
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
2955
2971
|
}
|
|
2956
|
-
this.
|
|
2972
|
+
this.q(a, b, c);
|
|
2957
2973
|
}
|
|
2958
|
-
|
|
2974
|
+
q(a, b, c) {
|
|
2959
2975
|
switch (a) {
|
|
2960
2976
|
case "DescriptionType":
|
|
2961
|
-
this.
|
|
2977
|
+
this.r();
|
|
2962
2978
|
break;
|
|
2963
2979
|
case "Context":
|
|
2964
|
-
this.
|
|
2980
|
+
this.r();
|
|
2965
2981
|
break;
|
|
2966
2982
|
}
|
|
2967
2983
|
}
|
|
2968
|
-
|
|
2984
|
+
static d(a, b, c) {
|
|
2985
|
+
let d = new PropertyEditorDataSource();
|
|
2986
|
+
d.j = c;
|
|
2987
|
+
d.b = a;
|
|
2988
|
+
d.n = b;
|
|
2989
|
+
d.j = null;
|
|
2990
|
+
return d;
|
|
2991
|
+
}
|
|
2992
|
+
f(a) {
|
|
2969
2993
|
let b = new PropertyEditorPropertyDescription();
|
|
2970
2994
|
b.al = a.propertyName;
|
|
2971
|
-
b.n = this.
|
|
2995
|
+
b.n = this.i(a);
|
|
2972
2996
|
b.ak = a.specificExternalType != null ? a.specificExternalType : a.specificType;
|
|
2973
2997
|
if (a.knownType == 9) {
|
|
2974
2998
|
b.ai = a.collectionElementType;
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
}
|
|
2999
|
+
if (this.j != null && this.j.containsKey(b.ai)) {
|
|
3000
|
+
b.e = this.j.item(b.ai);
|
|
3001
|
+
}
|
|
3002
|
+
else {
|
|
3003
|
+
b.e = PropertyEditorDataSource.d(this.a, b.ai, this.j);
|
|
3004
|
+
}
|
|
2981
3005
|
}
|
|
2982
3006
|
if (b.n == 8) {
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
}
|
|
3007
|
+
if (this.j != null && this.j.containsKey(b.ak)) {
|
|
3008
|
+
b.e = this.j.item(b.ak);
|
|
3009
|
+
}
|
|
3010
|
+
else {
|
|
3011
|
+
b.e = PropertyEditorDataSource.d(this.a, b.ak, this.j);
|
|
3012
|
+
}
|
|
2989
3013
|
}
|
|
2990
3014
|
if (b.n == 15) {
|
|
2991
|
-
b.c = this.a.c(this.
|
|
3015
|
+
b.c = this.a.c(this.n, b.al);
|
|
2992
3016
|
b.d = b.d;
|
|
2993
3017
|
}
|
|
2994
3018
|
return b;
|
|
2995
3019
|
}
|
|
2996
|
-
|
|
3020
|
+
i(a) {
|
|
2997
3021
|
switch (a.knownType) {
|
|
2998
3022
|
case 10: return 10;
|
|
2999
3023
|
case 7: return 7;
|
|
@@ -3003,6 +3027,7 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
3003
3027
|
case 5: return 5;
|
|
3004
3028
|
case 16: return 14;
|
|
3005
3029
|
case 20: return 18;
|
|
3030
|
+
case 22: return 22;
|
|
3006
3031
|
case 15: return 0;
|
|
3007
3032
|
case 3: return 3;
|
|
3008
3033
|
case 19: return 17;
|
|
@@ -3024,31 +3049,46 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
3024
3049
|
}
|
|
3025
3050
|
return 0;
|
|
3026
3051
|
}
|
|
3027
|
-
|
|
3052
|
+
r() {
|
|
3028
3053
|
let a = new PropertyEditorPropertyDescriptionCollection();
|
|
3029
|
-
if (this.
|
|
3030
|
-
let b =
|
|
3031
|
-
if (
|
|
3054
|
+
if (this.n != null && this.b != null) {
|
|
3055
|
+
let b = false;
|
|
3056
|
+
if (this.j == null) {
|
|
3057
|
+
b = true;
|
|
3058
|
+
this.j = new Dictionary$2(String_$type, PropertyEditorDataSource.$, 0);
|
|
3059
|
+
}
|
|
3060
|
+
this.j.item(this.n, this);
|
|
3061
|
+
let c = this.b.b(this.n);
|
|
3062
|
+
if (c == null) {
|
|
3032
3063
|
return;
|
|
3033
3064
|
}
|
|
3034
|
-
for (let
|
|
3035
|
-
if (stringEndsWith(
|
|
3065
|
+
for (let d = 0; d < c.length; d++) {
|
|
3066
|
+
if (stringEndsWith(c[d], "@names")) {
|
|
3036
3067
|
continue;
|
|
3037
3068
|
}
|
|
3038
|
-
if (stringEndsWith(
|
|
3069
|
+
if (stringEndsWith(c[d], "@nameBinding")) {
|
|
3039
3070
|
continue;
|
|
3040
3071
|
}
|
|
3041
|
-
|
|
3042
|
-
let e = this.e(d);
|
|
3043
|
-
if (e.n == 0) {
|
|
3072
|
+
if (stringEndsWith(c[d], "@ngQueryList")) {
|
|
3044
3073
|
continue;
|
|
3045
3074
|
}
|
|
3046
|
-
|
|
3075
|
+
if (stringEndsWith(c[d], "@mustSetInCode")) {
|
|
3076
|
+
continue;
|
|
3077
|
+
}
|
|
3078
|
+
let e = this.b.getMetadata(this.n, c[d]);
|
|
3079
|
+
let f = this.f(e);
|
|
3080
|
+
if (f.n == 0) {
|
|
3081
|
+
continue;
|
|
3082
|
+
}
|
|
3083
|
+
a.add(f);
|
|
3084
|
+
}
|
|
3085
|
+
if (b) {
|
|
3086
|
+
this.j = null;
|
|
3047
3087
|
}
|
|
3048
3088
|
}
|
|
3049
|
-
this.
|
|
3089
|
+
this.h = a;
|
|
3050
3090
|
}
|
|
3051
|
-
|
|
3091
|
+
e(a, b) {
|
|
3052
3092
|
if (a == null) {
|
|
3053
3093
|
return null;
|
|
3054
3094
|
}
|
|
@@ -3071,9 +3111,9 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
3071
3111
|
g = h.substr(0, k).trim();
|
|
3072
3112
|
f = h.substr(k + 2).trim();
|
|
3073
3113
|
}
|
|
3074
|
-
if (f != null && f != this.
|
|
3114
|
+
if (f != null && f != this.n) {
|
|
3075
3115
|
let l = this.c();
|
|
3076
|
-
l.
|
|
3116
|
+
l.n = f;
|
|
3077
3117
|
e = l;
|
|
3078
3118
|
continue;
|
|
3079
3119
|
}
|
|
@@ -3091,19 +3131,19 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
3091
3131
|
else {
|
|
3092
3132
|
if (e != null) {
|
|
3093
3133
|
let n = e;
|
|
3094
|
-
let o = n.
|
|
3134
|
+
let o = n.e(h, i);
|
|
3095
3135
|
if (o == null) {
|
|
3096
3136
|
return null;
|
|
3097
3137
|
}
|
|
3098
3138
|
e = o;
|
|
3099
3139
|
}
|
|
3100
3140
|
else {
|
|
3101
|
-
if (this.
|
|
3141
|
+
if (this.h == null) {
|
|
3102
3142
|
return null;
|
|
3103
3143
|
}
|
|
3104
|
-
for (let p = 0; p < this.
|
|
3105
|
-
if (Base.equalsStatic(this.
|
|
3106
|
-
e = this.
|
|
3144
|
+
for (let p = 0; p < this.h.count; p++) {
|
|
3145
|
+
if (Base.equalsStatic(this.h._inner[p].al, h)) {
|
|
3146
|
+
e = this.h._inner[p];
|
|
3107
3147
|
break;
|
|
3108
3148
|
}
|
|
3109
3149
|
}
|
|
@@ -3119,7 +3159,7 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
3119
3159
|
return ((() => {
|
|
3120
3160
|
let $ret = new PropertyEditorDataSource();
|
|
3121
3161
|
$ret.b = this.b;
|
|
3122
|
-
$ret.
|
|
3162
|
+
$ret.n = this.n;
|
|
3123
3163
|
return $ret;
|
|
3124
3164
|
})());
|
|
3125
3165
|
}
|
|
@@ -3278,6 +3318,11 @@ class IgcPropertyEditorDescriptionObject {
|
|
|
3278
3318
|
this.i.a = innerColl;
|
|
3279
3319
|
}
|
|
3280
3320
|
findByName(name) {
|
|
3321
|
+
if (this.findEphemera) {
|
|
3322
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
3323
|
+
return this.findEphemera(name);
|
|
3324
|
+
}
|
|
3325
|
+
}
|
|
3281
3326
|
if (this.properties != null && this.properties.findByName && this.properties.findByName(name)) {
|
|
3282
3327
|
return this.properties.findByName(name);
|
|
3283
3328
|
}
|
|
@@ -3518,11 +3563,25 @@ let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() => {
|
|
|
3518
3563
|
if (super["connectedCallback"]) {
|
|
3519
3564
|
super["connectedCallback"]();
|
|
3520
3565
|
}
|
|
3566
|
+
if (this.i.connectedCallback) {
|
|
3567
|
+
this.i.connectedCallback();
|
|
3568
|
+
}
|
|
3521
3569
|
if (!this._attached) {
|
|
3522
3570
|
this._attached = true;
|
|
3523
3571
|
this._flushQueuedAttributes();
|
|
3524
3572
|
}
|
|
3525
3573
|
}
|
|
3574
|
+
disconnectedCallback() {
|
|
3575
|
+
if (super["disconnectedCallback"]) {
|
|
3576
|
+
super["disconnectedCallback"]();
|
|
3577
|
+
}
|
|
3578
|
+
if (this.i.disconnectedCallback) {
|
|
3579
|
+
this.i.disconnectedCallback();
|
|
3580
|
+
}
|
|
3581
|
+
if (this._attached) {
|
|
3582
|
+
this._attached = false;
|
|
3583
|
+
}
|
|
3584
|
+
}
|
|
3526
3585
|
static get observedAttributes() {
|
|
3527
3586
|
if (IgcPropertyEditorPropertyDescriptionComponent._observedAttributesIgcPropertyEditorPropertyDescriptionComponent == null) {
|
|
3528
3587
|
let names = getAllPropertyNames(IgcPropertyEditorPropertyDescriptionComponent);
|
|
@@ -3648,15 +3707,21 @@ let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() => {
|
|
|
3648
3707
|
this._a("step", this.i.aa);
|
|
3649
3708
|
}
|
|
3650
3709
|
get complexValue() {
|
|
3651
|
-
|
|
3710
|
+
const r = this.i.g;
|
|
3711
|
+
if (r == null) {
|
|
3652
3712
|
return null;
|
|
3653
3713
|
}
|
|
3654
|
-
if (!
|
|
3714
|
+
if (!r.externalObject) {
|
|
3655
3715
|
let e = new IgcPropertyEditorDescriptionObject();
|
|
3656
|
-
e.
|
|
3657
|
-
|
|
3716
|
+
if (e.i.setNativeElement) {
|
|
3717
|
+
e.i.setNativeElement(r);
|
|
3718
|
+
}
|
|
3719
|
+
else {
|
|
3720
|
+
e._implementation = r;
|
|
3721
|
+
}
|
|
3722
|
+
r.externalObject = e;
|
|
3658
3723
|
}
|
|
3659
|
-
return
|
|
3724
|
+
return r.externalObject;
|
|
3660
3725
|
}
|
|
3661
3726
|
set complexValue(v) {
|
|
3662
3727
|
v == null ? this.i.g = null : this.i.g = v.i;
|
|
@@ -3691,6 +3756,11 @@ let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() => {
|
|
|
3691
3756
|
this.i.i = innerColl;
|
|
3692
3757
|
}
|
|
3693
3758
|
findByName(name) {
|
|
3759
|
+
if (this.findEphemera) {
|
|
3760
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
3761
|
+
return this.findEphemera(name);
|
|
3762
|
+
}
|
|
3763
|
+
}
|
|
3694
3764
|
if (this.complexValue && this.complexValue.name && this.complexValue.name == name) {
|
|
3695
3765
|
return this.complexValue;
|
|
3696
3766
|
}
|
|
@@ -3773,6 +3843,7 @@ let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() => {
|
|
|
3773
3843
|
}
|
|
3774
3844
|
};
|
|
3775
3845
|
this.i.buttonClicked = delegateCombine(this.i.buttonClicked, this._buttonClicked_wrapped);
|
|
3846
|
+
;
|
|
3776
3847
|
}
|
|
3777
3848
|
get changed() {
|
|
3778
3849
|
return this._changed;
|
|
@@ -3795,6 +3866,7 @@ let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() => {
|
|
|
3795
3866
|
}
|
|
3796
3867
|
};
|
|
3797
3868
|
this.i.changed = delegateCombine(this.i.changed, this._changed_wrapped);
|
|
3869
|
+
;
|
|
3798
3870
|
}
|
|
3799
3871
|
get targetPropertyUpdating() {
|
|
3800
3872
|
return this._targetPropertyUpdating;
|
|
@@ -3817,6 +3889,7 @@ let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() => {
|
|
|
3817
3889
|
}
|
|
3818
3890
|
};
|
|
3819
3891
|
this.i.targetPropertyUpdating = delegateCombine(this.i.targetPropertyUpdating, this._targetPropertyUpdating_wrapped);
|
|
3892
|
+
;
|
|
3820
3893
|
}
|
|
3821
3894
|
}
|
|
3822
3895
|
IgcPropertyEditorPropertyDescriptionComponent._observedAttributesIgcPropertyEditorPropertyDescriptionComponent = null;
|
|
@@ -4110,6 +4183,7 @@ let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
|
|
|
4110
4183
|
case 5: return a.toString();
|
|
4111
4184
|
case 16: return a;
|
|
4112
4185
|
case 20: return a;
|
|
4186
|
+
case 22: return a;
|
|
4113
4187
|
case 15: return a;
|
|
4114
4188
|
case 3: return a;
|
|
4115
4189
|
case 19: return a;
|
|
@@ -4489,11 +4563,11 @@ let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
4489
4563
|
if (this.k == null) {
|
|
4490
4564
|
this.k = new PropertyEditorDataSource();
|
|
4491
4565
|
}
|
|
4492
|
-
this.k.
|
|
4566
|
+
this.k.n = this.b2;
|
|
4493
4567
|
}
|
|
4494
4568
|
if (this.properties == null || this.properties.count == 0) {
|
|
4495
|
-
if (this.k.
|
|
4496
|
-
this.actualProperties = this.k.
|
|
4569
|
+
if (this.k.h != null) {
|
|
4570
|
+
this.actualProperties = this.k.h;
|
|
4497
4571
|
}
|
|
4498
4572
|
}
|
|
4499
4573
|
else {
|
|
@@ -4539,8 +4613,8 @@ let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
4539
4613
|
this.k.b = this.h;
|
|
4540
4614
|
}
|
|
4541
4615
|
if (this.properties == null || this.properties.count == 0) {
|
|
4542
|
-
if (this.k.
|
|
4543
|
-
this.actualProperties = this.k.
|
|
4616
|
+
if (this.k.h != null) {
|
|
4617
|
+
this.actualProperties = this.k.h;
|
|
4544
4618
|
}
|
|
4545
4619
|
}
|
|
4546
4620
|
else {
|
|
@@ -4631,7 +4705,7 @@ let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
4631
4705
|
for (let c of fromEnum(this.properties)) {
|
|
4632
4706
|
let d = c.al;
|
|
4633
4707
|
if (this.k != null) {
|
|
4634
|
-
let e = this.k.
|
|
4708
|
+
let e = this.k.e(d, false);
|
|
4635
4709
|
if (e != null) {
|
|
4636
4710
|
if (c.p(e)) {
|
|
4637
4711
|
b = true;
|
|
@@ -4666,11 +4740,11 @@ let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
4666
4740
|
for (let b = 0; b < a; b++) {
|
|
4667
4741
|
let c = b;
|
|
4668
4742
|
let d = this.c.getItemAtIndex(b);
|
|
4669
|
-
if (this.v.
|
|
4670
|
-
this.v.
|
|
4743
|
+
if (this.v.a5 < c + 1) {
|
|
4744
|
+
this.v.a7(c, 1, this.ar);
|
|
4671
4745
|
}
|
|
4672
4746
|
else {
|
|
4673
|
-
this.v.
|
|
4747
|
+
this.v.bd(c, 1, this.ar);
|
|
4674
4748
|
}
|
|
4675
4749
|
if (this.an.count < c + 1) {
|
|
4676
4750
|
this.an.add(new List$1(NativeUIComponent.$, 0));
|
|
@@ -4687,16 +4761,16 @@ let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
4687
4761
|
}
|
|
4688
4762
|
i.ar = new Thickness(1, 5, 5, 5, 0);
|
|
4689
4763
|
this.v.aw(i);
|
|
4690
|
-
this.v.
|
|
4691
|
-
this.v.
|
|
4764
|
+
this.v.bb(i, c);
|
|
4765
|
+
this.v.ba(i, f);
|
|
4692
4766
|
e.add(i);
|
|
4693
4767
|
});
|
|
4694
4768
|
}
|
|
4695
|
-
if (this.v.
|
|
4696
|
-
this.v.
|
|
4769
|
+
if (this.v.a2 < f + 1) {
|
|
4770
|
+
this.v.a6(f, 1, g.h);
|
|
4697
4771
|
}
|
|
4698
4772
|
else {
|
|
4699
|
-
this.v.
|
|
4773
|
+
this.v.bc(f, 1, g.h);
|
|
4700
4774
|
}
|
|
4701
4775
|
let h = e._inner[f];
|
|
4702
4776
|
let i = "PropertyPath";
|
|
@@ -4722,8 +4796,8 @@ let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
4722
4796
|
let n = new HashSet$1(NativeUIComponent.$, 0);
|
|
4723
4797
|
for (let o = this.v.av - 1; o >= 0; o--) {
|
|
4724
4798
|
let p = this.v.au(o);
|
|
4725
|
-
let q = this.v.
|
|
4726
|
-
let r = this.v.
|
|
4799
|
+
let q = this.v.a4(p);
|
|
4800
|
+
let r = this.v.a3(p);
|
|
4727
4801
|
if ((q + 1) > a || (r + 1) > this.ap.count) {
|
|
4728
4802
|
n.add_1(p);
|
|
4729
4803
|
}
|
|
@@ -4745,11 +4819,11 @@ let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
4745
4819
|
this.an.removeAt(u);
|
|
4746
4820
|
}
|
|
4747
4821
|
}
|
|
4748
|
-
while (this.v.
|
|
4749
|
-
this.v.
|
|
4822
|
+
while (this.v.a5 > a) {
|
|
4823
|
+
this.v.a9(this.v.a5 - 1);
|
|
4750
4824
|
}
|
|
4751
|
-
while (this.v.
|
|
4752
|
-
this.v.
|
|
4825
|
+
while (this.v.a2 > this.ap.count) {
|
|
4826
|
+
this.v.a8(this.v.a2 - 1);
|
|
4753
4827
|
}
|
|
4754
4828
|
}
|
|
4755
4829
|
dw(a, b) {
|
|
@@ -6154,6 +6228,11 @@ let IgcPropertyEditorPanelComponent = /*@__PURE__*/ (() => {
|
|
|
6154
6228
|
this._a("textColor", brushToString(this.i.d9));
|
|
6155
6229
|
}
|
|
6156
6230
|
findByName(name) {
|
|
6231
|
+
if (this.findEphemera) {
|
|
6232
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
6233
|
+
return this.findEphemera(name);
|
|
6234
|
+
}
|
|
6235
|
+
}
|
|
6157
6236
|
if (this.actualDataSource != null && this.actualDataSource.findByName && this.actualDataSource.findByName(name)) {
|
|
6158
6237
|
return this.actualDataSource.findByName(name);
|
|
6159
6238
|
}
|
|
@@ -7439,6 +7518,11 @@ class IgcListPanelItemModel {
|
|
|
7439
7518
|
this.i.e = ensureBool(v);
|
|
7440
7519
|
}
|
|
7441
7520
|
findByName(name) {
|
|
7521
|
+
if (this.findEphemera) {
|
|
7522
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
7523
|
+
return this.findEphemera(name);
|
|
7524
|
+
}
|
|
7525
|
+
}
|
|
7442
7526
|
return null;
|
|
7443
7527
|
}
|
|
7444
7528
|
}
|
|
@@ -7466,15 +7550,21 @@ class IgcListPanelTemplateItemUpdatingEventArgs {
|
|
|
7466
7550
|
this.onImplementationCreated();
|
|
7467
7551
|
}
|
|
7468
7552
|
get model() {
|
|
7469
|
-
|
|
7553
|
+
const r = this.i.a;
|
|
7554
|
+
if (r == null) {
|
|
7470
7555
|
return null;
|
|
7471
7556
|
}
|
|
7472
|
-
if (!
|
|
7557
|
+
if (!r.externalObject) {
|
|
7473
7558
|
let e = new IgcListPanelItemModel();
|
|
7474
|
-
e.
|
|
7475
|
-
|
|
7559
|
+
if (e.i.setNativeElement) {
|
|
7560
|
+
e.i.setNativeElement(r);
|
|
7561
|
+
}
|
|
7562
|
+
else {
|
|
7563
|
+
e._implementation = r;
|
|
7564
|
+
}
|
|
7565
|
+
r.externalObject = e;
|
|
7476
7566
|
}
|
|
7477
|
-
return
|
|
7567
|
+
return r.externalObject;
|
|
7478
7568
|
}
|
|
7479
7569
|
set model(v) {
|
|
7480
7570
|
v == null ? this.i.a = null : this.i.a = v.i;
|
|
@@ -7837,6 +7927,11 @@ let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
7837
7927
|
this._a("textColor", brushToString(this.i.cv));
|
|
7838
7928
|
}
|
|
7839
7929
|
findByName(name) {
|
|
7930
|
+
if (this.findEphemera) {
|
|
7931
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
7932
|
+
return this.findEphemera(name);
|
|
7933
|
+
}
|
|
7934
|
+
}
|
|
7840
7935
|
return null;
|
|
7841
7936
|
}
|
|
7842
7937
|
get hasUserValues() {
|
|
@@ -7966,6 +8061,7 @@ let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
7966
8061
|
}
|
|
7967
8062
|
};
|
|
7968
8063
|
this.i.contentRefreshed = delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
|
|
8064
|
+
;
|
|
7969
8065
|
}
|
|
7970
8066
|
get rowUpdating() {
|
|
7971
8067
|
return this._rowUpdating;
|
|
@@ -7988,6 +8084,7 @@ let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
7988
8084
|
}
|
|
7989
8085
|
};
|
|
7990
8086
|
this.i.rowUpdating = delegateCombine(this.i.rowUpdating, this._rowUpdating_wrapped);
|
|
8087
|
+
;
|
|
7991
8088
|
}
|
|
7992
8089
|
get itemWidthRequested() {
|
|
7993
8090
|
return this._itemWidthRequested;
|
|
@@ -8010,6 +8107,7 @@ let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
8010
8107
|
}
|
|
8011
8108
|
};
|
|
8012
8109
|
this.i.itemWidthRequested = delegateCombine(this.i.itemWidthRequested, this._itemWidthRequested_wrapped);
|
|
8110
|
+
;
|
|
8013
8111
|
}
|
|
8014
8112
|
get itemHeightRequested() {
|
|
8015
8113
|
return this._itemHeightRequested;
|
|
@@ -8032,6 +8130,7 @@ let IgcListPanelComponent = /*@__PURE__*/ (() => {
|
|
|
8032
8130
|
}
|
|
8033
8131
|
};
|
|
8034
8132
|
this.i.itemHeightRequested = delegateCombine(this.i.itemHeightRequested, this._itemHeightRequested_wrapped);
|
|
8133
|
+
;
|
|
8035
8134
|
}
|
|
8036
8135
|
}
|
|
8037
8136
|
IgcListPanelComponent._observedAttributesIgcListPanelComponent = null;
|
|
@@ -8229,8 +8328,8 @@ let ToolPanelView = /*@__PURE__*/ (() => {
|
|
|
8229
8328
|
}
|
|
8230
8329
|
let b = a.rootWrapper;
|
|
8231
8330
|
if (null != b) {
|
|
8232
|
-
NativeUI.o(b, this.c.
|
|
8233
|
-
NativeUI.k(b, this.c.
|
|
8331
|
+
NativeUI.o(b, this.c.ba);
|
|
8332
|
+
NativeUI.k(b, this.c.a7);
|
|
8234
8333
|
}
|
|
8235
8334
|
}
|
|
8236
8335
|
f() {
|
|
@@ -8635,12 +8734,18 @@ let ToolAction = /*@__PURE__*/ (() => {
|
|
|
8635
8734
|
b = new ToolActionIconButton();
|
|
8636
8735
|
break;
|
|
8637
8736
|
case 4:
|
|
8638
|
-
b = new
|
|
8737
|
+
b = new ToolActionLabel();
|
|
8639
8738
|
break;
|
|
8640
8739
|
case 5:
|
|
8641
|
-
b = new
|
|
8740
|
+
b = new ToolActionNumberInput();
|
|
8642
8741
|
break;
|
|
8643
8742
|
case 6:
|
|
8743
|
+
b = new ToolActionRadio();
|
|
8744
|
+
break;
|
|
8745
|
+
case 7:
|
|
8746
|
+
b = new ToolActionSeparator();
|
|
8747
|
+
break;
|
|
8748
|
+
case 8:
|
|
8644
8749
|
b = new ToolActionIconMenu();
|
|
8645
8750
|
break;
|
|
8646
8751
|
case 0: return null;
|
|
@@ -8666,13 +8771,166 @@ let ToolAction = /*@__PURE__*/ (() => {
|
|
|
8666
8771
|
ToolAction.$t = /*@__PURE__*/ markType(ToolAction, 'ToolAction', Base.$, [INotifyPropertyChanged_$type]);
|
|
8667
8772
|
return ToolAction;
|
|
8668
8773
|
})();
|
|
8774
|
+
/**
|
|
8775
|
+
* @hidden
|
|
8776
|
+
*/
|
|
8777
|
+
let ToolActionLabel = /*@__PURE__*/ (() => {
|
|
8778
|
+
class ToolActionLabel extends ToolAction {
|
|
8779
|
+
get_f() {
|
|
8780
|
+
return 4;
|
|
8781
|
+
}
|
|
8782
|
+
bf(a, b, c, d, e, f, g) {
|
|
8783
|
+
if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
|
|
8784
|
+
a.a0 = b;
|
|
8785
|
+
if (g.a == 1) {
|
|
8786
|
+
b.d = 0;
|
|
8787
|
+
}
|
|
8788
|
+
else {
|
|
8789
|
+
b.d = 3;
|
|
8790
|
+
}
|
|
8791
|
+
b.a7(0, 2, 1);
|
|
8792
|
+
b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
|
|
8793
|
+
b.a6(1, 1, isNaN_(g.g) ? 0 : g.g);
|
|
8794
|
+
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
8795
|
+
if (b.av == 0) {
|
|
8796
|
+
b.aw(c);
|
|
8797
|
+
}
|
|
8798
|
+
b.bb(c, 0);
|
|
8799
|
+
b.ba(c, 1);
|
|
8800
|
+
c.e = 1;
|
|
8801
|
+
b.a1 = runOn(this, this.be);
|
|
8802
|
+
}
|
|
8803
|
+
b.h = f.a.j;
|
|
8804
|
+
b.aj = BrushUtil.g(0, 0, 0, 0);
|
|
8805
|
+
c.au = this.ap;
|
|
8806
|
+
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
8807
|
+
}
|
|
8808
|
+
be(a, b) {
|
|
8809
|
+
this.a9(this.b(false), this);
|
|
8810
|
+
}
|
|
8811
|
+
bb(a, b, c, d) {
|
|
8812
|
+
super.bb(a, b, c, d);
|
|
8813
|
+
let e = c.b;
|
|
8814
|
+
if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
|
|
8815
|
+
NativeUIComponent.ab(b.l.r(), [7, 3], (f) => {
|
|
8816
|
+
let g = f[0];
|
|
8817
|
+
let h = f[1];
|
|
8818
|
+
e.a0 = g;
|
|
8819
|
+
this.bf(e, g, h, a, b, c, d);
|
|
8820
|
+
});
|
|
8821
|
+
;
|
|
8822
|
+
}
|
|
8823
|
+
else {
|
|
8824
|
+
let f = e.a0;
|
|
8825
|
+
let g = f.au(0);
|
|
8826
|
+
this.bf(e, f, g, a, b, c, d);
|
|
8827
|
+
}
|
|
8828
|
+
}
|
|
8829
|
+
}
|
|
8830
|
+
ToolActionLabel.$t = /*@__PURE__*/ markType(ToolActionLabel, 'ToolActionLabel', ToolAction.$);
|
|
8831
|
+
return ToolActionLabel;
|
|
8832
|
+
})();
|
|
8833
|
+
/**
|
|
8834
|
+
* @hidden
|
|
8835
|
+
*/
|
|
8836
|
+
let ToolActionRadio = /*@__PURE__*/ (() => {
|
|
8837
|
+
class ToolActionRadio extends ToolAction {
|
|
8838
|
+
constructor() {
|
|
8839
|
+
super(...arguments);
|
|
8840
|
+
this.bf = null;
|
|
8841
|
+
this.be = null;
|
|
8842
|
+
}
|
|
8843
|
+
get_f() {
|
|
8844
|
+
return 6;
|
|
8845
|
+
}
|
|
8846
|
+
b(a) {
|
|
8847
|
+
let b = new ToolActionEventDetail();
|
|
8848
|
+
b.a = this;
|
|
8849
|
+
b.b = this.f;
|
|
8850
|
+
b.d = a;
|
|
8851
|
+
if (this.be != null) {
|
|
8852
|
+
b.c = this.be.aw;
|
|
8853
|
+
}
|
|
8854
|
+
return b;
|
|
8855
|
+
}
|
|
8856
|
+
x() {
|
|
8857
|
+
return this.be.aw;
|
|
8858
|
+
}
|
|
8859
|
+
bg() {
|
|
8860
|
+
if (this.be != null) {
|
|
8861
|
+
this.be.aw = false;
|
|
8862
|
+
}
|
|
8863
|
+
}
|
|
8864
|
+
o(a, b) {
|
|
8865
|
+
return 30;
|
|
8866
|
+
}
|
|
8867
|
+
bi(a, b, c, d, e, f, g, h) {
|
|
8868
|
+
if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
|
|
8869
|
+
a.a0 = b;
|
|
8870
|
+
if (h.a == 1) {
|
|
8871
|
+
b.d = 0;
|
|
8872
|
+
}
|
|
8873
|
+
else {
|
|
8874
|
+
b.d = 3;
|
|
8875
|
+
}
|
|
8876
|
+
b.a7(0, 2, 1);
|
|
8877
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
8878
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
8879
|
+
b.a6(1, 2, 1);
|
|
8880
|
+
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
8881
|
+
if (b.av == 0) {
|
|
8882
|
+
b.aw(c);
|
|
8883
|
+
b.aw(d);
|
|
8884
|
+
}
|
|
8885
|
+
b.bb(c, 0);
|
|
8886
|
+
b.ba(c, 1);
|
|
8887
|
+
b.bb(d, 0);
|
|
8888
|
+
b.ba(d, 2);
|
|
8889
|
+
this.be = d;
|
|
8890
|
+
d.ax = 25;
|
|
8891
|
+
d.av = true;
|
|
8892
|
+
d.d = 2;
|
|
8893
|
+
d.e = 1;
|
|
8894
|
+
d.au = runOn(this, this.bh);
|
|
8895
|
+
c.e = 1;
|
|
8896
|
+
}
|
|
8897
|
+
b.h = g.a.j;
|
|
8898
|
+
c.au = this.ap;
|
|
8899
|
+
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
8900
|
+
}
|
|
8901
|
+
bh(a, b) {
|
|
8902
|
+
this.a9(this.b(true), this);
|
|
8903
|
+
}
|
|
8904
|
+
bb(a, b, c, d) {
|
|
8905
|
+
super.bb(a, b, c, d);
|
|
8906
|
+
let e = c.b;
|
|
8907
|
+
if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
|
|
8908
|
+
NativeUIComponent.ab(b.l.r(), [7, 3, 6], (f) => {
|
|
8909
|
+
let g = f[0];
|
|
8910
|
+
let h = f[1];
|
|
8911
|
+
let i = f[2];
|
|
8912
|
+
e.a0 = g;
|
|
8913
|
+
this.bi(e, g, h, i, a, b, c, d);
|
|
8914
|
+
});
|
|
8915
|
+
}
|
|
8916
|
+
else {
|
|
8917
|
+
let f = e.a0;
|
|
8918
|
+
let g = f.au(0);
|
|
8919
|
+
let h = f.au(1);
|
|
8920
|
+
this.bi(e, f, g, h, a, b, c, d);
|
|
8921
|
+
}
|
|
8922
|
+
}
|
|
8923
|
+
}
|
|
8924
|
+
ToolActionRadio.$t = /*@__PURE__*/ markType(ToolActionRadio, 'ToolActionRadio', ToolAction.$);
|
|
8925
|
+
return ToolActionRadio;
|
|
8926
|
+
})();
|
|
8669
8927
|
/**
|
|
8670
8928
|
* @hidden
|
|
8671
8929
|
*/
|
|
8672
8930
|
let ToolActionSeparator = /*@__PURE__*/ (() => {
|
|
8673
8931
|
class ToolActionSeparator extends ToolAction {
|
|
8674
8932
|
get_f() {
|
|
8675
|
-
return
|
|
8933
|
+
return 7;
|
|
8676
8934
|
}
|
|
8677
8935
|
a5(a, b) {
|
|
8678
8936
|
super.a5(a, b);
|
|
@@ -8756,14 +9014,14 @@ let ToolActionIconButton = /*@__PURE__*/ (() => {
|
|
|
8756
9014
|
else {
|
|
8757
9015
|
b.d = 3;
|
|
8758
9016
|
}
|
|
8759
|
-
b.
|
|
8760
|
-
b.
|
|
9017
|
+
b.a7(0, 2, 1);
|
|
9018
|
+
b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
|
|
8761
9019
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
8762
9020
|
if (b.av == 0) {
|
|
8763
9021
|
b.aw(c);
|
|
8764
9022
|
}
|
|
8765
|
-
b.
|
|
8766
|
-
b.
|
|
9023
|
+
b.bb(c, 0);
|
|
9024
|
+
b.ba(c, 0);
|
|
8767
9025
|
this.be = c;
|
|
8768
9026
|
this.be.av = 2;
|
|
8769
9027
|
this.be.au = runOn(this, this.bf);
|
|
@@ -8813,9 +9071,9 @@ let ToolActionGroupHeader = /*@__PURE__*/ (() => {
|
|
|
8813
9071
|
else {
|
|
8814
9072
|
b.d = 3;
|
|
8815
9073
|
}
|
|
8816
|
-
b.
|
|
8817
|
-
b.
|
|
8818
|
-
b.
|
|
9074
|
+
b.a7(0, 2, 1);
|
|
9075
|
+
b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
|
|
9076
|
+
b.a6(1, 2, 1);
|
|
8819
9077
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
8820
9078
|
if (b.av == 0) {
|
|
8821
9079
|
b.aw(c);
|
|
@@ -8828,8 +9086,8 @@ let ToolActionGroupHeader = /*@__PURE__*/ (() => {
|
|
|
8828
9086
|
b.aq = new Thickness(1, 0, 0, 0, 2);
|
|
8829
9087
|
c.au = this.ap;
|
|
8830
9088
|
c.al = BrushUtil.g(255, 20, 20, 20);
|
|
8831
|
-
b.
|
|
8832
|
-
b.
|
|
9089
|
+
b.bb(c, 0);
|
|
9090
|
+
b.ba(c, 1);
|
|
8833
9091
|
}
|
|
8834
9092
|
bb(a, b, c, d) {
|
|
8835
9093
|
super.bb(a, b, c, d);
|
|
@@ -8996,14 +9254,14 @@ let ToolActionIconMenu = /*@__PURE__*/ (() => {
|
|
|
8996
9254
|
else {
|
|
8997
9255
|
b.d = 3;
|
|
8998
9256
|
}
|
|
8999
|
-
b.
|
|
9000
|
-
b.
|
|
9257
|
+
b.a7(0, 2, 1);
|
|
9258
|
+
b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
|
|
9001
9259
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
9002
9260
|
if (b.av == 0) {
|
|
9003
9261
|
b.aw(c);
|
|
9004
9262
|
}
|
|
9005
|
-
b.
|
|
9006
|
-
b.
|
|
9263
|
+
b.bb(c, 0);
|
|
9264
|
+
b.ba(c, 0);
|
|
9007
9265
|
this.bz = c;
|
|
9008
9266
|
this.bz.av = 2;
|
|
9009
9267
|
this.bz.au = runOn(this, this.b0);
|
|
@@ -9073,19 +9331,19 @@ let ToolActionCheckbox = /*@__PURE__*/ (() => {
|
|
|
9073
9331
|
else {
|
|
9074
9332
|
b.d = 3;
|
|
9075
9333
|
}
|
|
9076
|
-
b.
|
|
9077
|
-
b.
|
|
9078
|
-
b.
|
|
9079
|
-
b.
|
|
9334
|
+
b.a7(0, 2, 1);
|
|
9335
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
9336
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
9337
|
+
b.a6(1, 2, 1);
|
|
9080
9338
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
9081
9339
|
if (b.av == 0) {
|
|
9082
9340
|
b.aw(c);
|
|
9083
9341
|
b.aw(d);
|
|
9084
9342
|
}
|
|
9085
|
-
b.
|
|
9086
|
-
b.
|
|
9087
|
-
b.
|
|
9088
|
-
b.
|
|
9343
|
+
b.bb(c, 0);
|
|
9344
|
+
b.ba(c, 1);
|
|
9345
|
+
b.bb(d, 0);
|
|
9346
|
+
b.ba(d, 2);
|
|
9089
9347
|
this.be = d;
|
|
9090
9348
|
d.av = true;
|
|
9091
9349
|
d.d = 2;
|
|
@@ -9133,7 +9391,7 @@ let ToolActionNumberInput = /*@__PURE__*/ (() => {
|
|
|
9133
9391
|
this.be = null;
|
|
9134
9392
|
}
|
|
9135
9393
|
get_f() {
|
|
9136
|
-
return
|
|
9394
|
+
return 5;
|
|
9137
9395
|
}
|
|
9138
9396
|
x() {
|
|
9139
9397
|
return this.bf();
|
|
@@ -9150,19 +9408,19 @@ let ToolActionNumberInput = /*@__PURE__*/ (() => {
|
|
|
9150
9408
|
else {
|
|
9151
9409
|
b.d = 3;
|
|
9152
9410
|
}
|
|
9153
|
-
b.
|
|
9154
|
-
b.
|
|
9155
|
-
b.
|
|
9156
|
-
b.
|
|
9411
|
+
b.a7(0, 2, 1);
|
|
9412
|
+
b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
|
|
9413
|
+
b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
|
|
9414
|
+
b.a6(1, 2, 1);
|
|
9157
9415
|
b.as = new Thickness(1, this.r, this.t, this.s, this.q);
|
|
9158
9416
|
if (b.av == 0) {
|
|
9159
9417
|
b.aw(c);
|
|
9160
9418
|
b.aw(d);
|
|
9161
9419
|
}
|
|
9162
|
-
b.
|
|
9163
|
-
b.
|
|
9164
|
-
b.
|
|
9165
|
-
b.
|
|
9420
|
+
b.bb(c, 0);
|
|
9421
|
+
b.ba(c, 1);
|
|
9422
|
+
b.bb(d, 0);
|
|
9423
|
+
b.ba(d, 2);
|
|
9166
9424
|
this.be = d;
|
|
9167
9425
|
d.n = 100;
|
|
9168
9426
|
d.au = 2;
|
|
@@ -9300,8 +9558,8 @@ let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
9300
9558
|
this.v = new Dictionary$2(String_$type, ToolAction.$, 0);
|
|
9301
9559
|
this.m = null;
|
|
9302
9560
|
this.a = null;
|
|
9303
|
-
this.a4 = ToolPanel.a7;
|
|
9304
9561
|
this.a5 = ToolPanel.a8;
|
|
9562
|
+
this.a6 = ToolPanel.a9;
|
|
9305
9563
|
this.b = null;
|
|
9306
9564
|
this.z = Number.POSITIVE_INFINITY;
|
|
9307
9565
|
this.i = ToolPanel.j;
|
|
@@ -9424,7 +9682,7 @@ let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
9424
9682
|
}
|
|
9425
9683
|
this.t = false;
|
|
9426
9684
|
this.al();
|
|
9427
|
-
this.
|
|
9685
|
+
this.a4();
|
|
9428
9686
|
for (let a = 0; a < this.d.count; a++) {
|
|
9429
9687
|
this.as(this.d._inner[a]);
|
|
9430
9688
|
}
|
|
@@ -9451,6 +9709,15 @@ let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
9451
9709
|
}
|
|
9452
9710
|
}
|
|
9453
9711
|
}
|
|
9712
|
+
for (let d = 0; d < this.d.count; d++) {
|
|
9713
|
+
if (this.d._inner[d].f == 6) {
|
|
9714
|
+
let e = this.d._inner[d].bf;
|
|
9715
|
+
if (!this.x.containsKey(e)) {
|
|
9716
|
+
this.x.item(e, new List$1(ToolAction.$, 0));
|
|
9717
|
+
}
|
|
9718
|
+
this.x.item(e).add(this.d._inner[d]);
|
|
9719
|
+
}
|
|
9720
|
+
}
|
|
9454
9721
|
}
|
|
9455
9722
|
u(a) {
|
|
9456
9723
|
if (a.ao == null) {
|
|
@@ -9501,7 +9768,7 @@ let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
9501
9768
|
}
|
|
9502
9769
|
}
|
|
9503
9770
|
}
|
|
9504
|
-
|
|
9771
|
+
a4() {
|
|
9505
9772
|
this.f = new ToolActionMeasurementContext();
|
|
9506
9773
|
this.f.a = this.k;
|
|
9507
9774
|
this.f.b = this.z;
|
|
@@ -9519,6 +9786,19 @@ let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
9519
9786
|
this.b.bt();
|
|
9520
9787
|
}
|
|
9521
9788
|
}
|
|
9789
|
+
a3(a) {
|
|
9790
|
+
let b = a.bf;
|
|
9791
|
+
let c = a.ao;
|
|
9792
|
+
if (this.x != null) {
|
|
9793
|
+
if (this.x.containsKey(b)) {
|
|
9794
|
+
for (let d = 0; d < this.x.item(b).count; d++) {
|
|
9795
|
+
if (this.x.item(b)._inner[d].ao != c) {
|
|
9796
|
+
this.x.item(b)._inner[d].bg();
|
|
9797
|
+
}
|
|
9798
|
+
}
|
|
9799
|
+
}
|
|
9800
|
+
}
|
|
9801
|
+
}
|
|
9522
9802
|
ar(a, b) {
|
|
9523
9803
|
this.av();
|
|
9524
9804
|
}
|
|
@@ -9580,23 +9860,23 @@ let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
9580
9860
|
break;
|
|
9581
9861
|
}
|
|
9582
9862
|
}
|
|
9583
|
-
get
|
|
9584
|
-
return this.a4;
|
|
9585
|
-
}
|
|
9586
|
-
set a6(a) {
|
|
9587
|
-
let b = this.a4;
|
|
9588
|
-
this.a4 = a;
|
|
9589
|
-
if (b != this.a4) {
|
|
9590
|
-
this.ax("BackgroundColor", b, a);
|
|
9591
|
-
}
|
|
9592
|
-
}
|
|
9593
|
-
get a9() {
|
|
9863
|
+
get a7() {
|
|
9594
9864
|
return this.a5;
|
|
9595
9865
|
}
|
|
9596
|
-
set
|
|
9866
|
+
set a7(a) {
|
|
9597
9867
|
let b = this.a5;
|
|
9598
9868
|
this.a5 = a;
|
|
9599
9869
|
if (b != this.a5) {
|
|
9870
|
+
this.ax("BackgroundColor", b, a);
|
|
9871
|
+
}
|
|
9872
|
+
}
|
|
9873
|
+
get ba() {
|
|
9874
|
+
return this.a6;
|
|
9875
|
+
}
|
|
9876
|
+
set ba(a) {
|
|
9877
|
+
let b = this.a6;
|
|
9878
|
+
this.a6 = a;
|
|
9879
|
+
if (b != this.a6) {
|
|
9600
9880
|
this.ax("TextColor", b, a);
|
|
9601
9881
|
}
|
|
9602
9882
|
}
|
|
@@ -9618,11 +9898,14 @@ let ToolPanel = /*@__PURE__*/ (() => {
|
|
|
9618
9898
|
return $ret;
|
|
9619
9899
|
})()));
|
|
9620
9900
|
}
|
|
9901
|
+
if (a.f == 6) {
|
|
9902
|
+
this.a3(a);
|
|
9903
|
+
}
|
|
9621
9904
|
}
|
|
9622
9905
|
}
|
|
9623
9906
|
ToolPanel.$t = /*@__PURE__*/ markType(ToolPanel, 'ToolPanel', Base.$, [INotifyPropertyChanged_$type]);
|
|
9624
|
-
ToolPanel.
|
|
9625
|
-
ToolPanel.
|
|
9907
|
+
ToolPanel.a8 = /*@__PURE__*/ BrushUtil.g(255, 248, 248, 248);
|
|
9908
|
+
ToolPanel.a9 = /*@__PURE__*/ BrushUtil.g(255, 24, 29, 31);
|
|
9626
9909
|
ToolPanel.j = 0;
|
|
9627
9910
|
return ToolPanel;
|
|
9628
9911
|
})();
|
|
@@ -9694,17 +9977,18 @@ class IgcToolActionEventDetail {
|
|
|
9694
9977
|
this.onImplementationCreated();
|
|
9695
9978
|
}
|
|
9696
9979
|
get action() {
|
|
9697
|
-
|
|
9980
|
+
const r = this.i.a;
|
|
9981
|
+
if (r == null) {
|
|
9698
9982
|
return null;
|
|
9699
9983
|
}
|
|
9700
|
-
if (!
|
|
9701
|
-
let e = IgcToolActionComponent._createFromInternal(
|
|
9984
|
+
if (!r.externalObject) {
|
|
9985
|
+
let e = IgcToolActionComponent._createFromInternal(r);
|
|
9702
9986
|
if (e) {
|
|
9703
|
-
e._implementation =
|
|
9987
|
+
e._implementation = r;
|
|
9704
9988
|
}
|
|
9705
|
-
|
|
9989
|
+
r.externalObject = e;
|
|
9706
9990
|
}
|
|
9707
|
-
return
|
|
9991
|
+
return r.externalObject;
|
|
9708
9992
|
}
|
|
9709
9993
|
set action(v) {
|
|
9710
9994
|
v == null ? this.i.a = null : this.i.a = v.i;
|
|
@@ -9746,6 +10030,11 @@ class IgcToolActionEventDetail {
|
|
|
9746
10030
|
this.i.g = v;
|
|
9747
10031
|
}
|
|
9748
10032
|
findByName(name) {
|
|
10033
|
+
if (this.findEphemera) {
|
|
10034
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
10035
|
+
return this.findEphemera(name);
|
|
10036
|
+
}
|
|
10037
|
+
}
|
|
9749
10038
|
if (this.action && this.action.name && this.action.name == name) {
|
|
9750
10039
|
return this.action;
|
|
9751
10040
|
}
|
|
@@ -9841,15 +10130,21 @@ class IgcToolActionPerformedEventArgs {
|
|
|
9841
10130
|
this.i.c = ensureBool(v);
|
|
9842
10131
|
}
|
|
9843
10132
|
get detail() {
|
|
9844
|
-
|
|
10133
|
+
const r = this.i.a;
|
|
10134
|
+
if (r == null) {
|
|
9845
10135
|
return null;
|
|
9846
10136
|
}
|
|
9847
|
-
if (!
|
|
10137
|
+
if (!r.externalObject) {
|
|
9848
10138
|
let e = new IgcToolActionEventDetail();
|
|
9849
|
-
e.
|
|
9850
|
-
|
|
10139
|
+
if (e.i.setNativeElement) {
|
|
10140
|
+
e.i.setNativeElement(r);
|
|
10141
|
+
}
|
|
10142
|
+
else {
|
|
10143
|
+
e._implementation = r;
|
|
10144
|
+
}
|
|
10145
|
+
r.externalObject = e;
|
|
9851
10146
|
}
|
|
9852
|
-
return
|
|
10147
|
+
return r.externalObject;
|
|
9853
10148
|
}
|
|
9854
10149
|
set detail(v) {
|
|
9855
10150
|
v == null ? this.i.a = null : this.i.a = v.i;
|
|
@@ -9978,11 +10273,25 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
9978
10273
|
if (super["connectedCallback"]) {
|
|
9979
10274
|
super["connectedCallback"]();
|
|
9980
10275
|
}
|
|
10276
|
+
if (this.i.connectedCallback) {
|
|
10277
|
+
this.i.connectedCallback();
|
|
10278
|
+
}
|
|
9981
10279
|
if (!this._attached) {
|
|
9982
10280
|
this._attached = true;
|
|
9983
10281
|
this._flushQueuedAttributes();
|
|
9984
10282
|
}
|
|
9985
10283
|
}
|
|
10284
|
+
disconnectedCallback() {
|
|
10285
|
+
if (super["disconnectedCallback"]) {
|
|
10286
|
+
super["disconnectedCallback"]();
|
|
10287
|
+
}
|
|
10288
|
+
if (this.i.disconnectedCallback) {
|
|
10289
|
+
this.i.disconnectedCallback();
|
|
10290
|
+
}
|
|
10291
|
+
if (this._attached) {
|
|
10292
|
+
this._attached = false;
|
|
10293
|
+
}
|
|
10294
|
+
}
|
|
9986
10295
|
static get observedAttributes() {
|
|
9987
10296
|
if (IgcToolActionComponent._observedAttributesIgcToolActionComponent == null) {
|
|
9988
10297
|
let names = getAllPropertyNames(IgcToolActionComponent);
|
|
@@ -10088,6 +10397,11 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
10088
10397
|
this.i.ak = v;
|
|
10089
10398
|
}
|
|
10090
10399
|
findByName(name) {
|
|
10400
|
+
if (this.findEphemera) {
|
|
10401
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
10402
|
+
return this.findEphemera(name);
|
|
10403
|
+
}
|
|
10404
|
+
}
|
|
10091
10405
|
return null;
|
|
10092
10406
|
}
|
|
10093
10407
|
get hasUserValues() {
|
|
@@ -10167,6 +10481,7 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
10167
10481
|
}
|
|
10168
10482
|
};
|
|
10169
10483
|
this.i.onCommand = delegateCombine(this.i.onCommand, this._onCommand_wrapped);
|
|
10484
|
+
;
|
|
10170
10485
|
}
|
|
10171
10486
|
get performed() {
|
|
10172
10487
|
return this._performed;
|
|
@@ -10189,6 +10504,7 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
10189
10504
|
}
|
|
10190
10505
|
};
|
|
10191
10506
|
this.i.performed = delegateCombine(this.i.performed, this._performed_wrapped);
|
|
10507
|
+
;
|
|
10192
10508
|
}
|
|
10193
10509
|
}
|
|
10194
10510
|
IgcToolActionComponent._observedAttributesIgcToolActionComponent = null;
|
|
@@ -10495,21 +10811,21 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
10495
10811
|
* Gets or sets the color to use for the background of the component.
|
|
10496
10812
|
*/
|
|
10497
10813
|
get backgroundColor() {
|
|
10498
|
-
return brushToString(this.i.
|
|
10814
|
+
return brushToString(this.i.a7);
|
|
10499
10815
|
}
|
|
10500
10816
|
set backgroundColor(v) {
|
|
10501
|
-
this.i.
|
|
10502
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
10817
|
+
this.i.a7 = stringToBrush(v);
|
|
10818
|
+
this._a("backgroundColor", brushToString(this.i.a7));
|
|
10503
10819
|
}
|
|
10504
10820
|
/**
|
|
10505
10821
|
* Gets or sets the color to use for the text of the component.
|
|
10506
10822
|
*/
|
|
10507
10823
|
get textColor() {
|
|
10508
|
-
return brushToString(this.i.
|
|
10824
|
+
return brushToString(this.i.ba);
|
|
10509
10825
|
}
|
|
10510
10826
|
set textColor(v) {
|
|
10511
|
-
this.i.
|
|
10512
|
-
this._a("textColor", brushToString(this.i.
|
|
10827
|
+
this.i.ba = stringToBrush(v);
|
|
10828
|
+
this._a("textColor", brushToString(this.i.ba));
|
|
10513
10829
|
}
|
|
10514
10830
|
/**
|
|
10515
10831
|
* Gets or sets the color to use for the background of the component.
|
|
@@ -10522,6 +10838,11 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
10522
10838
|
this._a("orientation", enumToString(ToolPanelOrientation_$type, this.i.k));
|
|
10523
10839
|
}
|
|
10524
10840
|
findByName(name) {
|
|
10841
|
+
if (this.findEphemera) {
|
|
10842
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
10843
|
+
return this.findEphemera(name);
|
|
10844
|
+
}
|
|
10845
|
+
}
|
|
10525
10846
|
if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
|
|
10526
10847
|
return this.actions.findByName(name);
|
|
10527
10848
|
}
|
|
@@ -10601,6 +10922,7 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
10601
10922
|
}
|
|
10602
10923
|
};
|
|
10603
10924
|
this.i.contentRefreshed = delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
|
|
10925
|
+
;
|
|
10604
10926
|
}
|
|
10605
10927
|
get onCommand() {
|
|
10606
10928
|
return this._onCommand;
|
|
@@ -10623,6 +10945,7 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
10623
10945
|
}
|
|
10624
10946
|
};
|
|
10625
10947
|
this.i.onCommand = delegateCombine(this.i.onCommand, this._onCommand_wrapped);
|
|
10948
|
+
;
|
|
10626
10949
|
}
|
|
10627
10950
|
}
|
|
10628
10951
|
IgcToolPanelComponent._observedAttributesIgcToolPanelComponent = null;
|
|
@@ -11400,6 +11723,11 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
11400
11723
|
this._a("cellTextStyle", this.i.o != null ? this.i.o.fontString : "");
|
|
11401
11724
|
}
|
|
11402
11725
|
findByName(name) {
|
|
11726
|
+
if (this.findEphemera) {
|
|
11727
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
11728
|
+
return this.findEphemera(name);
|
|
11729
|
+
}
|
|
11730
|
+
}
|
|
11403
11731
|
if (this.autoGeneratedActions != null && this.autoGeneratedActions.findByName && this.autoGeneratedActions.findByName(name)) {
|
|
11404
11732
|
return this.autoGeneratedActions.findByName(name);
|
|
11405
11733
|
}
|
|
@@ -11496,11 +11824,25 @@ let IgcToolActionCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
11496
11824
|
if (super["connectedCallback"]) {
|
|
11497
11825
|
super["connectedCallback"]();
|
|
11498
11826
|
}
|
|
11827
|
+
if (this.i.connectedCallback) {
|
|
11828
|
+
this.i.connectedCallback();
|
|
11829
|
+
}
|
|
11499
11830
|
if (!this._attached) {
|
|
11500
11831
|
this._attached = true;
|
|
11501
11832
|
this._flushQueuedAttributes();
|
|
11502
11833
|
}
|
|
11503
11834
|
}
|
|
11835
|
+
disconnectedCallback() {
|
|
11836
|
+
if (super["disconnectedCallback"]) {
|
|
11837
|
+
super["disconnectedCallback"]();
|
|
11838
|
+
}
|
|
11839
|
+
if (this.i.disconnectedCallback) {
|
|
11840
|
+
this.i.disconnectedCallback();
|
|
11841
|
+
}
|
|
11842
|
+
if (this._attached) {
|
|
11843
|
+
this._attached = false;
|
|
11844
|
+
}
|
|
11845
|
+
}
|
|
11504
11846
|
static get observedAttributes() {
|
|
11505
11847
|
if (IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent == null) {
|
|
11506
11848
|
let names = getAllPropertyNames(IgcToolActionCheckboxComponent);
|
|
@@ -11563,11 +11905,25 @@ let IgcToolActionGroupHeaderComponent = /*@__PURE__*/ (() => {
|
|
|
11563
11905
|
if (super["connectedCallback"]) {
|
|
11564
11906
|
super["connectedCallback"]();
|
|
11565
11907
|
}
|
|
11908
|
+
if (this.i.connectedCallback) {
|
|
11909
|
+
this.i.connectedCallback();
|
|
11910
|
+
}
|
|
11566
11911
|
if (!this._attached) {
|
|
11567
11912
|
this._attached = true;
|
|
11568
11913
|
this._flushQueuedAttributes();
|
|
11569
11914
|
}
|
|
11570
11915
|
}
|
|
11916
|
+
disconnectedCallback() {
|
|
11917
|
+
if (super["disconnectedCallback"]) {
|
|
11918
|
+
super["disconnectedCallback"]();
|
|
11919
|
+
}
|
|
11920
|
+
if (this.i.disconnectedCallback) {
|
|
11921
|
+
this.i.disconnectedCallback();
|
|
11922
|
+
}
|
|
11923
|
+
if (this._attached) {
|
|
11924
|
+
this._attached = false;
|
|
11925
|
+
}
|
|
11926
|
+
}
|
|
11571
11927
|
static get observedAttributes() {
|
|
11572
11928
|
if (IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent == null) {
|
|
11573
11929
|
let names = getAllPropertyNames(IgcToolActionGroupHeaderComponent);
|
|
@@ -11630,11 +11986,25 @@ let IgcToolActionNumberInputComponent = /*@__PURE__*/ (() => {
|
|
|
11630
11986
|
if (super["connectedCallback"]) {
|
|
11631
11987
|
super["connectedCallback"]();
|
|
11632
11988
|
}
|
|
11989
|
+
if (this.i.connectedCallback) {
|
|
11990
|
+
this.i.connectedCallback();
|
|
11991
|
+
}
|
|
11633
11992
|
if (!this._attached) {
|
|
11634
11993
|
this._attached = true;
|
|
11635
11994
|
this._flushQueuedAttributes();
|
|
11636
11995
|
}
|
|
11637
11996
|
}
|
|
11997
|
+
disconnectedCallback() {
|
|
11998
|
+
if (super["disconnectedCallback"]) {
|
|
11999
|
+
super["disconnectedCallback"]();
|
|
12000
|
+
}
|
|
12001
|
+
if (this.i.disconnectedCallback) {
|
|
12002
|
+
this.i.disconnectedCallback();
|
|
12003
|
+
}
|
|
12004
|
+
if (this._attached) {
|
|
12005
|
+
this._attached = false;
|
|
12006
|
+
}
|
|
12007
|
+
}
|
|
11638
12008
|
static get observedAttributes() {
|
|
11639
12009
|
if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
|
|
11640
12010
|
let names = getAllPropertyNames(IgcToolActionNumberInputComponent);
|
|
@@ -11697,11 +12067,25 @@ let IgcToolActionIconButtonComponent = /*@__PURE__*/ (() => {
|
|
|
11697
12067
|
if (super["connectedCallback"]) {
|
|
11698
12068
|
super["connectedCallback"]();
|
|
11699
12069
|
}
|
|
12070
|
+
if (this.i.connectedCallback) {
|
|
12071
|
+
this.i.connectedCallback();
|
|
12072
|
+
}
|
|
11700
12073
|
if (!this._attached) {
|
|
11701
12074
|
this._attached = true;
|
|
11702
12075
|
this._flushQueuedAttributes();
|
|
11703
12076
|
}
|
|
11704
12077
|
}
|
|
12078
|
+
disconnectedCallback() {
|
|
12079
|
+
if (super["disconnectedCallback"]) {
|
|
12080
|
+
super["disconnectedCallback"]();
|
|
12081
|
+
}
|
|
12082
|
+
if (this.i.disconnectedCallback) {
|
|
12083
|
+
this.i.disconnectedCallback();
|
|
12084
|
+
}
|
|
12085
|
+
if (this._attached) {
|
|
12086
|
+
this._attached = false;
|
|
12087
|
+
}
|
|
12088
|
+
}
|
|
11705
12089
|
static get observedAttributes() {
|
|
11706
12090
|
if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
|
|
11707
12091
|
let names = getAllPropertyNames(IgcToolActionIconButtonComponent);
|
|
@@ -11758,11 +12142,25 @@ let IgcToolActionMenuBaseComponent = /*@__PURE__*/ (() => {
|
|
|
11758
12142
|
if (super["connectedCallback"]) {
|
|
11759
12143
|
super["connectedCallback"]();
|
|
11760
12144
|
}
|
|
12145
|
+
if (this.i.connectedCallback) {
|
|
12146
|
+
this.i.connectedCallback();
|
|
12147
|
+
}
|
|
11761
12148
|
if (!this._attached) {
|
|
11762
12149
|
this._attached = true;
|
|
11763
12150
|
this._flushQueuedAttributes();
|
|
11764
12151
|
}
|
|
11765
12152
|
}
|
|
12153
|
+
disconnectedCallback() {
|
|
12154
|
+
if (super["disconnectedCallback"]) {
|
|
12155
|
+
super["disconnectedCallback"]();
|
|
12156
|
+
}
|
|
12157
|
+
if (this.i.disconnectedCallback) {
|
|
12158
|
+
this.i.disconnectedCallback();
|
|
12159
|
+
}
|
|
12160
|
+
if (this._attached) {
|
|
12161
|
+
this._attached = false;
|
|
12162
|
+
}
|
|
12163
|
+
}
|
|
11766
12164
|
static get observedAttributes() {
|
|
11767
12165
|
if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
|
|
11768
12166
|
let names = getAllPropertyNames(IgcToolActionMenuBaseComponent);
|
|
@@ -11848,11 +12246,25 @@ let IgcToolActionIconMenuComponent = /*@__PURE__*/ (() => {
|
|
|
11848
12246
|
if (super["connectedCallback"]) {
|
|
11849
12247
|
super["connectedCallback"]();
|
|
11850
12248
|
}
|
|
12249
|
+
if (this.i.connectedCallback) {
|
|
12250
|
+
this.i.connectedCallback();
|
|
12251
|
+
}
|
|
11851
12252
|
if (!this._attached) {
|
|
11852
12253
|
this._attached = true;
|
|
11853
12254
|
this._flushQueuedAttributes();
|
|
11854
12255
|
}
|
|
11855
12256
|
}
|
|
12257
|
+
disconnectedCallback() {
|
|
12258
|
+
if (super["disconnectedCallback"]) {
|
|
12259
|
+
super["disconnectedCallback"]();
|
|
12260
|
+
}
|
|
12261
|
+
if (this.i.disconnectedCallback) {
|
|
12262
|
+
this.i.disconnectedCallback();
|
|
12263
|
+
}
|
|
12264
|
+
if (this._attached) {
|
|
12265
|
+
this._attached = false;
|
|
12266
|
+
}
|
|
12267
|
+
}
|
|
11856
12268
|
static get observedAttributes() {
|
|
11857
12269
|
if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
|
|
11858
12270
|
let names = getAllPropertyNames(IgcToolActionIconMenuComponent);
|
|
@@ -12034,6 +12446,174 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
12034
12446
|
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.
|
|
12035
12447
|
*/
|
|
12036
12448
|
|
|
12449
|
+
let IgcToolActionLabelComponent = /*@__PURE__*/ (() => {
|
|
12450
|
+
class IgcToolActionLabelComponent extends IgcToolActionComponent {
|
|
12451
|
+
constructor() {
|
|
12452
|
+
super();
|
|
12453
|
+
}
|
|
12454
|
+
createImplementation() {
|
|
12455
|
+
return new ToolActionLabel();
|
|
12456
|
+
}
|
|
12457
|
+
/**
|
|
12458
|
+
* @hidden
|
|
12459
|
+
*/
|
|
12460
|
+
get i() {
|
|
12461
|
+
return this._implementation;
|
|
12462
|
+
}
|
|
12463
|
+
connectedCallback() {
|
|
12464
|
+
if (super["connectedCallback"]) {
|
|
12465
|
+
super["connectedCallback"]();
|
|
12466
|
+
}
|
|
12467
|
+
if (this.i.connectedCallback) {
|
|
12468
|
+
this.i.connectedCallback();
|
|
12469
|
+
}
|
|
12470
|
+
if (!this._attached) {
|
|
12471
|
+
this._attached = true;
|
|
12472
|
+
this._flushQueuedAttributes();
|
|
12473
|
+
}
|
|
12474
|
+
}
|
|
12475
|
+
disconnectedCallback() {
|
|
12476
|
+
if (super["disconnectedCallback"]) {
|
|
12477
|
+
super["disconnectedCallback"]();
|
|
12478
|
+
}
|
|
12479
|
+
if (this.i.disconnectedCallback) {
|
|
12480
|
+
this.i.disconnectedCallback();
|
|
12481
|
+
}
|
|
12482
|
+
if (this._attached) {
|
|
12483
|
+
this._attached = false;
|
|
12484
|
+
}
|
|
12485
|
+
}
|
|
12486
|
+
static get observedAttributes() {
|
|
12487
|
+
if (IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent == null) {
|
|
12488
|
+
let names = getAllPropertyNames(IgcToolActionLabelComponent);
|
|
12489
|
+
for (let i = 0; i < names.length; i++) {
|
|
12490
|
+
names[i] = toSpinal(names[i]);
|
|
12491
|
+
}
|
|
12492
|
+
IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = names;
|
|
12493
|
+
}
|
|
12494
|
+
return IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent;
|
|
12495
|
+
}
|
|
12496
|
+
static register() {
|
|
12497
|
+
if (!IgcToolActionLabelComponent._isElementRegistered) {
|
|
12498
|
+
IgcToolActionLabelComponent._isElementRegistered = true;
|
|
12499
|
+
RegisterElementHelper.registerElement(IgcToolActionLabelComponent.htmlTagName, IgcToolActionLabelComponent);
|
|
12500
|
+
}
|
|
12501
|
+
}
|
|
12502
|
+
}
|
|
12503
|
+
IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = null;
|
|
12504
|
+
IgcToolActionLabelComponent.htmlTagName = "igc-tool-action-label";
|
|
12505
|
+
IgcToolActionLabelComponent._isElementRegistered = false;
|
|
12506
|
+
return IgcToolActionLabelComponent;
|
|
12507
|
+
})();
|
|
12508
|
+
|
|
12509
|
+
/*
|
|
12510
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
12511
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
12512
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
12513
|
+
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.
|
|
12514
|
+
*/
|
|
12515
|
+
class IgcToolActionLabelModule {
|
|
12516
|
+
static register() {
|
|
12517
|
+
IgcToolActionLabelComponent.register();
|
|
12518
|
+
TypeRegistrar.registerCons("IgcToolActionLabelComponent", IgcToolActionLabelComponent);
|
|
12519
|
+
TypeRegistrar.register("ToolActionLabel", ToolActionLabel.$type);
|
|
12520
|
+
}
|
|
12521
|
+
}
|
|
12522
|
+
|
|
12523
|
+
/*
|
|
12524
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
12525
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
12526
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
12527
|
+
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.
|
|
12528
|
+
*/
|
|
12529
|
+
|
|
12530
|
+
let IgcToolActionRadioComponent = /*@__PURE__*/ (() => {
|
|
12531
|
+
class IgcToolActionRadioComponent extends IgcToolActionComponent {
|
|
12532
|
+
constructor() {
|
|
12533
|
+
super();
|
|
12534
|
+
}
|
|
12535
|
+
createImplementation() {
|
|
12536
|
+
return new ToolActionRadio();
|
|
12537
|
+
}
|
|
12538
|
+
/**
|
|
12539
|
+
* @hidden
|
|
12540
|
+
*/
|
|
12541
|
+
get i() {
|
|
12542
|
+
return this._implementation;
|
|
12543
|
+
}
|
|
12544
|
+
connectedCallback() {
|
|
12545
|
+
if (super["connectedCallback"]) {
|
|
12546
|
+
super["connectedCallback"]();
|
|
12547
|
+
}
|
|
12548
|
+
if (this.i.connectedCallback) {
|
|
12549
|
+
this.i.connectedCallback();
|
|
12550
|
+
}
|
|
12551
|
+
if (!this._attached) {
|
|
12552
|
+
this._attached = true;
|
|
12553
|
+
this._flushQueuedAttributes();
|
|
12554
|
+
}
|
|
12555
|
+
}
|
|
12556
|
+
disconnectedCallback() {
|
|
12557
|
+
if (super["disconnectedCallback"]) {
|
|
12558
|
+
super["disconnectedCallback"]();
|
|
12559
|
+
}
|
|
12560
|
+
if (this.i.disconnectedCallback) {
|
|
12561
|
+
this.i.disconnectedCallback();
|
|
12562
|
+
}
|
|
12563
|
+
if (this._attached) {
|
|
12564
|
+
this._attached = false;
|
|
12565
|
+
}
|
|
12566
|
+
}
|
|
12567
|
+
static get observedAttributes() {
|
|
12568
|
+
if (IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent == null) {
|
|
12569
|
+
let names = getAllPropertyNames(IgcToolActionRadioComponent);
|
|
12570
|
+
for (let i = 0; i < names.length; i++) {
|
|
12571
|
+
names[i] = toSpinal(names[i]);
|
|
12572
|
+
}
|
|
12573
|
+
IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = names;
|
|
12574
|
+
}
|
|
12575
|
+
return IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent;
|
|
12576
|
+
}
|
|
12577
|
+
static register() {
|
|
12578
|
+
if (!IgcToolActionRadioComponent._isElementRegistered) {
|
|
12579
|
+
IgcToolActionRadioComponent._isElementRegistered = true;
|
|
12580
|
+
RegisterElementHelper.registerElement(IgcToolActionRadioComponent.htmlTagName, IgcToolActionRadioComponent);
|
|
12581
|
+
}
|
|
12582
|
+
}
|
|
12583
|
+
get radioGroup() {
|
|
12584
|
+
return this.i.bf;
|
|
12585
|
+
}
|
|
12586
|
+
set radioGroup(v) {
|
|
12587
|
+
this.i.bf = v;
|
|
12588
|
+
}
|
|
12589
|
+
}
|
|
12590
|
+
IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = null;
|
|
12591
|
+
IgcToolActionRadioComponent.htmlTagName = "igc-tool-action-radio";
|
|
12592
|
+
IgcToolActionRadioComponent._isElementRegistered = false;
|
|
12593
|
+
return IgcToolActionRadioComponent;
|
|
12594
|
+
})();
|
|
12595
|
+
|
|
12596
|
+
/*
|
|
12597
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
12598
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
12599
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
12600
|
+
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.
|
|
12601
|
+
*/
|
|
12602
|
+
class IgcToolActionRadioModule {
|
|
12603
|
+
static register() {
|
|
12604
|
+
IgcToolActionRadioComponent.register();
|
|
12605
|
+
TypeRegistrar.registerCons("IgcToolActionRadioComponent", IgcToolActionRadioComponent);
|
|
12606
|
+
TypeRegistrar.register("ToolActionRadio", ToolActionRadio.$type);
|
|
12607
|
+
}
|
|
12608
|
+
}
|
|
12609
|
+
|
|
12610
|
+
/*
|
|
12611
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
12612
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
12613
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
12614
|
+
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.
|
|
12615
|
+
*/
|
|
12616
|
+
|
|
12037
12617
|
let IgcToolActionSeparatorComponent = /*@__PURE__*/ (() => {
|
|
12038
12618
|
class IgcToolActionSeparatorComponent extends IgcToolActionComponent {
|
|
12039
12619
|
constructor() {
|
|
@@ -12052,11 +12632,25 @@ let IgcToolActionSeparatorComponent = /*@__PURE__*/ (() => {
|
|
|
12052
12632
|
if (super["connectedCallback"]) {
|
|
12053
12633
|
super["connectedCallback"]();
|
|
12054
12634
|
}
|
|
12635
|
+
if (this.i.connectedCallback) {
|
|
12636
|
+
this.i.connectedCallback();
|
|
12637
|
+
}
|
|
12055
12638
|
if (!this._attached) {
|
|
12056
12639
|
this._attached = true;
|
|
12057
12640
|
this._flushQueuedAttributes();
|
|
12058
12641
|
}
|
|
12059
12642
|
}
|
|
12643
|
+
disconnectedCallback() {
|
|
12644
|
+
if (super["disconnectedCallback"]) {
|
|
12645
|
+
super["disconnectedCallback"]();
|
|
12646
|
+
}
|
|
12647
|
+
if (this.i.disconnectedCallback) {
|
|
12648
|
+
this.i.disconnectedCallback();
|
|
12649
|
+
}
|
|
12650
|
+
if (this._attached) {
|
|
12651
|
+
this._attached = false;
|
|
12652
|
+
}
|
|
12653
|
+
}
|
|
12060
12654
|
static get observedAttributes() {
|
|
12061
12655
|
if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
|
|
12062
12656
|
let names = getAllPropertyNames(IgcToolActionSeparatorComponent);
|
|
@@ -12338,10 +12932,10 @@ class IgcPropertyEditorDataSource {
|
|
|
12338
12932
|
this.onImplementationCreated();
|
|
12339
12933
|
}
|
|
12340
12934
|
get descriptionType() {
|
|
12341
|
-
return this.i.
|
|
12935
|
+
return this.i.n;
|
|
12342
12936
|
}
|
|
12343
12937
|
set descriptionType(v) {
|
|
12344
|
-
this.i.
|
|
12938
|
+
this.i.n = v;
|
|
12345
12939
|
}
|
|
12346
12940
|
get context() {
|
|
12347
12941
|
return this.i.b;
|
|
@@ -12350,8 +12944,13 @@ class IgcPropertyEditorDataSource {
|
|
|
12350
12944
|
this.i.b = v;
|
|
12351
12945
|
}
|
|
12352
12946
|
findByName(name) {
|
|
12947
|
+
if (this.findEphemera) {
|
|
12948
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
12949
|
+
return this.findEphemera(name);
|
|
12950
|
+
}
|
|
12951
|
+
}
|
|
12353
12952
|
return null;
|
|
12354
12953
|
}
|
|
12355
12954
|
}
|
|
12356
12955
|
|
|
12357
|
-
export { ExpansionPanelUtilities, ExpansionPanelView, HorizontalPropertyEditorPanelDataSource, IExternalListPanel_$type, IExternalToolPanel_$type, IExternalToolbar_$type, IListPanelView_$type, IPropertyEditorPanelView_$type, IToolPanelView_$type, IToolbarView_$type, IgcHorizontalPropertyEditorPanelDataSource, IgcListPanelComponent, IgcListPanelContentRefreshedEventArgs, IgcListPanelItemModel, IgcListPanelModule, IgcListPanelTemplateHeightRequestedEventArgs, IgcListPanelTemplateItemUpdatingEventArgs, IgcListPanelTemplateWidthRequestedEventArgs, IgcOnClosedEventArgs, IgcOnCollapsedEventArgs, IgcOnExpandedEventArgs, IgcOnPopupEventArgs, IgcPopupComponent, IgcPopupModule, IgcPropertyEditorDataSource, IgcPropertyEditorDescriptionObject, IgcPropertyEditorDescriptionObjectCollection, IgcPropertyEditorPanelComponent, IgcPropertyEditorPanelModule, IgcPropertyEditorPropertyDescriptionButtonClickEventArgs, IgcPropertyEditorPropertyDescriptionChangedEventArgs, IgcPropertyEditorPropertyDescriptionCollection, IgcPropertyEditorPropertyDescriptionComponent, IgcPropertyEditorPropertyDescriptionModule, IgcPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, IgcToolActionCheckboxComponent, IgcToolActionCheckboxModule, IgcToolActionCollection, IgcToolActionComponent, IgcToolActionEventDetail, IgcToolActionEventDetailCollection, IgcToolActionGroupHeaderComponent, IgcToolActionGroupHeaderModule, IgcToolActionIconButtonComponent, IgcToolActionIconButtonModule, IgcToolActionIconMenuComponent, IgcToolActionIconMenuModule, IgcToolActionMenuBaseComponent, IgcToolActionModule, IgcToolActionNumberInputComponent, IgcToolActionNumberInputModule, IgcToolActionPerformedEventArgs, IgcToolActionSeparatorComponent, IgcToolActionSeparatorModule, IgcToolCommandEventArgs, IgcToolPanelComponent, IgcToolPanelContentRefreshedEventArgs, IgcToolPanelModule, IgcToolbarComponent, IgcToolbarModule, IgcXExpansionPanelComponent, IgcXExpansionPanelModule, ListPanel, ListPanelContentRefreshedEventArgs, ListPanelDataBindingEventArgs, ListPanelDataSourceNotificationBridge, ListPanelItemModel, ListPanelItemPresenter, ListPanelLayoutPanel, ListPanelOrientation, ListPanelOrientation_$type, ListPanelTemplateHeightRequestedEventArgs, ListPanelTemplateItemUpdatingEventArgs, ListPanelTemplateWidthRequestedEventArgs, ListPanelView, OnClosedEventArgs, OnCollapsedEventArgs, OnExpandedEventArgs, OnPopupEventArgs, Popup, PopupAlignment, PopupAlignment_$type, PopupDirection, PopupDirection_$type, PopupView, PopupVisualModelExport, Popup_InnerAnimationInfo, Popup_OuterAnimationInfo, PropertyEditorDataSource, PropertyEditorDescriptionObject, PropertyEditorDescriptionObjectCollection, PropertyEditorPanel, PropertyEditorPanelColumnDefinition, PropertyEditorPanelColumnFieldType_$type, PropertyEditorPanelColumnType_$type, PropertyEditorPanelDataBindingEventArgs, PropertyEditorPanelDropDownDataListItem, PropertyEditorPanelTemplateCellUpdatingEventArgs, PropertyEditorPanelView, PropertyEditorPropertyDescription, PropertyEditorPropertyDescriptionButtonClickEventArgs, PropertyEditorPropertyDescriptionChangedEventArgs, PropertyEditorPropertyDescriptionCollection, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, PropertyEditorTreeTransformer, PropertyEditorValueType, PropertyEditorValueType_$type, ToolAction, ToolActionCheckbox, ToolActionCollection, ToolActionEventDetail, ToolActionEventDetailCollection, ToolActionGroupHeader, ToolActionIconButton, ToolActionIconMenu, ToolActionMeasurementContext, ToolActionMenuBase, ToolActionNumberInput, ToolActionPerformedEventArgs, ToolActionSeparator, ToolCommandEventArgs, ToolPanel, ToolPanelContentRefreshedEventArgs, ToolPanelOrientation, ToolPanelOrientation_$type, ToolPanelView, Toolbar, ToolbarIconManager, ToolbarOrientation, ToolbarOrientation_$type, ToolbarView, XExpansionPanel };
|
|
12956
|
+
export { ExpansionPanelUtilities, ExpansionPanelView, HorizontalPropertyEditorPanelDataSource, IExternalListPanel_$type, IExternalToolPanel_$type, IExternalToolbar_$type, IListPanelView_$type, IPropertyEditorPanelView_$type, IToolPanelView_$type, IToolbarView_$type, IgcHorizontalPropertyEditorPanelDataSource, IgcListPanelComponent, IgcListPanelContentRefreshedEventArgs, IgcListPanelItemModel, IgcListPanelModule, IgcListPanelTemplateHeightRequestedEventArgs, IgcListPanelTemplateItemUpdatingEventArgs, IgcListPanelTemplateWidthRequestedEventArgs, IgcOnClosedEventArgs, IgcOnCollapsedEventArgs, IgcOnExpandedEventArgs, IgcOnPopupEventArgs, IgcPopupComponent, IgcPopupModule, IgcPropertyEditorDataSource, IgcPropertyEditorDescriptionObject, IgcPropertyEditorDescriptionObjectCollection, IgcPropertyEditorPanelComponent, IgcPropertyEditorPanelModule, IgcPropertyEditorPropertyDescriptionButtonClickEventArgs, IgcPropertyEditorPropertyDescriptionChangedEventArgs, IgcPropertyEditorPropertyDescriptionCollection, IgcPropertyEditorPropertyDescriptionComponent, IgcPropertyEditorPropertyDescriptionModule, IgcPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, IgcToolActionCheckboxComponent, IgcToolActionCheckboxModule, IgcToolActionCollection, IgcToolActionComponent, IgcToolActionEventDetail, IgcToolActionEventDetailCollection, IgcToolActionGroupHeaderComponent, IgcToolActionGroupHeaderModule, IgcToolActionIconButtonComponent, IgcToolActionIconButtonModule, IgcToolActionIconMenuComponent, IgcToolActionIconMenuModule, IgcToolActionLabelComponent, IgcToolActionLabelModule, IgcToolActionMenuBaseComponent, IgcToolActionModule, IgcToolActionNumberInputComponent, IgcToolActionNumberInputModule, IgcToolActionPerformedEventArgs, IgcToolActionRadioComponent, IgcToolActionRadioModule, IgcToolActionSeparatorComponent, IgcToolActionSeparatorModule, IgcToolCommandEventArgs, IgcToolPanelComponent, IgcToolPanelContentRefreshedEventArgs, IgcToolPanelModule, IgcToolbarComponent, IgcToolbarModule, IgcXExpansionPanelComponent, IgcXExpansionPanelModule, ListPanel, ListPanelContentRefreshedEventArgs, ListPanelDataBindingEventArgs, ListPanelDataSourceNotificationBridge, ListPanelItemModel, ListPanelItemPresenter, ListPanelLayoutPanel, ListPanelOrientation, ListPanelOrientation_$type, ListPanelTemplateHeightRequestedEventArgs, ListPanelTemplateItemUpdatingEventArgs, ListPanelTemplateWidthRequestedEventArgs, ListPanelView, OnClosedEventArgs, OnCollapsedEventArgs, OnExpandedEventArgs, OnPopupEventArgs, Popup, PopupAlignment, PopupAlignment_$type, PopupDirection, PopupDirection_$type, PopupView, PopupVisualModelExport, Popup_InnerAnimationInfo, Popup_OuterAnimationInfo, PropertyEditorDataSource, PropertyEditorDescriptionObject, PropertyEditorDescriptionObjectCollection, PropertyEditorPanel, PropertyEditorPanelColumnDefinition, PropertyEditorPanelColumnFieldType_$type, PropertyEditorPanelColumnType_$type, PropertyEditorPanelDataBindingEventArgs, PropertyEditorPanelDropDownDataListItem, PropertyEditorPanelTemplateCellUpdatingEventArgs, PropertyEditorPanelView, PropertyEditorPropertyDescription, PropertyEditorPropertyDescriptionButtonClickEventArgs, PropertyEditorPropertyDescriptionChangedEventArgs, PropertyEditorPropertyDescriptionCollection, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, PropertyEditorTreeTransformer, PropertyEditorValueType, PropertyEditorValueType_$type, ToolAction, ToolActionCheckbox, ToolActionCollection, ToolActionEventDetail, ToolActionEventDetailCollection, ToolActionGroupHeader, ToolActionIconButton, ToolActionIconMenu, ToolActionLabel, ToolActionMeasurementContext, ToolActionMenuBase, ToolActionNumberInput, ToolActionPerformedEventArgs, ToolActionRadio, ToolActionSeparator, ToolCommandEventArgs, ToolPanel, ToolPanelContentRefreshedEventArgs, ToolPanelOrientation, ToolPanelOrientation_$type, ToolPanelView, Toolbar, ToolbarIconManager, ToolbarOrientation, ToolbarOrientation_$type, ToolbarView, XExpansionPanel };
|