@js-smart/react-kit 5.11.0 → 5.12.0-beta.2
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/.editorconfig +13 -0
- package/.eslintignore +1 -0
- package/.eslintrc.json +41 -0
- package/.github/copilot-instructions.md +11 -0
- package/.github/workflows/build.yml +45 -0
- package/.github/workflows/release.yml +65 -0
- package/.prettierignore +5 -0
- package/.prettierrc +9 -0
- package/.vscode/extensions.json +7 -0
- package/CHANGELOG.md +24 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/FUNDING.yml +1 -0
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/apps/react-kit-demo/.eslintrc.json +22 -0
- package/apps/react-kit-demo/index.html +16 -0
- package/apps/react-kit-demo/project.json +9 -0
- package/apps/react-kit-demo/public/favicon.ico +0 -0
- package/apps/react-kit-demo/src/app/Home.tsx +17 -0
- package/apps/react-kit-demo/src/app/all-books/AllBooks.tsx +68 -0
- package/apps/react-kit-demo/src/app/app.module.scss +1 -0
- package/apps/react-kit-demo/src/app/app.tsx +29 -0
- package/apps/react-kit-demo/src/app/buttons/ButtonsDemo.tsx +58 -0
- package/apps/react-kit-demo/src/app/dialog/DialogDemo.tsx +23 -0
- package/apps/react-kit-demo/src/app/links/LinksDemo.tsx +20 -0
- package/apps/react-kit-demo/src/app/progress-bar/CenterCircularProgressDemo.tsx +10 -0
- package/apps/react-kit-demo/src/app/react-if/ReactIfDemo.tsx +44 -0
- package/apps/react-kit-demo/src/app/snack-bar/SnackBarDemo.tsx +35 -0
- package/apps/react-kit-demo/src/assets/.gitkeep +0 -0
- package/apps/react-kit-demo/src/constants/ApiConstants.ts +7 -0
- package/apps/react-kit-demo/src/constants/DialogMode.ts +2 -0
- package/apps/react-kit-demo/src/constants/HttpConstants.ts +18 -0
- package/apps/react-kit-demo/src/constants/StateConstants.ts +2 -0
- package/apps/react-kit-demo/src/main.tsx +17 -0
- package/apps/react-kit-demo/src/routes/Routes.tsx +55 -0
- package/apps/react-kit-demo/src/services/BookService.ts +21 -0
- package/apps/react-kit-demo/src/styles.scss +36 -0
- package/apps/react-kit-demo/src/theme.ts +46 -0
- package/apps/react-kit-demo/src/types/Book.ts +8 -0
- package/{lib/utils/CssUtils.d.ts → apps/react-kit-demo/src/utils/CssUtils.ts} +3 -1
- package/apps/react-kit-demo/tsconfig.app.json +18 -0
- package/apps/react-kit-demo/tsconfig.json +21 -0
- package/apps/react-kit-demo/tsconfig.spec.json +28 -0
- package/apps/react-kit-demo/vite.config.ts +50 -0
- package/nx.json +52 -0
- package/package.json +98 -44
- package/react-kit/.babelrc +12 -0
- package/react-kit/.eslintrc.json +18 -0
- package/react-kit/README.md +7 -0
- package/react-kit/package-lock.json +1330 -0
- package/react-kit/package.json +45 -0
- package/react-kit/project.json +10 -0
- package/{index.d.ts → react-kit/src/index.ts} +9 -0
- package/react-kit/src/lib/components/CenteredCircularProgress.tsx +15 -0
- package/react-kit/src/lib/components/ConfirmationDialog.tsx +28 -0
- package/react-kit/src/lib/components/DismissibleAlert.tsx +60 -0
- package/react-kit/src/lib/components/NextLink.tsx +26 -0
- package/react-kit/src/lib/components/OpenInNewIconLink.tsx +42 -0
- package/react-kit/src/lib/components/ReactIf.tsx +53 -0
- package/react-kit/src/lib/components/buttons/CancelButton.tsx +45 -0
- package/react-kit/src/lib/components/buttons/DeleteButton.tsx +35 -0
- package/react-kit/src/lib/components/buttons/EditIconButton.tsx +23 -0
- package/react-kit/src/lib/components/buttons/ExcelButton.tsx +43 -0
- package/react-kit/src/lib/components/buttons/GoBackButton.tsx +22 -0
- package/react-kit/src/lib/components/buttons/HistoryButton.tsx +45 -0
- package/react-kit/src/lib/components/buttons/LoadingSuccessButton.tsx +53 -0
- package/react-kit/src/lib/components/buttons/ManageButton.tsx +31 -0
- package/react-kit/src/lib/components/buttons/SuccessButton.tsx +44 -0
- package/react-kit/src/lib/components/snack-bar/AppSnackBar.tsx +46 -0
- package/react-kit/src/lib/components/snack-bar/QuerySnackBar.tsx +62 -0
- package/react-kit/src/lib/components/table/TablePaginationActions.tsx +58 -0
- package/react-kit/src/lib/components/tabs/TabPanel.tsx +26 -0
- package/react-kit/src/lib/constants/AppConstants.ts +17 -0
- package/react-kit/src/lib/types/ProgressState.ts +7 -0
- package/react-kit/src/lib/utils/BooleanUtils.ts +13 -0
- package/react-kit/src/lib/utils/CssUtils.ts +13 -0
- package/react-kit/src/lib/utils/DateUtils.ts +43 -0
- package/react-kit/src/lib/utils/NumberUtils.ts +12 -0
- package/react-kit/src/lib/utils/ProgressStateUtils.ts +68 -0
- package/react-kit/src/lib/utils/StringUtils.ts +14 -0
- package/react-kit/src/lib/utils/UrlUtils.ts +19 -0
- package/react-kit/src/lib/utils/fetchClient.ts +64 -0
- package/react-kit/src/tests/buttons/CancelButton.test.tsx +69 -0
- package/react-kit/src/tests/buttons/DeleteButton.test.tsx +63 -0
- package/react-kit/src/tests/buttons/EditIconButton.test.tsx +34 -0
- package/react-kit/src/tests/buttons/HistoryButton.test.tsx +46 -0
- package/react-kit/src/tests/buttons/LoadingSuccessButton.test.tsx +53 -0
- package/react-kit/src/tests/buttons/ManageButton.test.tsx +49 -0
- package/react-kit/src/tests/buttons/SuccessButton.test.tsx +46 -0
- package/react-kit/src/tests/snack-bar/AppSnackBar.test.tsx +54 -0
- package/react-kit/src/tests/utils/BooleanUtils.test.ts +35 -0
- package/react-kit/src/tests/utils/CssUtils.test.ts +17 -0
- package/react-kit/src/tests/utils/DateUtils.test.ts +46 -0
- package/react-kit/src/tests/utils/NumberUtils.test.ts +19 -0
- package/react-kit/src/tests/utils/ProgressStateUtils.test.ts +131 -0
- package/react-kit/src/tests/utils/StringUtils.test.ts +33 -0
- package/react-kit/src/tests/utils/UrlUtils.test.ts +19 -0
- package/react-kit/tsconfig.json +22 -0
- package/react-kit/tsconfig.lib.json +24 -0
- package/react-kit/tsconfig.spec.json +27 -0
- package/react-kit/vite.config.ts +72 -0
- package/release.sh +28 -0
- package/tsconfig.base.json +22 -0
- package/vitest.workspace.js +3 -0
- package/vitest.workspace.ts +1 -0
- package/index.cjs +0 -74
- package/index.js +0 -4120
- package/lib/components/CenteredCircularProgress.d.ts +0 -7
- package/lib/components/ConfirmationDialog.d.ts +0 -11
- package/lib/components/DismissibleAlert.d.ts +0 -17
- package/lib/components/NextLink.d.ts +0 -17
- package/lib/components/OpenInNewIconLink.d.ts +0 -17
- package/lib/components/ReactIf.d.ts +0 -36
- package/lib/components/buttons/CancelButton.d.ts +0 -28
- package/lib/components/buttons/DeleteButton.d.ts +0 -16
- package/lib/components/buttons/EditIconButton.d.ts +0 -8
- package/lib/components/buttons/ExcelButton.d.ts +0 -26
- package/lib/components/buttons/GoBackButton.d.ts +0 -10
- package/lib/components/buttons/HistoryButton.d.ts +0 -28
- package/lib/components/buttons/LoadingSuccessButton.d.ts +0 -28
- package/lib/components/buttons/ManageButton.d.ts +0 -14
- package/lib/components/buttons/SuccessButton.d.ts +0 -28
- package/lib/components/snack-bar/AppSnackBar.d.ts +0 -6
- package/lib/components/snack-bar/QuerySnackBar.d.ts +0 -18
- package/lib/components/table/TablePaginationActions.d.ts +0 -9
- package/lib/components/tabs/TabPanel.d.ts +0 -12
- package/lib/constants/AppConstants.d.ts +0 -15
- package/lib/types/ProgressState.d.ts +0 -7
- package/lib/utils/BooleanUtils.d.ts +0 -7
- package/lib/utils/DateUtils.d.ts +0 -22
- package/lib/utils/NumberUtils.d.ts +0 -7
- package/lib/utils/ProgressStateUtils.d.ts +0 -38
- package/lib/utils/StringUtils.d.ts +0 -7
- package/lib/utils/UrlUtils.d.ts +0 -11
- package/lib/utils/fetchClient.d.ts +0 -12
|
@@ -0,0 +1,1330 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@js-smart/react-kit",
|
|
3
|
+
"version": "5.1.2",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@js-smart/react-kit",
|
|
9
|
+
"version": "5.1.2",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"peerDependencies": {
|
|
12
|
+
"@emotion/react": "^11.13.3",
|
|
13
|
+
"@emotion/styled": "^11.13.0",
|
|
14
|
+
"@mui/icons-material": "^6.1.7",
|
|
15
|
+
"@mui/lab": "^6.0.0-beta.15",
|
|
16
|
+
"@mui/material": "^6.1.7",
|
|
17
|
+
"date-fns": "^4.1.0",
|
|
18
|
+
"react": "^18.3.1",
|
|
19
|
+
"react-dom": "^18.3.1",
|
|
20
|
+
"react-router-dom": "^6.28.0"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"node_modules/@babel/code-frame": {
|
|
24
|
+
"version": "7.26.2",
|
|
25
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
|
|
26
|
+
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"peer": true,
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@babel/helper-validator-identifier": "^7.25.9",
|
|
31
|
+
"js-tokens": "^4.0.0",
|
|
32
|
+
"picocolors": "^1.0.0"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=6.9.0"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"node_modules/@babel/generator": {
|
|
39
|
+
"version": "7.26.2",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz",
|
|
41
|
+
"integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"peer": true,
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@babel/parser": "^7.26.2",
|
|
46
|
+
"@babel/types": "^7.26.0",
|
|
47
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
48
|
+
"@jridgewell/trace-mapping": "^0.3.25",
|
|
49
|
+
"jsesc": "^3.0.2"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=6.9.0"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"node_modules/@babel/helper-module-imports": {
|
|
56
|
+
"version": "7.25.9",
|
|
57
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
|
|
58
|
+
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
|
|
59
|
+
"license": "MIT",
|
|
60
|
+
"peer": true,
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@babel/traverse": "^7.25.9",
|
|
63
|
+
"@babel/types": "^7.25.9"
|
|
64
|
+
},
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">=6.9.0"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"node_modules/@babel/helper-string-parser": {
|
|
70
|
+
"version": "7.25.9",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
|
|
72
|
+
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
|
|
73
|
+
"license": "MIT",
|
|
74
|
+
"peer": true,
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=6.9.0"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
80
|
+
"version": "7.25.9",
|
|
81
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
|
|
82
|
+
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"peer": true,
|
|
85
|
+
"engines": {
|
|
86
|
+
"node": ">=6.9.0"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"node_modules/@babel/parser": {
|
|
90
|
+
"version": "7.26.2",
|
|
91
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz",
|
|
92
|
+
"integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==",
|
|
93
|
+
"license": "MIT",
|
|
94
|
+
"peer": true,
|
|
95
|
+
"dependencies": {
|
|
96
|
+
"@babel/types": "^7.26.0"
|
|
97
|
+
},
|
|
98
|
+
"bin": {
|
|
99
|
+
"parser": "bin/babel-parser.js"
|
|
100
|
+
},
|
|
101
|
+
"engines": {
|
|
102
|
+
"node": ">=6.0.0"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"node_modules/@babel/runtime": {
|
|
106
|
+
"version": "7.26.0",
|
|
107
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
|
|
108
|
+
"integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
|
|
109
|
+
"license": "MIT",
|
|
110
|
+
"peer": true,
|
|
111
|
+
"dependencies": {
|
|
112
|
+
"regenerator-runtime": "^0.14.0"
|
|
113
|
+
},
|
|
114
|
+
"engines": {
|
|
115
|
+
"node": ">=6.9.0"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"node_modules/@babel/template": {
|
|
119
|
+
"version": "7.25.9",
|
|
120
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
|
|
121
|
+
"integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
|
|
122
|
+
"license": "MIT",
|
|
123
|
+
"peer": true,
|
|
124
|
+
"dependencies": {
|
|
125
|
+
"@babel/code-frame": "^7.25.9",
|
|
126
|
+
"@babel/parser": "^7.25.9",
|
|
127
|
+
"@babel/types": "^7.25.9"
|
|
128
|
+
},
|
|
129
|
+
"engines": {
|
|
130
|
+
"node": ">=6.9.0"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"node_modules/@babel/traverse": {
|
|
134
|
+
"version": "7.25.9",
|
|
135
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz",
|
|
136
|
+
"integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==",
|
|
137
|
+
"license": "MIT",
|
|
138
|
+
"peer": true,
|
|
139
|
+
"dependencies": {
|
|
140
|
+
"@babel/code-frame": "^7.25.9",
|
|
141
|
+
"@babel/generator": "^7.25.9",
|
|
142
|
+
"@babel/parser": "^7.25.9",
|
|
143
|
+
"@babel/template": "^7.25.9",
|
|
144
|
+
"@babel/types": "^7.25.9",
|
|
145
|
+
"debug": "^4.3.1",
|
|
146
|
+
"globals": "^11.1.0"
|
|
147
|
+
},
|
|
148
|
+
"engines": {
|
|
149
|
+
"node": ">=6.9.0"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"node_modules/@babel/types": {
|
|
153
|
+
"version": "7.26.0",
|
|
154
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz",
|
|
155
|
+
"integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==",
|
|
156
|
+
"license": "MIT",
|
|
157
|
+
"peer": true,
|
|
158
|
+
"dependencies": {
|
|
159
|
+
"@babel/helper-string-parser": "^7.25.9",
|
|
160
|
+
"@babel/helper-validator-identifier": "^7.25.9"
|
|
161
|
+
},
|
|
162
|
+
"engines": {
|
|
163
|
+
"node": ">=6.9.0"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"node_modules/@emotion/babel-plugin": {
|
|
167
|
+
"version": "11.12.0",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.12.0.tgz",
|
|
169
|
+
"integrity": "sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==",
|
|
170
|
+
"license": "MIT",
|
|
171
|
+
"peer": true,
|
|
172
|
+
"dependencies": {
|
|
173
|
+
"@babel/helper-module-imports": "^7.16.7",
|
|
174
|
+
"@babel/runtime": "^7.18.3",
|
|
175
|
+
"@emotion/hash": "^0.9.2",
|
|
176
|
+
"@emotion/memoize": "^0.9.0",
|
|
177
|
+
"@emotion/serialize": "^1.2.0",
|
|
178
|
+
"babel-plugin-macros": "^3.1.0",
|
|
179
|
+
"convert-source-map": "^1.5.0",
|
|
180
|
+
"escape-string-regexp": "^4.0.0",
|
|
181
|
+
"find-root": "^1.1.0",
|
|
182
|
+
"source-map": "^0.5.7",
|
|
183
|
+
"stylis": "4.2.0"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"node_modules/@emotion/cache": {
|
|
187
|
+
"version": "11.13.1",
|
|
188
|
+
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.13.1.tgz",
|
|
189
|
+
"integrity": "sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==",
|
|
190
|
+
"license": "MIT",
|
|
191
|
+
"peer": true,
|
|
192
|
+
"dependencies": {
|
|
193
|
+
"@emotion/memoize": "^0.9.0",
|
|
194
|
+
"@emotion/sheet": "^1.4.0",
|
|
195
|
+
"@emotion/utils": "^1.4.0",
|
|
196
|
+
"@emotion/weak-memoize": "^0.4.0",
|
|
197
|
+
"stylis": "4.2.0"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"node_modules/@emotion/hash": {
|
|
201
|
+
"version": "0.9.2",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
|
|
203
|
+
"integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
|
|
204
|
+
"license": "MIT",
|
|
205
|
+
"peer": true
|
|
206
|
+
},
|
|
207
|
+
"node_modules/@emotion/is-prop-valid": {
|
|
208
|
+
"version": "1.3.1",
|
|
209
|
+
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz",
|
|
210
|
+
"integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==",
|
|
211
|
+
"license": "MIT",
|
|
212
|
+
"peer": true,
|
|
213
|
+
"dependencies": {
|
|
214
|
+
"@emotion/memoize": "^0.9.0"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"node_modules/@emotion/memoize": {
|
|
218
|
+
"version": "0.9.0",
|
|
219
|
+
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
|
|
220
|
+
"integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==",
|
|
221
|
+
"license": "MIT",
|
|
222
|
+
"peer": true
|
|
223
|
+
},
|
|
224
|
+
"node_modules/@emotion/react": {
|
|
225
|
+
"version": "11.13.3",
|
|
226
|
+
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.13.3.tgz",
|
|
227
|
+
"integrity": "sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==",
|
|
228
|
+
"license": "MIT",
|
|
229
|
+
"peer": true,
|
|
230
|
+
"dependencies": {
|
|
231
|
+
"@babel/runtime": "^7.18.3",
|
|
232
|
+
"@emotion/babel-plugin": "^11.12.0",
|
|
233
|
+
"@emotion/cache": "^11.13.0",
|
|
234
|
+
"@emotion/serialize": "^1.3.1",
|
|
235
|
+
"@emotion/use-insertion-effect-with-fallbacks": "^1.1.0",
|
|
236
|
+
"@emotion/utils": "^1.4.0",
|
|
237
|
+
"@emotion/weak-memoize": "^0.4.0",
|
|
238
|
+
"hoist-non-react-statics": "^3.3.1"
|
|
239
|
+
},
|
|
240
|
+
"peerDependencies": {
|
|
241
|
+
"react": ">=16.8.0"
|
|
242
|
+
},
|
|
243
|
+
"peerDependenciesMeta": {
|
|
244
|
+
"@types/react": {
|
|
245
|
+
"optional": true
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"node_modules/@emotion/serialize": {
|
|
250
|
+
"version": "1.3.2",
|
|
251
|
+
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.2.tgz",
|
|
252
|
+
"integrity": "sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA==",
|
|
253
|
+
"license": "MIT",
|
|
254
|
+
"peer": true,
|
|
255
|
+
"dependencies": {
|
|
256
|
+
"@emotion/hash": "^0.9.2",
|
|
257
|
+
"@emotion/memoize": "^0.9.0",
|
|
258
|
+
"@emotion/unitless": "^0.10.0",
|
|
259
|
+
"@emotion/utils": "^1.4.1",
|
|
260
|
+
"csstype": "^3.0.2"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"node_modules/@emotion/sheet": {
|
|
264
|
+
"version": "1.4.0",
|
|
265
|
+
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
|
|
266
|
+
"integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==",
|
|
267
|
+
"license": "MIT",
|
|
268
|
+
"peer": true
|
|
269
|
+
},
|
|
270
|
+
"node_modules/@emotion/styled": {
|
|
271
|
+
"version": "11.13.0",
|
|
272
|
+
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.13.0.tgz",
|
|
273
|
+
"integrity": "sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==",
|
|
274
|
+
"license": "MIT",
|
|
275
|
+
"peer": true,
|
|
276
|
+
"dependencies": {
|
|
277
|
+
"@babel/runtime": "^7.18.3",
|
|
278
|
+
"@emotion/babel-plugin": "^11.12.0",
|
|
279
|
+
"@emotion/is-prop-valid": "^1.3.0",
|
|
280
|
+
"@emotion/serialize": "^1.3.0",
|
|
281
|
+
"@emotion/use-insertion-effect-with-fallbacks": "^1.1.0",
|
|
282
|
+
"@emotion/utils": "^1.4.0"
|
|
283
|
+
},
|
|
284
|
+
"peerDependencies": {
|
|
285
|
+
"@emotion/react": "^11.0.0-rc.0",
|
|
286
|
+
"react": ">=16.8.0"
|
|
287
|
+
},
|
|
288
|
+
"peerDependenciesMeta": {
|
|
289
|
+
"@types/react": {
|
|
290
|
+
"optional": true
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"node_modules/@emotion/unitless": {
|
|
295
|
+
"version": "0.10.0",
|
|
296
|
+
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
|
|
297
|
+
"integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
|
|
298
|
+
"license": "MIT",
|
|
299
|
+
"peer": true
|
|
300
|
+
},
|
|
301
|
+
"node_modules/@emotion/use-insertion-effect-with-fallbacks": {
|
|
302
|
+
"version": "1.1.0",
|
|
303
|
+
"resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.1.0.tgz",
|
|
304
|
+
"integrity": "sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==",
|
|
305
|
+
"license": "MIT",
|
|
306
|
+
"peer": true,
|
|
307
|
+
"peerDependencies": {
|
|
308
|
+
"react": ">=16.8.0"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"node_modules/@emotion/utils": {
|
|
312
|
+
"version": "1.4.1",
|
|
313
|
+
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.1.tgz",
|
|
314
|
+
"integrity": "sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA==",
|
|
315
|
+
"license": "MIT",
|
|
316
|
+
"peer": true
|
|
317
|
+
},
|
|
318
|
+
"node_modules/@emotion/weak-memoize": {
|
|
319
|
+
"version": "0.4.0",
|
|
320
|
+
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
|
|
321
|
+
"integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==",
|
|
322
|
+
"license": "MIT",
|
|
323
|
+
"peer": true
|
|
324
|
+
},
|
|
325
|
+
"node_modules/@floating-ui/core": {
|
|
326
|
+
"version": "1.6.8",
|
|
327
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz",
|
|
328
|
+
"integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==",
|
|
329
|
+
"license": "MIT",
|
|
330
|
+
"peer": true,
|
|
331
|
+
"dependencies": {
|
|
332
|
+
"@floating-ui/utils": "^0.2.8"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"node_modules/@floating-ui/dom": {
|
|
336
|
+
"version": "1.6.12",
|
|
337
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.12.tgz",
|
|
338
|
+
"integrity": "sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==",
|
|
339
|
+
"license": "MIT",
|
|
340
|
+
"peer": true,
|
|
341
|
+
"dependencies": {
|
|
342
|
+
"@floating-ui/core": "^1.6.0",
|
|
343
|
+
"@floating-ui/utils": "^0.2.8"
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
"node_modules/@floating-ui/react-dom": {
|
|
347
|
+
"version": "2.1.2",
|
|
348
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.2.tgz",
|
|
349
|
+
"integrity": "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==",
|
|
350
|
+
"license": "MIT",
|
|
351
|
+
"peer": true,
|
|
352
|
+
"dependencies": {
|
|
353
|
+
"@floating-ui/dom": "^1.0.0"
|
|
354
|
+
},
|
|
355
|
+
"peerDependencies": {
|
|
356
|
+
"react": ">=16.8.0",
|
|
357
|
+
"react-dom": ">=16.8.0"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"node_modules/@floating-ui/utils": {
|
|
361
|
+
"version": "0.2.8",
|
|
362
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz",
|
|
363
|
+
"integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==",
|
|
364
|
+
"license": "MIT",
|
|
365
|
+
"peer": true
|
|
366
|
+
},
|
|
367
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
368
|
+
"version": "0.3.5",
|
|
369
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
|
|
370
|
+
"integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
|
|
371
|
+
"license": "MIT",
|
|
372
|
+
"peer": true,
|
|
373
|
+
"dependencies": {
|
|
374
|
+
"@jridgewell/set-array": "^1.2.1",
|
|
375
|
+
"@jridgewell/sourcemap-codec": "^1.4.10",
|
|
376
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
377
|
+
},
|
|
378
|
+
"engines": {
|
|
379
|
+
"node": ">=6.0.0"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
383
|
+
"version": "3.1.2",
|
|
384
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
385
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
386
|
+
"license": "MIT",
|
|
387
|
+
"peer": true,
|
|
388
|
+
"engines": {
|
|
389
|
+
"node": ">=6.0.0"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"node_modules/@jridgewell/set-array": {
|
|
393
|
+
"version": "1.2.1",
|
|
394
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
|
|
395
|
+
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
|
|
396
|
+
"license": "MIT",
|
|
397
|
+
"peer": true,
|
|
398
|
+
"engines": {
|
|
399
|
+
"node": ">=6.0.0"
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
403
|
+
"version": "1.5.0",
|
|
404
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
|
|
405
|
+
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
|
|
406
|
+
"license": "MIT",
|
|
407
|
+
"peer": true
|
|
408
|
+
},
|
|
409
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
410
|
+
"version": "0.3.25",
|
|
411
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
|
|
412
|
+
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
|
|
413
|
+
"license": "MIT",
|
|
414
|
+
"peer": true,
|
|
415
|
+
"dependencies": {
|
|
416
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
417
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"node_modules/@mui/base": {
|
|
421
|
+
"version": "5.0.0-beta.61",
|
|
422
|
+
"resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.61.tgz",
|
|
423
|
+
"integrity": "sha512-YaMOTXS3ecDNGsPKa6UdlJ8loFLvcL9+VbpCK3hfk71OaNauZRp4Yf7KeXDYr7Ms3M/XBD3SaiR6JMr6vYtfDg==",
|
|
424
|
+
"license": "MIT",
|
|
425
|
+
"peer": true,
|
|
426
|
+
"dependencies": {
|
|
427
|
+
"@babel/runtime": "^7.26.0",
|
|
428
|
+
"@floating-ui/react-dom": "^2.1.1",
|
|
429
|
+
"@mui/types": "^7.2.19",
|
|
430
|
+
"@mui/utils": "^6.1.6",
|
|
431
|
+
"@popperjs/core": "^2.11.8",
|
|
432
|
+
"clsx": "^2.1.1",
|
|
433
|
+
"prop-types": "^15.8.1"
|
|
434
|
+
},
|
|
435
|
+
"engines": {
|
|
436
|
+
"node": ">=14.0.0"
|
|
437
|
+
},
|
|
438
|
+
"funding": {
|
|
439
|
+
"type": "opencollective",
|
|
440
|
+
"url": "https://opencollective.com/mui-org"
|
|
441
|
+
},
|
|
442
|
+
"peerDependencies": {
|
|
443
|
+
"@types/react": "^17.0.0 || ^18.0.0",
|
|
444
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
445
|
+
"react-dom": "^17.0.0 || ^18.0.0"
|
|
446
|
+
},
|
|
447
|
+
"peerDependenciesMeta": {
|
|
448
|
+
"@types/react": {
|
|
449
|
+
"optional": true
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"node_modules/@mui/core-downloads-tracker": {
|
|
454
|
+
"version": "6.1.7",
|
|
455
|
+
"resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-6.1.7.tgz",
|
|
456
|
+
"integrity": "sha512-POuIBi80BZBogQkG4PQKIGwy4QFwB+kOr+OI4k7Znh7LqMAIhwB9OC00l6M+w1GrZJYj3T8R5WX8G6QAIvoVEw==",
|
|
457
|
+
"license": "MIT",
|
|
458
|
+
"peer": true,
|
|
459
|
+
"funding": {
|
|
460
|
+
"type": "opencollective",
|
|
461
|
+
"url": "https://opencollective.com/mui-org"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"node_modules/@mui/icons-material": {
|
|
465
|
+
"version": "6.1.7",
|
|
466
|
+
"resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-6.1.7.tgz",
|
|
467
|
+
"integrity": "sha512-RGzkeHNArIVy5ZQ12bq/8VYNeICEyngngsFskTJ/2hYKhIeIII3iRGtaZaSvLpXh7h3Fg3VKTulT+QU0w5K4XQ==",
|
|
468
|
+
"license": "MIT",
|
|
469
|
+
"peer": true,
|
|
470
|
+
"dependencies": {
|
|
471
|
+
"@babel/runtime": "^7.26.0"
|
|
472
|
+
},
|
|
473
|
+
"engines": {
|
|
474
|
+
"node": ">=14.0.0"
|
|
475
|
+
},
|
|
476
|
+
"funding": {
|
|
477
|
+
"type": "opencollective",
|
|
478
|
+
"url": "https://opencollective.com/mui-org"
|
|
479
|
+
},
|
|
480
|
+
"peerDependencies": {
|
|
481
|
+
"@mui/material": "^6.1.7",
|
|
482
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
483
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
484
|
+
},
|
|
485
|
+
"peerDependenciesMeta": {
|
|
486
|
+
"@types/react": {
|
|
487
|
+
"optional": true
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"node_modules/@mui/lab": {
|
|
492
|
+
"version": "6.0.0-beta.15",
|
|
493
|
+
"resolved": "https://registry.npmjs.org/@mui/lab/-/lab-6.0.0-beta.15.tgz",
|
|
494
|
+
"integrity": "sha512-LwX34gdIBBpIHi0RkWUjktCnX1rEB+U2tOzDKfF2f4h+GXTO+DOjAXTkFw558zQ8SWmpQTOUp58sGRxlZ2x9FQ==",
|
|
495
|
+
"license": "MIT",
|
|
496
|
+
"peer": true,
|
|
497
|
+
"dependencies": {
|
|
498
|
+
"@babel/runtime": "^7.26.0",
|
|
499
|
+
"@mui/base": "5.0.0-beta.61",
|
|
500
|
+
"@mui/system": "^6.1.7",
|
|
501
|
+
"@mui/types": "^7.2.19",
|
|
502
|
+
"@mui/utils": "^6.1.7",
|
|
503
|
+
"clsx": "^2.1.1",
|
|
504
|
+
"prop-types": "^15.8.1"
|
|
505
|
+
},
|
|
506
|
+
"engines": {
|
|
507
|
+
"node": ">=14.0.0"
|
|
508
|
+
},
|
|
509
|
+
"funding": {
|
|
510
|
+
"type": "opencollective",
|
|
511
|
+
"url": "https://opencollective.com/mui-org"
|
|
512
|
+
},
|
|
513
|
+
"peerDependencies": {
|
|
514
|
+
"@emotion/react": "^11.5.0",
|
|
515
|
+
"@emotion/styled": "^11.3.0",
|
|
516
|
+
"@mui/material": "^6.1.7",
|
|
517
|
+
"@mui/material-pigment-css": "^6.1.7",
|
|
518
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
519
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
520
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
521
|
+
},
|
|
522
|
+
"peerDependenciesMeta": {
|
|
523
|
+
"@emotion/react": {
|
|
524
|
+
"optional": true
|
|
525
|
+
},
|
|
526
|
+
"@emotion/styled": {
|
|
527
|
+
"optional": true
|
|
528
|
+
},
|
|
529
|
+
"@mui/material-pigment-css": {
|
|
530
|
+
"optional": true
|
|
531
|
+
},
|
|
532
|
+
"@types/react": {
|
|
533
|
+
"optional": true
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
"node_modules/@mui/material": {
|
|
538
|
+
"version": "6.1.7",
|
|
539
|
+
"resolved": "https://registry.npmjs.org/@mui/material/-/material-6.1.7.tgz",
|
|
540
|
+
"integrity": "sha512-KsjujQL/A2hLd1PV3QboF+W6SSL5QqH6ZlSuQoeYz9r69+TnyBFIevbYLxdjJcJmGBjigL5pfpn7hTGop+vhSg==",
|
|
541
|
+
"license": "MIT",
|
|
542
|
+
"peer": true,
|
|
543
|
+
"dependencies": {
|
|
544
|
+
"@babel/runtime": "^7.26.0",
|
|
545
|
+
"@mui/core-downloads-tracker": "^6.1.7",
|
|
546
|
+
"@mui/system": "^6.1.7",
|
|
547
|
+
"@mui/types": "^7.2.19",
|
|
548
|
+
"@mui/utils": "^6.1.7",
|
|
549
|
+
"@popperjs/core": "^2.11.8",
|
|
550
|
+
"@types/react-transition-group": "^4.4.11",
|
|
551
|
+
"clsx": "^2.1.1",
|
|
552
|
+
"csstype": "^3.1.3",
|
|
553
|
+
"prop-types": "^15.8.1",
|
|
554
|
+
"react-is": "^18.3.1",
|
|
555
|
+
"react-transition-group": "^4.4.5"
|
|
556
|
+
},
|
|
557
|
+
"engines": {
|
|
558
|
+
"node": ">=14.0.0"
|
|
559
|
+
},
|
|
560
|
+
"funding": {
|
|
561
|
+
"type": "opencollective",
|
|
562
|
+
"url": "https://opencollective.com/mui-org"
|
|
563
|
+
},
|
|
564
|
+
"peerDependencies": {
|
|
565
|
+
"@emotion/react": "^11.5.0",
|
|
566
|
+
"@emotion/styled": "^11.3.0",
|
|
567
|
+
"@mui/material-pigment-css": "^6.1.7",
|
|
568
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
569
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
570
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
571
|
+
},
|
|
572
|
+
"peerDependenciesMeta": {
|
|
573
|
+
"@emotion/react": {
|
|
574
|
+
"optional": true
|
|
575
|
+
},
|
|
576
|
+
"@emotion/styled": {
|
|
577
|
+
"optional": true
|
|
578
|
+
},
|
|
579
|
+
"@mui/material-pigment-css": {
|
|
580
|
+
"optional": true
|
|
581
|
+
},
|
|
582
|
+
"@types/react": {
|
|
583
|
+
"optional": true
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"node_modules/@mui/private-theming": {
|
|
588
|
+
"version": "6.1.7",
|
|
589
|
+
"resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-6.1.7.tgz",
|
|
590
|
+
"integrity": "sha512-uLbfUSsug5K0LVkv0PI6Flste3le8+6WSL2omdTiYde93P89Qr7pKr8TA6d2yXfr+Bm+SvD8/fGnkaRwFkryuQ==",
|
|
591
|
+
"license": "MIT",
|
|
592
|
+
"peer": true,
|
|
593
|
+
"dependencies": {
|
|
594
|
+
"@babel/runtime": "^7.26.0",
|
|
595
|
+
"@mui/utils": "^6.1.7",
|
|
596
|
+
"prop-types": "^15.8.1"
|
|
597
|
+
},
|
|
598
|
+
"engines": {
|
|
599
|
+
"node": ">=14.0.0"
|
|
600
|
+
},
|
|
601
|
+
"funding": {
|
|
602
|
+
"type": "opencollective",
|
|
603
|
+
"url": "https://opencollective.com/mui-org"
|
|
604
|
+
},
|
|
605
|
+
"peerDependencies": {
|
|
606
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
607
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
608
|
+
},
|
|
609
|
+
"peerDependenciesMeta": {
|
|
610
|
+
"@types/react": {
|
|
611
|
+
"optional": true
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
"node_modules/@mui/styled-engine": {
|
|
616
|
+
"version": "6.1.7",
|
|
617
|
+
"resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-6.1.7.tgz",
|
|
618
|
+
"integrity": "sha512-Ou4CxN7MQmwrfG1Pu6EYjPgPChQXxPDJrwgizLXlRPOad5qAq4gYXRuzrGQ2DfGjjwmJhjI8T6A0SeapAZPGig==",
|
|
619
|
+
"license": "MIT",
|
|
620
|
+
"peer": true,
|
|
621
|
+
"dependencies": {
|
|
622
|
+
"@babel/runtime": "^7.26.0",
|
|
623
|
+
"@emotion/cache": "^11.13.1",
|
|
624
|
+
"@emotion/serialize": "^1.3.2",
|
|
625
|
+
"@emotion/sheet": "^1.4.0",
|
|
626
|
+
"csstype": "^3.1.3",
|
|
627
|
+
"prop-types": "^15.8.1"
|
|
628
|
+
},
|
|
629
|
+
"engines": {
|
|
630
|
+
"node": ">=14.0.0"
|
|
631
|
+
},
|
|
632
|
+
"funding": {
|
|
633
|
+
"type": "opencollective",
|
|
634
|
+
"url": "https://opencollective.com/mui-org"
|
|
635
|
+
},
|
|
636
|
+
"peerDependencies": {
|
|
637
|
+
"@emotion/react": "^11.4.1",
|
|
638
|
+
"@emotion/styled": "^11.3.0",
|
|
639
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
640
|
+
},
|
|
641
|
+
"peerDependenciesMeta": {
|
|
642
|
+
"@emotion/react": {
|
|
643
|
+
"optional": true
|
|
644
|
+
},
|
|
645
|
+
"@emotion/styled": {
|
|
646
|
+
"optional": true
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
},
|
|
650
|
+
"node_modules/@mui/system": {
|
|
651
|
+
"version": "6.1.7",
|
|
652
|
+
"resolved": "https://registry.npmjs.org/@mui/system/-/system-6.1.7.tgz",
|
|
653
|
+
"integrity": "sha512-qbMGgcC/FodpuRSfjXlEDdbNQaW++eATh0vNBcPUv2/YXSpReoOpoT9FhogxEBNks+aQViDXBRZKh6HX2fVmwg==",
|
|
654
|
+
"license": "MIT",
|
|
655
|
+
"peer": true,
|
|
656
|
+
"dependencies": {
|
|
657
|
+
"@babel/runtime": "^7.26.0",
|
|
658
|
+
"@mui/private-theming": "^6.1.7",
|
|
659
|
+
"@mui/styled-engine": "^6.1.7",
|
|
660
|
+
"@mui/types": "^7.2.19",
|
|
661
|
+
"@mui/utils": "^6.1.7",
|
|
662
|
+
"clsx": "^2.1.1",
|
|
663
|
+
"csstype": "^3.1.3",
|
|
664
|
+
"prop-types": "^15.8.1"
|
|
665
|
+
},
|
|
666
|
+
"engines": {
|
|
667
|
+
"node": ">=14.0.0"
|
|
668
|
+
},
|
|
669
|
+
"funding": {
|
|
670
|
+
"type": "opencollective",
|
|
671
|
+
"url": "https://opencollective.com/mui-org"
|
|
672
|
+
},
|
|
673
|
+
"peerDependencies": {
|
|
674
|
+
"@emotion/react": "^11.5.0",
|
|
675
|
+
"@emotion/styled": "^11.3.0",
|
|
676
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
677
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
678
|
+
},
|
|
679
|
+
"peerDependenciesMeta": {
|
|
680
|
+
"@emotion/react": {
|
|
681
|
+
"optional": true
|
|
682
|
+
},
|
|
683
|
+
"@emotion/styled": {
|
|
684
|
+
"optional": true
|
|
685
|
+
},
|
|
686
|
+
"@types/react": {
|
|
687
|
+
"optional": true
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"node_modules/@mui/types": {
|
|
692
|
+
"version": "7.2.19",
|
|
693
|
+
"resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.19.tgz",
|
|
694
|
+
"integrity": "sha512-6XpZEM/Q3epK9RN8ENoXuygnqUQxE+siN/6rGRi2iwJPgBUR25mphYQ9ZI87plGh58YoZ5pp40bFvKYOCDJ3tA==",
|
|
695
|
+
"license": "MIT",
|
|
696
|
+
"peer": true,
|
|
697
|
+
"peerDependencies": {
|
|
698
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
699
|
+
},
|
|
700
|
+
"peerDependenciesMeta": {
|
|
701
|
+
"@types/react": {
|
|
702
|
+
"optional": true
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
"node_modules/@mui/utils": {
|
|
707
|
+
"version": "6.1.7",
|
|
708
|
+
"resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.1.7.tgz",
|
|
709
|
+
"integrity": "sha512-Gr7cRZxBoZ0BIa3Xqf/2YaUrBLyNPJvXPQH3OsD9WMZukI/TutibbQBVqLYpgqJn8pKSjbD50Yq2auG0wI1xOw==",
|
|
710
|
+
"license": "MIT",
|
|
711
|
+
"peer": true,
|
|
712
|
+
"dependencies": {
|
|
713
|
+
"@babel/runtime": "^7.26.0",
|
|
714
|
+
"@mui/types": "^7.2.19",
|
|
715
|
+
"@types/prop-types": "^15.7.13",
|
|
716
|
+
"clsx": "^2.1.1",
|
|
717
|
+
"prop-types": "^15.8.1",
|
|
718
|
+
"react-is": "^18.3.1"
|
|
719
|
+
},
|
|
720
|
+
"engines": {
|
|
721
|
+
"node": ">=14.0.0"
|
|
722
|
+
},
|
|
723
|
+
"funding": {
|
|
724
|
+
"type": "opencollective",
|
|
725
|
+
"url": "https://opencollective.com/mui-org"
|
|
726
|
+
},
|
|
727
|
+
"peerDependencies": {
|
|
728
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
729
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
730
|
+
},
|
|
731
|
+
"peerDependenciesMeta": {
|
|
732
|
+
"@types/react": {
|
|
733
|
+
"optional": true
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
},
|
|
737
|
+
"node_modules/@popperjs/core": {
|
|
738
|
+
"version": "2.11.8",
|
|
739
|
+
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
|
|
740
|
+
"integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
|
|
741
|
+
"license": "MIT",
|
|
742
|
+
"peer": true,
|
|
743
|
+
"funding": {
|
|
744
|
+
"type": "opencollective",
|
|
745
|
+
"url": "https://opencollective.com/popperjs"
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
"node_modules/@remix-run/router": {
|
|
749
|
+
"version": "1.21.0",
|
|
750
|
+
"resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.21.0.tgz",
|
|
751
|
+
"integrity": "sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==",
|
|
752
|
+
"license": "MIT",
|
|
753
|
+
"peer": true,
|
|
754
|
+
"engines": {
|
|
755
|
+
"node": ">=14.0.0"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"node_modules/@types/parse-json": {
|
|
759
|
+
"version": "4.0.2",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
|
|
761
|
+
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
|
|
762
|
+
"license": "MIT",
|
|
763
|
+
"peer": true
|
|
764
|
+
},
|
|
765
|
+
"node_modules/@types/prop-types": {
|
|
766
|
+
"version": "15.7.13",
|
|
767
|
+
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz",
|
|
768
|
+
"integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==",
|
|
769
|
+
"license": "MIT",
|
|
770
|
+
"peer": true
|
|
771
|
+
},
|
|
772
|
+
"node_modules/@types/react": {
|
|
773
|
+
"version": "18.3.12",
|
|
774
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz",
|
|
775
|
+
"integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==",
|
|
776
|
+
"license": "MIT",
|
|
777
|
+
"peer": true,
|
|
778
|
+
"dependencies": {
|
|
779
|
+
"@types/prop-types": "*",
|
|
780
|
+
"csstype": "^3.0.2"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"node_modules/@types/react-transition-group": {
|
|
784
|
+
"version": "4.4.11",
|
|
785
|
+
"resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.11.tgz",
|
|
786
|
+
"integrity": "sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==",
|
|
787
|
+
"license": "MIT",
|
|
788
|
+
"peer": true,
|
|
789
|
+
"dependencies": {
|
|
790
|
+
"@types/react": "*"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
"node_modules/babel-plugin-macros": {
|
|
794
|
+
"version": "3.1.0",
|
|
795
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
|
|
796
|
+
"integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
|
|
797
|
+
"license": "MIT",
|
|
798
|
+
"peer": true,
|
|
799
|
+
"dependencies": {
|
|
800
|
+
"@babel/runtime": "^7.12.5",
|
|
801
|
+
"cosmiconfig": "^7.0.0",
|
|
802
|
+
"resolve": "^1.19.0"
|
|
803
|
+
},
|
|
804
|
+
"engines": {
|
|
805
|
+
"node": ">=10",
|
|
806
|
+
"npm": ">=6"
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
"node_modules/callsites": {
|
|
810
|
+
"version": "3.1.0",
|
|
811
|
+
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
|
|
812
|
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
|
|
813
|
+
"license": "MIT",
|
|
814
|
+
"peer": true,
|
|
815
|
+
"engines": {
|
|
816
|
+
"node": ">=6"
|
|
817
|
+
}
|
|
818
|
+
},
|
|
819
|
+
"node_modules/clsx": {
|
|
820
|
+
"version": "2.1.1",
|
|
821
|
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
|
|
822
|
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
|
|
823
|
+
"license": "MIT",
|
|
824
|
+
"peer": true,
|
|
825
|
+
"engines": {
|
|
826
|
+
"node": ">=6"
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
"node_modules/convert-source-map": {
|
|
830
|
+
"version": "1.9.0",
|
|
831
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
|
|
832
|
+
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
|
|
833
|
+
"license": "MIT",
|
|
834
|
+
"peer": true
|
|
835
|
+
},
|
|
836
|
+
"node_modules/cosmiconfig": {
|
|
837
|
+
"version": "7.1.0",
|
|
838
|
+
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
|
|
839
|
+
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
|
|
840
|
+
"license": "MIT",
|
|
841
|
+
"peer": true,
|
|
842
|
+
"dependencies": {
|
|
843
|
+
"@types/parse-json": "^4.0.0",
|
|
844
|
+
"import-fresh": "^3.2.1",
|
|
845
|
+
"parse-json": "^5.0.0",
|
|
846
|
+
"path-type": "^4.0.0",
|
|
847
|
+
"yaml": "^1.10.0"
|
|
848
|
+
},
|
|
849
|
+
"engines": {
|
|
850
|
+
"node": ">=10"
|
|
851
|
+
}
|
|
852
|
+
},
|
|
853
|
+
"node_modules/csstype": {
|
|
854
|
+
"version": "3.1.3",
|
|
855
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
|
856
|
+
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
|
857
|
+
"license": "MIT",
|
|
858
|
+
"peer": true
|
|
859
|
+
},
|
|
860
|
+
"node_modules/date-fns": {
|
|
861
|
+
"version": "4.1.0",
|
|
862
|
+
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz",
|
|
863
|
+
"integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==",
|
|
864
|
+
"license": "MIT",
|
|
865
|
+
"peer": true,
|
|
866
|
+
"funding": {
|
|
867
|
+
"type": "github",
|
|
868
|
+
"url": "https://github.com/sponsors/kossnocorp"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
"node_modules/debug": {
|
|
872
|
+
"version": "4.3.7",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
|
874
|
+
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
|
875
|
+
"license": "MIT",
|
|
876
|
+
"peer": true,
|
|
877
|
+
"dependencies": {
|
|
878
|
+
"ms": "^2.1.3"
|
|
879
|
+
},
|
|
880
|
+
"engines": {
|
|
881
|
+
"node": ">=6.0"
|
|
882
|
+
},
|
|
883
|
+
"peerDependenciesMeta": {
|
|
884
|
+
"supports-color": {
|
|
885
|
+
"optional": true
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
},
|
|
889
|
+
"node_modules/dom-helpers": {
|
|
890
|
+
"version": "5.2.1",
|
|
891
|
+
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
|
|
892
|
+
"integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
|
|
893
|
+
"license": "MIT",
|
|
894
|
+
"peer": true,
|
|
895
|
+
"dependencies": {
|
|
896
|
+
"@babel/runtime": "^7.8.7",
|
|
897
|
+
"csstype": "^3.0.2"
|
|
898
|
+
}
|
|
899
|
+
},
|
|
900
|
+
"node_modules/error-ex": {
|
|
901
|
+
"version": "1.3.2",
|
|
902
|
+
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
|
903
|
+
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
|
|
904
|
+
"license": "MIT",
|
|
905
|
+
"peer": true,
|
|
906
|
+
"dependencies": {
|
|
907
|
+
"is-arrayish": "^0.2.1"
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
"node_modules/escape-string-regexp": {
|
|
911
|
+
"version": "4.0.0",
|
|
912
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
913
|
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
914
|
+
"license": "MIT",
|
|
915
|
+
"peer": true,
|
|
916
|
+
"engines": {
|
|
917
|
+
"node": ">=10"
|
|
918
|
+
},
|
|
919
|
+
"funding": {
|
|
920
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
921
|
+
}
|
|
922
|
+
},
|
|
923
|
+
"node_modules/find-root": {
|
|
924
|
+
"version": "1.1.0",
|
|
925
|
+
"resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
|
|
926
|
+
"integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
|
|
927
|
+
"license": "MIT",
|
|
928
|
+
"peer": true
|
|
929
|
+
},
|
|
930
|
+
"node_modules/function-bind": {
|
|
931
|
+
"version": "1.1.2",
|
|
932
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
933
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
934
|
+
"license": "MIT",
|
|
935
|
+
"peer": true,
|
|
936
|
+
"funding": {
|
|
937
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
"node_modules/globals": {
|
|
941
|
+
"version": "11.12.0",
|
|
942
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
|
|
943
|
+
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
|
944
|
+
"license": "MIT",
|
|
945
|
+
"peer": true,
|
|
946
|
+
"engines": {
|
|
947
|
+
"node": ">=4"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
"node_modules/hasown": {
|
|
951
|
+
"version": "2.0.2",
|
|
952
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
953
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
954
|
+
"license": "MIT",
|
|
955
|
+
"peer": true,
|
|
956
|
+
"dependencies": {
|
|
957
|
+
"function-bind": "^1.1.2"
|
|
958
|
+
},
|
|
959
|
+
"engines": {
|
|
960
|
+
"node": ">= 0.4"
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"node_modules/hoist-non-react-statics": {
|
|
964
|
+
"version": "3.3.2",
|
|
965
|
+
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
|
|
966
|
+
"integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
|
|
967
|
+
"license": "BSD-3-Clause",
|
|
968
|
+
"peer": true,
|
|
969
|
+
"dependencies": {
|
|
970
|
+
"react-is": "^16.7.0"
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
"node_modules/hoist-non-react-statics/node_modules/react-is": {
|
|
974
|
+
"version": "16.13.1",
|
|
975
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
|
976
|
+
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
|
|
977
|
+
"license": "MIT",
|
|
978
|
+
"peer": true
|
|
979
|
+
},
|
|
980
|
+
"node_modules/import-fresh": {
|
|
981
|
+
"version": "3.3.0",
|
|
982
|
+
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
|
|
983
|
+
"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
|
|
984
|
+
"license": "MIT",
|
|
985
|
+
"peer": true,
|
|
986
|
+
"dependencies": {
|
|
987
|
+
"parent-module": "^1.0.0",
|
|
988
|
+
"resolve-from": "^4.0.0"
|
|
989
|
+
},
|
|
990
|
+
"engines": {
|
|
991
|
+
"node": ">=6"
|
|
992
|
+
},
|
|
993
|
+
"funding": {
|
|
994
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
"node_modules/is-arrayish": {
|
|
998
|
+
"version": "0.2.1",
|
|
999
|
+
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
|
1000
|
+
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
|
|
1001
|
+
"license": "MIT",
|
|
1002
|
+
"peer": true
|
|
1003
|
+
},
|
|
1004
|
+
"node_modules/is-core-module": {
|
|
1005
|
+
"version": "2.15.1",
|
|
1006
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
|
|
1007
|
+
"integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
|
|
1008
|
+
"license": "MIT",
|
|
1009
|
+
"peer": true,
|
|
1010
|
+
"dependencies": {
|
|
1011
|
+
"hasown": "^2.0.2"
|
|
1012
|
+
},
|
|
1013
|
+
"engines": {
|
|
1014
|
+
"node": ">= 0.4"
|
|
1015
|
+
},
|
|
1016
|
+
"funding": {
|
|
1017
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"node_modules/js-tokens": {
|
|
1021
|
+
"version": "4.0.0",
|
|
1022
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
1023
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
1024
|
+
"license": "MIT",
|
|
1025
|
+
"peer": true
|
|
1026
|
+
},
|
|
1027
|
+
"node_modules/jsesc": {
|
|
1028
|
+
"version": "3.0.2",
|
|
1029
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
|
|
1030
|
+
"integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
|
|
1031
|
+
"license": "MIT",
|
|
1032
|
+
"peer": true,
|
|
1033
|
+
"bin": {
|
|
1034
|
+
"jsesc": "bin/jsesc"
|
|
1035
|
+
},
|
|
1036
|
+
"engines": {
|
|
1037
|
+
"node": ">=6"
|
|
1038
|
+
}
|
|
1039
|
+
},
|
|
1040
|
+
"node_modules/json-parse-even-better-errors": {
|
|
1041
|
+
"version": "2.3.1",
|
|
1042
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
|
|
1043
|
+
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
|
|
1044
|
+
"license": "MIT",
|
|
1045
|
+
"peer": true
|
|
1046
|
+
},
|
|
1047
|
+
"node_modules/lines-and-columns": {
|
|
1048
|
+
"version": "1.2.4",
|
|
1049
|
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
1050
|
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
|
1051
|
+
"license": "MIT",
|
|
1052
|
+
"peer": true
|
|
1053
|
+
},
|
|
1054
|
+
"node_modules/loose-envify": {
|
|
1055
|
+
"version": "1.4.0",
|
|
1056
|
+
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
1057
|
+
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
1058
|
+
"license": "MIT",
|
|
1059
|
+
"peer": true,
|
|
1060
|
+
"dependencies": {
|
|
1061
|
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
1062
|
+
},
|
|
1063
|
+
"bin": {
|
|
1064
|
+
"loose-envify": "cli.js"
|
|
1065
|
+
}
|
|
1066
|
+
},
|
|
1067
|
+
"node_modules/ms": {
|
|
1068
|
+
"version": "2.1.3",
|
|
1069
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1070
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1071
|
+
"license": "MIT",
|
|
1072
|
+
"peer": true
|
|
1073
|
+
},
|
|
1074
|
+
"node_modules/object-assign": {
|
|
1075
|
+
"version": "4.1.1",
|
|
1076
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
1077
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
1078
|
+
"license": "MIT",
|
|
1079
|
+
"peer": true,
|
|
1080
|
+
"engines": {
|
|
1081
|
+
"node": ">=0.10.0"
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
"node_modules/parent-module": {
|
|
1085
|
+
"version": "1.0.1",
|
|
1086
|
+
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
|
1087
|
+
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
|
|
1088
|
+
"license": "MIT",
|
|
1089
|
+
"peer": true,
|
|
1090
|
+
"dependencies": {
|
|
1091
|
+
"callsites": "^3.0.0"
|
|
1092
|
+
},
|
|
1093
|
+
"engines": {
|
|
1094
|
+
"node": ">=6"
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
"node_modules/parse-json": {
|
|
1098
|
+
"version": "5.2.0",
|
|
1099
|
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|
|
1100
|
+
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
|
|
1101
|
+
"license": "MIT",
|
|
1102
|
+
"peer": true,
|
|
1103
|
+
"dependencies": {
|
|
1104
|
+
"@babel/code-frame": "^7.0.0",
|
|
1105
|
+
"error-ex": "^1.3.1",
|
|
1106
|
+
"json-parse-even-better-errors": "^2.3.0",
|
|
1107
|
+
"lines-and-columns": "^1.1.6"
|
|
1108
|
+
},
|
|
1109
|
+
"engines": {
|
|
1110
|
+
"node": ">=8"
|
|
1111
|
+
},
|
|
1112
|
+
"funding": {
|
|
1113
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/path-parse": {
|
|
1117
|
+
"version": "1.0.7",
|
|
1118
|
+
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
1119
|
+
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
|
|
1120
|
+
"license": "MIT",
|
|
1121
|
+
"peer": true
|
|
1122
|
+
},
|
|
1123
|
+
"node_modules/path-type": {
|
|
1124
|
+
"version": "4.0.0",
|
|
1125
|
+
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
|
|
1126
|
+
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
|
|
1127
|
+
"license": "MIT",
|
|
1128
|
+
"peer": true,
|
|
1129
|
+
"engines": {
|
|
1130
|
+
"node": ">=8"
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
"node_modules/picocolors": {
|
|
1134
|
+
"version": "1.1.1",
|
|
1135
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1136
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1137
|
+
"license": "ISC",
|
|
1138
|
+
"peer": true
|
|
1139
|
+
},
|
|
1140
|
+
"node_modules/prop-types": {
|
|
1141
|
+
"version": "15.8.1",
|
|
1142
|
+
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
|
|
1143
|
+
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
|
|
1144
|
+
"license": "MIT",
|
|
1145
|
+
"peer": true,
|
|
1146
|
+
"dependencies": {
|
|
1147
|
+
"loose-envify": "^1.4.0",
|
|
1148
|
+
"object-assign": "^4.1.1",
|
|
1149
|
+
"react-is": "^16.13.1"
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
"node_modules/prop-types/node_modules/react-is": {
|
|
1153
|
+
"version": "16.13.1",
|
|
1154
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
|
1155
|
+
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
|
|
1156
|
+
"license": "MIT",
|
|
1157
|
+
"peer": true
|
|
1158
|
+
},
|
|
1159
|
+
"node_modules/react": {
|
|
1160
|
+
"version": "18.3.1",
|
|
1161
|
+
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
|
1162
|
+
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
|
|
1163
|
+
"license": "MIT",
|
|
1164
|
+
"peer": true,
|
|
1165
|
+
"dependencies": {
|
|
1166
|
+
"loose-envify": "^1.1.0"
|
|
1167
|
+
},
|
|
1168
|
+
"engines": {
|
|
1169
|
+
"node": ">=0.10.0"
|
|
1170
|
+
}
|
|
1171
|
+
},
|
|
1172
|
+
"node_modules/react-dom": {
|
|
1173
|
+
"version": "18.3.1",
|
|
1174
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
|
|
1175
|
+
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
|
|
1176
|
+
"license": "MIT",
|
|
1177
|
+
"peer": true,
|
|
1178
|
+
"dependencies": {
|
|
1179
|
+
"loose-envify": "^1.1.0",
|
|
1180
|
+
"scheduler": "^0.23.2"
|
|
1181
|
+
},
|
|
1182
|
+
"peerDependencies": {
|
|
1183
|
+
"react": "^18.3.1"
|
|
1184
|
+
}
|
|
1185
|
+
},
|
|
1186
|
+
"node_modules/react-is": {
|
|
1187
|
+
"version": "18.3.1",
|
|
1188
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
1189
|
+
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
1190
|
+
"license": "MIT",
|
|
1191
|
+
"peer": true
|
|
1192
|
+
},
|
|
1193
|
+
"node_modules/react-router": {
|
|
1194
|
+
"version": "6.28.0",
|
|
1195
|
+
"resolved": "https://registry.npmjs.org/react-router/-/react-router-6.28.0.tgz",
|
|
1196
|
+
"integrity": "sha512-HrYdIFqdrnhDw0PqG/AKjAqEqM7AvxCz0DQ4h2W8k6nqmc5uRBYDag0SBxx9iYz5G8gnuNVLzUe13wl9eAsXXg==",
|
|
1197
|
+
"license": "MIT",
|
|
1198
|
+
"peer": true,
|
|
1199
|
+
"dependencies": {
|
|
1200
|
+
"@remix-run/router": "1.21.0"
|
|
1201
|
+
},
|
|
1202
|
+
"engines": {
|
|
1203
|
+
"node": ">=14.0.0"
|
|
1204
|
+
},
|
|
1205
|
+
"peerDependencies": {
|
|
1206
|
+
"react": ">=16.8"
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1209
|
+
"node_modules/react-router-dom": {
|
|
1210
|
+
"version": "6.28.0",
|
|
1211
|
+
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.28.0.tgz",
|
|
1212
|
+
"integrity": "sha512-kQ7Unsl5YdyOltsPGl31zOjLrDv+m2VcIEcIHqYYD3Lp0UppLjrzcfJqDJwXxFw3TH/yvapbnUvPlAj7Kx5nbg==",
|
|
1213
|
+
"license": "MIT",
|
|
1214
|
+
"peer": true,
|
|
1215
|
+
"dependencies": {
|
|
1216
|
+
"@remix-run/router": "1.21.0",
|
|
1217
|
+
"react-router": "6.28.0"
|
|
1218
|
+
},
|
|
1219
|
+
"engines": {
|
|
1220
|
+
"node": ">=14.0.0"
|
|
1221
|
+
},
|
|
1222
|
+
"peerDependencies": {
|
|
1223
|
+
"react": ">=16.8",
|
|
1224
|
+
"react-dom": ">=16.8"
|
|
1225
|
+
}
|
|
1226
|
+
},
|
|
1227
|
+
"node_modules/react-transition-group": {
|
|
1228
|
+
"version": "4.4.5",
|
|
1229
|
+
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
|
|
1230
|
+
"integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
|
|
1231
|
+
"license": "BSD-3-Clause",
|
|
1232
|
+
"peer": true,
|
|
1233
|
+
"dependencies": {
|
|
1234
|
+
"@babel/runtime": "^7.5.5",
|
|
1235
|
+
"dom-helpers": "^5.0.1",
|
|
1236
|
+
"loose-envify": "^1.4.0",
|
|
1237
|
+
"prop-types": "^15.6.2"
|
|
1238
|
+
},
|
|
1239
|
+
"peerDependencies": {
|
|
1240
|
+
"react": ">=16.6.0",
|
|
1241
|
+
"react-dom": ">=16.6.0"
|
|
1242
|
+
}
|
|
1243
|
+
},
|
|
1244
|
+
"node_modules/regenerator-runtime": {
|
|
1245
|
+
"version": "0.14.1",
|
|
1246
|
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
|
|
1247
|
+
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==",
|
|
1248
|
+
"license": "MIT",
|
|
1249
|
+
"peer": true
|
|
1250
|
+
},
|
|
1251
|
+
"node_modules/resolve": {
|
|
1252
|
+
"version": "1.22.8",
|
|
1253
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
|
|
1254
|
+
"integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
|
|
1255
|
+
"license": "MIT",
|
|
1256
|
+
"peer": true,
|
|
1257
|
+
"dependencies": {
|
|
1258
|
+
"is-core-module": "^2.13.0",
|
|
1259
|
+
"path-parse": "^1.0.7",
|
|
1260
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
1261
|
+
},
|
|
1262
|
+
"bin": {
|
|
1263
|
+
"resolve": "bin/resolve"
|
|
1264
|
+
},
|
|
1265
|
+
"funding": {
|
|
1266
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1267
|
+
}
|
|
1268
|
+
},
|
|
1269
|
+
"node_modules/resolve-from": {
|
|
1270
|
+
"version": "4.0.0",
|
|
1271
|
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
|
|
1272
|
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
|
|
1273
|
+
"license": "MIT",
|
|
1274
|
+
"peer": true,
|
|
1275
|
+
"engines": {
|
|
1276
|
+
"node": ">=4"
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"node_modules/scheduler": {
|
|
1280
|
+
"version": "0.23.2",
|
|
1281
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
|
1282
|
+
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
|
|
1283
|
+
"license": "MIT",
|
|
1284
|
+
"peer": true,
|
|
1285
|
+
"dependencies": {
|
|
1286
|
+
"loose-envify": "^1.1.0"
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
"node_modules/source-map": {
|
|
1290
|
+
"version": "0.5.7",
|
|
1291
|
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
|
|
1292
|
+
"integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
|
|
1293
|
+
"license": "BSD-3-Clause",
|
|
1294
|
+
"peer": true,
|
|
1295
|
+
"engines": {
|
|
1296
|
+
"node": ">=0.10.0"
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
"node_modules/stylis": {
|
|
1300
|
+
"version": "4.2.0",
|
|
1301
|
+
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz",
|
|
1302
|
+
"integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==",
|
|
1303
|
+
"license": "MIT",
|
|
1304
|
+
"peer": true
|
|
1305
|
+
},
|
|
1306
|
+
"node_modules/supports-preserve-symlinks-flag": {
|
|
1307
|
+
"version": "1.0.0",
|
|
1308
|
+
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
1309
|
+
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
|
1310
|
+
"license": "MIT",
|
|
1311
|
+
"peer": true,
|
|
1312
|
+
"engines": {
|
|
1313
|
+
"node": ">= 0.4"
|
|
1314
|
+
},
|
|
1315
|
+
"funding": {
|
|
1316
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1317
|
+
}
|
|
1318
|
+
},
|
|
1319
|
+
"node_modules/yaml": {
|
|
1320
|
+
"version": "1.10.2",
|
|
1321
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
|
|
1322
|
+
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
|
|
1323
|
+
"license": "ISC",
|
|
1324
|
+
"peer": true,
|
|
1325
|
+
"engines": {
|
|
1326
|
+
"node": ">= 6"
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
}
|
|
1330
|
+
}
|