ids-enterprise-typings 13.5.1 → 13.5.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.
|
@@ -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
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Soho Monthview.
|
|
3
|
-
*
|
|
3
|
+
*
|
|
4
4
|
* This file contains the TypeScript mapping for the public
|
|
5
5
|
* interface of the Soho JQuery monthview control.
|
|
6
6
|
*/
|
|
@@ -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
|
|