@omnia/fx 8.0.285-dev → 8.0.287-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 (33) hide show
  1. package/internal-do-not-import-from-here/index.d.ts +1 -1
  2. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/spacing/store/SpacingEditorStore.d.ts +7 -7
  3. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingEditor.d.ts +8 -8
  4. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +10 -554
  5. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingViewer.d.ts +8 -8
  6. package/internal-do-not-import-from-here/ux/aurora/designkits/shared/BlueprintsTemplates.d.ts +4 -4
  7. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +136 -124
  8. package/internal-do-not-import-from-here/ux/aurora/store/SpacingMigration.d.ts +4 -0
  9. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +136 -124
  10. package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +1 -0
  11. package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +9 -13
  12. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +6 -5
  13. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Chrome.d.ts +3 -3
  14. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockHeader.d.ts +20 -20
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling.d.ts +20 -20
  16. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/Style.d.ts +20 -20
  17. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/lock/Lock.d.ts +20 -20
  18. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Css.d.ts +20 -20
  19. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +20 -20
  20. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Style.d.ts +20 -20
  21. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Targeting.d.ts +20 -20
  22. package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +4 -4
  23. package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +1 -2
  24. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +3 -2
  25. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronTypes.d.ts +1 -1
  26. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -0
  27. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +17 -3
  28. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -2
  29. package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentePropertiesGroupDescriptorTemplates.d.ts +2 -2
  30. package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronDescriptors.d.ts +32 -3
  31. package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +6 -1
  32. package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +1 -1
  33. package/package.json +4 -4
@@ -41,14 +41,14 @@ declare const _default: {
41
41
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
42
42
  };
43
43
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
44
- entries: () => IterableIterator<[number, string]>;
45
- keys: () => IterableIterator<number>;
46
- values: () => IterableIterator<string>;
44
+ entries: () => ArrayIterator<[number, string]>;
45
+ keys: () => ArrayIterator<number>;
46
+ values: () => ArrayIterator<string>;
47
47
  includes: (searchElement: string, fromIndex?: number) => boolean;
48
48
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
49
49
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
50
50
  at: (index: number) => string;
51
- [Symbol.iterator]: () => IterableIterator<string>;
51
+ [Symbol.iterator]: () => ArrayIterator<string>;
52
52
  readonly [Symbol.unscopables]: {
53
53
  readonly [x: number]: boolean;
54
54
  readonly length?: boolean;
@@ -122,14 +122,14 @@ declare const _default: {
122
122
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
123
123
  };
124
124
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
125
- entries: () => IterableIterator<[number, string]>;
126
- keys: () => IterableIterator<number>;
127
- values: () => IterableIterator<string>;
125
+ entries: () => ArrayIterator<[number, string]>;
126
+ keys: () => ArrayIterator<number>;
127
+ values: () => ArrayIterator<string>;
128
128
  includes: (searchElement: string, fromIndex?: number) => boolean;
129
129
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
130
130
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
131
131
  at: (index: number) => string;
132
- [Symbol.iterator]: () => IterableIterator<string>;
132
+ [Symbol.iterator]: () => ArrayIterator<string>;
133
133
  readonly [Symbol.unscopables]: {
134
134
  readonly [x: number]: boolean;
135
135
  readonly length?: boolean;
@@ -210,14 +210,14 @@ declare const _default: {
210
210
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
211
211
  };
212
212
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
213
- entries: () => IterableIterator<[number, string]>;
214
- keys: () => IterableIterator<number>;
215
- values: () => IterableIterator<string>;
213
+ entries: () => ArrayIterator<[number, string]>;
214
+ keys: () => ArrayIterator<number>;
215
+ values: () => ArrayIterator<string>;
216
216
  includes: (searchElement: string, fromIndex?: number) => boolean;
217
217
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
218
218
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
219
219
  at: (index: number) => string;
220
- [Symbol.iterator]: () => IterableIterator<string>;
220
+ [Symbol.iterator]: () => ArrayIterator<string>;
221
221
  readonly [Symbol.unscopables]: {
222
222
  readonly [x: number]: boolean;
223
223
  readonly length?: boolean;
@@ -295,14 +295,14 @@ declare const _default: {
295
295
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
296
296
  };
297
297
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
298
- entries: () => IterableIterator<[number, string]>;
299
- keys: () => IterableIterator<number>;
300
- values: () => IterableIterator<string>;
298
+ entries: () => ArrayIterator<[number, string]>;
299
+ keys: () => ArrayIterator<number>;
300
+ values: () => ArrayIterator<string>;
301
301
  includes: (searchElement: string, fromIndex?: number) => boolean;
302
302
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
303
303
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
304
304
  at: (index: number) => string;
305
- [Symbol.iterator]: () => IterableIterator<string>;
305
+ [Symbol.iterator]: () => ArrayIterator<string>;
306
306
  readonly [Symbol.unscopables]: {
307
307
  readonly [x: number]: boolean;
308
308
  readonly length?: boolean;
@@ -377,14 +377,14 @@ declare const _default: {
377
377
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
378
378
  };
379
379
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
380
- entries: () => IterableIterator<[number, string]>;
381
- keys: () => IterableIterator<number>;
382
- values: () => IterableIterator<string>;
380
+ entries: () => ArrayIterator<[number, string]>;
381
+ keys: () => ArrayIterator<number>;
382
+ values: () => ArrayIterator<string>;
383
383
  includes: (searchElement: string, fromIndex?: number) => boolean;
384
384
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
385
385
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
386
386
  at: (index: number) => string;
387
- [Symbol.iterator]: () => IterableIterator<string>;
387
+ [Symbol.iterator]: () => ArrayIterator<string>;
388
388
  readonly [Symbol.unscopables]: {
389
389
  readonly [x: number]: boolean;
390
390
  readonly length?: boolean;
@@ -41,14 +41,14 @@ declare const _default: {
41
41
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
42
42
  };
43
43
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
44
- entries: () => IterableIterator<[number, string]>;
45
- keys: () => IterableIterator<number>;
46
- values: () => IterableIterator<string>;
44
+ entries: () => ArrayIterator<[number, string]>;
45
+ keys: () => ArrayIterator<number>;
46
+ values: () => ArrayIterator<string>;
47
47
  includes: (searchElement: string, fromIndex?: number) => boolean;
48
48
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
49
49
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
50
50
  at: (index: number) => string;
51
- [Symbol.iterator]: () => IterableIterator<string>;
51
+ [Symbol.iterator]: () => ArrayIterator<string>;
52
52
  readonly [Symbol.unscopables]: {
53
53
  readonly [x: number]: boolean;
54
54
  readonly length?: boolean;
@@ -122,14 +122,14 @@ declare const _default: {
122
122
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
123
123
  };
124
124
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
125
- entries: () => IterableIterator<[number, string]>;
126
- keys: () => IterableIterator<number>;
127
- values: () => IterableIterator<string>;
125
+ entries: () => ArrayIterator<[number, string]>;
126
+ keys: () => ArrayIterator<number>;
127
+ values: () => ArrayIterator<string>;
128
128
  includes: (searchElement: string, fromIndex?: number) => boolean;
129
129
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
130
130
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
131
131
  at: (index: number) => string;
132
- [Symbol.iterator]: () => IterableIterator<string>;
132
+ [Symbol.iterator]: () => ArrayIterator<string>;
133
133
  readonly [Symbol.unscopables]: {
134
134
  readonly [x: number]: boolean;
135
135
  readonly length?: boolean;
@@ -210,14 +210,14 @@ declare const _default: {
210
210
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
211
211
  };
212
212
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
213
- entries: () => IterableIterator<[number, string]>;
214
- keys: () => IterableIterator<number>;
215
- values: () => IterableIterator<string>;
213
+ entries: () => ArrayIterator<[number, string]>;
214
+ keys: () => ArrayIterator<number>;
215
+ values: () => ArrayIterator<string>;
216
216
  includes: (searchElement: string, fromIndex?: number) => boolean;
217
217
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
218
218
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
219
219
  at: (index: number) => string;
220
- [Symbol.iterator]: () => IterableIterator<string>;
220
+ [Symbol.iterator]: () => ArrayIterator<string>;
221
221
  readonly [Symbol.unscopables]: {
222
222
  readonly [x: number]: boolean;
223
223
  readonly length?: boolean;
@@ -295,14 +295,14 @@ declare const _default: {
295
295
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
296
296
  };
297
297
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
298
- entries: () => IterableIterator<[number, string]>;
299
- keys: () => IterableIterator<number>;
300
- values: () => IterableIterator<string>;
298
+ entries: () => ArrayIterator<[number, string]>;
299
+ keys: () => ArrayIterator<number>;
300
+ values: () => ArrayIterator<string>;
301
301
  includes: (searchElement: string, fromIndex?: number) => boolean;
302
302
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
303
303
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
304
304
  at: (index: number) => string;
305
- [Symbol.iterator]: () => IterableIterator<string>;
305
+ [Symbol.iterator]: () => ArrayIterator<string>;
306
306
  readonly [Symbol.unscopables]: {
307
307
  readonly [x: number]: boolean;
308
308
  readonly length?: boolean;
@@ -377,14 +377,14 @@ declare const _default: {
377
377
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
378
378
  };
379
379
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
380
- entries: () => IterableIterator<[number, string]>;
381
- keys: () => IterableIterator<number>;
382
- values: () => IterableIterator<string>;
380
+ entries: () => ArrayIterator<[number, string]>;
381
+ keys: () => ArrayIterator<number>;
382
+ values: () => ArrayIterator<string>;
383
383
  includes: (searchElement: string, fromIndex?: number) => boolean;
384
384
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
385
385
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
386
386
  at: (index: number) => string;
387
- [Symbol.iterator]: () => IterableIterator<string>;
387
+ [Symbol.iterator]: () => ArrayIterator<string>;
388
388
  readonly [Symbol.unscopables]: {
389
389
  readonly [x: number]: boolean;
390
390
  readonly length?: boolean;
@@ -41,14 +41,14 @@ declare const _default: {
41
41
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
42
42
  };
43
43
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
44
- entries: () => IterableIterator<[number, string]>;
45
- keys: () => IterableIterator<number>;
46
- values: () => IterableIterator<string>;
44
+ entries: () => ArrayIterator<[number, string]>;
45
+ keys: () => ArrayIterator<number>;
46
+ values: () => ArrayIterator<string>;
47
47
  includes: (searchElement: string, fromIndex?: number) => boolean;
48
48
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
49
49
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
50
50
  at: (index: number) => string;
51
- [Symbol.iterator]: () => IterableIterator<string>;
51
+ [Symbol.iterator]: () => ArrayIterator<string>;
52
52
  readonly [Symbol.unscopables]: {
53
53
  readonly [x: number]: boolean;
54
54
  readonly length?: boolean;
@@ -122,14 +122,14 @@ declare const _default: {
122
122
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
123
123
  };
124
124
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
125
- entries: () => IterableIterator<[number, string]>;
126
- keys: () => IterableIterator<number>;
127
- values: () => IterableIterator<string>;
125
+ entries: () => ArrayIterator<[number, string]>;
126
+ keys: () => ArrayIterator<number>;
127
+ values: () => ArrayIterator<string>;
128
128
  includes: (searchElement: string, fromIndex?: number) => boolean;
129
129
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
130
130
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
131
131
  at: (index: number) => string;
132
- [Symbol.iterator]: () => IterableIterator<string>;
132
+ [Symbol.iterator]: () => ArrayIterator<string>;
133
133
  readonly [Symbol.unscopables]: {
134
134
  readonly [x: number]: boolean;
135
135
  readonly length?: boolean;
@@ -210,14 +210,14 @@ declare const _default: {
210
210
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
211
211
  };
212
212
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
213
- entries: () => IterableIterator<[number, string]>;
214
- keys: () => IterableIterator<number>;
215
- values: () => IterableIterator<string>;
213
+ entries: () => ArrayIterator<[number, string]>;
214
+ keys: () => ArrayIterator<number>;
215
+ values: () => ArrayIterator<string>;
216
216
  includes: (searchElement: string, fromIndex?: number) => boolean;
217
217
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
218
218
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
219
219
  at: (index: number) => string;
220
- [Symbol.iterator]: () => IterableIterator<string>;
220
+ [Symbol.iterator]: () => ArrayIterator<string>;
221
221
  readonly [Symbol.unscopables]: {
222
222
  readonly [x: number]: boolean;
223
223
  readonly length?: boolean;
@@ -295,14 +295,14 @@ declare const _default: {
295
295
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
296
296
  };
297
297
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
298
- entries: () => IterableIterator<[number, string]>;
299
- keys: () => IterableIterator<number>;
300
- values: () => IterableIterator<string>;
298
+ entries: () => ArrayIterator<[number, string]>;
299
+ keys: () => ArrayIterator<number>;
300
+ values: () => ArrayIterator<string>;
301
301
  includes: (searchElement: string, fromIndex?: number) => boolean;
302
302
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
303
303
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
304
304
  at: (index: number) => string;
305
- [Symbol.iterator]: () => IterableIterator<string>;
305
+ [Symbol.iterator]: () => ArrayIterator<string>;
306
306
  readonly [Symbol.unscopables]: {
307
307
  readonly [x: number]: boolean;
308
308
  readonly length?: boolean;
@@ -377,14 +377,14 @@ declare const _default: {
377
377
  (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
378
378
  };
379
379
  findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
380
- entries: () => IterableIterator<[number, string]>;
381
- keys: () => IterableIterator<number>;
382
- values: () => IterableIterator<string>;
380
+ entries: () => ArrayIterator<[number, string]>;
381
+ keys: () => ArrayIterator<number>;
382
+ values: () => ArrayIterator<string>;
383
383
  includes: (searchElement: string, fromIndex?: number) => boolean;
384
384
  flatMap: <U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This) => U[];
385
385
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
386
386
  at: (index: number) => string;
387
- [Symbol.iterator]: () => IterableIterator<string>;
387
+ [Symbol.iterator]: () => ArrayIterator<string>;
388
388
  readonly [Symbol.unscopables]: {
389
389
  readonly [x: number]: boolean;
390
390
  readonly length?: boolean;
@@ -78,10 +78,10 @@ declare const _default: {
78
78
  }>;
79
79
  };
80
80
  }>> & {
81
- onLayout?: (event: any) => any;
82
81
  onScroll?: (event: any) => any;
83
82
  onError?: (err: string) => any;
84
83
  onConfiguration?: (event: any) => any;
84
+ onLayout?: (event: any) => any;
85
85
  onBlur?: () => any;
86
86
  onChange?: (value: string, event: any) => any;
87
87
  onFocus?: () => any;
@@ -205,10 +205,10 @@ declare const _default: {
205
205
  }>;
206
206
  };
207
207
  }>> & {
208
- onLayout?: (event: any) => any;
209
208
  onScroll?: (event: any) => any;
210
209
  onError?: (err: string) => any;
211
210
  onConfiguration?: (event: any) => any;
211
+ onLayout?: (event: any) => any;
212
212
  onBlur?: () => any;
213
213
  onChange?: (value: string, event: any) => any;
214
214
  onFocus?: () => any;
@@ -314,10 +314,10 @@ declare const _default: {
314
314
  }>;
315
315
  };
316
316
  }>> & {
317
- onLayout?: (event: any) => any;
318
317
  onScroll?: (event: any) => any;
319
318
  onError?: (err: string) => any;
320
319
  onConfiguration?: (event: any) => any;
320
+ onLayout?: (event: any) => any;
321
321
  onBlur?: () => any;
322
322
  onChange?: (value: string, event: any) => any;
323
323
  onFocus?: () => any;
@@ -420,10 +420,10 @@ declare const _default: {
420
420
  }>;
421
421
  };
422
422
  }>> & {
423
- onLayout?: (event: any) => any;
424
423
  onScroll?: (event: any) => any;
425
424
  onError?: (err: string) => any;
426
425
  onConfiguration?: (event: any) => any;
426
+ onLayout?: (event: any) => any;
427
427
  onBlur?: () => any;
428
428
  onChange?: (value: string, event: any) => any;
429
429
  onFocus?: () => any;
@@ -26,6 +26,5 @@ export declare enum VelcronDataTypes {
26
26
  number = "number",
27
27
  boolean = "boolean",
28
28
  array = "array",
29
- componentArray = "componentArray",
30
- bind = "bind"
29
+ componentArray = "componentArray"
31
30
  }
@@ -1,5 +1,5 @@
1
1
  import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerBlueprint, BackgroundDefinition, ContainerVariant, IconBlueprint, ButtonBlueprint } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
- import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
2
+ import { VelcronComponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
3
3
  import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
4
4
  import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
5
5
  import { guid, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx/models";
@@ -65,7 +65,7 @@ export interface VelcronRenderContext {
65
65
  };
66
66
  components?: Array<VelcronCustomComponentDefinition>;
67
67
  properties?: {
68
- [name: string]: VelcronPrimitiveType | VelcroncomponentArrayType;
68
+ [name: string]: VelcronPrimitiveType | VelcronComponentArrayType;
69
69
  };
70
70
  computed?: {
71
71
  [name: string]: Array<string>;
@@ -314,6 +314,7 @@ export interface VelcronLottieDefinition extends VelcronDefinition {
314
314
  export interface VelcronSlidePanelDefinition extends VelcronDefinition {
315
315
  type: "slide-panel";
316
316
  slidesPerView?: VelcronBindableProp<number>;
317
+ delay?: VelcronBindableProp<number>;
317
318
  pagination?: VelcronBindableProp<boolean>;
318
319
  navigation?: VelcronBindableProp<boolean>;
319
320
  scrollbar?: VelcronBindableProp<boolean>;
@@ -2,4 +2,4 @@ import { VelcronDefinition } from "@omnia/fx-models";
2
2
  export type VelcronPrimitiveType = string | number | boolean;
3
3
  export type VelcronArrayType<T> = Array<T>;
4
4
  export type VelcronObjectType<T extends Object> = T;
5
- export type VelcroncomponentArrayType = Array<VelcronDefinition>;
5
+ export type VelcronComponentArrayType = Array<VelcronDefinition>;
@@ -26,6 +26,7 @@ export declare class VelcronData {
26
26
  static isUndefined(value: any): value is undefined;
27
27
  static isArray(obj: any): obj is ExtendArray;
28
28
  static isObject(value: any): value is object;
29
+ static hasValue(value: any): boolean;
29
30
  static getDataType(value: any): VelcronDataTypes;
30
31
  static extendObject(obj: any): any;
31
32
  static propertyPathExists(obj: object, path: string): boolean;
@@ -1,10 +1,24 @@
1
1
  import { VelcronBorder, VelcronColorStyling, VelcronDefinitionHasEffects, VelcronDefinitionHasOverflow, VelcronDimensions, VelcronEffects, VelcronRenderContext } from "../models";
2
2
  import { VelcronUnitProvider } from "../models/VelcronUnitProvider";
3
- import { SpacingDefinition, VelcronBindableProp, VelcronDefinition } from "..";
3
+ import { SpacingBlueprint, VelcronBindableProp, VelcronDefinition } from "..";
4
4
  export declare class VelcronStyles {
5
5
  static styleProvider: (baseStyles: object, definition: VelcronDefinition, renderCtx: VelcronRenderContext) => any;
6
6
  static effectsProvider: (effects: VelcronEffects, renderCtx: VelcronRenderContext) => VelcronEffects;
7
7
  static unitProvider: VelcronUnitProvider;
8
+ spacingScaling: {
9
+ get: {
10
+ valueWithoutScale: (value: import("..").SpacingValue) => string | number;
11
+ scaleFromValue: (value: import("..").SpacingValue) => import("..").SpacingScale;
12
+ scale: (value: import("..").Spacing | import("..").SpacingValue) => import("..").SpacingScale;
13
+ };
14
+ add: {
15
+ scaleToValue: (value: import("..").SpacingValue, scale: import("..").SpacingScale) => string | number;
16
+ fallBackScale: (value: import("..").SpacingValue, scale: import("..").SpacingScale) => string | number;
17
+ };
18
+ has: {
19
+ scaling: (value: import("..").SpacingValue) => boolean;
20
+ };
21
+ };
8
22
  static registerStyleProvider(fn: (styleBase: object, definition: VelcronDefinition, renderCtx: VelcronRenderContext) => object | string, unitProvider: VelcronUnitProvider): void;
9
23
  static registerEffectsProvider(fn: (effects: VelcronEffects, renderCtx: VelcronRenderContext) => VelcronEffects): void;
10
24
  static applyEffects(definition: VelcronDefinitionHasEffects, renderCtx: VelcronRenderContext, applyTo: (effects: VelcronEffects) => any): any;
@@ -12,8 +26,8 @@ export declare class VelcronStyles {
12
26
  static insertBorderRadiusStyles(styleBase: any, settings: VelcronDimensions): void;
13
27
  static insertBorderStyles(styleBase: any, borderSettings: VelcronBorder, renderCtx: VelcronRenderContext): void;
14
28
  static create(definition: VelcronDefinition, renderCtx: VelcronRenderContext): object | string;
15
- static applySpacingDimension(value: string | number, spacing: SpacingDefinition): string | number;
29
+ static applySpacingDimension(value: string | number, spacing: SpacingBlueprint): string | number;
16
30
  static applyOverflow(definition: VelcronDefinitionHasOverflow, renderCtx: VelcronRenderContext, styleBase: any): void;
17
- static applySpacingStyles<T>(spacing: VelcronBindableProp<T>, renderCtx: VelcronRenderContext, styleBase: any, spacingDef: SpacingDefinition, styleType: string, objectIsDatabound?: (obj: T) => void, additionalPropsToDataBind?: object): void;
31
+ static applySpacingStyles<T>(spacing: VelcronBindableProp<T>, renderCtx: VelcronRenderContext, styleBase: any, spacingDef: SpacingBlueprint, styleType: string, objectIsDatabound?: (obj: T) => void, additionalPropsToDataBind?: object): void;
18
32
  static dataBindStyles(styles: object, renderCtx: VelcronRenderContext): object;
19
33
  }
@@ -1,4 +1,4 @@
1
- import { ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, ContainerBlueprint, ContainerVariant, ThemeDefinitionV2, TypographySize, TypographySizes, TypographyType, TypographyTypes, VelcronDefinition } from "..";
1
+ import { ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, ContainerBlueprint, ContainerVariant, ThemeDefinitionV2, TypographySize, TypographySizes, TypographyType, TypographyTypes } from "..";
2
2
  export declare const useVelcronThemingStore: (newStateWithName?: string) => {
3
3
  state: {
4
4
  currentTheme: ThemeDefinitionV2;
@@ -7,7 +7,7 @@ export declare const useVelcronThemingStore: (newStateWithName?: string) => {
7
7
  componentBlueprints: () => void;
8
8
  containerBlueprint: (type: ContainerVariant | ContainerBlueprint | string) => any;
9
9
  colorSchema: (colorSchemaType: ColorSchemaTypes | ColorSchemaType) => import("..").ColorSchema;
10
- spacing: (definition?: VelcronDefinition) => import("..").SpacingDefinition;
10
+ spacing: () => import("..").SpacingBlueprint;
11
11
  typography: (typographyType: TypographyTypes | TypographyType, size: TypographySizes | TypographySize) => any;
12
12
  color: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => string;
13
13
  colorDefinition: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => import("..").ColorDefinition;
@@ -1,7 +1,7 @@
1
- import { VelcronComponentArrayPropertyDescriptor, VelcronComponentPropertyDescriptor, VelcronComponentPropertyDescriptorGroup } from "./VelcronDescriptors";
1
+ import { VelcronComponentArrayPropertyDescriptor, VelcronComponentPropertyDescriptor, VelcronComponentPropertyDescriptorGroup, VelcronComponentPropertyDescriptorWithType } from "./VelcronDescriptors";
2
2
  export declare const ComponentPropertiesDescriptorGroupTemplates: {
3
3
  spacing: (properties: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>) => VelcronComponentPropertyDescriptorGroup;
4
- settings: (properties: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>) => VelcronComponentPropertyDescriptorGroup;
4
+ settings: (properties: Array<VelcronComponentPropertyDescriptorWithType | VelcronComponentArrayPropertyDescriptor>) => VelcronComponentPropertyDescriptorGroup;
5
5
  style: (properties: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>) => VelcronComponentPropertyDescriptorGroup;
6
6
  size: (properties: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>) => VelcronComponentPropertyDescriptorGroup;
7
7
  layout: (properties: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>) => VelcronComponentPropertyDescriptorGroup;
@@ -1,6 +1,6 @@
1
1
  import { IFontAwesomeIcon, IIcon, VelcronDefinition, VelcronEditor } from "@omnia/fx-models";
2
2
  import { VelcronDataTypes } from "../../core/models/Enums";
3
- import { VelcroncomponentArrayType, VelcronObjectType, VelcronPrimitiveType } from "../../core/models/VelcronTypes";
3
+ import { VelcronComponentArrayType, VelcronObjectType, VelcronPrimitiveType } from "../../core/models/VelcronTypes";
4
4
  import { VelcronDescriptorTypes } from "./Enums";
5
5
  export interface VelcronDescriptor {
6
6
  descriptorType: VelcronDescriptorTypes;
@@ -17,7 +17,7 @@ export interface VelcronComponentTemplateDescriptor extends VelcronDescriptor {
17
17
  export interface VelcronComponentPropertyDescriptorGroup {
18
18
  name: string;
19
19
  icon: IFontAwesomeIcon;
20
- properties?: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>;
20
+ properties?: Array<VelcronComponentPropertyDescriptorWithType | VelcronComponentArrayPropertyDescriptor>;
21
21
  }
22
22
  export interface VelcronComponentDescriptor extends VelcronDescriptor {
23
23
  descriptorType: VelcronDescriptorTypes.component;
@@ -46,12 +46,41 @@ export interface VelcronComponentPropertyDescriptor {
46
46
  group?: string;
47
47
  editor?: VelcronEditor<any>;
48
48
  required?: boolean;
49
- defaultValue?: VelcronPrimitiveType | VelcroncomponentArrayType | VelcronObjectType<{}>;
49
+ defaultValue?: VelcronPrimitiveType | VelcronComponentArrayType | VelcronObjectType<{}> | boolean;
50
50
  disableRemovePropertyOnEmptyOrFalse?: boolean;
51
51
  label?: string;
52
52
  bindable?: boolean;
53
53
  propertyCleanup?: Array<VelcronComponentPropertyCleanupCondition>;
54
54
  }
55
+ export interface VelcronComponentPropertyDescriptorBoolean extends VelcronComponentPropertyDescriptor {
56
+ type: VelcronDataTypes.boolean;
57
+ defaultValue?: boolean;
58
+ }
59
+ export interface VelcronComponentPropertyDescriptorText extends VelcronComponentPropertyDescriptor {
60
+ type: VelcronDataTypes.text;
61
+ defaultValue?: string;
62
+ }
63
+ export interface VelcronComponentPropertyDescriptorNumber extends VelcronComponentPropertyDescriptor {
64
+ type: VelcronDataTypes.number;
65
+ defaultValue?: number;
66
+ }
67
+ export interface VelcronComponentPropertyDescriptorArray extends VelcronComponentPropertyDescriptor {
68
+ type: VelcronDataTypes.array;
69
+ defaultValue?: VelcronComponentArrayType;
70
+ }
71
+ export interface VelcronComponentPropertyDescriptorComponentArray extends VelcronComponentPropertyDescriptor {
72
+ type: VelcronDataTypes.componentArray;
73
+ defaultValue?: VelcronComponentArrayType;
74
+ }
75
+ export interface VelcronComponentPropertyDescriptorObject extends VelcronComponentPropertyDescriptor {
76
+ type: VelcronDataTypes.object;
77
+ defaultValue?: VelcronObjectType<{}>;
78
+ }
79
+ export interface VelcronComponentPropertyDescriptorUnknown extends VelcronComponentPropertyDescriptor {
80
+ type: VelcronDataTypes.unknown;
81
+ defaultValue?: unknown;
82
+ }
83
+ export type VelcronComponentPropertyDescriptorWithType = VelcronComponentPropertyDescriptorBoolean | VelcronComponentPropertyDescriptorText | VelcronComponentPropertyDescriptorNumber | VelcronComponentPropertyDescriptorArray | VelcronComponentPropertyDescriptorComponentArray | VelcronComponentPropertyDescriptorObject | VelcronComponentPropertyDescriptorUnknown;
55
84
  export interface VelcronComponentArrayPropertyDescriptor extends VelcronComponentPropertyDescriptor {
56
85
  type: VelcronDataTypes.componentArray;
57
86
  subComponent: VelcronSubComponentDescriptor;
@@ -1,4 +1,4 @@
1
- import { DynamicState, VelcronAppDefinition, VelcronDefinitionCategoryRegistration, VelcronDefinitionRegistration, VelcronDefinitionRegistrationWithoutApp, VelcronDefinitionRendererTypeRegistration, VelcronRendererResolverReference, guid } from "@omnia/fx-models";
1
+ import { DynamicState, VelcronAppDefinition, VelcronDefinitionCategoryRegistration, VelcronDefinitionRegistration, VelcronDefinitionRegistrationWithoutApp, VelcronDefinitionRendererTypeRegistration, VelcronGridState, VelcronRendererResolverReference, guid } from "@omnia/fx-models";
2
2
  import { VelcronPropertyDefinitionValueResolver, VelcronPropertyEditorValue } from "../../models";
3
3
  export declare const useVelcronDefinitionStore: () => {
4
4
  state: {
@@ -32,6 +32,11 @@ export declare const useVelcronDefinitionStore: () => {
32
32
  state: VelcronPropertyEditorValue<T>;
33
33
  setState(value: VelcronPropertyEditorValue<T>): void;
34
34
  };
35
+ grid(): {
36
+ match: boolean;
37
+ state: VelcronGridState;
38
+ setState(value: VelcronGridState): void;
39
+ };
35
40
  };
36
41
  };
37
42
  actions: {
@@ -1,6 +1,6 @@
1
1
  import "./VuetifyTypography.css";
2
2
  import { createSimpleFunctional, directiveConfig, addOnceEventListener, addPassiveEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, convertToUnit, kebabCase, isObject, remapInternalIcon, keys, arrayDiff, upperFirst, groupItems, wrapInArray, sortItems, defaultFilter, searchItems, getSlotType, debounce, throttle, getPrefixedScopedSlots, getSlot, clamp, padEnd, chunk, humanReadableFileSize, camelizeObjectKeys, mergeDeep, fillArray, camelize } from "vuetify/lib/util/index.mjs";
3
- import transitions from "vuetify/lib/components/transitions/index.mjs";
3
+ import * as transitions from "vuetify/lib/components/transitions/index.mjs";
4
4
  export declare const VuetifySetup: {
5
5
  components: any;
6
6
  directives: any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.285-dev",
4
+ "version": "8.0.287-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,15 +20,15 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.285-dev",
23
+ "@omnia/fx-models": "8.0.287-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
27
27
  "splitpanes": "3.1.5",
28
- "vue": "3.5.3",
28
+ "vue": "3.5.4",
29
29
  "vuetify": "3.7.0",
30
30
  "tslib": "2.6.2",
31
- "typescript": "5.5.4",
31
+ "typescript": "5.6.2",
32
32
  "@tiptap/vue-3": "2.1.13",
33
33
  "@tiptap/pm": "2.1.13",
34
34
  "@tiptap/suggestion": "2.1.13",