ids-enterprise-typings 17.3.0-beta.2 → 17.3.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -107,6 +107,11 @@ interface SohoContextualActionPanelStatic {
|
|
|
107
107
|
*/
|
|
108
108
|
buttonsetAPI: SohoButtonsetStatic;
|
|
109
109
|
|
|
110
|
+
/**
|
|
111
|
+
* API for interacting with the toolbar on the dialog.
|
|
112
|
+
*/
|
|
113
|
+
toolbarAPI: SohoToolbarStatic | SohoToolbarFlexStatic;
|
|
114
|
+
|
|
110
115
|
/**
|
|
111
116
|
* A jQuery selector to the element in the DOM where the
|
|
112
117
|
* panel is placed after opening.
|
|
@@ -87,6 +87,9 @@ interface SohoStandalonePagerOptions {
|
|
|
87
87
|
|
|
88
88
|
/** Add extra attributes like id's to the component **/
|
|
89
89
|
attributes?: Array<Object> | Object;
|
|
90
|
+
|
|
91
|
+
/** Current page */
|
|
92
|
+
activePage?: number;
|
|
90
93
|
}
|
|
91
94
|
|
|
92
95
|
/**
|
|
@@ -194,6 +197,12 @@ interface SohoStandalonePagerStatic {
|
|
|
194
197
|
*/
|
|
195
198
|
showPageSizeSelector(toggleOption: boolean): void;
|
|
196
199
|
|
|
200
|
+
/**
|
|
201
|
+
* Set current page
|
|
202
|
+
* @param page the page number to set as active
|
|
203
|
+
* */
|
|
204
|
+
setActivePage(page: number): void;
|
|
205
|
+
|
|
197
206
|
/** call from ngOnDestroy to ensure any resources the pager uses are cleaned up */
|
|
198
207
|
destroy(): void;
|
|
199
208
|
}
|