ids-enterprise-typings 15.4.4 → 15.4.5
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.
|
@@ -963,6 +963,9 @@ interface SohoDataGridColumn {
|
|
|
963
963
|
/** Sets the name of the icon to show in the header */
|
|
964
964
|
headerIcon?: string;
|
|
965
965
|
|
|
966
|
+
/** Sets the name of the icon to show in the header */
|
|
967
|
+
headerIconTooltip?: string;
|
|
968
|
+
|
|
966
969
|
/** Adds an extra class to the header for formatting */
|
|
967
970
|
headerCssClass?: string;
|
|
968
971
|
|
|
@@ -229,6 +229,28 @@ interface SohoDatePickerMonthRenderedEvent extends JQuery.TriggeredEvent {
|
|
|
229
229
|
year: number;
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
+
/**
|
|
233
|
+
* Interface to set custom data validation for the datepicker.
|
|
234
|
+
*/
|
|
235
|
+
interface SohoDatePickerValidator {
|
|
236
|
+
validator: {
|
|
237
|
+
/** Validator ID */
|
|
238
|
+
id: string;
|
|
239
|
+
|
|
240
|
+
/** Function to perform the validation */
|
|
241
|
+
check(value: any, field: any, grid: any): boolean
|
|
242
|
+
|
|
243
|
+
/** Message type */
|
|
244
|
+
type: string;
|
|
245
|
+
|
|
246
|
+
/** Message text */
|
|
247
|
+
message: string;
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
/** The event types that will trigger the validation */
|
|
251
|
+
validatorEvents: string;
|
|
252
|
+
}
|
|
253
|
+
|
|
232
254
|
/**
|
|
233
255
|
* JQuery Integration
|
|
234
256
|
*/
|
|
@@ -51,7 +51,7 @@ interface SohoModuleNavSwitcherStatic {
|
|
|
51
51
|
roleDropdownEl?: HTMLElement;
|
|
52
52
|
|
|
53
53
|
/** Reference to the Module Button's Soho Button API, if one is available */
|
|
54
|
-
roleDropdownAPI?:
|
|
54
|
+
roleDropdownAPI?: SohoDropDownStatic;
|
|
55
55
|
|
|
56
56
|
/** Initializes the jQuery component */
|
|
57
57
|
init(): void;
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
/** Defines options present in the Soho Module Nav */
|
|
5
5
|
interface SohoModuleNavOptions {
|
|
6
|
+
accordionSettings?: SohoAccordionOptions;
|
|
6
7
|
displayMode?: SohoModuleNavDisplayMode;
|
|
7
8
|
filterable?: boolean;
|
|
9
|
+
initChildren?: boolean;
|
|
8
10
|
pinSections?: boolean;
|
|
9
11
|
showDetailView?: boolean;
|
|
10
12
|
}
|
package/lib/pie/soho-pie.d.ts
CHANGED
|
@@ -46,6 +46,9 @@ interface SohoPieOptions {
|
|
|
46
46
|
/** Where to locate the legend. This can be bottom or right at the moment. */
|
|
47
47
|
legendPlacement?: 'bottom' | 'right' | string;
|
|
48
48
|
|
|
49
|
+
/** Force Legend popup below regardless of the quantity of labels. */
|
|
50
|
+
forceLegendPopup?: boolean,
|
|
51
|
+
|
|
49
52
|
/** A setting that controls the legend values and format. */
|
|
50
53
|
legend?: SohoPieLegendOptions;
|
|
51
54
|
|