igniteui-webcomponents-layouts 3.2.3 → 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 +7675 -276
- 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 +106 -106
- 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/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/ToolActionLabel.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/ToolActionRadio.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 +1699 -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 +466 -0
- package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
- package/esm2015/lib/igc-list-panel-item-model.js +57 -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 +51 -0
- package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
- 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 +6 -5
- package/esm2015/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm2015/lib/igc-tool-action-checkbox-component.js +63 -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 +333 -0
- package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
- package/esm2015/lib/igc-tool-action-event-detail.js +91 -0
- package/esm2015/lib/igc-tool-action-group-header-component.js +63 -0
- package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-button-component.js +63 -0
- package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +63 -0
- package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -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 +103 -0
- package/esm2015/lib/igc-tool-action-module.js +16 -0
- package/esm2015/lib/igc-tool-action-number-input-component.js +63 -0
- package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
- package/esm2015/lib/igc-tool-action-performed-event-args.js +86 -0
- 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 +63 -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 +386 -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 +417 -0
- package/esm2015/lib/igc-toolbar-module.js +19 -0
- package/esm2015/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm2015/public_api.js +79 -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 +106 -106
- 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/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/ToolActionLabel.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/ToolActionRadio.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 +1853 -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 +544 -0
- package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
- package/esm5/lib/igc-list-panel-item-model.js +79 -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 +65 -0
- package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
- 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 +6 -5
- package/esm5/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm5/lib/igc-tool-action-checkbox-component.js +72 -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 +409 -0
- package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
- package/esm5/lib/igc-tool-action-event-detail.js +125 -0
- package/esm5/lib/igc-tool-action-group-header-component.js +72 -0
- package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-button-component.js +72 -0
- package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-menu-component.js +72 -0
- package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -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 +117 -0
- package/esm5/lib/igc-tool-action-module.js +20 -0
- package/esm5/lib/igc-tool-action-number-input-component.js +72 -0
- package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
- package/esm5/lib/igc-tool-action-performed-event-args.js +104 -0
- 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 +72 -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 +456 -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 +489 -0
- package/esm5/lib/igc-toolbar-module.js +23 -0
- package/esm5/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm5/public_api.js +79 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +6751 -262
- package/fesm5/igniteui-webcomponents-layouts.js +7595 -278
- 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/PropertyEditorPropertyDescription_combined.d.ts +13 -10
- package/lib/PropertyEditorValueType.d.ts +2 -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/ToolActionLabel.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/ToolActionRadio.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 +355 -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-property-editor-property-description-component.d.ts +1 -0
- package/lib/igc-tool-action-checkbox-component.d.ts +17 -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 +65 -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 +17 -0
- package/lib/igc-tool-action-group-header-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-button-component.d.ts +17 -0
- package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-menu-component.d.ts +17 -0
- package/lib/igc-tool-action-icon-menu-module.d.ts +3 -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 +25 -0
- package/lib/igc-tool-action-module.d.ts +3 -0
- package/lib/igc-tool-action-number-input-component.d.ts +17 -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-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 +17 -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 +79 -0
|
@@ -83,10 +83,10 @@ var PropertyEditorPanelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
83
83
|
this.e = new RenderingContext(new CanvasViewRenderer(), this.i.get2DCanvasContext(this.l));
|
|
84
84
|
this.k = this.i.createElement("div");
|
|
85
85
|
this.y();
|
|
86
|
-
NativeUIComponent.
|
|
86
|
+
NativeUIComponent.aa(this.p(), 7, function (b) {
|
|
87
87
|
var c = b;
|
|
88
88
|
_this.a.dh(c, _this.n);
|
|
89
|
-
_this.i.append(c.
|
|
89
|
+
_this.i.append(c.v);
|
|
90
90
|
});
|
|
91
91
|
var b = Math.round(a.rootWrapper.width());
|
|
92
92
|
var c = Math.round(a.rootWrapper.height());
|
|
@@ -193,14 +193,14 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
193
193
|
_this.bo = 0;
|
|
194
194
|
_this.bl = -1;
|
|
195
195
|
_this.k = null;
|
|
196
|
-
NativeUIInputsFactory.
|
|
196
|
+
NativeUIInputsFactory.m();
|
|
197
197
|
_this.ap = new ObservableCollection$1(PropertyEditorPanelColumnDefinition.$, 0);
|
|
198
198
|
var a = new PropertyEditorPanelView();
|
|
199
199
|
a.a = _this;
|
|
200
|
-
var b = _this.properties;
|
|
201
|
-
b.collectionChanged = delegateCombine(b.collectionChanged, runOn(_this, _this.dx));
|
|
202
200
|
_this.l = a;
|
|
203
201
|
_this.l.v();
|
|
202
|
+
var b = _this.properties;
|
|
203
|
+
b.collectionChanged = delegateCombine(b.collectionChanged, runOn(_this, _this.dx));
|
|
204
204
|
return _this;
|
|
205
205
|
}
|
|
206
206
|
Object.defineProperty(PropertyEditorPanel.prototype, "x", {
|
|
@@ -414,11 +414,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
414
414
|
if (this.k == null) {
|
|
415
415
|
this.k = new PropertyEditorDataSource();
|
|
416
416
|
}
|
|
417
|
-
this.k.
|
|
417
|
+
this.k.n = this.b2;
|
|
418
418
|
}
|
|
419
419
|
if (this.properties == null || this.properties.count == 0) {
|
|
420
|
-
if (this.k.
|
|
421
|
-
this.actualProperties = this.k.
|
|
420
|
+
if (this.k.h != null) {
|
|
421
|
+
this.actualProperties = this.k.h;
|
|
422
422
|
}
|
|
423
423
|
}
|
|
424
424
|
else {
|
|
@@ -464,8 +464,8 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
464
464
|
this.k.b = this.h;
|
|
465
465
|
}
|
|
466
466
|
if (this.properties == null || this.properties.count == 0) {
|
|
467
|
-
if (this.k.
|
|
468
|
-
this.actualProperties = this.k.
|
|
467
|
+
if (this.k.h != null) {
|
|
468
|
+
this.actualProperties = this.k.h;
|
|
469
469
|
}
|
|
470
470
|
}
|
|
471
471
|
else {
|
|
@@ -559,7 +559,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
559
559
|
var c = _c.value;
|
|
560
560
|
var d = c.al;
|
|
561
561
|
if (this.k != null) {
|
|
562
|
-
var e = this.k.
|
|
562
|
+
var e = this.k.e(d, false);
|
|
563
563
|
if (e != null) {
|
|
564
564
|
if (c.p(e)) {
|
|
565
565
|
b = true;
|
|
@@ -609,11 +609,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
609
609
|
var _loop_1 = function (b) {
|
|
610
610
|
var c = b;
|
|
611
611
|
var d = this_1.c.getItemAtIndex(b);
|
|
612
|
-
if (this_1.v.
|
|
613
|
-
this_1.v.
|
|
612
|
+
if (this_1.v.a5 < c + 1) {
|
|
613
|
+
this_1.v.a7(c, 1, this_1.ar);
|
|
614
614
|
}
|
|
615
615
|
else {
|
|
616
|
-
this_1.v.
|
|
616
|
+
this_1.v.bd(c, 1, this_1.ar);
|
|
617
617
|
}
|
|
618
618
|
if (this_1.an.count < c + 1) {
|
|
619
619
|
this_1.an.add(new List$1(NativeUIComponent.$, 0));
|
|
@@ -622,24 +622,24 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
622
622
|
var _loop_2 = function (f) {
|
|
623
623
|
var g = this_1.ap._inner[f];
|
|
624
624
|
if (e.count < f + 1) {
|
|
625
|
-
NativeUIComponent.
|
|
625
|
+
NativeUIComponent.ac(this_1.l.p(), 0, function (h) {
|
|
626
626
|
var i = h;
|
|
627
627
|
i.e = 1;
|
|
628
628
|
if (g.a == 0) {
|
|
629
629
|
i.d = 2;
|
|
630
630
|
}
|
|
631
|
-
i.
|
|
632
|
-
_this.v.
|
|
633
|
-
_this.v.
|
|
634
|
-
_this.v.
|
|
631
|
+
i.ar = new Thickness(1, 5, 5, 5, 0);
|
|
632
|
+
_this.v.aw(i);
|
|
633
|
+
_this.v.bb(i, c);
|
|
634
|
+
_this.v.ba(i, f);
|
|
635
635
|
e.add(i);
|
|
636
636
|
});
|
|
637
637
|
}
|
|
638
|
-
if (this_1.v.
|
|
639
|
-
this_1.v.
|
|
638
|
+
if (this_1.v.a2 < f + 1) {
|
|
639
|
+
this_1.v.a6(f, 1, g.h);
|
|
640
640
|
}
|
|
641
641
|
else {
|
|
642
|
-
this_1.v.
|
|
642
|
+
this_1.v.bc(f, 1, g.h);
|
|
643
643
|
}
|
|
644
644
|
var h = e._inner[f];
|
|
645
645
|
var i = "PropertyPath";
|
|
@@ -658,7 +658,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
658
658
|
}
|
|
659
659
|
if (l == null) {
|
|
660
660
|
var m = h;
|
|
661
|
-
m.
|
|
661
|
+
m.a0 = null;
|
|
662
662
|
}
|
|
663
663
|
};
|
|
664
664
|
for (var f = 0; f < this_1.ap.count; f++) {
|
|
@@ -670,18 +670,18 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
670
670
|
_loop_1(b);
|
|
671
671
|
}
|
|
672
672
|
var n = new HashSet$1(NativeUIComponent.$, 0);
|
|
673
|
-
for (var o = this.v.
|
|
674
|
-
var p = this.v.
|
|
675
|
-
var q = this.v.
|
|
676
|
-
var r = this.v.
|
|
673
|
+
for (var o = this.v.av - 1; o >= 0; o--) {
|
|
674
|
+
var p = this.v.au(o);
|
|
675
|
+
var q = this.v.a4(p);
|
|
676
|
+
var r = this.v.a3(p);
|
|
677
677
|
if ((q + 1) > a || (r + 1) > this.ap.count) {
|
|
678
678
|
n.add_1(p);
|
|
679
679
|
}
|
|
680
680
|
}
|
|
681
|
-
for (var s = this.v.
|
|
682
|
-
var t = this.v.
|
|
681
|
+
for (var s = this.v.av - 1; s >= 0; s--) {
|
|
682
|
+
var t = this.v.au(s);
|
|
683
683
|
if (n.contains(t)) {
|
|
684
|
-
this.v.
|
|
684
|
+
this.v.ay(s);
|
|
685
685
|
}
|
|
686
686
|
}
|
|
687
687
|
for (var u = this.an.count - 1; u >= 0; u--) {
|
|
@@ -695,11 +695,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
695
695
|
this.an.removeAt(u);
|
|
696
696
|
}
|
|
697
697
|
}
|
|
698
|
-
while (this.v.
|
|
699
|
-
this.v.
|
|
698
|
+
while (this.v.a5 > a) {
|
|
699
|
+
this.v.a9(this.v.a5 - 1);
|
|
700
700
|
}
|
|
701
|
-
while (this.v.
|
|
702
|
-
this.v.
|
|
701
|
+
while (this.v.a2 > this.ap.count) {
|
|
702
|
+
this.v.a8(this.v.a2 - 1);
|
|
703
703
|
}
|
|
704
704
|
};
|
|
705
705
|
PropertyEditorPanel.prototype.dw = function (a, b) {
|
|
@@ -1166,35 +1166,35 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1166
1166
|
PropertyEditorPanel.prototype.c7 = function (a, b) {
|
|
1167
1167
|
var _this = this;
|
|
1168
1168
|
this.cq(b, function (c, d) {
|
|
1169
|
-
c.
|
|
1169
|
+
c.at = _this.u();
|
|
1170
1170
|
c.e = 1;
|
|
1171
1171
|
var e = _this.m(a, b.b, b.c);
|
|
1172
|
-
c.
|
|
1173
|
-
c.
|
|
1172
|
+
c.w = e;
|
|
1173
|
+
c.au = _this.b5(e);
|
|
1174
1174
|
});
|
|
1175
1175
|
};
|
|
1176
1176
|
PropertyEditorPanel.prototype.c6 = function (a, b) {
|
|
1177
1177
|
var _this = this;
|
|
1178
1178
|
this.cp(b, function (c, d) {
|
|
1179
1179
|
c.e = 1;
|
|
1180
|
-
c.
|
|
1181
|
-
c.
|
|
1180
|
+
c.ax = 1;
|
|
1181
|
+
c.au = 2;
|
|
1182
1182
|
var e = _this.m(a, b.b, b.c);
|
|
1183
|
-
c.
|
|
1184
|
-
c.
|
|
1183
|
+
c.w = e;
|
|
1184
|
+
c.ay = (e.ad != null ? e.ad.toString() : "");
|
|
1185
1185
|
if (d) {
|
|
1186
|
-
c.
|
|
1186
|
+
c.aw = runOn(_this, _this.di);
|
|
1187
1187
|
}
|
|
1188
1188
|
});
|
|
1189
1189
|
};
|
|
1190
1190
|
PropertyEditorPanel.prototype.cq = function (a, b) {
|
|
1191
1191
|
var c = a.a;
|
|
1192
|
-
var d = c.
|
|
1192
|
+
var d = c.a0;
|
|
1193
1193
|
var e = false;
|
|
1194
1194
|
if (d == null || d.c != 3) {
|
|
1195
1195
|
e = true;
|
|
1196
|
-
NativeUIComponent.
|
|
1197
|
-
c.
|
|
1196
|
+
NativeUIComponent.aa(this.l.p(), 3, function (f) {
|
|
1197
|
+
c.a0 = f;
|
|
1198
1198
|
b(f, e);
|
|
1199
1199
|
});
|
|
1200
1200
|
return;
|
|
@@ -1203,12 +1203,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1203
1203
|
};
|
|
1204
1204
|
PropertyEditorPanel.prototype.cp = function (a, b) {
|
|
1205
1205
|
var c = a.a;
|
|
1206
|
-
var d = c.
|
|
1206
|
+
var d = c.a0;
|
|
1207
1207
|
var e = false;
|
|
1208
1208
|
if (d == null || d.c != 2) {
|
|
1209
1209
|
e = true;
|
|
1210
|
-
NativeUIComponent.
|
|
1211
|
-
c.
|
|
1210
|
+
NativeUIComponent.aa(this.l.p(), 2, function (f) {
|
|
1211
|
+
c.a0 = f;
|
|
1212
1212
|
b(f, e);
|
|
1213
1213
|
});
|
|
1214
1214
|
return;
|
|
@@ -1217,12 +1217,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1217
1217
|
};
|
|
1218
1218
|
PropertyEditorPanel.prototype.cm = function (a, b) {
|
|
1219
1219
|
var c = a.a;
|
|
1220
|
-
var d = c.
|
|
1220
|
+
var d = c.a0;
|
|
1221
1221
|
var e = false;
|
|
1222
1222
|
if (d == null || d.c != 1) {
|
|
1223
1223
|
e = true;
|
|
1224
|
-
NativeUIComponent.
|
|
1225
|
-
c.
|
|
1224
|
+
NativeUIComponent.aa(this.l.p(), 1, function (f) {
|
|
1225
|
+
c.a0 = f;
|
|
1226
1226
|
b(f, e);
|
|
1227
1227
|
});
|
|
1228
1228
|
return;
|
|
@@ -1231,12 +1231,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1231
1231
|
};
|
|
1232
1232
|
PropertyEditorPanel.prototype.cr = function (a, b) {
|
|
1233
1233
|
var c = a.a;
|
|
1234
|
-
var d = c.
|
|
1234
|
+
var d = c.a0;
|
|
1235
1235
|
var e = false;
|
|
1236
1236
|
if (d == null || d.c != 5) {
|
|
1237
1237
|
e = true;
|
|
1238
|
-
NativeUIComponent.
|
|
1239
|
-
c.
|
|
1238
|
+
NativeUIComponent.aa(this.l.p(), 5, function (f) {
|
|
1239
|
+
c.a0 = f;
|
|
1240
1240
|
b(f, e);
|
|
1241
1241
|
});
|
|
1242
1242
|
return;
|
|
@@ -1245,12 +1245,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1245
1245
|
};
|
|
1246
1246
|
PropertyEditorPanel.prototype.co = function (a, b) {
|
|
1247
1247
|
var c = a.a;
|
|
1248
|
-
var d = c.
|
|
1248
|
+
var d = c.a0;
|
|
1249
1249
|
var e = false;
|
|
1250
1250
|
if (d == null || d.c != 4) {
|
|
1251
1251
|
e = true;
|
|
1252
|
-
NativeUIComponent.
|
|
1253
|
-
c.
|
|
1252
|
+
NativeUIComponent.aa(this.l.p(), 4, function (f) {
|
|
1253
|
+
c.a0 = f;
|
|
1254
1254
|
b(f, e);
|
|
1255
1255
|
});
|
|
1256
1256
|
return;
|
|
@@ -1259,12 +1259,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1259
1259
|
};
|
|
1260
1260
|
PropertyEditorPanel.prototype.cn = function (a, b) {
|
|
1261
1261
|
var c = a.a;
|
|
1262
|
-
var d = c.
|
|
1262
|
+
var d = c.a0;
|
|
1263
1263
|
var e = false;
|
|
1264
1264
|
if (d == null || d.c != 6) {
|
|
1265
1265
|
e = true;
|
|
1266
|
-
NativeUIComponent.
|
|
1267
|
-
c.
|
|
1266
|
+
NativeUIComponent.aa(this.l.p(), 6, function (f) {
|
|
1267
|
+
c.a0 = f;
|
|
1268
1268
|
b(f, e);
|
|
1269
1269
|
});
|
|
1270
1270
|
return;
|
|
@@ -1275,18 +1275,18 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1275
1275
|
var _this = this;
|
|
1276
1276
|
this.cm(b, function (c, d) {
|
|
1277
1277
|
c.e = 1;
|
|
1278
|
-
if (c.
|
|
1279
|
-
c.
|
|
1278
|
+
if (c.av != 2) {
|
|
1279
|
+
c.av = 2;
|
|
1280
1280
|
}
|
|
1281
1281
|
var e = _this.m(a, b.b, b.c);
|
|
1282
|
-
c.
|
|
1282
|
+
c.w = e;
|
|
1283
1283
|
var f = e.ad;
|
|
1284
1284
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1285
1285
|
f = e.ad.toString();
|
|
1286
1286
|
}
|
|
1287
|
-
c.
|
|
1287
|
+
c.aw = f;
|
|
1288
1288
|
if (d) {
|
|
1289
|
-
c.
|
|
1289
|
+
c.au = runOn(_this, _this.cd);
|
|
1290
1290
|
}
|
|
1291
1291
|
});
|
|
1292
1292
|
};
|
|
@@ -1295,7 +1295,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1295
1295
|
this.cr(b, function (c, d) {
|
|
1296
1296
|
c.e = 1;
|
|
1297
1297
|
var e = _this.m(a, b.b, b.c);
|
|
1298
|
-
c.
|
|
1298
|
+
c.w = e;
|
|
1299
1299
|
var f = e.ad;
|
|
1300
1300
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1301
1301
|
f = e.ad;
|
|
@@ -1309,35 +1309,35 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1309
1309
|
if (f == null) {
|
|
1310
1310
|
f = 0;
|
|
1311
1311
|
}
|
|
1312
|
-
c.
|
|
1312
|
+
c.a0 = f;
|
|
1313
1313
|
if (!isNaN_(e.z)) {
|
|
1314
|
-
c.
|
|
1314
|
+
c.ay = e.z;
|
|
1315
1315
|
}
|
|
1316
1316
|
else {
|
|
1317
|
-
c.
|
|
1317
|
+
c.ay = 0;
|
|
1318
1318
|
}
|
|
1319
1319
|
if (!isNaN_(e.y)) {
|
|
1320
|
-
c.
|
|
1320
|
+
c.ax = e.y;
|
|
1321
1321
|
}
|
|
1322
1322
|
else {
|
|
1323
|
-
c.
|
|
1323
|
+
c.ax = 100;
|
|
1324
1324
|
}
|
|
1325
1325
|
if (!isNaN_(e.aa)) {
|
|
1326
|
-
c.
|
|
1326
|
+
c.az = e.aa;
|
|
1327
1327
|
}
|
|
1328
1328
|
else {
|
|
1329
|
-
c.
|
|
1329
|
+
c.az = 1;
|
|
1330
1330
|
}
|
|
1331
1331
|
if (d) {
|
|
1332
|
-
c.
|
|
1332
|
+
c.aw = runOn(_this, _this.d3);
|
|
1333
1333
|
}
|
|
1334
1334
|
});
|
|
1335
1335
|
};
|
|
1336
1336
|
PropertyEditorPanel.prototype.d3 = function (a, b) {
|
|
1337
1337
|
var c = a;
|
|
1338
|
-
var d = c.
|
|
1338
|
+
var d = c.w;
|
|
1339
1339
|
this.af = true;
|
|
1340
|
-
d.ad = c.
|
|
1340
|
+
d.ad = c.a0;
|
|
1341
1341
|
this.af = false;
|
|
1342
1342
|
this.dv(d);
|
|
1343
1343
|
};
|
|
@@ -1345,44 +1345,44 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1345
1345
|
var _this = this;
|
|
1346
1346
|
this.co(b, function (c, d) {
|
|
1347
1347
|
c.e = 1;
|
|
1348
|
-
if (c.
|
|
1349
|
-
c.
|
|
1348
|
+
if (c.at != 2) {
|
|
1349
|
+
c.at = 2;
|
|
1350
1350
|
}
|
|
1351
1351
|
var e = _this.m(a, b.b, b.c);
|
|
1352
|
-
if (c.
|
|
1352
|
+
if (c.w != e) {
|
|
1353
1353
|
{
|
|
1354
|
-
c.
|
|
1354
|
+
c.av = null;
|
|
1355
1355
|
}
|
|
1356
|
-
c.
|
|
1357
|
-
c.
|
|
1358
|
-
c.
|
|
1359
|
-
if (e.ad != c.
|
|
1356
|
+
c.w = e;
|
|
1357
|
+
c.ax = null;
|
|
1358
|
+
c.aw = _this.b(_this.a(e));
|
|
1359
|
+
if (e.ad != c.ax) {
|
|
1360
1360
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1361
|
-
c.
|
|
1361
|
+
c.ax = e.ad.toString();
|
|
1362
1362
|
}
|
|
1363
1363
|
else {
|
|
1364
|
-
c.
|
|
1364
|
+
c.ax = e.ad;
|
|
1365
1365
|
}
|
|
1366
1366
|
}
|
|
1367
1367
|
{
|
|
1368
|
-
c.
|
|
1368
|
+
c.av = runOn(_this, _this.ch);
|
|
1369
1369
|
}
|
|
1370
1370
|
}
|
|
1371
1371
|
else {
|
|
1372
|
-
if (e.ad != c.
|
|
1372
|
+
if (e.ad != c.ax) {
|
|
1373
1373
|
if (typeof e.ad === 'number' || typeof e.ad === 'number') {
|
|
1374
|
-
c.
|
|
1374
|
+
c.ax = e.ad.toString();
|
|
1375
1375
|
}
|
|
1376
1376
|
else {
|
|
1377
|
-
c.
|
|
1377
|
+
c.ax = e.ad;
|
|
1378
1378
|
}
|
|
1379
1379
|
}
|
|
1380
1380
|
}
|
|
1381
1381
|
if (d) {
|
|
1382
|
-
if (c.
|
|
1383
|
-
c.
|
|
1382
|
+
if (c.av == null) {
|
|
1383
|
+
c.av = runOn(_this, _this.ch);
|
|
1384
1384
|
}
|
|
1385
|
-
c.
|
|
1385
|
+
c.aj = BrushUtil.g(255, 255, 255, 255);
|
|
1386
1386
|
}
|
|
1387
1387
|
});
|
|
1388
1388
|
};
|
|
@@ -1394,25 +1394,25 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1394
1394
|
};
|
|
1395
1395
|
PropertyEditorPanel.prototype.ch = function (a, b) {
|
|
1396
1396
|
var c = a;
|
|
1397
|
-
var d = c.
|
|
1397
|
+
var d = c.w;
|
|
1398
1398
|
this.af = true;
|
|
1399
|
-
d.ad = c.
|
|
1399
|
+
d.ad = c.ax;
|
|
1400
1400
|
d.am();
|
|
1401
1401
|
this.af = false;
|
|
1402
1402
|
this.dv(d);
|
|
1403
1403
|
};
|
|
1404
1404
|
PropertyEditorPanel.prototype.di = function (a, b) {
|
|
1405
1405
|
var c = a;
|
|
1406
|
-
var d = c.
|
|
1406
|
+
var d = c.w;
|
|
1407
1407
|
this.af = true;
|
|
1408
1408
|
if (d.n == 1) {
|
|
1409
1409
|
var e = 0;
|
|
1410
|
-
var f = tryParseNumber(c.
|
|
1410
|
+
var f = tryParseNumber(c.ay, e);
|
|
1411
1411
|
e = f.p1;
|
|
1412
1412
|
d.ad = e;
|
|
1413
1413
|
}
|
|
1414
1414
|
else {
|
|
1415
|
-
d.ad = c.
|
|
1415
|
+
d.ad = c.ay;
|
|
1416
1416
|
}
|
|
1417
1417
|
d.am();
|
|
1418
1418
|
this.af = false;
|
|
@@ -1420,7 +1420,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1420
1420
|
};
|
|
1421
1421
|
PropertyEditorPanel.prototype.cd = function (a, b) {
|
|
1422
1422
|
var c = a;
|
|
1423
|
-
var d = c.
|
|
1423
|
+
var d = c.w;
|
|
1424
1424
|
this.af = true;
|
|
1425
1425
|
d.an();
|
|
1426
1426
|
this.af = false;
|
|
@@ -1574,8 +1574,8 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1574
1574
|
var _this = this;
|
|
1575
1575
|
this.cn(b, function (c, d) {
|
|
1576
1576
|
c.e = 1;
|
|
1577
|
-
if (!c.
|
|
1578
|
-
c.
|
|
1577
|
+
if (!c.av) {
|
|
1578
|
+
c.av = true;
|
|
1579
1579
|
}
|
|
1580
1580
|
var e = _this.m(a, b.b, b.c);
|
|
1581
1581
|
var f = e.ad;
|
|
@@ -1611,10 +1611,10 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1611
1611
|
}
|
|
1612
1612
|
}
|
|
1613
1613
|
var k = f;
|
|
1614
|
-
c.
|
|
1615
|
-
c.
|
|
1614
|
+
c.aw = k;
|
|
1615
|
+
c.w = e;
|
|
1616
1616
|
if (d) {
|
|
1617
|
-
c.
|
|
1617
|
+
c.au = runOn(_this, _this.cf);
|
|
1618
1618
|
}
|
|
1619
1619
|
});
|
|
1620
1620
|
};
|
|
@@ -1640,9 +1640,9 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1640
1640
|
};
|
|
1641
1641
|
PropertyEditorPanel.prototype.cf = function (a, b) {
|
|
1642
1642
|
var c = a;
|
|
1643
|
-
var d = c.
|
|
1643
|
+
var d = c.w;
|
|
1644
1644
|
this.af = true;
|
|
1645
|
-
d.ad = c.
|
|
1645
|
+
d.ad = c.aw;
|
|
1646
1646
|
d.am();
|
|
1647
1647
|
this.af = false;
|
|
1648
1648
|
this.dv(d);
|