@wavemaker/foundation-css 11.10.5-next.27872 → 11.10.5-rc.207
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/foundation/foundation.css +1278 -1063
- package/foundation/foundation.min.css +1 -1
- package/index.d.ts +18 -27
- package/index.js +92 -42
- package/index.js.map +1 -0
- package/npm-shrinkwrap.json +225 -8
- package/package-lock.json +225 -8
- package/package.json +10 -3
- package/tokens/components/accordion/accordion.json +10 -0
- package/tokens/components/anchor/anchor.json +86 -0
- package/tokens/components/badge/badge.json +52 -0
- package/tokens/components/breadcrumb/breadcrumb.json +98 -0
- package/tokens/components/button/button.json +710 -0
- package/tokens/components/button-group/button-group.json +18 -0
- package/tokens/components/calendar/calendar.json +274 -0
- package/tokens/components/cards/cards.json +176 -0
- package/tokens/components/carousel/carousel.json +46 -0
- package/tokens/components/checkbox/checkbox.json +106 -0
- package/tokens/components/checkboxset/checkboxset.json +10 -0
- package/tokens/components/chips/chips.json +202 -0
- package/tokens/components/composite/composite.json +202 -0
- package/tokens/components/container/container.json +32 -0
- package/tokens/components/currency/currency.json +32 -0
- package/tokens/components/data-table/data-table.json +170 -0
- package/tokens/components/date/date.json +146 -0
- package/tokens/components/dropdown-menu/dropdown-menu.json +116 -0
- package/tokens/components/fileupload/fileupload.json +180 -0
- package/tokens/components/grid-layout/grid-layout.json +18 -0
- package/tokens/components/icon/icon.json +8 -0
- package/tokens/components/label/label.json +8 -0
- package/tokens/components/list/list.json +72 -0
- package/tokens/components/message/message.json +144 -0
- package/tokens/components/modal-dialog/modal-dialog.json +176 -0
- package/tokens/components/nav/nav.json +222 -0
- package/tokens/components/page-layout/page-layout.json +842 -0
- package/tokens/components/pagination/pagination.json +250 -0
- package/tokens/components/panel/panel.json +218 -0
- package/tokens/components/picture/picture.json +42 -0
- package/tokens/components/popover/popover.json +102 -0
- package/tokens/components/progress-bar/progress-bar.json +122 -0
- package/tokens/components/progress-circle/progress-circle.json +64 -0
- package/tokens/components/radioset/radioset.json +116 -0
- package/tokens/components/rating/rating.json +42 -0
- package/tokens/components/richtext-editor/richtext-editor.json +546 -0
- package/tokens/components/scrollbar/scrollbar.json +38 -0
- package/tokens/components/search/search.json +200 -0
- package/tokens/components/spinner/spinner.json +44 -0
- package/tokens/components/switch/switch.json +106 -0
- package/tokens/components/tabs/tabs.json +136 -0
- package/tokens/components/tile/tile.json +186 -0
- package/tokens/components/time/time.json +90 -0
- package/tokens/components/toast/toast.json +214 -0
- package/tokens/components/toggle/toggle.json +98 -0
- package/tokens/components/wizard/wizard.json +232 -0
- package/tokens/global/border/border.json +96 -0
- package/tokens/global/box-shadow/box-shadow.json +9 -0
- package/tokens/{primitives → global}/colors/color.dark.json +12 -3
- package/tokens/global/colors/color.json +343 -0
- package/tokens/{semantics → global}/font/font.json +74 -20
- package/tokens/global/gap/gap.json +58 -0
- package/tokens/{semantics → global}/icon/icon.json +1 -1
- package/tokens/global/margin/margin.json +57 -0
- package/tokens/global/radius/radius.json +45 -0
- package/tokens/global/shadow/shadow.json +74 -0
- package/tokens/global/space/space.json +57 -0
- package/tokens/global/spacer/spacer.json +46 -0
- package/utils/style-dictionary-utils.d.ts +7 -0
- package/utils/style-dictionary-utils.js +65 -0
- package/utils/style-dictionary-utils.js.map +1 -0
- package/tokens/primitives/border/border.json +0 -10
- package/tokens/primitives/colors/color.json +0 -163
- package/tokens/primitives/font/font.json +0 -20
- package/tokens/primitives/radius/radius.json +0 -14
- package/tokens/primitives/space/space.json +0 -57
- package/tokens/primitives/spacer/spacer.json +0 -45
- package/tokens/semantics/box-shadow/box-shadow.json +0 -8
- package/tokens/semantics/colors/color.json +0 -948
- /package/tokens/{primitives → global}/colors/color.light.json +0 -0
- /package/tokens/{semantics → global}/opacity/opacity.json +0 -0
package/index.d.ts
CHANGED
|
@@ -1,30 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
interface TokenGroup {
|
|
2
|
+
default: Record<string, any>;
|
|
3
|
+
light?: Record<string, any>;
|
|
4
|
+
dark?: Record<string, any>;
|
|
5
|
+
[key: string]: Record<string, any> | undefined;
|
|
6
6
|
}
|
|
7
|
-
|
|
8
|
-
// Tokens Interface
|
|
9
7
|
export interface Tokens {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
system: {
|
|
17
|
-
color: TokenSet;
|
|
18
|
-
font: TokenSet;
|
|
19
|
-
space: TokenSet;
|
|
20
|
-
opacity: TokenSet;
|
|
21
|
-
};
|
|
22
|
-
[key: string]: any;
|
|
8
|
+
color: TokenGroup;
|
|
9
|
+
font: TokenGroup;
|
|
10
|
+
space: TokenGroup;
|
|
11
|
+
radius: TokenGroup;
|
|
12
|
+
opacity: TokenGroup;
|
|
13
|
+
[key: string]: TokenGroup | undefined;
|
|
23
14
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
export declare const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
export declare const
|
|
30
|
-
|
|
15
|
+
export declare const tokens: Record<string, TokenGroup>;
|
|
16
|
+
export declare const brighten: (value: string, formula: string) => string;
|
|
17
|
+
export declare const darken: (value: string, formula: string) => string;
|
|
18
|
+
export declare const contrast: (value: string) => string;
|
|
19
|
+
export declare function loadComponentTokens(componentName: string): Promise<any>;
|
|
20
|
+
export declare const componentsList: string[];
|
|
21
|
+
export {};
|
package/index.js
CHANGED
|
@@ -1,46 +1,96 @@
|
|
|
1
1
|
// Primitives
|
|
2
|
-
import colorDefault from
|
|
3
|
-
import colorLight from
|
|
4
|
-
import colorDark from
|
|
5
|
-
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
|
|
10
|
-
// Semantics
|
|
11
|
-
import semanticColorDefault from './tokens/semantics/colors/color.json';
|
|
12
|
-
import semanticFontDefault from './tokens/semantics/font/font.json';
|
|
13
|
-
import opacityDefault from './tokens/semantics/opacity/opacity.json';
|
|
14
|
-
|
|
2
|
+
import colorDefault from "./tokens/global/colors/color.json";
|
|
3
|
+
import colorLight from "./tokens/global/colors/color.light.json";
|
|
4
|
+
import colorDark from "./tokens/global/colors/color.dark.json";
|
|
5
|
+
import fontDefault from "./tokens/global/font/font.json";
|
|
6
|
+
import spacingDefault from "./tokens/global/space/space.json";
|
|
7
|
+
import radiusDefault from "./tokens/global/radius/radius.json";
|
|
8
|
+
import opacityDefault from "./tokens/global/opacity/opacity.json";
|
|
9
|
+
import chroma from "chroma-js";
|
|
15
10
|
// Organized Tokens
|
|
16
|
-
export const
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
11
|
+
export const tokens = {
|
|
12
|
+
color: {
|
|
13
|
+
default: colorDefault,
|
|
14
|
+
light: colorLight,
|
|
15
|
+
dark: colorDark,
|
|
16
|
+
},
|
|
17
|
+
font: {
|
|
18
|
+
default: fontDefault,
|
|
19
|
+
},
|
|
20
|
+
space: {
|
|
21
|
+
default: spacingDefault,
|
|
22
|
+
},
|
|
23
|
+
radius: {
|
|
24
|
+
default: radiusDefault,
|
|
25
|
+
},
|
|
26
|
+
opacity: {
|
|
27
|
+
default: opacityDefault,
|
|
28
|
+
},
|
|
31
29
|
};
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
default: semanticColorDefault,
|
|
36
|
-
},
|
|
37
|
-
font: {
|
|
38
|
-
default: semanticFontDefault,
|
|
39
|
-
},
|
|
40
|
-
space: {
|
|
41
|
-
default: spacingDefault,
|
|
42
|
-
},
|
|
43
|
-
opacity: {
|
|
44
|
-
default: opacityDefault,
|
|
45
|
-
},
|
|
30
|
+
const getFactorFromFormula = (formula) => {
|
|
31
|
+
const match = formula.match(/[\d\.]+/);
|
|
32
|
+
return match ? parseFloat(match[0]) : 0; // Default to 0 if no value found
|
|
46
33
|
};
|
|
34
|
+
export const brighten = (value, formula) => {
|
|
35
|
+
const factor = getFactorFromFormula(formula);
|
|
36
|
+
return chroma(value).brighten(factor / 20).hex(); // Adjust brightness
|
|
37
|
+
};
|
|
38
|
+
export const darken = (value, formula) => {
|
|
39
|
+
const factor = getFactorFromFormula(formula);
|
|
40
|
+
return chroma(value).darken(factor / 20).hex(); // Adjust darkness
|
|
41
|
+
};
|
|
42
|
+
export const contrast = (value) => {
|
|
43
|
+
return chroma.contrast(value, '#FFFFFF') > 4.5 ? "#ffffff" : '#000000';
|
|
44
|
+
};
|
|
45
|
+
export async function loadComponentTokens(componentName) {
|
|
46
|
+
return import(`./tokens/components/${componentName}/${componentName}.json`);
|
|
47
|
+
}
|
|
48
|
+
export const componentsList = [
|
|
49
|
+
"accordion",
|
|
50
|
+
"anchor",
|
|
51
|
+
"badge",
|
|
52
|
+
"breadcrumb",
|
|
53
|
+
"button",
|
|
54
|
+
"button-group",
|
|
55
|
+
"calendar",
|
|
56
|
+
"cards",
|
|
57
|
+
"carousel",
|
|
58
|
+
"checkbox",
|
|
59
|
+
"checkboxset",
|
|
60
|
+
"chips",
|
|
61
|
+
"composite",
|
|
62
|
+
"container",
|
|
63
|
+
"currency",
|
|
64
|
+
"data-table",
|
|
65
|
+
"date",
|
|
66
|
+
"dropdown-menu",
|
|
67
|
+
"fileupload",
|
|
68
|
+
"grid-layout",
|
|
69
|
+
"icon",
|
|
70
|
+
"label",
|
|
71
|
+
"list",
|
|
72
|
+
"message",
|
|
73
|
+
"modal-dialog",
|
|
74
|
+
"nav",
|
|
75
|
+
"page-layout",
|
|
76
|
+
"pagination",
|
|
77
|
+
"panel",
|
|
78
|
+
"picture",
|
|
79
|
+
"popover",
|
|
80
|
+
"progress-bar",
|
|
81
|
+
"progress-circle",
|
|
82
|
+
"radioset",
|
|
83
|
+
"rating",
|
|
84
|
+
"richtext-editor",
|
|
85
|
+
"scrollbar",
|
|
86
|
+
"search",
|
|
87
|
+
"spinner",
|
|
88
|
+
"switch",
|
|
89
|
+
"tabs",
|
|
90
|
+
"tile",
|
|
91
|
+
"time",
|
|
92
|
+
"toast",
|
|
93
|
+
"toggle",
|
|
94
|
+
"wizard",
|
|
95
|
+
];
|
|
96
|
+
//# sourceMappingURL=index.js.map
|
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"./","sources":["index.ts"],"names":[],"mappings":"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","sourcesContent":["// Primitives\nimport colorDefault from \"./tokens/global/colors/color.json\";\nimport colorLight from \"./tokens/global/colors/color.light.json\";\nimport colorDark from \"./tokens/global/colors/color.dark.json\";\nimport fontDefault from \"./tokens/global/font/font.json\";\nimport spacingDefault from \"./tokens/global/space/space.json\";\nimport radiusDefault from \"./tokens/global/radius/radius.json\";\nimport opacityDefault from \"./tokens/global/opacity/opacity.json\";\nimport chroma from \"chroma-js\";\n\ninterface TokenGroup {\n default: Record<string, any>;\n light?: Record<string, any>;\n dark?: Record<string, any>;\n [key: string]: Record<string, any> | undefined;\n}\n\n// Tokens Interface\nexport interface Tokens {\n color: TokenGroup;\n font: TokenGroup;\n space: TokenGroup;\n radius: TokenGroup;\n opacity: TokenGroup;\n [key: string]: TokenGroup | undefined;\n}\n// Organized Tokens\nexport const tokens: Record<string, TokenGroup> = {\n color: {\n default: colorDefault,\n light: colorLight,\n dark: colorDark,\n },\n font: {\n default: fontDefault,\n },\n space: {\n default: spacingDefault,\n },\n radius: {\n default: radiusDefault,\n },\n opacity: {\n default: opacityDefault,\n },\n};\n\n\nconst getFactorFromFormula = (formula: string): number => {\n const match = formula.match(/[\\d\\.]+/);\n return match ? parseFloat(match[0]) : 0; // Default to 0 if no value found\n};\n\nexport const brighten = (value: string, formula: string): string => {\n const factor = getFactorFromFormula(formula);\n return chroma(value).brighten(factor / 20).hex(); // Adjust brightness\n};\n\nexport const darken = (value: string, formula: string): string => {\n const factor = getFactorFromFormula(formula);\n return chroma(value).darken(factor / 20).hex(); // Adjust darkness\n};\n\nexport const contrast = (value: string): string => {\n return chroma.contrast(value, '#FFFFFF') > 4.5 ? \"#ffffff\" : '#000000';\n};\n\n\nexport async function loadComponentTokens(componentName: string) {\n return import(`./tokens/components/${componentName}/${componentName}.json`);\n}\n\nexport const componentsList: string[] = [\n \"accordion\",\n \"anchor\",\n \"badge\",\n \"breadcrumb\",\n \"button\",\n \"button-group\",\n \"calendar\",\n \"cards\",\n \"carousel\",\n \"checkbox\",\n \"checkboxset\",\n \"chips\",\n \"composite\",\n \"container\",\n \"currency\",\n \"data-table\",\n \"date\",\n \"dropdown-menu\",\n \"fileupload\",\n \"grid-layout\",\n \"icon\",\n \"label\",\n \"list\",\n \"message\",\n \"modal-dialog\",\n \"nav\",\n \"page-layout\",\n \"pagination\",\n \"panel\",\n \"picture\",\n \"popover\",\n \"progress-bar\",\n \"progress-circle\",\n \"radioset\",\n \"rating\",\n \"richtext-editor\",\n \"scrollbar\",\n \"search\",\n \"spinner\",\n \"switch\",\n \"tabs\",\n \"tile\",\n \"time\",\n \"toast\",\n \"toggle\",\n \"wizard\",\n];"]}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/foundation-css",
|
|
3
|
-
"version": "11.10.5-
|
|
3
|
+
"version": "11.10.5-rc.207",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/foundation-css",
|
|
9
|
-
"version": "11.10.5-
|
|
9
|
+
"version": "11.10.5-rc.207",
|
|
10
10
|
"license": "ISC",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"chroma-js": "^3.1.2"
|
|
13
|
+
},
|
|
11
14
|
"devDependencies": {
|
|
15
|
+
"@types/chroma-js": "^3.1.1",
|
|
12
16
|
"execa": "^5.0.0",
|
|
13
17
|
"fs-extra": "^11.2.0",
|
|
14
18
|
"less": "^4.2.0",
|
|
15
19
|
"less-plugin-clean-css": "^1.6.0",
|
|
16
20
|
"style-dictionary": "^4.1.0",
|
|
17
21
|
"tar": "^7.4.3",
|
|
22
|
+
"ts-node": "^10.9.2",
|
|
23
|
+
"typescript": "^5.7.3",
|
|
18
24
|
"yargs": "^17.7.2"
|
|
19
25
|
}
|
|
20
26
|
},
|
|
@@ -45,20 +51,32 @@
|
|
|
45
51
|
}
|
|
46
52
|
},
|
|
47
53
|
"node_modules/@bundled-es-modules/memfs": {
|
|
48
|
-
"version": "4.
|
|
49
|
-
"integrity": "sha512-
|
|
54
|
+
"version": "4.17.0",
|
|
55
|
+
"integrity": "sha512-ykdrkEmQr9BV804yd37ikXfNnvxrwYfY9Z2/EtMHFEFadEjsQXJ1zL9bVZrKNLDtm91UdUOEHso6Aweg93K6xQ==",
|
|
50
56
|
"dev": true,
|
|
51
57
|
"license": "Apache-2.0",
|
|
52
58
|
"dependencies": {
|
|
53
|
-
"assert": "^2.
|
|
59
|
+
"assert": "^2.1.0",
|
|
54
60
|
"buffer": "^6.0.3",
|
|
55
61
|
"events": "^3.3.0",
|
|
56
|
-
"memfs": "^4.
|
|
62
|
+
"memfs": "^4.17.0",
|
|
57
63
|
"path": "^0.12.7",
|
|
58
64
|
"stream": "^0.0.3",
|
|
59
65
|
"util": "^0.12.5"
|
|
60
66
|
}
|
|
61
67
|
},
|
|
68
|
+
"node_modules/@cspotcode/source-map-support": {
|
|
69
|
+
"version": "0.8.1",
|
|
70
|
+
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
|
|
71
|
+
"dev": true,
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"@jridgewell/trace-mapping": "0.3.9"
|
|
75
|
+
},
|
|
76
|
+
"engines": {
|
|
77
|
+
"node": ">=12"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
62
80
|
"node_modules/@isaacs/cliui": {
|
|
63
81
|
"version": "8.0.2",
|
|
64
82
|
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
|
|
@@ -88,6 +106,31 @@
|
|
|
88
106
|
"node": ">=18.0.0"
|
|
89
107
|
}
|
|
90
108
|
},
|
|
109
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
110
|
+
"version": "3.1.2",
|
|
111
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
112
|
+
"dev": true,
|
|
113
|
+
"license": "MIT",
|
|
114
|
+
"engines": {
|
|
115
|
+
"node": ">=6.0.0"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
119
|
+
"version": "1.5.0",
|
|
120
|
+
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
|
|
121
|
+
"dev": true,
|
|
122
|
+
"license": "MIT"
|
|
123
|
+
},
|
|
124
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
125
|
+
"version": "0.3.9",
|
|
126
|
+
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
|
127
|
+
"dev": true,
|
|
128
|
+
"license": "MIT",
|
|
129
|
+
"dependencies": {
|
|
130
|
+
"@jridgewell/resolve-uri": "^3.0.3",
|
|
131
|
+
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
91
134
|
"node_modules/@jsonjoy.com/base64": {
|
|
92
135
|
"version": "1.1.2",
|
|
93
136
|
"integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==",
|
|
@@ -152,6 +195,46 @@
|
|
|
152
195
|
"node": ">=14"
|
|
153
196
|
}
|
|
154
197
|
},
|
|
198
|
+
"node_modules/@tsconfig/node10": {
|
|
199
|
+
"version": "1.0.11",
|
|
200
|
+
"integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==",
|
|
201
|
+
"dev": true,
|
|
202
|
+
"license": "MIT"
|
|
203
|
+
},
|
|
204
|
+
"node_modules/@tsconfig/node12": {
|
|
205
|
+
"version": "1.0.11",
|
|
206
|
+
"integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
|
|
207
|
+
"dev": true,
|
|
208
|
+
"license": "MIT"
|
|
209
|
+
},
|
|
210
|
+
"node_modules/@tsconfig/node14": {
|
|
211
|
+
"version": "1.0.3",
|
|
212
|
+
"integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
|
|
213
|
+
"dev": true,
|
|
214
|
+
"license": "MIT"
|
|
215
|
+
},
|
|
216
|
+
"node_modules/@tsconfig/node16": {
|
|
217
|
+
"version": "1.0.4",
|
|
218
|
+
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
|
|
219
|
+
"dev": true,
|
|
220
|
+
"license": "MIT"
|
|
221
|
+
},
|
|
222
|
+
"node_modules/@types/chroma-js": {
|
|
223
|
+
"version": "3.1.1",
|
|
224
|
+
"integrity": "sha512-SFCr4edNkZ1bGaLzGz7rgR1bRzVX4MmMxwsIa3/Bh6ose8v+hRpneoizHv0KChdjxaXyjRtaMq7sCuZSzPomQA==",
|
|
225
|
+
"dev": true,
|
|
226
|
+
"license": "MIT"
|
|
227
|
+
},
|
|
228
|
+
"node_modules/@types/node": {
|
|
229
|
+
"version": "22.13.14",
|
|
230
|
+
"integrity": "sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==",
|
|
231
|
+
"dev": true,
|
|
232
|
+
"license": "MIT",
|
|
233
|
+
"peer": true,
|
|
234
|
+
"dependencies": {
|
|
235
|
+
"undici-types": "~6.20.0"
|
|
236
|
+
}
|
|
237
|
+
},
|
|
155
238
|
"node_modules/@yarnpkg/lockfile": {
|
|
156
239
|
"version": "1.1.0",
|
|
157
240
|
"integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==",
|
|
@@ -159,8 +242,8 @@
|
|
|
159
242
|
"license": "BSD-2-Clause"
|
|
160
243
|
},
|
|
161
244
|
"node_modules/@zip.js/zip.js": {
|
|
162
|
-
"version": "2.7.
|
|
163
|
-
"integrity": "sha512-
|
|
245
|
+
"version": "2.7.58",
|
|
246
|
+
"integrity": "sha512-tU130QPuBtCPpJ/4a7YUfrOmZFnfxSsAH15gr+Kbl0ypwREu3YkGVswFNFHBHlP/FqFjvp9D27/fmd4LWYa1UQ==",
|
|
164
247
|
"dev": true,
|
|
165
248
|
"license": "BSD-3-Clause",
|
|
166
249
|
"engines": {
|
|
@@ -169,6 +252,30 @@
|
|
|
169
252
|
"node": ">=16.5.0"
|
|
170
253
|
}
|
|
171
254
|
},
|
|
255
|
+
"node_modules/acorn": {
|
|
256
|
+
"version": "8.14.1",
|
|
257
|
+
"integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
|
|
258
|
+
"dev": true,
|
|
259
|
+
"license": "MIT",
|
|
260
|
+
"bin": {
|
|
261
|
+
"acorn": "bin/acorn"
|
|
262
|
+
},
|
|
263
|
+
"engines": {
|
|
264
|
+
"node": ">=0.4.0"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"node_modules/acorn-walk": {
|
|
268
|
+
"version": "8.3.4",
|
|
269
|
+
"integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
|
|
270
|
+
"dev": true,
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"dependencies": {
|
|
273
|
+
"acorn": "^8.11.0"
|
|
274
|
+
},
|
|
275
|
+
"engines": {
|
|
276
|
+
"node": ">=0.4.0"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
172
279
|
"node_modules/ansi-regex": {
|
|
173
280
|
"version": "6.1.0",
|
|
174
281
|
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
|
|
@@ -193,6 +300,12 @@
|
|
|
193
300
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
194
301
|
}
|
|
195
302
|
},
|
|
303
|
+
"node_modules/arg": {
|
|
304
|
+
"version": "4.1.3",
|
|
305
|
+
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
|
|
306
|
+
"dev": true,
|
|
307
|
+
"license": "MIT"
|
|
308
|
+
},
|
|
196
309
|
"node_modules/assert": {
|
|
197
310
|
"version": "2.1.0",
|
|
198
311
|
"integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==",
|
|
@@ -375,6 +488,11 @@
|
|
|
375
488
|
"node": ">=18"
|
|
376
489
|
}
|
|
377
490
|
},
|
|
491
|
+
"node_modules/chroma-js": {
|
|
492
|
+
"version": "3.1.2",
|
|
493
|
+
"integrity": "sha512-IJnETTalXbsLx1eKEgx19d5L6SRM7cH4vINw/99p/M11HCuXGRWL+6YmCm7FWFGIo6dtWuQoQi1dc5yQ7ESIHg==",
|
|
494
|
+
"license": "(BSD-3-Clause AND Apache-2.0)"
|
|
495
|
+
},
|
|
378
496
|
"node_modules/ci-info": {
|
|
379
497
|
"version": "3.9.0",
|
|
380
498
|
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
|
|
@@ -546,6 +664,12 @@
|
|
|
546
664
|
"url": "https://github.com/sponsors/mesqueeb"
|
|
547
665
|
}
|
|
548
666
|
},
|
|
667
|
+
"node_modules/create-require": {
|
|
668
|
+
"version": "1.1.1",
|
|
669
|
+
"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
|
|
670
|
+
"dev": true,
|
|
671
|
+
"license": "MIT"
|
|
672
|
+
},
|
|
549
673
|
"node_modules/cross-spawn": {
|
|
550
674
|
"version": "7.0.6",
|
|
551
675
|
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
@@ -603,6 +727,15 @@
|
|
|
603
727
|
"url": "https://github.com/sponsors/ljharb"
|
|
604
728
|
}
|
|
605
729
|
},
|
|
730
|
+
"node_modules/diff": {
|
|
731
|
+
"version": "4.0.2",
|
|
732
|
+
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
|
|
733
|
+
"dev": true,
|
|
734
|
+
"license": "BSD-3-Clause",
|
|
735
|
+
"engines": {
|
|
736
|
+
"node": ">=0.3.1"
|
|
737
|
+
}
|
|
738
|
+
},
|
|
606
739
|
"node_modules/dunder-proto": {
|
|
607
740
|
"version": "1.0.1",
|
|
608
741
|
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
@@ -1359,6 +1492,12 @@
|
|
|
1359
1492
|
"node": ">=6"
|
|
1360
1493
|
}
|
|
1361
1494
|
},
|
|
1495
|
+
"node_modules/make-error": {
|
|
1496
|
+
"version": "1.3.6",
|
|
1497
|
+
"integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
|
|
1498
|
+
"dev": true,
|
|
1499
|
+
"license": "ISC"
|
|
1500
|
+
},
|
|
1362
1501
|
"node_modules/math-intrinsics": {
|
|
1363
1502
|
"version": "1.1.0",
|
|
1364
1503
|
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
@@ -2388,12 +2527,75 @@
|
|
|
2388
2527
|
"tslib": "2"
|
|
2389
2528
|
}
|
|
2390
2529
|
},
|
|
2530
|
+
"node_modules/ts-node": {
|
|
2531
|
+
"version": "10.9.2",
|
|
2532
|
+
"integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
|
|
2533
|
+
"dev": true,
|
|
2534
|
+
"license": "MIT",
|
|
2535
|
+
"dependencies": {
|
|
2536
|
+
"@cspotcode/source-map-support": "^0.8.0",
|
|
2537
|
+
"@tsconfig/node10": "^1.0.7",
|
|
2538
|
+
"@tsconfig/node12": "^1.0.7",
|
|
2539
|
+
"@tsconfig/node14": "^1.0.0",
|
|
2540
|
+
"@tsconfig/node16": "^1.0.2",
|
|
2541
|
+
"acorn": "^8.4.1",
|
|
2542
|
+
"acorn-walk": "^8.1.1",
|
|
2543
|
+
"arg": "^4.1.0",
|
|
2544
|
+
"create-require": "^1.1.0",
|
|
2545
|
+
"diff": "^4.0.1",
|
|
2546
|
+
"make-error": "^1.1.1",
|
|
2547
|
+
"v8-compile-cache-lib": "^3.0.1",
|
|
2548
|
+
"yn": "3.1.1"
|
|
2549
|
+
},
|
|
2550
|
+
"bin": {
|
|
2551
|
+
"ts-node": "dist/bin.js",
|
|
2552
|
+
"ts-node-cwd": "dist/bin-cwd.js",
|
|
2553
|
+
"ts-node-esm": "dist/bin-esm.js",
|
|
2554
|
+
"ts-node-script": "dist/bin-script.js",
|
|
2555
|
+
"ts-node-transpile-only": "dist/bin-transpile.js",
|
|
2556
|
+
"ts-script": "dist/bin-script-deprecated.js"
|
|
2557
|
+
},
|
|
2558
|
+
"peerDependencies": {
|
|
2559
|
+
"@swc/core": ">=1.2.50",
|
|
2560
|
+
"@swc/wasm": ">=1.2.50",
|
|
2561
|
+
"@types/node": "*",
|
|
2562
|
+
"typescript": ">=2.7"
|
|
2563
|
+
},
|
|
2564
|
+
"peerDependenciesMeta": {
|
|
2565
|
+
"@swc/core": {
|
|
2566
|
+
"optional": true
|
|
2567
|
+
},
|
|
2568
|
+
"@swc/wasm": {
|
|
2569
|
+
"optional": true
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
},
|
|
2391
2573
|
"node_modules/tslib": {
|
|
2392
2574
|
"version": "2.8.1",
|
|
2393
2575
|
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2394
2576
|
"dev": true,
|
|
2395
2577
|
"license": "0BSD"
|
|
2396
2578
|
},
|
|
2579
|
+
"node_modules/typescript": {
|
|
2580
|
+
"version": "5.8.2",
|
|
2581
|
+
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
|
2582
|
+
"dev": true,
|
|
2583
|
+
"license": "Apache-2.0",
|
|
2584
|
+
"bin": {
|
|
2585
|
+
"tsc": "bin/tsc",
|
|
2586
|
+
"tsserver": "bin/tsserver"
|
|
2587
|
+
},
|
|
2588
|
+
"engines": {
|
|
2589
|
+
"node": ">=14.17"
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
"node_modules/undici-types": {
|
|
2593
|
+
"version": "6.20.0",
|
|
2594
|
+
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
|
|
2595
|
+
"dev": true,
|
|
2596
|
+
"license": "MIT",
|
|
2597
|
+
"peer": true
|
|
2598
|
+
},
|
|
2397
2599
|
"node_modules/universalify": {
|
|
2398
2600
|
"version": "2.0.1",
|
|
2399
2601
|
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
@@ -2429,6 +2631,12 @@
|
|
|
2429
2631
|
"which-typed-array": "^1.1.2"
|
|
2430
2632
|
}
|
|
2431
2633
|
},
|
|
2634
|
+
"node_modules/v8-compile-cache-lib": {
|
|
2635
|
+
"version": "3.0.1",
|
|
2636
|
+
"integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
|
|
2637
|
+
"dev": true,
|
|
2638
|
+
"license": "MIT"
|
|
2639
|
+
},
|
|
2432
2640
|
"node_modules/which": {
|
|
2433
2641
|
"version": "2.0.2",
|
|
2434
2642
|
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
@@ -2659,6 +2867,15 @@
|
|
|
2659
2867
|
"engines": {
|
|
2660
2868
|
"node": ">=8"
|
|
2661
2869
|
}
|
|
2870
|
+
},
|
|
2871
|
+
"node_modules/yn": {
|
|
2872
|
+
"version": "3.1.1",
|
|
2873
|
+
"integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
|
|
2874
|
+
"dev": true,
|
|
2875
|
+
"license": "MIT",
|
|
2876
|
+
"engines": {
|
|
2877
|
+
"node": ">=6"
|
|
2878
|
+
}
|
|
2662
2879
|
}
|
|
2663
2880
|
}
|
|
2664
2881
|
}
|