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,355 @@
|
|
|
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 { ListPanel } from "./ListPanel";
|
|
6
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
7
|
+
import { Popup } from "./Popup";
|
|
8
|
+
import { NativeUIContent } from "igniteui-webcomponents-core";
|
|
9
|
+
import { Rect } from "igniteui-webcomponents-core";
|
|
10
|
+
import { ToolActionType } from "igniteui-webcomponents-core";
|
|
11
|
+
import { ToolCommandArgument } from "igniteui-webcomponents-core";
|
|
12
|
+
import { ListPanelTemplateItemUpdatingEventArgs } from "./ListPanelTemplateItemUpdatingEventArgs";
|
|
13
|
+
import { ToolActionMeasurementContext } from "./ToolActionMeasurementContext";
|
|
14
|
+
import { ToolCommand } from "igniteui-webcomponents-core";
|
|
15
|
+
import { List$1 } from "igniteui-webcomponents-core";
|
|
16
|
+
import { ToolCommandEventArgs } from "./ToolCommandEventArgs";
|
|
17
|
+
import { ToolActionInfo } from "igniteui-webcomponents-core";
|
|
18
|
+
import { ToolPanelOrientation } from "./ToolPanelOrientation";
|
|
19
|
+
import { NativeUIGrid } from "igniteui-webcomponents-core";
|
|
20
|
+
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
21
|
+
import { ToolPanelContentRefreshedEventArgs } from "./ToolPanelContentRefreshedEventArgs";
|
|
22
|
+
import { IExecutionContext } from "igniteui-webcomponents-core";
|
|
23
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
export declare class ToolPanelView extends Base {
|
|
28
|
+
static $t: Type;
|
|
29
|
+
private p;
|
|
30
|
+
private o;
|
|
31
|
+
constructor();
|
|
32
|
+
r(): any;
|
|
33
|
+
c: ToolPanel;
|
|
34
|
+
x(): void;
|
|
35
|
+
k: DomRenderer;
|
|
36
|
+
n: DomWrapper;
|
|
37
|
+
g: RenderingContext;
|
|
38
|
+
m: DomWrapper;
|
|
39
|
+
v(a: DomRenderer): void;
|
|
40
|
+
aa(): void;
|
|
41
|
+
z(): void;
|
|
42
|
+
u(): void;
|
|
43
|
+
ab(): void;
|
|
44
|
+
private d;
|
|
45
|
+
private ad;
|
|
46
|
+
private e;
|
|
47
|
+
private _gridExternal;
|
|
48
|
+
f(): FontInfo;
|
|
49
|
+
w(): void;
|
|
50
|
+
y(): void;
|
|
51
|
+
t(): void;
|
|
52
|
+
i(): number;
|
|
53
|
+
j(a: string): number;
|
|
54
|
+
h: boolean;
|
|
55
|
+
private l;
|
|
56
|
+
s(a: any, b: (arg1: any) => void): void;
|
|
57
|
+
a(): Popup;
|
|
58
|
+
b(a: NativeUIContent): ToolPanel;
|
|
59
|
+
ac(a: any): Rect;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* @hidden
|
|
63
|
+
*/
|
|
64
|
+
export declare class ToolAction extends Base implements INotifyPropertyChanged {
|
|
65
|
+
static $t: Type;
|
|
66
|
+
e: ToolPanel;
|
|
67
|
+
readonly ao: string;
|
|
68
|
+
private a1;
|
|
69
|
+
b(a: boolean): ToolActionEventDetail;
|
|
70
|
+
g(): ToolCommandArgument;
|
|
71
|
+
az(): string;
|
|
72
|
+
w(): any;
|
|
73
|
+
x(): any;
|
|
74
|
+
private ae;
|
|
75
|
+
ax: string;
|
|
76
|
+
a0(): string;
|
|
77
|
+
private z;
|
|
78
|
+
ai: string;
|
|
79
|
+
private y;
|
|
80
|
+
af: string;
|
|
81
|
+
private u;
|
|
82
|
+
v: any;
|
|
83
|
+
private k;
|
|
84
|
+
r: number;
|
|
85
|
+
private l;
|
|
86
|
+
s: number;
|
|
87
|
+
private j;
|
|
88
|
+
q: number;
|
|
89
|
+
private m;
|
|
90
|
+
t: number;
|
|
91
|
+
readonly i: boolean;
|
|
92
|
+
private ad;
|
|
93
|
+
ar: string;
|
|
94
|
+
private ac;
|
|
95
|
+
ap: string;
|
|
96
|
+
private ab;
|
|
97
|
+
am: string;
|
|
98
|
+
private aa;
|
|
99
|
+
ak: string;
|
|
100
|
+
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
101
|
+
protected a8(a: string, b: any, c: any): void;
|
|
102
|
+
protected get_f(): ToolActionType;
|
|
103
|
+
readonly f: ToolActionType;
|
|
104
|
+
protected bc(a: string, b: any, c: any): void;
|
|
105
|
+
ba(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
106
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
107
|
+
a4(a: ToolPanel, b: ToolActionMeasurementContext): void;
|
|
108
|
+
a5(a: ToolPanel, b: ToolActionMeasurementContext): void;
|
|
109
|
+
o(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
110
|
+
p(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
111
|
+
n(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
112
|
+
a9(a: ToolActionEventDetail, b: ToolAction): void;
|
|
113
|
+
private bd;
|
|
114
|
+
onCommand: (sender: any, args: ToolCommandEventArgs) => void;
|
|
115
|
+
private a2;
|
|
116
|
+
h(): boolean;
|
|
117
|
+
private a7;
|
|
118
|
+
private a3;
|
|
119
|
+
performed: (sender: any, args: ToolActionPerformedEventArgs) => void;
|
|
120
|
+
static a(a: ToolActionInfo): ToolAction;
|
|
121
|
+
a6(a: ToolActionInfo): void;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* @hidden
|
|
125
|
+
*/
|
|
126
|
+
export declare class ToolActionLabel extends ToolAction {
|
|
127
|
+
static $t: Type;
|
|
128
|
+
protected get_f(): ToolActionType;
|
|
129
|
+
private bf;
|
|
130
|
+
private be;
|
|
131
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* @hidden
|
|
135
|
+
*/
|
|
136
|
+
export declare class ToolActionRadio extends ToolAction {
|
|
137
|
+
static $t: Type;
|
|
138
|
+
protected get_f(): ToolActionType;
|
|
139
|
+
bf: string;
|
|
140
|
+
b(a: boolean): ToolActionEventDetail;
|
|
141
|
+
x(): any;
|
|
142
|
+
bg(): void;
|
|
143
|
+
private be;
|
|
144
|
+
o(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
145
|
+
private bi;
|
|
146
|
+
private bh;
|
|
147
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* @hidden
|
|
151
|
+
*/
|
|
152
|
+
export declare class ToolActionSeparator extends ToolAction {
|
|
153
|
+
static $t: Type;
|
|
154
|
+
protected get_f(): ToolActionType;
|
|
155
|
+
a5(a: ToolPanel, b: ToolActionMeasurementContext): void;
|
|
156
|
+
private be;
|
|
157
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* @hidden
|
|
161
|
+
*/
|
|
162
|
+
export declare class ToolActionIconButton extends ToolAction {
|
|
163
|
+
static $t: Type;
|
|
164
|
+
protected get_f(): ToolActionType;
|
|
165
|
+
g(): ToolCommandArgument;
|
|
166
|
+
b(a: boolean): ToolActionEventDetail;
|
|
167
|
+
private be;
|
|
168
|
+
o(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
169
|
+
private bg;
|
|
170
|
+
private bf;
|
|
171
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* @hidden
|
|
175
|
+
*/
|
|
176
|
+
export declare class ToolActionGroupHeader extends ToolAction {
|
|
177
|
+
static $t: Type;
|
|
178
|
+
protected get_f(): ToolActionType;
|
|
179
|
+
private be;
|
|
180
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* @hidden
|
|
184
|
+
*/
|
|
185
|
+
export declare abstract class ToolActionMenuBase extends ToolAction {
|
|
186
|
+
static $t: Type;
|
|
187
|
+
g(): ToolCommandArgument;
|
|
188
|
+
a6(a: ToolActionInfo): void;
|
|
189
|
+
constructor();
|
|
190
|
+
private bq;
|
|
191
|
+
private bv;
|
|
192
|
+
private bh;
|
|
193
|
+
actions: ToolActionCollection;
|
|
194
|
+
b(a: boolean): ToolActionEventDetail;
|
|
195
|
+
private bm;
|
|
196
|
+
private be;
|
|
197
|
+
private bk;
|
|
198
|
+
private bl;
|
|
199
|
+
protected bw(): void;
|
|
200
|
+
private bx;
|
|
201
|
+
private bf;
|
|
202
|
+
private bg;
|
|
203
|
+
protected abstract by(): Rect;
|
|
204
|
+
private bu;
|
|
205
|
+
private bt;
|
|
206
|
+
private bj;
|
|
207
|
+
private bo;
|
|
208
|
+
private bn;
|
|
209
|
+
private bs;
|
|
210
|
+
private br;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* @hidden
|
|
214
|
+
*/
|
|
215
|
+
export declare class ToolActionIconMenu extends ToolActionMenuBase {
|
|
216
|
+
static $t: Type;
|
|
217
|
+
protected get_f(): ToolActionType;
|
|
218
|
+
private bz;
|
|
219
|
+
o(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
220
|
+
protected by(): Rect;
|
|
221
|
+
private b1;
|
|
222
|
+
private b0;
|
|
223
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* @hidden
|
|
227
|
+
*/
|
|
228
|
+
export declare class ToolActionCheckbox extends ToolAction {
|
|
229
|
+
static $t: Type;
|
|
230
|
+
protected get_f(): ToolActionType;
|
|
231
|
+
b(a: boolean): ToolActionEventDetail;
|
|
232
|
+
x(): any;
|
|
233
|
+
private be;
|
|
234
|
+
o(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
235
|
+
private bg;
|
|
236
|
+
private bf;
|
|
237
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* @hidden
|
|
241
|
+
*/
|
|
242
|
+
export declare class ToolActionNumberInput extends ToolAction {
|
|
243
|
+
static $t: Type;
|
|
244
|
+
protected get_f(): ToolActionType;
|
|
245
|
+
x(): any;
|
|
246
|
+
private be;
|
|
247
|
+
o(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
248
|
+
private bh;
|
|
249
|
+
bf(): number;
|
|
250
|
+
b(a: boolean): ToolActionEventDetail;
|
|
251
|
+
private bg;
|
|
252
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* @hidden
|
|
256
|
+
*/
|
|
257
|
+
export declare class ToolActionCollection extends ObservableCollection$1<ToolAction> {
|
|
258
|
+
static $t: Type;
|
|
259
|
+
constructor();
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* @hidden
|
|
263
|
+
*/
|
|
264
|
+
export declare class ToolActionPerformedEventArgs extends Base {
|
|
265
|
+
static $t: Type;
|
|
266
|
+
constructor();
|
|
267
|
+
c: boolean;
|
|
268
|
+
a: ToolActionEventDetail;
|
|
269
|
+
b: ToolActionEventDetailCollection;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* @hidden
|
|
273
|
+
*/
|
|
274
|
+
export declare class ToolActionEventDetail extends Base {
|
|
275
|
+
static $t: Type;
|
|
276
|
+
a: ToolAction;
|
|
277
|
+
b: ToolActionType;
|
|
278
|
+
d: boolean;
|
|
279
|
+
c: boolean;
|
|
280
|
+
f: number;
|
|
281
|
+
e: Date;
|
|
282
|
+
g: any;
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
* @hidden
|
|
286
|
+
*/
|
|
287
|
+
export declare class ToolActionEventDetailCollection extends ObservableCollection$1<ToolActionEventDetail> {
|
|
288
|
+
static $t: Type;
|
|
289
|
+
constructor();
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* @hidden
|
|
293
|
+
*/
|
|
294
|
+
export declare class ToolPanel extends Base implements INotifyPropertyChanged {
|
|
295
|
+
static $t: Type;
|
|
296
|
+
l: ToolPanelView;
|
|
297
|
+
p: NativeUIGrid;
|
|
298
|
+
private s;
|
|
299
|
+
private q;
|
|
300
|
+
private readonly r;
|
|
301
|
+
aq(a: ListPanel): void;
|
|
302
|
+
private ag;
|
|
303
|
+
private ah;
|
|
304
|
+
private ai;
|
|
305
|
+
private f;
|
|
306
|
+
private aj;
|
|
307
|
+
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
308
|
+
private d;
|
|
309
|
+
aw(a: Size): void;
|
|
310
|
+
contentRefreshed: (sender: any, args: ToolPanelContentRefreshedEventArgs) => void;
|
|
311
|
+
actions: ToolActionCollection;
|
|
312
|
+
constructor();
|
|
313
|
+
private ak;
|
|
314
|
+
private av;
|
|
315
|
+
private t;
|
|
316
|
+
protected a2(): void;
|
|
317
|
+
private an;
|
|
318
|
+
private w;
|
|
319
|
+
private x;
|
|
320
|
+
private v;
|
|
321
|
+
private al;
|
|
322
|
+
u(a: ToolAction): boolean;
|
|
323
|
+
c(a: string): ToolAction;
|
|
324
|
+
y(a: ToolAction): List$1<ToolAction>;
|
|
325
|
+
private as;
|
|
326
|
+
private az;
|
|
327
|
+
private at;
|
|
328
|
+
private a4;
|
|
329
|
+
private ao;
|
|
330
|
+
ap(): void;
|
|
331
|
+
a3(a: ToolAction): void;
|
|
332
|
+
private ar;
|
|
333
|
+
notifySizeChanged(): void;
|
|
334
|
+
destroy(): void;
|
|
335
|
+
provideContainer(a: DomRenderer): void;
|
|
336
|
+
private m;
|
|
337
|
+
n: FontInfo;
|
|
338
|
+
o(): FontInfo;
|
|
339
|
+
protected ax(a: string, b: any, c: any): void;
|
|
340
|
+
protected a0(a: string, b: any, c: any): void;
|
|
341
|
+
a: IExecutionContext;
|
|
342
|
+
static a8: Brush;
|
|
343
|
+
private a5;
|
|
344
|
+
a7: Brush;
|
|
345
|
+
static a9: Brush;
|
|
346
|
+
a6: Brush;
|
|
347
|
+
private b;
|
|
348
|
+
private z;
|
|
349
|
+
ba: Brush;
|
|
350
|
+
static j: ToolPanelOrientation;
|
|
351
|
+
private i;
|
|
352
|
+
k: ToolPanelOrientation;
|
|
353
|
+
ay(a: ToolAction, b: ToolCommand): void;
|
|
354
|
+
onCommand: (sender: any, args: ToolCommandEventArgs) => void;
|
|
355
|
+
}
|
package/lib/Toolbar.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Toolbar } from "./ToolbarView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolbarView } from "./ToolbarView_combined";
|
|
@@ -0,0 +1,98 @@
|
|
|
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 { ToolPanel } from "./ToolPanel";
|
|
6
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
7
|
+
import { ToolActionCollection } from "./ToolActionCollection";
|
|
8
|
+
import { ToolbarOrientation } from "./ToolbarOrientation";
|
|
9
|
+
import { IToolbarTarget } from "igniteui-webcomponents-core";
|
|
10
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
11
|
+
import { IExecutionContext } from "igniteui-webcomponents-core";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare class ToolbarView extends Base {
|
|
16
|
+
static $t: Type;
|
|
17
|
+
private n;
|
|
18
|
+
private m;
|
|
19
|
+
constructor();
|
|
20
|
+
p(): any;
|
|
21
|
+
a: Toolbar;
|
|
22
|
+
v(): void;
|
|
23
|
+
i: DomRenderer;
|
|
24
|
+
l: DomWrapper;
|
|
25
|
+
e: RenderingContext;
|
|
26
|
+
k: DomWrapper;
|
|
27
|
+
t(a: DomRenderer): void;
|
|
28
|
+
y(): void;
|
|
29
|
+
x(): void;
|
|
30
|
+
s(): void;
|
|
31
|
+
z(): void;
|
|
32
|
+
private b;
|
|
33
|
+
private aa;
|
|
34
|
+
private c;
|
|
35
|
+
private _gridExternal;
|
|
36
|
+
d(): FontInfo;
|
|
37
|
+
u(): void;
|
|
38
|
+
w(): void;
|
|
39
|
+
r(): void;
|
|
40
|
+
g(): number;
|
|
41
|
+
h(a: string): number;
|
|
42
|
+
f: boolean;
|
|
43
|
+
private j;
|
|
44
|
+
q(a: any, b: (arg1: any) => void): void;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @hidden
|
|
48
|
+
*/
|
|
49
|
+
export declare class Toolbar extends Base implements INotifyPropertyChanged {
|
|
50
|
+
static $t: Type;
|
|
51
|
+
k: ToolbarView;
|
|
52
|
+
private s;
|
|
53
|
+
constructor();
|
|
54
|
+
private q;
|
|
55
|
+
private readonly r;
|
|
56
|
+
private l;
|
|
57
|
+
am(a: ToolPanel): void;
|
|
58
|
+
private ag;
|
|
59
|
+
ap(a: Size): void;
|
|
60
|
+
private d;
|
|
61
|
+
autoGeneratedActions: ToolActionCollection;
|
|
62
|
+
private b;
|
|
63
|
+
actions: ToolActionCollection;
|
|
64
|
+
private c;
|
|
65
|
+
actualActions: ToolActionCollection;
|
|
66
|
+
static i: ToolbarOrientation;
|
|
67
|
+
private h;
|
|
68
|
+
j: ToolbarOrientation;
|
|
69
|
+
m: IToolbarTarget;
|
|
70
|
+
static v: any;
|
|
71
|
+
private u;
|
|
72
|
+
w: any;
|
|
73
|
+
static az: Brush;
|
|
74
|
+
private aw;
|
|
75
|
+
ay: Brush;
|
|
76
|
+
static a0: Brush;
|
|
77
|
+
ax: Brush;
|
|
78
|
+
a1: Brush;
|
|
79
|
+
private n;
|
|
80
|
+
o: FontInfo;
|
|
81
|
+
p(): FontInfo;
|
|
82
|
+
private ah;
|
|
83
|
+
private ai;
|
|
84
|
+
private ao;
|
|
85
|
+
private t;
|
|
86
|
+
protected au(): void;
|
|
87
|
+
private ak;
|
|
88
|
+
private av;
|
|
89
|
+
private al;
|
|
90
|
+
notifySizeChanged(): void;
|
|
91
|
+
destroy(): void;
|
|
92
|
+
provideContainer(a: DomRenderer): void;
|
|
93
|
+
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
94
|
+
protected aq(a: string, b: any, c: any): void;
|
|
95
|
+
protected as(a: string, b: any, c: any): void;
|
|
96
|
+
private ar;
|
|
97
|
+
a: IExecutionContext;
|
|
98
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { ListPanel } from "./ListPanel";
|
|
2
|
+
import { IDataSource } from "igniteui-webcomponents-core";
|
|
3
|
+
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
4
|
+
import { IgcListPanelTemplateItemUpdatingEventArgs } from './igc-list-panel-template-item-updating-event-args';
|
|
5
|
+
import { ListPanelOrientation } from './ListPanelOrientation';
|
|
6
|
+
import { IgcListPanelContentRefreshedEventArgs } from './igc-list-panel-content-refreshed-event-args';
|
|
7
|
+
import { IgcListPanelTemplateWidthRequestedEventArgs } from './igc-list-panel-template-width-requested-event-args';
|
|
8
|
+
import { IgcListPanelTemplateHeightRequestedEventArgs } from './igc-list-panel-template-height-requested-event-args';
|
|
9
|
+
import { IExternalListPanel } from './IExternalListPanel';
|
|
10
|
+
export declare class IgcListPanelComponent extends IgcHTMLElement implements IExternalListPanel {
|
|
11
|
+
private _implementation;
|
|
12
|
+
private _height;
|
|
13
|
+
private _width;
|
|
14
|
+
height: string;
|
|
15
|
+
width: string;
|
|
16
|
+
createLocalDataSource(itemsSource: any): IDataSource;
|
|
17
|
+
onContentSizeChanged(): void;
|
|
18
|
+
private _webComponentWrapper;
|
|
19
|
+
private _webComponentRenderer;
|
|
20
|
+
constructor();
|
|
21
|
+
updateStyle(): void;
|
|
22
|
+
destroy(): void;
|
|
23
|
+
protected createImplementation(): ListPanel;
|
|
24
|
+
readonly i: ListPanel;
|
|
25
|
+
private _disconnected;
|
|
26
|
+
disconnectedCallback(): void;
|
|
27
|
+
connectedCallback(): void;
|
|
28
|
+
afterContentInit(): void;
|
|
29
|
+
private _dataSource;
|
|
30
|
+
dataSource: any;
|
|
31
|
+
private _settingAttributes;
|
|
32
|
+
protected _attached: boolean;
|
|
33
|
+
private _queuedSetAttributes;
|
|
34
|
+
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
|
|
35
|
+
protected _flushQueuedAttributes(): void;
|
|
36
|
+
protected _a(attrName: string, attrValue: any): void;
|
|
37
|
+
private static _observedAttributesIgcListPanelComponent;
|
|
38
|
+
static readonly observedAttributes: string[];
|
|
39
|
+
private _updatingFromAttribute;
|
|
40
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
41
|
+
static htmlTagName: string;
|
|
42
|
+
protected static _isElementRegistered: boolean;
|
|
43
|
+
static register(): void;
|
|
44
|
+
/**
|
|
45
|
+
* Gets or Sets the property name that contains the values.
|
|
46
|
+
*/
|
|
47
|
+
rowHeight: number;
|
|
48
|
+
actualRowHeight: number;
|
|
49
|
+
/**
|
|
50
|
+
* Gets or Sets the property name that contains the values.
|
|
51
|
+
*/
|
|
52
|
+
cellTextStyle: string;
|
|
53
|
+
readonly hasUnevenSizes: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Gets or sets the color to use for the background of the component.
|
|
56
|
+
*/
|
|
57
|
+
backgroundColor: string;
|
|
58
|
+
/**
|
|
59
|
+
* Gets or sets the color to use for the background of the component.
|
|
60
|
+
*/
|
|
61
|
+
orientation: ListPanelOrientation;
|
|
62
|
+
/**
|
|
63
|
+
* Gets or sets the color to use for the background of the component.
|
|
64
|
+
*/
|
|
65
|
+
isCustomRowHeightEnabled: boolean;
|
|
66
|
+
/**
|
|
67
|
+
* Gets or sets the color to use for the text of the component.
|
|
68
|
+
*/
|
|
69
|
+
textColor: string;
|
|
70
|
+
findByName(name: string): any;
|
|
71
|
+
protected __p: string;
|
|
72
|
+
protected _hasUserValues: Set<string>;
|
|
73
|
+
protected readonly hasUserValues: Set<string>;
|
|
74
|
+
protected __m(propertyName: string): void;
|
|
75
|
+
protected _stylingContainer: any;
|
|
76
|
+
protected _stylingParent: any;
|
|
77
|
+
protected _inStyling: boolean;
|
|
78
|
+
protected _styling(container: any, component: any, parent?: any): void;
|
|
79
|
+
/**
|
|
80
|
+
* Gets the last visible index in the grid.
|
|
81
|
+
|
|
82
|
+
*/
|
|
83
|
+
getLastVisibleIndex(): number;
|
|
84
|
+
/**
|
|
85
|
+
* Gets the first visible index in the grid.
|
|
86
|
+
|
|
87
|
+
*/
|
|
88
|
+
getFirstVisibleIndex(): number;
|
|
89
|
+
/**
|
|
90
|
+
* Invalidates the bound data for the rows currently visible.
|
|
91
|
+
|
|
92
|
+
*/
|
|
93
|
+
invalidateVisibleItems(): void;
|
|
94
|
+
notifySetItem(index: number, oldItem: any, newItem: any): void;
|
|
95
|
+
/**
|
|
96
|
+
* Manually notifies the grid's data source that the data it has bound to has been cleared and needs to be re-examined.
|
|
97
|
+
* This should not be called if the data that the grid is bound to is already observable.
|
|
98
|
+
|
|
99
|
+
*/
|
|
100
|
+
notifyClearItems(): void;
|
|
101
|
+
notifyInsertItem(index: number, newItem: any): void;
|
|
102
|
+
notifyRemoveItem(index: number, oldItem: any): void;
|
|
103
|
+
/**
|
|
104
|
+
* Returns the data index of an item within the bound data source.
|
|
105
|
+
|
|
106
|
+
* @param item * The item from which to get the index.
|
|
107
|
+
*/
|
|
108
|
+
dataIndexOfItem(item: any): number;
|
|
109
|
+
dataIndexOfPrimaryKey(key: any[]): number;
|
|
110
|
+
private _contentRefreshed;
|
|
111
|
+
private _contentRefreshed_wrapped;
|
|
112
|
+
contentRefreshed: (s: IgcListPanelComponent, e: IgcListPanelContentRefreshedEventArgs) => void;
|
|
113
|
+
private _rowUpdating;
|
|
114
|
+
private _rowUpdating_wrapped;
|
|
115
|
+
rowUpdating: (s: IgcListPanelComponent, e: IgcListPanelTemplateItemUpdatingEventArgs) => void;
|
|
116
|
+
private _itemWidthRequested;
|
|
117
|
+
private _itemWidthRequested_wrapped;
|
|
118
|
+
itemWidthRequested: (s: IgcListPanelComponent, e: IgcListPanelTemplateWidthRequestedEventArgs) => void;
|
|
119
|
+
private _itemHeightRequested;
|
|
120
|
+
private _itemHeightRequested_wrapped;
|
|
121
|
+
itemHeightRequested: (s: IgcListPanelComponent, e: IgcListPanelTemplateHeightRequestedEventArgs) => void;
|
|
122
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ListPanelContentRefreshedEventArgs as ListPanelContentRefreshedEventArgs_internal } from "./ListPanelContentRefreshedEventArgs";
|
|
2
|
+
export declare class IgcListPanelContentRefreshedEventArgs {
|
|
3
|
+
protected createImplementation(): ListPanelContentRefreshedEventArgs_internal;
|
|
4
|
+
protected _implementation: any;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ListPanelContentRefreshedEventArgs_internal;
|
|
9
|
+
private onImplementationCreated;
|
|
10
|
+
constructor();
|
|
11
|
+
protected _provideImplementation(i: any): void;
|
|
12
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ListPanelItemModel as ListPanelItemModel_internal } from "./ListPanelItemModel";
|
|
2
|
+
export declare class IgcListPanelItemModel {
|
|
3
|
+
protected createImplementation(): ListPanelItemModel_internal;
|
|
4
|
+
protected _implementation: any;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ListPanelItemModel_internal;
|
|
9
|
+
private onImplementationCreated;
|
|
10
|
+
constructor();
|
|
11
|
+
protected _provideImplementation(i: any): void;
|
|
12
|
+
dataRow: number;
|
|
13
|
+
rowHeight: number;
|
|
14
|
+
rowObject: any;
|
|
15
|
+
isModelDirty: boolean;
|
|
16
|
+
findByName(name: string): any;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ListPanelTemplateHeightRequestedEventArgs as ListPanelTemplateHeightRequestedEventArgs_internal } from "./ListPanelTemplateHeightRequestedEventArgs";
|
|
2
|
+
export declare class IgcListPanelTemplateHeightRequestedEventArgs {
|
|
3
|
+
protected createImplementation(): ListPanelTemplateHeightRequestedEventArgs_internal;
|
|
4
|
+
protected _implementation: any;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ListPanelTemplateHeightRequestedEventArgs_internal;
|
|
9
|
+
private onImplementationCreated;
|
|
10
|
+
constructor();
|
|
11
|
+
protected _provideImplementation(i: any): void;
|
|
12
|
+
dataRow: number;
|
|
13
|
+
dataItem: any;
|
|
14
|
+
height: number;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IgcListPanelItemModel } from "./igc-list-panel-item-model";
|
|
2
|
+
import { ListPanelTemplateItemUpdatingEventArgs as ListPanelTemplateItemUpdatingEventArgs_internal } from "./ListPanelTemplateItemUpdatingEventArgs";
|
|
3
|
+
export declare class IgcListPanelTemplateItemUpdatingEventArgs {
|
|
4
|
+
protected createImplementation(): ListPanelTemplateItemUpdatingEventArgs_internal;
|
|
5
|
+
protected _implementation: any;
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
9
|
+
readonly i: ListPanelTemplateItemUpdatingEventArgs_internal;
|
|
10
|
+
private onImplementationCreated;
|
|
11
|
+
constructor();
|
|
12
|
+
protected _provideImplementation(i: any): void;
|
|
13
|
+
model: IgcListPanelItemModel;
|
|
14
|
+
content: any;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ListPanelTemplateWidthRequestedEventArgs as ListPanelTemplateWidthRequestedEventArgs_internal } from "./ListPanelTemplateWidthRequestedEventArgs";
|
|
2
|
+
export declare class IgcListPanelTemplateWidthRequestedEventArgs {
|
|
3
|
+
protected createImplementation(): ListPanelTemplateWidthRequestedEventArgs_internal;
|
|
4
|
+
protected _implementation: any;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ListPanelTemplateWidthRequestedEventArgs_internal;
|
|
9
|
+
private onImplementationCreated;
|
|
10
|
+
constructor();
|
|
11
|
+
protected _provideImplementation(i: any): void;
|
|
12
|
+
dataRow: number;
|
|
13
|
+
dataItem: any;
|
|
14
|
+
width: number;
|
|
15
|
+
}
|