@omnia/fx 8.0.112-dev → 8.0.113-dev

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 (42) hide show
  1. package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +2 -11
  2. package/internal-do-not-import-from-here/shared/models/theming/ComponentDefinitions.d.ts +3 -7
  3. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +16 -3
  4. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +21 -0
  5. package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.css.d.ts +5 -0
  6. package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +161 -0
  7. package/internal-do-not-import-from-here/ux/borderpicker/BorderPreview.d.ts +69 -0
  8. package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/Properties.d.ts +50 -15
  9. package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/VModel.d.ts +58 -345
  10. package/internal-do-not-import-from-here/ux/docs/omfx/directives/docs/UseClickInSide.d.ts +50 -15
  11. package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyConfiguration.d.ts +3 -3
  12. package/internal-do-not-import-from-here/ux/{backgroundpicker/BackgroundPicker.css.d.ts → fillpicker/FillPicker.css.d.ts} +2 -1
  13. package/internal-do-not-import-from-here/ux/{backgroundpicker/BackgroundPicker.d.ts → fillpicker/FillPicker.d.ts} +44 -23
  14. package/internal-do-not-import-from-here/ux/{backgroundpicker/BackgroundPreview.d.ts → fillpicker/FillPreview.d.ts} +16 -16
  15. package/internal-do-not-import-from-here/ux/fillpicker/docs/ExampleComponents.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/fillpicker/docs/index.d.ts +1 -0
  17. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
  18. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +23 -23
  19. package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +18 -10
  20. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +1 -1
  21. package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +1 -1
  22. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.css.d.ts +1 -1
  23. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +9 -9
  24. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +10 -2
  25. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +53 -11
  26. package/internal-do-not-import-from-here/ux/oxide/treeview/docs/index.d.ts +0 -2
  27. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.css.d.ts +2 -1
  28. package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +10 -82
  29. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +586 -19
  30. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +20 -15
  31. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Chrome.d.ts +12 -0
  32. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Colors.d.ts +21 -0
  33. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +7 -0
  34. package/internal-do-not-import-from-here/wctypings.d.ts +36 -12
  35. package/package.json +2 -2
  36. package/internal-do-not-import-from-here/ux/oxide/treeview/docs/ExampleComponentsMenu.d.ts +0 -1
  37. package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleComponentMenu.d.ts +0 -16
  38. package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleVariants.d.ts +0 -16
  39. /package/internal-do-not-import-from-here/ux/{backgroundpicker/docs/BackgroundPickerExample.d.ts → borderpicker/docs/BorderPickerExample.d.ts} +0 -0
  40. /package/internal-do-not-import-from-here/ux/{backgroundpicker → borderpicker}/docs/ExampleComponents.d.ts +0 -0
  41. /package/internal-do-not-import-from-here/ux/{backgroundpicker → borderpicker}/docs/index.d.ts +0 -0
  42. /package/internal-do-not-import-from-here/ux/{oxide/treeview/docs/SampleButtons.d.ts → fillpicker/docs/FillPickerExample.d.ts} +0 -0
@@ -1,350 +1,63 @@
1
- import { IntegerPropertyValue } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- "onUpdate:modelValue": {
5
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
6
- };
7
- "v-model": {
8
- type: import("vue").PropType<IntegerPropertyValue>;
9
- required: false;
10
- };
11
- modelValue: {
12
- type: import("vue").PropType<IntegerPropertyValue>;
13
- required: false;
14
- };
15
- name: <TName extends string>(n?: TName) => { [key in import("../../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
16
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
17
- }; } & { [key_1 in import("../../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
18
- type: import("vue").PropType<IntegerPropertyValue>;
19
- required: false;
20
- }; } & { [key_2 in import("../../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
21
- type: import("vue").PropType<IntegerPropertyValue>;
22
- required: false;
23
- }; } & {
24
- require(): import("../../../../DefineVueTypings").DefinePropModelRequire<TName, IntegerPropertyValue, {
25
- "onUpdate:modelValue": {
26
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
27
- };
28
- } & {
29
- "v-model": {
30
- type: import("vue").PropType<IntegerPropertyValue>;
31
- required: false;
32
- };
33
- } & {
34
- modelValue: {
35
- type: import("vue").PropType<IntegerPropertyValue>;
36
- required: false;
37
- };
38
- }>;
39
- defaultValue(value?: IntegerPropertyValue): import("../../../../DefineVueTypings").DefinePropModelDefaultValue<TName, IntegerPropertyValue, {
40
- "onUpdate:modelValue": {
41
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
42
- };
43
- } & {
44
- "v-model": {
45
- type: import("vue").PropType<IntegerPropertyValue>;
46
- required: false;
47
- };
48
- } & {
49
- modelValue: {
50
- type: import("vue").PropType<IntegerPropertyValue>;
51
- required: false;
52
- };
53
- }, false>;
54
- doc$(description?: string): import("../../../../DefineVueTypings").DefinePropModelDoc<TName, IntegerPropertyValue, {
55
- "onUpdate:modelValue": {
56
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
57
- };
58
- } & {
59
- "v-model": {
60
- type: import("vue").PropType<IntegerPropertyValue>;
61
- required: false;
62
- };
63
- } & {
64
- modelValue: {
65
- type: import("vue").PropType<IntegerPropertyValue>;
66
- required: false;
67
- };
68
- }>;
69
- };
70
- }>>, JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
71
- "onUpdate:modelValue": {
72
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
73
- };
74
- "v-model": {
75
- type: import("vue").PropType<IntegerPropertyValue>;
76
- required: false;
77
- };
78
- modelValue: {
79
- type: import("vue").PropType<IntegerPropertyValue>;
80
- required: false;
81
- };
82
- name: <TName extends string>(n?: TName) => { [key in import("../../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
83
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
84
- }; } & { [key_1 in import("../../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
85
- type: import("vue").PropType<IntegerPropertyValue>;
86
- required: false;
87
- }; } & { [key_2 in import("../../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
88
- type: import("vue").PropType<IntegerPropertyValue>;
89
- required: false;
90
- }; } & {
91
- require(): import("../../../../DefineVueTypings").DefinePropModelRequire<TName, IntegerPropertyValue, {
92
- "onUpdate:modelValue": {
93
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
94
- };
95
- } & {
96
- "v-model": {
97
- type: import("vue").PropType<IntegerPropertyValue>;
98
- required: false;
99
- };
100
- } & {
101
- modelValue: {
102
- type: import("vue").PropType<IntegerPropertyValue>;
103
- required: false;
104
- };
105
- }>;
106
- defaultValue(value?: IntegerPropertyValue): import("../../../../DefineVueTypings").DefinePropModelDefaultValue<TName, IntegerPropertyValue, {
107
- "onUpdate:modelValue": {
108
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
109
- };
110
- } & {
111
- "v-model": {
112
- type: import("vue").PropType<IntegerPropertyValue>;
113
- required: false;
114
- };
115
- } & {
116
- modelValue: {
117
- type: import("vue").PropType<IntegerPropertyValue>;
118
- required: false;
119
- };
120
- }, false>;
121
- doc$(description?: string): import("../../../../DefineVueTypings").DefinePropModelDoc<TName, IntegerPropertyValue, {
122
- "onUpdate:modelValue": {
123
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
124
- };
125
- } & {
126
- "v-model": {
127
- type: import("vue").PropType<IntegerPropertyValue>;
128
- required: false;
129
- };
130
- } & {
131
- modelValue: {
132
- type: import("vue").PropType<IntegerPropertyValue>;
133
- required: false;
134
- };
135
- }>;
136
- };
137
- }>>, {}, true, {}, {}, {
138
- P: {};
139
- B: {};
140
- D: {};
141
- C: {};
142
- M: {};
143
- Defaults: {};
144
- }, Readonly<import("vue").ExtractPropTypes<{
145
- "onUpdate:modelValue": {
146
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
147
- };
148
- "v-model": {
149
- type: import("vue").PropType<IntegerPropertyValue>;
150
- required: false;
151
- };
152
- modelValue: {
153
- type: import("vue").PropType<IntegerPropertyValue>;
154
- required: false;
155
- };
156
- name: <TName extends string>(n?: TName) => { [key in import("../../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
157
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
158
- }; } & { [key_1 in import("../../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
159
- type: import("vue").PropType<IntegerPropertyValue>;
160
- required: false;
161
- }; } & { [key_2 in import("../../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
162
- type: import("vue").PropType<IntegerPropertyValue>;
163
- required: false;
164
- }; } & {
165
- require(): import("../../../../DefineVueTypings").DefinePropModelRequire<TName, IntegerPropertyValue, {
166
- "onUpdate:modelValue": {
167
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
168
- };
169
- } & {
170
- "v-model": {
171
- type: import("vue").PropType<IntegerPropertyValue>;
172
- required: false;
173
- };
174
- } & {
175
- modelValue: {
176
- type: import("vue").PropType<IntegerPropertyValue>;
177
- required: false;
178
- };
179
- }>;
180
- defaultValue(value?: IntegerPropertyValue): import("../../../../DefineVueTypings").DefinePropModelDefaultValue<TName, IntegerPropertyValue, {
181
- "onUpdate:modelValue": {
182
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
183
- };
184
- } & {
185
- "v-model": {
186
- type: import("vue").PropType<IntegerPropertyValue>;
187
- required: false;
188
- };
189
- } & {
190
- modelValue: {
191
- type: import("vue").PropType<IntegerPropertyValue>;
192
- required: false;
193
- };
194
- }, false>;
195
- doc$(description?: string): import("../../../../DefineVueTypings").DefinePropModelDoc<TName, IntegerPropertyValue, {
196
- "onUpdate:modelValue": {
197
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
198
- };
199
- } & {
200
- "v-model": {
201
- type: import("vue").PropType<IntegerPropertyValue>;
202
- required: false;
203
- };
204
- } & {
205
- modelValue: {
206
- type: import("vue").PropType<IntegerPropertyValue>;
207
- required: false;
208
- };
209
- }>;
210
- };
211
- }>>, JSX.Element, {}, {}, {}, {}>;
212
- __isFragment?: never;
213
- __isTeleport?: never;
214
- __isSuspense?: never;
215
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
216
- "onUpdate:modelValue": {
217
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
1
+ declare const _default: (props: {
2
+ "v-model"?: string;
3
+ } & {
4
+ "onUpdate:modelValue"?: (value: string) => void;
5
+ } & {
6
+ modelValue?: string;
7
+ } & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
8
+ "v-slots"?: {
9
+ default?: import("vue").Slot;
218
10
  };
219
- "v-model": {
220
- type: import("vue").PropType<IntegerPropertyValue>;
221
- required: false;
11
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
12
+ $: import("vue").ComponentInternalInstance;
13
+ $data: {};
14
+ $props: {};
15
+ $attrs: {
16
+ [x: string]: unknown;
222
17
  };
223
- modelValue: {
224
- type: import("vue").PropType<IntegerPropertyValue>;
225
- required: false;
18
+ $refs: {
19
+ [x: string]: unknown;
226
20
  };
227
- name: <TName extends string>(n?: TName) => { [key in import("../../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
228
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
229
- }; } & { [key_1 in import("../../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
230
- type: import("vue").PropType<IntegerPropertyValue>;
231
- required: false;
232
- }; } & { [key_2 in import("../../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
233
- type: import("vue").PropType<IntegerPropertyValue>;
234
- required: false;
235
- }; } & {
236
- require(): import("../../../../DefineVueTypings").DefinePropModelRequire<TName, IntegerPropertyValue, {
237
- "onUpdate:modelValue": {
238
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
239
- };
240
- } & {
241
- "v-model": {
242
- type: import("vue").PropType<IntegerPropertyValue>;
243
- required: false;
244
- };
245
- } & {
246
- modelValue: {
247
- type: import("vue").PropType<IntegerPropertyValue>;
248
- required: false;
249
- };
250
- }>;
251
- defaultValue(value?: IntegerPropertyValue): import("../../../../DefineVueTypings").DefinePropModelDefaultValue<TName, IntegerPropertyValue, {
252
- "onUpdate:modelValue": {
253
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
254
- };
255
- } & {
256
- "v-model": {
257
- type: import("vue").PropType<IntegerPropertyValue>;
258
- required: false;
259
- };
260
- } & {
261
- modelValue: {
262
- type: import("vue").PropType<IntegerPropertyValue>;
263
- required: false;
264
- };
265
- }, false>;
266
- doc$(description?: string): import("../../../../DefineVueTypings").DefinePropModelDoc<TName, IntegerPropertyValue, {
267
- "onUpdate:modelValue": {
268
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
269
- };
270
- } & {
271
- "v-model": {
272
- type: import("vue").PropType<IntegerPropertyValue>;
273
- required: false;
274
- };
275
- } & {
276
- modelValue: {
277
- type: import("vue").PropType<IntegerPropertyValue>;
278
- required: false;
279
- };
280
- }>;
21
+ $slots: Readonly<{
22
+ [name: string]: import("vue").Slot<any>;
23
+ }>;
24
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
25
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
26
+ $emit: (event: string, ...args: any[]) => void;
27
+ $el: any;
28
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
29
+ beforeCreate?: (() => void) | (() => void)[];
30
+ created?: (() => void) | (() => void)[];
31
+ beforeMount?: (() => void) | (() => void)[];
32
+ mounted?: (() => void) | (() => void)[];
33
+ beforeUpdate?: (() => void) | (() => void)[];
34
+ updated?: (() => void) | (() => void)[];
35
+ activated?: (() => void) | (() => void)[];
36
+ deactivated?: (() => void) | (() => void)[];
37
+ beforeDestroy?: (() => void) | (() => void)[];
38
+ beforeUnmount?: (() => void) | (() => void)[];
39
+ destroyed?: (() => void) | (() => void)[];
40
+ unmounted?: (() => void) | (() => void)[];
41
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
42
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
43
+ 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)[];
281
44
  };
282
- }>>, JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
283
- propsDefinition: Omit<Readonly<{} & {
284
- name?: {
285
- [x: `onUpdate:${string}`]: {
286
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
287
- };
288
- } & {
289
- [x: `v-model:${string}`]: {
290
- type: import("vue").PropType<IntegerPropertyValue>;
291
- required: false;
292
- };
293
- } & {
294
- [x: string]: {
295
- type: import("vue").PropType<IntegerPropertyValue>;
296
- required: false;
297
- };
298
- } & {
299
- require(): import("../../../../DefineVueTypings").DefinePropModelRequire<string, IntegerPropertyValue, {
300
- "onUpdate:modelValue": {
301
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
302
- };
303
- } & {
304
- "v-model": {
305
- type: import("vue").PropType<IntegerPropertyValue>;
306
- required: false;
307
- };
308
- } & {
309
- modelValue: {
310
- type: import("vue").PropType<IntegerPropertyValue>;
311
- required: false;
312
- };
313
- }>;
314
- defaultValue(value?: IntegerPropertyValue): import("../../../../DefineVueTypings").DefinePropModelDefaultValue<string, IntegerPropertyValue, {
315
- "onUpdate:modelValue": {
316
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
317
- };
318
- } & {
319
- "v-model": {
320
- type: import("vue").PropType<IntegerPropertyValue>;
321
- required: false;
322
- };
323
- } & {
324
- modelValue: {
325
- type: import("vue").PropType<IntegerPropertyValue>;
326
- required: false;
327
- };
328
- }, false>;
329
- doc$(description?: string): import("../../../../DefineVueTypings").DefinePropModelDoc<string, IntegerPropertyValue, {
330
- "onUpdate:modelValue": {
331
- type: import("vue").PropType<(value: IntegerPropertyValue) => any>;
332
- };
333
- } & {
334
- "v-model": {
335
- type: import("vue").PropType<IntegerPropertyValue>;
336
- required: false;
337
- };
338
- } & {
339
- modelValue: {
340
- type: import("vue").PropType<IntegerPropertyValue>;
341
- required: false;
342
- };
343
- }>;
344
- };
345
- "v-model"?: IntegerPropertyValue;
346
- "onUpdate:modelValue"?: (value: IntegerPropertyValue) => any;
347
- modelValue?: IntegerPropertyValue;
348
- }>, never>;
349
- };
45
+ $forceUpdate: () => void;
46
+ $nextTick: typeof import("vue").nextTick;
47
+ $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;
48
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
49
+ propsDefinition: {
50
+ "v-model"?: string;
51
+ } & {
52
+ "onUpdate:modelValue"?: (value: string) => void;
53
+ } & {
54
+ modelValue?: string;
55
+ } & {
56
+ "v-slots"?: {
57
+ default?: import("vue").Slot;
58
+ };
59
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
60
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
61
+ [key: string]: any;
62
+ }>;
350
63
  export default _default;
@@ -1,16 +1,51 @@
1
- declare const _default: {
2
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
3
- P: {};
4
- B: {};
5
- D: {};
6
- C: {};
7
- M: {};
8
- Defaults: {};
9
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
10
- __isFragment?: never;
11
- __isTeleport?: never;
12
- __isSuspense?: never;
13
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
14
- propsDefinition: Omit<Readonly<{} & {}>, never>;
15
- };
1
+ declare const _default: (props: Record<string, any> & Omit<{}, string> & {
2
+ "v-slots"?: {
3
+ default?: import("vue").Slot;
4
+ };
5
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
6
+ $: import("vue").ComponentInternalInstance;
7
+ $data: {};
8
+ $props: {};
9
+ $attrs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $refs: {
13
+ [x: string]: unknown;
14
+ };
15
+ $slots: Readonly<{
16
+ [name: string]: import("vue").Slot<any>;
17
+ }>;
18
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
19
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
20
+ $emit: (event: string, ...args: any[]) => void;
21
+ $el: any;
22
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
23
+ beforeCreate?: (() => void) | (() => void)[];
24
+ created?: (() => void) | (() => void)[];
25
+ beforeMount?: (() => void) | (() => void)[];
26
+ mounted?: (() => void) | (() => void)[];
27
+ beforeUpdate?: (() => void) | (() => void)[];
28
+ updated?: (() => void) | (() => void)[];
29
+ activated?: (() => void) | (() => void)[];
30
+ deactivated?: (() => void) | (() => void)[];
31
+ beforeDestroy?: (() => void) | (() => void)[];
32
+ beforeUnmount?: (() => void) | (() => void)[];
33
+ destroyed?: (() => void) | (() => void)[];
34
+ unmounted?: (() => void) | (() => void)[];
35
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
36
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
37
+ 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)[];
38
+ };
39
+ $forceUpdate: () => void;
40
+ $nextTick: typeof import("vue").nextTick;
41
+ $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;
42
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
43
+ propsDefinition: Record<string, any> & {
44
+ "v-slots"?: {
45
+ default?: import("vue").Slot;
46
+ };
47
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>;
48
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
+ [key: string]: any;
50
+ }>;
16
51
  export default _default;
@@ -80,7 +80,7 @@ declare const _default: {
80
80
  };
81
81
  }>;
82
82
  };
83
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
83
+ }>>, () => JSX.Element | "TODO: Update EnterprisePropertyConfiguration", unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
84
84
  "setup-render": {
85
85
  type: import("vue").PropType<object>;
86
86
  required: false;
@@ -247,7 +247,7 @@ declare const _default: {
247
247
  };
248
248
  }>;
249
249
  };
250
- }>>, () => JSX.Element, {}, {}, {}, {}>;
250
+ }>>, () => JSX.Element | "TODO: Update EnterprisePropertyConfiguration", {}, {}, {}, {}>;
251
251
  __isFragment?: never;
252
252
  __isTeleport?: never;
253
253
  __isSuspense?: never;
@@ -331,7 +331,7 @@ declare const _default: {
331
331
  };
332
332
  }>;
333
333
  };
334
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
334
+ }>>, () => JSX.Element | "TODO: Update EnterprisePropertyConfiguration", unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
335
335
  propsDefinition: Omit<Readonly<{} & {
336
336
  name?: {
337
337
  [x: `onUpdate:${string}`]: {
@@ -1,4 +1,5 @@
1
- export declare const BackgroundPickerStyles: {
1
+ export declare const FillPickerStyles: {
2
2
  viewWrapper: string;
3
+ hoverCursor: string;
3
4
  selector: (dark: boolean) => string;
4
5
  };