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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { IgSize } from "igniteui-webcomponents-core";
|
|
2
1
|
import { PropertyEditorPanel } from "./PropertyEditorPanel";
|
|
3
2
|
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
4
3
|
import { ComponentRenderer } from "igniteui-webcomponents-core";
|
|
@@ -88,7 +87,6 @@ export declare class IgcPropertyEditorPanelComponent extends IgcHTMLElement {
|
|
|
88
87
|
protected _stylingParent: any;
|
|
89
88
|
protected _inStyling: boolean;
|
|
90
89
|
protected _styling(container: any, component: any, parent?: any): void;
|
|
91
|
-
getDesiredSize(): IgSize;
|
|
92
90
|
notifySetItem(index: number, oldItem: any, newItem: any): void;
|
|
93
91
|
/**
|
|
94
92
|
* Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
|
|
@@ -25,6 +25,7 @@ export declare class IgcPropertyEditorPropertyDescriptionComponent extends IgcHT
|
|
|
25
25
|
protected _flushQueuedAttributes(): void;
|
|
26
26
|
protected _a(attrName: string, attrValue: any): void;
|
|
27
27
|
connectedCallback(): void;
|
|
28
|
+
disconnectedCallback(): void;
|
|
28
29
|
private static _observedAttributesIgcPropertyEditorPropertyDescriptionComponent;
|
|
29
30
|
static readonly observedAttributes: string[];
|
|
30
31
|
private _updatingFromAttribute;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionCheckbox } from "./ToolActionCheckbox";
|
|
3
|
+
export declare class IgcToolActionCheckboxComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionCheckbox;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionCheckbox;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionCheckboxComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IgCollection } from "igniteui-webcomponents-core";
|
|
2
|
+
import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
|
|
3
|
+
import { ToolAction as ToolAction_internal } from './ToolAction';
|
|
4
|
+
import { IgcToolActionComponent as IgcToolActionComponent } from './igc-tool-action-component';
|
|
5
|
+
export declare class IgcToolActionCollection extends IgCollection<IgcToolActionComponent, ToolAction_internal> {
|
|
6
|
+
constructor(list?: IgcToolActionComponent[]);
|
|
7
|
+
protected _createInnerColl(): SyncableObservableCollection$2<IgcToolActionComponent, ToolAction_internal>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
2
|
+
import { IgcToolCommandEventArgs } from "./igc-tool-command-event-args";
|
|
3
|
+
import { IgcToolActionPerformedEventArgs } from "./igc-tool-action-performed-event-args";
|
|
4
|
+
import { ToolAction } from "./ToolAction";
|
|
5
|
+
import { ToolActionInfo } from "igniteui-webcomponents-core";
|
|
6
|
+
/**
|
|
7
|
+
* Represents base class for all tool actions in toolbar
|
|
8
|
+
*/
|
|
9
|
+
export declare class IgcToolActionComponent extends IgcHTMLElement {
|
|
10
|
+
protected createImplementation(): ToolAction;
|
|
11
|
+
protected _implementation: any;
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
readonly i: ToolAction; /**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
static _createFromInternal(internal: any): IgcToolActionComponent;
|
|
19
|
+
private onImplementationCreated;
|
|
20
|
+
constructor();
|
|
21
|
+
private _settingAttributes;
|
|
22
|
+
protected _attached: boolean;
|
|
23
|
+
private _queuedSetAttributes;
|
|
24
|
+
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
|
|
25
|
+
protected _flushQueuedAttributes(): void;
|
|
26
|
+
protected _a(attrName: string, attrValue: any): void;
|
|
27
|
+
connectedCallback(): void;
|
|
28
|
+
disconnectedCallback(): void;
|
|
29
|
+
private static _observedAttributesIgcToolActionComponent;
|
|
30
|
+
static readonly observedAttributes: string[];
|
|
31
|
+
private _updatingFromAttribute;
|
|
32
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
33
|
+
static htmlTagName: string;
|
|
34
|
+
protected static _isElementRegistered: boolean;
|
|
35
|
+
static register(): void;
|
|
36
|
+
readonly id: string;
|
|
37
|
+
parentId: string;
|
|
38
|
+
commandId: string;
|
|
39
|
+
commandArgument: string;
|
|
40
|
+
commandArgumentValue: any;
|
|
41
|
+
paddingLeft: number;
|
|
42
|
+
paddingRight: number;
|
|
43
|
+
paddingBottom: number;
|
|
44
|
+
paddingTop: number;
|
|
45
|
+
name: string;
|
|
46
|
+
label: string;
|
|
47
|
+
iconName: string;
|
|
48
|
+
iconCollectionName: string;
|
|
49
|
+
findByName(name: string): any;
|
|
50
|
+
protected __p: string;
|
|
51
|
+
protected _hasUserValues: Set<string>;
|
|
52
|
+
protected readonly hasUserValues: Set<string>;
|
|
53
|
+
protected __m(propertyName: string): void;
|
|
54
|
+
protected _stylingContainer: any;
|
|
55
|
+
protected _stylingParent: any;
|
|
56
|
+
protected _inStyling: boolean;
|
|
57
|
+
protected _styling(container: any, component: any, parent?: any): void;
|
|
58
|
+
fromInfo(info: ToolActionInfo): void;
|
|
59
|
+
private _onCommand;
|
|
60
|
+
private _onCommand_wrapped;
|
|
61
|
+
onCommand: (s: IgcToolActionComponent, e: IgcToolCommandEventArgs) => void;
|
|
62
|
+
private _performed;
|
|
63
|
+
private _performed_wrapped;
|
|
64
|
+
performed: (s: IgcToolActionComponent, e: IgcToolActionPerformedEventArgs) => void;
|
|
65
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IgCollection } from "igniteui-webcomponents-core";
|
|
2
|
+
import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
|
|
3
|
+
import { ToolActionEventDetail as ToolActionEventDetail_internal } from './ToolActionEventDetail';
|
|
4
|
+
import { IgcToolActionEventDetail as IgcToolActionEventDetail } from './igc-tool-action-event-detail';
|
|
5
|
+
export declare class IgcToolActionEventDetailCollection extends IgCollection<IgcToolActionEventDetail, ToolActionEventDetail_internal> {
|
|
6
|
+
constructor(list?: IgcToolActionEventDetail[]);
|
|
7
|
+
protected _createInnerColl(): SyncableObservableCollection$2<IgcToolActionEventDetail, ToolActionEventDetail_internal>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionType } from "igniteui-webcomponents-core";
|
|
3
|
+
import { ToolActionEventDetail as ToolActionEventDetail_internal } from "./ToolActionEventDetail";
|
|
4
|
+
export declare class IgcToolActionEventDetail {
|
|
5
|
+
protected createImplementation(): ToolActionEventDetail_internal;
|
|
6
|
+
protected _implementation: any;
|
|
7
|
+
/**
|
|
8
|
+
* @hidden
|
|
9
|
+
*/
|
|
10
|
+
readonly i: ToolActionEventDetail_internal;
|
|
11
|
+
private onImplementationCreated;
|
|
12
|
+
constructor();
|
|
13
|
+
protected _provideImplementation(i: any): void;
|
|
14
|
+
action: IgcToolActionComponent;
|
|
15
|
+
actionType: ToolActionType;
|
|
16
|
+
isModified: boolean;
|
|
17
|
+
boolValue: boolean;
|
|
18
|
+
numberValue: number;
|
|
19
|
+
dateTimeValue: Date;
|
|
20
|
+
untypedValue: any;
|
|
21
|
+
findByName(name: string): any;
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionGroupHeader } from "./ToolActionGroupHeader";
|
|
3
|
+
export declare class IgcToolActionGroupHeaderComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionGroupHeader;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionGroupHeader;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionGroupHeaderComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionIconButton } from "./ToolActionIconButton";
|
|
3
|
+
export declare class IgcToolActionIconButtonComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionIconButton;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionIconButton;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionIconButtonComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionMenuBaseComponent } from "./igc-tool-action-menu-base-component";
|
|
2
|
+
import { ToolActionIconMenu } from "./ToolActionIconMenu";
|
|
3
|
+
export declare class IgcToolActionIconMenuComponent extends IgcToolActionMenuBaseComponent {
|
|
4
|
+
protected createImplementation(): ToolActionIconMenu;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionIconMenu;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionIconMenuComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionLabel } from "./ToolActionLabel";
|
|
3
|
+
export declare class IgcToolActionLabelComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionLabel;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionLabel;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionLabelComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { IgcToolActionCollection } from "./igc-tool-action-collection";
|
|
2
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
3
|
+
import { ToolActionMenuBase } from "./ToolActionMenuBase";
|
|
4
|
+
import { ToolActionInfo } from "igniteui-webcomponents-core";
|
|
5
|
+
/**
|
|
6
|
+
* Represents base class for all tool actions in menu
|
|
7
|
+
*/
|
|
8
|
+
export declare abstract class IgcToolActionMenuBaseComponent extends IgcToolActionComponent {
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
readonly i: ToolActionMenuBase;
|
|
13
|
+
constructor();
|
|
14
|
+
connectedCallback(): void;
|
|
15
|
+
disconnectedCallback(): void;
|
|
16
|
+
private static _observedAttributesIgcToolActionMenuBaseComponent;
|
|
17
|
+
static readonly observedAttributes: string[];
|
|
18
|
+
private _actions;
|
|
19
|
+
/**
|
|
20
|
+
* Gets or sets the data or data source instance to which to bind the grid.
|
|
21
|
+
*/
|
|
22
|
+
actions: IgcToolActionCollection;
|
|
23
|
+
findByName(name: string): any;
|
|
24
|
+
fromInfo(info: ToolActionInfo): void;
|
|
25
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionNumberInput } from "./ToolActionNumberInput";
|
|
3
|
+
export declare class IgcToolActionNumberInputComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionNumberInput;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionNumberInput;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionNumberInputComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
export declare class IgcToolActionPerformedEventArgs {
|
|
5
|
+
protected createImplementation(): ToolActionPerformedEventArgs_internal;
|
|
6
|
+
protected _implementation: any;
|
|
7
|
+
/**
|
|
8
|
+
* @hidden
|
|
9
|
+
*/
|
|
10
|
+
readonly i: ToolActionPerformedEventArgs_internal;
|
|
11
|
+
private onImplementationCreated;
|
|
12
|
+
constructor();
|
|
13
|
+
protected _provideImplementation(i: any): void;
|
|
14
|
+
isAggregate: boolean;
|
|
15
|
+
detail: IgcToolActionEventDetail;
|
|
16
|
+
private _detailCollection;
|
|
17
|
+
detailCollection: IgcToolActionEventDetailCollection;
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionRadio } from "./ToolActionRadio";
|
|
3
|
+
export declare class IgcToolActionRadioComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionRadio;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionRadio;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionRadioComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
radioGroup: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionSeparator } from "./ToolActionSeparator";
|
|
3
|
+
export declare class IgcToolActionSeparatorComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionSeparator;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionSeparator;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionSeparatorComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ToolCommandEventArgs as ToolCommandEventArgs_internal } from "./ToolCommandEventArgs";
|
|
2
|
+
import { ToolCommand } from "igniteui-webcomponents-core";
|
|
3
|
+
export declare class IgcToolCommandEventArgs {
|
|
4
|
+
protected createImplementation(): ToolCommandEventArgs_internal;
|
|
5
|
+
protected _implementation: any;
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
9
|
+
readonly i: ToolCommandEventArgs_internal;
|
|
10
|
+
private onImplementationCreated;
|
|
11
|
+
constructor();
|
|
12
|
+
protected _provideImplementation(i: any): void;
|
|
13
|
+
command: ToolCommand;
|
|
14
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { ToolPanel } from "./ToolPanel";
|
|
2
|
+
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
3
|
+
import { ToolPanelOrientation } from './ToolPanelOrientation';
|
|
4
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
5
|
+
import { IgcToolActionCollection } from "./igc-tool-action-collection";
|
|
6
|
+
import { IgcToolPanelContentRefreshedEventArgs } from "./igc-tool-panel-content-refreshed-event-args";
|
|
7
|
+
import { IgcToolCommandEventArgs } from './igc-tool-command-event-args';
|
|
8
|
+
export declare class IgcToolPanelComponent extends IgcHTMLElement {
|
|
9
|
+
private _implementation;
|
|
10
|
+
private _height;
|
|
11
|
+
private _width;
|
|
12
|
+
height: string;
|
|
13
|
+
width: string;
|
|
14
|
+
private _webComponentWrapper;
|
|
15
|
+
private _webComponentRenderer;
|
|
16
|
+
private _portalManager;
|
|
17
|
+
contentActions: IgcToolActionComponent[];
|
|
18
|
+
/**
|
|
19
|
+
* The actions actually present in the editor. Do not directly modify this array.
|
|
20
|
+
* This array's contents can be modified by using the actions property or providing child content.
|
|
21
|
+
*/
|
|
22
|
+
actualActions: IgcToolActionComponent[];
|
|
23
|
+
private _actions;
|
|
24
|
+
private _actionsAdapter;
|
|
25
|
+
/**
|
|
26
|
+
* A collection of manually added actions for the editor.
|
|
27
|
+
*/
|
|
28
|
+
readonly actions: IgcToolActionCollection;
|
|
29
|
+
constructor();
|
|
30
|
+
updateStyle(): void;
|
|
31
|
+
destroy(): void;
|
|
32
|
+
private updateContentProperties;
|
|
33
|
+
protected createImplementation(): ToolPanel;
|
|
34
|
+
readonly i: ToolPanel;
|
|
35
|
+
private _disconnected;
|
|
36
|
+
disconnectedCallback(): void;
|
|
37
|
+
connectedCallback(): void;
|
|
38
|
+
afterContentInit(): void;
|
|
39
|
+
private _settingAttributes;
|
|
40
|
+
protected _attached: boolean;
|
|
41
|
+
private _queuedSetAttributes;
|
|
42
|
+
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
|
|
43
|
+
protected _flushQueuedAttributes(): void;
|
|
44
|
+
protected _a(attrName: string, attrValue: any): void;
|
|
45
|
+
private static _observedAttributesIgcToolPanelComponent;
|
|
46
|
+
static readonly observedAttributes: string[];
|
|
47
|
+
private _updatingFromAttribute;
|
|
48
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
49
|
+
static htmlTagName: string;
|
|
50
|
+
protected static _isElementRegistered: boolean;
|
|
51
|
+
static register(): void;
|
|
52
|
+
/**
|
|
53
|
+
* Gets or Sets the property name that contains the values.
|
|
54
|
+
*/
|
|
55
|
+
cellTextStyle: string;
|
|
56
|
+
/**
|
|
57
|
+
* Gets or sets the color to use for the background of the component.
|
|
58
|
+
*/
|
|
59
|
+
backgroundColor: string;
|
|
60
|
+
/**
|
|
61
|
+
* Gets or sets the color to use for the text of the component.
|
|
62
|
+
*/
|
|
63
|
+
textColor: string;
|
|
64
|
+
/**
|
|
65
|
+
* Gets or sets the color to use for the background of the component.
|
|
66
|
+
*/
|
|
67
|
+
orientation: ToolPanelOrientation;
|
|
68
|
+
findByName(name: string): any;
|
|
69
|
+
protected __p: string;
|
|
70
|
+
protected _hasUserValues: Set<string>;
|
|
71
|
+
protected readonly hasUserValues: Set<string>;
|
|
72
|
+
protected __m(propertyName: string): void;
|
|
73
|
+
protected _stylingContainer: any;
|
|
74
|
+
protected _stylingParent: any;
|
|
75
|
+
protected _inStyling: boolean;
|
|
76
|
+
protected _styling(container: any, component: any, parent?: any): void;
|
|
77
|
+
private _contentRefreshed;
|
|
78
|
+
private _contentRefreshed_wrapped;
|
|
79
|
+
contentRefreshed: (s: IgcToolPanelComponent, e: IgcToolPanelContentRefreshedEventArgs) => void;
|
|
80
|
+
private _onCommand;
|
|
81
|
+
private _onCommand_wrapped;
|
|
82
|
+
onCommand: (s: IgcToolPanelComponent, e: IgcToolCommandEventArgs) => void;
|
|
83
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ToolPanelContentRefreshedEventArgs as ToolPanelContentRefreshedEventArgs_internal } from "./ToolPanelContentRefreshedEventArgs";
|
|
2
|
+
export declare class IgcToolPanelContentRefreshedEventArgs {
|
|
3
|
+
protected createImplementation(): ToolPanelContentRefreshedEventArgs_internal;
|
|
4
|
+
protected _implementation: any;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolPanelContentRefreshedEventArgs_internal;
|
|
9
|
+
private onImplementationCreated;
|
|
10
|
+
constructor();
|
|
11
|
+
protected _provideImplementation(i: any): void;
|
|
12
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { Toolbar } from "./Toolbar";
|
|
2
|
+
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
3
|
+
import { ToolbarOrientation } from './ToolbarOrientation';
|
|
4
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
5
|
+
import { IgcToolActionCollection } from "./igc-tool-action-collection";
|
|
6
|
+
export declare class IgcToolbarComponent extends IgcHTMLElement {
|
|
7
|
+
private _implementation;
|
|
8
|
+
private _height;
|
|
9
|
+
private _width;
|
|
10
|
+
height: string;
|
|
11
|
+
width: string;
|
|
12
|
+
private _webComponentWrapper;
|
|
13
|
+
private _webComponentRenderer;
|
|
14
|
+
private _portalManager;
|
|
15
|
+
contentActions: IgcToolActionComponent[];
|
|
16
|
+
/**
|
|
17
|
+
* The actions actually present in the editor. Do not directly modify this array.
|
|
18
|
+
* This array's contents can be modified by using the actions property or providing child content.
|
|
19
|
+
*/
|
|
20
|
+
combinedActions: IgcToolActionComponent[];
|
|
21
|
+
private _actions;
|
|
22
|
+
private _actionsAdapter;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of manually added actions for the editor.
|
|
25
|
+
*/
|
|
26
|
+
readonly actions: IgcToolActionCollection;
|
|
27
|
+
constructor();
|
|
28
|
+
updateStyle(): void;
|
|
29
|
+
destroy(): void;
|
|
30
|
+
private updateContentProperties;
|
|
31
|
+
protected createImplementation(): Toolbar;
|
|
32
|
+
readonly i: Toolbar;
|
|
33
|
+
private _disconnected;
|
|
34
|
+
disconnectedCallback(): void;
|
|
35
|
+
connectedCallback(): void;
|
|
36
|
+
afterContentInit(): void;
|
|
37
|
+
private _settingAttributes;
|
|
38
|
+
protected _attached: boolean;
|
|
39
|
+
private _queuedSetAttributes;
|
|
40
|
+
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
|
|
41
|
+
protected _flushQueuedAttributes(): void;
|
|
42
|
+
protected _a(attrName: string, attrValue: any): void;
|
|
43
|
+
private static _observedAttributesIgcToolbarComponent;
|
|
44
|
+
static readonly observedAttributes: string[];
|
|
45
|
+
private _updatingFromAttribute;
|
|
46
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
47
|
+
static htmlTagName: string;
|
|
48
|
+
protected static _isElementRegistered: boolean;
|
|
49
|
+
static register(): void;
|
|
50
|
+
private _autoGeneratedActions;
|
|
51
|
+
/**
|
|
52
|
+
* Gets or sets the data or data source instance to which to bind the grid.
|
|
53
|
+
*/
|
|
54
|
+
autoGeneratedActions: IgcToolActionCollection;
|
|
55
|
+
private _actualActions;
|
|
56
|
+
/**
|
|
57
|
+
* Gets or sets the data or data source instance to which to bind the grid.
|
|
58
|
+
*/
|
|
59
|
+
actualActions: IgcToolActionCollection;
|
|
60
|
+
/**
|
|
61
|
+
* Gets or sets the color to use for the background of the component.
|
|
62
|
+
*/
|
|
63
|
+
orientation: ToolbarOrientation;
|
|
64
|
+
/**
|
|
65
|
+
* Gets or sets the color to use for the background of the component.
|
|
66
|
+
*/
|
|
67
|
+
target: any;
|
|
68
|
+
/**
|
|
69
|
+
* Gets or sets the color to use for the background of the component.
|
|
70
|
+
*/
|
|
71
|
+
backgroundColor: string;
|
|
72
|
+
/**
|
|
73
|
+
* Gets or sets the color to use for the text of the component.
|
|
74
|
+
*/
|
|
75
|
+
textColor: string;
|
|
76
|
+
/**
|
|
77
|
+
* Gets or Sets the property name that contains the values.
|
|
78
|
+
*/
|
|
79
|
+
cellTextStyle: string;
|
|
80
|
+
findByName(name: string): any;
|
|
81
|
+
protected __p: string;
|
|
82
|
+
protected _hasUserValues: Set<string>;
|
|
83
|
+
protected readonly hasUserValues: Set<string>;
|
|
84
|
+
protected __m(propertyName: string): void;
|
|
85
|
+
protected _stylingContainer: any;
|
|
86
|
+
protected _stylingParent: any;
|
|
87
|
+
protected _inStyling: boolean;
|
|
88
|
+
protected _styling(container: any, component: any, parent?: any): void;
|
|
89
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-layouts",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Ignite UI WebComponents layout components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-layouts",
|
|
6
6
|
"keywords": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"igniteui-webcomponents-core": "3.
|
|
18
|
-
"igniteui-webcomponents-inputs": "3.
|
|
17
|
+
"igniteui-webcomponents-core": "3.5.0",
|
|
18
|
+
"igniteui-webcomponents-inputs": "3.5.0"
|
|
19
19
|
},
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"typings": "igniteui-webcomponents-layouts.d.ts",
|