@khanacademy/wonder-blocks-tokens 2.0.0 → 2.0.1
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.
- package/CHANGELOG.md +6 -0
- package/package.json +18 -18
- package/src/index.ts +0 -30
- package/src/tokens/border.ts +0 -16
- package/src/tokens/color.ts +0 -98
- package/src/tokens/font.ts +0 -30
- package/src/tokens/semantic-color.ts +0 -104
- package/src/tokens/spacing.ts +0 -17
- package/src/util/__tests__/__snapshots__/utils.test.ts.snap +0 -41
- package/src/util/__tests__/utils.test.ts +0 -192
- package/src/util/utils.ts +0 -98
- package/tsconfig-build.json +0 -11
- package/tsconfig-build.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
2
|
+
"name": "@khanacademy/wonder-blocks-tokens",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Core primitive design tokens for Web Wonder Blocks",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/es/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
+
},
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@khanacademy/wb-dev-build-settings": "^1.0.1"
|
|
19
|
+
}
|
|
20
20
|
}
|
package/src/index.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
// primitive tokens
|
|
2
|
-
import {border} from "./tokens/border";
|
|
3
|
-
import {color} from "./tokens/color";
|
|
4
|
-
import {font} from "./tokens/font";
|
|
5
|
-
import {spacing} from "./tokens/spacing";
|
|
6
|
-
|
|
7
|
-
// semantic tokens
|
|
8
|
-
import {semanticColor} from "./tokens/semantic-color";
|
|
9
|
-
|
|
10
|
-
// utils
|
|
11
|
-
import {mix, fade} from "./util/utils";
|
|
12
|
-
|
|
13
|
-
export {
|
|
14
|
-
/**
|
|
15
|
-
* Primitive tokens for the Wonder Blocks design system.
|
|
16
|
-
*/
|
|
17
|
-
border,
|
|
18
|
-
color,
|
|
19
|
-
font,
|
|
20
|
-
spacing,
|
|
21
|
-
/**
|
|
22
|
-
* Semantic tokens.
|
|
23
|
-
*/
|
|
24
|
-
semanticColor,
|
|
25
|
-
/**
|
|
26
|
-
* Utility functions for working with colors.
|
|
27
|
-
*/
|
|
28
|
-
mix,
|
|
29
|
-
fade,
|
|
30
|
-
};
|
package/src/tokens/border.ts
DELETED
package/src/tokens/color.ts
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import {fade, mix} from "../util/utils";
|
|
2
|
-
|
|
3
|
-
const offBlack = "#21242c";
|
|
4
|
-
const white = "#ffffff";
|
|
5
|
-
const eggplant = "#5f1e5c";
|
|
6
|
-
|
|
7
|
-
type ColorType = {
|
|
8
|
-
// Product
|
|
9
|
-
blue: string;
|
|
10
|
-
purple: string;
|
|
11
|
-
green: string;
|
|
12
|
-
gold: string;
|
|
13
|
-
red: string;
|
|
14
|
-
// Neutral
|
|
15
|
-
offBlack: string;
|
|
16
|
-
offBlack64: string;
|
|
17
|
-
offBlack50: string;
|
|
18
|
-
offBlack32: string;
|
|
19
|
-
offBlack16: string;
|
|
20
|
-
offBlack8: string;
|
|
21
|
-
offWhite: string;
|
|
22
|
-
white: string;
|
|
23
|
-
white64: string;
|
|
24
|
-
white50: string;
|
|
25
|
-
white32: string;
|
|
26
|
-
// Brand
|
|
27
|
-
darkBlue: string;
|
|
28
|
-
teal: string;
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
const baseColors: ColorType = {
|
|
32
|
-
// Product
|
|
33
|
-
blue: "#1865f2",
|
|
34
|
-
purple: "#9059ff",
|
|
35
|
-
green: "#00a60e",
|
|
36
|
-
gold: "#ffb100",
|
|
37
|
-
red: "#d92916",
|
|
38
|
-
|
|
39
|
-
// Neutral
|
|
40
|
-
offBlack,
|
|
41
|
-
offBlack64: fade(offBlack, 0.64),
|
|
42
|
-
offBlack50: fade(offBlack, 0.5),
|
|
43
|
-
offBlack32: fade(offBlack, 0.32),
|
|
44
|
-
offBlack16: fade(offBlack, 0.16),
|
|
45
|
-
offBlack8: fade(offBlack, 0.08),
|
|
46
|
-
|
|
47
|
-
offWhite: "#f7f8fa",
|
|
48
|
-
white,
|
|
49
|
-
white64: fade(white, 0.64),
|
|
50
|
-
white50: fade(white, 0.5),
|
|
51
|
-
white32: fade(white, 0.32),
|
|
52
|
-
|
|
53
|
-
// Brand
|
|
54
|
-
darkBlue: "#0b2149",
|
|
55
|
-
teal: "#14bf96",
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
const fadedColorWithWhite = (color: string, alpha: number) =>
|
|
59
|
-
mix(fade(color, alpha), baseColors.white);
|
|
60
|
-
|
|
61
|
-
export const color = {
|
|
62
|
-
// Wonder Blocks base colors
|
|
63
|
-
...baseColors,
|
|
64
|
-
// Additional colors
|
|
65
|
-
// Blue shades
|
|
66
|
-
activeBlue: mix(baseColors.offBlack32, baseColors.blue),
|
|
67
|
-
fadedBlue: fadedColorWithWhite(baseColors.blue, 0.32),
|
|
68
|
-
fadedBlue24: fadedColorWithWhite(baseColors.blue, 0.24),
|
|
69
|
-
fadedBlue16: fadedColorWithWhite(baseColors.blue, 0.16),
|
|
70
|
-
fadedBlue8: fadedColorWithWhite(baseColors.blue, 0.08),
|
|
71
|
-
// Red shades
|
|
72
|
-
activeRed: mix(baseColors.offBlack32, baseColors.red),
|
|
73
|
-
fadedRed: fadedColorWithWhite(baseColors.red, 0.32),
|
|
74
|
-
fadedRed24: fadedColorWithWhite(baseColors.red, 0.24),
|
|
75
|
-
fadedRed16: fadedColorWithWhite(baseColors.red, 0.16),
|
|
76
|
-
fadedRed8: fadedColorWithWhite(baseColors.red, 0.08),
|
|
77
|
-
// Green shades
|
|
78
|
-
fadedGreen24: fadedColorWithWhite(baseColors.green, 0.24),
|
|
79
|
-
fadedGreen16: fadedColorWithWhite(baseColors.green, 0.16),
|
|
80
|
-
fadedGreen8: fadedColorWithWhite(baseColors.green, 0.08),
|
|
81
|
-
// Gold shades
|
|
82
|
-
fadedGold24: fadedColorWithWhite(baseColors.gold, 0.24),
|
|
83
|
-
fadedGold16: fadedColorWithWhite(baseColors.gold, 0.16),
|
|
84
|
-
fadedGold8: fadedColorWithWhite(baseColors.gold, 0.08),
|
|
85
|
-
// Purple shades
|
|
86
|
-
fadedPurple24: fadedColorWithWhite(baseColors.purple, 0.24),
|
|
87
|
-
fadedPurple16: fadedColorWithWhite(baseColors.purple, 0.16),
|
|
88
|
-
fadedPurple8: fadedColorWithWhite(baseColors.purple, 0.08),
|
|
89
|
-
// Khanmigo
|
|
90
|
-
eggplant: eggplant,
|
|
91
|
-
fadedEggplant8: fadedColorWithWhite(eggplant, 0.08),
|
|
92
|
-
// Faded versions of offBlack
|
|
93
|
-
fadedOffBlack64: fadedColorWithWhite(offBlack, 0.64),
|
|
94
|
-
fadedOffBlack50: fadedColorWithWhite(offBlack, 0.5),
|
|
95
|
-
fadedOffBlack32: fadedColorWithWhite(offBlack, 0.32),
|
|
96
|
-
fadedOffBlack16: fadedColorWithWhite(offBlack, 0.16),
|
|
97
|
-
fadedOffBlack8: fadedColorWithWhite(offBlack, 0.08),
|
|
98
|
-
};
|
package/src/tokens/font.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export const font = {
|
|
2
|
-
family: {
|
|
3
|
-
sans: 'Lato, "Noto Sans", sans-serif',
|
|
4
|
-
serif: '"Noto Serif", serif',
|
|
5
|
-
mono: "Inconsolata, monospace",
|
|
6
|
-
},
|
|
7
|
-
size: {
|
|
8
|
-
xxxLarge: 36,
|
|
9
|
-
xxLarge: 28,
|
|
10
|
-
xLarge: 24,
|
|
11
|
-
large: 20,
|
|
12
|
-
medium: 16,
|
|
13
|
-
small: 14,
|
|
14
|
-
xSmall: 12,
|
|
15
|
-
},
|
|
16
|
-
lineHeight: {
|
|
17
|
-
xxxLarge: 40,
|
|
18
|
-
xxLarge: 32,
|
|
19
|
-
xLarge: 28,
|
|
20
|
-
large: 24,
|
|
21
|
-
medium: 20,
|
|
22
|
-
small: 18,
|
|
23
|
-
xSmall: 16,
|
|
24
|
-
},
|
|
25
|
-
weight: {
|
|
26
|
-
light: 300,
|
|
27
|
-
regular: 400,
|
|
28
|
-
bold: 700,
|
|
29
|
-
},
|
|
30
|
-
};
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import {color} from "./color";
|
|
2
|
-
|
|
3
|
-
export const semanticColor = {
|
|
4
|
-
/**
|
|
5
|
-
* For buttons, links, and controls to communicate the presence and meaning
|
|
6
|
-
* of interaction.
|
|
7
|
-
*/
|
|
8
|
-
action: {
|
|
9
|
-
primary: {
|
|
10
|
-
default: color.blue,
|
|
11
|
-
active: color.activeBlue,
|
|
12
|
-
},
|
|
13
|
-
destructive: {
|
|
14
|
-
default: color.red,
|
|
15
|
-
active: color.activeRed,
|
|
16
|
-
},
|
|
17
|
-
disabled: {
|
|
18
|
-
default: color.fadedOffBlack32,
|
|
19
|
-
secondary: color.offWhite,
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
/**
|
|
23
|
-
* For labels, icons, filters, alerts, and other elements where color can
|
|
24
|
-
* add meaning to the state of the system or an item in the system.
|
|
25
|
-
*/
|
|
26
|
-
status: {
|
|
27
|
-
critical: {
|
|
28
|
-
background: color.fadedRed8,
|
|
29
|
-
foreground: color.red,
|
|
30
|
-
},
|
|
31
|
-
warning: {
|
|
32
|
-
background: color.fadedGold8,
|
|
33
|
-
foreground: color.gold,
|
|
34
|
-
},
|
|
35
|
-
success: {
|
|
36
|
-
background: color.fadedGreen8,
|
|
37
|
-
foreground: color.green,
|
|
38
|
-
},
|
|
39
|
-
notice: {
|
|
40
|
-
background: color.fadedBlue8,
|
|
41
|
-
foreground: color.blue,
|
|
42
|
-
},
|
|
43
|
-
neutral: {
|
|
44
|
-
background: color.fadedOffBlack8,
|
|
45
|
-
foreground: color.offBlack,
|
|
46
|
-
},
|
|
47
|
-
},
|
|
48
|
-
/**
|
|
49
|
-
* For background colors. Overlays act as supplementary surfaces that mask
|
|
50
|
-
* areas of the UI.
|
|
51
|
-
*/
|
|
52
|
-
surface: {
|
|
53
|
-
primary: color.white,
|
|
54
|
-
secondary: color.offWhite,
|
|
55
|
-
emphasis: color.blue,
|
|
56
|
-
inverse: color.darkBlue,
|
|
57
|
-
overlay: color.offBlack64,
|
|
58
|
-
},
|
|
59
|
-
/**
|
|
60
|
-
* For all type to ensure contrast for legibility. Inverse text applies for
|
|
61
|
-
* dark backgrounds in light mode.
|
|
62
|
-
*/
|
|
63
|
-
text: {
|
|
64
|
-
primary: color.offBlack,
|
|
65
|
-
secondary: color.fadedOffBlack64,
|
|
66
|
-
disabled: color.fadedOffBlack32,
|
|
67
|
-
inverse: color.white,
|
|
68
|
-
},
|
|
69
|
-
/**
|
|
70
|
-
* Borders define structure for elements. Generally borders for component
|
|
71
|
-
* elements would use -Primary, rows and layout elements use -Subtle and
|
|
72
|
-
* -Strong for when 3:1 contrast is a priority (ex. form elements)
|
|
73
|
-
*/
|
|
74
|
-
border: {
|
|
75
|
-
primary: color.fadedOffBlack16,
|
|
76
|
-
subtle: color.fadedOffBlack8,
|
|
77
|
-
strong: color.fadedOffBlack50,
|
|
78
|
-
inverse: color.white,
|
|
79
|
-
},
|
|
80
|
-
/**
|
|
81
|
-
* Default icon colors that change in context (like actions).
|
|
82
|
-
*/
|
|
83
|
-
icon: {
|
|
84
|
-
primary: color.fadedOffBlack64,
|
|
85
|
-
secondary: color.offBlack,
|
|
86
|
-
inverse: color.white,
|
|
87
|
-
action: color.blue,
|
|
88
|
-
destructive: color.red,
|
|
89
|
-
},
|
|
90
|
-
/**
|
|
91
|
-
* Colors to be used exclusively for Khanmigo or to communicate a
|
|
92
|
-
* relationship to it.
|
|
93
|
-
*/
|
|
94
|
-
khanmigo: {
|
|
95
|
-
primary: color.eggplant,
|
|
96
|
-
secondary: color.fadedEggplant8,
|
|
97
|
-
},
|
|
98
|
-
/**
|
|
99
|
-
* Standalone colors used only for communicating mastery.
|
|
100
|
-
*/
|
|
101
|
-
mastery: {
|
|
102
|
-
primary: color.purple,
|
|
103
|
-
},
|
|
104
|
-
};
|
package/src/tokens/spacing.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export const spacing = {
|
|
2
|
-
// Named
|
|
3
|
-
xxxxSmall_2: 2,
|
|
4
|
-
xxxSmall_4: 4,
|
|
5
|
-
xxSmall_6: 6,
|
|
6
|
-
xSmall_8: 8,
|
|
7
|
-
small_12: 12,
|
|
8
|
-
medium_16: 16,
|
|
9
|
-
large_24: 24,
|
|
10
|
-
xLarge_32: 32,
|
|
11
|
-
xxLarge_48: 48,
|
|
12
|
-
xxxLarge_64: 64,
|
|
13
|
-
} as const;
|
|
14
|
-
|
|
15
|
-
export type VALID_PRIMARY_SPACING = 4 | 8 | 16 | 32 | 64;
|
|
16
|
-
export type VALID_SECONDARY_SPACING = 6 | 12 | 24 | 48;
|
|
17
|
-
export type VALID_SPACING = VALID_PRIMARY_SPACING | VALID_SECONDARY_SPACING;
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
-
|
|
3
|
-
exports[`fade color is not a string, throws 1`] = `"Failed to parse color: null"`;
|
|
4
|
-
|
|
5
|
-
exports[`fade color is not a valid string format, throws 1`] = `"Failed to parse color: #NOTVALID"`;
|
|
6
|
-
|
|
7
|
-
exports[`fade color is not a valid string format, throws 2`] = `"Failed to parse color: #12345"`;
|
|
8
|
-
|
|
9
|
-
exports[`fade color is not a valid string format, throws 3`] = `"Failed to parse color: #12"`;
|
|
10
|
-
|
|
11
|
-
exports[`fade color is not a valid string format, throws 4`] = `"Failed to parse color: #ABCDEFG"`;
|
|
12
|
-
|
|
13
|
-
exports[`fade color is not a valid string format, throws 5`] = `"Failed to parse color: "`;
|
|
14
|
-
|
|
15
|
-
exports[`fade percentage is greater than 1, throws 1`] = `"Percentage must be between 0 and 1"`;
|
|
16
|
-
|
|
17
|
-
exports[`fade percentage is negative, throws 1`] = `"Percentage must be between 0 and 1"`;
|
|
18
|
-
|
|
19
|
-
exports[`mix background is not a string, throws 1`] = `"Failed to parse color: null"`;
|
|
20
|
-
|
|
21
|
-
exports[`mix background is not a valid string format, throws 1`] = `"Failed to parse color: #NOTVALID"`;
|
|
22
|
-
|
|
23
|
-
exports[`mix background is not a valid string format, throws 2`] = `"Failed to parse color: #12345"`;
|
|
24
|
-
|
|
25
|
-
exports[`mix background is not a valid string format, throws 3`] = `"Failed to parse color: #12"`;
|
|
26
|
-
|
|
27
|
-
exports[`mix background is not a valid string format, throws 4`] = `"Failed to parse color: #ABCDEFG"`;
|
|
28
|
-
|
|
29
|
-
exports[`mix background is not a valid string format, throws 5`] = `"Failed to parse color: "`;
|
|
30
|
-
|
|
31
|
-
exports[`mix color is not a string, throws 1`] = `"Failed to parse color: null"`;
|
|
32
|
-
|
|
33
|
-
exports[`mix color is not a valid string format, throws 1`] = `"Failed to parse color: #NOTVALID"`;
|
|
34
|
-
|
|
35
|
-
exports[`mix color is not a valid string format, throws 2`] = `"Failed to parse color: #12345"`;
|
|
36
|
-
|
|
37
|
-
exports[`mix color is not a valid string format, throws 3`] = `"Failed to parse color: #12"`;
|
|
38
|
-
|
|
39
|
-
exports[`mix color is not a valid string format, throws 4`] = `"Failed to parse color: #ABCDEFG"`;
|
|
40
|
-
|
|
41
|
-
exports[`mix color is not a valid string format, throws 5`] = `"Failed to parse color: "`;
|
|
@@ -1,192 +0,0 @@
|
|
|
1
|
-
import {fade, mix} from "../utils";
|
|
2
|
-
|
|
3
|
-
const INVALID_COLORS = ["#NOTVALID", "#12345", "#12", "#ABCDEFG", ""];
|
|
4
|
-
|
|
5
|
-
describe("mix", () => {
|
|
6
|
-
test("color is not a string, throws", () => {
|
|
7
|
-
// Arrange
|
|
8
|
-
// @ts-expect-error [FEI-5019] - TS2352 - Conversion of type 'null' to type 'string' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
|
|
9
|
-
const color = null as string;
|
|
10
|
-
|
|
11
|
-
// Act
|
|
12
|
-
const underTest = () => mix(color, "#FFF");
|
|
13
|
-
|
|
14
|
-
// Assert
|
|
15
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
test("background is not a string, throws", () => {
|
|
19
|
-
// Arrange
|
|
20
|
-
// @ts-expect-error [FEI-5019] - TS2352 - Conversion of type 'null' to type 'string' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
|
|
21
|
-
const background = null as string;
|
|
22
|
-
|
|
23
|
-
// Act
|
|
24
|
-
const underTest = () => mix("#FFF", background);
|
|
25
|
-
|
|
26
|
-
// Assert
|
|
27
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
test("color is not a valid string format, throws", () => {
|
|
31
|
-
// Arrange
|
|
32
|
-
const testpoints = INVALID_COLORS;
|
|
33
|
-
|
|
34
|
-
// Act
|
|
35
|
-
for (const testpoint of testpoints) {
|
|
36
|
-
const underTest = () => mix(testpoint, "#FFF");
|
|
37
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
38
|
-
}
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
test("background is not a valid string format, throws", () => {
|
|
42
|
-
// Arrange
|
|
43
|
-
const testpoints = INVALID_COLORS;
|
|
44
|
-
|
|
45
|
-
// Act
|
|
46
|
-
for (const testpoint of testpoints) {
|
|
47
|
-
const underTest = () => mix("#FFF", testpoint);
|
|
48
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
49
|
-
}
|
|
50
|
-
});
|
|
51
|
-
|
|
52
|
-
test("color has no alpha, returns color with background alpha", () => {
|
|
53
|
-
// Arrange
|
|
54
|
-
const testpoints = [
|
|
55
|
-
["#000", "#abc", "#000000"],
|
|
56
|
-
["#FFFFFF", "rgba(10,20,30,0.5)", "rgba(255,255,255,0.50)"],
|
|
57
|
-
["rgb(200,200,190)", "rgba(0,0,0,0.23)", "rgba(200,200,190,0.23)"],
|
|
58
|
-
["rgba(0,0,0,1)", "#1D3baa", "#000000"],
|
|
59
|
-
["#ABC", "rgba(0,0,0,1)", "#aabbcc"],
|
|
60
|
-
];
|
|
61
|
-
|
|
62
|
-
for (const [color, background, expectation] of testpoints) {
|
|
63
|
-
// Act
|
|
64
|
-
const result = mix(color, background);
|
|
65
|
-
|
|
66
|
-
// Assert
|
|
67
|
-
expect(result).toBe(expectation);
|
|
68
|
-
}
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
test("color has alpha, returns mix with background alpha", () => {
|
|
72
|
-
// Arrange
|
|
73
|
-
const testpoints = [
|
|
74
|
-
["rgba(100,100,100,0.2)", "#FFF", "#e0e0e0"],
|
|
75
|
-
["rgba(100,100,100,0.2)", "rgba(0,0,0,0.5)", "rgba(20,20,20,0.50)"],
|
|
76
|
-
["rgba(0,0,0,0.25)", "#fFfFfF", "#bfbfbf"],
|
|
77
|
-
["rgba(0,0,0,0.25)", "rgb(255,255,0)", "#bfbf00"],
|
|
78
|
-
["rgba(100,200,100,0.25)", "rgb(255,255,0)", "#d8f119"],
|
|
79
|
-
["rgba(33,36,44,0.32)", "#00a60e", "#0b7c18"],
|
|
80
|
-
];
|
|
81
|
-
|
|
82
|
-
for (const [color, background, expectation] of testpoints) {
|
|
83
|
-
// Act
|
|
84
|
-
const result = mix(color, background);
|
|
85
|
-
|
|
86
|
-
// Assert
|
|
87
|
-
expect(result).toBe(expectation);
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
});
|
|
91
|
-
|
|
92
|
-
describe("fade", () => {
|
|
93
|
-
test("color is not a string, throws", () => {
|
|
94
|
-
// Arrange
|
|
95
|
-
// @ts-expect-error [FEI-5019] - TS2352 - Conversion of type 'null' to type 'string' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
|
|
96
|
-
const color = null as string;
|
|
97
|
-
|
|
98
|
-
// Act
|
|
99
|
-
const underTest = () => fade(color, 0.2);
|
|
100
|
-
|
|
101
|
-
// Assert
|
|
102
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
test("color is not a valid string format, throws", () => {
|
|
106
|
-
// Arrange
|
|
107
|
-
const testpoints = INVALID_COLORS;
|
|
108
|
-
|
|
109
|
-
// Act
|
|
110
|
-
for (const testpoint of testpoints) {
|
|
111
|
-
const underTest = () => fade(testpoint, 0.5);
|
|
112
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
113
|
-
}
|
|
114
|
-
});
|
|
115
|
-
|
|
116
|
-
test("percentage is negative, throws", () => {
|
|
117
|
-
// Arrange
|
|
118
|
-
const percentage = -1;
|
|
119
|
-
|
|
120
|
-
// Act
|
|
121
|
-
const underTest = () => fade("#FFFFFF", percentage);
|
|
122
|
-
|
|
123
|
-
// Assert
|
|
124
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
125
|
-
});
|
|
126
|
-
|
|
127
|
-
test("percentage is greater than 1, throws", () => {
|
|
128
|
-
// Arrange
|
|
129
|
-
const percentage = 1.1;
|
|
130
|
-
|
|
131
|
-
// Act
|
|
132
|
-
const underTest = () => fade("#FFFFFF", percentage);
|
|
133
|
-
|
|
134
|
-
// Assert
|
|
135
|
-
expect(underTest).toThrowErrorMatchingSnapshot();
|
|
136
|
-
});
|
|
137
|
-
|
|
138
|
-
test("3 digit # color, returns faded color", () => {
|
|
139
|
-
// Arrange
|
|
140
|
-
const color = "#ABC";
|
|
141
|
-
|
|
142
|
-
// Act
|
|
143
|
-
const result = fade(color, 0.5);
|
|
144
|
-
|
|
145
|
-
// Assert
|
|
146
|
-
expect(result).toBe("rgba(170,187,204,0.50)");
|
|
147
|
-
});
|
|
148
|
-
|
|
149
|
-
test("6 digit # color, returns faded color", () => {
|
|
150
|
-
// Arrange
|
|
151
|
-
const color = "#AABBCC";
|
|
152
|
-
|
|
153
|
-
// Act
|
|
154
|
-
const result = fade(color, 0.5);
|
|
155
|
-
|
|
156
|
-
// Assert
|
|
157
|
-
expect(result).toBe("rgba(170,187,204,0.50)");
|
|
158
|
-
});
|
|
159
|
-
|
|
160
|
-
test("rgb color, returns faded color", () => {
|
|
161
|
-
// Arrange
|
|
162
|
-
const color = "rgb(100,200,0)";
|
|
163
|
-
|
|
164
|
-
// Act
|
|
165
|
-
const result = fade(color, 0.5);
|
|
166
|
-
|
|
167
|
-
// Assert
|
|
168
|
-
expect(result).toBe("rgba(100,200,0,0.50)");
|
|
169
|
-
});
|
|
170
|
-
|
|
171
|
-
test("rgba color without 100% alpha, returns faded color", () => {
|
|
172
|
-
// Arrange
|
|
173
|
-
const color = "rgba(100,200,0, 1)";
|
|
174
|
-
|
|
175
|
-
// Act
|
|
176
|
-
const result = fade(color, 0.5);
|
|
177
|
-
|
|
178
|
-
// Assert
|
|
179
|
-
expect(result).toBe("rgba(100,200,0,0.50)");
|
|
180
|
-
});
|
|
181
|
-
|
|
182
|
-
test("rgba color with less than 100% alpha, returns faded color", () => {
|
|
183
|
-
// Arrange
|
|
184
|
-
const color = "rgba(100,200,0, 0.6)";
|
|
185
|
-
|
|
186
|
-
// Act
|
|
187
|
-
const result = fade(color, 0.5);
|
|
188
|
-
|
|
189
|
-
// Assert
|
|
190
|
-
expect(result).toBe("rgba(100,200,0,0.30)");
|
|
191
|
-
});
|
|
192
|
-
});
|
package/src/util/utils.ts
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* A color manipulation library useful for dynamically
|
|
3
|
-
* mixing colors together.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
const color6Regexp = /^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i;
|
|
7
|
-
const color3Regexp = /^#([0-9a-f])([0-9a-f])([0-9a-f])$/i;
|
|
8
|
-
const rgbaRegexp = /^rgba?\(\s*(\d+),\s*(\d+),\s*(\d+)(?:,\s*([\d.]+))?\s*\)$/i;
|
|
9
|
-
|
|
10
|
-
type Color = {
|
|
11
|
-
r: number;
|
|
12
|
-
g: number;
|
|
13
|
-
b: number;
|
|
14
|
-
a: number;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
// Parse a color in #abcdef, rgb(...), or rgba(...) form into an object
|
|
18
|
-
// with r,g,b,a keys.
|
|
19
|
-
const parse = (color: string): Color => {
|
|
20
|
-
if (typeof color !== "string") {
|
|
21
|
-
throw new Error(`Failed to parse color: ${color}`);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
const color3Match = color.match(color3Regexp);
|
|
25
|
-
if (color3Match) {
|
|
26
|
-
return {
|
|
27
|
-
r: parseInt(`${color3Match[1]}${color3Match[1]}`, 16),
|
|
28
|
-
g: parseInt(`${color3Match[2]}${color3Match[2]}`, 16),
|
|
29
|
-
b: parseInt(`${color3Match[3]}${color3Match[3]}`, 16),
|
|
30
|
-
a: 1,
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
const color6Match = color.match(color6Regexp);
|
|
35
|
-
if (color6Match) {
|
|
36
|
-
return {
|
|
37
|
-
r: parseInt(color6Match[1], 16),
|
|
38
|
-
g: parseInt(color6Match[2], 16),
|
|
39
|
-
b: parseInt(color6Match[3], 16),
|
|
40
|
-
a: 1,
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
const rgbaMatch = color.match(rgbaRegexp);
|
|
45
|
-
if (rgbaMatch) {
|
|
46
|
-
return {
|
|
47
|
-
r: parseFloat(rgbaMatch[1]),
|
|
48
|
-
g: parseFloat(rgbaMatch[2]),
|
|
49
|
-
b: parseFloat(rgbaMatch[3]),
|
|
50
|
-
a: rgbaMatch[4] ? parseFloat(rgbaMatch[4]) : 1,
|
|
51
|
-
};
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
throw new Error(`Failed to parse color: ${color}`);
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
// Stringify the color in an `rgba()` or `#abcdef` format.
|
|
58
|
-
const format = (color: Color): string => {
|
|
59
|
-
const r = Math.round(color.r);
|
|
60
|
-
const g = Math.round(color.g);
|
|
61
|
-
const b = Math.round(color.b);
|
|
62
|
-
|
|
63
|
-
if (color.a === 1) {
|
|
64
|
-
const _s = (c: number) => {
|
|
65
|
-
const asString = c.toString(16);
|
|
66
|
-
return asString.length === 1 ? `0${asString}` : asString;
|
|
67
|
-
};
|
|
68
|
-
return `#${_s(r)}${_s(g)}${_s(b)}`;
|
|
69
|
-
} else {
|
|
70
|
-
return `rgba(${r},${g},${b},${color.a.toFixed(2)})`;
|
|
71
|
-
}
|
|
72
|
-
};
|
|
73
|
-
|
|
74
|
-
// Adjust the alpha value of a color.
|
|
75
|
-
export const fade = (color: string, percentage: number): string => {
|
|
76
|
-
if (percentage < 0 || percentage > 1) {
|
|
77
|
-
throw new Error("Percentage must be between 0 and 1");
|
|
78
|
-
}
|
|
79
|
-
const components = parse(color);
|
|
80
|
-
return format({
|
|
81
|
-
...components,
|
|
82
|
-
a: components.a * percentage,
|
|
83
|
-
});
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
// Mix a color into a background color, using the alpha channel of the base
|
|
87
|
-
// color to determine the linear blend.
|
|
88
|
-
export const mix = (color: string, background: string): string => {
|
|
89
|
-
const colorObj = parse(color);
|
|
90
|
-
const bgObj = parse(background);
|
|
91
|
-
|
|
92
|
-
return format({
|
|
93
|
-
r: colorObj.r * colorObj.a + bgObj.r * (1 - colorObj.a),
|
|
94
|
-
g: colorObj.g * colorObj.a + bgObj.g * (1 - colorObj.a),
|
|
95
|
-
b: colorObj.b * colorObj.a + bgObj.b * (1 - colorObj.a),
|
|
96
|
-
a: bgObj.a,
|
|
97
|
-
});
|
|
98
|
-
};
|
package/tsconfig-build.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.d.ts","./src/tokens/border.ts","./src/util/utils.ts","./src/tokens/color.ts","./src/tokens/font.ts","./src/tokens/spacing.ts","./src/tokens/semantic-color.ts","./src/index.ts","./src/util/__tests__/utils.test.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","./types/aphrodite.d.ts","./types/assets.d.ts","./types/matchers.d.ts","./types/utility.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/concat-stream/index.d.ts","../../node_modules/@types/cross-spawn/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/doctrine/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/escodegen/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/mime/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/find-cache-dir/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/is-ci/node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/is-empty/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/jest-axe/node_modules/axe-core/axe.d.ts","../../node_modules/@types/jest-axe/index.d.ts","../../node_modules/ast-types/types.d.ts","../../node_modules/ast-types/gen/namedTypes.d.ts","../../node_modules/ast-types/gen/kinds.d.ts","../../node_modules/ast-types/gen/builders.d.ts","../../node_modules/ast-types/lib/types.d.ts","../../node_modules/ast-types/lib/path.d.ts","../../node_modules/ast-types/lib/scope.d.ts","../../node_modules/ast-types/lib/node-path.d.ts","../../node_modules/ast-types/lib/path-visitor.d.ts","../../node_modules/ast-types/gen/visitor.d.ts","../../node_modules/ast-types/main.d.ts","../../node_modules/@types/jscodeshift/node_modules/recast/lib/options.d.ts","../../node_modules/@types/jscodeshift/node_modules/recast/lib/parser.d.ts","../../node_modules/@types/jscodeshift/node_modules/recast/lib/printer.d.ts","../../node_modules/@types/jscodeshift/node_modules/recast/main.d.ts","../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts","../../node_modules/@types/jscodeshift/src/collections/Node.d.ts","../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts","../../node_modules/@types/jscodeshift/src/Collection.d.ts","../../node_modules/@types/jscodeshift/src/template.d.ts","../../node_modules/@types/jscodeshift/src/core.d.ts","../../node_modules/@types/jscodeshift/index.d.ts","../../node_modules/parse5/dist/common/html.d.ts","../../node_modules/parse5/dist/common/token.d.ts","../../node_modules/parse5/dist/common/error-codes.d.ts","../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../node_modules/parse5/dist/tokenizer/index.d.ts","../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../node_modules/parse5/dist/parser/index.d.ts","../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../node_modules/parse5/dist/serializer/index.d.ts","../../node_modules/parse5/dist/common/foreign-content.d.ts","../../node_modules/parse5/dist/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/nlcst/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/supports-color/index.d.ts","../../node_modules/@types/testing-library__jest-dom/matchers.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13",{"version":"acdb173adc6fc42f1ada4787ac1d66b7a45041c098ef0ab3a29cab5e2639c7c4","signature":"54d06708ae0939c65623936ee5df8482c5686ed41e6a584f663d38268ef97bd7"},{"version":"8d0342f2f10fe623fe09f763c500e03cfba38b1b9b26ff188bc0921e73449bd5","signature":"3f5be0e5963e749265c6b99f392b38d342a52a6f94d5987e65c351dda76b4b31"},{"version":"f76fda2849d918d2bb068adc147ef72828b5cf4b984ed3fa13b827f70a43e8a4","signature":"3c362dd5040e4dd5d784f9469d949ebaa6983ef319385f32f67c40456503ed53"},{"version":"98543bb56123a071dd25c7702e78b87efb2b8925d98216dec1b50f931f0ffeb1","signature":"9ea3af8e99ca72cd078d321773390b03ba137411d278a256a8c0ccbe41cf042a"},{"version":"bea0c298c6585d7b36e53f921d6762d541a6a685a45c5740998665c3c49533a4","signature":"38425a26f0e605843e190620f5fc8900ae072602c070f201bd9e913d393333ca"},{"version":"bdf112f4229b324e11a0ae2b2306549cf68bdd6e1438e4127ecd8eae86995673","signature":"6b7910f29f5080180448c8364e9e0ae8da9b3a175959bab5f1e8636788909307"},{"version":"df55088977bb061d9578e370f647086fec6b746bc96bb699e6b2f1e91eab7f41","signature":"cbf215ce4bde720e456a6de3ed39629f59ea62a7cc95729d9be42d1fe8587bee"},{"version":"30f34ab77ad88c2cf2b9c632c0a4a37e8af54b46bd929c813ff4d591c07c8c6a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},"12e8d48bb487a18f401bdb21b3f0562ee5dacf82b4518eff487ee913a87d21ff",{"version":"71d60fbf3d9b469e6cded93099e84b657e2d65f5997b5c7b69e68ecbf88bb63a","affectsGlobalScope":true},{"version":"0c4cfa4fb8e40ff34bc68b8dbd2eab5e8f00dbb257eef6dcd625521db4371cdc","affectsGlobalScope":true},{"version":"0edf50909110994834718a7582b9ceedf20b14aa9fde0351eb2ac2cf5f430feb","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","21522c0f405e58c8dd89cd97eb3d1aa9865ba017fde102d01f86ab50b44e5610","a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","0bcda522a4bb74c79e11a2c932db88eaca087a6fb11eb3fda4aaa4d655b1783e","5e3a55837aa1f42af2d2334c9b750f59f5f50a2205471875f5dd6aadc3e49ddb","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","6382638cfd6a8f05ac8277689de17ba4cd46f8aacefd254a993a53fde9ddc797",{"version":"3f547f989aa9c12dc888ae25c4afc076eb442f681ba17f50924642fe29c01da0","affectsGlobalScope":true},"9dffc5c0859e5aeba5e40b079d2f5e8047bdff91d0b3477d77b6fb66ee76c99d","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","f7a9cb83c8fbc081a8b605880d191e0d0527cde2c1b2b2b623beca8f0203a2cd","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","19f1159e1fa24300e2eaf72cb53f0815f5879ec53cad3c606802f0c55f0917e9","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","ac295e0d29ca135d7dca2069a6e57943ed18800754dbe8fcb3974fb9ce497c3c",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","6a61697f65beb341884485c695894ee1876a45c1a7190d76cb4a57a679c9d5b8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","d45d40831ccbd547e3f4ae8f326420b9e454dd27fa970f417c8e94a23e93db29","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true},"f748b7476f224e3e4032f1f15a2f33c395019b43078e27bd8a43fc57e9111bc8",{"version":"053cbe13007c0187b378386e4fb5fc1d836944a588fc14f60434508b4337a3fb","affectsGlobalScope":true},"cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d","abef3012ae70d98baa449664e9dda50c96fc68b0fd11a592d6590d85bb89cd10","456e83839c811cedebb65c8b05027120336b3bd6920259817d728ffc52d41e2f","ea79d9641e700b2b4a04a857ed1ef692c4caf988017fbabd64c4111f7c287673","0a90b9435b81f45b88c5fb8d30e85b77d3508eb0760dc40b9fb825fd29f92375","8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9","90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","a1d51fd5a8f9c1c038799a43c038397ca3ed99ee73cc0b0aada897e7cc8aca91","6c9708ae545db5f8deb8ef774d412fd1b46adade794664d7c6cfd0a1f6dfd64f","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","67aee88594abc44cd58820dea2ed1a9d373c1c2a59941234e4abe797464bc4da","2d940af7c1b73ae897c7d2a9706914d1af5fa4fdc0c5571e3495fd75986b597e","f8cb94e0dffd21068a952754ec67d01d35a15fa61bd3af951f949e9b8bde7976","65414b42714fc6fb8d4e6d625ccc4254959a1364d48dfdd256c6b0e3cfa33787","3c7ef314f6691dbba43cb1310a82d610ea648cc4498cd685c3e25442ea2d98a0","eeaed2fc620edd14f536ff9af99acb05f400ef42ad6d69c5cbbdadbd6905f2b9","c97f00f075490014bb4aaf97814fecfec1ca8f7befcf06d4ff0a0b995e46ce57","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","bb5c385d6290f1ad2da7576e186810f23dce6d6bc7fb38ad565a4eb8cfed3541","6571f33cd3c23ee70fb48839c9a7486381cd3f439e17d97d10fc908e41468052","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5fc6e6b8232254d80ed6b802372dba7f426f0a596f5fe26b7773acfdc8232926","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","6c03477d979bab8318626e4a6ba0619d54e51c1b70b02a012fbb63d6c8128054","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f","3f36c0c7508302f3dca3dc5ab0a66d822b2222f70c24bb1796ddb5c9d1168a05",{"version":"b23d5b89c465872587e130f427b39458b8e3ad16385f98446e9e86151ba6eb15","affectsGlobalScope":true},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[67,119],[119],[119,170],[64,119],[67,68,69,70,71,119],[67,69,119],[92,119,126,127],[107,119,126],[92,119,126],[78,119,126],[119,132],[89,92,119,126,139,140,141],[119,128,141,142,146],[89,90,119,126,149],[90,119,126],[119,152],[119,160],[119,154,160],[119,155,156,157,158,159],[119,162],[119,165],[119,166],[119,176,177],[119,172,175],[119,168,174],[119,172],[119,169,173],[119,171],[119,199],[119,179],[119,190],[119,189,190,191,192],[119,183,186,193,194,195,196],[119,186,189,197],[119,183,186,189,197],[119,183,186,189,193,194,196,197,198],[89,119,121,126,213,214,216],[119,215],[119,219,221,222,223,224,225,226,227,228,229,230,231],[119,219,220,222,223,224,225,226,227,228,229,230,231],[119,220,221,222,223,224,225,226,227,228,229,230,231],[119,219,220,221,223,224,225,226,227,228,229,230,231],[119,219,220,221,222,224,225,226,227,228,229,230,231],[119,219,220,221,222,223,225,226,227,228,229,230,231],[119,219,220,221,222,223,224,226,227,228,229,230,231],[119,219,220,221,222,223,224,225,227,228,229,230,231],[119,219,220,221,222,223,224,225,226,228,229,230,231],[119,219,220,221,222,223,224,225,226,227,229,230,231],[119,219,220,221,222,223,224,225,226,227,228,230,231],[119,219,220,221,222,223,224,225,226,227,228,229,231],[119,219,220,221,222,223,224,225,226,227,228,229,230],[119,233,234],[119,144],[119,143],[92,118,119,126,237,238],[73,119],[76,119],[77,82,110,119],[78,89,90,97,107,118,119],[78,79,89,97,119],[80,119],[81,82,90,98,119],[82,107,115,119],[83,85,89,97,119],[84,119],[85,86,119],[89,119],[87,89,119],[89,90,91,107,118,119],[89,90,91,104,107,110,119],[119,123],[85,92,97,107,118,119],[89,90,92,93,97,107,115,118,119],[92,94,107,115,118,119],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125],[89,95,119],[96,118,119],[85,89,97,107,119],[98,119],[99,119],[76,100,119],[101,117,119,123],[102,119],[103,119],[89,104,105,119],[104,106,119,121],[77,89,107,108,109,110,119],[77,107,109,119],[107,108,119],[110,119],[111,119],[89,113,114,119],[113,114,119],[82,97,107,115,119],[116,119],[97,117,119],[77,92,103,118,119],[82,119],[107,119,120],[119,121],[119,122],[77,82,89,91,100,107,118,119,121,123],[107,119,124],[119,241],[119,242],[59,119],[59,119,160,244],[59,119,160],[55,56,57,58,119],[119,250,289],[119,250,274,289],[119,289],[119,250],[119,250,275,289],[119,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288],[119,275,289],[90,107,119,126,138],[92,119,126,144,145],[119,176,292],[119,295],[119,180,181],[119,180],[119,179,181,183],[119,180,186,187],[119,179,183,184,185],[119,179,183,186,188],[119,179,183],[119,179,180,182],[119,179,180,182,183,184,186,187,188],[92,107,119,126],[119,202],[119,201,202],[119,201],[119,201,202,203,205,206,209,210,211,212],[119,202,206],[119,201,202,203,205,206,207,208],[119,201,206],[119,206,210],[119,202,203,204],[119,203],[119,201,202,206],[47,48,49,50,51,52,119],[48,119],[49,119],[47,48,49,50,51,52]],"referencedMap":[[69,1],[67,2],[171,3],[170,2],[65,4],[66,2],[72,5],[68,1],[70,6],[71,1],[128,7],[129,2],[130,8],[127,9],[131,10],[133,11],[134,2],[135,2],[136,2],[137,4],[64,2],[142,12],[147,13],[148,2],[150,14],[151,15],[153,16],[154,2],[158,17],[159,17],[155,18],[156,18],[157,18],[160,19],[161,2],[145,2],[163,20],[162,2],[164,2],[165,2],[166,21],[167,22],[178,23],[177,2],[176,24],[168,2],[175,25],[173,26],[174,27],[172,28],[200,29],[190,30],[191,31],[192,2],[193,32],[197,33],[194,34],[195,35],[196,34],[199,36],[198,29],[215,37],[216,38],[217,2],[218,2],[220,39],[221,40],[219,41],[222,42],[223,43],[224,44],[225,45],[226,46],[227,47],[228,48],[229,49],[230,50],[231,51],[232,16],[234,52],[233,2],[143,53],[144,54],[149,2],[235,2],[132,2],[236,16],[238,2],[239,55],[73,56],[74,56],[76,57],[77,58],[78,59],[79,60],[80,61],[81,62],[82,63],[83,64],[84,65],[85,66],[86,66],[88,67],[87,68],[89,67],[90,69],[91,70],[75,71],[125,2],[92,72],[93,73],[94,74],[126,75],[95,76],[96,77],[97,78],[98,79],[99,80],[100,81],[101,82],[102,83],[103,84],[104,85],[105,85],[106,86],[107,87],[109,88],[108,89],[110,90],[111,91],[112,2],[113,92],[114,93],[115,94],[116,95],[117,96],[118,97],[119,98],[120,99],[121,100],[122,101],[123,102],[124,103],[240,2],[242,104],[241,105],[57,2],[141,2],[140,2],[243,106],[245,107],[244,108],[246,106],[247,106],[55,2],[59,109],[248,2],[249,2],[58,2],[274,110],[275,111],[250,112],[253,112],[272,110],[273,110],[263,110],[262,113],[260,110],[255,110],[268,110],[266,110],[270,110],[254,110],[267,110],[271,110],[256,110],[257,110],[269,110],[251,110],[258,110],[259,110],[261,110],[265,110],[276,114],[264,110],[252,110],[289,115],[288,2],[283,114],[285,116],[284,114],[277,114],[278,114],[280,114],[282,114],[286,116],[287,116],[279,116],[281,116],[139,117],[138,2],[146,118],[290,2],[291,2],[293,119],[292,2],[214,2],[152,2],[294,2],[295,2],[296,120],[182,121],[181,122],[180,123],[188,124],[186,125],[187,126],[184,127],[185,30],[183,128],[189,129],[179,2],[169,2],[56,2],[237,130],[203,131],[212,132],[201,2],[202,133],[213,134],[208,135],[209,136],[207,137],[211,138],[205,139],[204,140],[210,141],[206,132],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[53,142],[47,2],[49,143],[50,2],[52,144],[51,2],[54,143],[48,2],[60,106],[61,2],[62,2],[63,2]],"exportedModulesMap":[[69,1],[67,2],[171,3],[170,2],[65,4],[66,2],[72,5],[68,1],[70,6],[71,1],[128,7],[129,2],[130,8],[127,9],[131,10],[133,11],[134,2],[135,2],[136,2],[137,4],[64,2],[142,12],[147,13],[148,2],[150,14],[151,15],[153,16],[154,2],[158,17],[159,17],[155,18],[156,18],[157,18],[160,19],[161,2],[145,2],[163,20],[162,2],[164,2],[165,2],[166,21],[167,22],[178,23],[177,2],[176,24],[168,2],[175,25],[173,26],[174,27],[172,28],[200,29],[190,30],[191,31],[192,2],[193,32],[197,33],[194,34],[195,35],[196,34],[199,36],[198,29],[215,37],[216,38],[217,2],[218,2],[220,39],[221,40],[219,41],[222,42],[223,43],[224,44],[225,45],[226,46],[227,47],[228,48],[229,49],[230,50],[231,51],[232,16],[234,52],[233,2],[143,53],[144,54],[149,2],[235,2],[132,2],[236,16],[238,2],[239,55],[73,56],[74,56],[76,57],[77,58],[78,59],[79,60],[80,61],[81,62],[82,63],[83,64],[84,65],[85,66],[86,66],[88,67],[87,68],[89,67],[90,69],[91,70],[75,71],[125,2],[92,72],[93,73],[94,74],[126,75],[95,76],[96,77],[97,78],[98,79],[99,80],[100,81],[101,82],[102,83],[103,84],[104,85],[105,85],[106,86],[107,87],[109,88],[108,89],[110,90],[111,91],[112,2],[113,92],[114,93],[115,94],[116,95],[117,96],[118,97],[119,98],[120,99],[121,100],[122,101],[123,102],[124,103],[240,2],[242,104],[241,105],[57,2],[141,2],[140,2],[243,106],[245,107],[244,108],[246,106],[247,106],[55,2],[59,109],[248,2],[249,2],[58,2],[274,110],[275,111],[250,112],[253,112],[272,110],[273,110],[263,110],[262,113],[260,110],[255,110],[268,110],[266,110],[270,110],[254,110],[267,110],[271,110],[256,110],[257,110],[269,110],[251,110],[258,110],[259,110],[261,110],[265,110],[276,114],[264,110],[252,110],[289,115],[288,2],[283,114],[285,116],[284,114],[277,114],[278,114],[280,114],[282,114],[286,116],[287,116],[279,116],[281,116],[139,117],[138,2],[146,118],[290,2],[291,2],[293,119],[292,2],[214,2],[152,2],[294,2],[295,2],[296,120],[182,121],[181,122],[180,123],[188,124],[186,125],[187,126],[184,127],[185,30],[183,128],[189,129],[179,2],[169,2],[56,2],[237,130],[203,131],[212,132],[201,2],[202,133],[213,134],[208,135],[209,136],[207,137],[211,138],[205,139],[204,140],[210,141],[206,132],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[53,145],[60,106],[61,2],[62,2],[63,2]],"semanticDiagnosticsPerFile":[69,67,171,170,65,66,72,68,70,71,128,129,130,127,131,133,134,135,136,137,64,142,147,148,150,151,153,154,158,159,155,156,157,160,161,145,163,162,164,165,166,167,178,177,176,168,175,173,174,172,200,190,191,192,193,197,194,195,196,199,198,215,216,217,218,220,221,219,222,223,224,225,226,227,228,229,230,231,232,234,233,143,144,149,235,132,236,238,239,73,74,76,77,78,79,80,81,82,83,84,85,86,88,87,89,90,91,75,125,92,93,94,126,95,96,97,98,99,100,101,102,103,104,105,106,107,109,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,240,242,241,57,141,140,243,245,244,246,247,55,59,248,249,58,274,275,250,253,272,273,263,262,260,255,268,266,270,254,267,271,256,257,269,251,258,259,261,265,276,264,252,289,288,283,285,284,277,278,280,282,286,287,279,281,139,138,146,290,291,293,292,214,152,294,295,296,182,181,180,188,186,187,184,185,183,189,179,169,56,237,203,212,201,202,213,208,209,207,211,205,204,210,206,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,53,47,49,50,52,51,54,48,60,61,62,63],"latestChangedDtsFile":"./dist/util/__tests__/utils.test.d.ts"},"version":"4.9.5"}
|