@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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;