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,48 @@
|
|
|
1
|
+
import { IgCollection } from "igniteui-webcomponents-core";
|
|
2
|
+
import { markType } from "igniteui-webcomponents-core";
|
|
3
|
+
import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
|
|
4
|
+
import { ToolActionEventDetail as ToolActionEventDetail_internal } from './ToolActionEventDetail';
|
|
5
|
+
import { IgcToolActionEventDetail as IgcToolActionEventDetail } from './igc-tool-action-event-detail';
|
|
6
|
+
export class IgcToolActionEventDetailCollection extends IgCollection {
|
|
7
|
+
constructor(list) {
|
|
8
|
+
super();
|
|
9
|
+
if (!IgcToolActionEventDetail.$type) {
|
|
10
|
+
IgcToolActionEventDetail.$type = markType(IgcToolActionEventDetail, "IgcToolActionEventDetail");
|
|
11
|
+
}
|
|
12
|
+
if (list) {
|
|
13
|
+
for (let i = 0; i < list.length; i++) {
|
|
14
|
+
this.add(list[i]);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
_createInnerColl() {
|
|
19
|
+
if (!IgcToolActionEventDetail.$type) {
|
|
20
|
+
IgcToolActionEventDetail.$type = markType(IgcToolActionEventDetail, "IgcToolActionEventDetail");
|
|
21
|
+
}
|
|
22
|
+
let coll = new SyncableObservableCollection$2(IgcToolActionEventDetail.$type, ToolActionEventDetail_internal.$type, 0);
|
|
23
|
+
coll.compare = (ext, int) => {
|
|
24
|
+
let comp = ext;
|
|
25
|
+
if (comp._implementation) {
|
|
26
|
+
comp = comp._implementation;
|
|
27
|
+
}
|
|
28
|
+
if (comp.equals) {
|
|
29
|
+
return comp.equals(int);
|
|
30
|
+
}
|
|
31
|
+
return comp === int;
|
|
32
|
+
};
|
|
33
|
+
coll.createTo = (ext) => {
|
|
34
|
+
return ext._implementation;
|
|
35
|
+
};
|
|
36
|
+
coll.createFrom = (int) => {
|
|
37
|
+
let ext = int.externalObject;
|
|
38
|
+
if (!ext) {
|
|
39
|
+
ext = new IgcToolActionEventDetail();
|
|
40
|
+
if (ext) {
|
|
41
|
+
ext._implementation = int;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return ext;
|
|
45
|
+
};
|
|
46
|
+
return coll;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionType_$type } from "igniteui-webcomponents-core";
|
|
3
|
+
import { ToolActionEventDetail as ToolActionEventDetail_internal } from "./ToolActionEventDetail";
|
|
4
|
+
import { ensureEnum, ensureBool } from "igniteui-webcomponents-core";
|
|
5
|
+
export class IgcToolActionEventDetail {
|
|
6
|
+
createImplementation() {
|
|
7
|
+
return new ToolActionEventDetail_internal();
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
get i() {
|
|
13
|
+
return this._implementation;
|
|
14
|
+
}
|
|
15
|
+
onImplementationCreated() {
|
|
16
|
+
}
|
|
17
|
+
constructor() {
|
|
18
|
+
this._implementation = this.createImplementation();
|
|
19
|
+
this._implementation.externalObject = this;
|
|
20
|
+
this.onImplementationCreated();
|
|
21
|
+
}
|
|
22
|
+
_provideImplementation(i) {
|
|
23
|
+
this._implementation = i;
|
|
24
|
+
this._implementation.externalObject = this;
|
|
25
|
+
this.onImplementationCreated();
|
|
26
|
+
}
|
|
27
|
+
get action() {
|
|
28
|
+
const r = this.i.a;
|
|
29
|
+
if (r == null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
if (!r.externalObject) {
|
|
33
|
+
let e = IgcToolActionComponent._createFromInternal(r);
|
|
34
|
+
if (e) {
|
|
35
|
+
e._implementation = r;
|
|
36
|
+
}
|
|
37
|
+
r.externalObject = e;
|
|
38
|
+
}
|
|
39
|
+
return r.externalObject;
|
|
40
|
+
}
|
|
41
|
+
set action(v) {
|
|
42
|
+
v == null ? this.i.a = null : this.i.a = v.i;
|
|
43
|
+
}
|
|
44
|
+
get actionType() {
|
|
45
|
+
return this.i.b;
|
|
46
|
+
}
|
|
47
|
+
set actionType(v) {
|
|
48
|
+
this.i.b = ensureEnum(ToolActionType_$type, v);
|
|
49
|
+
}
|
|
50
|
+
get isModified() {
|
|
51
|
+
return this.i.d;
|
|
52
|
+
}
|
|
53
|
+
set isModified(v) {
|
|
54
|
+
this.i.d = ensureBool(v);
|
|
55
|
+
}
|
|
56
|
+
get boolValue() {
|
|
57
|
+
return this.i.c;
|
|
58
|
+
}
|
|
59
|
+
set boolValue(v) {
|
|
60
|
+
this.i.c = ensureBool(v);
|
|
61
|
+
}
|
|
62
|
+
get numberValue() {
|
|
63
|
+
return this.i.f;
|
|
64
|
+
}
|
|
65
|
+
set numberValue(v) {
|
|
66
|
+
this.i.f = +v;
|
|
67
|
+
}
|
|
68
|
+
get dateTimeValue() {
|
|
69
|
+
return this.i.e;
|
|
70
|
+
}
|
|
71
|
+
set dateTimeValue(v) {
|
|
72
|
+
this.i.e = v;
|
|
73
|
+
}
|
|
74
|
+
get untypedValue() {
|
|
75
|
+
return this.i.g;
|
|
76
|
+
}
|
|
77
|
+
set untypedValue(v) {
|
|
78
|
+
this.i.g = v;
|
|
79
|
+
}
|
|
80
|
+
findByName(name) {
|
|
81
|
+
if (this.findEphemera) {
|
|
82
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
83
|
+
return this.findEphemera(name);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
if (this.action && this.action.name && this.action.name == name) {
|
|
87
|
+
return this.action;
|
|
88
|
+
}
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionGroupHeader } from "./ToolActionGroupHeader";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionGroupHeaderComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionGroupHeaderComponent extends IgcToolActionComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionGroupHeader();
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get i() {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
}
|
|
19
|
+
connectedCallback() {
|
|
20
|
+
if (super["connectedCallback"]) {
|
|
21
|
+
super["connectedCallback"]();
|
|
22
|
+
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
26
|
+
if (!this._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
static get observedAttributes() {
|
|
43
|
+
if (IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent == null) {
|
|
44
|
+
let names = getAllPropertyNames(IgcToolActionGroupHeaderComponent);
|
|
45
|
+
for (let i = 0; i < names.length; i++) {
|
|
46
|
+
names[i] = toSpinal(names[i]);
|
|
47
|
+
}
|
|
48
|
+
IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent = names;
|
|
49
|
+
}
|
|
50
|
+
return IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent;
|
|
51
|
+
}
|
|
52
|
+
static register() {
|
|
53
|
+
if (!IgcToolActionGroupHeaderComponent._isElementRegistered) {
|
|
54
|
+
IgcToolActionGroupHeaderComponent._isElementRegistered = true;
|
|
55
|
+
RegisterElementHelper.registerElement(IgcToolActionGroupHeaderComponent.htmlTagName, IgcToolActionGroupHeaderComponent);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent = null;
|
|
60
|
+
IgcToolActionGroupHeaderComponent.htmlTagName = "igc-tool-action-group-header";
|
|
61
|
+
IgcToolActionGroupHeaderComponent._isElementRegistered = false;
|
|
62
|
+
return IgcToolActionGroupHeaderComponent;
|
|
63
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { IgcToolActionGroupHeaderComponent } from './igc-tool-action-group-header-component';
|
|
8
|
+
import { ToolActionGroupHeader } from './ToolActionGroupHeader';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionGroupHeaderModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionGroupHeaderComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionGroupHeaderComponent", IgcToolActionGroupHeaderComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionGroupHeader", ToolActionGroupHeader.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionIconButton } from "./ToolActionIconButton";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionIconButtonComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionIconButtonComponent extends IgcToolActionComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionIconButton();
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get i() {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
}
|
|
19
|
+
connectedCallback() {
|
|
20
|
+
if (super["connectedCallback"]) {
|
|
21
|
+
super["connectedCallback"]();
|
|
22
|
+
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
26
|
+
if (!this._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
static get observedAttributes() {
|
|
43
|
+
if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
|
|
44
|
+
let names = getAllPropertyNames(IgcToolActionIconButtonComponent);
|
|
45
|
+
for (let i = 0; i < names.length; i++) {
|
|
46
|
+
names[i] = toSpinal(names[i]);
|
|
47
|
+
}
|
|
48
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = names;
|
|
49
|
+
}
|
|
50
|
+
return IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent;
|
|
51
|
+
}
|
|
52
|
+
static register() {
|
|
53
|
+
if (!IgcToolActionIconButtonComponent._isElementRegistered) {
|
|
54
|
+
IgcToolActionIconButtonComponent._isElementRegistered = true;
|
|
55
|
+
RegisterElementHelper.registerElement(IgcToolActionIconButtonComponent.htmlTagName, IgcToolActionIconButtonComponent);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
|
|
60
|
+
IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
|
|
61
|
+
IgcToolActionIconButtonComponent._isElementRegistered = false;
|
|
62
|
+
return IgcToolActionIconButtonComponent;
|
|
63
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { IgcToolActionIconButtonComponent } from './igc-tool-action-icon-button-component';
|
|
8
|
+
import { ToolActionIconButton } from './ToolActionIconButton';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionIconButtonModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionIconButtonComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionIconButtonComponent", IgcToolActionIconButtonComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionIconButton", ToolActionIconButton.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { IgcToolActionMenuBaseComponent } from "./igc-tool-action-menu-base-component";
|
|
2
|
+
import { ToolActionIconMenu } from "./ToolActionIconMenu";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionIconMenuComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionIconMenuComponent extends IgcToolActionMenuBaseComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionIconMenu();
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get i() {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
}
|
|
19
|
+
connectedCallback() {
|
|
20
|
+
if (super["connectedCallback"]) {
|
|
21
|
+
super["connectedCallback"]();
|
|
22
|
+
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
26
|
+
if (!this._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
static get observedAttributes() {
|
|
43
|
+
if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
|
|
44
|
+
let names = getAllPropertyNames(IgcToolActionIconMenuComponent);
|
|
45
|
+
for (let i = 0; i < names.length; i++) {
|
|
46
|
+
names[i] = toSpinal(names[i]);
|
|
47
|
+
}
|
|
48
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
|
|
49
|
+
}
|
|
50
|
+
return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
|
|
51
|
+
}
|
|
52
|
+
static register() {
|
|
53
|
+
if (!IgcToolActionIconMenuComponent._isElementRegistered) {
|
|
54
|
+
IgcToolActionIconMenuComponent._isElementRegistered = true;
|
|
55
|
+
RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
|
|
60
|
+
IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
|
|
61
|
+
IgcToolActionIconMenuComponent._isElementRegistered = false;
|
|
62
|
+
return IgcToolActionIconMenuComponent;
|
|
63
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { IgcToolActionIconMenuComponent } from './igc-tool-action-icon-menu-component';
|
|
8
|
+
import { ToolActionIconMenu } from './ToolActionIconMenu';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionIconMenuModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionIconMenuComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionLabel } from "./ToolActionLabel";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionLabelComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionLabelComponent extends IgcToolActionComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionLabel();
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get i() {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
}
|
|
19
|
+
connectedCallback() {
|
|
20
|
+
if (super["connectedCallback"]) {
|
|
21
|
+
super["connectedCallback"]();
|
|
22
|
+
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
26
|
+
if (!this._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
static get observedAttributes() {
|
|
43
|
+
if (IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent == null) {
|
|
44
|
+
let names = getAllPropertyNames(IgcToolActionLabelComponent);
|
|
45
|
+
for (let i = 0; i < names.length; i++) {
|
|
46
|
+
names[i] = toSpinal(names[i]);
|
|
47
|
+
}
|
|
48
|
+
IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = names;
|
|
49
|
+
}
|
|
50
|
+
return IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent;
|
|
51
|
+
}
|
|
52
|
+
static register() {
|
|
53
|
+
if (!IgcToolActionLabelComponent._isElementRegistered) {
|
|
54
|
+
IgcToolActionLabelComponent._isElementRegistered = true;
|
|
55
|
+
RegisterElementHelper.registerElement(IgcToolActionLabelComponent.htmlTagName, IgcToolActionLabelComponent);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = null;
|
|
60
|
+
IgcToolActionLabelComponent.htmlTagName = "igc-tool-action-label";
|
|
61
|
+
IgcToolActionLabelComponent._isElementRegistered = false;
|
|
62
|
+
return IgcToolActionLabelComponent;
|
|
63
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { IgcToolActionLabelComponent } from './igc-tool-action-label-component';
|
|
8
|
+
import { ToolActionLabel } from './ToolActionLabel';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionLabelModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionLabelComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionLabelComponent", IgcToolActionLabelComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionLabel", ToolActionLabel.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { IgcToolActionCollection } from "./igc-tool-action-collection";
|
|
2
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { ToolActionCollection as ToolActionCollection_internal } from "./ToolActionCollection";
|
|
5
|
+
import { ToolAction } from "./ToolAction";
|
|
6
|
+
import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
7
|
+
/**
|
|
8
|
+
* Represents base class for all tool actions in menu
|
|
9
|
+
*/
|
|
10
|
+
export let IgcToolActionMenuBaseComponent = /*@__PURE__*/ (() => {
|
|
11
|
+
class IgcToolActionMenuBaseComponent extends IgcToolActionComponent {
|
|
12
|
+
constructor() {
|
|
13
|
+
super();
|
|
14
|
+
this._actions = null;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
get i() {
|
|
20
|
+
return this._implementation;
|
|
21
|
+
}
|
|
22
|
+
connectedCallback() {
|
|
23
|
+
if (super["connectedCallback"]) {
|
|
24
|
+
super["connectedCallback"]();
|
|
25
|
+
}
|
|
26
|
+
if (this.i.connectedCallback) {
|
|
27
|
+
this.i.connectedCallback();
|
|
28
|
+
}
|
|
29
|
+
if (!this._attached) {
|
|
30
|
+
this._attached = true;
|
|
31
|
+
this._flushQueuedAttributes();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
disconnectedCallback() {
|
|
35
|
+
if (super["disconnectedCallback"]) {
|
|
36
|
+
super["disconnectedCallback"]();
|
|
37
|
+
}
|
|
38
|
+
if (this.i.disconnectedCallback) {
|
|
39
|
+
this.i.disconnectedCallback();
|
|
40
|
+
}
|
|
41
|
+
if (this._attached) {
|
|
42
|
+
this._attached = false;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
static get observedAttributes() {
|
|
46
|
+
if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
|
|
47
|
+
let names = getAllPropertyNames(IgcToolActionMenuBaseComponent);
|
|
48
|
+
for (let i = 0; i < names.length; i++) {
|
|
49
|
+
names[i] = toSpinal(names[i]);
|
|
50
|
+
}
|
|
51
|
+
IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = names;
|
|
52
|
+
}
|
|
53
|
+
return IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Gets or sets the data or data source instance to which to bind the grid.
|
|
57
|
+
*/
|
|
58
|
+
get actions() {
|
|
59
|
+
if (this._actions === null) {
|
|
60
|
+
let coll = new IgcToolActionCollection();
|
|
61
|
+
let innerColl = this.i.actions;
|
|
62
|
+
if (!innerColl) {
|
|
63
|
+
innerColl = new ToolActionCollection_internal();
|
|
64
|
+
}
|
|
65
|
+
this._actions = coll._fromInner(innerColl);
|
|
66
|
+
this.i.actions = innerColl;
|
|
67
|
+
}
|
|
68
|
+
return this._actions;
|
|
69
|
+
}
|
|
70
|
+
set actions(v) {
|
|
71
|
+
if (this._actions !== null) {
|
|
72
|
+
this._actions._setSyncTarget(null);
|
|
73
|
+
this._actions = null;
|
|
74
|
+
}
|
|
75
|
+
let coll = new IgcToolActionCollection();
|
|
76
|
+
this._actions = coll._fromOuter(v);
|
|
77
|
+
let syncColl = new SyncableObservableCollection$1(ToolAction.$type);
|
|
78
|
+
let innerColl = this.i.actions;
|
|
79
|
+
if (!innerColl) {
|
|
80
|
+
innerColl = new ToolActionCollection_internal();
|
|
81
|
+
}
|
|
82
|
+
syncColl._inner = innerColl;
|
|
83
|
+
syncColl.clear();
|
|
84
|
+
this._actions._setSyncTarget(syncColl);
|
|
85
|
+
this.i.actions = innerColl;
|
|
86
|
+
}
|
|
87
|
+
findByName(name) {
|
|
88
|
+
var baseResult = super.findByName(name);
|
|
89
|
+
if (baseResult) {
|
|
90
|
+
return baseResult;
|
|
91
|
+
}
|
|
92
|
+
if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
|
|
93
|
+
return this.actions.findByName(name);
|
|
94
|
+
}
|
|
95
|
+
return null;
|
|
96
|
+
}
|
|
97
|
+
fromInfo(info) {
|
|
98
|
+
this.i.a6(info);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = null;
|
|
102
|
+
return IgcToolActionMenuBaseComponent;
|
|
103
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { IgcToolActionComponent } from './igc-tool-action-component';
|
|
8
|
+
import { ToolAction } from './ToolAction';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionComponent", IgcToolActionComponent);
|
|
14
|
+
TypeRegistrar.register("ToolAction", ToolAction.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionNumberInput } from "./ToolActionNumberInput";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionNumberInputComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionNumberInputComponent extends IgcToolActionComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionNumberInput();
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get i() {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
}
|
|
19
|
+
connectedCallback() {
|
|
20
|
+
if (super["connectedCallback"]) {
|
|
21
|
+
super["connectedCallback"]();
|
|
22
|
+
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
26
|
+
if (!this._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
static get observedAttributes() {
|
|
43
|
+
if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
|
|
44
|
+
let names = getAllPropertyNames(IgcToolActionNumberInputComponent);
|
|
45
|
+
for (let i = 0; i < names.length; i++) {
|
|
46
|
+
names[i] = toSpinal(names[i]);
|
|
47
|
+
}
|
|
48
|
+
IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = names;
|
|
49
|
+
}
|
|
50
|
+
return IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent;
|
|
51
|
+
}
|
|
52
|
+
static register() {
|
|
53
|
+
if (!IgcToolActionNumberInputComponent._isElementRegistered) {
|
|
54
|
+
IgcToolActionNumberInputComponent._isElementRegistered = true;
|
|
55
|
+
RegisterElementHelper.registerElement(IgcToolActionNumberInputComponent.htmlTagName, IgcToolActionNumberInputComponent);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = null;
|
|
60
|
+
IgcToolActionNumberInputComponent.htmlTagName = "igc-tool-action-number-input";
|
|
61
|
+
IgcToolActionNumberInputComponent._isElementRegistered = false;
|
|
62
|
+
return IgcToolActionNumberInputComponent;
|
|
63
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { IgcToolActionNumberInputComponent } from './igc-tool-action-number-input-component';
|
|
8
|
+
import { ToolActionNumberInput } from './ToolActionNumberInput';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionNumberInputModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionNumberInputComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionNumberInputComponent", IgcToolActionNumberInputComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionNumberInput", ToolActionNumberInput.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|