igniteui-webcomponents-layouts 3.2.2 → 3.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-layouts.umd.js +6913 -146
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/IExternalListPanel.js +11 -0
- package/esm2015/lib/IExternalToolPanel.js +11 -0
- package/esm2015/lib/IExternalToolbar.js +11 -0
- package/esm2015/lib/IListPanelView.js +11 -0
- package/esm2015/lib/IPropertyEditorPanelView.js +11 -0
- package/esm2015/lib/IToolPanelView.js +11 -0
- package/esm2015/lib/IToolbarView.js +11 -0
- package/esm2015/lib/ListPanel.js +7 -0
- package/esm2015/lib/ListPanelContentRefreshedEventArgs.js +19 -0
- package/esm2015/lib/ListPanelDataBindingEventArgs.js +22 -0
- package/esm2015/lib/ListPanelDataSourceNotificationBridge.js +7 -0
- package/esm2015/lib/ListPanelItemModel.js +62 -0
- package/esm2015/lib/ListPanelItemPresenter.js +20 -0
- package/esm2015/lib/ListPanelLayoutPanel.js +7 -0
- package/esm2015/lib/ListPanelOrientation.js +16 -0
- package/esm2015/lib/ListPanelTemplateHeightRequestedEventArgs.js +22 -0
- package/esm2015/lib/ListPanelTemplateItemUpdatingEventArgs.js +22 -0
- package/esm2015/lib/ListPanelTemplateWidthRequestedEventArgs.js +22 -0
- package/esm2015/lib/ListPanelView.js +7 -0
- package/esm2015/lib/ListPanelView_combined.js +972 -0
- package/esm2015/lib/PropertyEditorPanelView_combined.js +100 -100
- package/esm2015/lib/PropertyEditorTreeTransformer.js +8 -8
- package/esm2015/lib/ToolAction.js +7 -0
- package/esm2015/lib/ToolActionCheckbox.js +7 -0
- package/esm2015/lib/ToolActionCollection.js +7 -0
- package/esm2015/lib/ToolActionEventDetail.js +7 -0
- package/esm2015/lib/ToolActionEventDetailCollection.js +7 -0
- package/esm2015/lib/ToolActionGroupHeader.js +7 -0
- package/esm2015/lib/ToolActionIconButton.js +7 -0
- package/esm2015/lib/ToolActionIconMenu.js +7 -0
- package/esm2015/lib/ToolActionMeasurementContext.js +31 -0
- package/esm2015/lib/ToolActionMenuBase.js +7 -0
- package/esm2015/lib/ToolActionNumberInput.js +7 -0
- package/esm2015/lib/ToolActionPerformedEventArgs.js +7 -0
- package/esm2015/lib/ToolActionSeparator.js +7 -0
- package/esm2015/lib/ToolCommandEventArgs.js +20 -0
- package/esm2015/lib/ToolPanel.js +7 -0
- package/esm2015/lib/ToolPanelContentRefreshedEventArgs.js +19 -0
- package/esm2015/lib/ToolPanelOrientation.js +16 -0
- package/esm2015/lib/ToolPanelView.js +7 -0
- package/esm2015/lib/ToolPanelView_combined.js +1515 -0
- package/esm2015/lib/Toolbar.js +7 -0
- package/esm2015/lib/ToolbarIconManager.js +40 -0
- package/esm2015/lib/ToolbarOrientation.js +16 -0
- package/esm2015/lib/ToolbarView.js +7 -0
- package/esm2015/lib/ToolbarView_combined.js +387 -0
- package/esm2015/lib/igc-list-panel-component.js +457 -0
- package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
- package/esm2015/lib/igc-list-panel-item-model.js +52 -0
- package/esm2015/lib/igc-list-panel-module.js +17 -0
- package/esm2015/lib/igc-list-panel-template-height-requested-event-args.js +42 -0
- package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +45 -0
- package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
- package/esm2015/lib/igc-property-editor-panel-component.js +1 -5
- package/esm2015/lib/igc-tool-action-checkbox-component.js +49 -0
- package/esm2015/lib/igc-tool-action-checkbox-module.js +16 -0
- package/esm2015/lib/igc-tool-action-collection.js +48 -0
- package/esm2015/lib/igc-tool-action-component.js +312 -0
- package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
- package/esm2015/lib/igc-tool-action-event-detail.js +85 -0
- package/esm2015/lib/igc-tool-action-group-header-component.js +49 -0
- package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-button-component.js +49 -0
- package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +49 -0
- package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -0
- package/esm2015/lib/igc-tool-action-menu-base-component.js +89 -0
- package/esm2015/lib/igc-tool-action-module.js +16 -0
- package/esm2015/lib/igc-tool-action-number-input-component.js +49 -0
- package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
- package/esm2015/lib/igc-tool-action-performed-event-args.js +80 -0
- package/esm2015/lib/igc-tool-action-separator-component.js +49 -0
- package/esm2015/lib/igc-tool-action-separator-module.js +16 -0
- package/esm2015/lib/igc-tool-command-event-args.js +30 -0
- package/esm2015/lib/igc-tool-panel-component.js +379 -0
- package/esm2015/lib/igc-tool-panel-content-refreshed-event-args.js +24 -0
- package/esm2015/lib/igc-tool-panel-module.js +29 -0
- package/esm2015/lib/igc-toolbar-component.js +412 -0
- package/esm2015/lib/igc-toolbar-module.js +19 -0
- package/esm2015/public_api.js +73 -0
- package/esm5/lib/IExternalListPanel.js +11 -0
- package/esm5/lib/IExternalToolPanel.js +11 -0
- package/esm5/lib/IExternalToolbar.js +11 -0
- package/esm5/lib/IListPanelView.js +11 -0
- package/esm5/lib/IPropertyEditorPanelView.js +11 -0
- package/esm5/lib/IToolPanelView.js +11 -0
- package/esm5/lib/IToolbarView.js +11 -0
- package/esm5/lib/ListPanel.js +7 -0
- package/esm5/lib/ListPanelContentRefreshedEventArgs.js +20 -0
- package/esm5/lib/ListPanelDataBindingEventArgs.js +24 -0
- package/esm5/lib/ListPanelDataSourceNotificationBridge.js +7 -0
- package/esm5/lib/ListPanelItemModel.js +80 -0
- package/esm5/lib/ListPanelItemPresenter.js +22 -0
- package/esm5/lib/ListPanelLayoutPanel.js +7 -0
- package/esm5/lib/ListPanelOrientation.js +16 -0
- package/esm5/lib/ListPanelTemplateHeightRequestedEventArgs.js +24 -0
- package/esm5/lib/ListPanelTemplateItemUpdatingEventArgs.js +24 -0
- package/esm5/lib/ListPanelTemplateWidthRequestedEventArgs.js +24 -0
- package/esm5/lib/ListPanelView.js +7 -0
- package/esm5/lib/ListPanelView_combined.js +1045 -0
- package/esm5/lib/PropertyEditorPanelView_combined.js +100 -100
- package/esm5/lib/PropertyEditorTreeTransformer.js +8 -8
- package/esm5/lib/ToolAction.js +7 -0
- package/esm5/lib/ToolActionCheckbox.js +7 -0
- package/esm5/lib/ToolActionCollection.js +7 -0
- package/esm5/lib/ToolActionEventDetail.js +7 -0
- package/esm5/lib/ToolActionEventDetailCollection.js +7 -0
- package/esm5/lib/ToolActionGroupHeader.js +7 -0
- package/esm5/lib/ToolActionIconButton.js +7 -0
- package/esm5/lib/ToolActionIconMenu.js +7 -0
- package/esm5/lib/ToolActionMeasurementContext.js +33 -0
- package/esm5/lib/ToolActionMenuBase.js +7 -0
- package/esm5/lib/ToolActionNumberInput.js +7 -0
- package/esm5/lib/ToolActionPerformedEventArgs.js +7 -0
- package/esm5/lib/ToolActionSeparator.js +7 -0
- package/esm5/lib/ToolCommandEventArgs.js +22 -0
- package/esm5/lib/ToolPanel.js +7 -0
- package/esm5/lib/ToolPanelContentRefreshedEventArgs.js +20 -0
- package/esm5/lib/ToolPanelOrientation.js +16 -0
- package/esm5/lib/ToolPanelView.js +7 -0
- package/esm5/lib/ToolPanelView_combined.js +1663 -0
- package/esm5/lib/Toolbar.js +7 -0
- package/esm5/lib/ToolbarIconManager.js +44 -0
- package/esm5/lib/ToolbarOrientation.js +16 -0
- package/esm5/lib/ToolbarView.js +7 -0
- package/esm5/lib/ToolbarView_combined.js +459 -0
- package/esm5/lib/igc-list-panel-component.js +535 -0
- package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
- package/esm5/lib/igc-list-panel-item-model.js +74 -0
- package/esm5/lib/igc-list-panel-module.js +21 -0
- package/esm5/lib/igc-list-panel-template-height-requested-event-args.js +60 -0
- package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +59 -0
- package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
- package/esm5/lib/igc-property-editor-panel-component.js +1 -5
- package/esm5/lib/igc-tool-action-checkbox-component.js +58 -0
- package/esm5/lib/igc-tool-action-checkbox-module.js +20 -0
- package/esm5/lib/igc-tool-action-collection.js +53 -0
- package/esm5/lib/igc-tool-action-component.js +388 -0
- package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
- package/esm5/lib/igc-tool-action-event-detail.js +119 -0
- package/esm5/lib/igc-tool-action-group-header-component.js +58 -0
- package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-button-component.js +58 -0
- package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-menu-component.js +58 -0
- package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -0
- package/esm5/lib/igc-tool-action-menu-base-component.js +103 -0
- package/esm5/lib/igc-tool-action-module.js +20 -0
- package/esm5/lib/igc-tool-action-number-input-component.js +58 -0
- package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
- package/esm5/lib/igc-tool-action-performed-event-args.js +98 -0
- package/esm5/lib/igc-tool-action-separator-component.js +58 -0
- package/esm5/lib/igc-tool-action-separator-module.js +20 -0
- package/esm5/lib/igc-tool-command-event-args.js +40 -0
- package/esm5/lib/igc-tool-panel-component.js +449 -0
- package/esm5/lib/igc-tool-panel-content-refreshed-event-args.js +30 -0
- package/esm5/lib/igc-tool-panel-module.js +33 -0
- package/esm5/lib/igc-toolbar-component.js +484 -0
- package/esm5/lib/igc-toolbar-module.js +23 -0
- package/esm5/public_api.js +73 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +6038 -148
- package/fesm5/igniteui-webcomponents-layouts.js +6839 -148
- package/lib/IExternalListPanel.d.ts +13 -0
- package/lib/IExternalToolPanel.d.ts +13 -0
- package/lib/IExternalToolbar.d.ts +13 -0
- package/lib/IListPanelView.d.ts +25 -0
- package/lib/IPropertyEditorPanelView.d.ts +26 -0
- package/lib/IToolPanelView.d.ts +25 -0
- package/lib/IToolbarView.d.ts +25 -0
- package/lib/ListPanel.d.ts +1 -0
- package/lib/ListPanelContentRefreshedEventArgs.d.ts +8 -0
- package/lib/ListPanelDataBindingEventArgs.d.ts +10 -0
- package/lib/ListPanelDataSourceNotificationBridge.d.ts +1 -0
- package/lib/ListPanelItemModel.d.ts +22 -0
- package/lib/ListPanelItemPresenter.d.ts +9 -0
- package/lib/ListPanelLayoutPanel.d.ts +1 -0
- package/lib/ListPanelOrientation.d.ts +9 -0
- package/lib/ListPanelTemplateHeightRequestedEventArgs.d.ts +10 -0
- package/lib/ListPanelTemplateItemUpdatingEventArgs.d.ts +12 -0
- package/lib/ListPanelTemplateWidthRequestedEventArgs.d.ts +10 -0
- package/lib/ListPanelView.d.ts +1 -0
- package/lib/ListPanelView_combined.d.ts +197 -0
- package/lib/PropertyEditorPanelView_combined.d.ts +1 -1
- package/lib/ToolAction.d.ts +1 -0
- package/lib/ToolActionCheckbox.d.ts +1 -0
- package/lib/ToolActionCollection.d.ts +1 -0
- package/lib/ToolActionEventDetail.d.ts +1 -0
- package/lib/ToolActionEventDetailCollection.d.ts +1 -0
- package/lib/ToolActionGroupHeader.d.ts +1 -0
- package/lib/ToolActionIconButton.d.ts +1 -0
- package/lib/ToolActionIconMenu.d.ts +1 -0
- package/lib/ToolActionMeasurementContext.d.ts +16 -0
- package/lib/ToolActionMenuBase.d.ts +1 -0
- package/lib/ToolActionNumberInput.d.ts +1 -0
- package/lib/ToolActionPerformedEventArgs.d.ts +1 -0
- package/lib/ToolActionSeparator.d.ts +1 -0
- package/lib/ToolCommandEventArgs.d.ts +10 -0
- package/lib/ToolPanel.d.ts +1 -0
- package/lib/ToolPanelContentRefreshedEventArgs.d.ts +8 -0
- package/lib/ToolPanelOrientation.d.ts +9 -0
- package/lib/ToolPanelView.d.ts +1 -0
- package/lib/ToolPanelView_combined.d.ts +328 -0
- package/lib/Toolbar.d.ts +1 -0
- package/lib/ToolbarIconManager.d.ts +10 -0
- package/lib/ToolbarOrientation.d.ts +9 -0
- package/lib/ToolbarView.d.ts +1 -0
- package/lib/ToolbarView_combined.d.ts +98 -0
- package/lib/igc-list-panel-component.d.ts +122 -0
- package/lib/igc-list-panel-content-refreshed-event-args.d.ts +12 -0
- package/lib/igc-list-panel-item-model.d.ts +17 -0
- package/lib/igc-list-panel-module.d.ts +3 -0
- package/lib/igc-list-panel-template-height-requested-event-args.d.ts +15 -0
- package/lib/igc-list-panel-template-item-updating-event-args.d.ts +15 -0
- package/lib/igc-list-panel-template-width-requested-event-args.d.ts +15 -0
- package/lib/igc-property-editor-panel-component.d.ts +0 -2
- package/lib/igc-tool-action-checkbox-component.d.ts +16 -0
- package/lib/igc-tool-action-checkbox-module.d.ts +3 -0
- package/lib/igc-tool-action-collection.d.ts +8 -0
- package/lib/igc-tool-action-component.d.ts +64 -0
- package/lib/igc-tool-action-event-detail-collection.d.ts +8 -0
- package/lib/igc-tool-action-event-detail.d.ts +22 -0
- package/lib/igc-tool-action-group-header-component.d.ts +16 -0
- package/lib/igc-tool-action-group-header-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-button-component.d.ts +16 -0
- package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-menu-component.d.ts +16 -0
- package/lib/igc-tool-action-icon-menu-module.d.ts +3 -0
- package/lib/igc-tool-action-menu-base-component.d.ts +24 -0
- package/lib/igc-tool-action-module.d.ts +3 -0
- package/lib/igc-tool-action-number-input-component.d.ts +16 -0
- package/lib/igc-tool-action-number-input-module.d.ts +3 -0
- package/lib/igc-tool-action-performed-event-args.d.ts +18 -0
- package/lib/igc-tool-action-separator-component.d.ts +16 -0
- package/lib/igc-tool-action-separator-module.d.ts +3 -0
- package/lib/igc-tool-command-event-args.d.ts +14 -0
- package/lib/igc-tool-panel-component.d.ts +83 -0
- package/lib/igc-tool-panel-content-refreshed-event-args.d.ts +12 -0
- package/lib/igc-tool-panel-module.d.ts +3 -0
- package/lib/igc-toolbar-component.d.ts +89 -0
- package/lib/igc-toolbar-module.d.ts +3 -0
- package/package.json +3 -3
- package/public_api.d.ts +73 -0
|
@@ -0,0 +1,49 @@
|
|
|
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._attached) {
|
|
24
|
+
this._attached = true;
|
|
25
|
+
this._flushQueuedAttributes();
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
static get observedAttributes() {
|
|
29
|
+
if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
|
|
30
|
+
let names = getAllPropertyNames(IgcToolActionIconButtonComponent);
|
|
31
|
+
for (let i = 0; i < names.length; i++) {
|
|
32
|
+
names[i] = toSpinal(names[i]);
|
|
33
|
+
}
|
|
34
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = names;
|
|
35
|
+
}
|
|
36
|
+
return IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent;
|
|
37
|
+
}
|
|
38
|
+
static register() {
|
|
39
|
+
if (!IgcToolActionIconButtonComponent._isElementRegistered) {
|
|
40
|
+
IgcToolActionIconButtonComponent._isElementRegistered = true;
|
|
41
|
+
RegisterElementHelper.registerElement(IgcToolActionIconButtonComponent.htmlTagName, IgcToolActionIconButtonComponent);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
|
|
46
|
+
IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
|
|
47
|
+
IgcToolActionIconButtonComponent._isElementRegistered = false;
|
|
48
|
+
return IgcToolActionIconButtonComponent;
|
|
49
|
+
})();
|
|
@@ -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,49 @@
|
|
|
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._attached) {
|
|
24
|
+
this._attached = true;
|
|
25
|
+
this._flushQueuedAttributes();
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
static get observedAttributes() {
|
|
29
|
+
if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
|
|
30
|
+
let names = getAllPropertyNames(IgcToolActionIconMenuComponent);
|
|
31
|
+
for (let i = 0; i < names.length; i++) {
|
|
32
|
+
names[i] = toSpinal(names[i]);
|
|
33
|
+
}
|
|
34
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
|
|
35
|
+
}
|
|
36
|
+
return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
|
|
37
|
+
}
|
|
38
|
+
static register() {
|
|
39
|
+
if (!IgcToolActionIconMenuComponent._isElementRegistered) {
|
|
40
|
+
IgcToolActionIconMenuComponent._isElementRegistered = true;
|
|
41
|
+
RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
|
|
46
|
+
IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
|
|
47
|
+
IgcToolActionIconMenuComponent._isElementRegistered = false;
|
|
48
|
+
return IgcToolActionIconMenuComponent;
|
|
49
|
+
})();
|
|
@@ -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,89 @@
|
|
|
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._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
static get observedAttributes() {
|
|
32
|
+
if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
|
|
33
|
+
let names = getAllPropertyNames(IgcToolActionMenuBaseComponent);
|
|
34
|
+
for (let i = 0; i < names.length; i++) {
|
|
35
|
+
names[i] = toSpinal(names[i]);
|
|
36
|
+
}
|
|
37
|
+
IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = names;
|
|
38
|
+
}
|
|
39
|
+
return IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Gets or sets the data or data source instance to which to bind the grid.
|
|
43
|
+
*/
|
|
44
|
+
get actions() {
|
|
45
|
+
if (this._actions === null) {
|
|
46
|
+
let coll = new IgcToolActionCollection();
|
|
47
|
+
let innerColl = this.i.actions;
|
|
48
|
+
if (!innerColl) {
|
|
49
|
+
innerColl = new ToolActionCollection_internal();
|
|
50
|
+
}
|
|
51
|
+
this._actions = coll._fromInner(innerColl);
|
|
52
|
+
this.i.actions = innerColl;
|
|
53
|
+
}
|
|
54
|
+
return this._actions;
|
|
55
|
+
}
|
|
56
|
+
set actions(v) {
|
|
57
|
+
if (this._actions !== null) {
|
|
58
|
+
this._actions._setSyncTarget(null);
|
|
59
|
+
this._actions = null;
|
|
60
|
+
}
|
|
61
|
+
let coll = new IgcToolActionCollection();
|
|
62
|
+
this._actions = coll._fromOuter(v);
|
|
63
|
+
let syncColl = new SyncableObservableCollection$1(ToolAction.$type);
|
|
64
|
+
let innerColl = this.i.actions;
|
|
65
|
+
if (!innerColl) {
|
|
66
|
+
innerColl = new ToolActionCollection_internal();
|
|
67
|
+
}
|
|
68
|
+
syncColl._inner = innerColl;
|
|
69
|
+
syncColl.clear();
|
|
70
|
+
this._actions._setSyncTarget(syncColl);
|
|
71
|
+
this.i.actions = innerColl;
|
|
72
|
+
}
|
|
73
|
+
findByName(name) {
|
|
74
|
+
var baseResult = super.findByName(name);
|
|
75
|
+
if (baseResult) {
|
|
76
|
+
return baseResult;
|
|
77
|
+
}
|
|
78
|
+
if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
|
|
79
|
+
return this.actions.findByName(name);
|
|
80
|
+
}
|
|
81
|
+
return null;
|
|
82
|
+
}
|
|
83
|
+
fromInfo(info) {
|
|
84
|
+
this.i.a6(info);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = null;
|
|
88
|
+
return IgcToolActionMenuBaseComponent;
|
|
89
|
+
})();
|
|
@@ -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,49 @@
|
|
|
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._attached) {
|
|
24
|
+
this._attached = true;
|
|
25
|
+
this._flushQueuedAttributes();
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
static get observedAttributes() {
|
|
29
|
+
if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
|
|
30
|
+
let names = getAllPropertyNames(IgcToolActionNumberInputComponent);
|
|
31
|
+
for (let i = 0; i < names.length; i++) {
|
|
32
|
+
names[i] = toSpinal(names[i]);
|
|
33
|
+
}
|
|
34
|
+
IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = names;
|
|
35
|
+
}
|
|
36
|
+
return IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent;
|
|
37
|
+
}
|
|
38
|
+
static register() {
|
|
39
|
+
if (!IgcToolActionNumberInputComponent._isElementRegistered) {
|
|
40
|
+
IgcToolActionNumberInputComponent._isElementRegistered = true;
|
|
41
|
+
RegisterElementHelper.registerElement(IgcToolActionNumberInputComponent.htmlTagName, IgcToolActionNumberInputComponent);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = null;
|
|
46
|
+
IgcToolActionNumberInputComponent.htmlTagName = "igc-tool-action-number-input";
|
|
47
|
+
IgcToolActionNumberInputComponent._isElementRegistered = false;
|
|
48
|
+
return IgcToolActionNumberInputComponent;
|
|
49
|
+
})();
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { IgcToolActionEventDetail } from "./igc-tool-action-event-detail";
|
|
2
|
+
import { IgcToolActionEventDetailCollection } from "./igc-tool-action-event-detail-collection";
|
|
3
|
+
import { ToolActionPerformedEventArgs as ToolActionPerformedEventArgs_internal } from "./ToolActionPerformedEventArgs";
|
|
4
|
+
import { ensureBool } from "igniteui-webcomponents-core";
|
|
5
|
+
import { ToolActionEventDetailCollection as ToolActionEventDetailCollection_internal } from "./ToolActionEventDetailCollection";
|
|
6
|
+
import { ToolActionEventDetail } from "./ToolActionEventDetail";
|
|
7
|
+
import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
8
|
+
export class IgcToolActionPerformedEventArgs {
|
|
9
|
+
constructor() {
|
|
10
|
+
this._detailCollection = null;
|
|
11
|
+
this._implementation = this.createImplementation();
|
|
12
|
+
this._implementation.externalObject = this;
|
|
13
|
+
this.onImplementationCreated();
|
|
14
|
+
}
|
|
15
|
+
createImplementation() {
|
|
16
|
+
return new ToolActionPerformedEventArgs_internal();
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @hidden
|
|
20
|
+
*/
|
|
21
|
+
get i() {
|
|
22
|
+
return this._implementation;
|
|
23
|
+
}
|
|
24
|
+
onImplementationCreated() {
|
|
25
|
+
}
|
|
26
|
+
_provideImplementation(i) {
|
|
27
|
+
this._implementation = i;
|
|
28
|
+
this._implementation.externalObject = this;
|
|
29
|
+
this.onImplementationCreated();
|
|
30
|
+
}
|
|
31
|
+
get isAggregate() {
|
|
32
|
+
return this.i.c;
|
|
33
|
+
}
|
|
34
|
+
set isAggregate(v) {
|
|
35
|
+
this.i.c = ensureBool(v);
|
|
36
|
+
}
|
|
37
|
+
get detail() {
|
|
38
|
+
if (this.i.a == null) {
|
|
39
|
+
return null;
|
|
40
|
+
}
|
|
41
|
+
if (!this.i.a.externalObject) {
|
|
42
|
+
let e = new IgcToolActionEventDetail();
|
|
43
|
+
e._implementation = this.i.a;
|
|
44
|
+
this.i.a.externalObject = e;
|
|
45
|
+
}
|
|
46
|
+
return this.i.a.externalObject;
|
|
47
|
+
}
|
|
48
|
+
set detail(v) {
|
|
49
|
+
v == null ? this.i.a = null : this.i.a = v.i;
|
|
50
|
+
}
|
|
51
|
+
get detailCollection() {
|
|
52
|
+
if (this._detailCollection === null) {
|
|
53
|
+
let coll = new IgcToolActionEventDetailCollection();
|
|
54
|
+
let innerColl = this.i.b;
|
|
55
|
+
if (!innerColl) {
|
|
56
|
+
innerColl = new ToolActionEventDetailCollection_internal();
|
|
57
|
+
}
|
|
58
|
+
this._detailCollection = coll._fromInner(innerColl);
|
|
59
|
+
this.i.b = innerColl;
|
|
60
|
+
}
|
|
61
|
+
return this._detailCollection;
|
|
62
|
+
}
|
|
63
|
+
set detailCollection(v) {
|
|
64
|
+
if (this._detailCollection !== null) {
|
|
65
|
+
this._detailCollection._setSyncTarget(null);
|
|
66
|
+
this._detailCollection = null;
|
|
67
|
+
}
|
|
68
|
+
let coll = new IgcToolActionEventDetailCollection();
|
|
69
|
+
this._detailCollection = coll._fromOuter(v);
|
|
70
|
+
let syncColl = new SyncableObservableCollection$1(ToolActionEventDetail.$type);
|
|
71
|
+
let innerColl = this.i.b;
|
|
72
|
+
if (!innerColl) {
|
|
73
|
+
innerColl = new ToolActionEventDetailCollection_internal();
|
|
74
|
+
}
|
|
75
|
+
syncColl._inner = innerColl;
|
|
76
|
+
syncColl.clear();
|
|
77
|
+
this._detailCollection._setSyncTarget(syncColl);
|
|
78
|
+
this.i.b = innerColl;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionSeparator } from "./ToolActionSeparator";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionSeparatorComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionSeparatorComponent extends IgcToolActionComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionSeparator();
|
|
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._attached) {
|
|
24
|
+
this._attached = true;
|
|
25
|
+
this._flushQueuedAttributes();
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
static get observedAttributes() {
|
|
29
|
+
if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
|
|
30
|
+
let names = getAllPropertyNames(IgcToolActionSeparatorComponent);
|
|
31
|
+
for (let i = 0; i < names.length; i++) {
|
|
32
|
+
names[i] = toSpinal(names[i]);
|
|
33
|
+
}
|
|
34
|
+
IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = names;
|
|
35
|
+
}
|
|
36
|
+
return IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent;
|
|
37
|
+
}
|
|
38
|
+
static register() {
|
|
39
|
+
if (!IgcToolActionSeparatorComponent._isElementRegistered) {
|
|
40
|
+
IgcToolActionSeparatorComponent._isElementRegistered = true;
|
|
41
|
+
RegisterElementHelper.registerElement(IgcToolActionSeparatorComponent.htmlTagName, IgcToolActionSeparatorComponent);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = null;
|
|
46
|
+
IgcToolActionSeparatorComponent.htmlTagName = "igc-tool-action-separator";
|
|
47
|
+
IgcToolActionSeparatorComponent._isElementRegistered = false;
|
|
48
|
+
return IgcToolActionSeparatorComponent;
|
|
49
|
+
})();
|
|
@@ -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 { IgcToolActionSeparatorComponent } from './igc-tool-action-separator-component';
|
|
8
|
+
import { ToolActionSeparator } from './ToolActionSeparator';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionSeparatorModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionSeparatorComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionSeparatorComponent", IgcToolActionSeparatorComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionSeparator", ToolActionSeparator.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ToolCommandEventArgs as ToolCommandEventArgs_internal } from "./ToolCommandEventArgs";
|
|
2
|
+
export class IgcToolCommandEventArgs {
|
|
3
|
+
createImplementation() {
|
|
4
|
+
return new ToolCommandEventArgs_internal();
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
9
|
+
get i() {
|
|
10
|
+
return this._implementation;
|
|
11
|
+
}
|
|
12
|
+
onImplementationCreated() {
|
|
13
|
+
}
|
|
14
|
+
constructor() {
|
|
15
|
+
this._implementation = this.createImplementation();
|
|
16
|
+
this._implementation.externalObject = this;
|
|
17
|
+
this.onImplementationCreated();
|
|
18
|
+
}
|
|
19
|
+
_provideImplementation(i) {
|
|
20
|
+
this._implementation = i;
|
|
21
|
+
this._implementation.externalObject = this;
|
|
22
|
+
this.onImplementationCreated();
|
|
23
|
+
}
|
|
24
|
+
get command() {
|
|
25
|
+
return this.i.a;
|
|
26
|
+
}
|
|
27
|
+
set command(v) {
|
|
28
|
+
this.i.a = v;
|
|
29
|
+
}
|
|
30
|
+
}
|