diff --git a/lerna.json b/lerna.json
index caa0855356..cfb7ae63d7 100644
--- a/lerna.json
+++ b/lerna.json
@@ -16,7 +16,10 @@
"packages/components",
"packages/create-kolibri",
"packages/designer",
+ "packages/samples/angular",
"packages/samples/react",
+ "packages/samples/ssr",
+ "packages/samples/vite",
"packages/schema",
"packages/themes",
"packages/themes/bmf",
diff --git a/packages/components/stencil.config.ts b/packages/components/stencil.config.ts
index 18d53b8ed6..8e19b3a2fd 100644
--- a/packages/components/stencil.config.ts
+++ b/packages/components/stencil.config.ts
@@ -267,16 +267,18 @@ if (process.env.NODE_ENV === 'production') {
export const config: Config = {
// buildEs5: true,
- // extras: {
- // cssVarsShim: true,
- // dynamicImportShim: true,
- // shadowDomShim: true,
- // safari10: true,
- // scriptDataOpts: true,
- // appendChildSlotFix: false,
- // cloneNodeFix: false,
- // slotChildNodesFix: true,
- // },
+ // https://stenciljs.com/docs/config-extras
+ extras: {
+ // appendChildSlotFix: true,
+ // cloneNodeFix: true,
+ enableImportInjection: true,
+ // initializeNextTick: true,
+ // lifecycleDOMEvents: true,
+ // scopedSlotTextContentFix: true,
+ // scriptDataOpts: true,
+ // slotChildNodesFix: true,
+ // tagNameTransform: true,
+ },
// enableCache: true,
invisiblePrehydration: true,
hashFileNames: false,
diff --git a/packages/samples/angular/package.json b/packages/samples/angular/package.json
index 3189219b94..3d9f9eca7f 100644
--- a/packages/samples/angular/package.json
+++ b/packages/samples/angular/package.json
@@ -1,8 +1,7 @@
{
- "name": "angular-17",
- "version": "0.0.0",
- "description": "description",
- "license": "UNLICENSED",
+ "name": "@public-ui/sample-angular",
+ "version": "2.0.1",
+ "private": true,
"scripts": {
"clean": "git clean -f -d -X",
"clean:locks": "rimraf package-lock.json pnpm-lock.yaml && npm run clean",
diff --git a/packages/samples/ssr/package.json b/packages/samples/ssr/package.json
index 3b012491e2..1355fa67b7 100644
--- a/packages/samples/ssr/package.json
+++ b/packages/samples/ssr/package.json
@@ -1,6 +1,6 @@
{
"name": "@public-ui/sample-ssr",
- "version": "1.0.0",
+ "version": "2.0.1",
"private": true,
"scripts": {
"lint": "tsc --noemit",
diff --git a/packages/samples/vite/.editorconfig b/packages/samples/vite/.editorconfig
new file mode 100644
index 0000000000..c916f2f890
--- /dev/null
+++ b/packages/samples/vite/.editorconfig
@@ -0,0 +1,17 @@
+# https://editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+indent_style = tab
+max_line_length = 160
+indent_size = 2
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+indent_style = space
+insert_final_newline = false
+trim_trailing_whitespace = false
diff --git a/packages/samples/vite/.eslintignore b/packages/samples/vite/.eslintignore
new file mode 100644
index 0000000000..d38162f5c9
--- /dev/null
+++ b/packages/samples/vite/.eslintignore
@@ -0,0 +1 @@
+**/assets/**
\ No newline at end of file
diff --git a/packages/samples/vite/.eslintrc.js b/packages/samples/vite/.eslintrc.js
new file mode 100644
index 0000000000..1eac1daf7b
--- /dev/null
+++ b/packages/samples/vite/.eslintrc.js
@@ -0,0 +1,27 @@
+const config = require('@leanup/stack/.eslintrc');
+
+config.overrides = config.overrides || [];
+config.overrides.push({
+ extends: ['plugin:react/recommended', 'plugin:jsx-a11y/recommended'],
+ files: ['**/*.tsx'],
+ parserOptions: {
+ ecmaFeatures: {
+ jsx: true,
+ },
+ },
+ rules: {
+ 'react/no-unused-state': 'error',
+ },
+});
+
+config.plugins = config.plugins || [];
+config.plugins.push('react');
+config.plugins.push('jsx-a11y');
+
+config.settings = {
+ react: {
+ version: 'detect',
+ },
+};
+
+module.exports = config;
diff --git a/packages/samples/vite/.gitignore b/packages/samples/vite/.gitignore
new file mode 100644
index 0000000000..a63fc23df0
--- /dev/null
+++ b/packages/samples/vite/.gitignore
@@ -0,0 +1,56 @@
+# Next
+.next
+
+# GraphQL
+src/__generated__
+
+# IDE's
+.idea
+.project
+*.sublime-*
+*.code-*
+
+
+# Node.js
+node_modules
+npm-debug.log
+
+
+# Build and test tools
+*.zip
+dist/*
+
+# Cache
+.sass-cache
+.cache
+
+
+# Operating system
+.DS_Store
+Thumbs.db
+
+
+# Other
+/.husky
+/.reports
+.env
+.eslintcache
+*~
+*.log
+*.tgz
+
+assets/bundes/
+assets/codicons/
+assets/fontawesome-free/
+assets/icofont/
+assets/kreon/
+assets/material-icons/
+assets/material-symbols/
+assets/noto-sans/
+assets/roboto/
+assets/tabler-icons/
+assets/kolibri.ico
+/test-results/
+/playwright-report/
+/blob-report/
+/playwright/.cache/
diff --git a/packages/samples/vite/.prettierignore b/packages/samples/vite/.prettierignore
new file mode 100644
index 0000000000..12d2ddb225
--- /dev/null
+++ b/packages/samples/vite/.prettierignore
@@ -0,0 +1,4 @@
+**/assets/**
+*.feature
+*.sass
+*.scss
diff --git a/packages/samples/vite/.ts-prunerc.js b/packages/samples/vite/.ts-prunerc.js
new file mode 100644
index 0000000000..9eb0a6acb1
--- /dev/null
+++ b/packages/samples/vite/.ts-prunerc.js
@@ -0,0 +1,4 @@
+// https://github.com/nadeesha/ts-prune
+https: module.exports = {
+ ignore: 'node_modules',
+};
diff --git a/packages/samples/vite/favicon.ico b/packages/samples/vite/favicon.ico
new file mode 100644
index 0000000000..77859ee3f9
Binary files /dev/null and b/packages/samples/vite/favicon.ico differ
diff --git a/packages/samples/vite/index.html b/packages/samples/vite/index.html
new file mode 100644
index 0000000000..4e065bb503
--- /dev/null
+++ b/packages/samples/vite/index.html
@@ -0,0 +1,18 @@
+
+
+
+ Vite React-App | KoliBri
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/samples/vite/package.json b/packages/samples/vite/package.json
new file mode 100644
index 0000000000..08504d6717
--- /dev/null
+++ b/packages/samples/vite/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "@public-ui/sample-vite",
+ "version": "2.0.1",
+ "private": true,
+ "scripts": {
+ "build": "tsc && vite build",
+ "dev": "vite",
+ "preview": "vite preview",
+ "start": "npm run dev",
+ "test": "playwright test -c playwright-ct.config.ts --ui",
+ "update": "ncu -t minor -u && pnpm i"
+ },
+ "type": "module",
+ "dependencies": {
+ "@public-ui/components": "2.0.1",
+ "@public-ui/react": "2.0.1",
+ "@public-ui/themes": "2.0.1",
+ "react": "18.2.0",
+ "react-dom": "18.2.0"
+ },
+ "devDependencies": {
+ "@leanup/stack": "1.3.48",
+ "@playwright/experimental-ct-react": "1.40.1",
+ "@types/node": "20.10.5",
+ "@types/react": "18.2.45",
+ "@types/react-dom": "18.2.18",
+ "@unocss/preset-mini": "0.58.0",
+ "@vitejs/plugin-react": "4.2.1",
+ "npm-check-updates": "16.14.12",
+ "prettier": "3.1.1",
+ "typescript": "5.3.3",
+ "unocss": "0.58.0",
+ "vite": "5.0.10"
+ }
+}
diff --git a/packages/samples/vite/playwright-ct.config.ts b/packages/samples/vite/playwright-ct.config.ts
new file mode 100644
index 0000000000..a2c94b7478
--- /dev/null
+++ b/packages/samples/vite/playwright-ct.config.ts
@@ -0,0 +1,46 @@
+import { defineConfig, devices } from '@playwright/experimental-ct-react';
+
+/**
+ * See https://playwright.dev/docs/test-configuration.
+ */
+export default defineConfig({
+ testDir: './',
+ /* The base directory, relative to the config file, for snapshot files created with toMatchSnapshot and toHaveScreenshot. */
+ snapshotDir: './__snapshots__',
+ /* Maximum time one test can run for. */
+ timeout: 10 * 1000,
+ /* Run tests in files in parallel */
+ fullyParallel: true,
+ /* Fail the build on CI if you accidentally left test.only in the source code. */
+ forbidOnly: !!process.env.CI,
+ /* Retry on CI only */
+ retries: process.env.CI ? 2 : 0,
+ /* Opt out of parallel tests on CI. */
+ workers: process.env.CI ? 1 : undefined,
+ /* Reporter to use. See https://playwright.dev/docs/test-reporters */
+ reporter: 'html',
+ /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
+ use: {
+ /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
+ trace: 'on-first-retry',
+
+ /* Port to use for Playwright component endpoint. */
+ ctPort: 3100,
+ },
+
+ /* Configure projects for major browsers */
+ projects: [
+ {
+ name: 'chromium',
+ use: { ...devices['Desktop Chrome'] },
+ },
+ {
+ name: 'firefox',
+ use: { ...devices['Desktop Firefox'] },
+ },
+ {
+ name: 'webkit',
+ use: { ...devices['Desktop Safari'] },
+ },
+ ],
+});
diff --git a/packages/samples/vite/playwright/index.html b/packages/samples/vite/playwright/index.html
new file mode 100644
index 0000000000..351be77677
--- /dev/null
+++ b/packages/samples/vite/playwright/index.html
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+ Testing Page
+
+
+
+
+
+
+
+
diff --git a/packages/samples/vite/playwright/index.tsx b/packages/samples/vite/playwright/index.tsx
new file mode 100644
index 0000000000..ac6de14bf2
--- /dev/null
+++ b/packages/samples/vite/playwright/index.tsx
@@ -0,0 +1,2 @@
+// Import styles, initialize component theme here.
+// import '../src/common.css';
diff --git a/packages/samples/vite/prettier.config.js b/packages/samples/vite/prettier.config.js
new file mode 100644
index 0000000000..3e100e3c7b
--- /dev/null
+++ b/packages/samples/vite/prettier.config.js
@@ -0,0 +1,6 @@
+module.exports = {
+ ...require('@leanup/stack/prettier.config'),
+ printWidth: 160,
+ singleQuote: true,
+ useTabs: true,
+};
diff --git a/packages/samples/vite/public/.htaccess b/packages/samples/vite/public/.htaccess
new file mode 100644
index 0000000000..01d51926f2
--- /dev/null
+++ b/packages/samples/vite/public/.htaccess
@@ -0,0 +1,3 @@
+RewriteEngine On
+RewriteCond %{HTTPS} !=on
+RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
\ No newline at end of file
diff --git a/packages/samples/vite/public/index.html b/packages/samples/vite/public/index.html
new file mode 100644
index 0000000000..2edc6dff27
--- /dev/null
+++ b/packages/samples/vite/public/index.html
@@ -0,0 +1,18 @@
+
+
+
+ KoliBri | Public UI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/samples/vite/public/robots.txt b/packages/samples/vite/public/robots.txt
new file mode 100644
index 0000000000..1f53798bb4
--- /dev/null
+++ b/packages/samples/vite/public/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow: /
diff --git a/packages/samples/vite/src/App.css b/packages/samples/vite/src/App.css
new file mode 100644
index 0000000000..c8e66f8d26
--- /dev/null
+++ b/packages/samples/vite/src/App.css
@@ -0,0 +1,14 @@
+.App {
+ text-align: center;
+}
+
+.App-header {
+ background-color: #282c34;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ font-size: calc(10px + 2vmin);
+ color: white;
+}
diff --git a/packages/samples/vite/src/App.tsx b/packages/samples/vite/src/App.tsx
new file mode 100644
index 0000000000..7bfa67522e
--- /dev/null
+++ b/packages/samples/vite/src/App.tsx
@@ -0,0 +1,47 @@
+import './App.css';
+import { KolButton } from '@public-ui/react';
+import { StatusBadgeWithKol } from './components/StatusBadgeWithKol';
+import { StatusBadgeWithoutKol } from './components/StatusBadgeWithoutKol';
+
+function App() {
+ return (
+
+ );
+}
+
+export default App;
diff --git a/packages/samples/vite/src/components/StatusBadgeWithKol.test.tsx b/packages/samples/vite/src/components/StatusBadgeWithKol.test.tsx
new file mode 100644
index 0000000000..8b76f69abe
--- /dev/null
+++ b/packages/samples/vite/src/components/StatusBadgeWithKol.test.tsx
@@ -0,0 +1,7 @@
+import { test, expect } from '@playwright/experimental-ct-react';
+import { StatusBadgeWithKol } from './StatusBadgeWithKol';
+
+test('should mount', async ({ mount }) => {
+ const component = await mount();
+ await expect(component).toBeVisible();
+});
diff --git a/packages/samples/vite/src/components/StatusBadgeWithKol.tsx b/packages/samples/vite/src/components/StatusBadgeWithKol.tsx
new file mode 100644
index 0000000000..703e03e76d
--- /dev/null
+++ b/packages/samples/vite/src/components/StatusBadgeWithKol.tsx
@@ -0,0 +1,6 @@
+import { KolBadge } from "@public-ui/react";
+
+
+export function StatusBadgeWithKol() {
+ return
+}
diff --git a/packages/samples/vite/src/components/StatusBadgeWithoutKol.test.tsx b/packages/samples/vite/src/components/StatusBadgeWithoutKol.test.tsx
new file mode 100644
index 0000000000..e741bdbf69
--- /dev/null
+++ b/packages/samples/vite/src/components/StatusBadgeWithoutKol.test.tsx
@@ -0,0 +1,7 @@
+import { test, expect } from '@playwright/experimental-ct-react';
+import { StatusBadgeWithoutKol } from './StatusBadgeWithoutKol';
+
+test('should mount', async ({ mount }) => {
+ const component = await mount();
+ await expect(component).toBeVisible();
+});
diff --git a/packages/samples/vite/src/components/StatusBadgeWithoutKol.tsx b/packages/samples/vite/src/components/StatusBadgeWithoutKol.tsx
new file mode 100644
index 0000000000..a2961abeed
--- /dev/null
+++ b/packages/samples/vite/src/components/StatusBadgeWithoutKol.tsx
@@ -0,0 +1,3 @@
+export function StatusBadgeWithoutKol() {
+ return Aktiv
+}
diff --git a/packages/samples/vite/src/declare.d.ts b/packages/samples/vite/src/declare.d.ts
new file mode 100644
index 0000000000..951f276820
--- /dev/null
+++ b/packages/samples/vite/src/declare.d.ts
@@ -0,0 +1,4 @@
+declare module '*.jpeg';
+declare module '*.jpg';
+declare module '*.png';
+declare module '*.gif';
diff --git a/packages/samples/vite/src/main.ts b/packages/samples/vite/src/main.ts
new file mode 100644
index 0000000000..b8fdae0ae0
--- /dev/null
+++ b/packages/samples/vite/src/main.ts
@@ -0,0 +1,7 @@
+import 'uno.css'; // https://github.com/antfu/unocss
+
+// App style
+import './style.scss';
+
+// App
+import './react.main';
diff --git a/packages/samples/vite/src/react.main.tsx b/packages/samples/vite/src/react.main.tsx
new file mode 100644
index 0000000000..411100d011
--- /dev/null
+++ b/packages/samples/vite/src/react.main.tsx
@@ -0,0 +1,23 @@
+import { defineCustomElements } from '@public-ui/components/dist/loader';
+import { register } from '@public-ui/components';
+import { BMF } from '@public-ui/themes';
+
+import { StrictMode } from 'react';
+import { createRoot } from 'react-dom/client';
+import App from './App';
+
+try {
+ await register(BMF, defineCustomElements);
+} catch (error) {
+ console.error(error);
+}
+
+const htmlElement: HTMLElement | null = document.querySelector('div#app');
+if (htmlElement instanceof HTMLElement) {
+ const root = createRoot(htmlElement);
+ root.render(
+
+
+ ,
+ );
+}
diff --git a/packages/samples/vite/src/style.scss b/packages/samples/vite/src/style.scss
new file mode 100644
index 0000000000..9cac239039
--- /dev/null
+++ b/packages/samples/vite/src/style.scss
@@ -0,0 +1,14 @@
+body {
+ margin: 0;
+}
+
+kol-kolibri {
+ display: block;
+ margin: 0 auto;
+ width: 200px;
+}
+
+kol-link::after,
+kol-link::before {
+ content: ' ';
+}
\ No newline at end of file
diff --git a/packages/samples/vite/tsconfig.json b/packages/samples/vite/tsconfig.json
new file mode 100644
index 0000000000..086467acb3
--- /dev/null
+++ b/packages/samples/vite/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "useDefineForClassFields": true,
+ "lib": ["DOM", "DOM.Iterable", "ESNext"],
+ "allowJs": false,
+ "skipLibCheck": true,
+ "esModuleInterop": false,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "ESNext",
+ "moduleResolution": "Node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx",
+ "typeRoots": ["node_modules/@types", "src/types"]
+ },
+ "include": ["./src"]
+}
diff --git a/packages/samples/vite/unocss.config.ts b/packages/samples/vite/unocss.config.ts
new file mode 100644
index 0000000000..c77d98998a
--- /dev/null
+++ b/packages/samples/vite/unocss.config.ts
@@ -0,0 +1,7 @@
+import { defineConfig } from 'unocss';
+import { presetMini } from '@unocss/preset-mini';
+
+// ts-prune-ignore-next
+export default defineConfig({
+ presets: [presetMini()],
+});
diff --git a/packages/samples/vite/vite.config.mts b/packages/samples/vite/vite.config.mts
new file mode 100644
index 0000000000..b3f647776f
--- /dev/null
+++ b/packages/samples/vite/vite.config.mts
@@ -0,0 +1,13 @@
+import react from '@vitejs/plugin-react';
+import UnoCSS from 'unocss/vite';
+import { defineConfig } from 'vite';
+
+export default defineConfig({
+ build: {
+ dynamicImportVarsOptions: {
+ exclude: [],
+ },
+ target: 'esnext',
+ },
+ plugins: [react(), UnoCSS()],
+});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 84c73b8486..237a7d7f80 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -72,7 +72,7 @@ importers:
specifier: 11.2.14
version: 11.2.14(rxjs@6.5.5)(zone.js@0.11.8)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../../components
'@types/minimatch':
specifier: 5.1.2
@@ -117,7 +117,7 @@ importers:
specifier: 12.2.17
version: 12.2.17(rxjs@7.6.0)(zone.js@0.11.8)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../../components
'@types/minimatch':
specifier: 5.1.2
@@ -162,7 +162,7 @@ importers:
specifier: 13.4.0
version: 13.4.0(rxjs@7.6.0)(zone.js@0.11.8)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../../components
'@types/minimatch':
specifier: 5.1.2
@@ -207,7 +207,7 @@ importers:
specifier: 14.3.0
version: 14.3.0(rxjs@7.6.0)(zone.js@0.12.0)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../../components
'@types/minimatch':
specifier: 5.1.2
@@ -252,7 +252,7 @@ importers:
specifier: 15.2.10
version: 15.2.10(rxjs@7.8.1)(zone.js@0.12.0)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../../components
'@types/minimatch':
specifier: 5.1.2
@@ -297,7 +297,7 @@ importers:
specifier: 16.2.12
version: 16.2.12(rxjs@7.8.1)(zone.js@0.13.3)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../../components
'@types/minimatch':
specifier: 5.1.2
@@ -342,7 +342,7 @@ importers:
specifier: 17.0.7
version: 17.0.7(rxjs@7.8.1)(zone.js@0.14.2)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../../components
'@types/minimatch':
specifier: 5.1.2
@@ -378,7 +378,7 @@ importers:
packages/adapters/hydrate:
devDependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
rimraf:
specifier: 3.0.2
@@ -387,14 +387,14 @@ importers:
packages/adapters/preact:
dependencies:
'@public-ui/react':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../react
preact:
specifier: '>=10.11.3'
version: 10.11.3
devDependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
react:
specifier: 18.2.0
@@ -412,7 +412,7 @@ importers:
packages/adapters/react:
devDependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
'@types/minimatch':
specifier: 5.1.2
@@ -448,7 +448,7 @@ importers:
packages/adapters/react-standalone:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
react:
specifier: '>=16.14.0'
@@ -458,7 +458,7 @@ importers:
version: 18.2.0(react@18.2.0)
devDependencies:
'@public-ui/react':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../react
cpy-cli:
specifier: 5.0.0
@@ -470,7 +470,7 @@ importers:
packages/adapters/solid:
devDependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
'@types/minimatch':
specifier: 5.1.2
@@ -500,7 +500,7 @@ importers:
specifier: 7.23.6
version: 7.23.6
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
'@types/minimatch':
specifier: 5.1.2
@@ -530,7 +530,7 @@ importers:
specifier: 1.5.3
version: 1.5.3
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../schema
adopted-style-sheets:
specifier: 1.1.2
@@ -742,13 +742,13 @@ importers:
specifier: 0.0.3
version: 0.0.3(@public-ui/components@packages+components)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../components
'@public-ui/solid':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../adapters/solid
'@public-ui/themes':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../themes
monaco-editor:
specifier: 0.45.0
@@ -774,7 +774,7 @@ importers:
version: 1.3.48(chromedriver@120.0.0)(esbuild@0.19.3)(typescript@5.3.3)
'@leanup/stack-solid':
specifier: 1.3.48
- version: 1.3.48(@babel/core@7.23.2)(solid-js@1.8.7)(vite@4.4.9)(webpack@5.89.0)
+ version: 1.3.48(@babel/core@7.23.6)(solid-js@1.8.7)(vite@4.5.1)(webpack@5.89.0)
'@leanup/stack-webpack':
specifier: 1.3.48
version: 1.3.48(@leanup/stack@1.3.48)(esbuild@0.19.3)(less@4.2.0)(postcss@8.4.32)
@@ -851,13 +851,13 @@ importers:
specifier: 17.0.7
version: 17.0.7(@angular/common@17.0.7)(@angular/compiler@17.0.7)(@angular/core@17.0.7)(@angular/platform-browser@17.0.7)
'@public-ui/angular-v17':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../adapters/angular/v17
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
'@public-ui/themes':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../themes
zone.js:
specifier: 0.14.2
@@ -868,7 +868,7 @@ importers:
version: 1.3.46(chromedriver@120.0.0)(esbuild@0.19.3)(typescript@5.2.2)
'@leanup/stack-angular':
specifier: 1.3.48
- version: 1.3.48(@angular/compiler-cli@17.0.7)(@angular/core@17.0.7)(@babel/core@7.23.2)(@leanup/stack-webpack@1.3.48)(@ngtools/webpack@17.0.7)(webpack@5.89.0)
+ version: 1.3.48(@angular/compiler-cli@17.0.7)(@angular/core@17.0.7)(@babel/core@7.23.6)(@leanup/stack-webpack@1.3.48)(@ngtools/webpack@17.0.7)(webpack@5.89.0)
'@leanup/stack-webpack':
specifier: 1.3.48
version: 1.3.48(@leanup/stack@1.3.46)(esbuild@0.19.3)(less@4.2.0)(postcss@8.4.32)
@@ -918,13 +918,13 @@ importers:
specifier: 0.0.3
version: 0.0.3(@public-ui/components@packages+components)
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
'@public-ui/react':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../adapters/react
'@public-ui/themes':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../themes
'@types/node':
specifier: 20.10.5
@@ -996,13 +996,13 @@ importers:
packages/samples/ssr:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
'@public-ui/hydrate':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../adapters/hydrate
'@public-ui/theme-default':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../themes/default
express:
specifier: 4.18.2
@@ -1033,6 +1033,61 @@ importers:
specifier: 10.9.2
version: 10.9.2(@types/node@20.10.5)(typescript@4.6.2)
+ packages/samples/vite:
+ dependencies:
+ '@public-ui/components':
+ specifier: 2.0.1
+ version: link:../../components
+ '@public-ui/react':
+ specifier: 2.0.1
+ version: link:../../adapters/react
+ '@public-ui/themes':
+ specifier: 2.0.1
+ version: link:../../themes
+ react:
+ specifier: 18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
+ devDependencies:
+ '@leanup/stack':
+ specifier: 1.3.48
+ version: 1.3.48(chromedriver@120.0.0)(esbuild@0.19.3)(typescript@5.3.3)
+ '@playwright/experimental-ct-react':
+ specifier: 1.40.1
+ version: 1.40.1(@types/node@20.10.5)(vite@5.0.10)
+ '@types/node':
+ specifier: 20.10.5
+ version: 20.10.5
+ '@types/react':
+ specifier: 18.2.45
+ version: 18.2.45
+ '@types/react-dom':
+ specifier: 18.2.18
+ version: 18.2.18
+ '@unocss/preset-mini':
+ specifier: 0.58.0
+ version: 0.58.0
+ '@vitejs/plugin-react':
+ specifier: 4.2.1
+ version: 4.2.1(vite@5.0.10)
+ npm-check-updates:
+ specifier: 16.14.12
+ version: 16.14.12
+ prettier:
+ specifier: 3.1.1
+ version: 3.1.1
+ typescript:
+ specifier: 5.3.3
+ version: 5.3.3
+ unocss:
+ specifier: 0.58.0
+ version: 0.58.0(postcss@8.4.32)(vite@5.0.10)
+ vite:
+ specifier: 5.0.10
+ version: 5.0.10(@types/node@20.10.5)
+
packages/schema:
dependencies:
adopted-style-sheets:
@@ -1064,11 +1119,11 @@ importers:
packages/themes:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../schema
'@types/node':
specifier: ts5.3
@@ -1107,14 +1162,14 @@ importers:
packages/themes/bmf:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../schema
'@public-ui/visual-tests':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../tools/visual-tests
'@types/node':
specifier: ts5.3
@@ -1126,14 +1181,14 @@ importers:
packages/themes/bzst:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../schema
'@public-ui/visual-tests':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../tools/visual-tests
'@types/node':
specifier: ts5.3
@@ -1145,14 +1200,14 @@ importers:
packages/themes/default:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../schema
'@public-ui/visual-tests':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../tools/visual-tests
'@types/node':
specifier: ts5.3
@@ -1179,14 +1234,14 @@ importers:
packages/themes/ecl:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../schema
'@public-ui/visual-tests':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../tools/visual-tests
'@types/node':
specifier: ts5.3
@@ -1201,14 +1256,14 @@ importers:
packages/themes/itzbund:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../schema
'@public-ui/visual-tests':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../tools/visual-tests
'@types/node':
specifier: ts5.3
@@ -1220,14 +1275,14 @@ importers:
packages/themes/mfm:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../schema
'@public-ui/visual-tests':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../tools/visual-tests
'@types/node':
specifier: ts5.3
@@ -1239,14 +1294,14 @@ importers:
packages/themes/zoll:
dependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
devDependencies:
'@public-ui/schema':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../schema
'@public-ui/visual-tests':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../tools/visual-tests
'@types/node':
specifier: ts5.3
@@ -1283,7 +1338,7 @@ importers:
version: 7.5.4
devDependencies:
'@public-ui/components':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../components
'@types/gradient-string':
specifier: 1.1.5
@@ -1352,7 +1407,7 @@ importers:
specifier: 1.40.1
version: 1.40.1
'@public-ui/sample-react':
- specifier: 2.0.0
+ specifier: 2.0.1
version: link:../../samples/react
axe-playwright:
specifier: 1.2.3
@@ -1366,13 +1421,13 @@ importers:
devDependencies:
'@babel/eslint-parser':
specifier: 7.23.3
- version: 7.23.3(@babel/core@7.23.2)(eslint@8.56.0)
+ version: 7.23.3(@babel/core@7.23.6)(eslint@8.56.0)
'@babel/plugin-syntax-import-attributes':
specifier: 7.23.3
- version: 7.23.3(@babel/core@7.23.2)
+ version: 7.23.3(@babel/core@7.23.6)
'@babel/preset-env':
specifier: 7.23.6
- version: 7.23.6(@babel/core@7.23.2)
+ version: 7.23.6(@babel/core@7.23.6)
depcheck:
specifier: 1.4.7
version: 1.4.7
@@ -1794,6 +1849,13 @@ packages:
tslib: 2.6.2
dev: false
+ /@antfu/install-pkg@0.1.1:
+ resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==}
+ dependencies:
+ execa: 5.1.1
+ find-up: 5.0.0
+ dev: true
+
/@antfu/utils@0.7.6:
resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==}
@@ -1931,14 +1993,37 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/eslint-parser@7.23.3(@babel/core@7.23.2)(eslint@8.56.0):
+ /@babel/core@7.23.6:
+ resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
+ '@babel/helpers': 7.23.6
+ '@babel/parser': 7.23.6
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.6
+ '@babel/types': 7.23.6
+ convert-source-map: 2.0.0
+ debug: 4.3.4(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@8.56.0):
resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.56.0
eslint-visitor-keys: 2.1.0
@@ -2081,6 +2166,42 @@ packages:
semver: 6.3.1
dev: true
+ /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.6):
+ resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.22.15
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
+ dev: true
+
/@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.17):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
@@ -2093,13 +2214,13 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.6):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
@@ -2129,13 +2250,13 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.23.2):
+ /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.23.6):
resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
@@ -2171,12 +2292,12 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2):
+ /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.6):
resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@8.1.1)
@@ -2218,6 +2339,13 @@ packages:
'@babel/types': 7.23.6
dev: true
+ /@babel/helper-member-expression-to-functions@7.23.0:
+ resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.6
+ dev: true
+
/@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
@@ -2300,6 +2428,20 @@ packages:
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
+ dev: true
+
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
@@ -2324,13 +2466,13 @@ packages:
'@babel/helper-wrap-function': 7.22.20
dev: true
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.6):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
@@ -2384,6 +2526,18 @@ packages:
'@babel/helper-optimise-call-expression': 7.22.5
dev: true
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.22.15
+ '@babel/helper-optimise-call-expression': 7.22.5
+ dev: true
+
/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.11):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
engines: {node: '>=6.9.0'}
@@ -2558,13 +2712,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2592,25 +2746,25 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.22.17)
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.2)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6)
dev: true
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2672,13 +2826,13 @@ packages:
'@babel/core': 7.22.17
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
dev: true
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11):
@@ -2708,6 +2862,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
@@ -2744,6 +2907,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.6):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
@@ -2764,13 +2936,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.6):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2802,12 +2974,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2829,12 +3001,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2858,13 +3030,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2888,13 +3060,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2925,6 +3097,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
@@ -2952,6 +3133,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.17):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
@@ -2972,6 +3162,26 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -2999,6 +3209,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -3026,6 +3245,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -3053,6 +3281,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -3080,6 +3317,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -3107,6 +3353,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -3134,6 +3389,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -3154,13 +3418,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.6):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3194,6 +3458,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.17):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
@@ -3214,6 +3488,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
@@ -3236,14 +3520,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.6):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3267,13 +3551,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3303,17 +3587,17 @@ packages:
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.11):
@@ -3340,16 +3624,16 @@ packages:
'@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.11):
@@ -3372,13 +3656,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3402,13 +3686,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3434,14 +3718,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3469,16 +3753,16 @@ packages:
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-classes@7.22.15(@babel/core@7.22.11):
@@ -3517,20 +3801,20 @@ packages:
globals: 11.12.0
dev: true
- /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.2):
+ /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.6):
resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
@@ -3557,13 +3841,13 @@ packages:
'@babel/template': 7.22.15
dev: true
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/template': 7.22.15
dev: true
@@ -3588,13 +3872,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3620,14 +3904,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3651,13 +3935,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3683,15 +3967,15 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.11):
@@ -3716,13 +4000,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3749,15 +4033,15 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-for-of@7.22.15(@babel/core@7.22.11):
@@ -3780,13 +4064,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.2):
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.6):
resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
@@ -3815,13 +4099,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
@@ -3849,15 +4133,15 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.11):
@@ -3880,13 +4164,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3912,15 +4196,15 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.11):
@@ -3943,13 +4227,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3975,14 +4259,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4022,6 +4306,18 @@ packages:
'@babel/helper-simple-access': 7.22.5
dev: true
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ dev: true
+
/@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.11):
resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==}
engines: {node: '>=6.9.0'}
@@ -4048,15 +4344,15 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
dev: true
@@ -4083,14 +4379,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4116,14 +4412,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.6):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4147,13 +4443,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4179,15 +4475,15 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.11):
@@ -4212,15 +4508,15 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.11):
@@ -4251,18 +4547,18 @@ packages:
'@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.11):
@@ -4287,15 +4583,15 @@ packages:
'@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.11):
@@ -4320,15 +4616,15 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.11):
@@ -4367,16 +4663,16 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.11):
@@ -4409,13 +4705,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4441,14 +4737,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4478,17 +4774,17 @@ packages:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17)
dev: true
- /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.2):
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.6):
resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6)
dev: true
/@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.11):
@@ -4511,13 +4807,33 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4543,13 +4859,13 @@ packages:
regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
dev: true
@@ -4574,13 +4890,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4604,13 +4920,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4636,13 +4952,13 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
@@ -4667,13 +4983,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4697,13 +5013,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4727,13 +5043,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4763,6 +5079,19 @@ packages:
'@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
dev: true
+ /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.6)
+ dev: true
+
/@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.11):
resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
engines: {node: '>=6.9.0'}
@@ -4783,13 +5112,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4815,14 +5144,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4848,14 +5177,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -4881,14 +5210,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.2):
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -5074,91 +5403,91 @@ packages:
- supports-color
dev: true
- /@babel/preset-env@7.23.6(@babel/core@7.23.2):
+ /@babel/preset-env@7.23.6(@babel/core@7.23.6):
resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.2)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.2)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.2)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.2)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2)
- babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2)
- babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.6)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.6)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.6)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.6)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.6)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.6)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.6)
+ babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.6)
+ babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.6)
+ babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.6)
core-js-compat: 3.34.0
semver: 6.3.1
transitivePeerDependencies:
@@ -5187,12 +5516,12 @@ packages:
esutils: 2.0.3
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.6):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/types': 7.23.6
esutils: 2.0.3
@@ -5226,6 +5555,20 @@ packages:
'@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2)
dev: true
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.6)
+ dev: true
+
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
@@ -6430,6 +6773,23 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /@iconify/types@2.0.0:
+ resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
+ dev: true
+
+ /@iconify/utils@2.1.13:
+ resolution: {integrity: sha512-6uWvJIo715xYRy1KmCCyZYW0YYkLjaojEExoEkxpOHKhi9cyHW8hVKo+m8zrxzNVSqjUx9OuVRa2BWXeXfkp5A==}
+ dependencies:
+ '@antfu/install-pkg': 0.1.1
+ '@antfu/utils': 0.7.6
+ '@iconify/types': 2.0.0
+ debug: 4.3.4(supports-color@8.1.1)
+ kolorist: 1.8.0
+ local-pkg: 0.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@isaacs/cliui@8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
@@ -6707,7 +7067,7 @@ packages:
- webpack
dev: true
- /@leanup/stack-angular@1.3.48(@angular/compiler-cli@17.0.7)(@angular/core@17.0.7)(@babel/core@7.23.2)(@leanup/stack-webpack@1.3.48)(@ngtools/webpack@17.0.7)(webpack@5.89.0):
+ /@leanup/stack-angular@1.3.48(@angular/compiler-cli@17.0.7)(@angular/core@17.0.7)(@babel/core@7.23.6)(@leanup/stack-webpack@1.3.48)(@ngtools/webpack@17.0.7)(webpack@5.89.0):
resolution: {integrity: sha512-HJA4PqNzqrMpzQdBFEht+UDyS4XbobWoDZUMTYALTe8Ao0hps+N2ANd/APbu+6aKqgLptEyWS6Kv2n+q92ovXw==}
peerDependencies:
'@angular/compiler-cli': ^16
@@ -6719,7 +7079,7 @@ packages:
'@angular/core': 17.0.7(rxjs@7.8.1)(zone.js@0.14.2)
'@leanup/stack-webpack': 1.3.48(@leanup/stack@1.3.46)(esbuild@0.19.3)(less@4.2.0)(postcss@8.4.32)
'@ngtools/webpack': 17.0.7(@angular/compiler-cli@17.0.7)(typescript@5.2.2)(webpack@5.89.0)
- babel-loader: 9.1.3(@babel/core@7.23.2)(webpack@5.89.0)
+ babel-loader: 9.1.3(@babel/core@7.23.6)(webpack@5.89.0)
transitivePeerDependencies:
- '@babel/core'
- webpack
@@ -6735,16 +7095,16 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@leanup/stack-solid@1.3.48(@babel/core@7.23.2)(solid-js@1.8.7)(vite@4.4.9)(webpack@5.89.0):
+ /@leanup/stack-solid@1.3.48(@babel/core@7.23.6)(solid-js@1.8.7)(vite@4.5.1)(webpack@5.89.0):
resolution: {integrity: sha512-thi1PzX0eYkf/Larc4Wkjh7hkfAofahsnd//SNczssyAWmR343PNkLaowT7u2YFK58t/VDDNJA27skkSmPxpVA==}
peerDependencies:
solid-js: ^1
dependencies:
'@leanup/cli-core-babel': 1.3.48(webpack@5.89.0)
'@snowpack/plugin-babel': 2.1.7
- babel-preset-solid: 1.7.7(@babel/core@7.23.2)
+ babel-preset-solid: 1.7.7(@babel/core@7.23.6)
solid-js: 1.8.7
- vite-plugin-solid: 2.7.0(solid-js@1.8.7)(vite@4.4.9)
+ vite-plugin-solid: 2.7.0(solid-js@1.8.7)(vite@4.5.1)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -6887,7 +7247,7 @@ packages:
'@types/nightwatch': 1.3.4
'@types/sinon': 10.0.16
'@typescript-eslint/eslint-plugin': 6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.3.3)
- '@typescript-eslint/parser': 6.7.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.3.3)
chai: 4.3.8
chromedriver: 120.0.0
cross-env: 7.0.3
@@ -7090,7 +7450,7 @@ packages:
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@npmcli/promise-spawn': 7.0.0
- lru-cache: 10.0.1
+ lru-cache: 10.1.0
npm-pick-manifest: 9.0.0
proc-log: 3.0.0
promise-inflight: 1.0.1
@@ -7444,6 +7804,43 @@ packages:
requiresBuild: true
dev: true
+ /@playwright/experimental-ct-core@1.40.1(@types/node@20.10.5):
+ resolution: {integrity: sha512-FjYQP74I2xVAO6W52+Yn2t48FDs+IhOHcWAwZHqAX+lHVHidz4f/b0FY3Qnq8+ZIt5TgqucEzGXbw/TdqJYDtA==}
+ engines: {node: '>=16'}
+ hasBin: true
+ dependencies:
+ playwright: 1.40.1
+ playwright-core: 1.40.1
+ vite: 4.5.1(@types/node@20.10.5)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - terser
+ dev: true
+
+ /@playwright/experimental-ct-react@1.40.1(@types/node@20.10.5)(vite@5.0.10):
+ resolution: {integrity: sha512-a2ubB04+pSswpWOgIwgBcSvvdvVNv4Cz8wud5ZLV5+4fcRqRACxFlGJPiVHw1zanhDSD+rH6H9+zaNm/o1iJHw==}
+ engines: {node: '>=16'}
+ hasBin: true
+ dependencies:
+ '@playwright/experimental-ct-core': 1.40.1(@types/node@20.10.5)
+ '@vitejs/plugin-react': 4.2.1(vite@5.0.10)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - vite
+ dev: true
+
/@playwright/test@1.40.1:
resolution: {integrity: sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==}
engines: {node: '>=16'}
@@ -7597,6 +7994,10 @@ packages:
- domexception
dev: true
+ /@polka/url@1.0.0-next.24:
+ resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
+ dev: true
+
/@public-oss/kolibri-themes@0.0.3(@public-ui/components@packages+components):
resolution: {integrity: sha512-jljVwSLzXPKHDNsqGzfm9NLq9RYXm6NZFbD0Vfg3fB7y+MG5KI6m7vBK2zVmS+Nhw+L4PIOoYgsODJPK5qYPrA==}
peerDependencies:
@@ -8339,6 +8740,16 @@ packages:
'@types/babel__traverse': 7.20.1
dev: true
+ /@types/babel__core@7.20.5:
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+ dependencies:
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
+ '@types/babel__generator': 7.6.4
+ '@types/babel__template': 7.4.1
+ '@types/babel__traverse': 7.20.1
+ dev: true
+
/@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
@@ -8585,7 +8996,7 @@ packages:
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.3
- csstype: 3.1.2
+ csstype: 3.1.3
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
@@ -8787,7 +9198,7 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.8.1
- '@typescript-eslint/parser': 6.7.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.3.3)
'@typescript-eslint/scope-manager': 6.7.0
'@typescript-eslint/type-utils': 6.7.0(eslint@8.49.0)(typescript@5.3.3)
'@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.3.3)
@@ -8865,7 +9276,7 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@6.7.0(eslint@8.56.0)(typescript@5.3.3):
+ /@typescript-eslint/parser@6.7.0(eslint@8.49.0)(typescript@5.3.3):
resolution: {integrity: sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -8880,7 +9291,7 @@ packages:
'@typescript-eslint/typescript-estree': 6.7.0(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 6.7.0
debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.56.0
+ eslint: 8.49.0
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
@@ -9176,19 +9587,57 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
- /@typescript-eslint/visitor-keys@6.7.0:
- resolution: {integrity: sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==}
- engines: {node: ^16.0.0 || >=18.0.0}
- dependencies:
- '@typescript-eslint/types': 6.7.0
- eslint-visitor-keys: 3.4.3
-
- /@ungap/promise-all-settled@1.1.2:
- resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==}
-
- /@ungap/structured-clone@1.2.0:
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
-
+ /@typescript-eslint/visitor-keys@6.7.0:
+ resolution: {integrity: sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.7.0
+ eslint-visitor-keys: 3.4.3
+
+ /@ungap/promise-all-settled@1.1.2:
+ resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==}
+
+ /@ungap/structured-clone@1.2.0:
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+
+ /@unocss/astro@0.58.0(vite@5.0.10):
+ resolution: {integrity: sha512-df+tEFO5eKXjQOwSWQhS9IdjD0sfLHLtn8U09sEKR2Nmh5CvpwyBxmvLQgOCilPou7ehmyKfsyGRLZg7IMp+Ew==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ '@unocss/core': 0.58.0
+ '@unocss/reset': 0.58.0
+ '@unocss/vite': 0.58.0(vite@5.0.10)
+ vite: 5.0.10(@types/node@20.10.5)
+ transitivePeerDependencies:
+ - rollup
+ dev: true
+
+ /@unocss/cli@0.58.0:
+ resolution: {integrity: sha512-rhsrDBxAVueygMcAbMkbuvsHbBL2rG6N96LllYwHn16FLgOE3Sf4JW1/LlNjQje3BtwMMtbSCCAeu2SryFhzbw==}
+ engines: {node: '>=14'}
+ hasBin: true
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@rollup/pluginutils': 5.1.0
+ '@unocss/config': 0.58.0
+ '@unocss/core': 0.58.0
+ '@unocss/preset-uno': 0.58.0
+ cac: 6.7.14
+ chokidar: 3.5.3
+ colorette: 2.0.20
+ consola: 3.2.3
+ fast-glob: 3.3.2
+ magic-string: 0.30.5
+ pathe: 1.1.1
+ perfect-debounce: 1.0.0
+ transitivePeerDependencies:
+ - rollup
+ dev: true
+
/@unocss/config@0.58.0:
resolution: {integrity: sha512-WQD29gCZ7cajnMzezD1PRW0qQSxo/C6PX9ktygwhdinFx9nXuLZnKFOz65TiI8y48e53g1i7ivvgY3m4Sq5mIg==}
engines: {node: '>=14'}
@@ -9204,6 +9653,46 @@ packages:
dependencies:
'@unocss/core': 0.58.0
+ /@unocss/inspector@0.58.0:
+ resolution: {integrity: sha512-ZC4QauFGdh3/VkzW/FqkO2R03JEbzGNuX0DK03pwas8/jFIGh8pPldesj8GEKm1YWr1emx9cw7JUnhR8XSUBlA==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ '@unocss/rule-utils': 0.58.0
+ gzip-size: 6.0.0
+ sirv: 2.0.3
+ dev: true
+
+ /@unocss/postcss@0.58.0(postcss@8.4.32):
+ resolution: {integrity: sha512-2hAwLbfUFqysi8FN1cn3xkHy5GhLMlYy6W4NrAZ2ws7F2MKpsCT2xCj7dT5cI2tW8ulD2YoVbKH15dBhNsMNUA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ postcss: ^8.4.21
+ dependencies:
+ '@unocss/config': 0.58.0
+ '@unocss/core': 0.58.0
+ '@unocss/rule-utils': 0.58.0
+ css-tree: 2.3.1
+ fast-glob: 3.3.2
+ magic-string: 0.30.5
+ postcss: 8.4.32
+ dev: true
+
+ /@unocss/preset-attributify@0.58.0:
+ resolution: {integrity: sha512-Ew78noYes12K9gk4dF36MkjpiIqTi1XVqcniiAzxCkzuctxN4B57vW3LVTwjInGmWNNKWN3UNR4q1o0VxH4xJg==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ dev: true
+
+ /@unocss/preset-icons@0.58.0:
+ resolution: {integrity: sha512-niT32avw+8l+L40LGhrmX6qDV9Z8/gOn4xjjRhLZZouKni3CJOpz9taILyF4xp1nak5nxGT4wa0tuC/htvOF5A==}
+ dependencies:
+ '@iconify/utils': 2.1.13
+ '@unocss/core': 0.58.0
+ ofetch: 1.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@unocss/preset-mini@0.58.0:
resolution: {integrity: sha512-oMliJZVTN3ecAvf52yN+MyJszaJOZoKwMMbUAFqVis62MaqRzZ8mSw12QFLFyX2pltulDFpMBTAKro+hP0wXEg==}
dependencies:
@@ -9211,6 +9700,19 @@ packages:
'@unocss/extractor-arbitrary-variants': 0.58.0
'@unocss/rule-utils': 0.58.0
+ /@unocss/preset-tagify@0.58.0:
+ resolution: {integrity: sha512-I+dzfs/bofiGb2AUxkhcTDhB+r2+/3SO81PFwf3Ae7afnzhA2SLsKAkEqO8YN3M3mwZL7IfXn6vpsWeEAlk/yw==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ dev: true
+
+ /@unocss/preset-typography@0.58.0:
+ resolution: {integrity: sha512-8qo+Z1CJtXFMDbAvtizUTRLuLxCIzytgYU0GmuRkfc2iwASSDNDsvh8nAYQfWpyAEOV7QEHtS9c9xL4b0c89FA==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ '@unocss/preset-mini': 0.58.0
+ dev: true
+
/@unocss/preset-uno@0.58.0:
resolution: {integrity: sha512-DpgfjtvSgsWeyZH+jQHc1k5IReiZNb7oGpHVnfF6SlHETTnMHSeNetxkPQWYrqJLPI6llNLPTdTa5j47NtmOiA==}
dependencies:
@@ -9218,7 +9720,13 @@ packages:
'@unocss/preset-mini': 0.58.0
'@unocss/preset-wind': 0.58.0
'@unocss/rule-utils': 0.58.0
- dev: false
+
+ /@unocss/preset-web-fonts@0.58.0:
+ resolution: {integrity: sha512-QarDDEUlexQ2IIn23pE1eHDskG2Tz+JjCe+FAN0DoNLLhvUUWSB4cQIMFWP6dSMJ047Blj9IpgAl9dERICW1qQ==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ ofetch: 1.3.3
+ dev: true
/@unocss/preset-wind@0.58.0:
resolution: {integrity: sha512-2zgaIy9RAGie9CsUYCkYRDSERBi8kG6Q/mQLgNfP9HMz5IThlnDHFWF/hLAVD51xQUg9gH8qWBR9kN/1ioT5Tw==}
@@ -9226,7 +9734,10 @@ packages:
'@unocss/core': 0.58.0
'@unocss/preset-mini': 0.58.0
'@unocss/rule-utils': 0.58.0
- dev: false
+
+ /@unocss/reset@0.58.0:
+ resolution: {integrity: sha512-UVZ5kz37JGbwAA06k/gjKYcekcTwi6oIhev1EpTtCvHLL6XYcYqcwb/u4Wjzprd3L3lxDGYXvGdjREGm2u7vbQ==}
+ dev: true
/@unocss/rule-utils@0.58.0:
resolution: {integrity: sha512-LBJ9dJ/j5UIMzJF7pmIig55MtJAYtG+tn/zQRveZuPRVahzP+KqwlyB7u3uCUnQhdgo/MJODMcqyr0jl6+kTuA==}
@@ -9235,6 +9746,67 @@ packages:
'@unocss/core': 0.58.0
magic-string: 0.30.5
+ /@unocss/scope@0.58.0:
+ resolution: {integrity: sha512-XgUXZJvbxWSRC/DNOWI5DYdR6Nd6IZxsE5ls3AFA5msgtk5OH4YNQELLMabQw7xbRbU/fftlRJa3vncSfOyl6w==}
+ dev: true
+
+ /@unocss/transformer-attributify-jsx-babel@0.58.0:
+ resolution: {integrity: sha512-ckDq/q476x2yikjS8usmSUGuakqMQrg2pm8sdBINTPdJxGc7kJRvI5UDnzRw4W9hE5IH+E4gg0XfCtFad0O3eg==}
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6)
+ '@unocss/core': 0.58.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@unocss/transformer-attributify-jsx@0.58.0:
+ resolution: {integrity: sha512-QDdBEFDE7ntfCH7+8zHRW72MIQ9NH3uYGUE7lYgr5Ap8qzBHCxMT1kUrY6gwuoo3U4dMu2wruglYRHD88hvGkw==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ dev: true
+
+ /@unocss/transformer-compile-class@0.58.0:
+ resolution: {integrity: sha512-/BysfTg2q9sGPfiRHqWw/bT60/gjpBGBRVkIFsG4WVT2pgf3BfQUPu5FumSvZSRd0rA/pR57Lp6ZREAdj6+q+A==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ dev: true
+
+ /@unocss/transformer-directives@0.58.0:
+ resolution: {integrity: sha512-sU2U/aIykRkGGbA4Qo9Z5XE/KqWf7KhBwC1m8pUoqjawsZex4aVnQgXzDPfcjtmy6pElwK0z2U5DnO+OK9vCgQ==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ '@unocss/rule-utils': 0.58.0
+ css-tree: 2.3.1
+ dev: true
+
+ /@unocss/transformer-variant-group@0.58.0:
+ resolution: {integrity: sha512-O2n8uVIpNic57rrkaaQ8jnC1WJ9N6FkoqxatRDXZ368aJ1CJNya0ZcVUL6lGGND0bOLXen4WmEN62ZxEWTqdkA==}
+ dependencies:
+ '@unocss/core': 0.58.0
+ dev: true
+
+ /@unocss/vite@0.58.0(vite@5.0.10):
+ resolution: {integrity: sha512-OCUOLMSOBEtXOEyBbAvMI3/xdR175BWRzmvV9Wc34ANZclEvCdVH8+WU725ibjY4VT0gVIuX68b13fhXdHV41A==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@rollup/pluginutils': 5.1.0
+ '@unocss/config': 0.58.0
+ '@unocss/core': 0.58.0
+ '@unocss/inspector': 0.58.0
+ '@unocss/scope': 0.58.0
+ '@unocss/transformer-directives': 0.58.0
+ chokidar: 3.5.3
+ fast-glob: 3.3.2
+ magic-string: 0.30.5
+ vite: 5.0.10(@types/node@20.10.5)
+ transitivePeerDependencies:
+ - rollup
+ dev: true
+
/@unocss/webpack@0.58.0(webpack@5.89.0):
resolution: {integrity: sha512-Bw1vN33X6KEUC1Re/Uwz36OuMDgkyczmHx6hVelUUU6hguNIO3a4gJxb41gCi6CU2CxfEHdMld9ARgWvZqMM7w==}
peerDependencies:
@@ -9253,6 +9825,22 @@ packages:
transitivePeerDependencies:
- rollup
+ /@vitejs/plugin-react@4.2.1(vite@5.0.10):
+ resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^4.2.0 || ^5.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.6)
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.14.0
+ vite: 5.0.10(@types/node@20.10.5)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@vue/compiler-core@3.3.12:
resolution: {integrity: sha512-qAtjyG3GBLG0chzp5xGCyRLLe6wFCHmjI82aGzwuGKyznNP+GJJMxjc0wOYWDB2YKfho7niJFdoFpo0CZZQg9w==}
dependencies:
@@ -9310,7 +9898,7 @@ packages:
'@vue/reactivity-transform': 3.3.4
'@vue/shared': 3.3.4
estree-walker: 2.0.2
- magic-string: 0.30.3
+ magic-string: 0.30.5
postcss: 8.4.32
source-map-js: 1.0.2
dev: true
@@ -10239,14 +10827,14 @@ packages:
webpack: 5.89.0(@swc/core@1.3.84)(esbuild@0.19.3)(webpack-cli@4.10.0)
dev: true
- /babel-loader@9.1.3(@babel/core@7.23.2)(webpack@5.89.0):
+ /babel-loader@9.1.3(@babel/core@7.23.6)(webpack@5.89.0):
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.6
find-cache-dir: 4.0.0
schema-utils: 4.2.0
webpack: 5.89.0(@swc/core@1.3.84)(esbuild@0.19.3)(webpack-cli@4.10.0)
@@ -10288,6 +10876,19 @@ packages:
validate-html-nesting: 1.2.2
dev: true
+ /babel-plugin-jsx-dom-expressions@0.36.10(@babel/core@7.23.6):
+ resolution: {integrity: sha512-QA2k/14WGw+RgcGGnEuLWwnu4em6CGhjeXtjvgOYyFHYS2a+CzPeaVQHDOlfuiBcjq/3hWMspHMIMnPEOIzdBg==}
+ peerDependencies:
+ '@babel/core': ^7.20.12
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.6)
+ '@babel/types': 7.23.6
+ html-entities: 2.3.3
+ validate-html-nesting: 1.2.2
+ dev: true
+
/babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.11):
resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
peerDependencies:
@@ -10314,14 +10915,14 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2):
+ /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.6):
resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.6)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -10351,13 +10952,13 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2):
+ /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.6):
resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.6)
core-js-compat: 3.34.0
transitivePeerDependencies:
- supports-color
@@ -10385,13 +10986,13 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2):
+ /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.6):
resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.6
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.6)
transitivePeerDependencies:
- supports-color
dev: true
@@ -10436,6 +11037,15 @@ packages:
babel-plugin-jsx-dom-expressions: 0.36.10(@babel/core@7.23.2)
dev: true
+ /babel-preset-solid@1.7.7(@babel/core@7.23.6):
+ resolution: {integrity: sha512-tdxVzx3kgcIjNXAOmGRbzIhFBPeJjSakiN9yM+IYdL/+LtXNnbGqb0Va5tJb8Sjbk+QVEriovCyuzB5T7jeTvg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ babel-plugin-jsx-dom-expressions: 0.36.10(@babel/core@7.23.6)
+ dev: true
+
/babel-runtime@6.26.0:
resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
dependencies:
@@ -11975,7 +12585,6 @@ packages:
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- dev: true
/d@1.0.1:
resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
@@ -12320,6 +12929,10 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
+ /destr@2.0.2:
+ resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
+ dev: true
+
/destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
@@ -14402,7 +15015,7 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
ignore: 5.2.4
merge2: 1.4.1
slash: 3.0.0
@@ -14704,7 +15317,7 @@ packages:
resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- lru-cache: 10.0.1
+ lru-cache: 10.1.0
dev: true
/hpack.js@2.1.6:
@@ -14966,13 +15579,6 @@ packages:
minimatch: 5.1.6
dev: true
- /ignore-walk@6.0.3:
- resolution: {integrity: sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dependencies:
- minimatch: 9.0.3
- dev: true
-
/ignore-walk@6.0.4:
resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -16597,6 +17203,10 @@ packages:
- domexception
dev: true
+ /kolorist@1.8.0:
+ resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
+ dev: true
+
/language-subtag-registry@0.3.22:
resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
@@ -16954,6 +17564,11 @@ packages:
engines: {node: '>= 12.13.0'}
dev: true
+ /local-pkg@0.4.3:
+ resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
+ engines: {node: '>=14'}
+ dev: true
+
/locate-path@2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
@@ -17895,6 +18510,11 @@ packages:
engines: {node: '>=4'}
dev: true
+ /mrmime@1.0.1:
+ resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
+ engines: {node: '>=10'}
+ dev: true
+
/ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -18113,6 +18733,10 @@ packages:
tslib: 2.6.2
dev: true
+ /node-fetch-native@1.4.1:
+ resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==}
+ dev: true
+
/node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
@@ -18441,7 +19065,7 @@ packages:
resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- ignore-walk: 6.0.3
+ ignore-walk: 6.0.4
dev: true
/npm-packlist@8.0.1:
@@ -18754,6 +19378,14 @@ packages:
/obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
+ /ofetch@1.3.3:
+ resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
+ dependencies:
+ destr: 2.0.2
+ node-fetch-native: 1.4.1
+ ufo: 1.3.0
+ dev: true
+
/on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
@@ -19135,7 +19767,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.23.5
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -19234,7 +19866,7 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.0.1
+ lru-cache: 10.1.0
minipass: 7.0.3
dev: true
@@ -19281,6 +19913,10 @@ packages:
/pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
+ /perfect-debounce@1.0.0:
+ resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
+ dev: true
+
/picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
@@ -20565,6 +21201,11 @@ packages:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
dev: true
+ /react-refresh@0.14.0:
+ resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/react-router-dom@6.21.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-1dUdVj3cwc1npzJaf23gulB562ESNvxf7E4x8upNJycqyUm5BRRZ6dd3LrlzhtLaMrwOCO8R0zoiYxdaJx4LlQ==}
engines: {node: '>=14.0.0'}
@@ -21635,6 +22276,15 @@ packages:
nise: 5.1.4
supports-color: 7.2.0
+ /sirv@2.0.3:
+ resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@polka/url': 1.0.0-next.24
+ mrmime: 1.0.1
+ totalist: 3.0.1
+ dev: true
+
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
@@ -22694,6 +23344,11 @@ packages:
resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==}
dev: false
+ /totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+ dev: true
+
/touch@3.1.0:
resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==}
hasBin: true
@@ -23310,6 +23965,45 @@ packages:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
+ /unocss@0.58.0(postcss@8.4.32)(vite@5.0.10):
+ resolution: {integrity: sha512-MSPRHxBqWN+1AHGV+J5uUy4//e6ZBK6O+ISzD0qrXcCD/GNtxk1+lYjOK2ltkUiKX539+/KF91vNxzhhwEf+xA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@unocss/webpack': 0.58.0
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ '@unocss/webpack':
+ optional: true
+ vite:
+ optional: true
+ dependencies:
+ '@unocss/astro': 0.58.0(vite@5.0.10)
+ '@unocss/cli': 0.58.0
+ '@unocss/core': 0.58.0
+ '@unocss/extractor-arbitrary-variants': 0.58.0
+ '@unocss/postcss': 0.58.0(postcss@8.4.32)
+ '@unocss/preset-attributify': 0.58.0
+ '@unocss/preset-icons': 0.58.0
+ '@unocss/preset-mini': 0.58.0
+ '@unocss/preset-tagify': 0.58.0
+ '@unocss/preset-typography': 0.58.0
+ '@unocss/preset-uno': 0.58.0
+ '@unocss/preset-web-fonts': 0.58.0
+ '@unocss/preset-wind': 0.58.0
+ '@unocss/reset': 0.58.0
+ '@unocss/transformer-attributify-jsx': 0.58.0
+ '@unocss/transformer-attributify-jsx-babel': 0.58.0
+ '@unocss/transformer-compile-class': 0.58.0
+ '@unocss/transformer-directives': 0.58.0
+ '@unocss/transformer-variant-group': 0.58.0
+ '@unocss/vite': 0.58.0(vite@5.0.10)
+ vite: 5.0.10(@types/node@20.10.5)
+ transitivePeerDependencies:
+ - postcss
+ - rollup
+ - supports-color
+ dev: true
+
/unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
@@ -23511,7 +24205,7 @@ packages:
resolution: {integrity: sha512-vLFU70y3D915d611GnHYeHkEmq6ZZETzTH4P1hM6I9E3lBwH2VeBBEESe/bGCY+gAyK0qqLFn5bNFpui/GKmww==}
dev: true
- /vite-plugin-solid@2.7.0(solid-js@1.8.7)(vite@4.4.9):
+ /vite-plugin-solid@2.7.0(solid-js@1.8.7)(vite@4.5.1):
resolution: {integrity: sha512-avp/Jl5zOp/Itfo67xtDB2O61U7idviaIp4mLsjhCa13PjKNasz+IID0jYTyqUp9SFx6/PmBr6v4KgDppqompg==}
peerDependencies:
solid-js: ^1.7.2
@@ -23524,14 +24218,14 @@ packages:
merge-anything: 5.1.7
solid-js: 1.8.7
solid-refresh: 0.5.3(solid-js@1.8.7)
- vite: 4.4.9(@types/node@20.10.4)(less@4.2.0)
- vitefu: 0.2.4(vite@4.4.9)
+ vite: 4.5.1(@types/node@20.10.4)(less@4.2.0)
+ vitefu: 0.2.4(vite@4.5.1)
transitivePeerDependencies:
- supports-color
dev: true
- /vite@4.4.9(@types/node@20.10.4)(less@4.2.0):
- resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
+ /vite@4.5.1(@types/node@20.10.4)(less@4.2.0):
+ resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -23567,7 +24261,79 @@ packages:
fsevents: 2.3.3
dev: true
- /vitefu@0.2.4(vite@4.4.9):
+ /vite@4.5.1(@types/node@20.10.5):
+ resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 20.10.5
+ esbuild: 0.18.20
+ postcss: 8.4.32
+ rollup: 3.29.2
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /vite@5.0.10(@types/node@20.10.5):
+ resolution: {integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 20.10.5
+ esbuild: 0.19.3
+ postcss: 8.4.32
+ rollup: 4.8.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /vitefu@0.2.4(vite@4.5.1):
resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==}
peerDependencies:
vite: ^3.0.0 || ^4.0.0
@@ -23575,7 +24341,7 @@ packages:
vite:
optional: true
dependencies:
- vite: 4.4.9(@types/node@20.10.4)(less@4.2.0)
+ vite: 4.5.1(@types/node@20.10.4)(less@4.2.0)
dev: true
/vlq@0.2.3:
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index bbe14025f1..65a0584f0d 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -11,6 +11,7 @@ packages:
- 'packages/samples/angular'
- 'packages/samples/react'
- 'packages/samples/ssr'
+ - 'packages/samples/vite'
- 'packages/schema'
- 'packages/themes'
- 'packages/themes/bmf'