ids-enterprise-typings 20.2.8 → 20.2.9
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.
|
@@ -74,6 +74,9 @@ interface SohoColumnOptions {
|
|
|
74
74
|
|
|
75
75
|
/** The ability to use line chart if set to true. This will need a target value to the dataset. */
|
|
76
76
|
useLine?: boolean;
|
|
77
|
+
|
|
78
|
+
/** Forces decimal point to '.' on y-axis ticks regardless of locale. */
|
|
79
|
+
forceDecimalPoint?: boolean;
|
|
77
80
|
}
|
|
78
81
|
|
|
79
82
|
interface SohoColumnSelectEvent {
|
|
@@ -198,6 +198,9 @@ interface SohoDataGridOptions {
|
|
|
198
198
|
/** Disable Sort Logic client side and let your server do it */
|
|
199
199
|
disableClientSort?: boolean;
|
|
200
200
|
|
|
201
|
+
/** Allow tri-state sorting (ascending, descending, unsorted) */
|
|
202
|
+
allowTriStateSort?: boolean;
|
|
203
|
+
|
|
201
204
|
/** Can provide a custom function to adjust results text */
|
|
202
205
|
resultsText?: SohoDataGridResultsTextFunction;
|
|
203
206
|
|
|
@@ -99,6 +99,9 @@ interface SohoDatePickerOptions {
|
|
|
99
99
|
|
|
100
100
|
/** Set the input to allow today shortcut or not using keyboard. */
|
|
101
101
|
todayWithKeyboard?: boolean;
|
|
102
|
+
|
|
103
|
+
/** If false, the user cannot type into the datepicker field and must select a date from the calendar popup. Defaults to true. */
|
|
104
|
+
editable?: boolean;
|
|
102
105
|
}
|
|
103
106
|
|
|
104
107
|
/* Options for the legend */
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
interface SohoFileUploadOptions {
|
|
9
9
|
/** Add extra attributes like id's to the component **/
|
|
10
10
|
attributes?: Array<Object> | Object;
|
|
11
|
+
|
|
12
|
+
/** Set the input to tabbable */
|
|
13
|
+
tabbable?: boolean;
|
|
11
14
|
}
|
|
12
15
|
|
|
13
16
|
interface SohoFileUploadEvent extends JQuery.TriggeredEvent {
|
|
@@ -60,6 +60,9 @@ interface SohoPopupMenuOptions {
|
|
|
60
60
|
|
|
61
61
|
/** Appends an optional css class to `.popupmenu-wrapper/popupmenu` elements */
|
|
62
62
|
cssClass?: string | null;
|
|
63
|
+
|
|
64
|
+
/** If true, the menu stays open when clicking outside or pressing Escape/Tab */
|
|
65
|
+
keepOpen?: boolean;
|
|
63
66
|
}
|
|
64
67
|
|
|
65
68
|
/**
|