ids-enterprise-typings 21.0.7 → 21.0.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
 
@@ -264,6 +267,9 @@ interface SohoDataGridOptions {
264
267
  /** Controls whether headers are tabbable. If null (default), only headers with interactive filter elements are tabbable. If true, all headers are tabbable. If false, no headers are tabbable (arrow keys still work). */
265
268
  headerTabStops?: boolean | null;
266
269
 
270
+ /** If false, non-interactive header cells (no filter/sort) will not receive focus via tab. */
271
+ suppressNonInteractiveFocus?: boolean;
272
+
267
273
  /** Show icons in the editors always */
268
274
  showEditorIcons?: boolean;
269
275
 
@@ -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
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "21.0.7",
4
+ "version": "21.0.9",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "peerDependencies": {