igniteui-webcomponents-layouts 3.2.3 → 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 +6905 -138
- 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/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/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 +6030 -140
- package/fesm5/igniteui-webcomponents-layouts.js +6831 -140
- 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,58 @@
|
|
|
1
|
+
import * as tslib_1 from "tslib";
|
|
2
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
3
|
+
import { ToolActionIconButton } from "./ToolActionIconButton";
|
|
4
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
5
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
6
|
+
var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
7
|
+
tslib_1.__extends(IgcToolActionIconButtonComponent, _super);
|
|
8
|
+
function IgcToolActionIconButtonComponent() {
|
|
9
|
+
return _super.call(this) || this;
|
|
10
|
+
}
|
|
11
|
+
IgcToolActionIconButtonComponent.prototype.createImplementation = function () {
|
|
12
|
+
return new ToolActionIconButton();
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "i", {
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
get: function () {
|
|
19
|
+
return this._implementation;
|
|
20
|
+
},
|
|
21
|
+
enumerable: true,
|
|
22
|
+
configurable: true
|
|
23
|
+
});
|
|
24
|
+
IgcToolActionIconButtonComponent.prototype.connectedCallback = function () {
|
|
25
|
+
if (_super.prototype["connectedCallback"]) {
|
|
26
|
+
_super.prototype["connectedCallback"].call(this);
|
|
27
|
+
}
|
|
28
|
+
if (!this._attached) {
|
|
29
|
+
this._attached = true;
|
|
30
|
+
this._flushQueuedAttributes();
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(IgcToolActionIconButtonComponent, "observedAttributes", {
|
|
34
|
+
get: function () {
|
|
35
|
+
if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
|
|
36
|
+
var names = getAllPropertyNames(IgcToolActionIconButtonComponent);
|
|
37
|
+
for (var i = 0; i < names.length; i++) {
|
|
38
|
+
names[i] = toSpinal(names[i]);
|
|
39
|
+
}
|
|
40
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = names;
|
|
41
|
+
}
|
|
42
|
+
return IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent;
|
|
43
|
+
},
|
|
44
|
+
enumerable: true,
|
|
45
|
+
configurable: true
|
|
46
|
+
});
|
|
47
|
+
IgcToolActionIconButtonComponent.register = function () {
|
|
48
|
+
if (!IgcToolActionIconButtonComponent._isElementRegistered) {
|
|
49
|
+
IgcToolActionIconButtonComponent._isElementRegistered = true;
|
|
50
|
+
RegisterElementHelper.registerElement(IgcToolActionIconButtonComponent.htmlTagName, IgcToolActionIconButtonComponent);
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
|
|
54
|
+
IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
|
|
55
|
+
IgcToolActionIconButtonComponent._isElementRegistered = false;
|
|
56
|
+
return IgcToolActionIconButtonComponent;
|
|
57
|
+
}(IgcToolActionComponent));
|
|
58
|
+
export { IgcToolActionIconButtonComponent };
|
|
@@ -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 { IgcToolActionIconButtonComponent } from './igc-tool-action-icon-button-component';
|
|
8
|
+
import { ToolActionIconButton } from './ToolActionIconButton';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
var IgcToolActionIconButtonModule = /** @class */ /*@__PURE__*/ (function () {
|
|
11
|
+
function IgcToolActionIconButtonModule() {
|
|
12
|
+
}
|
|
13
|
+
IgcToolActionIconButtonModule.register = function () {
|
|
14
|
+
IgcToolActionIconButtonComponent.register();
|
|
15
|
+
TypeRegistrar.registerCons("IgcToolActionIconButtonComponent", IgcToolActionIconButtonComponent);
|
|
16
|
+
TypeRegistrar.register("ToolActionIconButton", ToolActionIconButton.$type);
|
|
17
|
+
};
|
|
18
|
+
return IgcToolActionIconButtonModule;
|
|
19
|
+
}());
|
|
20
|
+
export { IgcToolActionIconButtonModule };
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as tslib_1 from "tslib";
|
|
2
|
+
import { IgcToolActionMenuBaseComponent } from "./igc-tool-action-menu-base-component";
|
|
3
|
+
import { ToolActionIconMenu } from "./ToolActionIconMenu";
|
|
4
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
5
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
6
|
+
var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
7
|
+
tslib_1.__extends(IgcToolActionIconMenuComponent, _super);
|
|
8
|
+
function IgcToolActionIconMenuComponent() {
|
|
9
|
+
return _super.call(this) || this;
|
|
10
|
+
}
|
|
11
|
+
IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
|
|
12
|
+
return new ToolActionIconMenu();
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
get: function () {
|
|
19
|
+
return this._implementation;
|
|
20
|
+
},
|
|
21
|
+
enumerable: true,
|
|
22
|
+
configurable: true
|
|
23
|
+
});
|
|
24
|
+
IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
|
|
25
|
+
if (_super.prototype["connectedCallback"]) {
|
|
26
|
+
_super.prototype["connectedCallback"].call(this);
|
|
27
|
+
}
|
|
28
|
+
if (!this._attached) {
|
|
29
|
+
this._attached = true;
|
|
30
|
+
this._flushQueuedAttributes();
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
|
|
34
|
+
get: function () {
|
|
35
|
+
if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
|
|
36
|
+
var names = getAllPropertyNames(IgcToolActionIconMenuComponent);
|
|
37
|
+
for (var i = 0; i < names.length; i++) {
|
|
38
|
+
names[i] = toSpinal(names[i]);
|
|
39
|
+
}
|
|
40
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
|
|
41
|
+
}
|
|
42
|
+
return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
|
|
43
|
+
},
|
|
44
|
+
enumerable: true,
|
|
45
|
+
configurable: true
|
|
46
|
+
});
|
|
47
|
+
IgcToolActionIconMenuComponent.register = function () {
|
|
48
|
+
if (!IgcToolActionIconMenuComponent._isElementRegistered) {
|
|
49
|
+
IgcToolActionIconMenuComponent._isElementRegistered = true;
|
|
50
|
+
RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
|
|
54
|
+
IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
|
|
55
|
+
IgcToolActionIconMenuComponent._isElementRegistered = false;
|
|
56
|
+
return IgcToolActionIconMenuComponent;
|
|
57
|
+
}(IgcToolActionMenuBaseComponent));
|
|
58
|
+
export { IgcToolActionIconMenuComponent };
|
|
@@ -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 { IgcToolActionIconMenuComponent } from './igc-tool-action-icon-menu-component';
|
|
8
|
+
import { ToolActionIconMenu } from './ToolActionIconMenu';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
var IgcToolActionIconMenuModule = /** @class */ /*@__PURE__*/ (function () {
|
|
11
|
+
function IgcToolActionIconMenuModule() {
|
|
12
|
+
}
|
|
13
|
+
IgcToolActionIconMenuModule.register = function () {
|
|
14
|
+
IgcToolActionIconMenuComponent.register();
|
|
15
|
+
TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
|
|
16
|
+
TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
|
|
17
|
+
};
|
|
18
|
+
return IgcToolActionIconMenuModule;
|
|
19
|
+
}());
|
|
20
|
+
export { IgcToolActionIconMenuModule };
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import * as tslib_1 from "tslib";
|
|
2
|
+
import { IgcToolActionCollection } from "./igc-tool-action-collection";
|
|
3
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
4
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
5
|
+
import { ToolActionCollection as ToolActionCollection_internal } from "./ToolActionCollection";
|
|
6
|
+
import { ToolAction } from "./ToolAction";
|
|
7
|
+
import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
8
|
+
/**
|
|
9
|
+
* Represents base class for all tool actions in menu
|
|
10
|
+
*/
|
|
11
|
+
var IgcToolActionMenuBaseComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
12
|
+
tslib_1.__extends(IgcToolActionMenuBaseComponent, _super);
|
|
13
|
+
function IgcToolActionMenuBaseComponent() {
|
|
14
|
+
var _this = _super.call(this) || this;
|
|
15
|
+
_this._actions = null;
|
|
16
|
+
return _this;
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(IgcToolActionMenuBaseComponent.prototype, "i", {
|
|
19
|
+
/**
|
|
20
|
+
* @hidden
|
|
21
|
+
*/
|
|
22
|
+
get: function () {
|
|
23
|
+
return this._implementation;
|
|
24
|
+
},
|
|
25
|
+
enumerable: true,
|
|
26
|
+
configurable: true
|
|
27
|
+
});
|
|
28
|
+
IgcToolActionMenuBaseComponent.prototype.connectedCallback = function () {
|
|
29
|
+
if (_super.prototype["connectedCallback"]) {
|
|
30
|
+
_super.prototype["connectedCallback"].call(this);
|
|
31
|
+
}
|
|
32
|
+
if (!this._attached) {
|
|
33
|
+
this._attached = true;
|
|
34
|
+
this._flushQueuedAttributes();
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
Object.defineProperty(IgcToolActionMenuBaseComponent, "observedAttributes", {
|
|
38
|
+
get: function () {
|
|
39
|
+
if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
|
|
40
|
+
var names = getAllPropertyNames(IgcToolActionMenuBaseComponent);
|
|
41
|
+
for (var i = 0; i < names.length; i++) {
|
|
42
|
+
names[i] = toSpinal(names[i]);
|
|
43
|
+
}
|
|
44
|
+
IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = names;
|
|
45
|
+
}
|
|
46
|
+
return IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent;
|
|
47
|
+
},
|
|
48
|
+
enumerable: true,
|
|
49
|
+
configurable: true
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(IgcToolActionMenuBaseComponent.prototype, "actions", {
|
|
52
|
+
/**
|
|
53
|
+
* Gets or sets the data or data source instance to which to bind the grid.
|
|
54
|
+
*/
|
|
55
|
+
get: function () {
|
|
56
|
+
if (this._actions === null) {
|
|
57
|
+
var coll = new IgcToolActionCollection();
|
|
58
|
+
var innerColl = this.i.actions;
|
|
59
|
+
if (!innerColl) {
|
|
60
|
+
innerColl = new ToolActionCollection_internal();
|
|
61
|
+
}
|
|
62
|
+
this._actions = coll._fromInner(innerColl);
|
|
63
|
+
this.i.actions = innerColl;
|
|
64
|
+
}
|
|
65
|
+
return this._actions;
|
|
66
|
+
},
|
|
67
|
+
set: function (v) {
|
|
68
|
+
if (this._actions !== null) {
|
|
69
|
+
this._actions._setSyncTarget(null);
|
|
70
|
+
this._actions = null;
|
|
71
|
+
}
|
|
72
|
+
var coll = new IgcToolActionCollection();
|
|
73
|
+
this._actions = coll._fromOuter(v);
|
|
74
|
+
var syncColl = new SyncableObservableCollection$1(ToolAction.$type);
|
|
75
|
+
var innerColl = this.i.actions;
|
|
76
|
+
if (!innerColl) {
|
|
77
|
+
innerColl = new ToolActionCollection_internal();
|
|
78
|
+
}
|
|
79
|
+
syncColl._inner = innerColl;
|
|
80
|
+
syncColl.clear();
|
|
81
|
+
this._actions._setSyncTarget(syncColl);
|
|
82
|
+
this.i.actions = innerColl;
|
|
83
|
+
},
|
|
84
|
+
enumerable: true,
|
|
85
|
+
configurable: true
|
|
86
|
+
});
|
|
87
|
+
IgcToolActionMenuBaseComponent.prototype.findByName = function (name) {
|
|
88
|
+
var baseResult = _super.prototype.findByName.call(this, 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
|
+
IgcToolActionMenuBaseComponent.prototype.fromInfo = function (info) {
|
|
98
|
+
this.i.a6(info);
|
|
99
|
+
};
|
|
100
|
+
IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = null;
|
|
101
|
+
return IgcToolActionMenuBaseComponent;
|
|
102
|
+
}(IgcToolActionComponent));
|
|
103
|
+
export { IgcToolActionMenuBaseComponent };
|
|
@@ -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 { IgcToolActionComponent } from './igc-tool-action-component';
|
|
8
|
+
import { ToolAction } from './ToolAction';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
var IgcToolActionModule = /** @class */ /*@__PURE__*/ (function () {
|
|
11
|
+
function IgcToolActionModule() {
|
|
12
|
+
}
|
|
13
|
+
IgcToolActionModule.register = function () {
|
|
14
|
+
IgcToolActionComponent.register();
|
|
15
|
+
TypeRegistrar.registerCons("IgcToolActionComponent", IgcToolActionComponent);
|
|
16
|
+
TypeRegistrar.register("ToolAction", ToolAction.$type);
|
|
17
|
+
};
|
|
18
|
+
return IgcToolActionModule;
|
|
19
|
+
}());
|
|
20
|
+
export { IgcToolActionModule };
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as tslib_1 from "tslib";
|
|
2
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
3
|
+
import { ToolActionNumberInput } from "./ToolActionNumberInput";
|
|
4
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
5
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
6
|
+
var IgcToolActionNumberInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
7
|
+
tslib_1.__extends(IgcToolActionNumberInputComponent, _super);
|
|
8
|
+
function IgcToolActionNumberInputComponent() {
|
|
9
|
+
return _super.call(this) || this;
|
|
10
|
+
}
|
|
11
|
+
IgcToolActionNumberInputComponent.prototype.createImplementation = function () {
|
|
12
|
+
return new ToolActionNumberInput();
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(IgcToolActionNumberInputComponent.prototype, "i", {
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
get: function () {
|
|
19
|
+
return this._implementation;
|
|
20
|
+
},
|
|
21
|
+
enumerable: true,
|
|
22
|
+
configurable: true
|
|
23
|
+
});
|
|
24
|
+
IgcToolActionNumberInputComponent.prototype.connectedCallback = function () {
|
|
25
|
+
if (_super.prototype["connectedCallback"]) {
|
|
26
|
+
_super.prototype["connectedCallback"].call(this);
|
|
27
|
+
}
|
|
28
|
+
if (!this._attached) {
|
|
29
|
+
this._attached = true;
|
|
30
|
+
this._flushQueuedAttributes();
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(IgcToolActionNumberInputComponent, "observedAttributes", {
|
|
34
|
+
get: function () {
|
|
35
|
+
if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
|
|
36
|
+
var names = getAllPropertyNames(IgcToolActionNumberInputComponent);
|
|
37
|
+
for (var i = 0; i < names.length; i++) {
|
|
38
|
+
names[i] = toSpinal(names[i]);
|
|
39
|
+
}
|
|
40
|
+
IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = names;
|
|
41
|
+
}
|
|
42
|
+
return IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent;
|
|
43
|
+
},
|
|
44
|
+
enumerable: true,
|
|
45
|
+
configurable: true
|
|
46
|
+
});
|
|
47
|
+
IgcToolActionNumberInputComponent.register = function () {
|
|
48
|
+
if (!IgcToolActionNumberInputComponent._isElementRegistered) {
|
|
49
|
+
IgcToolActionNumberInputComponent._isElementRegistered = true;
|
|
50
|
+
RegisterElementHelper.registerElement(IgcToolActionNumberInputComponent.htmlTagName, IgcToolActionNumberInputComponent);
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = null;
|
|
54
|
+
IgcToolActionNumberInputComponent.htmlTagName = "igc-tool-action-number-input";
|
|
55
|
+
IgcToolActionNumberInputComponent._isElementRegistered = false;
|
|
56
|
+
return IgcToolActionNumberInputComponent;
|
|
57
|
+
}(IgcToolActionComponent));
|
|
58
|
+
export { IgcToolActionNumberInputComponent };
|
|
@@ -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 { IgcToolActionNumberInputComponent } from './igc-tool-action-number-input-component';
|
|
8
|
+
import { ToolActionNumberInput } from './ToolActionNumberInput';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
var IgcToolActionNumberInputModule = /** @class */ /*@__PURE__*/ (function () {
|
|
11
|
+
function IgcToolActionNumberInputModule() {
|
|
12
|
+
}
|
|
13
|
+
IgcToolActionNumberInputModule.register = function () {
|
|
14
|
+
IgcToolActionNumberInputComponent.register();
|
|
15
|
+
TypeRegistrar.registerCons("IgcToolActionNumberInputComponent", IgcToolActionNumberInputComponent);
|
|
16
|
+
TypeRegistrar.register("ToolActionNumberInput", ToolActionNumberInput.$type);
|
|
17
|
+
};
|
|
18
|
+
return IgcToolActionNumberInputModule;
|
|
19
|
+
}());
|
|
20
|
+
export { IgcToolActionNumberInputModule };
|
|
@@ -0,0 +1,98 @@
|
|
|
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
|
+
var IgcToolActionPerformedEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
9
|
+
function IgcToolActionPerformedEventArgs() {
|
|
10
|
+
this._detailCollection = null;
|
|
11
|
+
this._implementation = this.createImplementation();
|
|
12
|
+
this._implementation.externalObject = this;
|
|
13
|
+
this.onImplementationCreated();
|
|
14
|
+
}
|
|
15
|
+
IgcToolActionPerformedEventArgs.prototype.createImplementation = function () {
|
|
16
|
+
return new ToolActionPerformedEventArgs_internal();
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "i", {
|
|
19
|
+
/**
|
|
20
|
+
* @hidden
|
|
21
|
+
*/
|
|
22
|
+
get: function () {
|
|
23
|
+
return this._implementation;
|
|
24
|
+
},
|
|
25
|
+
enumerable: true,
|
|
26
|
+
configurable: true
|
|
27
|
+
});
|
|
28
|
+
IgcToolActionPerformedEventArgs.prototype.onImplementationCreated = function () {
|
|
29
|
+
};
|
|
30
|
+
IgcToolActionPerformedEventArgs.prototype._provideImplementation = function (i) {
|
|
31
|
+
this._implementation = i;
|
|
32
|
+
this._implementation.externalObject = this;
|
|
33
|
+
this.onImplementationCreated();
|
|
34
|
+
};
|
|
35
|
+
Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "isAggregate", {
|
|
36
|
+
get: function () {
|
|
37
|
+
return this.i.c;
|
|
38
|
+
},
|
|
39
|
+
set: function (v) {
|
|
40
|
+
this.i.c = ensureBool(v);
|
|
41
|
+
},
|
|
42
|
+
enumerable: true,
|
|
43
|
+
configurable: true
|
|
44
|
+
});
|
|
45
|
+
Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "detail", {
|
|
46
|
+
get: function () {
|
|
47
|
+
if (this.i.a == null) {
|
|
48
|
+
return null;
|
|
49
|
+
}
|
|
50
|
+
if (!this.i.a.externalObject) {
|
|
51
|
+
var e = new IgcToolActionEventDetail();
|
|
52
|
+
e._implementation = this.i.a;
|
|
53
|
+
this.i.a.externalObject = e;
|
|
54
|
+
}
|
|
55
|
+
return this.i.a.externalObject;
|
|
56
|
+
},
|
|
57
|
+
set: function (v) {
|
|
58
|
+
v == null ? this.i.a = null : this.i.a = v.i;
|
|
59
|
+
},
|
|
60
|
+
enumerable: true,
|
|
61
|
+
configurable: true
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "detailCollection", {
|
|
64
|
+
get: function () {
|
|
65
|
+
if (this._detailCollection === null) {
|
|
66
|
+
var coll = new IgcToolActionEventDetailCollection();
|
|
67
|
+
var innerColl = this.i.b;
|
|
68
|
+
if (!innerColl) {
|
|
69
|
+
innerColl = new ToolActionEventDetailCollection_internal();
|
|
70
|
+
}
|
|
71
|
+
this._detailCollection = coll._fromInner(innerColl);
|
|
72
|
+
this.i.b = innerColl;
|
|
73
|
+
}
|
|
74
|
+
return this._detailCollection;
|
|
75
|
+
},
|
|
76
|
+
set: function (v) {
|
|
77
|
+
if (this._detailCollection !== null) {
|
|
78
|
+
this._detailCollection._setSyncTarget(null);
|
|
79
|
+
this._detailCollection = null;
|
|
80
|
+
}
|
|
81
|
+
var coll = new IgcToolActionEventDetailCollection();
|
|
82
|
+
this._detailCollection = coll._fromOuter(v);
|
|
83
|
+
var syncColl = new SyncableObservableCollection$1(ToolActionEventDetail.$type);
|
|
84
|
+
var innerColl = this.i.b;
|
|
85
|
+
if (!innerColl) {
|
|
86
|
+
innerColl = new ToolActionEventDetailCollection_internal();
|
|
87
|
+
}
|
|
88
|
+
syncColl._inner = innerColl;
|
|
89
|
+
syncColl.clear();
|
|
90
|
+
this._detailCollection._setSyncTarget(syncColl);
|
|
91
|
+
this.i.b = innerColl;
|
|
92
|
+
},
|
|
93
|
+
enumerable: true,
|
|
94
|
+
configurable: true
|
|
95
|
+
});
|
|
96
|
+
return IgcToolActionPerformedEventArgs;
|
|
97
|
+
}());
|
|
98
|
+
export { IgcToolActionPerformedEventArgs };
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as tslib_1 from "tslib";
|
|
2
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
3
|
+
import { ToolActionSeparator } from "./ToolActionSeparator";
|
|
4
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
5
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
6
|
+
var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
7
|
+
tslib_1.__extends(IgcToolActionSeparatorComponent, _super);
|
|
8
|
+
function IgcToolActionSeparatorComponent() {
|
|
9
|
+
return _super.call(this) || this;
|
|
10
|
+
}
|
|
11
|
+
IgcToolActionSeparatorComponent.prototype.createImplementation = function () {
|
|
12
|
+
return new ToolActionSeparator();
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "i", {
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
get: function () {
|
|
19
|
+
return this._implementation;
|
|
20
|
+
},
|
|
21
|
+
enumerable: true,
|
|
22
|
+
configurable: true
|
|
23
|
+
});
|
|
24
|
+
IgcToolActionSeparatorComponent.prototype.connectedCallback = function () {
|
|
25
|
+
if (_super.prototype["connectedCallback"]) {
|
|
26
|
+
_super.prototype["connectedCallback"].call(this);
|
|
27
|
+
}
|
|
28
|
+
if (!this._attached) {
|
|
29
|
+
this._attached = true;
|
|
30
|
+
this._flushQueuedAttributes();
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(IgcToolActionSeparatorComponent, "observedAttributes", {
|
|
34
|
+
get: function () {
|
|
35
|
+
if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
|
|
36
|
+
var names = getAllPropertyNames(IgcToolActionSeparatorComponent);
|
|
37
|
+
for (var i = 0; i < names.length; i++) {
|
|
38
|
+
names[i] = toSpinal(names[i]);
|
|
39
|
+
}
|
|
40
|
+
IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = names;
|
|
41
|
+
}
|
|
42
|
+
return IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent;
|
|
43
|
+
},
|
|
44
|
+
enumerable: true,
|
|
45
|
+
configurable: true
|
|
46
|
+
});
|
|
47
|
+
IgcToolActionSeparatorComponent.register = function () {
|
|
48
|
+
if (!IgcToolActionSeparatorComponent._isElementRegistered) {
|
|
49
|
+
IgcToolActionSeparatorComponent._isElementRegistered = true;
|
|
50
|
+
RegisterElementHelper.registerElement(IgcToolActionSeparatorComponent.htmlTagName, IgcToolActionSeparatorComponent);
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = null;
|
|
54
|
+
IgcToolActionSeparatorComponent.htmlTagName = "igc-tool-action-separator";
|
|
55
|
+
IgcToolActionSeparatorComponent._isElementRegistered = false;
|
|
56
|
+
return IgcToolActionSeparatorComponent;
|
|
57
|
+
}(IgcToolActionComponent));
|
|
58
|
+
export { IgcToolActionSeparatorComponent };
|
|
@@ -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 { IgcToolActionSeparatorComponent } from './igc-tool-action-separator-component';
|
|
8
|
+
import { ToolActionSeparator } from './ToolActionSeparator';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
var IgcToolActionSeparatorModule = /** @class */ /*@__PURE__*/ (function () {
|
|
11
|
+
function IgcToolActionSeparatorModule() {
|
|
12
|
+
}
|
|
13
|
+
IgcToolActionSeparatorModule.register = function () {
|
|
14
|
+
IgcToolActionSeparatorComponent.register();
|
|
15
|
+
TypeRegistrar.registerCons("IgcToolActionSeparatorComponent", IgcToolActionSeparatorComponent);
|
|
16
|
+
TypeRegistrar.register("ToolActionSeparator", ToolActionSeparator.$type);
|
|
17
|
+
};
|
|
18
|
+
return IgcToolActionSeparatorModule;
|
|
19
|
+
}());
|
|
20
|
+
export { IgcToolActionSeparatorModule };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ToolCommandEventArgs as ToolCommandEventArgs_internal } from "./ToolCommandEventArgs";
|
|
2
|
+
var IgcToolCommandEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
3
|
+
function IgcToolCommandEventArgs() {
|
|
4
|
+
this._implementation = this.createImplementation();
|
|
5
|
+
this._implementation.externalObject = this;
|
|
6
|
+
this.onImplementationCreated();
|
|
7
|
+
}
|
|
8
|
+
IgcToolCommandEventArgs.prototype.createImplementation = function () {
|
|
9
|
+
return new ToolCommandEventArgs_internal();
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(IgcToolCommandEventArgs.prototype, "i", {
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
get: function () {
|
|
16
|
+
return this._implementation;
|
|
17
|
+
},
|
|
18
|
+
enumerable: true,
|
|
19
|
+
configurable: true
|
|
20
|
+
});
|
|
21
|
+
IgcToolCommandEventArgs.prototype.onImplementationCreated = function () {
|
|
22
|
+
};
|
|
23
|
+
IgcToolCommandEventArgs.prototype._provideImplementation = function (i) {
|
|
24
|
+
this._implementation = i;
|
|
25
|
+
this._implementation.externalObject = this;
|
|
26
|
+
this.onImplementationCreated();
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(IgcToolCommandEventArgs.prototype, "command", {
|
|
29
|
+
get: function () {
|
|
30
|
+
return this.i.a;
|
|
31
|
+
},
|
|
32
|
+
set: function (v) {
|
|
33
|
+
this.i.a = v;
|
|
34
|
+
},
|
|
35
|
+
enumerable: true,
|
|
36
|
+
configurable: true
|
|
37
|
+
});
|
|
38
|
+
return IgcToolCommandEventArgs;
|
|
39
|
+
}());
|
|
40
|
+
export { IgcToolCommandEventArgs };
|