diff --git a/examples/b2b-quote-management/package.json b/examples/b2b-quote-management/package.json
index a603643ef..a9865e01b 100644
--- a/examples/b2b-quote-management/package.json
+++ b/examples/b2b-quote-management/package.json
@@ -11,11 +11,12 @@
"generate-types": "shopware-api-gen generate --apiType=store"
},
"dependencies": {
+ "@primevue/themes": "^4.0.0",
"@shopware-pwa/composables-next": "canary",
"@shopware-pwa/helpers-next": "canary",
"@shopware/api-client": "canary",
"js-cookie": "3.0.5",
- "primevue": "3.52.0",
+ "primevue": "4.0.0",
"vue": "3.4.31",
"vue-router": "4.4.0"
},
diff --git a/examples/b2b-quote-management/src/assets/main.css b/examples/b2b-quote-management/src/assets/main.css
new file mode 100644
index 000000000..f914595ec
--- /dev/null
+++ b/examples/b2b-quote-management/src/assets/main.css
@@ -0,0 +1,29 @@
+html {
+ font-size: 14px;
+}
+
+body {
+ min-height: 100vh;
+ max-width: 100vw;
+ color: #fff;
+ background: radial-gradient(135.35% 140.89% at 107.72% -60.35%, rgba(65, 184, 131, 0.4) 0%, rgba(5, 4, 31, 0) 100%),
+ #121116;
+ margin: 0 auto;
+ width: 100%;
+ font-size: 14px;
+ font-weight: 400;
+ margin: 0;
+ line-height: 1.6;
+ font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans",
+ "Droid Sans", "Helvetica Neue", sans-serif;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.main-wrapper {
+ background-image: url("background.svg");
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-size: contain;
+}
\ No newline at end of file
diff --git a/examples/b2b-quote-management/src/components/Quote.vue b/examples/b2b-quote-management/src/components/Quote.vue
index 74da6d9b5..7161f3700 100644
--- a/examples/b2b-quote-management/src/components/Quote.vue
+++ b/examples/b2b-quote-management/src/components/Quote.vue
@@ -34,7 +34,7 @@ const handleRequestQuote = async () => {
};
const activeQuote = computed(() => {
- return quote.value.stateMachineState?.technicalName === "replied";
+ return quote?.value.stateMachineState?.technicalName === "replied";
});
const refreshQuote = async () => {
quote.value = await getQuote(route.params.id as string);
@@ -102,7 +102,7 @@ const refreshQuote = async () => {
diff --git a/examples/b2b-quote-management/src/components/QuotesTable.vue b/examples/b2b-quote-management/src/components/QuotesTable.vue
index bee9621dd..684264c52 100644
--- a/examples/b2b-quote-management/src/components/QuotesTable.vue
+++ b/examples/b2b-quote-management/src/components/QuotesTable.vue
@@ -51,7 +51,7 @@ onBeforeMount(async () => {
>
|
-
+
{{ quote.quoteNumber }} |
{{ quote.createdAt }} |
diff --git a/examples/b2b-quote-management/src/components/RequestQuote.vue b/examples/b2b-quote-management/src/components/RequestQuote.vue
index 59836ca78..c358a4bac 100644
--- a/examples/b2b-quote-management/src/components/RequestQuote.vue
+++ b/examples/b2b-quote-management/src/components/RequestQuote.vue
@@ -8,8 +8,11 @@ import {
import Textarea from "primevue/textarea";
import Button from "primevue/button";
import Stepper from "primevue/stepper";
-import StepperPanel from "primevue/stepperpanel";
+import StepPanels from "primevue/steppanels";
+import StepList from "primevue/steplist";
import Message from "primevue/message";
+import StepPanel from "primevue/steppanel";
+import Step from "primevue/step";
const product = ref();
const requestComment = ref("");
@@ -33,10 +36,14 @@ onBeforeMount(async () => {
});
-
-
-
-
+
+ Add product to the basket
+ Request quote
+
+
+
+ Quote can be requested only for not empty cart
@@ -97,13 +104,11 @@ onBeforeMount(async () => {
label="Next"
icon="pi pi-arrow-right"
iconPos="right"
- @click="nextCallback"
+ @click="activateCallback('2')"
/>
-
-
-
-
+
+
You can add comment to your requested quote
@@ -124,10 +129,10 @@ onBeforeMount(async () => {
label="Back"
severity="secondary"
icon="pi pi-arrow-left"
- @click="prevCallback"
+ @click="activateCallback('1')"
/>
-
-
+
+
diff --git a/examples/b2b-quote-management/src/main.ts b/examples/b2b-quote-management/src/main.ts
index ec8a3a90a..20a4aa955 100644
--- a/examples/b2b-quote-management/src/main.ts
+++ b/examples/b2b-quote-management/src/main.ts
@@ -7,8 +7,9 @@ import Quote from "./components/Quote.vue";
import QuotesTable from "./components/QuotesTable.vue";
import RequestQuote from "./components/RequestQuote.vue";
import PrimeVue from "primevue/config";
-import "primevue/resources/themes/aura-light-green/theme.css";
+import Aura from "@primevue/themes/aura";
import "virtual:uno.css";
+import "./assets/main.css";
const routes = [
{ path: "/", component: App, name: "home" },
@@ -28,5 +29,9 @@ const shopwareContext = createShopwareContext(app, {});
app.provide("apiClient", apiClient);
app.use(shopwareContext);
app.use(router);
-app.use(PrimeVue);
+app.use(PrimeVue, {
+ theme: {
+ preset: Aura,
+ },
+});
app.mount("#app");
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 888618169..4dd7d5e49 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -110,7 +110,7 @@ importers:
version: 1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.0.0-beta.7(@algolia/client-search@4.20.0)(@types/node@20.11.17)(@types/react@17.0.75)(axios@1.7.2)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)(search-insights@2.6.0)(terser@5.31.1)(typescript@5.5.3))(vue@3.4.31(typescript@5.5.3))
vitepress-shopware-docs:
specifier: 0.3.0-beta.44
- version: 0.3.0-beta.44(@algolia/client-search@4.20.0)(@babel/core@7.24.7)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@types/react@17.0.75)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)(rollup@4.18.0)(search-insights@2.6.0)(vite@4.5.2(@types/node@20.11.17)(terser@5.31.1))(vue@3.4.31(typescript@5.5.3))
+ version: 0.3.0-beta.44(@algolia/client-search@4.20.0)(@babel/core@7.24.9)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@types/react@17.0.75)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)(rollup@4.18.0)(search-insights@2.6.0)(vite@4.5.2(@types/node@20.11.17)(terser@5.31.1))(vue@3.4.31(typescript@5.5.3))
vue:
specifier: 3.4.31
version: 3.4.31(typescript@5.5.3)
@@ -225,6 +225,9 @@ importers:
examples/b2b-quote-management:
dependencies:
+ '@primevue/themes':
+ specifier: ^4.0.0
+ version: 4.0.0(@primeuix/styled@0.0.5)
'@shopware-pwa/composables-next':
specifier: canary
version: link:../../packages/composables
@@ -238,8 +241,8 @@ importers:
specifier: 3.0.5
version: 3.0.5
primevue:
- specifier: 3.52.0
- version: 3.52.0(vue@3.4.31(typescript@5.5.3))
+ specifier: 4.0.0
+ version: 4.0.0(@primeuix/utils@0.0.5)(vue@3.4.31(typescript@5.5.3))
vue:
specifier: 3.4.31
version: 3.4.31(typescript@5.5.3)
@@ -1392,16 +1395,12 @@ packages:
resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
- '@babel/code-frame@7.24.6':
- resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.24.7':
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.7':
- resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
+ '@babel/compat-data@7.24.9':
+ resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.6':
@@ -1412,36 +1411,26 @@ packages:
resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.7':
- resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
+ '@babel/core@7.24.9':
+ resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.8':
- resolution: {integrity: sha512-47DG+6F5SzOi0uEvK4wMShmn5yY0mVjVJoWTphdY2B4Rx9wHgjK7Yhtr0ru6nE+sn0v38mzrWOlah0p/YlHHOQ==}
+ '@babel/generator@7.24.10':
+ resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.24.6':
- resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
+ '@babel/generator@7.24.8':
+ resolution: {integrity: sha512-47DG+6F5SzOi0uEvK4wMShmn5yY0mVjVJoWTphdY2B4Rx9wHgjK7Yhtr0ru6nE+sn0v38mzrWOlah0p/YlHHOQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.6':
- resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==}
+ '@babel/helper-compilation-targets@7.24.8':
+ resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.7':
- resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-create-class-features-plugin@7.24.6':
- resolution: {integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-create-class-features-plugin@7.24.7':
resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
@@ -1460,10 +1449,6 @@ packages:
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.24.6':
- resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-member-expression-to-functions@7.24.7':
resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
engines: {node: '>=6.9.0'}
@@ -1476,40 +1461,20 @@ packages:
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.6':
- resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-module-transforms@7.24.7':
- resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
+ '@babel/helper-module-transforms@7.24.9':
+ resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.24.6':
- resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-optimise-call-expression@7.24.7':
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.6':
- resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-plugin-utils@7.24.7':
resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-replace-supers@7.24.6':
- resolution: {integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-replace-supers@7.24.7':
resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
engines: {node: '>=6.9.0'}
@@ -1520,10 +1485,6 @@ packages:
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
- resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
@@ -1532,10 +1493,6 @@ packages:
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.7':
- resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.24.8':
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
@@ -1544,16 +1501,12 @@ packages:
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.7':
- resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
+ '@babel/helper-validator-option@7.24.8':
+ resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.6':
- resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.24.7':
- resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
+ '@babel/helpers@7.24.8':
+ resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.2':
@@ -1564,16 +1517,6 @@ packages:
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.6':
- resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.24.7':
- resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
'@babel/parser@7.24.8':
resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
engines: {node: '>=6.0.0'}
@@ -1602,24 +1545,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.1':
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.24.7':
resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.6':
- resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-typescript@7.24.7':
resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
engines: {node: '>=6.9.0'}
@@ -1672,10 +1603,6 @@ packages:
resolution: {integrity: sha512-xqWviI/pt1Zb/d+6ilWa5IDL2mkDzsBnlHbreqnfyP3/QB/ofQ1bNVcHj8YQX154Rf/xZKR6y0s1ydVF3nAS8g==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.6':
- resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
- engines: {node: '>=6.9.0'}
-
'@babel/template@7.24.7':
resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
engines: {node: '>=6.9.0'}
@@ -1684,14 +1611,14 @@ packages:
resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.6':
- resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/types@7.24.8':
resolution: {integrity: sha512-SkSBEHwwJRU52QEVZBmMBnE5Ux2/6WU1grdYyOhpbCNxbmJrDuDCphBzKZSO3taf0zztp+qkWlymE5tVL5l0TA==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.24.9':
+ resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -2491,9 +2418,6 @@ packages:
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/utils@2.1.24':
- resolution: {integrity: sha512-H8r2KpL5uKyrkb3z9/3HD/22JcxqW3BJyjEWZhX2T7DehnYVZthEap1cNsEl/UtCDC3TlpNmwiPX8wg3y8E4dg==}
-
'@iconify/utils@2.1.25':
resolution: {integrity: sha512-Y+iGko8uv/Fz5bQLLJyNSZGOdMW0G7cnlEX1CiNcKsRXX9cq/y/vwxrIAtLCZhKHr3m0VJmsjVPsvnM4uX8YLg==}
@@ -3098,6 +3022,31 @@ packages:
'@polka/url@1.0.0-next.25':
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
+ '@primeuix/styled@0.0.5':
+ resolution: {integrity: sha512-pVoGn/uPkVm/DyF3TR3EmH/pL/dP4nR42FcYbVduFq9VfO3KVeOEqvcCULHXos66RZO9MCbCFUoLy6ctf9GUGQ==}
+ engines: {node: '>=12.11.0'}
+
+ '@primeuix/utils@0.0.5':
+ resolution: {integrity: sha512-ntUiUgtRtkF8KuaxHffzhYxQxoXk6LAPHm7CVlFjdqS8Rx8xRkLkZVyo84E+pO2hcNFkOGVP/GxHhQ2s94O8zA==}
+ engines: {node: '>=12.11.0'}
+
+ '@primevue/core@4.0.0':
+ resolution: {integrity: sha512-M+GF1HYnl/x5J6uevXh1k42J0XnFhp0XHce+cHddWg7v3bVwgsn7LD3AKKcf0A/iQQPXVKX9nY/4/9eFVct67w==}
+ engines: {node: '>=12.11.0'}
+ peerDependencies:
+ '@primeuix/utils': ^0.0.5
+ vue: ^3.0.0
+
+ '@primevue/icons@4.0.0':
+ resolution: {integrity: sha512-gv9pbj7JjCuW59tW2csIJgg6btTJpkr/mjlfqscEIrYzDGqzCrbfxLur48gA2dyhYsiQPPTbIHFwL944piFgIg==}
+ engines: {node: '>=12.11.0'}
+
+ '@primevue/themes@4.0.0':
+ resolution: {integrity: sha512-y1HKYTuWma3T8NM9xVsLeJJeFWMxLIdJqNvQ+l8CnASgU+GH+KxMXOpPXqTAiJ2zpPmBL5VwpCCJWX93DjjvMQ==}
+ engines: {node: '>=12.11.0'}
+ peerDependencies:
+ '@primeuix/styled': ^0.0.5
+
'@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
@@ -4208,6 +4157,9 @@ packages:
'@unocss/core@0.61.3':
resolution: {integrity: sha512-9vixY1i5E0DQFtHJz/pHyFlFsiXJgL1bKHuocbl+GUi09lY/gE9TRm2qr2JOJx/BF720tMv9VxYI8Zq3EyPOXA==}
+ '@unocss/core@0.61.5':
+ resolution: {integrity: sha512-hB8zr2rnrCzz9x8ho2SAXQiYTEjwAPMiBzpaEe2C0+CFWeL1179h9508YVyZHHAzMyZILIG9YrVAWrrMdt2/Xg==}
+
'@unocss/extractor-arbitrary-variants@0.61.3':
resolution: {integrity: sha512-8yFAavi4PXTZTyJqsSQJuZNdaERMyLP4Gs4IzBDt8zjmUrXmYfgV+bKif2eE52QKvtb5/Jsij3fgfMsJouln7A==}
@@ -4472,48 +4424,48 @@ packages:
'@vue/compiler-core@3.4.29':
resolution: {integrity: sha512-TFKiRkKKsRCKvg/jTSSKK7mYLJEQdUiUfykbG49rubC9SfDyvT2JrzTReopWlz2MxqeLyxh9UZhvxEIBgAhtrg==}
- '@vue/compiler-core@3.4.30':
- resolution: {integrity: sha512-ZL8y4Xxdh8O6PSwfdZ1IpQ24PjTAieOz3jXb/MDTfDtANcKBMxg1KLm6OX2jofsaQGYfIVzd3BAG22i56/cF1w==}
-
'@vue/compiler-core@3.4.31':
resolution: {integrity: sha512-skOiodXWTV3DxfDhB4rOf3OGalpITLlgCeOwb+Y9GJpfQ8ErigdBUHomBzvG78JoVE8MJoQsb+qhZiHfKeNeEg==}
+ '@vue/compiler-core@3.4.32':
+ resolution: {integrity: sha512-8tCVWkkLe/QCWIsrIvExUGnhYCAOroUs5dzhSoKL5w4MJS8uIYiou+pOPSVIOALOQ80B0jBs+Ri+kd5+MBnCDw==}
+
'@vue/compiler-dom@3.4.21':
resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
'@vue/compiler-dom@3.4.29':
resolution: {integrity: sha512-A6+iZ2fKIEGnfPJejdB7b1FlJzgiD+Y/sxxKwJWg1EbJu6ZPgzaPQQ51ESGNv0CP6jm6Z7/pO6Ia8Ze6IKrX7w==}
- '@vue/compiler-dom@3.4.30':
- resolution: {integrity: sha512-+16Sd8lYr5j/owCbr9dowcNfrHd+pz+w2/b5Lt26Oz/kB90C9yNbxQ3bYOvt7rI2bxk0nqda39hVcwDFw85c2Q==}
-
'@vue/compiler-dom@3.4.31':
resolution: {integrity: sha512-wK424WMXsG1IGMyDGyLqB+TbmEBFM78hIsOJ9QwUVLGrcSk0ak6zYty7Pj8ftm7nEtdU/DGQxAXp0/lM/2cEpQ==}
+ '@vue/compiler-dom@3.4.32':
+ resolution: {integrity: sha512-PbSgt9KuYo4fyb90dynuPc0XFTfFPs3sCTbPLOLlo+PrUESW1gn/NjSsUvhR+mI2AmmEzexwYMxbHDldxSOr2A==}
+
'@vue/compiler-sfc@3.4.21':
resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
'@vue/compiler-sfc@3.4.29':
resolution: {integrity: sha512-zygDcEtn8ZimDlrEQyLUovoWgKQic6aEQqRXce2WXBvSeHbEbcAsXyCk9oG33ZkyWH4sl9D3tkYc1idoOkdqZQ==}
- '@vue/compiler-sfc@3.4.30':
- resolution: {integrity: sha512-8vElKklHn/UY8+FgUFlQrYAPbtiSB2zcgeRKW7HkpSRn/JjMRmZvuOtwDx036D1aqKNSTtXkWRfqx53Qb+HmMg==}
-
'@vue/compiler-sfc@3.4.31':
resolution: {integrity: sha512-einJxqEw8IIJxzmnxmJBuK2usI+lJonl53foq+9etB2HAzlPjAS/wa7r0uUpXw5ByX3/0uswVSrjNb17vJm1kQ==}
+ '@vue/compiler-sfc@3.4.32':
+ resolution: {integrity: sha512-STy9im/WHfaguJnfKjjVpMHukxHUrOKjm2vVCxiojQJyo3Sb6Os8SMXBr/MI+ekpstEGkDONfqAQoSbZhspLYw==}
+
'@vue/compiler-ssr@3.4.21':
resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
'@vue/compiler-ssr@3.4.29':
resolution: {integrity: sha512-rFbwCmxJ16tDp3N8XCx5xSQzjhidYjXllvEcqX/lopkoznlNPz3jyy0WGJCyhAaVQK677WWFt3YO/WUEkMMUFQ==}
- '@vue/compiler-ssr@3.4.30':
- resolution: {integrity: sha512-ZJ56YZGXJDd6jky4mmM0rNaNP6kIbQu9LTKZDhcpddGe/3QIalB1WHHmZ6iZfFNyj5mSypTa4+qDJa5VIuxMSg==}
-
'@vue/compiler-ssr@3.4.31':
resolution: {integrity: sha512-RtefmITAje3fJ8FSg1gwgDhdKhZVntIVbwupdyZDSifZTRMiWxWehAOTCc8/KZDnBOcYQ4/9VWxsTbd3wT0hAA==}
+ '@vue/compiler-ssr@3.4.32':
+ resolution: {integrity: sha512-nyu/txTecF6DrxLrpLcI34xutrvZPtHPBj9yRoPxstIquxeeyywXpYZrQMsIeDfBhlw1abJb9CbbyZvDw2kjdg==}
+
'@vue/devtools-api@6.5.1':
resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
@@ -4571,12 +4523,12 @@ packages:
'@vue/shared@3.4.29':
resolution: {integrity: sha512-hQ2gAQcBO/CDpC82DCrinJNgOHI2v+FA7BDW4lMSPeBpQ7sRe2OLHWe5cph1s7D8DUQAwRt18dBDfJJ220APEA==}
- '@vue/shared@3.4.30':
- resolution: {integrity: sha512-CLg+f8RQCHQnKvuHY9adMsMaQOcqclh6Z5V9TaoMgy0ut0tz848joZ7/CYFFyF/yZ5i2yaw7Fn498C+CNZVHIg==}
-
'@vue/shared@3.4.31':
resolution: {integrity: sha512-Yp3wtJk//8cO4NItOPpi3QkLExAr/aLBGZMmTtW9WpdwBCJpRM6zj9WgWktXAl8IDIozwNMByT45JP3tO3ACWA==}
+ '@vue/shared@3.4.32':
+ resolution: {integrity: sha512-ep4mF1IVnX/pYaNwxwOpJHyBtOMKWoKZMbnUyd+z0udqIxLUh7YCCd/JfDna8aUrmnG9SFORyIq2HzEATRrQsg==}
+
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
@@ -4764,6 +4716,11 @@ packages:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
+ acorn@8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
acorn@8.12.0:
resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
engines: {node: '>=0.4.0'}
@@ -5236,8 +5193,8 @@ packages:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'}
- chrome-trace-event@1.0.4:
- resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
+ chrome-trace-event@1.0.3:
+ resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
ci-info@3.9.0:
@@ -5814,6 +5771,10 @@ packages:
resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
engines: {node: '>=10.13.0'}
+ enhanced-resolve@5.16.1:
+ resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
+ engines: {node: '>=10.13.0'}
+
enhanced-resolve@5.17.0:
resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
engines: {node: '>=10.13.0'}
@@ -7913,6 +7874,10 @@ packages:
micromark@4.0.0:
resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
+ micromatch@4.0.5:
+ resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ engines: {node: '>=8.6'}
+
micromatch@4.0.7:
resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
engines: {node: '>=8.6'}
@@ -8807,10 +8772,9 @@ packages:
resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==}
engines: {node: '>=10'}
- primevue@3.52.0:
- resolution: {integrity: sha512-HLOVP5YI0ArFKUhIyfZsWmTNMaBYNCBWC/3DYvdd/Po4LY5/WXf7yIYvArE2q/3OuwSXJXvjlR8UNQeJYRSQog==}
- peerDependencies:
- vue: ^3.0.0
+ primevue@4.0.0:
+ resolution: {integrity: sha512-2PFmmJqyXpOcKOdF+gbps5fpSXfoXZp2LwX+hya/b5SDseMt3UNboyEgVI6B+DNbJRrib35EbDiMw+7RIANQ1w==}
+ engines: {node: '>=12.11.0'}
prism-react-renderer@1.3.5:
resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
@@ -11136,30 +11100,25 @@ snapshots:
picocolors: 1.0.1
optional: true
- '@babel/code-frame@7.24.6':
- dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.0.1
-
'@babel/code-frame@7.24.7':
dependencies:
'@babel/highlight': 7.24.7
picocolors: 1.0.1
- '@babel/compat-data@7.24.7': {}
+ '@babel/compat-data@7.24.9': {}
'@babel/core@7.24.6':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.6
- '@babel/generator': 7.24.7
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helpers': 7.24.6
- '@babel/parser': 7.24.7
- '@babel/template': 7.24.6
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.10
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.6)
+ '@babel/helpers': 7.24.8
+ '@babel/parser': 7.24.8
+ '@babel/template': 7.24.7
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
convert-source-map: 2.0.0
debug: 4.3.5
gensync: 1.0.0-beta.2
@@ -11172,14 +11131,14 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helpers': 7.24.7
+ '@babel/generator': 7.24.10
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.7)
+ '@babel/helpers': 7.24.8
'@babel/parser': 7.24.8
'@babel/template': 7.24.7
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
convert-source-map: 2.0.0
debug: 4.3.5
gensync: 1.0.0-beta.2
@@ -11188,66 +11147,76 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.24.7':
+ '@babel/core@7.24.9':
dependencies:
- '@babel/types': 7.24.8
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.10
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/helpers': 7.24.8
+ '@babel/parser': 7.24.8
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.9
+ convert-source-map: 2.0.0
+ debug: 4.3.5
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 7.6.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/generator@7.24.10':
+ dependencies:
+ '@babel/types': 7.24.9
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
'@babel/generator@7.24.8':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/helper-annotate-as-pure@7.24.6':
- dependencies:
- '@babel/types': 7.24.8
-
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
- '@babel/helper-compilation-targets@7.24.6':
+ '@babel/helper-compilation-targets@7.24.8':
dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/helper-validator-option': 7.24.7
+ '@babel/compat-data': 7.24.9
+ '@babel/helper-validator-option': 7.24.8
browserslist: 4.23.1
lru-cache: 5.1.1
semver: 7.6.2
- '@babel/helper-compilation-targets@7.24.7':
- dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- browserslist: 4.23.1
- lru-cache: 5.1.1
- semver: 7.6.2
-
- '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.6
- '@babel/helper-optimise-call-expression': 7.24.6
- '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.6)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
semver: 7.6.2
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.7
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
semver: 7.6.2
@@ -11256,40 +11225,36 @@ snapshots:
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@babel/helper-function-name@7.24.7':
dependencies:
'@babel/template': 7.24.7
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@babel/helper-hoist-variables@7.24.7':
dependencies:
- '@babel/types': 7.24.8
-
- '@babel/helper-member-expression-to-functions@7.24.6':
- dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@babel/helper-member-expression-to-functions@7.24.7':
dependencies:
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.22.15':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@babel/helper-module-imports@7.24.7':
dependencies:
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-environment-visitor': 7.24.7
@@ -11300,7 +11265,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
@@ -11311,28 +11276,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.24.6':
+ '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/core': 7.24.9
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.24.8
-
- '@babel/helper-plugin-utils@7.24.6': {}
+ '@babel/types': 7.24.9
'@babel/helper-plugin-utils@7.24.7': {}
- '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.6
- '@babel/helper-optimise-call-expression': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.7
'@babel/helper-optimise-call-expression': 7.24.7
@@ -11342,42 +11314,31 @@ snapshots:
'@babel/helper-simple-access@7.24.7':
dependencies:
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
- dependencies:
- '@babel/types': 7.24.8
-
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.24.8
-
- '@babel/helper-string-parser@7.24.7': {}
+ '@babel/types': 7.24.9
'@babel/helper-string-parser@7.24.8': {}
'@babel/helper-validator-identifier@7.24.7': {}
- '@babel/helper-validator-option@7.24.7': {}
-
- '@babel/helpers@7.24.6':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.8
+ '@babel/helper-validator-option@7.24.8': {}
- '@babel/helpers@7.24.7':
+ '@babel/helpers@7.24.8':
dependencies:
'@babel/template': 7.24.7
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@babel/highlight@7.24.2':
dependencies:
@@ -11394,73 +11355,65 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.0.1
- '@babel/parser@7.24.6':
- dependencies:
- '@babel/types': 7.24.8
-
- '@babel/parser@7.24.7':
- dependencies:
- '@babel/types': 7.24.8
-
'@babel/parser@7.24.8':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
- '@babel/plugin-proposal-decorators@7.23.5(@babel/core@7.24.7)':
+ '@babel/plugin-proposal-decorators@7.23.5(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.24.9
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.9)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.24.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.24.9
+ '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
'@babel/helper-plugin-utils': 7.24.7
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
@@ -11473,36 +11426,38 @@ snapshots:
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.6)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.9)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.24.9)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.9)
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.9)
transitivePeerDependencies:
- supports-color
@@ -11521,40 +11476,34 @@ snapshots:
'@babel/standalone@7.23.10': {}
- '@babel/template@7.24.6':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.8
-
'@babel/template@7.24.7':
dependencies:
'@babel/code-frame': 7.24.7
'@babel/parser': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@babel/traverse@7.24.8':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.8
+ '@babel/generator': 7.24.10
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
'@babel/parser': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
debug: 4.3.5
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.6':
+ '@babel/types@7.24.8':
dependencies:
- '@babel/helper-string-parser': 7.24.7
+ '@babel/helper-string-parser': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
- '@babel/types@7.24.8':
+ '@babel/types@7.24.9':
dependencies:
'@babel/helper-string-parser': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
@@ -11679,7 +11628,7 @@ snapshots:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- micromatch: 4.0.7
+ micromatch: 4.0.5
'@changesets/errors@0.2.0':
dependencies:
@@ -11719,7 +11668,7 @@ snapshots:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
is-subdir: 1.2.0
- micromatch: 4.0.7
+ micromatch: 4.0.5
spawndamnit: 2.0.0
'@changesets/logger@0.1.0':
@@ -12185,18 +12134,6 @@ snapshots:
'@iconify/types@2.0.0': {}
- '@iconify/utils@2.1.24':
- dependencies:
- '@antfu/install-pkg': 0.1.1
- '@antfu/utils': 0.7.10
- '@iconify/types': 2.0.0
- debug: 4.3.5
- kolorist: 1.8.0
- local-pkg: 0.5.0
- mlly: 1.7.1
- transitivePeerDependencies:
- - supports-color
-
'@iconify/utils@2.1.25':
dependencies:
'@antfu/install-pkg': 0.1.1
@@ -12338,7 +12275,7 @@ snapshots:
'@intlify/bundle-utils': 7.4.0(vue-i18n@9.9.1(vue@3.4.31(typescript@5.5.3)))
'@intlify/shared': 9.9.1
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
- '@vue/compiler-sfc': 3.4.30
+ '@vue/compiler-sfc': 3.4.32
debug: 4.3.5
fast-glob: 3.3.2
js-yaml: 4.1.0
@@ -13333,7 +13270,7 @@ snapshots:
'@parcel/watcher-wasm@2.4.1':
dependencies:
is-glob: 4.0.3
- micromatch: 4.0.7
+ micromatch: 4.0.5
'@parcel/watcher-win32-arm64@2.4.1':
optional: true
@@ -13348,7 +13285,7 @@ snapshots:
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
- micromatch: 4.0.7
+ micromatch: 4.0.5
node-addon-api: 7.1.0
optionalDependencies:
'@parcel/watcher-android-arm64': 2.4.1
@@ -13377,6 +13314,29 @@ snapshots:
'@polka/url@1.0.0-next.25': {}
+ '@primeuix/styled@0.0.5':
+ dependencies:
+ '@primeuix/utils': 0.0.5
+
+ '@primeuix/utils@0.0.5': {}
+
+ '@primevue/core@4.0.0(@primeuix/utils@0.0.5)(vue@3.4.31(typescript@5.5.3))':
+ dependencies:
+ '@primeuix/styled': 0.0.5
+ '@primeuix/utils': 0.0.5
+ vue: 3.4.31(typescript@5.5.3)
+
+ '@primevue/icons@4.0.0(@primeuix/utils@0.0.5)(vue@3.4.31(typescript@5.5.3))':
+ dependencies:
+ '@primevue/core': 4.0.0(@primeuix/utils@0.0.5)(vue@3.4.31(typescript@5.5.3))
+ transitivePeerDependencies:
+ - '@primeuix/utils'
+ - vue
+
+ '@primevue/themes@4.0.0(@primeuix/styled@0.0.5)':
+ dependencies:
+ '@primeuix/styled': 0.0.5
+
'@protobufjs/aspromise@1.1.2': {}
'@protobufjs/base64@1.1.2': {}
@@ -13754,13 +13714,13 @@ snapshots:
'@stackblitz/sdk@1.11.0': {}
- '@stoplight/elements-core@7.7.18(@babel/core@7.24.7)(@babel/template@7.24.7)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)':
+ '@stoplight/elements-core@7.7.18(@babel/core@7.24.9)(@babel/template@7.24.7)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)':
dependencies:
'@stoplight/http-spec': 5.7.3(encoding@0.1.13)
'@stoplight/json': 3.20.2
'@stoplight/json-schema-ref-parser': 9.2.2(encoding@0.1.13)
'@stoplight/json-schema-sampler': 0.2.3
- '@stoplight/json-schema-viewer': 4.10.0(@babel/core@7.24.7)(@babel/template@7.24.7)(@stoplight/markdown-viewer@5.6.0(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
+ '@stoplight/json-schema-viewer': 4.10.0(@babel/core@7.24.9)(@babel/template@7.24.7)(@stoplight/markdown-viewer@5.6.0(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
'@stoplight/markdown-viewer': 5.6.0(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
'@stoplight/mosaic': 1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
'@stoplight/mosaic-code-editor': 1.40.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
@@ -13771,7 +13731,7 @@ snapshots:
'@stoplight/yaml': 4.2.3
classnames: 2.3.2
httpsnippet-lite: 3.0.5
- jotai: 1.3.9(@babel/core@7.24.7)(@babel/template@7.24.7)(react-query@3.39.3(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react@17.0.2)
+ jotai: 1.3.9(@babel/core@7.24.9)(@babel/template@7.24.7)(react-query@3.39.3(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react@17.0.2)
json-schema: 0.4.0
lodash: 4.17.21
nanoid: 3.3.7
@@ -13807,9 +13767,9 @@ snapshots:
- wonka
- xstate
- '@stoplight/elements-dev-portal@1.10.2(@babel/core@7.24.7)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)':
+ '@stoplight/elements-dev-portal@1.10.2(@babel/core@7.24.9)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)':
dependencies:
- '@stoplight/elements-core': 7.7.18(@babel/core@7.24.7)(@babel/template@7.24.7)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
+ '@stoplight/elements-core': 7.7.18(@babel/core@7.24.9)(@babel/template@7.24.7)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
'@stoplight/markdown-viewer': 5.6.0(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
'@stoplight/mosaic': 1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
'@stoplight/path': 1.3.2
@@ -13904,7 +13864,7 @@ snapshots:
'@types/json-schema': 7.0.15
magic-error: 0.0.1
- '@stoplight/json-schema-viewer@4.10.0(@babel/core@7.24.7)(@babel/template@7.24.7)(@stoplight/markdown-viewer@5.6.0(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2)':
+ '@stoplight/json-schema-viewer@4.10.0(@babel/core@7.24.9)(@babel/template@7.24.7)(@stoplight/markdown-viewer@5.6.0(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@stoplight/mosaic@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react-dom@18.2.0(react@17.0.2))(react@17.0.2)':
dependencies:
'@stoplight/json': 3.20.2
'@stoplight/json-schema-tree': 2.2.2
@@ -13915,7 +13875,7 @@ snapshots:
'@types/json-schema': 7.0.15
classnames: 2.3.2
fnv-plus: 1.3.1
- jotai: 1.13.1(@babel/core@7.24.7)(@babel/template@7.24.7)(react@17.0.2)
+ jotai: 1.13.1(@babel/core@7.24.9)(@babel/template@7.24.7)(react@17.0.2)
lodash: 4.17.21
react: 17.0.2
react-dom: 18.2.0(react@17.0.2)
@@ -14279,23 +14239,23 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
'@babel/parser': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.20.1
'@types/babel__generator@7.6.4':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@types/babel__template@7.4.1':
dependencies:
'@babel/parser': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@types/babel__traverse@7.20.1':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@types/body-parser@1.19.5':
dependencies:
@@ -14933,6 +14893,8 @@ snapshots:
'@unocss/core@0.61.3': {}
+ '@unocss/core@0.61.5': {}
+
'@unocss/extractor-arbitrary-variants@0.61.3':
dependencies:
'@unocss/core': 0.61.3
@@ -15017,7 +14979,7 @@ snapshots:
'@unocss/preset-icons@0.49.8':
dependencies:
- '@iconify/utils': 2.1.24
+ '@iconify/utils': 2.1.25
'@unocss/core': 0.49.8
ofetch: 1.3.4
transitivePeerDependencies:
@@ -15098,7 +15060,7 @@ snapshots:
'@unocss/rule-utils@0.61.3':
dependencies:
- '@unocss/core': 0.61.3
+ '@unocss/core': 0.61.5
magic-string: 0.30.10
'@unocss/scope@0.49.8': {}
@@ -15107,9 +15069,9 @@ snapshots:
'@unocss/transformer-attributify-jsx-babel@0.61.3':
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.24.9
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.24.9)
'@unocss/core': 0.61.3
transitivePeerDependencies:
- supports-color
@@ -15280,7 +15242,7 @@ snapshots:
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.5
node-gyp-build: 4.8.1
resolve-from: 5.0.0
transitivePeerDependencies:
@@ -15298,7 +15260,7 @@ snapshots:
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.5
node-gyp-build: 4.8.1
resolve-from: 5.0.0
transitivePeerDependencies:
@@ -15494,9 +15456,9 @@ snapshots:
'@vue-macros/common@1.10.4(rollup@4.18.0)(vue@3.4.31(typescript@5.5.3))':
dependencies:
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
- '@vue/compiler-sfc': 3.4.31
+ '@vue/compiler-sfc': 3.4.32
ast-kit: 0.12.2
local-pkg: 0.5.0
magic-string-ast: 0.6.2
@@ -15510,11 +15472,11 @@ snapshots:
'@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.6)':
dependencies:
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.6)
- '@babel/template': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.6)
+ '@babel/template': 7.24.7
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@vue/babel-helper-vue-transform-on': 1.2.2
'@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.6)
camelcase: 6.3.0
@@ -15525,21 +15487,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.7)':
+ '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.9)':
dependencies:
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.7)
- '@babel/template': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
+ '@babel/template': 7.24.7
'@babel/traverse': 7.24.8
- '@babel/types': 7.24.8
+ '@babel/types': 7.24.9
'@vue/babel-helper-vue-transform-on': 1.2.2
- '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.7)
+ '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.9)
camelcase: 6.3.0
html-tags: 3.3.1
svg-tags: 1.0.0
optionalDependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
transitivePeerDependencies:
- supports-color
@@ -15549,17 +15511,17 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.24.7
- '@babel/parser': 7.24.7
- '@vue/compiler-sfc': 3.4.30
+ '@babel/parser': 7.24.8
+ '@vue/compiler-sfc': 3.4.32
- '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.7)':
+ '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.9)':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.24.7
- '@babel/parser': 7.24.7
- '@vue/compiler-sfc': 3.4.30
+ '@babel/parser': 7.24.8
+ '@vue/compiler-sfc': 3.4.32
'@vue/compiler-core@3.4.21':
dependencies:
@@ -15577,18 +15539,18 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-core@3.4.30':
+ '@vue/compiler-core@3.4.31':
dependencies:
'@babel/parser': 7.24.8
- '@vue/shared': 3.4.30
+ '@vue/shared': 3.4.31
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-core@3.4.31':
+ '@vue/compiler-core@3.4.32':
dependencies:
'@babel/parser': 7.24.8
- '@vue/shared': 3.4.31
+ '@vue/shared': 3.4.32
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
@@ -15603,19 +15565,19 @@ snapshots:
'@vue/compiler-core': 3.4.29
'@vue/shared': 3.4.29
- '@vue/compiler-dom@3.4.30':
- dependencies:
- '@vue/compiler-core': 3.4.30
- '@vue/shared': 3.4.30
-
'@vue/compiler-dom@3.4.31':
dependencies:
'@vue/compiler-core': 3.4.31
'@vue/shared': 3.4.31
+ '@vue/compiler-dom@3.4.32':
+ dependencies:
+ '@vue/compiler-core': 3.4.32
+ '@vue/shared': 3.4.32
+
'@vue/compiler-sfc@3.4.21':
dependencies:
- '@babel/parser': 7.24.6
+ '@babel/parser': 7.24.8
'@vue/compiler-core': 3.4.21
'@vue/compiler-dom': 3.4.21
'@vue/compiler-ssr': 3.4.21
@@ -15627,7 +15589,7 @@ snapshots:
'@vue/compiler-sfc@3.4.29':
dependencies:
- '@babel/parser': 7.24.7
+ '@babel/parser': 7.24.8
'@vue/compiler-core': 3.4.29
'@vue/compiler-dom': 3.4.29
'@vue/compiler-ssr': 3.4.29
@@ -15637,25 +15599,25 @@ snapshots:
postcss: 8.4.39
source-map-js: 1.2.0
- '@vue/compiler-sfc@3.4.30':
+ '@vue/compiler-sfc@3.4.31':
dependencies:
'@babel/parser': 7.24.8
- '@vue/compiler-core': 3.4.30
- '@vue/compiler-dom': 3.4.30
- '@vue/compiler-ssr': 3.4.30
- '@vue/shared': 3.4.30
+ '@vue/compiler-core': 3.4.31
+ '@vue/compiler-dom': 3.4.31
+ '@vue/compiler-ssr': 3.4.31
+ '@vue/shared': 3.4.31
estree-walker: 2.0.2
magic-string: 0.30.10
postcss: 8.4.39
source-map-js: 1.2.0
- '@vue/compiler-sfc@3.4.31':
+ '@vue/compiler-sfc@3.4.32':
dependencies:
'@babel/parser': 7.24.8
- '@vue/compiler-core': 3.4.31
- '@vue/compiler-dom': 3.4.31
- '@vue/compiler-ssr': 3.4.31
- '@vue/shared': 3.4.31
+ '@vue/compiler-core': 3.4.32
+ '@vue/compiler-dom': 3.4.32
+ '@vue/compiler-ssr': 3.4.32
+ '@vue/shared': 3.4.32
estree-walker: 2.0.2
magic-string: 0.30.10
postcss: 8.4.39
@@ -15671,16 +15633,16 @@ snapshots:
'@vue/compiler-dom': 3.4.29
'@vue/shared': 3.4.29
- '@vue/compiler-ssr@3.4.30':
- dependencies:
- '@vue/compiler-dom': 3.4.30
- '@vue/shared': 3.4.30
-
'@vue/compiler-ssr@3.4.31':
dependencies:
'@vue/compiler-dom': 3.4.31
'@vue/shared': 3.4.31
+ '@vue/compiler-ssr@3.4.32':
+ dependencies:
+ '@vue/compiler-dom': 3.4.32
+ '@vue/shared': 3.4.32
+
'@vue/devtools-api@6.5.1': {}
'@vue/devtools-api@6.6.3': {}
@@ -15751,8 +15713,8 @@ snapshots:
'@vue/language-core@2.0.26(typescript@5.5.3)':
dependencies:
'@volar/language-core': 2.4.0-alpha.15
- '@vue/compiler-dom': 3.4.30
- '@vue/shared': 3.4.31
+ '@vue/compiler-dom': 3.4.32
+ '@vue/shared': 3.4.32
computeds: 0.0.1
minimatch: 9.0.4
muggle-string: 0.4.1
@@ -15787,10 +15749,10 @@ snapshots:
'@vue/shared@3.4.29': {}
- '@vue/shared@3.4.30': {}
-
'@vue/shared@3.4.31': {}
+ '@vue/shared@3.4.32': {}
+
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.1
@@ -16029,9 +15991,9 @@ snapshots:
dependencies:
event-target-shim: 5.0.1
- acorn-import-assertions@1.9.0(acorn@8.12.0):
+ acorn-import-assertions@1.9.0(acorn@8.11.3):
dependencies:
- acorn: 8.12.0
+ acorn: 8.11.3
acorn-import-attributes@1.9.5(acorn@8.12.0):
dependencies:
@@ -16043,6 +16005,8 @@ snapshots:
acorn-walk@8.3.2: {}
+ acorn@8.11.3: {}
+
acorn@8.12.0: {}
agent-base@6.0.2:
@@ -16674,7 +16638,7 @@ snapshots:
chownr@3.0.0: {}
- chrome-trace-event@1.0.4: {}
+ chrome-trace-event@1.0.3: {}
ci-info@3.9.0: {}
@@ -17186,6 +17150,11 @@ snapshots:
graceful-fs: 4.2.11
tapable: 2.2.1
+ enhanced-resolve@5.16.1:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
+
enhanced-resolve@5.17.0:
dependencies:
graceful-fs: 4.2.11
@@ -17881,7 +17850,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.5
fast-json-stable-stringify@2.1.0: {}
@@ -17949,7 +17918,7 @@ snapshots:
find-yarn-workspace-root2@1.2.16:
dependencies:
- micromatch: 4.0.7
+ micromatch: 4.0.5
pkg-dir: 4.2.0
find@0.1.7:
@@ -18949,18 +18918,18 @@ snapshots:
jju@1.4.0: {}
- jotai@1.13.1(@babel/core@7.24.7)(@babel/template@7.24.7)(react@17.0.2):
+ jotai@1.13.1(@babel/core@7.24.9)(@babel/template@7.24.7)(react@17.0.2):
dependencies:
react: 17.0.2
optionalDependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/template': 7.24.7
- jotai@1.3.9(@babel/core@7.24.7)(@babel/template@7.24.7)(react-query@3.39.3(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react@17.0.2):
+ jotai@1.3.9(@babel/core@7.24.9)(@babel/template@7.24.7)(react-query@3.39.3(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(react@17.0.2):
dependencies:
react: 17.0.2
optionalDependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/template': 7.24.7
react-query: 3.39.3(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
@@ -19291,8 +19260,8 @@ snapshots:
magicast@0.3.3:
dependencies:
- '@babel/parser': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/parser': 7.24.8
+ '@babel/types': 7.24.9
source-map-js: 1.2.0
magicast@0.3.4:
@@ -19831,6 +19800,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ micromatch@4.0.5:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.1
+
micromatch@4.0.7:
dependencies:
braces: 3.0.3
@@ -20887,12 +20861,12 @@ snapshots:
path-scurry@1.10.2:
dependencies:
- lru-cache: 10.3.0
+ lru-cache: 10.2.0
minipass: 7.1.2
path-scurry@1.11.1:
dependencies:
- lru-cache: 10.3.0
+ lru-cache: 10.2.0
minipass: 7.1.2
path-to-regexp@1.8.0:
@@ -21184,9 +21158,13 @@ snapshots:
dependencies:
parse-ms: 2.1.0
- primevue@3.52.0(vue@3.4.31(typescript@5.5.3)):
+ primevue@4.0.0(@primeuix/utils@0.0.5)(vue@3.4.31(typescript@5.5.3)):
dependencies:
- vue: 3.4.31(typescript@5.5.3)
+ '@primevue/core': 4.0.0(@primeuix/utils@0.0.5)(vue@3.4.31(typescript@5.5.3))
+ '@primevue/icons': 4.0.0(@primeuix/utils@0.0.5)(vue@3.4.31(typescript@5.5.3))
+ transitivePeerDependencies:
+ - '@primeuix/utils'
+ - vue
prism-react-renderer@1.3.5(react@17.0.2):
dependencies:
@@ -22258,7 +22236,7 @@ snapshots:
terser@4.8.1:
dependencies:
- acorn: 8.12.0
+ acorn: 8.11.3
commander: 2.20.3
source-map: 0.6.1
source-map-support: 0.5.21
@@ -22376,7 +22354,7 @@ snapshots:
chalk: 4.1.2
enhanced-resolve: 4.5.0
loader-utils: 2.0.4
- micromatch: 4.0.7
+ micromatch: 4.0.5
semver: 7.6.2
typescript: 5.5.3
webpack: 5.91.0(@swc/core@1.6.13)(esbuild@0.20.2)
@@ -22972,7 +22950,7 @@ snapshots:
untyped@1.4.2:
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.9
'@babel/standalone': 7.23.10
'@babel/types': 7.24.8
defu: 6.1.4
@@ -23360,13 +23338,13 @@ snapshots:
vite-plugin-vue-inspector@5.1.2(vite@5.3.3(@types/node@20.11.17)(terser@5.31.1)):
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.7)
- '@vue/compiler-dom': 3.4.30
+ '@babel/core': 7.24.9
+ '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.24.9)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.9)
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.9)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.9)
+ '@vue/compiler-dom': 3.4.32
kolorist: 1.8.0
magic-string: 0.30.10
vite: 5.3.3(@types/node@20.11.17)(terser@5.31.1)
@@ -23375,13 +23353,13 @@ snapshots:
vite-plugin-vue-inspector@5.1.2(vite@5.3.3(@types/node@20.14.2)(terser@5.31.1)):
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.7)
- '@vue/compiler-dom': 3.4.30
+ '@babel/core': 7.24.9
+ '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.24.9)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.9)
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.9)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.9)
+ '@vue/compiler-dom': 3.4.32
kolorist: 1.8.0
magic-string: 0.30.10
vite: 5.3.3(@types/node@20.14.2)(terser@5.31.1)
@@ -23390,13 +23368,13 @@ snapshots:
vite-plugin-vue-inspector@5.1.2(vite@5.3.3(@types/node@20.14.9)(terser@5.31.1)):
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.7)
- '@vue/compiler-dom': 3.4.30
+ '@babel/core': 7.24.9
+ '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.24.9)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.9)
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.9)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.9)
+ '@vue/compiler-dom': 3.4.32
kolorist: 1.8.0
magic-string: 0.30.10
vite: 5.3.3(@types/node@20.14.9)(terser@5.31.1)
@@ -23457,12 +23435,12 @@ snapshots:
vitepress: 1.0.0-beta.7(@algolia/client-search@4.20.0)(@types/node@20.11.17)(@types/react@17.0.75)(axios@1.7.2)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)(search-insights@2.6.0)(terser@5.31.1)(typescript@5.5.3)
vue: 3.4.31(typescript@5.5.3)
- vitepress-shopware-docs@0.3.0-beta.44(@algolia/client-search@4.20.0)(@babel/core@7.24.7)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@types/react@17.0.75)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)(rollup@4.18.0)(search-insights@2.6.0)(vite@4.5.2(@types/node@20.11.17)(terser@5.31.1))(vue@3.4.31(typescript@5.5.3)):
+ vitepress-shopware-docs@0.3.0-beta.44(@algolia/client-search@4.20.0)(@babel/core@7.24.9)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(@types/react@17.0.75)(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)(rollup@4.18.0)(search-insights@2.6.0)(vite@4.5.2(@types/node@20.11.17)(terser@5.31.1))(vue@3.4.31(typescript@5.5.3)):
dependencies:
'@docsearch/css': 3.5.2
'@docsearch/js': 3.5.2(@algolia/client-search@4.20.0)(@types/react@17.0.75)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)(search-insights@2.6.0)
'@iconify-json/carbon': 1.1.31
- '@stoplight/elements-dev-portal': 1.10.2(@babel/core@7.24.7)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
+ '@stoplight/elements-dev-portal': 1.10.2(@babel/core@7.24.9)(@babel/template@7.24.7)(@stoplight/mosaic-code-viewer@1.41.0(react-dom@18.2.0(react@17.0.2))(react@17.0.2))(encoding@0.1.13)(react-dom@18.2.0(react@17.0.2))(react@17.0.2)
'@stoplight/json-schema-generator': 1.0.2(encoding@0.1.13)
'@vueuse/core': 9.13.0(vue@3.4.31(typescript@5.5.3))
axios: 0.27.2
@@ -23704,12 +23682,12 @@ snapshots:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.0
- acorn-import-assertions: 1.9.0(acorn@8.12.0)
+ acorn: 8.11.3
+ acorn-import-assertions: 1.9.0(acorn@8.11.3)
browserslist: 4.23.1
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.0
- es-module-lexer: 1.5.4
+ chrome-trace-event: 1.0.3
+ enhanced-resolve: 5.16.1
+ es-module-lexer: 1.4.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1