igniteui-webcomponents-layouts 3.2.3 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-layouts.umd.js +7675 -276
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/IExternalListPanel.js +11 -0
- package/esm2015/lib/IExternalToolPanel.js +11 -0
- package/esm2015/lib/IExternalToolbar.js +11 -0
- package/esm2015/lib/IListPanelView.js +11 -0
- package/esm2015/lib/IPropertyEditorPanelView.js +11 -0
- package/esm2015/lib/IToolPanelView.js +11 -0
- package/esm2015/lib/IToolbarView.js +11 -0
- package/esm2015/lib/ListPanel.js +7 -0
- package/esm2015/lib/ListPanelContentRefreshedEventArgs.js +19 -0
- package/esm2015/lib/ListPanelDataBindingEventArgs.js +22 -0
- package/esm2015/lib/ListPanelDataSourceNotificationBridge.js +7 -0
- package/esm2015/lib/ListPanelItemModel.js +62 -0
- package/esm2015/lib/ListPanelItemPresenter.js +20 -0
- package/esm2015/lib/ListPanelLayoutPanel.js +7 -0
- package/esm2015/lib/ListPanelOrientation.js +16 -0
- package/esm2015/lib/ListPanelTemplateHeightRequestedEventArgs.js +22 -0
- package/esm2015/lib/ListPanelTemplateItemUpdatingEventArgs.js +22 -0
- package/esm2015/lib/ListPanelTemplateWidthRequestedEventArgs.js +22 -0
- package/esm2015/lib/ListPanelView.js +7 -0
- package/esm2015/lib/ListPanelView_combined.js +972 -0
- package/esm2015/lib/PropertyEditorPanelView_combined.js +106 -106
- package/esm2015/lib/PropertyEditorPropertyDescription_combined.js +84 -58
- package/esm2015/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm2015/lib/PropertyEditorValueType.js +2 -1
- package/esm2015/lib/ToolAction.js +7 -0
- package/esm2015/lib/ToolActionCheckbox.js +7 -0
- package/esm2015/lib/ToolActionCollection.js +7 -0
- package/esm2015/lib/ToolActionEventDetail.js +7 -0
- package/esm2015/lib/ToolActionEventDetailCollection.js +7 -0
- package/esm2015/lib/ToolActionGroupHeader.js +7 -0
- package/esm2015/lib/ToolActionIconButton.js +7 -0
- package/esm2015/lib/ToolActionIconMenu.js +7 -0
- package/esm2015/lib/ToolActionLabel.js +7 -0
- package/esm2015/lib/ToolActionMeasurementContext.js +31 -0
- package/esm2015/lib/ToolActionMenuBase.js +7 -0
- package/esm2015/lib/ToolActionNumberInput.js +7 -0
- package/esm2015/lib/ToolActionPerformedEventArgs.js +7 -0
- package/esm2015/lib/ToolActionRadio.js +7 -0
- package/esm2015/lib/ToolActionSeparator.js +7 -0
- package/esm2015/lib/ToolCommandEventArgs.js +20 -0
- package/esm2015/lib/ToolPanel.js +7 -0
- package/esm2015/lib/ToolPanelContentRefreshedEventArgs.js +19 -0
- package/esm2015/lib/ToolPanelOrientation.js +16 -0
- package/esm2015/lib/ToolPanelView.js +7 -0
- package/esm2015/lib/ToolPanelView_combined.js +1699 -0
- package/esm2015/lib/Toolbar.js +7 -0
- package/esm2015/lib/ToolbarIconManager.js +40 -0
- package/esm2015/lib/ToolbarOrientation.js +16 -0
- package/esm2015/lib/ToolbarView.js +7 -0
- package/esm2015/lib/ToolbarView_combined.js +387 -0
- package/esm2015/lib/igc-list-panel-component.js +466 -0
- package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
- package/esm2015/lib/igc-list-panel-item-model.js +57 -0
- package/esm2015/lib/igc-list-panel-module.js +17 -0
- package/esm2015/lib/igc-list-panel-template-height-requested-event-args.js +42 -0
- package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +51 -0
- package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
- package/esm2015/lib/igc-popup-component.js +7 -0
- package/esm2015/lib/igc-property-editor-data-source.js +7 -2
- package/esm2015/lib/igc-property-editor-description-object.js +5 -0
- package/esm2015/lib/igc-property-editor-panel-component.js +6 -5
- package/esm2015/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm2015/lib/igc-tool-action-checkbox-component.js +63 -0
- package/esm2015/lib/igc-tool-action-checkbox-module.js +16 -0
- package/esm2015/lib/igc-tool-action-collection.js +48 -0
- package/esm2015/lib/igc-tool-action-component.js +333 -0
- package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
- package/esm2015/lib/igc-tool-action-event-detail.js +91 -0
- package/esm2015/lib/igc-tool-action-group-header-component.js +63 -0
- package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-button-component.js +63 -0
- package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +63 -0
- package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -0
- package/esm2015/lib/igc-tool-action-label-component.js +63 -0
- package/esm2015/lib/igc-tool-action-label-module.js +16 -0
- package/esm2015/lib/igc-tool-action-menu-base-component.js +103 -0
- package/esm2015/lib/igc-tool-action-module.js +16 -0
- package/esm2015/lib/igc-tool-action-number-input-component.js +63 -0
- package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
- package/esm2015/lib/igc-tool-action-performed-event-args.js +86 -0
- package/esm2015/lib/igc-tool-action-radio-component.js +69 -0
- package/esm2015/lib/igc-tool-action-radio-module.js +16 -0
- package/esm2015/lib/igc-tool-action-separator-component.js +63 -0
- package/esm2015/lib/igc-tool-action-separator-module.js +16 -0
- package/esm2015/lib/igc-tool-command-event-args.js +30 -0
- package/esm2015/lib/igc-tool-panel-component.js +386 -0
- package/esm2015/lib/igc-tool-panel-content-refreshed-event-args.js +24 -0
- package/esm2015/lib/igc-tool-panel-module.js +29 -0
- package/esm2015/lib/igc-toolbar-component.js +417 -0
- package/esm2015/lib/igc-toolbar-module.js +19 -0
- package/esm2015/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm2015/public_api.js +79 -0
- package/esm5/lib/IExternalListPanel.js +11 -0
- package/esm5/lib/IExternalToolPanel.js +11 -0
- package/esm5/lib/IExternalToolbar.js +11 -0
- package/esm5/lib/IListPanelView.js +11 -0
- package/esm5/lib/IPropertyEditorPanelView.js +11 -0
- package/esm5/lib/IToolPanelView.js +11 -0
- package/esm5/lib/IToolbarView.js +11 -0
- package/esm5/lib/ListPanel.js +7 -0
- package/esm5/lib/ListPanelContentRefreshedEventArgs.js +20 -0
- package/esm5/lib/ListPanelDataBindingEventArgs.js +24 -0
- package/esm5/lib/ListPanelDataSourceNotificationBridge.js +7 -0
- package/esm5/lib/ListPanelItemModel.js +80 -0
- package/esm5/lib/ListPanelItemPresenter.js +22 -0
- package/esm5/lib/ListPanelLayoutPanel.js +7 -0
- package/esm5/lib/ListPanelOrientation.js +16 -0
- package/esm5/lib/ListPanelTemplateHeightRequestedEventArgs.js +24 -0
- package/esm5/lib/ListPanelTemplateItemUpdatingEventArgs.js +24 -0
- package/esm5/lib/ListPanelTemplateWidthRequestedEventArgs.js +24 -0
- package/esm5/lib/ListPanelView.js +7 -0
- package/esm5/lib/ListPanelView_combined.js +1045 -0
- package/esm5/lib/PropertyEditorPanelView_combined.js +106 -106
- package/esm5/lib/PropertyEditorPropertyDescription_combined.js +82 -57
- package/esm5/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm5/lib/PropertyEditorValueType.js +2 -1
- package/esm5/lib/ToolAction.js +7 -0
- package/esm5/lib/ToolActionCheckbox.js +7 -0
- package/esm5/lib/ToolActionCollection.js +7 -0
- package/esm5/lib/ToolActionEventDetail.js +7 -0
- package/esm5/lib/ToolActionEventDetailCollection.js +7 -0
- package/esm5/lib/ToolActionGroupHeader.js +7 -0
- package/esm5/lib/ToolActionIconButton.js +7 -0
- package/esm5/lib/ToolActionIconMenu.js +7 -0
- package/esm5/lib/ToolActionLabel.js +7 -0
- package/esm5/lib/ToolActionMeasurementContext.js +33 -0
- package/esm5/lib/ToolActionMenuBase.js +7 -0
- package/esm5/lib/ToolActionNumberInput.js +7 -0
- package/esm5/lib/ToolActionPerformedEventArgs.js +7 -0
- package/esm5/lib/ToolActionRadio.js +7 -0
- package/esm5/lib/ToolActionSeparator.js +7 -0
- package/esm5/lib/ToolCommandEventArgs.js +22 -0
- package/esm5/lib/ToolPanel.js +7 -0
- package/esm5/lib/ToolPanelContentRefreshedEventArgs.js +20 -0
- package/esm5/lib/ToolPanelOrientation.js +16 -0
- package/esm5/lib/ToolPanelView.js +7 -0
- package/esm5/lib/ToolPanelView_combined.js +1853 -0
- package/esm5/lib/Toolbar.js +7 -0
- package/esm5/lib/ToolbarIconManager.js +44 -0
- package/esm5/lib/ToolbarOrientation.js +16 -0
- package/esm5/lib/ToolbarView.js +7 -0
- package/esm5/lib/ToolbarView_combined.js +459 -0
- package/esm5/lib/igc-list-panel-component.js +544 -0
- package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
- package/esm5/lib/igc-list-panel-item-model.js +79 -0
- package/esm5/lib/igc-list-panel-module.js +21 -0
- package/esm5/lib/igc-list-panel-template-height-requested-event-args.js +60 -0
- package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +65 -0
- package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
- package/esm5/lib/igc-popup-component.js +7 -0
- package/esm5/lib/igc-property-editor-data-source.js +7 -2
- package/esm5/lib/igc-property-editor-description-object.js +5 -0
- package/esm5/lib/igc-property-editor-panel-component.js +6 -5
- package/esm5/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm5/lib/igc-tool-action-checkbox-component.js +72 -0
- package/esm5/lib/igc-tool-action-checkbox-module.js +20 -0
- package/esm5/lib/igc-tool-action-collection.js +53 -0
- package/esm5/lib/igc-tool-action-component.js +409 -0
- package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
- package/esm5/lib/igc-tool-action-event-detail.js +125 -0
- package/esm5/lib/igc-tool-action-group-header-component.js +72 -0
- package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-button-component.js +72 -0
- package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
- package/esm5/lib/igc-tool-action-icon-menu-component.js +72 -0
- package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -0
- package/esm5/lib/igc-tool-action-label-component.js +72 -0
- package/esm5/lib/igc-tool-action-label-module.js +20 -0
- package/esm5/lib/igc-tool-action-menu-base-component.js +117 -0
- package/esm5/lib/igc-tool-action-module.js +20 -0
- package/esm5/lib/igc-tool-action-number-input-component.js +72 -0
- package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
- package/esm5/lib/igc-tool-action-performed-event-args.js +104 -0
- package/esm5/lib/igc-tool-action-radio-component.js +82 -0
- package/esm5/lib/igc-tool-action-radio-module.js +20 -0
- package/esm5/lib/igc-tool-action-separator-component.js +72 -0
- package/esm5/lib/igc-tool-action-separator-module.js +20 -0
- package/esm5/lib/igc-tool-command-event-args.js +40 -0
- package/esm5/lib/igc-tool-panel-component.js +456 -0
- package/esm5/lib/igc-tool-panel-content-refreshed-event-args.js +30 -0
- package/esm5/lib/igc-tool-panel-module.js +33 -0
- package/esm5/lib/igc-toolbar-component.js +489 -0
- package/esm5/lib/igc-toolbar-module.js +23 -0
- package/esm5/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm5/public_api.js +79 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +6751 -262
- package/fesm5/igniteui-webcomponents-layouts.js +7595 -278
- package/lib/IExternalListPanel.d.ts +13 -0
- package/lib/IExternalToolPanel.d.ts +13 -0
- package/lib/IExternalToolbar.d.ts +13 -0
- package/lib/IListPanelView.d.ts +25 -0
- package/lib/IPropertyEditorPanelView.d.ts +26 -0
- package/lib/IToolPanelView.d.ts +25 -0
- package/lib/IToolbarView.d.ts +25 -0
- package/lib/ListPanel.d.ts +1 -0
- package/lib/ListPanelContentRefreshedEventArgs.d.ts +8 -0
- package/lib/ListPanelDataBindingEventArgs.d.ts +10 -0
- package/lib/ListPanelDataSourceNotificationBridge.d.ts +1 -0
- package/lib/ListPanelItemModel.d.ts +22 -0
- package/lib/ListPanelItemPresenter.d.ts +9 -0
- package/lib/ListPanelLayoutPanel.d.ts +1 -0
- package/lib/ListPanelOrientation.d.ts +9 -0
- package/lib/ListPanelTemplateHeightRequestedEventArgs.d.ts +10 -0
- package/lib/ListPanelTemplateItemUpdatingEventArgs.d.ts +12 -0
- package/lib/ListPanelTemplateWidthRequestedEventArgs.d.ts +10 -0
- package/lib/ListPanelView.d.ts +1 -0
- package/lib/ListPanelView_combined.d.ts +197 -0
- package/lib/PropertyEditorPanelView_combined.d.ts +1 -1
- package/lib/PropertyEditorPropertyDescription_combined.d.ts +13 -10
- package/lib/PropertyEditorValueType.d.ts +2 -1
- package/lib/ToolAction.d.ts +1 -0
- package/lib/ToolActionCheckbox.d.ts +1 -0
- package/lib/ToolActionCollection.d.ts +1 -0
- package/lib/ToolActionEventDetail.d.ts +1 -0
- package/lib/ToolActionEventDetailCollection.d.ts +1 -0
- package/lib/ToolActionGroupHeader.d.ts +1 -0
- package/lib/ToolActionIconButton.d.ts +1 -0
- package/lib/ToolActionIconMenu.d.ts +1 -0
- package/lib/ToolActionLabel.d.ts +1 -0
- package/lib/ToolActionMeasurementContext.d.ts +16 -0
- package/lib/ToolActionMenuBase.d.ts +1 -0
- package/lib/ToolActionNumberInput.d.ts +1 -0
- package/lib/ToolActionPerformedEventArgs.d.ts +1 -0
- package/lib/ToolActionRadio.d.ts +1 -0
- package/lib/ToolActionSeparator.d.ts +1 -0
- package/lib/ToolCommandEventArgs.d.ts +10 -0
- package/lib/ToolPanel.d.ts +1 -0
- package/lib/ToolPanelContentRefreshedEventArgs.d.ts +8 -0
- package/lib/ToolPanelOrientation.d.ts +9 -0
- package/lib/ToolPanelView.d.ts +1 -0
- package/lib/ToolPanelView_combined.d.ts +355 -0
- package/lib/Toolbar.d.ts +1 -0
- package/lib/ToolbarIconManager.d.ts +10 -0
- package/lib/ToolbarOrientation.d.ts +9 -0
- package/lib/ToolbarView.d.ts +1 -0
- package/lib/ToolbarView_combined.d.ts +98 -0
- package/lib/igc-list-panel-component.d.ts +122 -0
- package/lib/igc-list-panel-content-refreshed-event-args.d.ts +12 -0
- package/lib/igc-list-panel-item-model.d.ts +17 -0
- package/lib/igc-list-panel-module.d.ts +3 -0
- package/lib/igc-list-panel-template-height-requested-event-args.d.ts +15 -0
- package/lib/igc-list-panel-template-item-updating-event-args.d.ts +15 -0
- package/lib/igc-list-panel-template-width-requested-event-args.d.ts +15 -0
- package/lib/igc-property-editor-panel-component.d.ts +0 -2
- package/lib/igc-property-editor-property-description-component.d.ts +1 -0
- package/lib/igc-tool-action-checkbox-component.d.ts +17 -0
- package/lib/igc-tool-action-checkbox-module.d.ts +3 -0
- package/lib/igc-tool-action-collection.d.ts +8 -0
- package/lib/igc-tool-action-component.d.ts +65 -0
- package/lib/igc-tool-action-event-detail-collection.d.ts +8 -0
- package/lib/igc-tool-action-event-detail.d.ts +22 -0
- package/lib/igc-tool-action-group-header-component.d.ts +17 -0
- package/lib/igc-tool-action-group-header-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-button-component.d.ts +17 -0
- package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
- package/lib/igc-tool-action-icon-menu-component.d.ts +17 -0
- package/lib/igc-tool-action-icon-menu-module.d.ts +3 -0
- package/lib/igc-tool-action-label-component.d.ts +17 -0
- package/lib/igc-tool-action-label-module.d.ts +3 -0
- package/lib/igc-tool-action-menu-base-component.d.ts +25 -0
- package/lib/igc-tool-action-module.d.ts +3 -0
- package/lib/igc-tool-action-number-input-component.d.ts +17 -0
- package/lib/igc-tool-action-number-input-module.d.ts +3 -0
- package/lib/igc-tool-action-performed-event-args.d.ts +18 -0
- package/lib/igc-tool-action-radio-component.d.ts +18 -0
- package/lib/igc-tool-action-radio-module.d.ts +3 -0
- package/lib/igc-tool-action-separator-component.d.ts +17 -0
- package/lib/igc-tool-action-separator-module.d.ts +3 -0
- package/lib/igc-tool-command-event-args.d.ts +14 -0
- package/lib/igc-tool-panel-component.d.ts +83 -0
- package/lib/igc-tool-panel-content-refreshed-event-args.d.ts +12 -0
- package/lib/igc-tool-panel-module.d.ts +3 -0
- package/lib/igc-toolbar-component.d.ts +89 -0
- package/lib/igc-toolbar-module.d.ts +3 -0
- package/package.json +3 -3
- package/public_api.d.ts +79 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IDataSource } from "igniteui-webcomponents-core";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export interface IExternalListPanel {
|
|
7
|
+
createLocalDataSource(a: any): IDataSource;
|
|
8
|
+
onContentSizeChanged(): void;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export declare let IExternalListPanel_$type: Type;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IDataSource } from "igniteui-webcomponents-core";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export interface IExternalToolPanel {
|
|
7
|
+
createLocalDataSource(a: any): IDataSource;
|
|
8
|
+
onContentSizeChanged(): void;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export declare let IExternalToolPanel_$type: Type;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IDataSource } from "igniteui-webcomponents-core";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export interface IExternalToolbar {
|
|
7
|
+
createLocalDataSource(a: any): IDataSource;
|
|
8
|
+
onContentSizeChanged(): void;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export declare let IExternalToolbar_$type: Type;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ListPanel } from "./ListPanel";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
4
|
+
import { FontInfo } from "igniteui-webcomponents-core";
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export interface IListPanelView {
|
|
9
|
+
onInit(): void;
|
|
10
|
+
onContainerProvided(a: any): void;
|
|
11
|
+
setGridHeight(): void;
|
|
12
|
+
onTemplateProvided(a: any, b: any): void;
|
|
13
|
+
notifySizeChanged(a: Size): void;
|
|
14
|
+
measureString(a: string): number;
|
|
15
|
+
getDefaultCellTextStyle(): FontInfo;
|
|
16
|
+
getAvailableWidth(): number;
|
|
17
|
+
getContainer(a: any, b: (arg1: any) => void): void;
|
|
18
|
+
getUIContext(): any;
|
|
19
|
+
needsMeasure(): void;
|
|
20
|
+
model: ListPanel;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
*/
|
|
25
|
+
export declare let IListPanelView_$type: Type;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { PropertyEditorPanel } from "./PropertyEditorPanel";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
4
|
+
import { FontInfo } from "igniteui-webcomponents-core";
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export interface IPropertyEditorPanelView {
|
|
9
|
+
onInit(): void;
|
|
10
|
+
onContainerProvided(a: any): void;
|
|
11
|
+
setupFilter(): void;
|
|
12
|
+
setGridHeight(): void;
|
|
13
|
+
onTemplateProvided(a: any, b: any): void;
|
|
14
|
+
notifySizeChanged(a: Size): void;
|
|
15
|
+
measureString(a: string): number;
|
|
16
|
+
getDefaultCellTextStyle(): FontInfo;
|
|
17
|
+
getAvailableWidth(): number;
|
|
18
|
+
getContainer(a: any, b: (arg1: any) => void): void;
|
|
19
|
+
getUIContext(): any;
|
|
20
|
+
needsMeasure(): void;
|
|
21
|
+
model: PropertyEditorPanel;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @hidden
|
|
25
|
+
*/
|
|
26
|
+
export declare let IPropertyEditorPanelView_$type: Type;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ToolPanel } from "./ToolPanel";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
4
|
+
import { FontInfo } from "igniteui-webcomponents-core";
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export interface IToolPanelView {
|
|
9
|
+
onInit(): void;
|
|
10
|
+
onContainerProvided(a: any): void;
|
|
11
|
+
setGridHeight(): void;
|
|
12
|
+
onTemplateProvided(a: any, b: any): void;
|
|
13
|
+
notifySizeChanged(a: Size): void;
|
|
14
|
+
measureString(a: string): number;
|
|
15
|
+
getDefaultCellTextStyle(): FontInfo;
|
|
16
|
+
getAvailableWidth(): number;
|
|
17
|
+
getContainer(a: any, b: (arg1: any) => void): void;
|
|
18
|
+
getUIContext(): any;
|
|
19
|
+
needsMeasure(): void;
|
|
20
|
+
model: ToolPanel;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
*/
|
|
25
|
+
export declare let IToolPanelView_$type: Type;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Toolbar } from "./Toolbar";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
4
|
+
import { FontInfo } from "igniteui-webcomponents-core";
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export interface IToolbarView {
|
|
9
|
+
onInit(): void;
|
|
10
|
+
onContainerProvided(a: any): void;
|
|
11
|
+
setGridHeight(): void;
|
|
12
|
+
onTemplateProvided(a: any, b: any): void;
|
|
13
|
+
notifySizeChanged(a: Size): void;
|
|
14
|
+
measureString(a: string): number;
|
|
15
|
+
getDefaultCellTextStyle(): FontInfo;
|
|
16
|
+
getAvailableWidth(): number;
|
|
17
|
+
getContainer(a: any, b: (arg1: any) => void): void;
|
|
18
|
+
getUIContext(): any;
|
|
19
|
+
needsMeasure(): void;
|
|
20
|
+
model: Toolbar;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
*/
|
|
25
|
+
export declare let IToolbarView_$type: Type;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ListPanel } from "./ListPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ListPanelDataSourceNotificationBridge } from "./ListPanelView_combined";
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { ListPanelItemPresenter } from "./ListPanelItemPresenter";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class ListPanelItemModel extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
c: boolean;
|
|
9
|
+
l: number;
|
|
10
|
+
j: number;
|
|
11
|
+
private m;
|
|
12
|
+
n: any;
|
|
13
|
+
a: ListPanelItemPresenter;
|
|
14
|
+
private b;
|
|
15
|
+
e: boolean;
|
|
16
|
+
d: boolean;
|
|
17
|
+
f: boolean;
|
|
18
|
+
private g;
|
|
19
|
+
i: number;
|
|
20
|
+
private h;
|
|
21
|
+
k: number;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ListPanelLayoutPanel } from "./ListPanelView_combined";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { ListPanelItemModel } from "./ListPanelItemModel";
|
|
3
|
+
import { NativeUIContent } from "igniteui-webcomponents-core";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class ListPanelTemplateItemUpdatingEventArgs extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
a: ListPanelItemModel;
|
|
10
|
+
c: any;
|
|
11
|
+
b: NativeUIContent;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ListPanelView } from "./ListPanelView_combined";
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
import { Base, Type, INotifyPropertyChanged, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
|
|
2
|
+
import { DomRenderer, DomWrapper } from "igniteui-webcomponents-core";
|
|
3
|
+
import { RenderingContext } from "igniteui-webcomponents-core";
|
|
4
|
+
import { FontInfo } from "igniteui-webcomponents-core";
|
|
5
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
6
|
+
import { NativeUIAbsolutePanel } from "igniteui-webcomponents-core";
|
|
7
|
+
import { NativeUIGrid } from "igniteui-webcomponents-core";
|
|
8
|
+
import { IDataSource } from "igniteui-webcomponents-core";
|
|
9
|
+
import { IExternalListPanel } from "./IExternalListPanel";
|
|
10
|
+
import { IExecutionContext } from "igniteui-webcomponents-core";
|
|
11
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
12
|
+
import { ListPanelOrientation } from "./ListPanelOrientation";
|
|
13
|
+
import { ListPanelItemModel } from "./ListPanelItemModel";
|
|
14
|
+
import { ListPanelContentRefreshedEventArgs } from "./ListPanelContentRefreshedEventArgs";
|
|
15
|
+
import { ListPanelTemplateItemUpdatingEventArgs } from "./ListPanelTemplateItemUpdatingEventArgs";
|
|
16
|
+
import { ListPanelTemplateWidthRequestedEventArgs } from "./ListPanelTemplateWidthRequestedEventArgs";
|
|
17
|
+
import { ListPanelTemplateHeightRequestedEventArgs } from "./ListPanelTemplateHeightRequestedEventArgs";
|
|
18
|
+
import { IDataSourceUpdateNotifier } from "igniteui-webcomponents-core";
|
|
19
|
+
import { NativeUIContainer } from "igniteui-webcomponents-core";
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
export declare class ListPanelView extends Base {
|
|
24
|
+
static $t: Type;
|
|
25
|
+
private n;
|
|
26
|
+
private m;
|
|
27
|
+
constructor();
|
|
28
|
+
p(): any;
|
|
29
|
+
a: ListPanel;
|
|
30
|
+
v(): void;
|
|
31
|
+
i: DomRenderer;
|
|
32
|
+
l: DomWrapper;
|
|
33
|
+
e: RenderingContext;
|
|
34
|
+
k: DomWrapper;
|
|
35
|
+
t(a: DomRenderer): void;
|
|
36
|
+
y(): void;
|
|
37
|
+
x(): void;
|
|
38
|
+
s(): void;
|
|
39
|
+
z(): void;
|
|
40
|
+
private b;
|
|
41
|
+
private aa;
|
|
42
|
+
private c;
|
|
43
|
+
private _gridExternal;
|
|
44
|
+
d(): FontInfo;
|
|
45
|
+
u(): void;
|
|
46
|
+
w(): void;
|
|
47
|
+
r(): void;
|
|
48
|
+
g(): number;
|
|
49
|
+
h(a: string): number;
|
|
50
|
+
f: boolean;
|
|
51
|
+
private j;
|
|
52
|
+
q(a: any, b: (arg1: any) => void): void;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @hidden
|
|
56
|
+
*/
|
|
57
|
+
export declare class ListPanel extends Base implements INotifyPropertyChanged {
|
|
58
|
+
static $t: Type;
|
|
59
|
+
o: ListPanelView;
|
|
60
|
+
u: NativeUIGrid;
|
|
61
|
+
private y;
|
|
62
|
+
private v;
|
|
63
|
+
private readonly w;
|
|
64
|
+
private h;
|
|
65
|
+
bv(a: NativeUIAbsolutePanel): void;
|
|
66
|
+
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
67
|
+
constructor();
|
|
68
|
+
private a8;
|
|
69
|
+
cd(a: Size): void;
|
|
70
|
+
itemsSource: any;
|
|
71
|
+
private a;
|
|
72
|
+
actualDataSource: IDataSource;
|
|
73
|
+
private ag;
|
|
74
|
+
notifySizeChanged(): void;
|
|
75
|
+
destroy(): void;
|
|
76
|
+
provideContainer(a: DomRenderer): void;
|
|
77
|
+
private a0;
|
|
78
|
+
a7: number;
|
|
79
|
+
private ar;
|
|
80
|
+
av: number;
|
|
81
|
+
private r;
|
|
82
|
+
s: FontInfo;
|
|
83
|
+
t(): FontInfo;
|
|
84
|
+
private x;
|
|
85
|
+
readonly ah: boolean;
|
|
86
|
+
private a9;
|
|
87
|
+
protected ca(a: string, b: any, c: any): void;
|
|
88
|
+
private bm;
|
|
89
|
+
private as;
|
|
90
|
+
private aq;
|
|
91
|
+
private ap;
|
|
92
|
+
private ad;
|
|
93
|
+
private z;
|
|
94
|
+
private ac;
|
|
95
|
+
protected ch(): void;
|
|
96
|
+
private bo;
|
|
97
|
+
contentRefreshed: (sender: any, args: ListPanelContentRefreshedEventArgs) => void;
|
|
98
|
+
private cl;
|
|
99
|
+
private bp;
|
|
100
|
+
rowUpdating: (sender: any, args: ListPanelTemplateItemUpdatingEventArgs) => void;
|
|
101
|
+
private bs;
|
|
102
|
+
private br;
|
|
103
|
+
private q;
|
|
104
|
+
itemWidthRequested: (sender: any, args: ListPanelTemplateWidthRequestedEventArgs) => void;
|
|
105
|
+
itemHeightRequested: (sender: any, args: ListPanelTemplateHeightRequestedEventArgs) => void;
|
|
106
|
+
private bl;
|
|
107
|
+
private aw;
|
|
108
|
+
private ax;
|
|
109
|
+
private bq;
|
|
110
|
+
private g;
|
|
111
|
+
private p;
|
|
112
|
+
private co;
|
|
113
|
+
private ao;
|
|
114
|
+
private ck;
|
|
115
|
+
private a6;
|
|
116
|
+
private a5;
|
|
117
|
+
private al;
|
|
118
|
+
private ak;
|
|
119
|
+
private an;
|
|
120
|
+
private am;
|
|
121
|
+
private bk;
|
|
122
|
+
bt(): void;
|
|
123
|
+
cm(): void;
|
|
124
|
+
private b0;
|
|
125
|
+
private ae;
|
|
126
|
+
private ab;
|
|
127
|
+
private bz;
|
|
128
|
+
bu(): void;
|
|
129
|
+
cn(): void;
|
|
130
|
+
a4(): number;
|
|
131
|
+
a3(): number;
|
|
132
|
+
private ay;
|
|
133
|
+
private az;
|
|
134
|
+
private aj;
|
|
135
|
+
by(): void;
|
|
136
|
+
private bx;
|
|
137
|
+
private ci;
|
|
138
|
+
private cj;
|
|
139
|
+
cg(): void;
|
|
140
|
+
private bw;
|
|
141
|
+
private b8;
|
|
142
|
+
private d;
|
|
143
|
+
externalListPanel: IExternalListPanel;
|
|
144
|
+
protected ce(a: string, b: any, c: any): void;
|
|
145
|
+
c: IExecutionContext;
|
|
146
|
+
cp(): void;
|
|
147
|
+
cw(): Size;
|
|
148
|
+
b7(a: number, b: number): void;
|
|
149
|
+
cc(a: number, b: any, c: any): void;
|
|
150
|
+
b6(): void;
|
|
151
|
+
b9(a: number, b: any): void;
|
|
152
|
+
cb(a: number, b: any): void;
|
|
153
|
+
b4(a: number, b: any, c: any): void;
|
|
154
|
+
b1(): void;
|
|
155
|
+
b2(a: number, b: any): void;
|
|
156
|
+
b3(a: number, b: any): void;
|
|
157
|
+
a1(a: any): number;
|
|
158
|
+
a2(a: any[]): number;
|
|
159
|
+
static ct: Brush;
|
|
160
|
+
private cq;
|
|
161
|
+
cs: Brush;
|
|
162
|
+
static j: ListPanelOrientation;
|
|
163
|
+
private i;
|
|
164
|
+
k: ListPanelOrientation;
|
|
165
|
+
static af: boolean;
|
|
166
|
+
private aa;
|
|
167
|
+
ai: boolean;
|
|
168
|
+
static cu: Brush;
|
|
169
|
+
cr: Brush;
|
|
170
|
+
cv: Brush;
|
|
171
|
+
readonly au: number;
|
|
172
|
+
readonly at: number;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* @hidden
|
|
176
|
+
*/
|
|
177
|
+
export declare class ListPanelDataSourceNotificationBridge extends Base implements IDataSourceUpdateNotifier {
|
|
178
|
+
static $t: Type;
|
|
179
|
+
private a;
|
|
180
|
+
constructor(a: ListPanel);
|
|
181
|
+
rangeActualized(a: number, b: number): void;
|
|
182
|
+
notifySetItem(a: number, b: any, c: any): void;
|
|
183
|
+
notifyClearItems(): void;
|
|
184
|
+
notifyInsertItem(a: number, b: any): void;
|
|
185
|
+
notifyRemoveItem(a: number, b: any): void;
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* @hidden
|
|
189
|
+
*/
|
|
190
|
+
export declare class ListPanelLayoutPanel extends Base {
|
|
191
|
+
static $t: Type;
|
|
192
|
+
private a;
|
|
193
|
+
constructor(a: NativeUIAbsolutePanel);
|
|
194
|
+
d(a: Size): void;
|
|
195
|
+
b(a: ListPanel, b: ListPanelItemModel): void;
|
|
196
|
+
c(a: NativeUIContainer): void;
|
|
197
|
+
}
|
|
@@ -51,7 +51,7 @@ export declare class PropertyEditorPanelView extends Base {
|
|
|
51
51
|
*/
|
|
52
52
|
export declare class PropertyEditorPanel extends Base implements INotifyPropertyChanged {
|
|
53
53
|
static $t: Type;
|
|
54
|
-
|
|
54
|
+
l: PropertyEditorPanelView;
|
|
55
55
|
v: NativeUIGrid;
|
|
56
56
|
private r;
|
|
57
57
|
private y;
|
|
@@ -5,6 +5,7 @@ import { PropertyEditorPropertyDescriptionChangedEventArgs } from "./PropertyEdi
|
|
|
5
5
|
import { PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs } from "./PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs";
|
|
6
6
|
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
7
7
|
import { TypeDescriptionContext } from "igniteui-webcomponents-core";
|
|
8
|
+
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
8
9
|
/**
|
|
9
10
|
* @hidden
|
|
10
11
|
*/
|
|
@@ -66,19 +67,21 @@ export declare class PropertyEditorPropertyDescriptionCollection extends Observa
|
|
|
66
67
|
*/
|
|
67
68
|
export declare class PropertyEditorDataSource extends Base implements INotifyPropertyChanged {
|
|
68
69
|
static $t: Type;
|
|
69
|
-
private
|
|
70
|
-
|
|
70
|
+
private k;
|
|
71
|
+
n: string;
|
|
71
72
|
private a;
|
|
72
73
|
b: TypeDescriptionContext;
|
|
73
|
-
private
|
|
74
|
-
|
|
74
|
+
private g;
|
|
75
|
+
h: PropertyEditorPropertyDescriptionCollection;
|
|
75
76
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
76
|
-
protected
|
|
77
|
-
protected
|
|
78
|
-
|
|
79
|
-
private
|
|
80
|
-
private
|
|
81
|
-
|
|
77
|
+
protected p(a: string, b: any, c: any): void;
|
|
78
|
+
protected q(a: string, b: any, c: any): void;
|
|
79
|
+
static d(a: TypeDescriptionContext, b: string, c: Dictionary$2<string, PropertyEditorDataSource>): PropertyEditorDataSource;
|
|
80
|
+
private j;
|
|
81
|
+
private f;
|
|
82
|
+
private i;
|
|
83
|
+
private r;
|
|
84
|
+
e(a: string, b: boolean): PropertyEditorPropertyDescription;
|
|
82
85
|
private c;
|
|
83
86
|
}
|
|
84
87
|
/**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolAction } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionCheckbox } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionCollection } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionEventDetail } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionEventDetailCollection } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionGroupHeader } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionIconButton } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionIconMenu } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionLabel } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { ToolPanelOrientation } from "./ToolPanelOrientation";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class ToolActionMeasurementContext extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
constructor();
|
|
9
|
+
e: number;
|
|
10
|
+
g: number;
|
|
11
|
+
f: number;
|
|
12
|
+
a: ToolPanelOrientation;
|
|
13
|
+
b: number;
|
|
14
|
+
d: number;
|
|
15
|
+
c: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionMenuBase } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionNumberInput } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionPerformedEventArgs } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionRadio } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionSeparator } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolPanel } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolPanelView } from "./ToolPanelView_combined";
|