ids-enterprise-typings 21.0.6 → 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.
|
@@ -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 {
|