@omnia/fx 8.0.285-dev → 8.0.287-dev

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -7,3 +7,4 @@ export * from "./TypographyBlueprintStore";
7
7
  export * from "./ComponentBlueprintStore";
8
8
  export * from "./TemplateRegistrationStore";
9
9
  export * from "./FontStore";
10
+ export * from "./SpacingMigration";
@@ -1,4 +1,4 @@
1
- import { ChromeBlueprint, SpacingDefinition, Spacing, SpacingValue, setColorOpacity, ColorValue } from "@omnia/fx-models";
1
+ import { ChromeBlueprint, Spacing, SpacingValue, setColorOpacity, ColorValue, SpacingBlueprint } from "@omnia/fx-models";
2
2
  import { blueprintStyles, colorStyling, spacingStyling, generalStylex } from "./styles";
3
3
  import { useColorSchemaStore, useSpacingBlueprintStore } from "../store";
4
4
  import { typographyStylex, typographyStyling } from "./styles/Typography";
@@ -52,8 +52,8 @@ export declare function useThemeStyling(): {
52
52
  styling: typeof typographyStyling;
53
53
  };
54
54
  chrome: {
55
- chromeStylex: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingDefinition: SpacingDefinition) => any;
56
- chromeStyling: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingDefinition: SpacingDefinition) => any[];
55
+ chromeStylex: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint) => any;
56
+ chromeStyling: (blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint) => any[];
57
57
  };
58
58
  blueprints: {
59
59
  button: typeof blueprintStyles.getButtonBlueprintStyling;
@@ -73,16 +73,12 @@ export declare function useThemeStyling(): {
73
73
  tab: typeof blueprintStyles.getBlueprintTabStyling;
74
74
  tabs: typeof blueprintStyles.getBlueprintTabsStyling;
75
75
  spacing: {
76
- innerPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
77
- innerMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
78
- layoutPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
79
- layoutMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
80
- innerPadding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
81
- innerMargin: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
82
- layoutPadding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
83
- layoutMargin: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
84
- innerValue: (value: any, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => number;
85
- layoutValue: (value: any, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => number;
76
+ paddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
77
+ marginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
78
+ padding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
79
+ margin: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
80
+ value: (value: SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => number;
81
+ values: (value: Spacing, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Spacing;
86
82
  };
87
83
  };
88
84
  };
@@ -1,4 +1,4 @@
1
- import { FillDefinitionValue, BorderStylingDefinition, ButtonBlueprint, SpacingBlueprintTypes, Spacing, SpacingValue, BackgroundDefinition, TextBlueprint, IconBlueprint, TabsBlueprint, ChipBlueprint } from "@omnia/fx-models";
1
+ import { FillDefinitionValue, BorderStylingDefinition, ButtonBlueprint, Spacing, SpacingValue, BackgroundDefinition, TextBlueprint, IconBlueprint, TabsBlueprint, ChipBlueprint } from "@omnia/fx-models";
2
2
  import { NestedCSSProperties } from "typestyle/lib/types";
3
3
  import { useColorSchemaStore, useSpacingBlueprintStore, useTypographyBlueprintStore } from "../../store";
4
4
  import { StylexType } from "internal/fx/ux/Styles.stylex";
@@ -11,7 +11,7 @@ export declare namespace blueprintStylex {
11
11
  function getIconBlueprintStylex(bluePrint: IconBlueprint, colors: ReturnType<typeof useColorSchemaStore>, duoTone: boolean, nested?: boolean): Readonly<StylexType>;
12
12
  /**Button styling */
13
13
  function getButtonBlueprintStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): Readonly<StylexType>;
14
- function getBlueprintSpacingValue(value: any, type: SpacingBlueprintTypes, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
14
+ function getBlueprintSpacingValue(value: any, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
15
15
  }
16
16
  export declare namespace blueprintStyles {
17
17
  /**Border styling */
@@ -22,9 +22,10 @@ export declare namespace blueprintStyles {
22
22
  function getBlueprintFillObject(definition: FillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): NestedCSSProperties;
23
23
  function getBlueprintFillStyling(definition: FillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): string;
24
24
  /**Spacing styling */
25
- function getBlueprintSpacingValue(value: any, type: SpacingBlueprintTypes, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
26
- function getBlueprintSpacingStylingx(value: Spacing | SpacingValue, type: SpacingBlueprintTypes, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Readonly<StylexType>;
27
- function getBlueprintSpacingStyling(value: Spacing | SpacingValue, type: SpacingBlueprintTypes, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): string;
25
+ function getBlueprintSpacingValues(value: Spacing, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Spacing;
26
+ function getBlueprintSpacingValue(value: SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
27
+ function getBlueprintSpacingStylingx(value: Spacing | SpacingValue, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Readonly<StylexType>;
28
+ function getBlueprintSpacingStyling(value: Spacing | SpacingValue, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): string;
28
29
  /**Button styling */
29
30
  function getButtonBlueprintStyling(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): string;
30
31
  /**Tab styling */
@@ -1,9 +1,9 @@
1
- import { ChromeBlueprint, SpacingDefinition } from "@omnia/fx-models";
1
+ import { ChromeBlueprint, SpacingBlueprint } from "@omnia/fx-models";
2
2
  import { useColorSchemaStore } from "../../store";
3
3
  export declare const chromeStyles: {
4
4
  getChromeStyling: typeof getChromeStyling;
5
5
  getChromeStylingx: typeof getChromeStylingx;
6
6
  };
7
- declare function getChromeStylingx(blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingDefinition: SpacingDefinition): any;
8
- declare function getChromeStyling(blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingDefinition: SpacingDefinition): any[];
7
+ declare function getChromeStylingx(blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint): any;
8
+ declare function getChromeStyling(blueprint: ChromeBlueprint, colors: ReturnType<typeof useColorSchemaStore>, spacingBlueprint: SpacingBlueprint): any[];
9
9
  export {};
@@ -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;
@@ -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;