Merge branch 'master' of https://github.com/primefaces/primevue
commit
7f0f2a578b
|
@ -0,0 +1,75 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>Headless mode is enabled by defining a <i>container</i> slot that lets you implement entire UI instead of the default elements.</p>
|
||||
</DocSectionText>
|
||||
<div class="card">
|
||||
<Paginator :rows="10" :totalRecords="120">
|
||||
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
|
||||
<div class="flex items-center gap-2">
|
||||
<Button icon="pi pi-chevron-left" severity="secondary" text @click="prevCallback" />
|
||||
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
|
||||
<Button icon="pi pi-chevron-right" severity="secondary" text @click="nextCallback" />
|
||||
</div>
|
||||
</template>
|
||||
</Paginator>
|
||||
</div>
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
code: {
|
||||
basic: `
|
||||
<Paginator :rows="10" :totalRecords="120">
|
||||
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
|
||||
<div class="flex items-center gap-2">
|
||||
<Button icon="pi pi-chevron-left" severity="secondary" text rounded @click="prevCallback" />
|
||||
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
|
||||
<Button icon="pi pi-chevron-right" severity="secondary" text rounded @click="nextCallback" />
|
||||
</div>
|
||||
</template>
|
||||
</Paginator>
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<Paginator :rows="10" :totalRecords="120">
|
||||
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
|
||||
<div class="flex items-center gap-2">
|
||||
<Button icon="pi pi-chevron-left" severity="secondary" text rounded @click="prevCallback" />
|
||||
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
|
||||
<Button icon="pi pi-chevron-right" severity="secondary" text rounded @click="nextCallback" />
|
||||
</div>
|
||||
</template>
|
||||
</Paginator>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<\/script>
|
||||
`,
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<Paginator :rows="10" :totalRecords="120">
|
||||
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
|
||||
<div class="flex items-center gap-2">
|
||||
<Button icon="pi pi-chevron-left" severity="secondary" text rounded @click="prevCallback" />
|
||||
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
|
||||
<Button icon="pi pi-chevron-right" severity="secondary" text rounded @click="nextCallback" />
|
||||
</div>
|
||||
</template>
|
||||
</Paginator>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
<\/script>
|
||||
`
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
|
@ -33,7 +33,7 @@ export default {
|
|||
first: 0,
|
||||
code: {
|
||||
basic: `
|
||||
<Paginator v-model:first="first" :rows="1" :totalRecords="1" template="FirstPageLink PrevPageLink CurrentPageReport NextPageLink LastPageLink" />
|
||||
<Paginator v-model:first="first" :rows="1" :totalRecords="12" template="FirstPageLink PrevPageLink CurrentPageReport NextPageLink LastPageLink" />
|
||||
|
||||
<div class="p-4 text-center">
|
||||
<img :src="\`https://primefaces.org/cdn/primevue/images/nature/nature\${first + 1}.jpg\`" :alt="first" class="rounded w-full sm:w-[30rem]" />
|
||||
|
|
|
@ -58,6 +58,9 @@ export default defineNuxtConfig({
|
|||
app: {
|
||||
baseURL: baseUrl,
|
||||
head: {
|
||||
htmlAttrs: {
|
||||
dir: 'rtl'
|
||||
},
|
||||
title: 'PrimeVue - Vue UI Component Library',
|
||||
meta: [
|
||||
{ charset: 'utf-8' },
|
||||
|
|
|
@ -31,14 +31,22 @@ const theme = ({ dt }) => `
|
|||
order: 1;
|
||||
}
|
||||
|
||||
.p-button-icon-right:dir(rtl) {
|
||||
order: -1;
|
||||
}
|
||||
|
||||
.p-button:not(.p-button-vertical) .p-button-icon:not(.p-button-icon-right):dir(rtl) {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
.p-button-icon-bottom {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
.p-button-icon-only {
|
||||
width: ${dt('button.icon.only.width')};
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-inline-start: 0;
|
||||
padding-inline-end: 0;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-buttongroup .p-button:not(:last-child),
|
||||
.p-buttongroup .p-button:not(:last-child):hover {
|
||||
border-right: 0 none;
|
||||
border-inline-end: 0 none;
|
||||
}
|
||||
|
||||
.p-buttongroup .p-button:not(:first-of-type):not(:last-of-type) {
|
||||
|
@ -15,13 +15,13 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-buttongroup .p-button:first-of-type:not(:only-of-type) {
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-start-end-radius: 0;
|
||||
border-end-end-radius: 0;
|
||||
}
|
||||
|
||||
.p-buttongroup .p-button:last-of-type:not(:only-of-type) {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-start-start-radius: 0;
|
||||
border-end-start-radius: 0;
|
||||
}
|
||||
|
||||
.p-buttongroup .p-button:focus {
|
||||
|
|
|
@ -43,8 +43,8 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-confirmpopup-flipped {
|
||||
margin-top: calc(${dt('confirmpopup.gutter')} * -1);
|
||||
margin-bottom: ${dt('confirmpopup.gutter')};
|
||||
margin-block-start: calc(${dt('confirmpopup.gutter')} * -1);
|
||||
margin-block-end: ${dt('confirmpopup.gutter')};
|
||||
}
|
||||
|
||||
.p-confirmpopup-enter-from {
|
||||
|
|
|
@ -42,6 +42,7 @@ const theme = ({ dt }) => `
|
|||
align-items: center;
|
||||
gap: ${dt('dialog.header.gap')};
|
||||
}
|
||||
|
||||
.p-dialog-enter-active {
|
||||
transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
|
@ -115,6 +116,24 @@ const theme = ({ dt }) => `
|
|||
transform: translate3d(100%, 0px, 0px);
|
||||
}
|
||||
|
||||
.p-dialog-left:dir(rtl) .p-dialog-enter-from,
|
||||
.p-dialog-left:dir(rtl) .p-dialog-leave-to,
|
||||
.p-dialog-topleft:dir(rtl) .p-dialog-enter-from,
|
||||
.p-dialog-topleft:dir(rtl) .p-dialog-leave-to,
|
||||
.p-dialog-bottomleft:dir(rtl) .p-dialog-enter-from,
|
||||
.p-dialog-bottomleft:dir(rtl) .p-dialog-leave-to {
|
||||
transform: translate3d(100%, 0px, 0px);
|
||||
}
|
||||
|
||||
.p-dialog-right:dir(rtl) .p-dialog-enter-from,
|
||||
.p-dialog-right:dir(rtl) .p-dialog-leave-to,
|
||||
.p-dialog-topright:dir(rtl) .p-dialog-enter-from,
|
||||
.p-dialog-topright:dir(rtl) .p-dialog-leave-to,
|
||||
.p-dialog-bottomright:dir(rtl) .p-dialog-enter-from,
|
||||
.p-dialog-bottomright:dir(rtl) .p-dialog-leave-to {
|
||||
transform: translate3d(-100%, 0px, 0px);
|
||||
}
|
||||
|
||||
.p-dialog-maximized {
|
||||
width: 100vw !important;
|
||||
height: 100vh !important;
|
||||
|
|
|
@ -81,25 +81,25 @@ const theme = ({ dt }) => `
|
|||
.p-drawer-left .p-drawer {
|
||||
width: 20rem;
|
||||
height: 100%;
|
||||
border-right-width: 1px;
|
||||
border-inline-end-width: 1px;
|
||||
}
|
||||
|
||||
.p-drawer-right .p-drawer {
|
||||
width: 20rem;
|
||||
height: 100%;
|
||||
border-left-width: 1px;
|
||||
border-inline-start-width: 1px;
|
||||
}
|
||||
|
||||
.p-drawer-top .p-drawer {
|
||||
height: 10rem;
|
||||
width: 100%;
|
||||
border-bottom-width: 1px;
|
||||
border-block-end-width: 1px;
|
||||
}
|
||||
|
||||
.p-drawer-bottom .p-drawer {
|
||||
height: 10rem;
|
||||
width: 100%;
|
||||
border-top-width: 1px;
|
||||
border-block-start-width: 1px;
|
||||
}
|
||||
|
||||
.p-drawer-left .p-drawer-content,
|
||||
|
@ -113,6 +113,10 @@ const theme = ({ dt }) => `
|
|||
.p-drawer-open {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.p-overlay-mask:dir(rtl) {
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
`;
|
||||
|
||||
const inlineStyles = {
|
||||
|
|
|
@ -40,10 +40,10 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-organizationchart-node-toggle-button {
|
||||
position: absolute;
|
||||
bottom: calc(-1 * calc(${dt('organizationchart.node.toggle.button.size')} / 2));
|
||||
margin-left: calc(-1 * calc(${dt('organizationchart.node.toggle.button.size')} / 2));
|
||||
inset-block-end: calc(-1 * calc(${dt('organizationchart.node.toggle.button.size')} / 2));
|
||||
margin-inline-start: calc(-1 * calc(${dt('organizationchart.node.toggle.button.size')} / 2));
|
||||
z-index: 2;
|
||||
left: 50%;
|
||||
inset-inline-start: 50%;
|
||||
user-select: none;
|
||||
cursor: pointer;
|
||||
width: ${dt('organizationchart.node.toggle.button.size')};
|
||||
|
@ -75,7 +75,7 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-organizationchart-node-toggle-button-icon {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
inset-block-start: 1px;
|
||||
}
|
||||
|
||||
.p-organizationchart-connector-down {
|
||||
|
@ -91,11 +91,11 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-organizationchart-connector-left {
|
||||
border-radius: 0;
|
||||
border-right: 1px solid ${dt('organizationchart.connector.color')};
|
||||
border-inline-end: 1px solid ${dt('organizationchart.connector.color')};
|
||||
}
|
||||
|
||||
.p-organizationchart-connector-top {
|
||||
border-top: 1px solid ${dt('organizationchart.connector.color')};
|
||||
border-block-start: 1px solid ${dt('organizationchart.connector.color')};
|
||||
}
|
||||
|
||||
.p-organizationchart-node-selectable {
|
||||
|
@ -103,16 +103,16 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-organizationchart-connectors :nth-child(1 of .p-organizationchart-connector-left) {
|
||||
border-right: 0 none;
|
||||
border-inline-end: 0 none;
|
||||
}
|
||||
|
||||
.p-organizationchart-connectors :nth-last-child(1 of .p-organizationchart-connector-left) {
|
||||
border-top-right-radius: ${dt('organizationchart.connector.border.radius')};
|
||||
border-start-end-radius: ${dt('organizationchart.connector.border.radius')};
|
||||
}
|
||||
|
||||
.p-organizationchart-connectors :nth-child(1 of .p-organizationchart-connector-right) {
|
||||
border-left: 1px solid ${dt('organizationchart.connector.color')};
|
||||
border-top-left-radius: ${dt('organizationchart.connector.border.radius')};
|
||||
border-inline-start: 1px solid ${dt('organizationchart.connector.color')};
|
||||
border-start-start-radius: ${dt('organizationchart.connector.border.radius')};
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
@ -22,11 +22,11 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-paginator-content-start {
|
||||
margin-right: auto;
|
||||
margin-inline-end: auto;
|
||||
}
|
||||
|
||||
.p-paginator-content-end {
|
||||
margin-left: auto;
|
||||
margin-inline-start: auto;
|
||||
}
|
||||
|
||||
.p-paginator-page,
|
||||
|
@ -90,6 +90,19 @@ const theme = ({ dt }) => `
|
|||
.p-paginator-jtp-input .p-inputtext {
|
||||
max-width: ${dt('paginator.jump.to.page.input.max.width')};
|
||||
}
|
||||
|
||||
.p-paginator-first:dir(rtl) {
|
||||
order: 2;
|
||||
}
|
||||
.p-paginator-prev:dir(rtl) {
|
||||
order: 1;
|
||||
}
|
||||
.p-paginator-next:dir(rtl) {
|
||||
order: -1;
|
||||
}
|
||||
.p-paginator-last:dir(rtl) {
|
||||
order: -2;
|
||||
}
|
||||
`;
|
||||
|
||||
const classes = {
|
||||
|
|
|
@ -2,7 +2,7 @@ import BaseStyle from '@primevue/core/base/style';
|
|||
|
||||
const theme = ({ dt }) => `
|
||||
.p-popover {
|
||||
margin-top: ${dt('popover.gutter')};
|
||||
margin-block-start: ${dt('popover.gutter')};
|
||||
background: ${dt('popover.background')};
|
||||
color: ${dt('popover.color')};
|
||||
border: 1px solid ${dt('popover.border.color')};
|
||||
|
@ -15,8 +15,8 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-popover-flipped {
|
||||
margin-top: calc(${dt('popover.gutter')} * -1);
|
||||
margin-bottom: ${dt('popover.gutter')};
|
||||
margin-block-start: calc(${dt('popover.gutter')} * -1);
|
||||
margin-block-end: ${dt('popover.gutter')};
|
||||
}
|
||||
|
||||
.p-popover-enter-from {
|
||||
|
|
|
@ -24,7 +24,7 @@ const theme = ({ dt }) => `
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: top 0s linear ${dt('speeddial.transition.duration')};
|
||||
transition: inset-block-start 0s linear ${dt('speeddial.transition.duration')};
|
||||
pointer-events: none;
|
||||
outline: 0 none;
|
||||
z-index: 2;
|
||||
|
@ -46,8 +46,8 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-speeddial-mask {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
inset-inline-start: 0;
|
||||
inset-block-start: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
|
|
|
@ -8,9 +8,9 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-splitbutton-button {
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-right: 0 none;
|
||||
border-start-end-radius: 0;
|
||||
border-end-end-radius: 0;
|
||||
border-inline-end: 0 none;
|
||||
}
|
||||
|
||||
.p-splitbutton-button:focus-visible,
|
||||
|
@ -20,12 +20,12 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-splitbutton-button:not(:disabled):hover,
|
||||
.p-splitbutton-button:not(:disabled):active {
|
||||
border-right: 0 none;
|
||||
border-inline-end: 0 none;
|
||||
}
|
||||
|
||||
.p-splitbutton-dropdown {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-start-start-radius: 0;
|
||||
border-end-start-radius: 0;
|
||||
}
|
||||
|
||||
.p-splitbutton .p-menu {
|
||||
|
@ -37,13 +37,13 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-splitbutton-rounded .p-splitbutton-dropdown {
|
||||
border-top-right-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
border-bottom-right-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
border-start-end-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
border-end-end-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
}
|
||||
|
||||
.p-splitbutton-rounded .p-splitbutton-button {
|
||||
border-top-left-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
border-bottom-left-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
border-start-start-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
border-end-start-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||
}
|
||||
|
||||
.p-splitbutton-raised {
|
||||
|
|
|
@ -234,7 +234,7 @@ importers:
|
|||
devDependencies:
|
||||
'@nuxt/devtools':
|
||||
specifier: ^0.8.5
|
||||
version: 0.8.5(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))
|
||||
version: 0.8.5(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)
|
||||
'@nuxt/eslint-config':
|
||||
specifier: ^0.2.0
|
||||
version: 0.2.0(eslint@8.57.1)
|
||||
|
@ -246,7 +246,7 @@ importers:
|
|||
version: 3.13.2(rollup@4.24.3)
|
||||
'@nuxt/test-utils':
|
||||
specifier: ^3.7.3
|
||||
version: 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
|
||||
version: 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
|
||||
'@primevue/themes':
|
||||
specifier: workspace:*
|
||||
version: link:../themes
|
||||
|
@ -8315,13 +8315,12 @@ snapshots:
|
|||
|
||||
'@nuxt/devalue@2.0.2': {}
|
||||
|
||||
'@nuxt/devtools-kit@0.8.5(magicast@0.3.5)(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))':
|
||||
'@nuxt/devtools-kit@0.8.5(magicast@0.3.5)(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.3)
|
||||
'@nuxt/schema': 3.13.2(rollup@4.24.3)
|
||||
execa: 7.2.0
|
||||
nuxt: 3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3)
|
||||
vite: 5.4.10(@types/node@18.19.61)(terser@5.36.0)
|
||||
transitivePeerDependencies:
|
||||
- magicast
|
||||
- rollup
|
||||
|
@ -8341,10 +8340,10 @@ snapshots:
|
|||
rc9: 2.1.2
|
||||
semver: 7.6.3
|
||||
|
||||
'@nuxt/devtools@0.8.5(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))':
|
||||
'@nuxt/devtools@0.8.5(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)':
|
||||
dependencies:
|
||||
'@antfu/utils': 0.7.10
|
||||
'@nuxt/devtools-kit': 0.8.5(magicast@0.3.5)(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))
|
||||
'@nuxt/devtools-kit': 0.8.5(magicast@0.3.5)(nuxt@3.3.2(@types/node@18.19.61)(encoding@0.1.13)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.3)(terser@5.36.0)(typescript@5.6.3))(rollup@4.24.3)
|
||||
'@nuxt/devtools-wizard': 0.8.5
|
||||
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.3)
|
||||
birpc: 0.2.19
|
||||
|
@ -8375,9 +8374,8 @@ snapshots:
|
|||
simple-git: 3.27.0
|
||||
sirv: 2.0.4
|
||||
unimport: 3.13.1(rollup@4.24.3)
|
||||
vite: 5.4.10(@types/node@18.19.61)(terser@5.36.0)
|
||||
vite-plugin-inspect: 0.7.42(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))
|
||||
vite-plugin-vue-inspector: 3.7.2(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))
|
||||
vite-plugin-inspect: 0.7.42(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)
|
||||
vite-plugin-vue-inspector: 3.7.2
|
||||
wait-on: 7.2.0
|
||||
which: 3.0.1
|
||||
ws: 8.18.0
|
||||
|
@ -8687,7 +8685,7 @@ snapshots:
|
|||
- supports-color
|
||||
- webpack-sources
|
||||
|
||||
'@nuxt/test-utils@3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))':
|
||||
'@nuxt/test-utils@3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.3)
|
||||
'@nuxt/schema': 3.13.2(rollup@4.24.3)
|
||||
|
@ -8713,8 +8711,7 @@ snapshots:
|
|||
ufo: 1.5.4
|
||||
unenv: 1.10.0
|
||||
unplugin: 1.15.0(webpack-sources@3.2.3)
|
||||
vite: 5.4.10(@types/node@18.19.61)(terser@5.36.0)
|
||||
vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
|
||||
vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
|
||||
vue: 3.5.12(typescript@5.6.3)
|
||||
vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
|
||||
optionalDependencies:
|
||||
|
@ -14234,7 +14231,7 @@ snapshots:
|
|||
optionator: 0.9.4
|
||||
typescript: 5.6.3
|
||||
|
||||
vite-plugin-inspect@0.7.42(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0)):
|
||||
vite-plugin-inspect@0.7.42(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3):
|
||||
dependencies:
|
||||
'@antfu/utils': 0.7.10
|
||||
'@rollup/pluginutils': 5.1.3(rollup@4.24.3)
|
||||
|
@ -14244,14 +14241,13 @@ snapshots:
|
|||
open: 9.1.0
|
||||
picocolors: 1.1.1
|
||||
sirv: 2.0.4
|
||||
vite: 5.4.10(@types/node@18.19.61)(terser@5.36.0)
|
||||
optionalDependencies:
|
||||
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.3)
|
||||
transitivePeerDependencies:
|
||||
- rollup
|
||||
- supports-color
|
||||
|
||||
vite-plugin-vue-inspector@3.7.2(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0)):
|
||||
vite-plugin-vue-inspector@3.7.2:
|
||||
dependencies:
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
|
||||
|
@ -14262,7 +14258,6 @@ snapshots:
|
|||
'@vue/compiler-dom': 3.5.12
|
||||
kolorist: 1.8.0
|
||||
magic-string: 0.30.12
|
||||
vite: 5.4.10(@types/node@18.19.61)(terser@5.36.0)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -14299,9 +14294,9 @@ snapshots:
|
|||
fsevents: 2.3.3
|
||||
terser: 5.36.0
|
||||
|
||||
vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)):
|
||||
vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)):
|
||||
dependencies:
|
||||
'@nuxt/test-utils': 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vite@5.4.10(@types/node@18.19.61)(terser@5.36.0))(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
|
||||
'@nuxt/test-utils': 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5))(rollup@4.24.3)(vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
|
||||
transitivePeerDependencies:
|
||||
- '@cucumber/cucumber'
|
||||
- '@jest/globals'
|
||||
|
|
Loading…
Reference in New Issue