Merge branch 'master' into test-unit
# Conflicts: # packages/primevue/vitest.config.jspull/6170/head
commit
1618e6d7db
|
@ -42,10 +42,10 @@ jobs:
|
|||
run: |
|
||||
pnpm run format:check
|
||||
|
||||
- name: Unit Test
|
||||
id: unitTest
|
||||
run: |
|
||||
pnpm run test:unit
|
||||
# - name: Unit Test
|
||||
# id: unitTest
|
||||
# run: |
|
||||
# pnpm run test:unit
|
||||
|
||||
- name: Lint
|
||||
run: |
|
||||
|
@ -62,12 +62,12 @@ jobs:
|
|||
message: |
|
||||
Thanks a lot for your contribution! But, PR does not seem to fit our code format standards. Please run the 'npm run format' command and commit the changes.
|
||||
|
||||
- name: Add Unit Test Fail Comment
|
||||
if: always() && steps.unitTest.outcome == 'failure'
|
||||
uses: thollander/actions-comment-pull-request@v1
|
||||
with:
|
||||
message: |
|
||||
Thanks a lot for your contribution! But, Unit tests failed. You can check the unit tests with the command 'npm run test:unit' and commit the changes.
|
||||
# - name: Add Unit Test Fail Comment
|
||||
# if: always() && steps.unitTest.outcome == 'failure'
|
||||
# uses: thollander/actions-comment-pull-request@v1
|
||||
# with:
|
||||
# message: |
|
||||
# Thanks a lot for your contribution! But, Unit tests failed. You can check the unit tests with the command 'npm run test:unit' and commit the changes.
|
||||
|
||||
- name: Add Label
|
||||
if: ${{ failure() }}
|
||||
|
|
|
@ -32301,6 +32301,14 @@
|
|||
"default": "",
|
||||
"description": "Mask pattern."
|
||||
},
|
||||
{
|
||||
"name": "id",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Identifier of the element."
|
||||
},
|
||||
{
|
||||
"name": "class",
|
||||
"optional": true,
|
||||
|
@ -32349,6 +32357,14 @@
|
|||
"default": "false",
|
||||
"description": "When present, it specifies that the component should have invalid state style."
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Name of the input element."
|
||||
},
|
||||
{
|
||||
"name": "variant",
|
||||
"optional": true,
|
||||
|
@ -66396,7 +66412,7 @@
|
|||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"default": "null",
|
||||
"description": "Whether the node is selectable when selection mode is enabled."
|
||||
},
|
||||
{
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</Dock>
|
||||
|
||||
<Dialog v-model:visible="displayTerminal" header="Terminal" :breakpoints="{ '960px': '50vw' }" :style="{ width: '40vw' }" :maximizable="true">
|
||||
<Terminal welcomeMessage="Welcome to PrimeVue(cmd: 'date', 'greet {0}', 'random' and 'clear')" prompt="primevue $" />
|
||||
<Terminal welcomeMessage="Welcome to PrimeVue(cmd: 'date', 'greet {0}' and 'random')" prompt="primevue $" />
|
||||
</Dialog>
|
||||
|
||||
<Dialog v-model:visible="displayFinder" header="Finder" :breakpoints="{ '960px': '50vw' }" :style="{ width: '40vw' }" :maximizable="true">
|
||||
|
@ -280,7 +280,7 @@ export default {
|
|||
</Dock>
|
||||
|
||||
<Dialog v-model:visible="displayTerminal" header="Terminal" :breakpoints="{ '960px': '50vw' }" :style="{ width: '40vw' }" :maximizable="true">
|
||||
<Terminal welcomeMessage="Welcome to PrimeVue(cmd: 'date', 'greet {0}', 'random' and 'clear')" prompt="primevue $" />
|
||||
<Terminal welcomeMessage="Welcome to PrimeVue(cmd: 'date', 'greet {0}' and 'random')" prompt="primevue $" />
|
||||
</Dialog>
|
||||
|
||||
<Dialog v-model:visible="displayFinder" header="Finder" :breakpoints="{ '960px': '50vw' }" :style="{ width: '40vw' }" :maximizable="true">
|
||||
|
@ -585,7 +585,7 @@ export default {
|
|||
</Dock>
|
||||
|
||||
<Dialog v-model:visible="displayTerminal" header="Terminal" :breakpoints="{ '960px': '50vw' }" :style="{ width: '40vw' }" :maximizable="true">
|
||||
<Terminal welcomeMessage="Welcome to PrimeVue(cmd: 'date', 'greet {0}', 'random' and 'clear')" prompt="primevue $" />
|
||||
<Terminal welcomeMessage="Welcome to PrimeVue(cmd: 'date', 'greet {0}' and 'random')" prompt="primevue $" />
|
||||
</Dialog>
|
||||
|
||||
<Dialog v-model:visible="displayFinder" header="Finder" :breakpoints="{ '960px': '50vw' }" :style="{ width: '40vw' }" :maximizable="true">
|
||||
|
|
|
@ -72,4 +72,4 @@
|
|||
"engines": {
|
||||
"node": ">=12.11.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,8 @@
|
|||
"format": "prettier --write \"**/*.{vue,js,mjs,ts,d.ts}\" --cache",
|
||||
"format:check": "prettier --check \"**/*.{vue,js,mjs,ts,d.ts}\"",
|
||||
"lint": "eslint --ext \".vue,.js,.mjs,.ts\" --ignore-path .gitignore . --cache",
|
||||
"lint:fix": "eslint --fix --ext \".vue,.js,.mjs,.ts\" --ignore-path .gitignore ."
|
||||
"lint:fix": "eslint --fix --ext \".vue,.js,.mjs,.ts\" --ignore-path .gitignore .",
|
||||
"test:unit": "pnpm --filter primevue test:unit"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/eslint-parser": "^7.18.9",
|
||||
|
|
|
@ -321,7 +321,14 @@
|
|||
"build:api": "node ./scripts/build-api.js",
|
||||
"build:prebuild": "node ./scripts/prebuild.mjs",
|
||||
"build:postbuild": "node ./scripts/postbuild.mjs",
|
||||
"dev:link": "pnpm link --global && npm link"
|
||||
"dev:link": "pnpm link --global && npm link",
|
||||
"test:unit": "vitest run",
|
||||
"test:unit:watch": "vitest watch",
|
||||
"test:coverage": "vitest run --coverage"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/test-utils": "^2.0.0",
|
||||
"vitest": "^0.29.8"
|
||||
},
|
||||
"dependencies": {
|
||||
"@primeuix/styled": "^0.0.5",
|
||||
|
@ -332,4 +339,4 @@
|
|||
"engines": {
|
||||
"node": ">=12.11.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
import { defaultOptions } from '@primevue/core/config';
|
||||
import { config } from '@vue/test-utils';
|
||||
|
||||
config.global.mocks['$primevue'] = {
|
||||
config: defaultOptions
|
||||
};
|
||||
|
||||
Object.defineProperty(window, 'matchMedia', {
|
||||
writable: true,
|
||||
value: vi.fn().mockImplementation((query) => ({
|
||||
matches: false,
|
||||
media: query,
|
||||
onchange: null,
|
||||
addEventListener: vi.fn(),
|
||||
removeEventListener: vi.fn()
|
||||
}))
|
||||
});
|
||||
|
||||
describe('PrimeVue.vue', () => {
|
||||
it('should exist', async () => {});
|
||||
});
|
|
@ -78,7 +78,8 @@ export default {
|
|||
visible: false,
|
||||
confirmation: null,
|
||||
autoFocusAccept: null,
|
||||
autoFocusReject: null
|
||||
autoFocusReject: null,
|
||||
target: null
|
||||
};
|
||||
},
|
||||
target: null,
|
||||
|
@ -175,6 +176,8 @@ export default {
|
|||
this.autoFocusAccept = this.confirmation.defaultFocus === undefined || this.confirmation.defaultFocus === 'accept' ? true : false;
|
||||
this.autoFocusReject = this.confirmation.defaultFocus === 'reject' ? true : false;
|
||||
|
||||
this.target = document.activeElement;
|
||||
|
||||
this.bindOutsideClickListener();
|
||||
this.bindScrollListener();
|
||||
this.bindResizeListener();
|
||||
|
@ -188,6 +191,9 @@ export default {
|
|||
this.autoFocusAccept = null;
|
||||
this.autoFocusReject = null;
|
||||
|
||||
DomHandler.focus(this.target);
|
||||
this.target = null;
|
||||
|
||||
this.unbindOutsideClickListener();
|
||||
this.unbindScrollListener();
|
||||
this.unbindResizeListener();
|
||||
|
@ -206,7 +212,7 @@ export default {
|
|||
arrowLeft = targetOffset.left - containerOffset.left;
|
||||
}
|
||||
|
||||
this.container.style.setProperty($dt('overlay.arrow.left').name, `${arrowLeft}px`);
|
||||
this.container.style.setProperty($dt('confirmpopup.arrow.left').name, `${arrowLeft}px`);
|
||||
|
||||
if (containerOffset.top < targetOffset.top) {
|
||||
this.container.setAttribute('data-p-confirmpopup-flipped', 'true');
|
||||
|
|
|
@ -67,7 +67,7 @@ const theme = ({ dt }) => `
|
|||
.p-confirmpopup:after,
|
||||
.p-confirmpopup:before {
|
||||
bottom: 100%;
|
||||
left: ${dt('confirmpopup.arrow.offset')};
|
||||
left: calc(${dt('confirmpopup.arrow.offset')} + ${dt('confirmpopup.arrow.left')});
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
@keydown="onKeyDown"
|
||||
:pt="ptm('pcInput')"
|
||||
/>
|
||||
<slot v-if="showIcon && iconDisplay === 'button'" name="dropdownbutton">
|
||||
<slot v-if="showIcon && iconDisplay === 'button' && !inline" name="dropdownbutton">
|
||||
<button
|
||||
:class="cx('dropdown')"
|
||||
:disabled="disabled"
|
||||
|
@ -49,7 +49,7 @@
|
|||
</slot>
|
||||
</button>
|
||||
</slot>
|
||||
<template v-else-if="showIcon && iconDisplay === 'input'">
|
||||
<template v-else-if="showIcon && iconDisplay === 'input' && !inline">
|
||||
<span v-if="$slots.inputicon || showIcon" :class="cx('inputIconContainer')" v-bind="ptm('inputIconContainer')">
|
||||
<slot name="inputicon" :class="cx('inputIcon')" :clickCallback="onButtonClick">
|
||||
<component :is="icon ? 'i' : 'CalendarIcon'" :class="[icon, cx('inputIcon')]" @click="onButtonClick" v-bind="ptm('inputicon')" />
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<Portal :appendTo="appendTo">
|
||||
<div v-if="containerVisible" :ref="maskRef" :class="cx('mask')" :style="sx('mask', true, { position, modal })" @click="onMaskClick" v-bind="ptm('mask')">
|
||||
<div v-if="containerVisible" :ref="maskRef" :class="cx('mask')" :style="sx('mask', true, { position, modal })" @mousedown="onMaskMouseDown" @mouseup="onMaskMouseUp" v-bind="ptm('mask')">
|
||||
<transition name="p-dialog" @before-enter="onBeforeEnter" @enter="onEnter" @before-leave="onBeforeLeave" @leave="onLeave" @after-leave="onAfterLeave" appear v-bind="ptm('transition')">
|
||||
<div v-if="visible" :ref="containerRef" v-focustrap="{ disabled: !modal }" :class="cx('root')" :style="sx('root')" role="dialog" :aria-labelledby="ariaLabelledById" :aria-modal="modal" v-bind="ptmi('root')">
|
||||
<slot v-if="$slots.container" name="container" :closeCallback="close" :maximizeCallback="(event) => maximize(event)"></slot>
|
||||
|
@ -91,7 +91,8 @@ export default {
|
|||
containerVisible: this.visible,
|
||||
maximized: false,
|
||||
focusableMax: null,
|
||||
focusableClose: null
|
||||
focusableClose: null,
|
||||
target: null
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
|
@ -113,6 +114,7 @@ export default {
|
|||
documentDragEndListener: null,
|
||||
lastPageX: null,
|
||||
lastPageY: null,
|
||||
maskMouseDownTarget: null,
|
||||
updated() {
|
||||
if (this.visible) {
|
||||
this.containerVisible = this.visible;
|
||||
|
@ -146,6 +148,7 @@ export default {
|
|||
},
|
||||
onEnter() {
|
||||
this.$emit('show');
|
||||
this.target = document.activeElement;
|
||||
this.focus();
|
||||
this.enableDocumentSettings();
|
||||
this.bindGlobalListeners();
|
||||
|
@ -161,6 +164,8 @@ export default {
|
|||
},
|
||||
onLeave() {
|
||||
this.$emit('hide');
|
||||
DomHandler.focus(this.target);
|
||||
this.target = null;
|
||||
this.focusableClose = null;
|
||||
this.focusableMax = null;
|
||||
},
|
||||
|
@ -174,8 +179,11 @@ export default {
|
|||
this.unbindGlobalListeners();
|
||||
this.$emit('after-hide');
|
||||
},
|
||||
onMaskClick(event) {
|
||||
if (this.dismissableMask && this.modal && this.mask === event.target) {
|
||||
onMaskMouseDown(event) {
|
||||
this.maskMouseDownTarget = event.target;
|
||||
},
|
||||
onMaskMouseUp() {
|
||||
if (this.dismissableMask && this.modal && this.mask === this.maskMouseDownTarget) {
|
||||
this.close();
|
||||
}
|
||||
},
|
||||
|
|
|
@ -11,6 +11,10 @@ export default {
|
|||
type: String,
|
||||
default: '_'
|
||||
},
|
||||
id: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
class: {
|
||||
type: [String, Object],
|
||||
default: null
|
||||
|
@ -43,6 +47,10 @@ export default {
|
|||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
name: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
variant: {
|
||||
type: String,
|
||||
default: null
|
||||
|
|
|
@ -116,6 +116,10 @@ export interface InputMaskProps {
|
|||
* Mask pattern.
|
||||
*/
|
||||
mask?: string | undefined;
|
||||
/**
|
||||
* Identifier of the element.
|
||||
*/
|
||||
id?: string | undefined;
|
||||
/**
|
||||
* Style class of the input field.
|
||||
*/
|
||||
|
@ -144,6 +148,10 @@ export interface InputMaskProps {
|
|||
* @defaultValue false
|
||||
*/
|
||||
invalid?: boolean | undefined;
|
||||
/**
|
||||
* Name of the input element.
|
||||
*/
|
||||
name?: string | undefined;
|
||||
/**
|
||||
* Specifies the input variant of the component.
|
||||
* @defaultValue outlined
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
<template>
|
||||
<InputText
|
||||
:id="id"
|
||||
:value="modelValue"
|
||||
:class="inputClass"
|
||||
:readonly="readonly"
|
||||
:disabled="disabled"
|
||||
:invalid="invalid"
|
||||
:name="name"
|
||||
:variant="variant"
|
||||
:placeholder="placeholder"
|
||||
:fluid="hasFluid"
|
||||
|
|
|
@ -39,7 +39,7 @@ const theme = ({ dt }) => `
|
|||
.p-popover:after,
|
||||
.p-popover:before {
|
||||
bottom: 100%;
|
||||
left: ${dt('popover.arrow.offset')};
|
||||
left: calc(${dt('popover.arrow.offset')} + ${dt('popover.arrow.left')});
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
|
|
|
@ -143,7 +143,9 @@ export default {
|
|||
}
|
||||
|
||||
if (this.isCheckboxSelectionMode()) {
|
||||
this.toggleCheckbox();
|
||||
if (this.node.selectable != false) {
|
||||
this.toggleCheckbox();
|
||||
}
|
||||
} else {
|
||||
this.$emit('node-click', {
|
||||
originalEvent: event,
|
||||
|
@ -337,7 +339,7 @@ export default {
|
|||
});
|
||||
},
|
||||
propagateDown(node, check, selectionKeys) {
|
||||
if (check) selectionKeys[node.key] = { checked: true, partialChecked: false };
|
||||
if (check && node.selectable != false) selectionKeys[node.key] = { checked: true, partialChecked: false };
|
||||
else delete selectionKeys[node.key];
|
||||
|
||||
if (node.children && node.children.length) {
|
||||
|
|
|
@ -44,7 +44,7 @@ export interface TreeNode {
|
|||
styleClass?: string;
|
||||
/**
|
||||
* Whether the node is selectable when selection mode is enabled.
|
||||
* @defaultValue false
|
||||
* @defaultValue null
|
||||
*/
|
||||
selectable?: boolean;
|
||||
/**
|
||||
|
|
343
pnpm-lock.yaml
343
pnpm-lock.yaml
|
@ -16,16 +16,16 @@ importers:
|
|||
version: 7.25.3(@babel/core@7.25.2)
|
||||
'@rollup/plugin-alias':
|
||||
specifier: ^5.1.0
|
||||
version: 5.1.0(rollup@4.19.1)
|
||||
version: 5.1.0(rollup@4.19.2)
|
||||
'@rollup/plugin-babel':
|
||||
specifier: ^6.0.3
|
||||
version: 6.0.4(@babel/core@7.25.2)(rollup@4.19.1)
|
||||
version: 6.0.4(@babel/core@7.25.2)(rollup@4.19.2)
|
||||
'@rollup/plugin-node-resolve':
|
||||
specifier: ^15.2.3
|
||||
version: 15.2.3(rollup@4.19.1)
|
||||
version: 15.2.3(rollup@4.19.2)
|
||||
'@rollup/plugin-terser':
|
||||
specifier: ^0.4.4
|
||||
version: 0.4.4(rollup@4.19.1)
|
||||
version: 0.4.4(rollup@4.19.2)
|
||||
eslint:
|
||||
specifier: ^8.30.0
|
||||
version: 8.57.0
|
||||
|
@ -147,7 +147,7 @@ importers:
|
|||
version: 8.2.3(jiti@1.21.6)(postcss@8.4.40)(typescript@5.5.4)(yaml@2.5.0)
|
||||
unplugin-vue-components:
|
||||
specifier: ^0.27.0
|
||||
version: 0.27.0(@babel/parser@7.25.3)(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1))(rollup@4.19.1)(vue@3.4.35(typescript@5.5.4))
|
||||
version: 0.27.0(@babel/parser@7.25.3)(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2))(rollup@4.19.2)(vue@3.4.35(typescript@5.5.4))
|
||||
publishDirectory: dist
|
||||
|
||||
packages/core:
|
||||
|
@ -184,7 +184,7 @@ importers:
|
|||
dependencies:
|
||||
'@nuxt/kit':
|
||||
specifier: ^3.7.3
|
||||
version: 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
version: 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
'@primeuix/styled':
|
||||
specifier: ^0.0.5
|
||||
version: 0.0.5
|
||||
|
@ -205,23 +205,23 @@ importers:
|
|||
version: link:../primevue
|
||||
unplugin-vue-components:
|
||||
specifier: 0.27.0
|
||||
version: 0.27.0(@babel/parser@7.25.3)(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1))(rollup@4.19.1)(vue@3.4.35(typescript@5.5.4))
|
||||
version: 0.27.0(@babel/parser@7.25.3)(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2))(rollup@4.19.2)(vue@3.4.35(typescript@5.5.4))
|
||||
devDependencies:
|
||||
'@nuxt/devtools':
|
||||
specifier: ^0.8.5
|
||||
version: 0.8.5(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))
|
||||
version: 0.8.5(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.2)
|
||||
'@nuxt/eslint-config':
|
||||
specifier: ^0.2.0
|
||||
version: 0.2.0(eslint@8.57.0)
|
||||
'@nuxt/module-builder':
|
||||
specifier: ^0.5.1
|
||||
version: 0.5.5(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1))(nuxi@3.3.2)(sass@1.77.8)(typescript@5.5.4)
|
||||
version: 0.5.5(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2))(nuxi@3.3.2)(sass@1.77.8)(typescript@5.5.4)
|
||||
'@nuxt/schema':
|
||||
specifier: ^3.7.3
|
||||
version: 3.12.4(rollup@4.19.1)
|
||||
version: 3.12.4(rollup@4.19.2)
|
||||
'@nuxt/test-utils':
|
||||
specifier: ^3.7.3
|
||||
version: 3.14.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))
|
||||
version: 3.14.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.2)(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))
|
||||
'@primevue/themes':
|
||||
specifier: workspace:*
|
||||
version: link:../themes
|
||||
|
@ -236,7 +236,7 @@ importers:
|
|||
version: 2.9.7(encoding@0.1.13)(magicast@0.3.4)
|
||||
nuxt:
|
||||
specifier: 3.3.2
|
||||
version: 3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4)
|
||||
version: 3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4)
|
||||
vitest:
|
||||
specifier: ^1.6.0
|
||||
version: 1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)
|
||||
|
@ -2272,83 +2272,83 @@ packages:
|
|||
rollup:
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-android-arm-eabi@4.19.1':
|
||||
resolution: {integrity: sha512-XzqSg714++M+FXhHfXpS1tDnNZNpgxxuGZWlRG/jSj+VEPmZ0yg6jV4E0AL3uyBKxO8mO3xtOsP5mQ+XLfrlww==}
|
||||
'@rollup/rollup-android-arm-eabi@4.19.2':
|
||||
resolution: {integrity: sha512-OHflWINKtoCFSpm/WmuQaWW4jeX+3Qt3XQDepkkiFTsoxFc5BpF3Z5aDxFZgBqRjO6ATP5+b1iilp4kGIZVWlA==}
|
||||
cpu: [arm]
|
||||
os: [android]
|
||||
|
||||
'@rollup/rollup-android-arm64@4.19.1':
|
||||
resolution: {integrity: sha512-thFUbkHteM20BGShD6P08aungq4irbIZKUNbG70LN8RkO7YztcGPiKTTGZS7Kw+x5h8hOXs0i4OaHwFxlpQN6A==}
|
||||
'@rollup/rollup-android-arm64@4.19.2':
|
||||
resolution: {integrity: sha512-k0OC/b14rNzMLDOE6QMBCjDRm3fQOHAL8Ldc9bxEWvMo4Ty9RY6rWmGetNTWhPo+/+FNd1lsQYRd0/1OSix36A==}
|
||||
cpu: [arm64]
|
||||
os: [android]
|
||||
|
||||
'@rollup/rollup-darwin-arm64@4.19.1':
|
||||
resolution: {integrity: sha512-8o6eqeFZzVLia2hKPUZk4jdE3zW7LCcZr+MD18tXkgBBid3lssGVAYuox8x6YHoEPDdDa9ixTaStcmx88lio5Q==}
|
||||
'@rollup/rollup-darwin-arm64@4.19.2':
|
||||
resolution: {integrity: sha512-IIARRgWCNWMTeQH+kr/gFTHJccKzwEaI0YSvtqkEBPj7AshElFq89TyreKNFAGh5frLfDCbodnq+Ye3dqGKPBw==}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
|
||||
'@rollup/rollup-darwin-x64@4.19.1':
|
||||
resolution: {integrity: sha512-4T42heKsnbjkn7ovYiAdDVRRWZLU9Kmhdt6HafZxFcUdpjlBlxj4wDrt1yFWLk7G4+E+8p2C9tcmSu0KA6auGA==}
|
||||
'@rollup/rollup-darwin-x64@4.19.2':
|
||||
resolution: {integrity: sha512-52udDMFDv54BTAdnw+KXNF45QCvcJOcYGl3vQkp4vARyrcdI/cXH8VXTEv/8QWfd6Fru8QQuw1b2uNersXOL0g==}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
|
||||
'@rollup/rollup-linux-arm-gnueabihf@4.19.1':
|
||||
resolution: {integrity: sha512-MXg1xp+e5GhZ3Vit1gGEyoC+dyQUBy2JgVQ+3hUrD9wZMkUw/ywgkpK7oZgnB6kPpGrxJ41clkPPnsknuD6M2Q==}
|
||||
'@rollup/rollup-linux-arm-gnueabihf@4.19.2':
|
||||
resolution: {integrity: sha512-r+SI2t8srMPYZeoa1w0o/AfoVt9akI1ihgazGYPQGRilVAkuzMGiTtexNZkrPkQsyFrvqq/ni8f3zOnHw4hUbA==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-arm-musleabihf@4.19.1':
|
||||
resolution: {integrity: sha512-DZNLwIY4ftPSRVkJEaxYkq7u2zel7aah57HESuNkUnz+3bZHxwkCUkrfS2IWC1sxK6F2QNIR0Qr/YXw7nkF3Pw==}
|
||||
'@rollup/rollup-linux-arm-musleabihf@4.19.2':
|
||||
resolution: {integrity: sha512-+tYiL4QVjtI3KliKBGtUU7yhw0GMcJJuB9mLTCEauHEsqfk49gtUBXGtGP3h1LW8MbaTY6rSFIQV1XOBps1gBA==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-arm64-gnu@4.19.1':
|
||||
resolution: {integrity: sha512-C7evongnjyxdngSDRRSQv5GvyfISizgtk9RM+z2biV5kY6S/NF/wta7K+DanmktC5DkuaJQgoKGf7KUDmA7RUw==}
|
||||
'@rollup/rollup-linux-arm64-gnu@4.19.2':
|
||||
resolution: {integrity: sha512-OR5DcvZiYN75mXDNQQxlQPTv4D+uNCUsmSCSY2FolLf9W5I4DSoJyg7z9Ea3TjKfhPSGgMJiey1aWvlWuBzMtg==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-arm64-musl@4.19.1':
|
||||
resolution: {integrity: sha512-89tFWqxfxLLHkAthAcrTs9etAoBFRduNfWdl2xUs/yLV+7XDrJ5yuXMHptNqf1Zw0UCA3cAutkAiAokYCkaPtw==}
|
||||
'@rollup/rollup-linux-arm64-musl@4.19.2':
|
||||
resolution: {integrity: sha512-Hw3jSfWdUSauEYFBSFIte6I8m6jOj+3vifLg8EU3lreWulAUpch4JBjDMtlKosrBzkr0kwKgL9iCfjA8L3geoA==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-powerpc64le-gnu@4.19.1':
|
||||
resolution: {integrity: sha512-PromGeV50sq+YfaisG8W3fd+Cl6mnOOiNv2qKKqKCpiiEke2KiKVyDqG/Mb9GWKbYMHj5a01fq/qlUR28PFhCQ==}
|
||||
'@rollup/rollup-linux-powerpc64le-gnu@4.19.2':
|
||||
resolution: {integrity: sha512-rhjvoPBhBwVnJRq/+hi2Q3EMiVF538/o9dBuj9TVLclo9DuONqt5xfWSaE6MYiFKpo/lFPJ/iSI72rYWw5Hc7w==}
|
||||
cpu: [ppc64]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-riscv64-gnu@4.19.1':
|
||||
resolution: {integrity: sha512-/1BmHYh+iz0cNCP0oHCuF8CSiNj0JOGf0jRlSo3L/FAyZyG2rGBuKpkZVH9YF+x58r1jgWxvm1aRg3DHrLDt6A==}
|
||||
'@rollup/rollup-linux-riscv64-gnu@4.19.2':
|
||||
resolution: {integrity: sha512-EAz6vjPwHHs2qOCnpQkw4xs14XJq84I81sDRGPEjKPFVPBw7fwvtwhVjcZR6SLydCv8zNK8YGFblKWd/vRmP8g==}
|
||||
cpu: [riscv64]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-s390x-gnu@4.19.1':
|
||||
resolution: {integrity: sha512-0cYP5rGkQWRZKy9/HtsWVStLXzCF3cCBTRI+qRL8Z+wkYlqN7zrSYm6FuY5Kd5ysS5aH0q5lVgb/WbG4jqXN1Q==}
|
||||
'@rollup/rollup-linux-s390x-gnu@4.19.2':
|
||||
resolution: {integrity: sha512-IJSUX1xb8k/zN9j2I7B5Re6B0NNJDJ1+soezjNojhT8DEVeDNptq2jgycCOpRhyGj0+xBn7Cq+PK7Q+nd2hxLA==}
|
||||
cpu: [s390x]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-x64-gnu@4.19.1':
|
||||
resolution: {integrity: sha512-XUXeI9eM8rMP8aGvii/aOOiMvTs7xlCosq9xCjcqI9+5hBxtjDpD+7Abm1ZhVIFE1J2h2VIg0t2DX/gjespC2Q==}
|
||||
'@rollup/rollup-linux-x64-gnu@4.19.2':
|
||||
resolution: {integrity: sha512-OgaToJ8jSxTpgGkZSkwKE+JQGihdcaqnyHEFOSAU45utQ+yLruE1dkonB2SDI8t375wOKgNn8pQvaWY9kPzxDQ==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-linux-x64-musl@4.19.1':
|
||||
resolution: {integrity: sha512-V7cBw/cKXMfEVhpSvVZhC+iGifD6U1zJ4tbibjjN+Xi3blSXaj/rJynAkCFFQfoG6VZrAiP7uGVzL440Q6Me2Q==}
|
||||
'@rollup/rollup-linux-x64-musl@4.19.2':
|
||||
resolution: {integrity: sha512-5V3mPpWkB066XZZBgSd1lwozBk7tmOkKtquyCJ6T4LN3mzKENXyBwWNQn8d0Ci81hvlBw5RoFgleVpL6aScLYg==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
||||
'@rollup/rollup-win32-arm64-msvc@4.19.1':
|
||||
resolution: {integrity: sha512-88brja2vldW/76jWATlBqHEoGjJLRnP0WOEKAUbMcXaAZnemNhlAHSyj4jIwMoP2T750LE9lblvD4e2jXleZsA==}
|
||||
'@rollup/rollup-win32-arm64-msvc@4.19.2':
|
||||
resolution: {integrity: sha512-ayVstadfLeeXI9zUPiKRVT8qF55hm7hKa+0N1V6Vj+OTNFfKSoUxyZvzVvgtBxqSb5URQ8sK6fhwxr9/MLmxdA==}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
|
||||
'@rollup/rollup-win32-ia32-msvc@4.19.1':
|
||||
resolution: {integrity: sha512-LdxxcqRVSXi6k6JUrTah1rHuaupoeuiv38du8Mt4r4IPer3kwlTo+RuvfE8KzZ/tL6BhaPlzJ3835i6CxrFIRQ==}
|
||||
'@rollup/rollup-win32-ia32-msvc@4.19.2':
|
||||
resolution: {integrity: sha512-Mda7iG4fOLHNsPqjWSjANvNZYoW034yxgrndof0DwCy0D3FvTjeNo+HGE6oGWgvcLZNLlcp0hLEFcRs+UGsMLg==}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
|
||||
'@rollup/rollup-win32-x64-msvc@4.19.1':
|
||||
resolution: {integrity: sha512-2bIrL28PcK3YCqD9anGxDxamxdiJAxA+l7fWIwM5o8UqNy1t3d1NdAweO2XhA0KTDJ5aH1FsuiT5+7VhtHliXg==}
|
||||
'@rollup/rollup-win32-x64-msvc@4.19.2':
|
||||
resolution: {integrity: sha512-DPi0ubYhSow/00YqmG1jWm3qt1F8aXziHc/UNy8bo9cpCacqhuWu+iSq/fp2SyEQK7iYTZ60fBU9cat3MXTjIQ==}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
|
||||
|
@ -5713,8 +5713,8 @@ packages:
|
|||
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
|
||||
hasBin: true
|
||||
|
||||
rollup@4.19.1:
|
||||
resolution: {integrity: sha512-K5vziVlg7hTpYfFBI+91zHBEMo6jafYXpkMlqZjg7/zhIG9iHqazBf4xz9AVdjS9BruRn280ROqLI7G3OFRIlw==}
|
||||
rollup@4.19.2:
|
||||
resolution: {integrity: sha512-6/jgnN1svF9PjNYJ4ya3l+cqutg49vOZ4rVgsDKxdl+5gpGPnByFXWGyfH9YGx9i3nfBwSu1Iyu6vGwFFA0BdQ==}
|
||||
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
||||
hasBin: true
|
||||
|
||||
|
@ -6677,8 +6677,8 @@ packages:
|
|||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
|
||||
vue-router@4.4.1:
|
||||
resolution: {integrity: sha512-njTLt/6gYGgIhv+U8nc5J6JpJpntFgy4fptRJ9Dp2qWQRo/PekB5DbKRYRPt0kM6feXysPKl7A5BjOmOJL5Ttw==}
|
||||
vue-router@4.4.2:
|
||||
resolution: {integrity: sha512-1qNybkn2L7QsLzaXs8nvlQmRKp8XF8DCxZys/Jr1JpQcHsKUxTKzTxCVA1G7NfBfwRIBgCJPoujOG5lHCCNUxw==}
|
||||
peerDependencies:
|
||||
vue: ^3.2.0
|
||||
|
||||
|
@ -8428,13 +8428,12 @@ snapshots:
|
|||
|
||||
'@nuxt/devalue@2.0.2': {}
|
||||
|
||||
'@nuxt/devtools-kit@0.8.5(magicast@0.3.4)(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))':
|
||||
'@nuxt/devtools-kit@0.8.5(magicast@0.3.4)(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/schema': 3.12.4(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
'@nuxt/schema': 3.12.4(rollup@4.19.2)
|
||||
execa: 7.2.0
|
||||
nuxt: 3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4)
|
||||
vite: 5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)
|
||||
nuxt: 3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4)
|
||||
transitivePeerDependencies:
|
||||
- magicast
|
||||
- rollup
|
||||
|
@ -8453,12 +8452,12 @@ snapshots:
|
|||
rc9: 2.1.2
|
||||
semver: 7.6.3
|
||||
|
||||
'@nuxt/devtools@0.8.5(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))':
|
||||
'@nuxt/devtools@0.8.5(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@antfu/utils': 0.7.10
|
||||
'@nuxt/devtools-kit': 0.8.5(magicast@0.3.4)(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))
|
||||
'@nuxt/devtools-kit': 0.8.5(magicast@0.3.4)(nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4))(rollup@4.19.2)
|
||||
'@nuxt/devtools-wizard': 0.8.5
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
birpc: 0.2.17
|
||||
consola: 3.2.3
|
||||
error-stack-parser-es: 0.1.5
|
||||
|
@ -8474,7 +8473,7 @@ snapshots:
|
|||
launch-editor: 2.8.0
|
||||
local-pkg: 0.4.3
|
||||
magicast: 0.3.4
|
||||
nuxt: 3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4)
|
||||
nuxt: 3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4)
|
||||
nypm: 0.3.9
|
||||
ofetch: 1.3.4
|
||||
ohash: 1.1.3
|
||||
|
@ -8486,10 +8485,9 @@ snapshots:
|
|||
semver: 7.6.3
|
||||
simple-git: 3.25.0
|
||||
sirv: 2.0.4
|
||||
unimport: 3.9.1(rollup@4.19.1)
|
||||
vite: 5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)
|
||||
vite-plugin-inspect: 0.7.42(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))
|
||||
vite-plugin-vue-inspector: 3.7.2(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))
|
||||
unimport: 3.9.1(rollup@4.19.2)
|
||||
vite-plugin-inspect: 0.7.42(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2))(rollup@4.19.2)
|
||||
vite-plugin-vue-inspector: 3.7.2
|
||||
wait-on: 7.2.0
|
||||
which: 3.0.1
|
||||
ws: 8.18.0
|
||||
|
@ -8540,9 +8538,9 @@ snapshots:
|
|||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1)':
|
||||
'@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@nuxt/schema': 3.12.4(rollup@4.19.1)
|
||||
'@nuxt/schema': 3.12.4(rollup@4.19.2)
|
||||
c12: 1.11.1(magicast@0.3.4)
|
||||
consola: 3.2.3
|
||||
defu: 6.1.4
|
||||
|
@ -8560,7 +8558,7 @@ snapshots:
|
|||
semver: 7.6.3
|
||||
ufo: 1.5.4
|
||||
unctx: 2.3.1
|
||||
unimport: 3.9.1(rollup@4.19.1)
|
||||
unimport: 3.9.1(rollup@4.19.2)
|
||||
untyped: 1.4.2
|
||||
transitivePeerDependencies:
|
||||
- magicast
|
||||
|
@ -8592,9 +8590,9 @@ snapshots:
|
|||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@nuxt/kit@3.3.2(magicast@0.3.4)(rollup@4.19.1)':
|
||||
'@nuxt/kit@3.3.2(magicast@0.3.4)(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@nuxt/schema': 3.3.2(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/schema': 3.3.2(magicast@0.3.4)(rollup@4.19.2)
|
||||
c12: 1.11.1(magicast@0.3.4)
|
||||
consola: 2.15.3
|
||||
defu: 6.1.4
|
||||
|
@ -8610,16 +8608,16 @@ snapshots:
|
|||
scule: 1.3.0
|
||||
semver: 7.6.3
|
||||
unctx: 2.3.1
|
||||
unimport: 3.9.1(rollup@4.19.1)
|
||||
unimport: 3.9.1(rollup@4.19.2)
|
||||
untyped: 1.4.2
|
||||
transitivePeerDependencies:
|
||||
- magicast
|
||||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@nuxt/module-builder@0.5.5(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1))(nuxi@3.3.2)(sass@1.77.8)(typescript@5.5.4)':
|
||||
'@nuxt/module-builder@0.5.5(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2))(nuxi@3.3.2)(sass@1.77.8)(typescript@5.5.4)':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
citty: 0.1.6
|
||||
consola: 3.2.3
|
||||
mlly: 1.7.1
|
||||
|
@ -8650,7 +8648,7 @@ snapshots:
|
|||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@nuxt/schema@3.12.4(rollup@4.19.1)':
|
||||
'@nuxt/schema@3.12.4(rollup@4.19.2)':
|
||||
dependencies:
|
||||
compatx: 0.1.8
|
||||
consola: 3.2.3
|
||||
|
@ -8662,7 +8660,7 @@ snapshots:
|
|||
std-env: 3.7.0
|
||||
ufo: 1.5.4
|
||||
uncrypto: 0.1.3
|
||||
unimport: 3.9.1(rollup@4.19.1)
|
||||
unimport: 3.9.1(rollup@4.19.2)
|
||||
untyped: 1.4.2
|
||||
transitivePeerDependencies:
|
||||
- rollup
|
||||
|
@ -8688,7 +8686,7 @@ snapshots:
|
|||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@nuxt/schema@3.3.2(magicast@0.3.4)(rollup@4.19.1)':
|
||||
'@nuxt/schema@3.3.2(magicast@0.3.4)(rollup@4.19.2)':
|
||||
dependencies:
|
||||
c12: 1.11.1(magicast@0.3.4)
|
||||
create-require: 1.1.1
|
||||
|
@ -8701,7 +8699,7 @@ snapshots:
|
|||
scule: 1.3.0
|
||||
std-env: 3.7.0
|
||||
ufo: 1.5.4
|
||||
unimport: 3.9.1(rollup@4.19.1)
|
||||
unimport: 3.9.1(rollup@4.19.2)
|
||||
untyped: 1.4.2
|
||||
transitivePeerDependencies:
|
||||
- magicast
|
||||
|
@ -8732,9 +8730,9 @@ snapshots:
|
|||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@nuxt/telemetry@2.5.4(magicast@0.3.4)(rollup@4.19.1)':
|
||||
'@nuxt/telemetry@2.5.4(magicast@0.3.4)(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
ci-info: 4.0.0
|
||||
consola: 3.2.3
|
||||
create-require: 1.1.1
|
||||
|
@ -8756,10 +8754,10 @@ snapshots:
|
|||
- rollup
|
||||
- supports-color
|
||||
|
||||
'@nuxt/test-utils@3.14.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))':
|
||||
'@nuxt/test-utils@3.14.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.2)(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/schema': 3.12.4(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
'@nuxt/schema': 3.12.4(rollup@4.19.2)
|
||||
c12: 1.11.1(magicast@0.3.4)
|
||||
consola: 3.2.3
|
||||
defu: 6.1.4
|
||||
|
@ -8782,10 +8780,9 @@ snapshots:
|
|||
ufo: 1.5.4
|
||||
unenv: 1.10.0
|
||||
unplugin: 1.12.0
|
||||
vite: 5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)
|
||||
vitest-environment-nuxt: 1.0.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))
|
||||
vitest-environment-nuxt: 1.0.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.2)(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))
|
||||
vue: 3.4.35(typescript@5.5.4)
|
||||
vue-router: 4.4.1(vue@3.4.35(typescript@5.5.4))
|
||||
vue-router: 4.4.2(vue@3.4.35(typescript@5.5.4))
|
||||
optionalDependencies:
|
||||
'@vue/test-utils': 2.4.6
|
||||
vitest: 1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)
|
||||
|
@ -8935,19 +8932,19 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/plugin-alias@5.1.0(rollup@4.19.1)':
|
||||
'@rollup/plugin-alias@5.1.0(rollup@4.19.2)':
|
||||
dependencies:
|
||||
slash: 4.0.0
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/plugin-babel@6.0.4(@babel/core@7.25.2)(rollup@4.19.1)':
|
||||
'@rollup/plugin-babel@6.0.4(@babel/core@7.25.2)(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.2
|
||||
'@babel/helper-module-imports': 7.24.7
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -8973,16 +8970,16 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/plugin-commonjs@25.0.8(rollup@4.19.1)':
|
||||
'@rollup/plugin-commonjs@25.0.8(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
commondir: 1.0.1
|
||||
estree-walker: 2.0.2
|
||||
glob: 8.1.0
|
||||
is-reference: 1.2.1
|
||||
magic-string: 0.30.11
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/plugin-inject@5.0.5(rollup@3.29.4)':
|
||||
dependencies:
|
||||
|
@ -8992,13 +8989,13 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/plugin-inject@5.0.5(rollup@4.19.1)':
|
||||
'@rollup/plugin-inject@5.0.5(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
estree-walker: 2.0.2
|
||||
magic-string: 0.30.11
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/plugin-json@6.1.0(rollup@3.29.4)':
|
||||
dependencies:
|
||||
|
@ -9006,11 +9003,11 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/plugin-json@6.1.0(rollup@4.19.1)':
|
||||
'@rollup/plugin-json@6.1.0(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/plugin-node-resolve@15.2.3(rollup@3.29.4)':
|
||||
dependencies:
|
||||
|
@ -9023,16 +9020,16 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/plugin-node-resolve@15.2.3(rollup@4.19.1)':
|
||||
'@rollup/plugin-node-resolve@15.2.3(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
'@types/resolve': 1.20.2
|
||||
deepmerge: 4.3.1
|
||||
is-builtin-module: 3.2.1
|
||||
is-module: 1.0.0
|
||||
resolve: 1.22.8
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/plugin-replace@5.0.7(rollup@3.29.4)':
|
||||
dependencies:
|
||||
|
@ -9041,12 +9038,12 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/plugin-replace@5.0.7(rollup@4.19.1)':
|
||||
'@rollup/plugin-replace@5.0.7(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
magic-string: 0.30.11
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/plugin-terser@0.4.4(rollup@3.29.4)':
|
||||
dependencies:
|
||||
|
@ -9056,13 +9053,13 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/plugin-terser@0.4.4(rollup@4.19.1)':
|
||||
'@rollup/plugin-terser@0.4.4(rollup@4.19.2)':
|
||||
dependencies:
|
||||
serialize-javascript: 6.0.2
|
||||
smob: 1.5.0
|
||||
terser: 5.31.3
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/plugin-wasm@6.2.2(rollup@3.29.4)':
|
||||
dependencies:
|
||||
|
@ -9083,60 +9080,60 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
'@rollup/pluginutils@5.1.0(rollup@4.19.1)':
|
||||
'@rollup/pluginutils@5.1.0(rollup@4.19.2)':
|
||||
dependencies:
|
||||
'@types/estree': 1.0.5
|
||||
estree-walker: 2.0.2
|
||||
picomatch: 2.3.1
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
'@rollup/rollup-android-arm-eabi@4.19.1':
|
||||
'@rollup/rollup-android-arm-eabi@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-android-arm64@4.19.1':
|
||||
'@rollup/rollup-android-arm64@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-darwin-arm64@4.19.1':
|
||||
'@rollup/rollup-darwin-arm64@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-darwin-x64@4.19.1':
|
||||
'@rollup/rollup-darwin-x64@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-arm-gnueabihf@4.19.1':
|
||||
'@rollup/rollup-linux-arm-gnueabihf@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-arm-musleabihf@4.19.1':
|
||||
'@rollup/rollup-linux-arm-musleabihf@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-arm64-gnu@4.19.1':
|
||||
'@rollup/rollup-linux-arm64-gnu@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-arm64-musl@4.19.1':
|
||||
'@rollup/rollup-linux-arm64-musl@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-powerpc64le-gnu@4.19.1':
|
||||
'@rollup/rollup-linux-powerpc64le-gnu@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-riscv64-gnu@4.19.1':
|
||||
'@rollup/rollup-linux-riscv64-gnu@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-s390x-gnu@4.19.1':
|
||||
'@rollup/rollup-linux-s390x-gnu@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-x64-gnu@4.19.1':
|
||||
'@rollup/rollup-linux-x64-gnu@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-linux-x64-musl@4.19.1':
|
||||
'@rollup/rollup-linux-x64-musl@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-win32-arm64-msvc@4.19.1':
|
||||
'@rollup/rollup-win32-arm64-msvc@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-win32-ia32-msvc@4.19.1':
|
||||
'@rollup/rollup-win32-ia32-msvc@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rollup/rollup-win32-x64-msvc@4.19.1':
|
||||
'@rollup/rollup-win32-x64-msvc@4.19.2':
|
||||
optional: true
|
||||
|
||||
'@rushstack/eslint-patch@1.10.4': {}
|
||||
|
@ -11990,14 +11987,14 @@ snapshots:
|
|||
dependencies:
|
||||
'@cloudflare/kv-asset-handler': 0.3.4
|
||||
'@netlify/functions': 2.8.1
|
||||
'@rollup/plugin-alias': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/plugin-commonjs': 25.0.8(rollup@4.19.1)
|
||||
'@rollup/plugin-inject': 5.0.5(rollup@4.19.1)
|
||||
'@rollup/plugin-json': 6.1.0(rollup@4.19.1)
|
||||
'@rollup/plugin-node-resolve': 15.2.3(rollup@4.19.1)
|
||||
'@rollup/plugin-replace': 5.0.7(rollup@4.19.1)
|
||||
'@rollup/plugin-terser': 0.4.4(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/plugin-alias': 5.1.0(rollup@4.19.2)
|
||||
'@rollup/plugin-commonjs': 25.0.8(rollup@4.19.2)
|
||||
'@rollup/plugin-inject': 5.0.5(rollup@4.19.2)
|
||||
'@rollup/plugin-json': 6.1.0(rollup@4.19.2)
|
||||
'@rollup/plugin-node-resolve': 15.2.3(rollup@4.19.2)
|
||||
'@rollup/plugin-replace': 5.0.7(rollup@4.19.2)
|
||||
'@rollup/plugin-terser': 0.4.4(rollup@4.19.2)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
'@types/http-proxy': 1.17.14
|
||||
'@vercel/nft': 0.26.5(encoding@0.1.13)
|
||||
archiver: 7.0.1
|
||||
|
@ -12040,8 +12037,8 @@ snapshots:
|
|||
pkg-types: 1.1.3
|
||||
pretty-bytes: 6.1.1
|
||||
radix3: 1.1.2
|
||||
rollup: 4.19.1
|
||||
rollup-plugin-visualizer: 5.12.0(rollup@4.19.1)
|
||||
rollup: 4.19.2
|
||||
rollup-plugin-visualizer: 5.12.0(rollup@4.19.2)
|
||||
scule: 1.3.0
|
||||
semver: 7.6.3
|
||||
serve-placeholder: 2.0.2
|
||||
|
@ -12051,7 +12048,7 @@ snapshots:
|
|||
uncrypto: 0.1.3
|
||||
unctx: 2.3.1
|
||||
unenv: 1.10.0
|
||||
unimport: 3.9.1(rollup@4.19.1)
|
||||
unimport: 3.9.1(rollup@4.19.2)
|
||||
unstorage: 1.10.2(ioredis@5.4.1)
|
||||
unwasm: 0.3.9
|
||||
transitivePeerDependencies:
|
||||
|
@ -12200,12 +12197,12 @@ snapshots:
|
|||
- rollup
|
||||
- supports-color
|
||||
|
||||
nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.1)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4):
|
||||
nuxt@3.3.2(@types/node@18.19.42)(encoding@0.1.13)(eslint@8.57.0)(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.19.2)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4):
|
||||
dependencies:
|
||||
'@nuxt/devalue': 2.0.2
|
||||
'@nuxt/kit': 3.3.2(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/schema': 3.3.2(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/telemetry': 2.5.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.3.2(magicast@0.3.4)(rollup@4.19.2)
|
||||
'@nuxt/schema': 3.3.2(magicast@0.3.4)(rollup@4.19.2)
|
||||
'@nuxt/telemetry': 2.5.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
'@nuxt/ui-templates': 1.3.4
|
||||
'@nuxt/vite-builder': 3.3.2(@types/node@18.19.42)(eslint@8.57.0)(magicast@0.3.4)(optionator@0.9.4)(sass@1.77.8)(terser@5.31.3)(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4))
|
||||
'@unhead/ssr': 1.9.16
|
||||
|
@ -12238,13 +12235,13 @@ snapshots:
|
|||
ufo: 1.5.4
|
||||
unctx: 2.3.1
|
||||
unenv: 1.10.0
|
||||
unimport: 3.9.1(rollup@4.19.1)
|
||||
unimport: 3.9.1(rollup@4.19.2)
|
||||
unplugin: 1.12.0
|
||||
untyped: 1.4.2
|
||||
vue: 3.4.35(typescript@5.5.4)
|
||||
vue-bundle-renderer: 1.0.3
|
||||
vue-devtools-stub: 0.1.0
|
||||
vue-router: 4.4.1(vue@3.4.35(typescript@5.5.4))
|
||||
vue-router: 4.4.2(vue@3.4.35(typescript@5.5.4))
|
||||
transitivePeerDependencies:
|
||||
- '@azure/app-configuration'
|
||||
- '@azure/cosmos'
|
||||
|
@ -12325,7 +12322,7 @@ snapshots:
|
|||
vue: 3.4.35(typescript@5.5.4)
|
||||
vue-bundle-renderer: 1.0.3
|
||||
vue-devtools-stub: 0.1.0
|
||||
vue-router: 4.4.1(vue@3.4.35(typescript@5.5.4))
|
||||
vue-router: 4.4.2(vue@3.4.35(typescript@5.5.4))
|
||||
transitivePeerDependencies:
|
||||
- '@azure/app-configuration'
|
||||
- '@azure/cosmos'
|
||||
|
@ -13198,14 +13195,14 @@ snapshots:
|
|||
optionalDependencies:
|
||||
rollup: 3.29.4
|
||||
|
||||
rollup-plugin-visualizer@5.12.0(rollup@4.19.1):
|
||||
rollup-plugin-visualizer@5.12.0(rollup@4.19.2):
|
||||
dependencies:
|
||||
open: 8.4.2
|
||||
picomatch: 2.3.1
|
||||
source-map: 0.7.4
|
||||
yargs: 17.7.2
|
||||
optionalDependencies:
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
|
||||
rollup-plugin-vue@6.0.0(@vue/compiler-sfc@3.4.35):
|
||||
dependencies:
|
||||
|
@ -13224,26 +13221,26 @@ snapshots:
|
|||
optionalDependencies:
|
||||
fsevents: 2.3.3
|
||||
|
||||
rollup@4.19.1:
|
||||
rollup@4.19.2:
|
||||
dependencies:
|
||||
'@types/estree': 1.0.5
|
||||
optionalDependencies:
|
||||
'@rollup/rollup-android-arm-eabi': 4.19.1
|
||||
'@rollup/rollup-android-arm64': 4.19.1
|
||||
'@rollup/rollup-darwin-arm64': 4.19.1
|
||||
'@rollup/rollup-darwin-x64': 4.19.1
|
||||
'@rollup/rollup-linux-arm-gnueabihf': 4.19.1
|
||||
'@rollup/rollup-linux-arm-musleabihf': 4.19.1
|
||||
'@rollup/rollup-linux-arm64-gnu': 4.19.1
|
||||
'@rollup/rollup-linux-arm64-musl': 4.19.1
|
||||
'@rollup/rollup-linux-powerpc64le-gnu': 4.19.1
|
||||
'@rollup/rollup-linux-riscv64-gnu': 4.19.1
|
||||
'@rollup/rollup-linux-s390x-gnu': 4.19.1
|
||||
'@rollup/rollup-linux-x64-gnu': 4.19.1
|
||||
'@rollup/rollup-linux-x64-musl': 4.19.1
|
||||
'@rollup/rollup-win32-arm64-msvc': 4.19.1
|
||||
'@rollup/rollup-win32-ia32-msvc': 4.19.1
|
||||
'@rollup/rollup-win32-x64-msvc': 4.19.1
|
||||
'@rollup/rollup-android-arm-eabi': 4.19.2
|
||||
'@rollup/rollup-android-arm64': 4.19.2
|
||||
'@rollup/rollup-darwin-arm64': 4.19.2
|
||||
'@rollup/rollup-darwin-x64': 4.19.2
|
||||
'@rollup/rollup-linux-arm-gnueabihf': 4.19.2
|
||||
'@rollup/rollup-linux-arm-musleabihf': 4.19.2
|
||||
'@rollup/rollup-linux-arm64-gnu': 4.19.2
|
||||
'@rollup/rollup-linux-arm64-musl': 4.19.2
|
||||
'@rollup/rollup-linux-powerpc64le-gnu': 4.19.2
|
||||
'@rollup/rollup-linux-riscv64-gnu': 4.19.2
|
||||
'@rollup/rollup-linux-s390x-gnu': 4.19.2
|
||||
'@rollup/rollup-linux-x64-gnu': 4.19.2
|
||||
'@rollup/rollup-linux-x64-musl': 4.19.2
|
||||
'@rollup/rollup-win32-arm64-msvc': 4.19.2
|
||||
'@rollup/rollup-win32-ia32-msvc': 4.19.2
|
||||
'@rollup/rollup-win32-x64-msvc': 4.19.2
|
||||
fsevents: 2.3.3
|
||||
|
||||
run-applescript@5.0.0:
|
||||
|
@ -13763,7 +13760,7 @@ snapshots:
|
|||
picocolors: 1.0.1
|
||||
postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.40)(yaml@2.5.0)
|
||||
resolve-from: 5.0.0
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
source-map: 0.8.0-beta.0
|
||||
sucrase: 3.35.0
|
||||
tree-kill: 1.2.2
|
||||
|
@ -13908,9 +13905,9 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- rollup
|
||||
|
||||
unimport@3.9.1(rollup@4.19.1):
|
||||
unimport@3.9.1(rollup@4.19.2):
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
acorn: 8.12.1
|
||||
escape-string-regexp: 5.0.0
|
||||
estree-walker: 3.0.3
|
||||
|
@ -13938,10 +13935,10 @@ snapshots:
|
|||
|
||||
universalify@2.0.1: {}
|
||||
|
||||
unplugin-vue-components@0.27.0(@babel/parser@7.25.3)(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1))(rollup@4.19.1)(vue@3.4.35(typescript@5.5.4)):
|
||||
unplugin-vue-components@0.27.0(@babel/parser@7.25.3)(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2))(rollup@4.19.2)(vue@3.4.35(typescript@5.5.4)):
|
||||
dependencies:
|
||||
'@antfu/utils': 0.7.10
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
chokidar: 3.6.0
|
||||
debug: 4.3.6
|
||||
fast-glob: 3.3.2
|
||||
|
@ -13953,7 +13950,7 @@ snapshots:
|
|||
vue: 3.4.35(typescript@5.5.4)
|
||||
optionalDependencies:
|
||||
'@babel/parser': 7.25.3
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
transitivePeerDependencies:
|
||||
- rollup
|
||||
- supports-color
|
||||
|
@ -14104,24 +14101,23 @@ snapshots:
|
|||
optionator: 0.9.4
|
||||
typescript: 5.5.4
|
||||
|
||||
vite-plugin-inspect@0.7.42(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.1))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)):
|
||||
vite-plugin-inspect@0.7.42(@nuxt/kit@3.12.4(magicast@0.3.4)(rollup@4.19.2))(rollup@4.19.2):
|
||||
dependencies:
|
||||
'@antfu/utils': 0.7.10
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.19.2)
|
||||
debug: 4.3.6
|
||||
error-stack-parser-es: 0.1.5
|
||||
fs-extra: 11.2.0
|
||||
open: 9.1.0
|
||||
picocolors: 1.0.1
|
||||
sirv: 2.0.4
|
||||
vite: 5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)
|
||||
optionalDependencies:
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.1)
|
||||
'@nuxt/kit': 3.12.4(magicast@0.3.4)(rollup@4.19.2)
|
||||
transitivePeerDependencies:
|
||||
- rollup
|
||||
- supports-color
|
||||
|
||||
vite-plugin-vue-inspector@3.7.2(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)):
|
||||
vite-plugin-vue-inspector@3.7.2:
|
||||
dependencies:
|
||||
'@babel/core': 7.25.2
|
||||
'@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
|
||||
|
@ -14132,7 +14128,6 @@ snapshots:
|
|||
'@vue/compiler-dom': 3.4.35
|
||||
kolorist: 1.8.0
|
||||
magic-string: 0.30.11
|
||||
vite: 5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -14163,16 +14158,16 @@ snapshots:
|
|||
dependencies:
|
||||
esbuild: 0.21.5
|
||||
postcss: 8.4.40
|
||||
rollup: 4.19.1
|
||||
rollup: 4.19.2
|
||||
optionalDependencies:
|
||||
'@types/node': 18.19.42
|
||||
fsevents: 2.3.3
|
||||
sass: 1.77.8
|
||||
terser: 5.31.3
|
||||
|
||||
vitest-environment-nuxt@1.0.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)):
|
||||
vitest-environment-nuxt@1.0.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.2)(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)):
|
||||
dependencies:
|
||||
'@nuxt/test-utils': 3.14.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.1)(vite@5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))
|
||||
'@nuxt/test-utils': 3.14.0(@vue/test-utils@2.4.6)(h3@1.12.0)(magicast@0.3.4)(nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.4))(rollup@4.19.2)(vitest@1.6.0(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3))(vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4))
|
||||
transitivePeerDependencies:
|
||||
- '@cucumber/cucumber'
|
||||
- '@jest/globals'
|
||||
|
@ -14311,7 +14306,7 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)):
|
||||
vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)):
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.6.3
|
||||
vue: 3.4.35(typescript@5.5.4)
|
||||
|
|
Loading…
Reference in New Issue