ids-enterprise-typings 14.0.3 → 14.1.2
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.
|
@@ -1301,6 +1301,14 @@ interface SohoDataGridStatic {
|
|
|
1301
1301
|
*/
|
|
1302
1302
|
toggleRowDetail(dataRowIndex: number): void;
|
|
1303
1303
|
|
|
1304
|
+
/**
|
|
1305
|
+
* Update the component with new settings.
|
|
1306
|
+
*
|
|
1307
|
+
* @param settings The settings you would like to modify.
|
|
1308
|
+
* @returns This component's API.
|
|
1309
|
+
*/
|
|
1310
|
+
updated(settings: SohoDataGridOptions): SohoDataGridStatic;
|
|
1311
|
+
|
|
1304
1312
|
/**
|
|
1305
1313
|
* Destructor,
|
|
1306
1314
|
*/
|
|
@@ -198,6 +198,10 @@ interface SohoDatePickerStatic {
|
|
|
198
198
|
updated(settings?: SohoDatePickerOptions): void;
|
|
199
199
|
|
|
200
200
|
destroy(): void;
|
|
201
|
+
|
|
202
|
+
openCalendar(): void;
|
|
203
|
+
|
|
204
|
+
loadLegend(legend: Array<SohoDatePickerLegend> | undefined): void;
|
|
201
205
|
}
|
|
202
206
|
|
|
203
207
|
/**
|
|
@@ -208,6 +212,12 @@ interface SohoDatePickerEvent extends JQuery.TriggeredEvent {
|
|
|
208
212
|
elem: HTMLElement[];
|
|
209
213
|
}
|
|
210
214
|
|
|
215
|
+
interface SohoDatePickerMonthRenderedEvent extends JQuery.TriggeredEvent {
|
|
216
|
+
elem: HTMLElement[];
|
|
217
|
+
month: number;
|
|
218
|
+
year: number;
|
|
219
|
+
}
|
|
220
|
+
|
|
211
221
|
/**
|
|
212
222
|
* JQuery Integration
|
|
213
223
|
*/
|
|
@@ -72,6 +72,9 @@ interface SohoMonthView {
|
|
|
72
72
|
/** Set disable Date */
|
|
73
73
|
setDisabled(): void;
|
|
74
74
|
|
|
75
|
+
/** Loads legend list to the monthview settings. */
|
|
76
|
+
loadLegend(legend: SohoMonthViewLegend[] | undefined): void;
|
|
77
|
+
|
|
75
78
|
/** Tear down the markup for the control */
|
|
76
79
|
teardown(): void;
|
|
77
80
|
|