@omnia/fx 8.0.128-dev → 8.0.129-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 (52) hide show
  1. package/internal-do-not-import-from-here/core/Factory.d.ts +2 -0
  2. package/internal-do-not-import-from-here/core/index.d.ts +2 -4
  3. package/internal-do-not-import-from-here/core/messaging/BuiltInTopics.d.ts +1 -1
  4. package/internal-do-not-import-from-here/core/messaging/index.d.ts +1 -1
  5. package/internal-do-not-import-from-here/core/utils/Utils.d.ts +1 -1
  6. package/internal-do-not-import-from-here/index.d.ts +16 -18
  7. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  8. package/internal-do-not-import-from-here/services/index.d.ts +0 -1
  9. package/internal-do-not-import-from-here/{core → shared/factory}/DefineFactory.d.ts +1 -1
  10. package/internal-do-not-import-from-here/{core → shared/factory}/Inject.d.ts +2 -2
  11. package/internal-do-not-import-from-here/{core → shared/factory}/ServiceContainer.d.ts +1 -0
  12. package/internal-do-not-import-from-here/shared/factory/index.d.ts +4 -0
  13. package/internal-do-not-import-from-here/shared/index.d.ts +3 -0
  14. package/internal-do-not-import-from-here/{core → shared}/messaging/MessageBus.d.ts +1 -1
  15. package/internal-do-not-import-from-here/{core → shared}/messaging/MessageBusMediator.d.ts +1 -1
  16. package/internal-do-not-import-from-here/shared/messaging/index.d.ts +2 -0
  17. package/internal-do-not-import-from-here/shared/models/DependencyInjection.d.ts +19 -0
  18. package/internal-do-not-import-from-here/shared/models/DependencyInjection.js +9 -0
  19. package/internal-do-not-import-from-here/shared/models/Guid.js +1 -1
  20. package/internal-do-not-import-from-here/shared/models/Messaging.d.ts +23 -0
  21. package/internal-do-not-import-from-here/shared/models/Messaging.js +2 -0
  22. package/internal-do-not-import-from-here/shared/models/hub/targeting/HubSource.js +1 -1
  23. package/internal-do-not-import-from-here/shared/models/index.d.ts +2 -0
  24. package/internal-do-not-import-from-here/shared/models/index.js +2 -0
  25. package/internal-do-not-import-from-here/shared/utils/index.d.ts +4 -0
  26. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaDefinitionPicker.d.ts +1 -1
  27. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
  29. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockHeader.d.ts +10 -10
  30. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling.d.ts +10 -10
  31. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/Style.d.ts +10 -10
  32. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/lock/Lock.d.ts +10 -10
  33. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Css.d.ts +10 -10
  34. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +10 -10
  35. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Spacing.d.ts +10 -10
  36. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Style.d.ts +10 -10
  37. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Targeting.d.ts +10 -10
  38. package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +1 -1
  39. package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +1 -1
  40. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +1 -1
  41. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +1 -1
  42. package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +1 -1
  43. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
  44. package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.d.ts +1 -1
  45. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +3 -3
  46. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +1 -1
  47. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +1 -1
  48. package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +1 -1
  49. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +1 -1
  50. package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/IdentityCreationRequestView.d.ts +10 -10
  51. package/package.json +2 -2
  52. /package/internal-do-not-import-from-here/{core → shared/factory}/Injectable.d.ts +0 -0
@@ -44,6 +44,7 @@ declare const _default: {
44
44
  includes: (searchElement: string, fromIndex?: number) => boolean;
45
45
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
46
46
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
47
+ at: (index: number) => string;
47
48
  [Symbol.iterator]: () => IterableIterator<string>;
48
49
  readonly [Symbol.unscopables]: {
49
50
  readonly [x: number]: boolean;
@@ -70,11 +71,10 @@ declare const _default: {
70
71
  includes?: boolean;
71
72
  flatMap?: boolean;
72
73
  flat?: boolean;
74
+ at?: boolean;
73
75
  [Symbol.iterator]?: boolean;
74
76
  readonly [Symbol.unscopables]?: boolean;
75
- at?: boolean;
76
77
  };
77
- at: (index: number) => string;
78
78
  }> | Readonly<import("vue").ExtractPropTypes<{
79
79
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
80
80
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{
@@ -122,6 +122,7 @@ declare const _default: {
122
122
  includes: (searchElement: string, fromIndex?: number) => boolean;
123
123
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
124
124
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
125
+ at: (index: number) => string;
125
126
  [Symbol.iterator]: () => IterableIterator<string>;
126
127
  readonly [Symbol.unscopables]: {
127
128
  readonly [x: number]: boolean;
@@ -148,11 +149,10 @@ declare const _default: {
148
149
  includes?: boolean;
149
150
  flatMap?: boolean;
150
151
  flat?: boolean;
152
+ at?: boolean;
151
153
  [Symbol.iterator]?: boolean;
152
154
  readonly [Symbol.unscopables]?: boolean;
153
- at?: boolean;
154
155
  };
155
- at: (index: number) => string;
156
156
  } | import("vue").ExtractPropTypes<{
157
157
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
158
158
  }>>, {} | {}, true, {}, {}, {
@@ -207,6 +207,7 @@ declare const _default: {
207
207
  includes: (searchElement: string, fromIndex?: number) => boolean;
208
208
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
209
209
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
210
+ at: (index: number) => string;
210
211
  [Symbol.iterator]: () => IterableIterator<string>;
211
212
  readonly [Symbol.unscopables]: {
212
213
  readonly [x: number]: boolean;
@@ -233,11 +234,10 @@ declare const _default: {
233
234
  includes?: boolean;
234
235
  flatMap?: boolean;
235
236
  flat?: boolean;
237
+ at?: boolean;
236
238
  [Symbol.iterator]?: boolean;
237
239
  readonly [Symbol.unscopables]?: boolean;
238
- at?: boolean;
239
240
  };
240
- at: (index: number) => string;
241
241
  }> | Readonly<import("vue").ExtractPropTypes<{
242
242
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
243
243
  }>>, () => JSX.Element, {}, {}, {}, {} | {}>;
@@ -289,6 +289,7 @@ declare const _default: {
289
289
  includes: (searchElement: string, fromIndex?: number) => boolean;
290
290
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
291
291
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
292
+ at: (index: number) => string;
292
293
  [Symbol.iterator]: () => IterableIterator<string>;
293
294
  readonly [Symbol.unscopables]: {
294
295
  readonly [x: number]: boolean;
@@ -315,11 +316,10 @@ declare const _default: {
315
316
  includes?: boolean;
316
317
  flatMap?: boolean;
317
318
  flat?: boolean;
319
+ at?: boolean;
318
320
  [Symbol.iterator]?: boolean;
319
321
  readonly [Symbol.unscopables]?: boolean;
320
- at?: boolean;
321
322
  };
322
- at: (index: number) => string;
323
323
  }> | Readonly<import("vue").ExtractPropTypes<{
324
324
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
325
325
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {} | {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
@@ -368,6 +368,7 @@ declare const _default: {
368
368
  includes: (searchElement: string, fromIndex?: number) => boolean;
369
369
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
370
370
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
371
+ at: (index: number) => string;
371
372
  [Symbol.iterator]: () => IterableIterator<string>;
372
373
  readonly [Symbol.unscopables]: {
373
374
  readonly [x: number]: boolean;
@@ -394,11 +395,10 @@ declare const _default: {
394
395
  includes?: boolean;
395
396
  flatMap?: boolean;
396
397
  flat?: boolean;
398
+ at?: boolean;
397
399
  [Symbol.iterator]?: boolean;
398
400
  readonly [Symbol.unscopables]?: boolean;
399
- at?: boolean;
400
401
  };
401
- at: (index: number) => string;
402
402
  }>, never> | Omit<Readonly<{} & {
403
403
  readonly [x: string]: unknown;
404
404
  readonly [x: number]: unknown;
@@ -269,8 +269,8 @@ declare const _default: {
269
269
  } & {
270
270
  disabled?: boolean;
271
271
  value?: any;
272
- label?: string;
273
272
  class?: String | String[];
273
+ label?: string;
274
274
  "v-model"?: string[] | MaybeComputedRef<boolean>;
275
275
  "onUpdate:modelValue"?: (value: string[] | MaybeComputedRef<boolean>) => any;
276
276
  modelValue?: string[] | MaybeComputedRef<boolean>;
@@ -212,8 +212,8 @@ declare const _default: {
212
212
  colorSchemaType?: any;
213
213
  colors?: any;
214
214
  } & {
215
- label?: string;
216
215
  class?: String | String[];
216
+ label?: string;
217
217
  "v-model"?: string;
218
218
  "onUpdate:modelValue"?: (value: string) => any;
219
219
  modelValue?: string;
@@ -145,8 +145,8 @@ declare const _default: {
145
145
  };
146
146
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
147
147
  propsDefinition: Omit<Readonly<{} & {
148
- label?: string;
149
148
  class?: string;
149
+ label?: string;
150
150
  toned?: boolean;
151
151
  variant?: "default" | "prominent";
152
152
  labelSize?: "xs" | "s" | "m" | "l" | "xl" | TypographySizes;
@@ -160,8 +160,8 @@ declare const _default: {
160
160
  colorSchemaType?: any;
161
161
  colors?: any;
162
162
  } & {
163
- nav?: boolean;
164
163
  class?: String | String[];
164
+ nav?: boolean;
165
165
  toned?: boolean;
166
166
  variant?: "navigation" | "default" | "options";
167
167
  divider?: boolean;
@@ -118,8 +118,8 @@ declare const _default: {
118
118
  colors?: any;
119
119
  } & {
120
120
  value?: any;
121
- label?: string;
122
121
  class?: String | String[];
122
+ label?: string;
123
123
  "v-slots"?: {
124
124
  default?: import("../../DefineVueTypings").Slot<any[]>;
125
125
  } & ORadioSlots;
@@ -242,8 +242,8 @@ declare const _default: {
242
242
  colors?: any;
243
243
  } & {
244
244
  disabled?: boolean;
245
- label?: string;
246
245
  class?: String | String[];
246
+ label?: string;
247
247
  inline?: boolean;
248
248
  readonly?: boolean;
249
249
  "v-model"?: any;
@@ -384,8 +384,8 @@ declare const _default: {
384
384
  colorSchemaType?: any;
385
385
  colors?: any;
386
386
  } & {
387
- label?: string;
388
387
  class?: String | String[];
388
+ label?: string;
389
389
  direction?: "horizontal" | "vertical";
390
390
  "v-model"?: [number, number];
391
391
  "onUpdate:modelValue"?: (value: [number, number]) => any;
@@ -4233,11 +4233,11 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
4233
4233
  "onUpdate:focused"?: (value: boolean) => any;
4234
4234
  "onClick:button"?: (value: any) => any;
4235
4235
  "onUpdate:search"?: (value: string) => any;
4236
- }, "disabled" | "container" | "label" | "class" | "multiple" | "readonly" | "colorSchemaType" | "items" | "colors" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected"> & {
4236
+ }, "disabled" | "container" | "class" | "label" | "multiple" | "readonly" | "colorSchemaType" | "items" | "colors" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected"> & {
4237
4237
  "v-slots"?: {
4238
4238
  default?: import("vue").Slot;
4239
4239
  } & DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"append-item", () => VNodeChild>;
4240
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "disabled" | "container" | "label" | "class" | "multiple" | "readonly" | "colorSchemaType" | "items" | "colors" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected">) => {
4240
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "disabled" | "container" | "class" | "label" | "multiple" | "readonly" | "colorSchemaType" | "items" | "colors" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected">) => {
4241
4241
  $: import("vue").ComponentInternalInstance;
4242
4242
  $data: {};
4243
4243
  $props: {};
@@ -8503,7 +8503,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
8503
8503
  "onUpdate:focused"?: (value: boolean) => any;
8504
8504
  "onClick:button"?: (value: any) => any;
8505
8505
  "onUpdate:search"?: (value: string) => any;
8506
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "disabled" | "container" | "label" | "class" | "multiple" | "readonly" | "colorSchemaType" | "items" | "colors" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected">;
8506
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "disabled" | "container" | "class" | "label" | "multiple" | "readonly" | "colorSchemaType" | "items" | "colors" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected">;
8507
8507
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
8508
8508
  [key: string]: any;
8509
8509
  }>;
@@ -396,8 +396,8 @@ declare const _default: {
396
396
  colorSchemaType?: any;
397
397
  colors?: any;
398
398
  } & {
399
- label?: string;
400
399
  class?: String | String[];
400
+ label?: string;
401
401
  direction?: "horizontal" | "vertical";
402
402
  "v-model"?: any;
403
403
  "onUpdate:modelValue"?: (value: any) => any;
@@ -286,8 +286,8 @@ declare const _default: {
286
286
  colors?: any;
287
287
  } & {
288
288
  disabled?: boolean;
289
- label?: string;
290
289
  class?: String | String[];
290
+ label?: string;
291
291
  "v-model"?: boolean;
292
292
  "onUpdate:modelValue"?: (value: boolean) => any;
293
293
  modelValue?: boolean;
@@ -501,8 +501,8 @@ declare const _default: {
501
501
  } & {
502
502
  color?: ColorValue;
503
503
  disabled?: boolean;
504
- label?: string;
505
504
  class?: String | String[];
505
+ label?: string;
506
506
  errorMessages?: string | string[];
507
507
  rows?: number;
508
508
  placeholder?: string;
@@ -559,8 +559,8 @@ declare const _default: {
559
559
  type?: "number" | "text" | "password";
560
560
  color?: ColorValue;
561
561
  disabled?: boolean;
562
- label?: string;
563
562
  class?: String | String[];
563
+ label?: string;
564
564
  errorMessages?: string | string[];
565
565
  placeholder?: string;
566
566
  readonly?: boolean;
@@ -49,6 +49,7 @@ declare const _default: {
49
49
  includes: (searchElement: string, fromIndex?: number) => boolean;
50
50
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
51
51
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
52
+ at: (index: number) => string;
52
53
  [Symbol.iterator]: () => IterableIterator<string>;
53
54
  readonly [Symbol.unscopables]: {
54
55
  readonly [x: number]: boolean;
@@ -75,11 +76,10 @@ declare const _default: {
75
76
  includes?: boolean;
76
77
  flatMap?: boolean;
77
78
  flat?: boolean;
79
+ at?: boolean;
78
80
  [Symbol.iterator]?: boolean;
79
81
  readonly [Symbol.unscopables]?: boolean;
80
- at?: boolean;
81
82
  };
82
- at: (index: number) => string;
83
83
  }> | Readonly<import("vue").ExtractPropTypes<{
84
84
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
85
85
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{
@@ -127,6 +127,7 @@ declare const _default: {
127
127
  includes: (searchElement: string, fromIndex?: number) => boolean;
128
128
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
129
129
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
130
+ at: (index: number) => string;
130
131
  [Symbol.iterator]: () => IterableIterator<string>;
131
132
  readonly [Symbol.unscopables]: {
132
133
  readonly [x: number]: boolean;
@@ -153,11 +154,10 @@ declare const _default: {
153
154
  includes?: boolean;
154
155
  flatMap?: boolean;
155
156
  flat?: boolean;
157
+ at?: boolean;
156
158
  [Symbol.iterator]?: boolean;
157
159
  readonly [Symbol.unscopables]?: boolean;
158
- at?: boolean;
159
160
  };
160
- at: (index: number) => string;
161
161
  } | import("vue").ExtractPropTypes<{
162
162
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
163
163
  }>>, {} | {}, true, {}, {}, {
@@ -212,6 +212,7 @@ declare const _default: {
212
212
  includes: (searchElement: string, fromIndex?: number) => boolean;
213
213
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
214
214
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
215
+ at: (index: number) => string;
215
216
  [Symbol.iterator]: () => IterableIterator<string>;
216
217
  readonly [Symbol.unscopables]: {
217
218
  readonly [x: number]: boolean;
@@ -238,11 +239,10 @@ declare const _default: {
238
239
  includes?: boolean;
239
240
  flatMap?: boolean;
240
241
  flat?: boolean;
242
+ at?: boolean;
241
243
  [Symbol.iterator]?: boolean;
242
244
  readonly [Symbol.unscopables]?: boolean;
243
- at?: boolean;
244
245
  };
245
- at: (index: number) => string;
246
246
  }> | Readonly<import("vue").ExtractPropTypes<{
247
247
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
248
248
  }>>, () => JSX.Element, {}, {}, {}, {} | {}>;
@@ -294,6 +294,7 @@ declare const _default: {
294
294
  includes: (searchElement: string, fromIndex?: number) => boolean;
295
295
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
296
296
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
297
+ at: (index: number) => string;
297
298
  [Symbol.iterator]: () => IterableIterator<string>;
298
299
  readonly [Symbol.unscopables]: {
299
300
  readonly [x: number]: boolean;
@@ -320,11 +321,10 @@ declare const _default: {
320
321
  includes?: boolean;
321
322
  flatMap?: boolean;
322
323
  flat?: boolean;
324
+ at?: boolean;
323
325
  [Symbol.iterator]?: boolean;
324
326
  readonly [Symbol.unscopables]?: boolean;
325
- at?: boolean;
326
327
  };
327
- at: (index: number) => string;
328
328
  }> | Readonly<import("vue").ExtractPropTypes<{
329
329
  readonly [x: string]: import("vue").Prop<unknown, unknown>;
330
330
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {} | {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
@@ -373,6 +373,7 @@ declare const _default: {
373
373
  includes: (searchElement: string, fromIndex?: number) => boolean;
374
374
  flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
375
375
  flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
376
+ at: (index: number) => string;
376
377
  [Symbol.iterator]: () => IterableIterator<string>;
377
378
  readonly [Symbol.unscopables]: {
378
379
  readonly [x: number]: boolean;
@@ -399,11 +400,10 @@ declare const _default: {
399
400
  includes?: boolean;
400
401
  flatMap?: boolean;
401
402
  flat?: boolean;
403
+ at?: boolean;
402
404
  [Symbol.iterator]?: boolean;
403
405
  readonly [Symbol.unscopables]?: boolean;
404
- at?: boolean;
405
406
  };
406
- at: (index: number) => string;
407
407
  }>, never> | Omit<Readonly<{} & {
408
408
  readonly [x: string]: unknown;
409
409
  readonly [x: number]: unknown;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.128-dev",
4
+ "version": "8.0.129-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,7 +20,7 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.128-dev",
23
+ "@omnia/fx-models": "8.0.129-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",