igniteui-webcomponents-layouts 3.2.2 → 3.2.4
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 +6913 -146
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/IExternalListPanel.js +11 -0
- package/esm2015/lib/IExternalToolPanel.js +11 -0
- package/esm2015/lib/IExternalToolbar.js +11 -0
- package/esm2015/lib/IListPanelView.js +11 -0
- package/esm2015/lib/IPropertyEditorPanelView.js +11 -0
- package/esm2015/lib/IToolPanelView.js +11 -0
- package/esm2015/lib/IToolbarView.js +11 -0
- package/esm2015/lib/ListPanel.js +7 -0
- package/esm2015/lib/ListPanelContentRefreshedEventArgs.js +19 -0
- package/esm2015/lib/ListPanelDataBindingEventArgs.js +22 -0
- package/esm2015/lib/ListPanelDataSourceNotificationBridge.js +7 -0
- package/esm2015/lib/ListPanelItemModel.js +62 -0
- package/esm2015/lib/ListPanelItemPresenter.js +20 -0
- package/esm2015/lib/ListPanelLayoutPanel.js +7 -0
- package/esm2015/lib/ListPanelOrientation.js +16 -0
- package/esm2015/lib/ListPanelTemplateHeightRequestedEventArgs.js +22 -0
- package/esm2015/lib/ListPanelTemplateItemUpdatingEventArgs.js +22 -0
- package/esm2015/lib/ListPanelTemplateWidthRequestedEventArgs.js +22 -0
- package/esm2015/lib/ListPanelView.js +7 -0
- package/esm2015/lib/ListPanelView_combined.js +972 -0
- package/esm2015/lib/PropertyEditorPanelView_combined.js +100 -100
- package/esm2015/lib/PropertyEditorTreeTransformer.js +8 -8
- package/esm2015/lib/ToolAction.js +7 -0
- package/esm2015/lib/ToolActionCheckbox.js +7 -0
- package/esm2015/lib/ToolActionCollection.js +7 -0
- package/esm2015/lib/ToolActionEventDetail.js +7 -0
- package/esm2015/lib/ToolActionEventDetailCollection.js +7 -0
- package/esm2015/lib/ToolActionGroupHeader.js +7 -0
- package/esm2015/lib/ToolActionIconButton.js +7 -0
- package/esm2015/lib/ToolActionIconMenu.js +7 -0
- package/esm2015/lib/ToolActionMeasurementContext.js +31 -0
- package/esm2015/lib/ToolActionMenuBase.js +7 -0
- package/esm2015/lib/ToolActionNumberInput.js +7 -0
- package/esm2015/lib/ToolActionPerformedEventArgs.js +7 -0
- package/esm2015/lib/ToolActionSeparator.js +7 -0
- package/esm2015/lib/ToolCommandEventArgs.js +20 -0
- package/esm2015/lib/ToolPanel.js +7 -0
- package/esm2015/lib/ToolPanelContentRefreshedEventArgs.js +19 -0
- package/esm2015/lib/ToolPanelOrientation.js +16 -0
- package/esm2015/lib/ToolPanelView.js +7 -0
- package/esm2015/lib/ToolPanelView_combined.js +1515 -0
- package/esm2015/lib/Toolbar.js +7 -0
- package/esm2015/lib/ToolbarIconManager.js +40 -0
- package/esm2015/lib/ToolbarOrientation.js +16 -0
- package/esm2015/lib/ToolbarView.js +7 -0
- package/esm2015/lib/ToolbarView_combined.js +387 -0
- package/esm2015/lib/igc-list-panel-component.js +457 -0
- package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
- package/esm2015/lib/igc-list-panel-item-model.js +52 -0
- package/esm2015/lib/igc-list-panel-module.js +17 -0
- package/esm2015/lib/igc-list-panel-template-height-requested-event-args.js +42 -0
- package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +45 -0
- package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
- package/esm2015/lib/igc-property-editor-panel-component.js +1 -5
- package/esm2015/lib/igc-tool-action-checkbox-component.js +49 -0
- package/esm2015/lib/igc-tool-action-checkbox-module.js +16 -0
- package/esm2015/lib/igc-tool-action-collection.js +48 -0
- package/esm2015/lib/igc-tool-action-component.js +312 -0
- package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
- package/esm2015/lib/igc-tool-action-event-detail.js +85 -0
- package/esm2015/lib/igc-tool-action-group-header-component.js +49 -0
- package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-button-component.js +49 -0
- package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +49 -0
- package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -0
- package/esm2015/lib/igc-tool-action-menu-base-component.js +89 -0
- package/esm2015/lib/igc-tool-action-module.js +16 -0
- package/esm2015/lib/igc-tool-action-number-input-component.js +49 -0
- package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
- package/esm2015/lib/igc-tool-action-performed-event-args.js +80 -0
- package/esm2015/lib/igc-tool-action-separator-component.js +49 -0
- package/esm2015/lib/igc-tool-action-separator-module.js +16 -0
- package/esm2015/lib/igc-tool-command-event-args.js +30 -0
- package/esm2015/lib/igc-tool-panel-component.js +379 -0
- package/esm2015/lib/igc-tool-panel-content-refreshed-event-args.js +24 -0
- package/esm2015/lib/igc-tool-panel-module.js +29 -0
- package/esm2015/lib/igc-toolbar-component.js +412 -0
- package/esm2015/lib/igc-toolbar-module.js +19 -0
- package/esm2015/public_api.js +73 -0
- package/esm5/lib/IExternalListPanel.js +11 -0
- package/esm5/lib/IExternalToolPanel.js +11 -0
- package/esm5/lib/IExternalToolbar.js +11 -0
- package/esm5/lib/IListPanelView.js +11 -0
- package/esm5/lib/IPropertyEditorPanelView.js +11 -0
- package/esm5/lib/IToolPanelView.js +11 -0
- package/esm5/lib/IToolbarView.js +11 -0
- package/esm5/lib/ListPanel.js +7 -0
- package/esm5/lib/ListPanelContentRefreshedEventArgs.js +20 -0
- package/esm5/lib/ListPanelDataBindingEventArgs.js +24 -0
- package/esm5/lib/ListPanelDataSourceNotificationBridge.js +7 -0
- package/esm5/lib/ListPanelItemModel.js +80 -0
- package/esm5/lib/ListPanelItemPresenter.js +22 -0
- package/esm5/lib/ListPanelLayoutPanel.js +7 -0
- package/esm5/lib/ListPanelOrientation.js +16 -0
- package/esm5/lib/ListPanelTemplateHeightRequestedEventArgs.js +24 -0
- package/esm5/lib/ListPanelTemplateItemUpdatingEventArgs.js +24 -0
- package/esm5/lib/ListPanelTemplateWidthRequestedEventArgs.js +24 -0
- package/esm5/lib/ListPanelView.js +7 -0
- package/esm5/lib/ListPanelView_combined.js +1045 -0
- package/esm5/lib/PropertyEditorPanelView_combined.js +100 -100
- package/esm5/lib/PropertyEditorTreeTransformer.js +8 -8
- package/esm5/lib/ToolAction.js +7 -0
- package/esm5/lib/ToolActionCheckbox.js +7 -0
- package/esm5/lib/ToolActionCollection.js +7 -0
- package/esm5/lib/ToolActionEventDetail.js +7 -0
- package/esm5/lib/ToolActionEventDetailCollection.js +7 -0
- package/esm5/lib/ToolActionGroupHeader.js +7 -0
- package/esm5/lib/ToolActionIconButton.js +7 -0
- package/esm5/lib/ToolActionIconMenu.js +7 -0
- package/esm5/lib/ToolActionMeasurementContext.js +33 -0
- package/esm5/lib/ToolActionMenuBase.js +7 -0
- package/esm5/lib/ToolActionNumberInput.js +7 -0
- package/esm5/lib/ToolActionPerformedEventArgs.js +7 -0
- package/esm5/lib/ToolActionSeparator.js +7 -0
- package/esm5/lib/ToolCommandEventArgs.js +22 -0
- package/esm5/lib/ToolPanel.js +7 -0
- package/esm5/lib/ToolPanelContentRefreshedEventArgs.js +20 -0
- package/esm5/lib/ToolPanelOrientation.js +16 -0
- package/esm5/lib/ToolPanelView.js +7 -0
- package/esm5/lib/ToolPanelView_combined.js +1663 -0
- package/esm5/lib/Toolbar.js +7 -0
- package/esm5/lib/ToolbarIconManager.js +44 -0
- package/esm5/lib/ToolbarOrientation.js +16 -0
- package/esm5/lib/ToolbarView.js +7 -0
- package/esm5/lib/ToolbarView_combined.js +459 -0
- package/esm5/lib/igc-list-panel-component.js +535 -0
- package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
- package/esm5/lib/igc-list-panel-item-model.js +74 -0
- package/esm5/lib/igc-list-panel-module.js +21 -0
- package/esm5/lib/igc-list-panel-template-height-requested-event-args.js +60 -0
- package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +59 -0
- package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
- package/esm5/lib/igc-property-editor-panel-component.js +1 -5
- package/esm5/lib/igc-tool-action-checkbox-component.js +58 -0
- package/esm5/lib/igc-tool-action-checkbox-module.js +20 -0
- package/esm5/lib/igc-tool-action-collection.js +53 -0
- package/esm5/lib/igc-tool-action-component.js +388 -0
- package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
- package/esm5/lib/igc-tool-action-event-detail.js +119 -0
- package/esm5/lib/igc-tool-action-group-header-component.js +58 -0
- package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-button-component.js +58 -0
- package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-menu-component.js +58 -0
- package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -0
- package/esm5/lib/igc-tool-action-menu-base-component.js +103 -0
- package/esm5/lib/igc-tool-action-module.js +20 -0
- package/esm5/lib/igc-tool-action-number-input-component.js +58 -0
- package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
- package/esm5/lib/igc-tool-action-performed-event-args.js +98 -0
- package/esm5/lib/igc-tool-action-separator-component.js +58 -0
- package/esm5/lib/igc-tool-action-separator-module.js +20 -0
- package/esm5/lib/igc-tool-command-event-args.js +40 -0
- package/esm5/lib/igc-tool-panel-component.js +449 -0
- package/esm5/lib/igc-tool-panel-content-refreshed-event-args.js +30 -0
- package/esm5/lib/igc-tool-panel-module.js +33 -0
- package/esm5/lib/igc-toolbar-component.js +484 -0
- package/esm5/lib/igc-toolbar-module.js +23 -0
- package/esm5/public_api.js +73 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +6038 -148
- package/fesm5/igniteui-webcomponents-layouts.js +6839 -148
- package/lib/IExternalListPanel.d.ts +13 -0
- package/lib/IExternalToolPanel.d.ts +13 -0
- package/lib/IExternalToolbar.d.ts +13 -0
- package/lib/IListPanelView.d.ts +25 -0
- package/lib/IPropertyEditorPanelView.d.ts +26 -0
- package/lib/IToolPanelView.d.ts +25 -0
- package/lib/IToolbarView.d.ts +25 -0
- package/lib/ListPanel.d.ts +1 -0
- package/lib/ListPanelContentRefreshedEventArgs.d.ts +8 -0
- package/lib/ListPanelDataBindingEventArgs.d.ts +10 -0
- package/lib/ListPanelDataSourceNotificationBridge.d.ts +1 -0
- package/lib/ListPanelItemModel.d.ts +22 -0
- package/lib/ListPanelItemPresenter.d.ts +9 -0
- package/lib/ListPanelLayoutPanel.d.ts +1 -0
- package/lib/ListPanelOrientation.d.ts +9 -0
- package/lib/ListPanelTemplateHeightRequestedEventArgs.d.ts +10 -0
- package/lib/ListPanelTemplateItemUpdatingEventArgs.d.ts +12 -0
- package/lib/ListPanelTemplateWidthRequestedEventArgs.d.ts +10 -0
- package/lib/ListPanelView.d.ts +1 -0
- package/lib/ListPanelView_combined.d.ts +197 -0
- package/lib/PropertyEditorPanelView_combined.d.ts +1 -1
- package/lib/ToolAction.d.ts +1 -0
- package/lib/ToolActionCheckbox.d.ts +1 -0
- package/lib/ToolActionCollection.d.ts +1 -0
- package/lib/ToolActionEventDetail.d.ts +1 -0
- package/lib/ToolActionEventDetailCollection.d.ts +1 -0
- package/lib/ToolActionGroupHeader.d.ts +1 -0
- package/lib/ToolActionIconButton.d.ts +1 -0
- package/lib/ToolActionIconMenu.d.ts +1 -0
- package/lib/ToolActionMeasurementContext.d.ts +16 -0
- package/lib/ToolActionMenuBase.d.ts +1 -0
- package/lib/ToolActionNumberInput.d.ts +1 -0
- package/lib/ToolActionPerformedEventArgs.d.ts +1 -0
- package/lib/ToolActionSeparator.d.ts +1 -0
- package/lib/ToolCommandEventArgs.d.ts +10 -0
- package/lib/ToolPanel.d.ts +1 -0
- package/lib/ToolPanelContentRefreshedEventArgs.d.ts +8 -0
- package/lib/ToolPanelOrientation.d.ts +9 -0
- package/lib/ToolPanelView.d.ts +1 -0
- package/lib/ToolPanelView_combined.d.ts +328 -0
- package/lib/Toolbar.d.ts +1 -0
- package/lib/ToolbarIconManager.d.ts +10 -0
- package/lib/ToolbarOrientation.d.ts +9 -0
- package/lib/ToolbarView.d.ts +1 -0
- package/lib/ToolbarView_combined.d.ts +98 -0
- package/lib/igc-list-panel-component.d.ts +122 -0
- package/lib/igc-list-panel-content-refreshed-event-args.d.ts +12 -0
- package/lib/igc-list-panel-item-model.d.ts +17 -0
- package/lib/igc-list-panel-module.d.ts +3 -0
- package/lib/igc-list-panel-template-height-requested-event-args.d.ts +15 -0
- package/lib/igc-list-panel-template-item-updating-event-args.d.ts +15 -0
- package/lib/igc-list-panel-template-width-requested-event-args.d.ts +15 -0
- package/lib/igc-property-editor-panel-component.d.ts +0 -2
- package/lib/igc-tool-action-checkbox-component.d.ts +16 -0
- package/lib/igc-tool-action-checkbox-module.d.ts +3 -0
- package/lib/igc-tool-action-collection.d.ts +8 -0
- package/lib/igc-tool-action-component.d.ts +64 -0
- package/lib/igc-tool-action-event-detail-collection.d.ts +8 -0
- package/lib/igc-tool-action-event-detail.d.ts +22 -0
- package/lib/igc-tool-action-group-header-component.d.ts +16 -0
- package/lib/igc-tool-action-group-header-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-button-component.d.ts +16 -0
- package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-menu-component.d.ts +16 -0
- package/lib/igc-tool-action-icon-menu-module.d.ts +3 -0
- package/lib/igc-tool-action-menu-base-component.d.ts +24 -0
- package/lib/igc-tool-action-module.d.ts +3 -0
- package/lib/igc-tool-action-number-input-component.d.ts +16 -0
- package/lib/igc-tool-action-number-input-module.d.ts +3 -0
- package/lib/igc-tool-action-performed-event-args.d.ts +18 -0
- package/lib/igc-tool-action-separator-component.d.ts +16 -0
- package/lib/igc-tool-action-separator-module.d.ts +3 -0
- package/lib/igc-tool-command-event-args.d.ts +14 -0
- package/lib/igc-tool-panel-component.d.ts +83 -0
- package/lib/igc-tool-panel-content-refreshed-event-args.d.ts +12 -0
- package/lib/igc-tool-panel-module.d.ts +3 -0
- package/lib/igc-toolbar-component.d.ts +89 -0
- package/lib/igc-toolbar-module.d.ts +3 -0
- package/package.json +3 -3
- package/public_api.d.ts +73 -0
|
@@ -80,10 +80,10 @@ export let PropertyEditorPanelView = /*@__PURE__*/ (() => {
|
|
|
80
80
|
this.e = new RenderingContext(new CanvasViewRenderer(), this.i.get2DCanvasContext(this.l));
|
|
81
81
|
this.k = this.i.createElement("div");
|
|
82
82
|
this.y();
|
|
83
|
-
NativeUIComponent.
|
|
83
|
+
NativeUIComponent.aa(this.p(), 7, (b) => {
|
|
84
84
|
let c = b;
|
|
85
85
|
this.a.dh(c, this.n);
|
|
86
|
-
this.i.append(c.
|
|
86
|
+
this.i.append(c.v);
|
|
87
87
|
});
|
|
88
88
|
let b = Math.round(a.rootWrapper.width());
|
|
89
89
|
let c = Math.round(a.rootWrapper.height());
|
|
@@ -190,14 +190,14 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
190
190
|
this.bo = 0;
|
|
191
191
|
this.bl = -1;
|
|
192
192
|
this.k = null;
|
|
193
|
-
NativeUIInputsFactory.
|
|
193
|
+
NativeUIInputsFactory.m();
|
|
194
194
|
this.ap = new ObservableCollection$1(PropertyEditorPanelColumnDefinition.$, 0);
|
|
195
195
|
let a = new PropertyEditorPanelView();
|
|
196
196
|
a.a = this;
|
|
197
|
-
let b = this.properties;
|
|
198
|
-
b.collectionChanged = delegateCombine(b.collectionChanged, runOn(this, this.dx));
|
|
199
197
|
this.l = a;
|
|
200
198
|
this.l.v();
|
|
199
|
+
let b = this.properties;
|
|
200
|
+
b.collectionChanged = delegateCombine(b.collectionChanged, runOn(this, this.dx));
|
|
201
201
|
}
|
|
202
202
|
get x() {
|
|
203
203
|
if (this.w == null) {
|
|
@@ -530,11 +530,11 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
530
530
|
for (let b = 0; b < a; b++) {
|
|
531
531
|
let c = b;
|
|
532
532
|
let d = this.c.getItemAtIndex(b);
|
|
533
|
-
if (this.v.
|
|
534
|
-
this.v.
|
|
533
|
+
if (this.v.a3 < c + 1) {
|
|
534
|
+
this.v.a5(c, 1, this.ar);
|
|
535
535
|
}
|
|
536
536
|
else {
|
|
537
|
-
this.v.
|
|
537
|
+
this.v.bb(c, 1, this.ar);
|
|
538
538
|
}
|
|
539
539
|
if (this.an.count < c + 1) {
|
|
540
540
|
this.an.add(new List$1(NativeUIComponent.$, 0));
|
|
@@ -543,24 +543,24 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
543
543
|
for (let f = 0; f < this.ap.count; f++) {
|
|
544
544
|
let g = this.ap._inner[f];
|
|
545
545
|
if (e.count < f + 1) {
|
|
546
|
-
NativeUIComponent.
|
|
546
|
+
NativeUIComponent.ac(this.l.p(), 0, (h) => {
|
|
547
547
|
let i = h;
|
|
548
548
|
i.e = 1;
|
|
549
549
|
if (g.a == 0) {
|
|
550
550
|
i.d = 2;
|
|
551
551
|
}
|
|
552
|
-
i.
|
|
553
|
-
this.v.
|
|
554
|
-
this.v.
|
|
555
|
-
this.v.
|
|
552
|
+
i.ar = new Thickness(1, 5, 5, 5, 0);
|
|
553
|
+
this.v.aw(i);
|
|
554
|
+
this.v.a9(i, c);
|
|
555
|
+
this.v.a8(i, f);
|
|
556
556
|
e.add(i);
|
|
557
557
|
});
|
|
558
558
|
}
|
|
559
|
-
if (this.v.
|
|
560
|
-
this.v.
|
|
559
|
+
if (this.v.a0 < f + 1) {
|
|
560
|
+
this.v.a4(f, 1, g.h);
|
|
561
561
|
}
|
|
562
562
|
else {
|
|
563
|
-
this.v.
|
|
563
|
+
this.v.ba(f, 1, g.h);
|
|
564
564
|
}
|
|
565
565
|
let h = e._inner[f];
|
|
566
566
|
let i = "PropertyPath";
|
|
@@ -579,23 +579,23 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
579
579
|
}
|
|
580
580
|
if (l == null) {
|
|
581
581
|
let m = h;
|
|
582
|
-
m.
|
|
582
|
+
m.a0 = null;
|
|
583
583
|
}
|
|
584
584
|
}
|
|
585
585
|
}
|
|
586
586
|
let n = new HashSet$1(NativeUIComponent.$, 0);
|
|
587
|
-
for (let o = this.v.
|
|
588
|
-
let p = this.v.
|
|
589
|
-
let q = this.v.
|
|
590
|
-
let r = this.v.
|
|
587
|
+
for (let o = this.v.av - 1; o >= 0; o--) {
|
|
588
|
+
let p = this.v.au(o);
|
|
589
|
+
let q = this.v.a2(p);
|
|
590
|
+
let r = this.v.a1(p);
|
|
591
591
|
if ((q + 1) > a || (r + 1) > this.ap.count) {
|
|
592
592
|
n.add_1(p);
|
|
593
593
|
}
|
|
594
594
|
}
|
|
595
|
-
for (let s = this.v.
|
|
596
|
-
let t = this.v.
|
|
595
|
+
for (let s = this.v.av - 1; s >= 0; s--) {
|
|
596
|
+
let t = this.v.au(s);
|
|
597
597
|
if (n.contains(t)) {
|
|
598
|
-
this.v.
|
|
598
|
+
this.v.ay(s);
|
|
599
599
|
}
|
|
600
600
|
}
|
|
601
601
|
for (let u = this.an.count - 1; u >= 0; u--) {
|
|
@@ -609,11 +609,11 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
609
609
|
this.an.removeAt(u);
|
|
610
610
|
}
|
|
611
611
|
}
|
|
612
|
-
while (this.v.
|
|
613
|
-
this.v.
|
|
612
|
+
while (this.v.a3 > a) {
|
|
613
|
+
this.v.a7(this.v.a3 - 1);
|
|
614
614
|
}
|
|
615
|
-
while (this.v.
|
|
616
|
-
this.v.
|
|
615
|
+
while (this.v.a0 > this.ap.count) {
|
|
616
|
+
this.v.a6(this.v.a0 - 1);
|
|
617
617
|
}
|
|
618
618
|
}
|
|
619
619
|
dw(a, b) {
|
|
@@ -1062,34 +1062,34 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1062
1062
|
}
|
|
1063
1063
|
c7(a, b) {
|
|
1064
1064
|
this.cq(b, (c, d) => {
|
|
1065
|
-
c.
|
|
1065
|
+
c.at = this.u();
|
|
1066
1066
|
c.e = 1;
|
|
1067
1067
|
let e = this.m(a, b.b, b.c);
|
|
1068
|
-
c.
|
|
1069
|
-
c.
|
|
1068
|
+
c.w = e;
|
|
1069
|
+
c.au = this.b5(e);
|
|
1070
1070
|
});
|
|
1071
1071
|
}
|
|
1072
1072
|
c6(a, b) {
|
|
1073
1073
|
this.cp(b, (c, d) => {
|
|
1074
1074
|
c.e = 1;
|
|
1075
|
-
c.
|
|
1076
|
-
c.
|
|
1075
|
+
c.ax = 1;
|
|
1076
|
+
c.au = 2;
|
|
1077
1077
|
let e = this.m(a, b.b, b.c);
|
|
1078
|
-
c.
|
|
1079
|
-
c.
|
|
1078
|
+
c.w = e;
|
|
1079
|
+
c.ay = (e.ad != null ? e.ad.toString() : "");
|
|
1080
1080
|
if (d) {
|
|
1081
|
-
c.
|
|
1081
|
+
c.aw = runOn(this, this.di);
|
|
1082
1082
|
}
|
|
1083
1083
|
});
|
|
1084
1084
|
}
|
|
1085
1085
|
cq(a, b) {
|
|
1086
1086
|
let c = a.a;
|
|
1087
|
-
let d = c.
|
|
1087
|
+
let d = c.a0;
|
|
1088
1088
|
let e = false;
|
|
1089
1089
|
if (d == null || d.c != 3) {
|
|
1090
1090
|
e = true;
|
|
1091
|
-
NativeUIComponent.
|
|
1092
|
-
c.
|
|
1091
|
+
NativeUIComponent.aa(this.l.p(), 3, (f) => {
|
|
1092
|
+
c.a0 = f;
|
|
1093
1093
|
b(f, e);
|
|
1094
1094
|
});
|
|
1095
1095
|
return;
|
|
@@ -1098,12 +1098,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1098
1098
|
}
|
|
1099
1099
|
cp(a, b) {
|
|
1100
1100
|
let c = a.a;
|
|
1101
|
-
let d = c.
|
|
1101
|
+
let d = c.a0;
|
|
1102
1102
|
let e = false;
|
|
1103
1103
|
if (d == null || d.c != 2) {
|
|
1104
1104
|
e = true;
|
|
1105
|
-
NativeUIComponent.
|
|
1106
|
-
c.
|
|
1105
|
+
NativeUIComponent.aa(this.l.p(), 2, (f) => {
|
|
1106
|
+
c.a0 = f;
|
|
1107
1107
|
b(f, e);
|
|
1108
1108
|
});
|
|
1109
1109
|
return;
|
|
@@ -1112,12 +1112,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1112
1112
|
}
|
|
1113
1113
|
cm(a, b) {
|
|
1114
1114
|
let c = a.a;
|
|
1115
|
-
let d = c.
|
|
1115
|
+
let d = c.a0;
|
|
1116
1116
|
let e = false;
|
|
1117
1117
|
if (d == null || d.c != 1) {
|
|
1118
1118
|
e = true;
|
|
1119
|
-
NativeUIComponent.
|
|
1120
|
-
c.
|
|
1119
|
+
NativeUIComponent.aa(this.l.p(), 1, (f) => {
|
|
1120
|
+
c.a0 = f;
|
|
1121
1121
|
b(f, e);
|
|
1122
1122
|
});
|
|
1123
1123
|
return;
|
|
@@ -1126,12 +1126,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1126
1126
|
}
|
|
1127
1127
|
cr(a, b) {
|
|
1128
1128
|
let c = a.a;
|
|
1129
|
-
let d = c.
|
|
1129
|
+
let d = c.a0;
|
|
1130
1130
|
let e = false;
|
|
1131
1131
|
if (d == null || d.c != 5) {
|
|
1132
1132
|
e = true;
|
|
1133
|
-
NativeUIComponent.
|
|
1134
|
-
c.
|
|
1133
|
+
NativeUIComponent.aa(this.l.p(), 5, (f) => {
|
|
1134
|
+
c.a0 = f;
|
|
1135
1135
|
b(f, e);
|
|
1136
1136
|
});
|
|
1137
1137
|
return;
|
|
@@ -1140,12 +1140,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1140
1140
|
}
|
|
1141
1141
|
co(a, b) {
|
|
1142
1142
|
let c = a.a;
|
|
1143
|
-
let d = c.
|
|
1143
|
+
let d = c.a0;
|
|
1144
1144
|
let e = false;
|
|
1145
1145
|
if (d == null || d.c != 4) {
|
|
1146
1146
|
e = true;
|
|
1147
|
-
NativeUIComponent.
|
|
1148
|
-
c.
|
|
1147
|
+
NativeUIComponent.aa(this.l.p(), 4, (f) => {
|
|
1148
|
+
c.a0 = f;
|
|
1149
1149
|
b(f, e);
|
|
1150
1150
|
});
|
|
1151
1151
|
return;
|
|
@@ -1154,12 +1154,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1154
1154
|
}
|
|
1155
1155
|
cn(a, b) {
|
|
1156
1156
|
let c = a.a;
|
|
1157
|
-
let d = c.
|
|
1157
|
+
let d = c.a0;
|
|
1158
1158
|
let e = false;
|
|
1159
1159
|
if (d == null || d.c != 6) {
|
|
1160
1160
|
e = true;
|
|
1161
|
-
NativeUIComponent.
|
|
1162
|
-
c.
|
|
1161
|
+
NativeUIComponent.aa(this.l.p(), 6, (f) => {
|
|
1162
|
+
c.a0 = f;
|
|
1163
1163
|
b(f, e);
|
|
1164
1164
|
});
|
|
1165
1165
|
return;
|
|
@@ -1169,18 +1169,18 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1169
1169
|
cw(a, b) {
|
|
1170
1170
|
this.cm(b, (c, d) => {
|
|
1171
1171
|
c.e = 1;
|
|
1172
|
-
if (c.
|
|
1173
|
-
c.
|
|
1172
|
+
if (c.av != 2) {
|
|
1173
|
+
c.av = 2;
|
|
1174
1174
|
}
|
|
1175
1175
|
let e = this.m(a, b.b, b.c);
|
|
1176
|
-
c.
|
|
1176
|
+
c.w = e;
|
|
1177
1177
|
let f = e.ad;
|
|
1178
1178
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1179
1179
|
f = e.ad.toString();
|
|
1180
1180
|
}
|
|
1181
|
-
c.
|
|
1181
|
+
c.aw = f;
|
|
1182
1182
|
if (d) {
|
|
1183
|
-
c.
|
|
1183
|
+
c.au = runOn(this, this.cd);
|
|
1184
1184
|
}
|
|
1185
1185
|
});
|
|
1186
1186
|
}
|
|
@@ -1188,7 +1188,7 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1188
1188
|
this.cr(b, (c, d) => {
|
|
1189
1189
|
c.e = 1;
|
|
1190
1190
|
let e = this.m(a, b.b, b.c);
|
|
1191
|
-
c.
|
|
1191
|
+
c.w = e;
|
|
1192
1192
|
let f = e.ad;
|
|
1193
1193
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1194
1194
|
f = e.ad;
|
|
@@ -1202,79 +1202,79 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1202
1202
|
if (f == null) {
|
|
1203
1203
|
f = 0;
|
|
1204
1204
|
}
|
|
1205
|
-
c.
|
|
1205
|
+
c.a0 = f;
|
|
1206
1206
|
if (!isNaN_(e.z)) {
|
|
1207
|
-
c.
|
|
1207
|
+
c.ay = e.z;
|
|
1208
1208
|
}
|
|
1209
1209
|
else {
|
|
1210
|
-
c.
|
|
1210
|
+
c.ay = 0;
|
|
1211
1211
|
}
|
|
1212
1212
|
if (!isNaN_(e.y)) {
|
|
1213
|
-
c.
|
|
1213
|
+
c.ax = e.y;
|
|
1214
1214
|
}
|
|
1215
1215
|
else {
|
|
1216
|
-
c.
|
|
1216
|
+
c.ax = 100;
|
|
1217
1217
|
}
|
|
1218
1218
|
if (!isNaN_(e.aa)) {
|
|
1219
|
-
c.
|
|
1219
|
+
c.az = e.aa;
|
|
1220
1220
|
}
|
|
1221
1221
|
else {
|
|
1222
|
-
c.
|
|
1222
|
+
c.az = 1;
|
|
1223
1223
|
}
|
|
1224
1224
|
if (d) {
|
|
1225
|
-
c.
|
|
1225
|
+
c.aw = runOn(this, this.d3);
|
|
1226
1226
|
}
|
|
1227
1227
|
});
|
|
1228
1228
|
}
|
|
1229
1229
|
d3(a, b) {
|
|
1230
1230
|
let c = a;
|
|
1231
|
-
let d = c.
|
|
1231
|
+
let d = c.w;
|
|
1232
1232
|
this.af = true;
|
|
1233
|
-
d.ad = c.
|
|
1233
|
+
d.ad = c.a0;
|
|
1234
1234
|
this.af = false;
|
|
1235
1235
|
this.dv(d);
|
|
1236
1236
|
}
|
|
1237
1237
|
c3(a, b) {
|
|
1238
1238
|
this.co(b, (c, d) => {
|
|
1239
1239
|
c.e = 1;
|
|
1240
|
-
if (c.
|
|
1241
|
-
c.
|
|
1240
|
+
if (c.at != 2) {
|
|
1241
|
+
c.at = 2;
|
|
1242
1242
|
}
|
|
1243
1243
|
let e = this.m(a, b.b, b.c);
|
|
1244
|
-
if (c.
|
|
1244
|
+
if (c.w != e) {
|
|
1245
1245
|
{
|
|
1246
|
-
c.
|
|
1246
|
+
c.av = null;
|
|
1247
1247
|
}
|
|
1248
|
-
c.
|
|
1249
|
-
c.
|
|
1250
|
-
c.
|
|
1251
|
-
if (e.ad != c.
|
|
1248
|
+
c.w = e;
|
|
1249
|
+
c.ax = null;
|
|
1250
|
+
c.aw = this.b(this.a(e));
|
|
1251
|
+
if (e.ad != c.ax) {
|
|
1252
1252
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1253
|
-
c.
|
|
1253
|
+
c.ax = e.ad.toString();
|
|
1254
1254
|
}
|
|
1255
1255
|
else {
|
|
1256
|
-
c.
|
|
1256
|
+
c.ax = e.ad;
|
|
1257
1257
|
}
|
|
1258
1258
|
}
|
|
1259
1259
|
{
|
|
1260
|
-
c.
|
|
1260
|
+
c.av = runOn(this, this.ch);
|
|
1261
1261
|
}
|
|
1262
1262
|
}
|
|
1263
1263
|
else {
|
|
1264
|
-
if (e.ad != c.
|
|
1264
|
+
if (e.ad != c.ax) {
|
|
1265
1265
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1266
|
-
c.
|
|
1266
|
+
c.ax = e.ad.toString();
|
|
1267
1267
|
}
|
|
1268
1268
|
else {
|
|
1269
|
-
c.
|
|
1269
|
+
c.ax = e.ad;
|
|
1270
1270
|
}
|
|
1271
1271
|
}
|
|
1272
1272
|
}
|
|
1273
1273
|
if (d) {
|
|
1274
|
-
if (c.
|
|
1275
|
-
c.
|
|
1274
|
+
if (c.av == null) {
|
|
1275
|
+
c.av = runOn(this, this.ch);
|
|
1276
1276
|
}
|
|
1277
|
-
c.
|
|
1277
|
+
c.aj = BrushUtil.g(255, 255, 255, 255);
|
|
1278
1278
|
}
|
|
1279
1279
|
});
|
|
1280
1280
|
}
|
|
@@ -1286,25 +1286,25 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1286
1286
|
}
|
|
1287
1287
|
ch(a, b) {
|
|
1288
1288
|
let c = a;
|
|
1289
|
-
let d = c.
|
|
1289
|
+
let d = c.w;
|
|
1290
1290
|
this.af = true;
|
|
1291
|
-
d.ad = c.
|
|
1291
|
+
d.ad = c.ax;
|
|
1292
1292
|
d.am();
|
|
1293
1293
|
this.af = false;
|
|
1294
1294
|
this.dv(d);
|
|
1295
1295
|
}
|
|
1296
1296
|
di(a, b) {
|
|
1297
1297
|
let c = a;
|
|
1298
|
-
let d = c.
|
|
1298
|
+
let d = c.w;
|
|
1299
1299
|
this.af = true;
|
|
1300
1300
|
if (d.n == 1) {
|
|
1301
1301
|
let e = 0;
|
|
1302
|
-
let f = tryParseNumber(c.
|
|
1302
|
+
let f = tryParseNumber(c.ay, e);
|
|
1303
1303
|
e = f.p1;
|
|
1304
1304
|
d.ad = e;
|
|
1305
1305
|
}
|
|
1306
1306
|
else {
|
|
1307
|
-
d.ad = c.
|
|
1307
|
+
d.ad = c.ay;
|
|
1308
1308
|
}
|
|
1309
1309
|
d.am();
|
|
1310
1310
|
this.af = false;
|
|
@@ -1312,7 +1312,7 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1312
1312
|
}
|
|
1313
1313
|
cd(a, b) {
|
|
1314
1314
|
let c = a;
|
|
1315
|
-
let d = c.
|
|
1315
|
+
let d = c.w;
|
|
1316
1316
|
this.af = true;
|
|
1317
1317
|
d.an();
|
|
1318
1318
|
this.af = false;
|
|
@@ -1464,8 +1464,8 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1464
1464
|
ct(a, b) {
|
|
1465
1465
|
this.cn(b, (c, d) => {
|
|
1466
1466
|
c.e = 1;
|
|
1467
|
-
if (!c.
|
|
1468
|
-
c.
|
|
1467
|
+
if (!c.av) {
|
|
1468
|
+
c.av = true;
|
|
1469
1469
|
}
|
|
1470
1470
|
let e = this.m(a, b.b, b.c);
|
|
1471
1471
|
let f = e.ad;
|
|
@@ -1501,10 +1501,10 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1501
1501
|
}
|
|
1502
1502
|
}
|
|
1503
1503
|
let k = f;
|
|
1504
|
-
c.
|
|
1505
|
-
c.
|
|
1504
|
+
c.aw = k;
|
|
1505
|
+
c.w = e;
|
|
1506
1506
|
if (d) {
|
|
1507
|
-
c.
|
|
1507
|
+
c.au = runOn(this, this.cf);
|
|
1508
1508
|
}
|
|
1509
1509
|
});
|
|
1510
1510
|
}
|
|
@@ -1530,9 +1530,9 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
|
|
|
1530
1530
|
}
|
|
1531
1531
|
cf(a, b) {
|
|
1532
1532
|
let c = a;
|
|
1533
|
-
let d = c.
|
|
1533
|
+
let d = c.w;
|
|
1534
1534
|
this.af = true;
|
|
1535
|
-
d.ad = c.
|
|
1535
|
+
d.ad = c.aw;
|
|
1536
1536
|
d.am();
|
|
1537
1537
|
this.af = false;
|
|
1538
1538
|
this.dv(d);
|
|
@@ -23,7 +23,7 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
|
|
|
23
23
|
this.b = null;
|
|
24
24
|
this.b = a;
|
|
25
25
|
this.a = new DescriptionTreeNode();
|
|
26
|
-
this.a.
|
|
26
|
+
this.a.i = b;
|
|
27
27
|
let c = new JsonDictionaryObject();
|
|
28
28
|
}
|
|
29
29
|
h(a, b, c) {
|
|
@@ -79,7 +79,7 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
|
|
|
79
79
|
if (s != null && x < s.length) {
|
|
80
80
|
let y = s[x];
|
|
81
81
|
if (typeCast(DescriptionTreeNode.$, y) !== null && x == v) {
|
|
82
|
-
y.
|
|
82
|
+
y.i = u;
|
|
83
83
|
}
|
|
84
84
|
w.add1(y);
|
|
85
85
|
}
|
|
@@ -108,21 +108,21 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
|
|
|
108
108
|
}
|
|
109
109
|
else {
|
|
110
110
|
let ae = c;
|
|
111
|
-
if (!ae.
|
|
112
|
-
ae.
|
|
111
|
+
if (!ae.c(g)) {
|
|
112
|
+
ae.o(g, this.d(r, false, null), r);
|
|
113
113
|
}
|
|
114
114
|
let af = ae.a(g);
|
|
115
115
|
let ag = new List$1(String_$type, 1, f);
|
|
116
116
|
ag.removeAt(0);
|
|
117
117
|
let ah = this.c(stringJoin(".", ...ag.toArray()), b, af, r.specificExternalType, r);
|
|
118
118
|
if (ah != null) {
|
|
119
|
-
ae.
|
|
119
|
+
ae.o(g, ah, r);
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
124
|
let ai = c;
|
|
125
|
-
ai.
|
|
125
|
+
ai.o(g, this.e(b, r), r);
|
|
126
126
|
}
|
|
127
127
|
return null;
|
|
128
128
|
}
|
|
@@ -175,10 +175,10 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
|
|
|
175
175
|
else {
|
|
176
176
|
let d = new DescriptionTreeNode();
|
|
177
177
|
if (c != null) {
|
|
178
|
-
d.
|
|
178
|
+
d.i = c;
|
|
179
179
|
}
|
|
180
180
|
else {
|
|
181
|
-
d.
|
|
181
|
+
d.i = a.specificExternalType != null ? a.specificExternalType : a.specificType;
|
|
182
182
|
}
|
|
183
183
|
return d;
|
|
184
184
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolAction } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionCheckbox } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionCollection } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionEventDetail } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionEventDetailCollection } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionGroupHeader } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionIconButton } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionIconMenu } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { Base, markType } from "igniteui-webcomponents-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let ToolActionMeasurementContext = /*@__PURE__*/ (() => {
|
|
12
|
+
class ToolActionMeasurementContext extends Base {
|
|
13
|
+
constructor() {
|
|
14
|
+
super();
|
|
15
|
+
this.e = 0;
|
|
16
|
+
this.g = 0;
|
|
17
|
+
this.f = 0;
|
|
18
|
+
this.a = 0;
|
|
19
|
+
this.b = 0;
|
|
20
|
+
this.d = 0;
|
|
21
|
+
this.c = 0;
|
|
22
|
+
this.e = NaN;
|
|
23
|
+
this.g = NaN;
|
|
24
|
+
this.f = NaN;
|
|
25
|
+
this.d = NaN;
|
|
26
|
+
this.c = NaN;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
ToolActionMeasurementContext.$t = /*@__PURE__*/ markType(ToolActionMeasurementContext, 'ToolActionMeasurementContext');
|
|
30
|
+
return ToolActionMeasurementContext;
|
|
31
|
+
})();
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionMenuBase } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionNumberInput } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionPerformedEventArgs } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ToolActionSeparator } from "./ToolPanelView_combined";
|