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
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { ListPanelTemplateHeightRequestedEventArgs as ListPanelTemplateHeightRequestedEventArgs_internal } from "./ListPanelTemplateHeightRequestedEventArgs";
|
|
2
|
+
var IgcListPanelTemplateHeightRequestedEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
|
+
function IgcListPanelTemplateHeightRequestedEventArgs() {
|
|
4
|
+
this._implementation = this.createImplementation();
|
|
5
|
+
this._implementation.externalObject = this;
|
|
6
|
+
this.onImplementationCreated();
|
|
7
|
+
}
|
|
8
|
+
IgcListPanelTemplateHeightRequestedEventArgs.prototype.createImplementation = function () {
|
|
9
|
+
return new ListPanelTemplateHeightRequestedEventArgs_internal();
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "i", {
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
get: function () {
|
|
16
|
+
return this._implementation;
|
|
17
|
+
},
|
|
18
|
+
enumerable: true,
|
|
19
|
+
configurable: true
|
|
20
|
+
});
|
|
21
|
+
IgcListPanelTemplateHeightRequestedEventArgs.prototype.onImplementationCreated = function () {
|
|
22
|
+
};
|
|
23
|
+
IgcListPanelTemplateHeightRequestedEventArgs.prototype._provideImplementation = function (i) {
|
|
24
|
+
this._implementation = i;
|
|
25
|
+
this._implementation.externalObject = this;
|
|
26
|
+
this.onImplementationCreated();
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "dataRow", {
|
|
29
|
+
get: function () {
|
|
30
|
+
return this.i.b;
|
|
31
|
+
},
|
|
32
|
+
set: function (v) {
|
|
33
|
+
this.i.b = +v;
|
|
34
|
+
},
|
|
35
|
+
enumerable: true,
|
|
36
|
+
configurable: true
|
|
37
|
+
});
|
|
38
|
+
Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "dataItem", {
|
|
39
|
+
get: function () {
|
|
40
|
+
return this.i.c;
|
|
41
|
+
},
|
|
42
|
+
set: function (v) {
|
|
43
|
+
this.i.c = v;
|
|
44
|
+
},
|
|
45
|
+
enumerable: true,
|
|
46
|
+
configurable: true
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "height", {
|
|
49
|
+
get: function () {
|
|
50
|
+
return this.i.a;
|
|
51
|
+
},
|
|
52
|
+
set: function (v) {
|
|
53
|
+
this.i.a = +v;
|
|
54
|
+
},
|
|
55
|
+
enumerable: true,
|
|
56
|
+
configurable: true
|
|
57
|
+
});
|
|
58
|
+
return IgcListPanelTemplateHeightRequestedEventArgs;
|
|
59
|
+
}());
|
|
60
|
+
export { IgcListPanelTemplateHeightRequestedEventArgs };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { IgcListPanelItemModel } from "./igc-list-panel-item-model";
|
|
2
|
+
import { ListPanelTemplateItemUpdatingEventArgs as ListPanelTemplateItemUpdatingEventArgs_internal } from "./ListPanelTemplateItemUpdatingEventArgs";
|
|
3
|
+
var IgcListPanelTemplateItemUpdatingEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
4
|
+
function IgcListPanelTemplateItemUpdatingEventArgs() {
|
|
5
|
+
this._implementation = this.createImplementation();
|
|
6
|
+
this._implementation.externalObject = this;
|
|
7
|
+
this.onImplementationCreated();
|
|
8
|
+
}
|
|
9
|
+
IgcListPanelTemplateItemUpdatingEventArgs.prototype.createImplementation = function () {
|
|
10
|
+
return new ListPanelTemplateItemUpdatingEventArgs_internal();
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "i", {
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get: function () {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
},
|
|
19
|
+
enumerable: true,
|
|
20
|
+
configurable: true
|
|
21
|
+
});
|
|
22
|
+
IgcListPanelTemplateItemUpdatingEventArgs.prototype.onImplementationCreated = function () {
|
|
23
|
+
};
|
|
24
|
+
IgcListPanelTemplateItemUpdatingEventArgs.prototype._provideImplementation = function (i) {
|
|
25
|
+
this._implementation = i;
|
|
26
|
+
this._implementation.externalObject = this;
|
|
27
|
+
this.onImplementationCreated();
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "model", {
|
|
30
|
+
get: function () {
|
|
31
|
+
var r = this.i.a;
|
|
32
|
+
if (r == null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
if (!r.externalObject) {
|
|
36
|
+
var e = new IgcListPanelItemModel();
|
|
37
|
+
if (e.i.setNativeElement) {
|
|
38
|
+
e.i.setNativeElement(r);
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
e._implementation = r;
|
|
42
|
+
}
|
|
43
|
+
r.externalObject = e;
|
|
44
|
+
}
|
|
45
|
+
return r.externalObject;
|
|
46
|
+
},
|
|
47
|
+
set: function (v) {
|
|
48
|
+
v == null ? this.i.a = null : this.i.a = v.i;
|
|
49
|
+
},
|
|
50
|
+
enumerable: true,
|
|
51
|
+
configurable: true
|
|
52
|
+
});
|
|
53
|
+
Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "content", {
|
|
54
|
+
get: function () {
|
|
55
|
+
return this.i.c;
|
|
56
|
+
},
|
|
57
|
+
set: function (v) {
|
|
58
|
+
this.i.c = v;
|
|
59
|
+
},
|
|
60
|
+
enumerable: true,
|
|
61
|
+
configurable: true
|
|
62
|
+
});
|
|
63
|
+
return IgcListPanelTemplateItemUpdatingEventArgs;
|
|
64
|
+
}());
|
|
65
|
+
export { IgcListPanelTemplateItemUpdatingEventArgs };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { ListPanelTemplateWidthRequestedEventArgs as ListPanelTemplateWidthRequestedEventArgs_internal } from "./ListPanelTemplateWidthRequestedEventArgs";
|
|
2
|
+
var IgcListPanelTemplateWidthRequestedEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
|
+
function IgcListPanelTemplateWidthRequestedEventArgs() {
|
|
4
|
+
this._implementation = this.createImplementation();
|
|
5
|
+
this._implementation.externalObject = this;
|
|
6
|
+
this.onImplementationCreated();
|
|
7
|
+
}
|
|
8
|
+
IgcListPanelTemplateWidthRequestedEventArgs.prototype.createImplementation = function () {
|
|
9
|
+
return new ListPanelTemplateWidthRequestedEventArgs_internal();
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "i", {
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
get: function () {
|
|
16
|
+
return this._implementation;
|
|
17
|
+
},
|
|
18
|
+
enumerable: true,
|
|
19
|
+
configurable: true
|
|
20
|
+
});
|
|
21
|
+
IgcListPanelTemplateWidthRequestedEventArgs.prototype.onImplementationCreated = function () {
|
|
22
|
+
};
|
|
23
|
+
IgcListPanelTemplateWidthRequestedEventArgs.prototype._provideImplementation = function (i) {
|
|
24
|
+
this._implementation = i;
|
|
25
|
+
this._implementation.externalObject = this;
|
|
26
|
+
this.onImplementationCreated();
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "dataRow", {
|
|
29
|
+
get: function () {
|
|
30
|
+
return this.i.b;
|
|
31
|
+
},
|
|
32
|
+
set: function (v) {
|
|
33
|
+
this.i.b = +v;
|
|
34
|
+
},
|
|
35
|
+
enumerable: true,
|
|
36
|
+
configurable: true
|
|
37
|
+
});
|
|
38
|
+
Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "dataItem", {
|
|
39
|
+
get: function () {
|
|
40
|
+
return this.i.c;
|
|
41
|
+
},
|
|
42
|
+
set: function (v) {
|
|
43
|
+
this.i.c = v;
|
|
44
|
+
},
|
|
45
|
+
enumerable: true,
|
|
46
|
+
configurable: true
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "width", {
|
|
49
|
+
get: function () {
|
|
50
|
+
return this.i.a;
|
|
51
|
+
},
|
|
52
|
+
set: function (v) {
|
|
53
|
+
this.i.a = +v;
|
|
54
|
+
},
|
|
55
|
+
enumerable: true,
|
|
56
|
+
configurable: true
|
|
57
|
+
});
|
|
58
|
+
return IgcListPanelTemplateWidthRequestedEventArgs;
|
|
59
|
+
}());
|
|
60
|
+
export { IgcListPanelTemplateWidthRequestedEventArgs };
|
|
@@ -316,6 +316,11 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
316
316
|
configurable: true
|
|
317
317
|
});
|
|
318
318
|
IgcPopupComponent.prototype.findByName = function (name) {
|
|
319
|
+
if (this.findEphemera) {
|
|
320
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
321
|
+
return this.findEphemera(name);
|
|
322
|
+
}
|
|
323
|
+
}
|
|
319
324
|
return null;
|
|
320
325
|
};
|
|
321
326
|
Object.defineProperty(IgcPopupComponent.prototype, "hasUserValues", {
|
|
@@ -424,6 +429,7 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
424
429
|
}
|
|
425
430
|
};
|
|
426
431
|
this.i.onClosed = delegateCombine(this.i.onClosed, this._onClosed_wrapped);
|
|
432
|
+
;
|
|
427
433
|
},
|
|
428
434
|
enumerable: true,
|
|
429
435
|
configurable: true
|
|
@@ -454,6 +460,7 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
454
460
|
}
|
|
455
461
|
};
|
|
456
462
|
this.i.onPopup = delegateCombine(this.i.onPopup, this._onPopup_wrapped);
|
|
463
|
+
;
|
|
457
464
|
},
|
|
458
465
|
enumerable: true,
|
|
459
466
|
configurable: true
|
|
@@ -27,10 +27,10 @@ var IgcPropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function () {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(IgcPropertyEditorDataSource.prototype, "descriptionType", {
|
|
29
29
|
get: function () {
|
|
30
|
-
return this.i.
|
|
30
|
+
return this.i.n;
|
|
31
31
|
},
|
|
32
32
|
set: function (v) {
|
|
33
|
-
this.i.
|
|
33
|
+
this.i.n = v;
|
|
34
34
|
},
|
|
35
35
|
enumerable: true,
|
|
36
36
|
configurable: true
|
|
@@ -46,6 +46,11 @@ var IgcPropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function () {
|
|
|
46
46
|
configurable: true
|
|
47
47
|
});
|
|
48
48
|
IgcPropertyEditorDataSource.prototype.findByName = function (name) {
|
|
49
|
+
if (this.findEphemera) {
|
|
50
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
51
|
+
return this.findEphemera(name);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
49
54
|
return null;
|
|
50
55
|
};
|
|
51
56
|
return IgcPropertyEditorDataSource;
|
|
@@ -74,6 +74,11 @@ var IgcPropertyEditorDescriptionObject = /** @class */ /*@__PURE__*/ (function (
|
|
|
74
74
|
configurable: true
|
|
75
75
|
});
|
|
76
76
|
IgcPropertyEditorDescriptionObject.prototype.findByName = function (name) {
|
|
77
|
+
if (this.findEphemera) {
|
|
78
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
79
|
+
return this.findEphemera(name);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
77
82
|
if (this.properties != null && this.properties.findByName && this.properties.findByName(name)) {
|
|
78
83
|
return this.properties.findByName(name);
|
|
79
84
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as tslib_1 from "tslib";
|
|
2
|
-
import {
|
|
2
|
+
import { brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
|
|
3
3
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
4
4
|
import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
|
|
5
5
|
import { CollectionAdapter } from "igniteui-webcomponents-core";
|
|
@@ -452,6 +452,11 @@ var IgcPropertyEditorPanelComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
452
452
|
configurable: true
|
|
453
453
|
});
|
|
454
454
|
IgcPropertyEditorPanelComponent.prototype.findByName = function (name) {
|
|
455
|
+
if (this.findEphemera) {
|
|
456
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
457
|
+
return this.findEphemera(name);
|
|
458
|
+
}
|
|
459
|
+
}
|
|
455
460
|
if (this.actualDataSource != null && this.actualDataSource.findByName && this.actualDataSource.findByName(name)) {
|
|
456
461
|
return this.actualDataSource.findByName(name);
|
|
457
462
|
}
|
|
@@ -517,10 +522,6 @@ var IgcPropertyEditorPanelComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
517
522
|
}
|
|
518
523
|
this._inStyling = false;
|
|
519
524
|
};
|
|
520
|
-
IgcPropertyEditorPanelComponent.prototype.getDesiredSize = function () {
|
|
521
|
-
var iv = this.i.ea();
|
|
522
|
-
return fromSize(iv);
|
|
523
|
-
};
|
|
524
525
|
IgcPropertyEditorPanelComponent.prototype.notifySetItem = function (index, oldItem, newItem) {
|
|
525
526
|
this.i.dq(index, oldItem, newItem);
|
|
526
527
|
};
|
|
@@ -105,11 +105,25 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
|
|
|
105
105
|
if (_super.prototype["connectedCallback"]) {
|
|
106
106
|
_super.prototype["connectedCallback"].call(this);
|
|
107
107
|
}
|
|
108
|
+
if (this.i.connectedCallback) {
|
|
109
|
+
this.i.connectedCallback();
|
|
110
|
+
}
|
|
108
111
|
if (!this._attached) {
|
|
109
112
|
this._attached = true;
|
|
110
113
|
this._flushQueuedAttributes();
|
|
111
114
|
}
|
|
112
115
|
};
|
|
116
|
+
IgcPropertyEditorPropertyDescriptionComponent.prototype.disconnectedCallback = function () {
|
|
117
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
118
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
119
|
+
}
|
|
120
|
+
if (this.i.disconnectedCallback) {
|
|
121
|
+
this.i.disconnectedCallback();
|
|
122
|
+
}
|
|
123
|
+
if (this._attached) {
|
|
124
|
+
this._attached = false;
|
|
125
|
+
}
|
|
126
|
+
};
|
|
113
127
|
Object.defineProperty(IgcPropertyEditorPropertyDescriptionComponent, "observedAttributes", {
|
|
114
128
|
get: function () {
|
|
115
129
|
if (IgcPropertyEditorPropertyDescriptionComponent._observedAttributesIgcPropertyEditorPropertyDescriptionComponent == null) {
|
|
@@ -296,15 +310,21 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
|
|
|
296
310
|
});
|
|
297
311
|
Object.defineProperty(IgcPropertyEditorPropertyDescriptionComponent.prototype, "complexValue", {
|
|
298
312
|
get: function () {
|
|
299
|
-
|
|
313
|
+
var r = this.i.g;
|
|
314
|
+
if (r == null) {
|
|
300
315
|
return null;
|
|
301
316
|
}
|
|
302
|
-
if (!
|
|
317
|
+
if (!r.externalObject) {
|
|
303
318
|
var e = new IgcPropertyEditorDescriptionObject();
|
|
304
|
-
e.
|
|
305
|
-
|
|
319
|
+
if (e.i.setNativeElement) {
|
|
320
|
+
e.i.setNativeElement(r);
|
|
321
|
+
}
|
|
322
|
+
else {
|
|
323
|
+
e._implementation = r;
|
|
324
|
+
}
|
|
325
|
+
r.externalObject = e;
|
|
306
326
|
}
|
|
307
|
-
return
|
|
327
|
+
return r.externalObject;
|
|
308
328
|
},
|
|
309
329
|
set: function (v) {
|
|
310
330
|
v == null ? this.i.g = null : this.i.g = v.i;
|
|
@@ -346,6 +366,11 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
|
|
|
346
366
|
configurable: true
|
|
347
367
|
});
|
|
348
368
|
IgcPropertyEditorPropertyDescriptionComponent.prototype.findByName = function (name) {
|
|
369
|
+
if (this.findEphemera) {
|
|
370
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
371
|
+
return this.findEphemera(name);
|
|
372
|
+
}
|
|
373
|
+
}
|
|
349
374
|
if (this.complexValue && this.complexValue.name && this.complexValue.name == name) {
|
|
350
375
|
return this.complexValue;
|
|
351
376
|
}
|
|
@@ -434,6 +459,7 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
|
|
|
434
459
|
}
|
|
435
460
|
};
|
|
436
461
|
this.i.buttonClicked = delegateCombine(this.i.buttonClicked, this._buttonClicked_wrapped);
|
|
462
|
+
;
|
|
437
463
|
},
|
|
438
464
|
enumerable: true,
|
|
439
465
|
configurable: true
|
|
@@ -461,6 +487,7 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
|
|
|
461
487
|
}
|
|
462
488
|
};
|
|
463
489
|
this.i.changed = delegateCombine(this.i.changed, this._changed_wrapped);
|
|
490
|
+
;
|
|
464
491
|
},
|
|
465
492
|
enumerable: true,
|
|
466
493
|
configurable: true
|
|
@@ -488,6 +515,7 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
|
|
|
488
515
|
}
|
|
489
516
|
};
|
|
490
517
|
this.i.targetPropertyUpdating = delegateCombine(this.i.targetPropertyUpdating, this._targetPropertyUpdating_wrapped);
|
|
518
|
+
;
|
|
491
519
|
},
|
|
492
520
|
enumerable: true,
|
|
493
521
|
configurable: true
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import * as tslib_1 from "tslib";
|
|
2
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
3
|
+
import { ToolActionCheckbox } from "./ToolActionCheckbox";
|
|
4
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
5
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
6
|
+
var IgcToolActionCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
7
|
+
tslib_1.__extends(IgcToolActionCheckboxComponent, _super);
|
|
8
|
+
function IgcToolActionCheckboxComponent() {
|
|
9
|
+
return _super.call(this) || this;
|
|
10
|
+
}
|
|
11
|
+
IgcToolActionCheckboxComponent.prototype.createImplementation = function () {
|
|
12
|
+
return new ToolActionCheckbox();
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(IgcToolActionCheckboxComponent.prototype, "i", {
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
get: function () {
|
|
19
|
+
return this._implementation;
|
|
20
|
+
},
|
|
21
|
+
enumerable: true,
|
|
22
|
+
configurable: true
|
|
23
|
+
});
|
|
24
|
+
IgcToolActionCheckboxComponent.prototype.connectedCallback = function () {
|
|
25
|
+
if (_super.prototype["connectedCallback"]) {
|
|
26
|
+
_super.prototype["connectedCallback"].call(this);
|
|
27
|
+
}
|
|
28
|
+
if (this.i.connectedCallback) {
|
|
29
|
+
this.i.connectedCallback();
|
|
30
|
+
}
|
|
31
|
+
if (!this._attached) {
|
|
32
|
+
this._attached = true;
|
|
33
|
+
this._flushQueuedAttributes();
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
IgcToolActionCheckboxComponent.prototype.disconnectedCallback = function () {
|
|
37
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
38
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
39
|
+
}
|
|
40
|
+
if (this.i.disconnectedCallback) {
|
|
41
|
+
this.i.disconnectedCallback();
|
|
42
|
+
}
|
|
43
|
+
if (this._attached) {
|
|
44
|
+
this._attached = false;
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
Object.defineProperty(IgcToolActionCheckboxComponent, "observedAttributes", {
|
|
48
|
+
get: function () {
|
|
49
|
+
if (IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent == null) {
|
|
50
|
+
var names = getAllPropertyNames(IgcToolActionCheckboxComponent);
|
|
51
|
+
for (var i = 0; i < names.length; i++) {
|
|
52
|
+
names[i] = toSpinal(names[i]);
|
|
53
|
+
}
|
|
54
|
+
IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent = names;
|
|
55
|
+
}
|
|
56
|
+
return IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent;
|
|
57
|
+
},
|
|
58
|
+
enumerable: true,
|
|
59
|
+
configurable: true
|
|
60
|
+
});
|
|
61
|
+
IgcToolActionCheckboxComponent.register = function () {
|
|
62
|
+
if (!IgcToolActionCheckboxComponent._isElementRegistered) {
|
|
63
|
+
IgcToolActionCheckboxComponent._isElementRegistered = true;
|
|
64
|
+
RegisterElementHelper.registerElement(IgcToolActionCheckboxComponent.htmlTagName, IgcToolActionCheckboxComponent);
|
|
65
|
+
}
|
|
66
|
+
};
|
|
67
|
+
IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent = null;
|
|
68
|
+
IgcToolActionCheckboxComponent.htmlTagName = "igc-tool-action-checkbox";
|
|
69
|
+
IgcToolActionCheckboxComponent._isElementRegistered = false;
|
|
70
|
+
return IgcToolActionCheckboxComponent;
|
|
71
|
+
}(IgcToolActionComponent));
|
|
72
|
+
export { IgcToolActionCheckboxComponent };
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { IgcToolActionCheckboxComponent } from './igc-tool-action-checkbox-component';
|
|
8
|
+
import { ToolActionCheckbox } from './ToolActionCheckbox';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
var IgcToolActionCheckboxModule = /** @class */ /*@__PURE__*/ (function () {
|
|
11
|
+
function IgcToolActionCheckboxModule() {
|
|
12
|
+
}
|
|
13
|
+
IgcToolActionCheckboxModule.register = function () {
|
|
14
|
+
IgcToolActionCheckboxComponent.register();
|
|
15
|
+
TypeRegistrar.registerCons("IgcToolActionCheckboxComponent", IgcToolActionCheckboxComponent);
|
|
16
|
+
TypeRegistrar.register("ToolActionCheckbox", ToolActionCheckbox.$type);
|
|
17
|
+
};
|
|
18
|
+
return IgcToolActionCheckboxModule;
|
|
19
|
+
}());
|
|
20
|
+
export { IgcToolActionCheckboxModule };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import * as tslib_1 from "tslib";
|
|
2
|
+
import { IgCollection } from "igniteui-webcomponents-core";
|
|
3
|
+
import { markType } from "igniteui-webcomponents-core";
|
|
4
|
+
import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
|
|
5
|
+
import { ToolAction as ToolAction_internal } from './ToolAction';
|
|
6
|
+
import { IgcToolActionComponent as IgcToolActionComponent } from './igc-tool-action-component';
|
|
7
|
+
var IgcToolActionCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
8
|
+
tslib_1.__extends(IgcToolActionCollection, _super);
|
|
9
|
+
function IgcToolActionCollection(list) {
|
|
10
|
+
var _this = _super.call(this) || this;
|
|
11
|
+
if (!IgcToolActionComponent.$type) {
|
|
12
|
+
IgcToolActionComponent.$type = markType(IgcToolActionComponent, "IgcToolActionComponent");
|
|
13
|
+
}
|
|
14
|
+
if (list) {
|
|
15
|
+
for (var i = 0; i < list.length; i++) {
|
|
16
|
+
_this.add(list[i]);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
return _this;
|
|
20
|
+
}
|
|
21
|
+
IgcToolActionCollection.prototype._createInnerColl = function () {
|
|
22
|
+
if (!IgcToolActionComponent.$type) {
|
|
23
|
+
IgcToolActionComponent.$type = markType(IgcToolActionComponent, "IgcToolActionComponent");
|
|
24
|
+
}
|
|
25
|
+
var coll = new SyncableObservableCollection$2(IgcToolActionComponent.$type, ToolAction_internal.$type, 0);
|
|
26
|
+
coll.compare = function (ext, int) {
|
|
27
|
+
var comp = ext;
|
|
28
|
+
if (comp._implementation) {
|
|
29
|
+
comp = comp._implementation;
|
|
30
|
+
}
|
|
31
|
+
if (comp.equals) {
|
|
32
|
+
return comp.equals(int);
|
|
33
|
+
}
|
|
34
|
+
return comp === int;
|
|
35
|
+
};
|
|
36
|
+
coll.createTo = function (ext) {
|
|
37
|
+
return ext._implementation;
|
|
38
|
+
};
|
|
39
|
+
coll.createFrom = function (int) {
|
|
40
|
+
var ext = int.externalObject;
|
|
41
|
+
if (!ext) {
|
|
42
|
+
ext = new IgcToolActionComponent();
|
|
43
|
+
if (ext) {
|
|
44
|
+
ext._implementation = int;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return ext;
|
|
48
|
+
};
|
|
49
|
+
return coll;
|
|
50
|
+
};
|
|
51
|
+
return IgcToolActionCollection;
|
|
52
|
+
}(IgCollection));
|
|
53
|
+
export { IgcToolActionCollection };
|