ids-enterprise-typings 21.0.5 → 21.0.7
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.
|
@@ -261,6 +261,9 @@ interface SohoDataGridOptions {
|
|
|
261
261
|
/** Allow Tab overrides? */
|
|
262
262
|
overrideTabbing?: boolean;
|
|
263
263
|
|
|
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
|
+
headerTabStops?: boolean | null;
|
|
266
|
+
|
|
264
267
|
/** Show icons in the editors always */
|
|
265
268
|
showEditorIcons?: boolean;
|
|
266
269
|
|
|
@@ -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 {
|