ids-enterprise-typings 14.1.2 → 14.2.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.
|
@@ -907,6 +907,9 @@ interface SohoDataGridColumn {
|
|
|
907
907
|
/** special display formatting for a numeric column */
|
|
908
908
|
numberFormat?: SohoDataGridColumnNumberFormat;
|
|
909
909
|
|
|
910
|
+
/** specified time format for a time column */
|
|
911
|
+
timeFormat?: string;
|
|
912
|
+
|
|
910
913
|
/** false = prevent user drag/drop this column order i.e. a drilldown column */
|
|
911
914
|
reorderable?: boolean;
|
|
912
915
|
|
|
@@ -946,6 +949,12 @@ interface SohoDataGridColumn {
|
|
|
946
949
|
/** Sets the css text overflow on the cell. Specifically to add 'ellipsis' text */
|
|
947
950
|
textOverflow?: string;
|
|
948
951
|
|
|
952
|
+
/** Sets the name of the icon to show in the header */
|
|
953
|
+
headerIcon?: string;
|
|
954
|
+
|
|
955
|
+
/** Adds an extra class to the header for formatting */
|
|
956
|
+
headerCssClass?: string;
|
|
957
|
+
|
|
949
958
|
/** Content visible function*/
|
|
950
959
|
contentVisible?: SohoDataGridColumnContentVisibleFunction;
|
|
951
960
|
|
|
@@ -1307,7 +1316,7 @@ interface SohoDataGridStatic {
|
|
|
1307
1316
|
* @param settings The settings you would like to modify.
|
|
1308
1317
|
* @returns This component's API.
|
|
1309
1318
|
*/
|
|
1310
|
-
|
|
1319
|
+
updated(settings: SohoDataGridOptions): SohoDataGridStatic;
|
|
1311
1320
|
|
|
1312
1321
|
/**
|
|
1313
1322
|
* Destructor,
|
|
@@ -90,6 +90,12 @@ interface SohoDatePickerOptions {
|
|
|
90
90
|
|
|
91
91
|
/** Set the input to tabbale or not. */
|
|
92
92
|
tabbable?: boolean;
|
|
93
|
+
|
|
94
|
+
/** Set the input to allow increment/decrement of days or not using keyboard. */
|
|
95
|
+
incrementWithKeyboard?: boolean;
|
|
96
|
+
|
|
97
|
+
/** Set the input to allow today shortcut or not using keyboard. */
|
|
98
|
+
todayWithKeyboard?: boolean;
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
/* Options for the legend */
|
|
@@ -202,6 +208,8 @@ interface SohoDatePickerStatic {
|
|
|
202
208
|
openCalendar(): void;
|
|
203
209
|
|
|
204
210
|
loadLegend(legend: Array<SohoDatePickerLegend> | undefined): void;
|
|
211
|
+
|
|
212
|
+
isOpen(): boolean;
|
|
205
213
|
}
|
|
206
214
|
|
|
207
215
|
/**
|
|
@@ -27,6 +27,8 @@ interface SohoSearchFieldOptions extends SohoAutoCompleteOptions {
|
|
|
27
27
|
/* *Has an X to clear? */
|
|
28
28
|
clearable?: boolean;
|
|
29
29
|
|
|
30
|
+
button?: SohoSearchFieldExtraButton;
|
|
31
|
+
|
|
30
32
|
/* Is able to be collapsed */
|
|
31
33
|
collapsible?: boolean;
|
|
32
34
|
|
|
@@ -37,6 +39,17 @@ interface SohoSearchFieldOptions extends SohoAutoCompleteOptions {
|
|
|
37
39
|
tabbable?: boolean;
|
|
38
40
|
}
|
|
39
41
|
|
|
42
|
+
interface SohoSearchFieldExtraButton {
|
|
43
|
+
/* Icon to Show */
|
|
44
|
+
icon?: string;
|
|
45
|
+
|
|
46
|
+
/* Click Function */
|
|
47
|
+
click?: ((e: JQuery.ClickEvent, value: any) => void);
|
|
48
|
+
|
|
49
|
+
/* Id to use*/
|
|
50
|
+
id?: string;
|
|
51
|
+
}
|
|
52
|
+
|
|
40
53
|
/**
|
|
41
54
|
* Soho control seachfield api.
|
|
42
55
|
*/
|
|
@@ -76,10 +89,10 @@ interface SohoSearchFieldStatic {
|
|
|
76
89
|
* Search field category.
|
|
77
90
|
*/
|
|
78
91
|
interface SohoSearchFieldCategory {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
92
|
+
checked: boolean;
|
|
93
|
+
name: string;
|
|
94
|
+
id?: string | number;
|
|
95
|
+
value?: string | number;
|
|
83
96
|
}
|
|
84
97
|
|
|
85
98
|
/** Search field category type */
|