@omnia/fx 8.0.111-dev → 8.0.112-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 (43) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.libs.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/shared/models/theming/ComponentDefinitions.d.ts +1 -1
  4. package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +6 -0
  5. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +9 -8
  6. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +5 -0
  7. package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +2 -2
  9. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +20 -0
  10. package/internal-do-not-import-from-here/ux/backgroundpicker/BackgroundPicker.css.d.ts +4 -0
  11. package/internal-do-not-import-from-here/ux/backgroundpicker/BackgroundPicker.d.ts +109 -0
  12. package/internal-do-not-import-from-here/ux/backgroundpicker/BackgroundPreview.d.ts +69 -0
  13. package/internal-do-not-import-from-here/ux/backgroundpicker/docs/BackgroundPickerExample.d.ts +16 -0
  14. package/internal-do-not-import-from-here/ux/backgroundpicker/docs/ExampleComponents.d.ts +1 -0
  15. package/internal-do-not-import-from-here/ux/backgroundpicker/docs/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +23 -23
  18. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +38 -9
  19. package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +1 -1
  20. package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +4 -0
  21. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +1 -1
  22. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +6 -2
  23. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +1 -1
  24. package/internal-do-not-import-from-here/ux/oxide/link/Link.d.ts +11 -11
  25. package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +36 -4
  26. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +6 -2
  27. package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +2 -2
  28. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +11 -11
  29. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfigurationV2.d.ts +65 -410
  30. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +582 -50
  31. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.css.d.ts +2 -4
  32. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +312 -50
  33. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLink.d.ts +5 -104
  34. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLinkMenu.d.ts +4 -104
  35. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLinkNode.d.ts +1 -1
  36. package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +2 -2
  37. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +530 -2
  38. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +15 -1
  39. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +2 -7
  40. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +5 -5
  41. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +1 -1
  42. package/internal-do-not-import-from-here/wctypings.d.ts +24 -0
  43. package/package.json +4 -4
@@ -1,28 +1,260 @@
1
1
  import { PropertyRegistration } from "../models/PropertyInput";
2
+ import { IDataSourcePropertyCreator } from "@omnia/fx/services";
2
3
  declare const _default: {
3
4
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- valueBind: import("vue").Prop<PropertyRegistration, PropertyRegistration>;
5
- onValueChanged?: import("vue").Prop<(model: PropertyRegistration) => void, (model: PropertyRegistration) => void>;
6
- filled?: import("vue").Prop<boolean, boolean>;
7
- disabled?: import("vue").Prop<boolean, boolean>;
8
- dark?: import("vue").Prop<boolean, boolean>;
9
- hideDetails?: import("vue").Prop<boolean, boolean>;
10
- multiple?: import("vue").Prop<boolean, boolean>;
11
- propertyRegistrations: import("vue").Prop<PropertyRegistration[], PropertyRegistration[]>;
12
- loadingProperties: import("vue").Prop<boolean, boolean>;
13
- propertyCreator: import("vue").Prop<import("@omnia/fx/services").IDataSourcePropertyCreator, import("@omnia/fx/services").IDataSourcePropertyCreator>;
14
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
15
- valueBind: import("vue").Prop<PropertyRegistration, PropertyRegistration>;
16
- onValueChanged?: import("vue").Prop<(model: PropertyRegistration) => void, (model: PropertyRegistration) => void>;
17
- filled?: import("vue").Prop<boolean, boolean>;
18
- disabled?: import("vue").Prop<boolean, boolean>;
19
- dark?: import("vue").Prop<boolean, boolean>;
20
- hideDetails?: import("vue").Prop<boolean, boolean>;
21
- multiple?: import("vue").Prop<boolean, boolean>;
22
- propertyRegistrations: import("vue").Prop<PropertyRegistration[], PropertyRegistration[]>;
23
- loadingProperties: import("vue").Prop<boolean, boolean>;
24
- propertyCreator: import("vue").Prop<import("@omnia/fx/services").IDataSourcePropertyCreator, import("@omnia/fx/services").IDataSourcePropertyCreator>;
25
- }>>, {}, true, {}, {}, {
5
+ "property-creator": {
6
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
7
+ required: false;
8
+ };
9
+ propertyCreator: {
10
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
11
+ required: false;
12
+ };
13
+ "loading-properties": {
14
+ type: import("vue").PropType<boolean>;
15
+ required: false;
16
+ };
17
+ loadingProperties: {
18
+ type: import("vue").PropType<boolean>;
19
+ required: false;
20
+ };
21
+ "property-registrations": {
22
+ type: import("vue").PropType<PropertyRegistration[]>;
23
+ required: false;
24
+ };
25
+ propertyRegistrations: {
26
+ type: import("vue").PropType<PropertyRegistration[]>;
27
+ required: false;
28
+ };
29
+ "hide-configuration": {
30
+ type: import("vue").PropType<boolean>;
31
+ required: false;
32
+ };
33
+ hideConfiguration: {
34
+ type: import("vue").PropType<boolean>;
35
+ required: false;
36
+ };
37
+ "hide-details": {
38
+ type: import("vue").PropType<boolean>;
39
+ required: false;
40
+ };
41
+ hideDetails: {
42
+ type: import("vue").PropType<boolean>;
43
+ required: false;
44
+ };
45
+ multiple: {
46
+ type: import("vue").PropType<boolean>;
47
+ required: false;
48
+ } & {
49
+ type: import("vue").PropType<boolean>;
50
+ required: false;
51
+ };
52
+ disabled: {
53
+ type: import("vue").PropType<boolean>;
54
+ required: false;
55
+ } & {
56
+ type: import("vue").PropType<boolean>;
57
+ required: false;
58
+ };
59
+ "onUpdate:modelValue": {
60
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
61
+ };
62
+ "v-model": {
63
+ type: import("vue").PropType<PropertyRegistration>;
64
+ required: false;
65
+ };
66
+ modelValue: {
67
+ type: import("vue").PropType<PropertyRegistration>;
68
+ required: false;
69
+ };
70
+ name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
71
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
72
+ }; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
73
+ type: import("vue").PropType<PropertyRegistration>;
74
+ required: false;
75
+ }; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
76
+ type: import("vue").PropType<PropertyRegistration>;
77
+ required: false;
78
+ }; } & {
79
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, PropertyRegistration, {
80
+ "onUpdate:modelValue": {
81
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
82
+ };
83
+ } & {
84
+ "v-model": {
85
+ type: import("vue").PropType<PropertyRegistration>;
86
+ required: false;
87
+ };
88
+ } & {
89
+ modelValue: {
90
+ type: import("vue").PropType<PropertyRegistration>;
91
+ required: false;
92
+ };
93
+ }>;
94
+ defaultValue(value?: PropertyRegistration): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, PropertyRegistration, {
95
+ "onUpdate:modelValue": {
96
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
97
+ };
98
+ } & {
99
+ "v-model": {
100
+ type: import("vue").PropType<PropertyRegistration>;
101
+ required: false;
102
+ };
103
+ } & {
104
+ modelValue: {
105
+ type: import("vue").PropType<PropertyRegistration>;
106
+ required: false;
107
+ };
108
+ }, false>;
109
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, PropertyRegistration, {
110
+ "onUpdate:modelValue": {
111
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
112
+ };
113
+ } & {
114
+ "v-model": {
115
+ type: import("vue").PropType<PropertyRegistration>;
116
+ required: false;
117
+ };
118
+ } & {
119
+ modelValue: {
120
+ type: import("vue").PropType<PropertyRegistration>;
121
+ required: false;
122
+ };
123
+ }>;
124
+ };
125
+ }>> & {
126
+ "onUpdate:modelValue"?: (model: PropertyRegistration) => any;
127
+ onDoc$?: (description?: string) => any;
128
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
129
+ "update:modelValue": (model: PropertyRegistration) => void;
130
+ doc$(description?: string): {
131
+ "update:modelValue": (model: PropertyRegistration) => void;
132
+ };
133
+ }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
134
+ "property-creator": {
135
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
136
+ required: false;
137
+ };
138
+ propertyCreator: {
139
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
140
+ required: false;
141
+ };
142
+ "loading-properties": {
143
+ type: import("vue").PropType<boolean>;
144
+ required: false;
145
+ };
146
+ loadingProperties: {
147
+ type: import("vue").PropType<boolean>;
148
+ required: false;
149
+ };
150
+ "property-registrations": {
151
+ type: import("vue").PropType<PropertyRegistration[]>;
152
+ required: false;
153
+ };
154
+ propertyRegistrations: {
155
+ type: import("vue").PropType<PropertyRegistration[]>;
156
+ required: false;
157
+ };
158
+ "hide-configuration": {
159
+ type: import("vue").PropType<boolean>;
160
+ required: false;
161
+ };
162
+ hideConfiguration: {
163
+ type: import("vue").PropType<boolean>;
164
+ required: false;
165
+ };
166
+ "hide-details": {
167
+ type: import("vue").PropType<boolean>;
168
+ required: false;
169
+ };
170
+ hideDetails: {
171
+ type: import("vue").PropType<boolean>;
172
+ required: false;
173
+ };
174
+ multiple: {
175
+ type: import("vue").PropType<boolean>;
176
+ required: false;
177
+ } & {
178
+ type: import("vue").PropType<boolean>;
179
+ required: false;
180
+ };
181
+ disabled: {
182
+ type: import("vue").PropType<boolean>;
183
+ required: false;
184
+ } & {
185
+ type: import("vue").PropType<boolean>;
186
+ required: false;
187
+ };
188
+ "onUpdate:modelValue": {
189
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
190
+ };
191
+ "v-model": {
192
+ type: import("vue").PropType<PropertyRegistration>;
193
+ required: false;
194
+ };
195
+ modelValue: {
196
+ type: import("vue").PropType<PropertyRegistration>;
197
+ required: false;
198
+ };
199
+ name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
200
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
201
+ }; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
202
+ type: import("vue").PropType<PropertyRegistration>;
203
+ required: false;
204
+ }; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
205
+ type: import("vue").PropType<PropertyRegistration>;
206
+ required: false;
207
+ }; } & {
208
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, PropertyRegistration, {
209
+ "onUpdate:modelValue": {
210
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
211
+ };
212
+ } & {
213
+ "v-model": {
214
+ type: import("vue").PropType<PropertyRegistration>;
215
+ required: false;
216
+ };
217
+ } & {
218
+ modelValue: {
219
+ type: import("vue").PropType<PropertyRegistration>;
220
+ required: false;
221
+ };
222
+ }>;
223
+ defaultValue(value?: PropertyRegistration): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, PropertyRegistration, {
224
+ "onUpdate:modelValue": {
225
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
226
+ };
227
+ } & {
228
+ "v-model": {
229
+ type: import("vue").PropType<PropertyRegistration>;
230
+ required: false;
231
+ };
232
+ } & {
233
+ modelValue: {
234
+ type: import("vue").PropType<PropertyRegistration>;
235
+ required: false;
236
+ };
237
+ }, false>;
238
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, PropertyRegistration, {
239
+ "onUpdate:modelValue": {
240
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
241
+ };
242
+ } & {
243
+ "v-model": {
244
+ type: import("vue").PropType<PropertyRegistration>;
245
+ required: false;
246
+ };
247
+ } & {
248
+ modelValue: {
249
+ type: import("vue").PropType<PropertyRegistration>;
250
+ required: false;
251
+ };
252
+ }>;
253
+ };
254
+ }>> & {
255
+ "onUpdate:modelValue"?: (model: PropertyRegistration) => any;
256
+ onDoc$?: (description?: string) => any;
257
+ }, {}, true, {}, {}, {
26
258
  P: {};
27
259
  B: {};
28
260
  D: {};
@@ -30,43 +262,343 @@ declare const _default: {
30
262
  M: {};
31
263
  Defaults: {};
32
264
  }, Readonly<import("vue").ExtractPropTypes<{
33
- valueBind: import("vue").Prop<PropertyRegistration, PropertyRegistration>;
34
- onValueChanged?: import("vue").Prop<(model: PropertyRegistration) => void, (model: PropertyRegistration) => void>;
35
- filled?: import("vue").Prop<boolean, boolean>;
36
- disabled?: import("vue").Prop<boolean, boolean>;
37
- dark?: import("vue").Prop<boolean, boolean>;
38
- hideDetails?: import("vue").Prop<boolean, boolean>;
39
- multiple?: import("vue").Prop<boolean, boolean>;
40
- propertyRegistrations: import("vue").Prop<PropertyRegistration[], PropertyRegistration[]>;
41
- loadingProperties: import("vue").Prop<boolean, boolean>;
42
- propertyCreator: import("vue").Prop<import("@omnia/fx/services").IDataSourcePropertyCreator, import("@omnia/fx/services").IDataSourcePropertyCreator>;
43
- }>>, {}, {}, {}, {}, {}>;
265
+ "property-creator": {
266
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
267
+ required: false;
268
+ };
269
+ propertyCreator: {
270
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
271
+ required: false;
272
+ };
273
+ "loading-properties": {
274
+ type: import("vue").PropType<boolean>;
275
+ required: false;
276
+ };
277
+ loadingProperties: {
278
+ type: import("vue").PropType<boolean>;
279
+ required: false;
280
+ };
281
+ "property-registrations": {
282
+ type: import("vue").PropType<PropertyRegistration[]>;
283
+ required: false;
284
+ };
285
+ propertyRegistrations: {
286
+ type: import("vue").PropType<PropertyRegistration[]>;
287
+ required: false;
288
+ };
289
+ "hide-configuration": {
290
+ type: import("vue").PropType<boolean>;
291
+ required: false;
292
+ };
293
+ hideConfiguration: {
294
+ type: import("vue").PropType<boolean>;
295
+ required: false;
296
+ };
297
+ "hide-details": {
298
+ type: import("vue").PropType<boolean>;
299
+ required: false;
300
+ };
301
+ hideDetails: {
302
+ type: import("vue").PropType<boolean>;
303
+ required: false;
304
+ };
305
+ multiple: {
306
+ type: import("vue").PropType<boolean>;
307
+ required: false;
308
+ } & {
309
+ type: import("vue").PropType<boolean>;
310
+ required: false;
311
+ };
312
+ disabled: {
313
+ type: import("vue").PropType<boolean>;
314
+ required: false;
315
+ } & {
316
+ type: import("vue").PropType<boolean>;
317
+ required: false;
318
+ };
319
+ "onUpdate:modelValue": {
320
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
321
+ };
322
+ "v-model": {
323
+ type: import("vue").PropType<PropertyRegistration>;
324
+ required: false;
325
+ };
326
+ modelValue: {
327
+ type: import("vue").PropType<PropertyRegistration>;
328
+ required: false;
329
+ };
330
+ name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
331
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
332
+ }; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
333
+ type: import("vue").PropType<PropertyRegistration>;
334
+ required: false;
335
+ }; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
336
+ type: import("vue").PropType<PropertyRegistration>;
337
+ required: false;
338
+ }; } & {
339
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, PropertyRegistration, {
340
+ "onUpdate:modelValue": {
341
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
342
+ };
343
+ } & {
344
+ "v-model": {
345
+ type: import("vue").PropType<PropertyRegistration>;
346
+ required: false;
347
+ };
348
+ } & {
349
+ modelValue: {
350
+ type: import("vue").PropType<PropertyRegistration>;
351
+ required: false;
352
+ };
353
+ }>;
354
+ defaultValue(value?: PropertyRegistration): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, PropertyRegistration, {
355
+ "onUpdate:modelValue": {
356
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
357
+ };
358
+ } & {
359
+ "v-model": {
360
+ type: import("vue").PropType<PropertyRegistration>;
361
+ required: false;
362
+ };
363
+ } & {
364
+ modelValue: {
365
+ type: import("vue").PropType<PropertyRegistration>;
366
+ required: false;
367
+ };
368
+ }, false>;
369
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, PropertyRegistration, {
370
+ "onUpdate:modelValue": {
371
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
372
+ };
373
+ } & {
374
+ "v-model": {
375
+ type: import("vue").PropType<PropertyRegistration>;
376
+ required: false;
377
+ };
378
+ } & {
379
+ modelValue: {
380
+ type: import("vue").PropType<PropertyRegistration>;
381
+ required: false;
382
+ };
383
+ }>;
384
+ };
385
+ }>> & {
386
+ "onUpdate:modelValue"?: (model: PropertyRegistration) => any;
387
+ onDoc$?: (description?: string) => any;
388
+ }, () => JSX.Element, {}, {}, {}, {}>;
44
389
  __isFragment?: never;
45
390
  __isTeleport?: never;
46
391
  __isSuspense?: never;
47
392
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
48
- valueBind: import("vue").Prop<PropertyRegistration, PropertyRegistration>;
49
- onValueChanged?: import("vue").Prop<(model: PropertyRegistration) => void, (model: PropertyRegistration) => void>;
50
- filled?: import("vue").Prop<boolean, boolean>;
51
- disabled?: import("vue").Prop<boolean, boolean>;
52
- dark?: import("vue").Prop<boolean, boolean>;
53
- hideDetails?: import("vue").Prop<boolean, boolean>;
54
- multiple?: import("vue").Prop<boolean, boolean>;
55
- propertyRegistrations: import("vue").Prop<PropertyRegistration[], PropertyRegistration[]>;
56
- loadingProperties: import("vue").Prop<boolean, boolean>;
57
- propertyCreator: import("vue").Prop<import("@omnia/fx/services").IDataSourcePropertyCreator, import("@omnia/fx/services").IDataSourcePropertyCreator>;
58
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
393
+ "property-creator": {
394
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
395
+ required: false;
396
+ };
397
+ propertyCreator: {
398
+ type: import("vue").PropType<IDataSourcePropertyCreator>;
399
+ required: false;
400
+ };
401
+ "loading-properties": {
402
+ type: import("vue").PropType<boolean>;
403
+ required: false;
404
+ };
405
+ loadingProperties: {
406
+ type: import("vue").PropType<boolean>;
407
+ required: false;
408
+ };
409
+ "property-registrations": {
410
+ type: import("vue").PropType<PropertyRegistration[]>;
411
+ required: false;
412
+ };
413
+ propertyRegistrations: {
414
+ type: import("vue").PropType<PropertyRegistration[]>;
415
+ required: false;
416
+ };
417
+ "hide-configuration": {
418
+ type: import("vue").PropType<boolean>;
419
+ required: false;
420
+ };
421
+ hideConfiguration: {
422
+ type: import("vue").PropType<boolean>;
423
+ required: false;
424
+ };
425
+ "hide-details": {
426
+ type: import("vue").PropType<boolean>;
427
+ required: false;
428
+ };
429
+ hideDetails: {
430
+ type: import("vue").PropType<boolean>;
431
+ required: false;
432
+ };
433
+ multiple: {
434
+ type: import("vue").PropType<boolean>;
435
+ required: false;
436
+ } & {
437
+ type: import("vue").PropType<boolean>;
438
+ required: false;
439
+ };
440
+ disabled: {
441
+ type: import("vue").PropType<boolean>;
442
+ required: false;
443
+ } & {
444
+ type: import("vue").PropType<boolean>;
445
+ required: false;
446
+ };
447
+ "onUpdate:modelValue": {
448
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
449
+ };
450
+ "v-model": {
451
+ type: import("vue").PropType<PropertyRegistration>;
452
+ required: false;
453
+ };
454
+ modelValue: {
455
+ type: import("vue").PropType<PropertyRegistration>;
456
+ required: false;
457
+ };
458
+ name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
459
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
460
+ }; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
461
+ type: import("vue").PropType<PropertyRegistration>;
462
+ required: false;
463
+ }; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
464
+ type: import("vue").PropType<PropertyRegistration>;
465
+ required: false;
466
+ }; } & {
467
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, PropertyRegistration, {
468
+ "onUpdate:modelValue": {
469
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
470
+ };
471
+ } & {
472
+ "v-model": {
473
+ type: import("vue").PropType<PropertyRegistration>;
474
+ required: false;
475
+ };
476
+ } & {
477
+ modelValue: {
478
+ type: import("vue").PropType<PropertyRegistration>;
479
+ required: false;
480
+ };
481
+ }>;
482
+ defaultValue(value?: PropertyRegistration): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, PropertyRegistration, {
483
+ "onUpdate:modelValue": {
484
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
485
+ };
486
+ } & {
487
+ "v-model": {
488
+ type: import("vue").PropType<PropertyRegistration>;
489
+ required: false;
490
+ };
491
+ } & {
492
+ modelValue: {
493
+ type: import("vue").PropType<PropertyRegistration>;
494
+ required: false;
495
+ };
496
+ }, false>;
497
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, PropertyRegistration, {
498
+ "onUpdate:modelValue": {
499
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
500
+ };
501
+ } & {
502
+ "v-model": {
503
+ type: import("vue").PropType<PropertyRegistration>;
504
+ required: false;
505
+ };
506
+ } & {
507
+ modelValue: {
508
+ type: import("vue").PropType<PropertyRegistration>;
509
+ required: false;
510
+ };
511
+ }>;
512
+ };
513
+ }>> & {
514
+ "onUpdate:modelValue"?: (model: PropertyRegistration) => any;
515
+ onDoc$?: (description?: string) => any;
516
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
517
+ "update:modelValue": (model: PropertyRegistration) => void;
518
+ doc$(description?: string): {
519
+ "update:modelValue": (model: PropertyRegistration) => void;
520
+ };
521
+ }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
59
522
  propsDefinition: Omit<Readonly<{} & {
60
- dark?: boolean;
61
- filled?: boolean;
523
+ name?: {
524
+ [x: `onUpdate:${string}`]: {
525
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
526
+ };
527
+ } & {
528
+ [x: `v-model:${string}`]: {
529
+ type: import("vue").PropType<PropertyRegistration>;
530
+ required: false;
531
+ };
532
+ } & {
533
+ [x: string]: {
534
+ type: import("vue").PropType<PropertyRegistration>;
535
+ required: false;
536
+ };
537
+ } & {
538
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, PropertyRegistration, {
539
+ "onUpdate:modelValue": {
540
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
541
+ };
542
+ } & {
543
+ "v-model": {
544
+ type: import("vue").PropType<PropertyRegistration>;
545
+ required: false;
546
+ };
547
+ } & {
548
+ modelValue: {
549
+ type: import("vue").PropType<PropertyRegistration>;
550
+ required: false;
551
+ };
552
+ }>;
553
+ defaultValue(value?: PropertyRegistration): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, PropertyRegistration, {
554
+ "onUpdate:modelValue": {
555
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
556
+ };
557
+ } & {
558
+ "v-model": {
559
+ type: import("vue").PropType<PropertyRegistration>;
560
+ required: false;
561
+ };
562
+ } & {
563
+ modelValue: {
564
+ type: import("vue").PropType<PropertyRegistration>;
565
+ required: false;
566
+ };
567
+ }, false>;
568
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, PropertyRegistration, {
569
+ "onUpdate:modelValue": {
570
+ type: import("vue").PropType<(value: PropertyRegistration) => any>;
571
+ };
572
+ } & {
573
+ "v-model": {
574
+ type: import("vue").PropType<PropertyRegistration>;
575
+ required: false;
576
+ };
577
+ } & {
578
+ modelValue: {
579
+ type: import("vue").PropType<PropertyRegistration>;
580
+ required: false;
581
+ };
582
+ }>;
583
+ };
62
584
  multiple?: boolean;
63
585
  disabled?: boolean;
64
- valueBind?: PropertyRegistration;
65
- onValueChanged?: (model: PropertyRegistration) => void;
586
+ "v-model"?: PropertyRegistration;
587
+ "onUpdate:modelValue"?: (value: PropertyRegistration) => any;
588
+ modelValue?: PropertyRegistration;
66
589
  hideDetails?: boolean;
590
+ "hide-details"?: boolean;
591
+ hideConfiguration?: boolean;
592
+ "hide-configuration"?: boolean;
67
593
  propertyRegistrations?: PropertyRegistration[];
594
+ "property-registrations"?: PropertyRegistration[];
68
595
  loadingProperties?: boolean;
69
- propertyCreator?: import("@omnia/fx/services").IDataSourcePropertyCreator;
70
- }>, never>;
596
+ "loading-properties"?: boolean;
597
+ propertyCreator?: IDataSourcePropertyCreator;
598
+ "property-creator"?: IDataSourcePropertyCreator;
599
+ }>, "onUpdate:modelValue" | "onDoc$"> & {
600
+ "onUpdate:modelValue"?: (model: PropertyRegistration) => any;
601
+ onDoc$?: (description?: string) => any;
602
+ };
71
603
  };
72
604
  export default _default;
@@ -1,7 +1,5 @@
1
1
  import { types } from "typestyle";
2
2
  export declare const PropertyPickerStyles: {
3
- expansionGroupWrapper?: types.NestedCSSProperties;
4
- expansionGroupContent?: types.NestedCSSProperties;
5
- expansionGroupHeader?: types.NestedCSSProperties;
6
- selectionItemsWrapper?: types.NestedCSSProperties;
3
+ container?: types.NestedCSSProperties;
4
+ itemWrapper?: types.NestedCSSProperties;
7
5
  };