ids-enterprise-typings 21.0.6 → 21.0.8

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.
@@ -264,6 +264,9 @@ interface SohoDataGridOptions {
264
264
  /** 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
265
  headerTabStops?: boolean | null;
266
266
 
267
+ /** If false, non-interactive header cells (no filter/sort) will not receive focus via tab. */
268
+ suppressNonInteractiveFocus?: boolean;
269
+
267
270
  /** Show icons in the editors always */
268
271
  showEditorIcons?: boolean;
269
272
 
@@ -30,7 +30,19 @@ interface SohoListBuilderOptions {
30
30
  templateNewItem?: string;
31
31
 
32
32
  /** Html Template String of list item inner content. */
33
- templateItemContent?: string
33
+ templateItemContent?: string;
34
+
35
+ /** When true, hides the entire toolbar and removes the space it occupies. */
36
+ hideToolbar?: boolean;
37
+
38
+ /** When set, clears all existing buttons from the toolbar's buttonset and rebuilds them in the specified order.
39
+ * Valid values: 'add', 'up', 'down', 'edit', 'delete', 'separator'.
40
+ * Default: ['add', 'separator', 'up', 'down', 'separator', 'edit', 'delete'] */
41
+ buttons?: string[];
42
+
43
+ /** When set, excludes the specified buttons from the toolbar.
44
+ * Valid values: 'add', 'up', 'down', 'edit', 'delete'. */
45
+ excludeButtons?: string[];
34
46
  }
35
47
 
36
48
  interface SohoListBuilderStatic {
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.6",
4
+ "version": "21.0.8",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "peerDependencies": {