@omnia/fx 8.0.15-vnext → 8.0.17-vnext

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.
Files changed (33) hide show
  1. package/internal-do-not-import-from-here/index.d.ts +3 -3
  2. package/internal-do-not-import-from-here/shared/models/Guid.js +1 -1
  3. package/internal-do-not-import-from-here/stores/TimeZoneStore.d.ts +1 -2
  4. package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +0 -2
  5. package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +1 -1
  6. package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +1 -1
  7. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +25 -5
  8. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +25 -5
  9. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +25 -5
  10. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +25 -5
  11. package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +25 -5
  12. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +1 -1
  13. package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +1 -0
  14. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
  15. package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +0 -16
  16. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +311 -0
  17. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +0 -28
  18. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +0 -16
  19. package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +1 -1
  20. package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +3 -1
  21. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +42 -0
  22. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +1 -1
  23. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +4 -0
  24. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +210 -0
  25. package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +25 -5
  26. package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +0 -16
  27. package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +1 -1
  29. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +1 -1
  30. package/internal-do-not-import-from-here/vue/VueHooks.d.ts +1 -1
  31. package/internal-do-not-import-from-here/wctypings.d.ts +4 -0
  32. package/package.json +4 -3
  33. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure_old.d.ts +0 -33
@@ -0,0 +1,311 @@
1
+ export type ColsValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ container?: any;
8
+ colorSchemaType?: any;
9
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
+ xl: {
11
+ type: import("vue").PropType<ColsValue>;
12
+ required: boolean;
13
+ default?: ColsValue;
14
+ } & {
15
+ type: import("vue").PropType<ColsValue>;
16
+ required: boolean;
17
+ default?: ColsValue;
18
+ };
19
+ lg: {
20
+ type: import("vue").PropType<ColsValue>;
21
+ required: boolean;
22
+ default?: ColsValue;
23
+ } & {
24
+ type: import("vue").PropType<ColsValue>;
25
+ required: boolean;
26
+ default?: ColsValue;
27
+ };
28
+ md: {
29
+ type: import("vue").PropType<ColsValue>;
30
+ required: boolean;
31
+ default?: ColsValue;
32
+ } & {
33
+ type: import("vue").PropType<ColsValue>;
34
+ required: boolean;
35
+ default?: ColsValue;
36
+ };
37
+ sm: {
38
+ type: import("vue").PropType<ColsValue>;
39
+ required: boolean;
40
+ default?: ColsValue;
41
+ } & {
42
+ type: import("vue").PropType<ColsValue>;
43
+ required: boolean;
44
+ default?: ColsValue;
45
+ };
46
+ xs: {
47
+ type: import("vue").PropType<ColsValue>;
48
+ required: boolean;
49
+ default?: ColsValue;
50
+ } & {
51
+ type: import("vue").PropType<ColsValue>;
52
+ required: boolean;
53
+ default?: ColsValue;
54
+ };
55
+ cols: {
56
+ type: import("vue").PropType<ColsValue>;
57
+ required: boolean;
58
+ default?: ColsValue;
59
+ } & {
60
+ type: import("vue").PropType<ColsValue>;
61
+ required: boolean;
62
+ default?: ColsValue;
63
+ };
64
+ class: {
65
+ type: import("vue").PropType<String | String[]>;
66
+ required: boolean;
67
+ };
68
+ colorSchemaType?: any;
69
+ container?: any;
70
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
71
+ $attrs: {
72
+ [x: string]: unknown;
73
+ };
74
+ $refs: {
75
+ [x: string]: unknown;
76
+ };
77
+ $slots: Readonly<{
78
+ [name: string]: import("vue").Slot;
79
+ }>;
80
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
81
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
82
+ $emit: (event: string, ...args: any[]) => void;
83
+ $el: any;
84
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
85
+ xl: {
86
+ type: import("vue").PropType<ColsValue>;
87
+ required: boolean;
88
+ default?: ColsValue;
89
+ } & {
90
+ type: import("vue").PropType<ColsValue>;
91
+ required: boolean;
92
+ default?: ColsValue;
93
+ };
94
+ lg: {
95
+ type: import("vue").PropType<ColsValue>;
96
+ required: boolean;
97
+ default?: ColsValue;
98
+ } & {
99
+ type: import("vue").PropType<ColsValue>;
100
+ required: boolean;
101
+ default?: ColsValue;
102
+ };
103
+ md: {
104
+ type: import("vue").PropType<ColsValue>;
105
+ required: boolean;
106
+ default?: ColsValue;
107
+ } & {
108
+ type: import("vue").PropType<ColsValue>;
109
+ required: boolean;
110
+ default?: ColsValue;
111
+ };
112
+ sm: {
113
+ type: import("vue").PropType<ColsValue>;
114
+ required: boolean;
115
+ default?: ColsValue;
116
+ } & {
117
+ type: import("vue").PropType<ColsValue>;
118
+ required: boolean;
119
+ default?: ColsValue;
120
+ };
121
+ xs: {
122
+ type: import("vue").PropType<ColsValue>;
123
+ required: boolean;
124
+ default?: ColsValue;
125
+ } & {
126
+ type: import("vue").PropType<ColsValue>;
127
+ required: boolean;
128
+ default?: ColsValue;
129
+ };
130
+ cols: {
131
+ type: import("vue").PropType<ColsValue>;
132
+ required: boolean;
133
+ default?: ColsValue;
134
+ } & {
135
+ type: import("vue").PropType<ColsValue>;
136
+ required: boolean;
137
+ default?: ColsValue;
138
+ };
139
+ class: {
140
+ type: import("vue").PropType<String | String[]>;
141
+ required: boolean;
142
+ };
143
+ colorSchemaType?: any;
144
+ container?: any;
145
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
146
+ container?: any;
147
+ colorSchemaType?: any;
148
+ }, {}, string> & {
149
+ beforeCreate?: (() => void) | (() => void)[];
150
+ created?: (() => void) | (() => void)[];
151
+ beforeMount?: (() => void) | (() => void)[];
152
+ mounted?: (() => void) | (() => void)[];
153
+ beforeUpdate?: (() => void) | (() => void)[];
154
+ updated?: (() => void) | (() => void)[];
155
+ activated?: (() => void) | (() => void)[];
156
+ deactivated?: (() => void) | (() => void)[];
157
+ beforeDestroy?: (() => void) | (() => void)[];
158
+ beforeUnmount?: (() => void) | (() => void)[];
159
+ destroyed?: (() => void) | (() => void)[];
160
+ unmounted?: (() => void) | (() => void)[];
161
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
162
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
163
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
164
+ };
165
+ $forceUpdate: () => void;
166
+ $nextTick: typeof import("vue").nextTick;
167
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
168
+ } & Readonly<import("vue").ExtractPropTypes<{
169
+ xl: {
170
+ type: import("vue").PropType<ColsValue>;
171
+ required: boolean;
172
+ default?: ColsValue;
173
+ } & {
174
+ type: import("vue").PropType<ColsValue>;
175
+ required: boolean;
176
+ default?: ColsValue;
177
+ };
178
+ lg: {
179
+ type: import("vue").PropType<ColsValue>;
180
+ required: boolean;
181
+ default?: ColsValue;
182
+ } & {
183
+ type: import("vue").PropType<ColsValue>;
184
+ required: boolean;
185
+ default?: ColsValue;
186
+ };
187
+ md: {
188
+ type: import("vue").PropType<ColsValue>;
189
+ required: boolean;
190
+ default?: ColsValue;
191
+ } & {
192
+ type: import("vue").PropType<ColsValue>;
193
+ required: boolean;
194
+ default?: ColsValue;
195
+ };
196
+ sm: {
197
+ type: import("vue").PropType<ColsValue>;
198
+ required: boolean;
199
+ default?: ColsValue;
200
+ } & {
201
+ type: import("vue").PropType<ColsValue>;
202
+ required: boolean;
203
+ default?: ColsValue;
204
+ };
205
+ xs: {
206
+ type: import("vue").PropType<ColsValue>;
207
+ required: boolean;
208
+ default?: ColsValue;
209
+ } & {
210
+ type: import("vue").PropType<ColsValue>;
211
+ required: boolean;
212
+ default?: ColsValue;
213
+ };
214
+ cols: {
215
+ type: import("vue").PropType<ColsValue>;
216
+ required: boolean;
217
+ default?: ColsValue;
218
+ } & {
219
+ type: import("vue").PropType<ColsValue>;
220
+ required: boolean;
221
+ default?: ColsValue;
222
+ };
223
+ class: {
224
+ type: import("vue").PropType<String | String[]>;
225
+ required: boolean;
226
+ };
227
+ colorSchemaType?: any;
228
+ container?: any;
229
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
230
+ __isFragment?: never;
231
+ __isTeleport?: never;
232
+ __isSuspense?: never;
233
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
234
+ xl: {
235
+ type: import("vue").PropType<ColsValue>;
236
+ required: boolean;
237
+ default?: ColsValue;
238
+ } & {
239
+ type: import("vue").PropType<ColsValue>;
240
+ required: boolean;
241
+ default?: ColsValue;
242
+ };
243
+ lg: {
244
+ type: import("vue").PropType<ColsValue>;
245
+ required: boolean;
246
+ default?: ColsValue;
247
+ } & {
248
+ type: import("vue").PropType<ColsValue>;
249
+ required: boolean;
250
+ default?: ColsValue;
251
+ };
252
+ md: {
253
+ type: import("vue").PropType<ColsValue>;
254
+ required: boolean;
255
+ default?: ColsValue;
256
+ } & {
257
+ type: import("vue").PropType<ColsValue>;
258
+ required: boolean;
259
+ default?: ColsValue;
260
+ };
261
+ sm: {
262
+ type: import("vue").PropType<ColsValue>;
263
+ required: boolean;
264
+ default?: ColsValue;
265
+ } & {
266
+ type: import("vue").PropType<ColsValue>;
267
+ required: boolean;
268
+ default?: ColsValue;
269
+ };
270
+ xs: {
271
+ type: import("vue").PropType<ColsValue>;
272
+ required: boolean;
273
+ default?: ColsValue;
274
+ } & {
275
+ type: import("vue").PropType<ColsValue>;
276
+ required: boolean;
277
+ default?: ColsValue;
278
+ };
279
+ cols: {
280
+ type: import("vue").PropType<ColsValue>;
281
+ required: boolean;
282
+ default?: ColsValue;
283
+ } & {
284
+ type: import("vue").PropType<ColsValue>;
285
+ required: boolean;
286
+ default?: ColsValue;
287
+ };
288
+ class: {
289
+ type: import("vue").PropType<String | String[]>;
290
+ required: boolean;
291
+ };
292
+ colorSchemaType?: any;
293
+ container?: any;
294
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
295
+ container?: any;
296
+ colorSchemaType?: any;
297
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
298
+ propsDefinition: Readonly<{
299
+ container?: any;
300
+ colorSchemaType?: any;
301
+ } & {
302
+ xs?: ColsValue;
303
+ sm?: ColsValue;
304
+ md?: ColsValue;
305
+ lg?: ColsValue;
306
+ class?: String | String[];
307
+ xl?: ColsValue;
308
+ cols?: ColsValue;
309
+ }>;
310
+ };
311
+ export default _default;
@@ -18,13 +18,6 @@ declare const _default: {
18
18
  activator?: () => VNodeChild;
19
19
  headerButtons?: () => VNodeChild;
20
20
  actions?: () => VNodeChild;
21
- }, {
22
- default?: () => VNodeChild;
23
- } & {
24
- fixedContent?: () => VNodeChild;
25
- activator?: () => VNodeChild;
26
- headerButtons?: () => VNodeChild;
27
- actions?: () => VNodeChild;
28
21
  }>;
29
22
  "custom-scrolling": {
30
23
  type: import("vue").PropType<boolean>;
@@ -116,13 +109,6 @@ declare const _default: {
116
109
  activator?: () => VNodeChild;
117
110
  headerButtons?: () => VNodeChild;
118
111
  actions?: () => VNodeChild;
119
- }, {
120
- default?: () => VNodeChild;
121
- } & {
122
- fixedContent?: () => VNodeChild;
123
- activator?: () => VNodeChild;
124
- headerButtons?: () => VNodeChild;
125
- actions?: () => VNodeChild;
126
112
  }>;
127
113
  "custom-scrolling": {
128
114
  type: import("vue").PropType<boolean>;
@@ -227,13 +213,6 @@ declare const _default: {
227
213
  activator?: () => VNodeChild;
228
214
  headerButtons?: () => VNodeChild;
229
215
  actions?: () => VNodeChild;
230
- }, {
231
- default?: () => VNodeChild;
232
- } & {
233
- fixedContent?: () => VNodeChild;
234
- activator?: () => VNodeChild;
235
- headerButtons?: () => VNodeChild;
236
- actions?: () => VNodeChild;
237
216
  }>;
238
217
  "custom-scrolling": {
239
218
  type: import("vue").PropType<boolean>;
@@ -315,13 +294,6 @@ declare const _default: {
315
294
  activator?: () => VNodeChild;
316
295
  headerButtons?: () => VNodeChild;
317
296
  actions?: () => VNodeChild;
318
- }, {
319
- default?: () => VNodeChild;
320
- } & {
321
- fixedContent?: () => VNodeChild;
322
- activator?: () => VNodeChild;
323
- headerButtons?: () => VNodeChild;
324
- actions?: () => VNodeChild;
325
297
  }>;
326
298
  "custom-scrolling": {
327
299
  type: import("vue").PropType<boolean>;
@@ -11,10 +11,6 @@ declare const _default: {
11
11
  default?: () => VNodeChild;
12
12
  } & {
13
13
  activator?: () => VNodeChild;
14
- }, {
15
- default?: () => VNodeChild;
16
- } & {
17
- activator?: () => VNodeChild;
18
14
  }>;
19
15
  "v-model": import("vue").PropType<boolean>;
20
16
  modelValue: import("vue").PropType<boolean>;
@@ -43,10 +39,6 @@ declare const _default: {
43
39
  default?: () => VNodeChild;
44
40
  } & {
45
41
  activator?: () => VNodeChild;
46
- }, {
47
- default?: () => VNodeChild;
48
- } & {
49
- activator?: () => VNodeChild;
50
42
  }>;
51
43
  "v-model": import("vue").PropType<boolean>;
52
44
  modelValue: import("vue").PropType<boolean>;
@@ -84,10 +76,6 @@ declare const _default: {
84
76
  default?: () => VNodeChild;
85
77
  } & {
86
78
  activator?: () => VNodeChild;
87
- }, {
88
- default?: () => VNodeChild;
89
- } & {
90
- activator?: () => VNodeChild;
91
79
  }>;
92
80
  "v-model": import("vue").PropType<boolean>;
93
81
  modelValue: import("vue").PropType<boolean>;
@@ -106,10 +94,6 @@ declare const _default: {
106
94
  default?: () => VNodeChild;
107
95
  } & {
108
96
  activator?: () => VNodeChild;
109
- }, {
110
- default?: () => VNodeChild;
111
- } & {
112
- activator?: () => VNodeChild;
113
97
  }>;
114
98
  "v-model": import("vue").PropType<boolean>;
115
99
  modelValue: import("vue").PropType<boolean>;
@@ -126,8 +126,8 @@ declare const _default: {
126
126
  container?: any;
127
127
  colorSchemaType?: any;
128
128
  } & {
129
- class?: String | String[];
130
129
  text?: string;
130
+ class?: String | String[];
131
131
  "v-model"?: boolean;
132
132
  modelValue?: boolean;
133
133
  }>;
@@ -1,4 +1,6 @@
1
1
  /**
2
2
  * Styles for the CommandPalette component
3
3
  */
4
- export declare const ToolbarTitleStyles: {};
4
+ export declare const TextStyles: {
5
+ truncateText: (lines: number) => string;
6
+ };
@@ -7,6 +7,16 @@ declare const _default: {
7
7
  container?: any;
8
8
  colorSchemaType?: any;
9
9
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
+ "truncate-lines": {
11
+ type: import("vue").PropType<number>;
12
+ required: boolean;
13
+ default?: number;
14
+ };
15
+ truncateLines: {
16
+ type: import("vue").PropType<number>;
17
+ required: boolean;
18
+ default?: number;
19
+ };
10
20
  toned: {
11
21
  type: import("vue").PropType<boolean>;
12
22
  required: boolean;
@@ -55,6 +65,16 @@ declare const _default: {
55
65
  $emit: (event: string, ...args: any[]) => void;
56
66
  $el: any;
57
67
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
68
+ "truncate-lines": {
69
+ type: import("vue").PropType<number>;
70
+ required: boolean;
71
+ default?: number;
72
+ };
73
+ truncateLines: {
74
+ type: import("vue").PropType<number>;
75
+ required: boolean;
76
+ default?: number;
77
+ };
58
78
  toned: {
59
79
  type: import("vue").PropType<boolean>;
60
80
  required: boolean;
@@ -112,6 +132,16 @@ declare const _default: {
112
132
  $nextTick: typeof import("vue").nextTick;
113
133
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
114
134
  } & Readonly<import("vue").ExtractPropTypes<{
135
+ "truncate-lines": {
136
+ type: import("vue").PropType<number>;
137
+ required: boolean;
138
+ default?: number;
139
+ };
140
+ truncateLines: {
141
+ type: import("vue").PropType<number>;
142
+ required: boolean;
143
+ default?: number;
144
+ };
115
145
  toned: {
116
146
  type: import("vue").PropType<boolean>;
117
147
  required: boolean;
@@ -150,6 +180,16 @@ declare const _default: {
150
180
  __isTeleport?: never;
151
181
  __isSuspense?: never;
152
182
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
183
+ "truncate-lines": {
184
+ type: import("vue").PropType<number>;
185
+ required: boolean;
186
+ default?: number;
187
+ };
188
+ truncateLines: {
189
+ type: import("vue").PropType<number>;
190
+ required: boolean;
191
+ default?: number;
192
+ };
153
193
  toned: {
154
194
  type: import("vue").PropType<boolean>;
155
195
  required: boolean;
@@ -195,6 +235,8 @@ declare const _default: {
195
235
  color?: ColorTypes;
196
236
  typography?: TypographyType;
197
237
  toned?: boolean;
238
+ truncateLines?: number;
239
+ "truncate-lines"?: number;
198
240
  }>;
199
241
  };
200
242
  export default _default;
@@ -89,9 +89,9 @@ declare const _default: {
89
89
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
90
90
  propsDefinition: Readonly<{} & {
91
91
  title?: string;
92
+ container?: unknown;
92
93
  class?: String | String[];
93
94
  icon?: IIcon;
94
- container?: unknown;
95
95
  "v-slots"?: {
96
96
  default?: () => VNodeChild;
97
97
  } & {
@@ -0,0 +1,4 @@
1
+ export declare const TreeViewStyles: {
2
+ titleWrapper: (level: number) => string;
3
+ expandedIcon: string;
4
+ };