Merge branch 'master' of https://github.com/primefaces/primevue
commit
d43ea3cb8a
|
@ -6133,6 +6133,13 @@
|
|||
"value": "\"p-breadcrumb-separator\"",
|
||||
"description": "Class name of the separator element"
|
||||
},
|
||||
{
|
||||
"name": "separatorIcon",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"value": "\"p-breadcrumb-separator-icon\"",
|
||||
"description": "Class name of the separator icon element"
|
||||
},
|
||||
{
|
||||
"name": "item",
|
||||
"optional": false,
|
||||
|
@ -32604,14 +32611,6 @@
|
|||
"default": "false",
|
||||
"description": "When present, it specifies that the element should be disabled."
|
||||
},
|
||||
{
|
||||
"name": "closeIcon",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Icon to display in the close button."
|
||||
},
|
||||
{
|
||||
"name": "displayProps",
|
||||
"optional": true,
|
||||
|
@ -43715,6 +43714,13 @@
|
|||
"value": "\"p-multiselect-label\"",
|
||||
"description": "Class name of the label element"
|
||||
},
|
||||
{
|
||||
"name": "clearIcon",
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"value": "\"p-multiselect-clear-icon\"",
|
||||
"description": "Class name of the clear icon element"
|
||||
},
|
||||
{
|
||||
"name": "chipItem",
|
||||
"optional": false,
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<template v-for="(item, i) of model" :key="item.label + '_' + i">
|
||||
<li v-if="home || i !== 0" :class="cx('separator')" v-bind="ptm('separator')">
|
||||
<slot name="separator">
|
||||
<ChevronRightIcon aria-hidden="true" v-bind="ptm('separatorIcon')" />
|
||||
<ChevronRightIcon aria-hidden="true" :class="cx('separatorIcon')" v-bind="ptm('separatorIcon')" />
|
||||
</slot>
|
||||
</li>
|
||||
<BreadcrumbItem :item="item" :index="i" :templates="$slots" :pt="pt" :unstyled="unstyled" />
|
||||
|
|
|
@ -26,6 +26,10 @@ export enum BreadcrumbClasses {
|
|||
* Class name of the separator element
|
||||
*/
|
||||
separator = 'p-breadcrumb-separator',
|
||||
/**
|
||||
* Class name of the separator icon element
|
||||
*/
|
||||
separatorIcon = 'p-breadcrumb-separator-icon',
|
||||
/**
|
||||
* Class name of the item element
|
||||
*/
|
||||
|
|
|
@ -23,6 +23,10 @@ const theme = ({ dt }) => `
|
|||
color: ${dt('breadcrumb.separator.color')};
|
||||
}
|
||||
|
||||
.p-breadcrumb-separator-icon:dir(rtl) {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.p-breadcrumb::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
@ -67,6 +71,7 @@ const classes = {
|
|||
list: 'p-breadcrumb-list',
|
||||
homeItem: 'p-breadcrumb-home-item',
|
||||
separator: 'p-breadcrumb-separator',
|
||||
separatorIcon: 'p-breadcrumb-separator-icon',
|
||||
item: ({ instance }) => ['p-breadcrumb-item', { 'p-disabled': instance.disabled() }],
|
||||
itemLink: 'p-breadcrumb-item-link',
|
||||
itemIcon: 'p-breadcrumb-item-icon',
|
||||
|
|
|
@ -18,6 +18,10 @@ const theme = ({ dt }) => `
|
|||
gap: ${dt('carousel.content.gap')};
|
||||
}
|
||||
|
||||
.p-carousel-content:dir(rtl) {
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.p-carousel-viewport {
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
|
@ -28,6 +32,10 @@ const theme = ({ dt }) => `
|
|||
flex-direction: row;
|
||||
}
|
||||
|
||||
.p-carousel-item-list:dir(rtl) {
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.p-carousel-prev-button,
|
||||
.p-carousel-next-button {
|
||||
align-self: center;
|
||||
|
|
|
@ -73,6 +73,11 @@ const theme = ({ dt }) => `
|
|||
height: ${dt('contextmenu.submenu.icon.size')};
|
||||
}
|
||||
|
||||
.p-contextmenu-submenu-icon:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.p-contextmenu-item.p-focus > .p-contextmenu-item-content {
|
||||
color: ${dt('contextmenu.item.focus.color')};
|
||||
background: ${dt('contextmenu.item.focus.background')};
|
||||
|
@ -113,7 +118,7 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-contextmenu-separator {
|
||||
border-top: 1px solid ${dt('contextmenu.separator.border.color')};
|
||||
border-block-start: 1px solid ${dt('contextmenu.separator.border.color')};
|
||||
}
|
||||
|
||||
.p-contextmenu-enter-from,
|
||||
|
@ -129,8 +134,8 @@ const theme = ({ dt }) => `
|
|||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
padding-left: ${dt('tieredmenu.submenu.mobile.indent')};
|
||||
padding-right: 0;
|
||||
padding-inline-start: ${dt('tieredmenu.submenu.mobile.indent')};
|
||||
padding-inline-end: 0;
|
||||
}
|
||||
|
||||
.p-contextmenu-mobile .p-contextmenu-submenu-icon {
|
||||
|
|
|
@ -60,30 +60,18 @@ const theme = ({ dt }) => `
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.p-dock-top .p-dock-item {
|
||||
transform-origin: center top;
|
||||
}
|
||||
|
||||
.p-dock-bottom {
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.p-dock-bottom .p-dock-item {
|
||||
transform-origin: center bottom;
|
||||
}
|
||||
|
||||
.p-dock-right {
|
||||
right: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.p-dock-right .p-dock-item {
|
||||
transform-origin: center right;
|
||||
}
|
||||
|
||||
.p-dock-right .p-dock-list {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
@ -94,10 +82,6 @@ const theme = ({ dt }) => `
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
.p-dock-left .p-dock-item {
|
||||
transform-origin: center left;
|
||||
}
|
||||
|
||||
.p-dock-left .p-dock-list {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
@ -107,19 +91,23 @@ const theme = ({ dt }) => `
|
|||
overflow-x: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.p-dock-mobile.p-dock-top .p-dock-list-container .p-dock-list,
|
||||
.p-dock-mobile.p-dock-bottom .p-dock-list-container .p-dock-list {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.p-dock-mobile.p-dock-left .p-dock-list-container,
|
||||
.p-dock-mobile.p-dock-right .p-dock-list-container {
|
||||
overflow-y: auto;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.p-dock-mobile.p-dock-left .p-dock-list-container .p-dock-list,
|
||||
.p-dock-mobile.p-dock-right .p-dock-list-container .p-dock-list {
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.p-dock-mobile .p-dock-list .p-dock-item {
|
||||
transform: none;
|
||||
margin: 0;
|
||||
|
|
|
@ -74,6 +74,18 @@ const theme = ({ dt }) => `
|
|||
right: 0;
|
||||
}
|
||||
|
||||
.p-galleria-prev-button:dir(rtl) {
|
||||
left: auto;
|
||||
right: 0;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.p-galleria-next-button:dir(rtl) {
|
||||
right: auto;
|
||||
left: 0;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.p-galleria-item {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
@ -166,6 +178,11 @@ const theme = ({ dt }) => `
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.p-galleria:not(.p-galleria-thumbnails-right):not(.p-galleria-thumbnails-left) .p-galleria-thumbnail-prev-button:dir(rtl),
|
||||
.p-galleria:not(.p-galleria-thumbnails-right):not(.p-galleria-thumbnails-left) .p-galleria-thumbnail-next-button:dir(rtl) {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.p-galleria-thumbnail-items {
|
||||
display: flex;
|
||||
}
|
||||
|
|
|
@ -15,8 +15,8 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-image-preview-mask {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
inset-inline-start: 0;
|
||||
inset-block-start: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
|
@ -46,10 +46,10 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-image-toolbar {
|
||||
position: absolute;
|
||||
top: ${dt('image.toolbar.position.top')};
|
||||
right: ${dt('image.toolbar.position.right')};
|
||||
left: ${dt('image.toolbar.position.left')};
|
||||
bottom: ${dt('image.toolbar.position.bottom')};
|
||||
inset-block-start: ${dt('image.toolbar.position.top')};
|
||||
inset-inline-end: ${dt('image.toolbar.position.right')};
|
||||
inset-inline-start: ${dt('image.toolbar.position.left')};
|
||||
inset-block-end: ${dt('image.toolbar.position.bottom')};
|
||||
display: flex;
|
||||
z-index: 1;
|
||||
padding: ${dt('image.toolbar.padding')};
|
||||
|
|
|
@ -12,12 +12,44 @@ import BaseImageCompare from './BaseImageCompare.vue';
|
|||
export default {
|
||||
name: 'ImageCompare',
|
||||
extends: BaseImageCompare,
|
||||
mutationObserver: null,
|
||||
data() {
|
||||
return {
|
||||
isRTL: false
|
||||
};
|
||||
},
|
||||
beforeUnmount() {
|
||||
if (this.mutationObserver) {
|
||||
this.mutationObserver.disconnect();
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.updateDirection();
|
||||
this.observeDirectionChanges();
|
||||
},
|
||||
methods: {
|
||||
onSlide(event) {
|
||||
const value = event.target.value;
|
||||
const image = event.target.previousElementSibling;
|
||||
|
||||
image.style.clipPath = 'polygon(0 0,' + value + '% 0,' + value + '% 100%, 0 100%)';
|
||||
if (this.isRTL) {
|
||||
image.style.clipPath = `polygon(${100 - value}% 0, 100% 0, 100% 100%, ${100 - value}% 100%)`;
|
||||
} else {
|
||||
image.style.clipPath = `polygon(0 0, ${value}% 0, ${value}% 100%, 0 100%)`;
|
||||
}
|
||||
},
|
||||
updateDirection() {
|
||||
this.isRTL = !!this.$el.closest('[dir="rtl"]');
|
||||
},
|
||||
observeDirectionChanges() {
|
||||
const targetNode = document.documentElement;
|
||||
const config = { attributes: true, attributeFilter: ['dir'] };
|
||||
|
||||
this.mutationObserver = new MutationObserver(() => {
|
||||
this.updateDirection();
|
||||
});
|
||||
|
||||
this.mutationObserver.observe(targetNode, config);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -18,12 +18,16 @@ const theme = ({ dt }) => `
|
|||
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
||||
}
|
||||
|
||||
.p-imagecompare:dir(rtl) img + img {
|
||||
clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
|
||||
}
|
||||
|
||||
.p-imagecompare-slider {
|
||||
position: relative;
|
||||
-webkit-appearance: none;
|
||||
width: calc(100% + ${dt('imagecompare.handle.size')});
|
||||
height: 100%;
|
||||
margin-left: calc(-1 * calc(${dt('imagecompare.handle.size')} / 2));
|
||||
margin-inline-start: calc(-1 * calc(${dt('imagecompare.handle.size')} / 2));
|
||||
background-color: transparent;
|
||||
outline: none;
|
||||
transition: all ${dt('imagecompare.handle.transition.duration')};
|
||||
|
@ -65,7 +69,7 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-imagecompare-slider:hover {
|
||||
width: calc(100% + ${dt('imagecompare.handle.hover.size')});
|
||||
margin-left: calc(-1 * calc(${dt('imagecompare.handle.hover.size')} / 2));
|
||||
margin-inline-start: calc(-1 * calc(${dt('imagecompare.handle.hover.size')} / 2));
|
||||
}
|
||||
|
||||
.p-imagecompare-slider:hover::-webkit-slider-thumb {
|
||||
|
|
|
@ -114,10 +114,6 @@ export interface InplaceProps {
|
|||
* @defaultValue false
|
||||
*/
|
||||
disabled?: boolean | undefined;
|
||||
/**
|
||||
* Icon to display in the close button.
|
||||
*/
|
||||
closeIcon?: string | undefined;
|
||||
/**
|
||||
* Used to pass all properties of the HTMLDivElement to display container.
|
||||
*/
|
||||
|
|
|
@ -126,6 +126,11 @@ const theme = ({ dt }) => `
|
|||
box-shadow: ${dt('megamenu.overlay.shadow')};
|
||||
}
|
||||
|
||||
.p-megamenu-overlay:dir(rtl) {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.p-megamenu-root-list > .p-megamenu-item-active > .p-megamenu-overlay {
|
||||
display: block;
|
||||
}
|
||||
|
@ -148,7 +153,7 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-megamenu-separator {
|
||||
border-top: 1px solid ${dt('megamenu.separator.border.color')};
|
||||
border-block-start: 1px solid ${dt('megamenu.separator.border.color')};
|
||||
}
|
||||
|
||||
.p-megamenu-horizontal {
|
||||
|
@ -168,6 +173,11 @@ const theme = ({ dt }) => `
|
|||
align-self: center;
|
||||
}
|
||||
|
||||
.p-megamenu-horizontal .p-megamenu-end:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.p-megamenu-vertical {
|
||||
display: inline-flex;
|
||||
min-width: 12.5rem;
|
||||
|
@ -187,10 +197,21 @@ const theme = ({ dt }) => `
|
|||
top: 0;
|
||||
}
|
||||
|
||||
.p-megamenu-vertical .p-megamenu-root-list > .p-megamenu-item-active > .p-megamenu-overlay:dir(rtl) {
|
||||
left: auto;
|
||||
right: 100%;
|
||||
}
|
||||
|
||||
.p-megamenu-vertical .p-megamenu-root-list > .p-megamenu-item > .p-megamenu-item-content .p-megamenu-submenu-icon {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.p-megamenu-vertical .p-megamenu-root-list > .p-megamenu-item > .p-megamenu-item-content .p-megamenu-submenu-icon:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.p-megamenu-grid {
|
||||
display: flex;
|
||||
}
|
||||
|
@ -236,7 +257,7 @@ const theme = ({ dt }) => `
|
|||
border: 0 none;
|
||||
background: transparent;
|
||||
border-radius: ${dt('megamenu.mobile.button.border.radius')};
|
||||
transition: background ${dt('megamenu.transition.duration')}, color ${dt('megamenu.transition.duration')}, outline-color ${dt('megamenu.transition.duration')}, ox-shadow ${dt('megamenu.transition.duration')};
|
||||
transition: background ${dt('megamenu.transition.duration')}, color ${dt('megamenu.transition.duration')}, outline-color ${dt('megamenu.transition.duration')}, box-shadow ${dt('megamenu.transition.duration')};
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -274,6 +295,11 @@ const theme = ({ dt }) => `
|
|||
box-shadow: ${dt('megamenu.overlay.shadow')};
|
||||
}
|
||||
|
||||
.p-megamenu-mobile .p-megamenu-root-list:dir(rtl) {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.p-megamenu-mobile-active .p-megamenu-root-list {
|
||||
display: block;
|
||||
}
|
||||
|
@ -301,6 +327,11 @@ const theme = ({ dt }) => `
|
|||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.p-megamenu-mobile .p-megamenu-root-list > .p-megamenu-item > .p-megamenu-item-content .p-megamenu-submenu-icon:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.p-megamenu-mobile .p-megamenu-root-list > .p-megamenu-item-active > .p-megamenu-item-content .p-megamenu-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
|
|
|
@ -77,7 +77,7 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-menu-separator {
|
||||
border-top: 1px solid ${dt('menu.separator.border.color')};
|
||||
border-block-start: 1px solid ${dt('menu.separator.border.color')};
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
@ -77,6 +77,12 @@ const theme = ({ dt }) => `
|
|||
height: ${dt('menubar.submenu.icon.size')};
|
||||
}
|
||||
|
||||
.p-menubar-submenu .p-menubar-submenu-icon:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.p-menubar-item.p-focus > .p-menubar-item-content {
|
||||
color: ${dt('menubar.item.focus.color')};
|
||||
background: ${dt('menubar.item.focus.background')};
|
||||
|
@ -132,24 +138,34 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-menubar-submenu .p-menubar-separator {
|
||||
border-top: 1px solid ${dt('menubar.separator.border.color')};
|
||||
border-block-start: 1px solid ${dt('menubar.separator.border.color')};
|
||||
}
|
||||
|
||||
.p-menubar-submenu .p-menubar-item {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.p-menubar-submenu > .p-menubar-item-active > .p-menubar-submenu {
|
||||
.p-menubar-submenu > .p-menubar-item-active > .p-menubar-submenu {
|
||||
display: block;
|
||||
left: 100%;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.p-menubar-submenu > .p-menubar-item-active > .p-menubar-submenu:dir(rtl) {
|
||||
left: auto;
|
||||
right: 100%;
|
||||
}
|
||||
|
||||
.p-menubar-end {
|
||||
margin-left: auto;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.p-menubar-end:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.p-menubar-button {
|
||||
display: none;
|
||||
justify-content: center;
|
||||
|
@ -201,6 +217,11 @@ const theme = ({ dt }) => `
|
|||
gap: ${dt('menubar.submenu.gap')};
|
||||
}
|
||||
|
||||
.p-menubar-mobile .p-menubar-root-list:dir(rtl) {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.p-menubar-mobile .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content > .p-menubar-item-link {
|
||||
padding: ${dt('menubar.item.padding')};
|
||||
}
|
||||
|
@ -215,7 +236,7 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-menubar-mobile .p-menubar-root-list .p-menubar-separator {
|
||||
border-top: 1px solid ${dt('menubar.separator.border.color')};
|
||||
border-block-start: 1px solid ${dt('menubar.separator.border.color')};
|
||||
}
|
||||
|
||||
.p-menubar-mobile .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content .p-menubar-submenu-icon {
|
||||
|
@ -223,6 +244,12 @@ const theme = ({ dt }) => `
|
|||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.p-menubar-mobile .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content .p-menubar-submenu-icon:dir(rtl),
|
||||
.p-menubar-mobile .p-menubar-submenu-icon:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.p-menubar-mobile .p-menubar-root-list > .p-menubar-item-active > .p-menubar-item-content .p-menubar-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
|
@ -232,7 +259,7 @@ const theme = ({ dt }) => `
|
|||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.p-menubar-mobile .p-menubar-item-active > .p-menubar-item-content .p-menubar-submenu-icon {
|
||||
.p-menubar-mobile .p-menubar-item-active > .p-menubar-item-content .p-menubar-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
|
@ -241,8 +268,8 @@ const theme = ({ dt }) => `
|
|||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
padding-left: ${dt('menubar.submenu.mobile.indent')};
|
||||
padding-right: 0;
|
||||
padding-inline-start: ${dt('menubar.submenu.mobile.indent')};
|
||||
padding-inline-end: 0;
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ const theme = ({ dt }) => `
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
margin: 0 0 0 auto;
|
||||
margin-inline-start: auto;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
width: ${dt('message.close.button.width')};
|
||||
|
|
|
@ -22,6 +22,10 @@ export enum MultiSelectClasses {
|
|||
* Class name of the label element
|
||||
*/
|
||||
label = 'p-multiselect-label',
|
||||
/**
|
||||
* Class name of the clear icon element
|
||||
*/
|
||||
clearIcon = 'p-multiselect-clear-icon',
|
||||
/**
|
||||
* Class name of the chip item element
|
||||
*/
|
||||
|
|
|
@ -19,14 +19,14 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-panelmenu-panel:first-child {
|
||||
border-width: ${dt('panelmenu.panel.first.border.width')};
|
||||
border-top-left-radius: ${dt('panelmenu.panel.first.top.border.radius')};
|
||||
border-top-right-radius: ${dt('panelmenu.panel.first.top.border.radius')};
|
||||
border-start-start-radius: ${dt('panelmenu.panel.first.top.border.radius')};
|
||||
border-start-end-radius: ${dt('panelmenu.panel.first.top.border.radius')};
|
||||
}
|
||||
|
||||
.p-panelmenu-panel:last-child {
|
||||
border-width: ${dt('panelmenu.panel.last.border.width')};
|
||||
border-bottom-left-radius: ${dt('panelmenu.panel.last.bottom.border.radius')};
|
||||
border-bottom-right-radius: ${dt('panelmenu.panel.last.bottom.border.radius')};
|
||||
border-end-start-radius: ${dt('panelmenu.panel.last.bottom.border.radius')};
|
||||
border-end-end-radius: ${dt('panelmenu.panel.last.bottom.border.radius')};
|
||||
}
|
||||
|
||||
.p-panelmenu-header {
|
||||
|
@ -61,6 +61,10 @@ const theme = ({ dt }) => `
|
|||
color: ${dt('panelmenu.submenu.icon.color')};
|
||||
}
|
||||
|
||||
.p-panelmenu-header:not(.p-panelmenu-header-active) .p-panelmenu-submenu-icon:dir(rtl) {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
|
||||
.p-panelmenu-header:not(.p-disabled):focus-visible .p-panelmenu-header-content {
|
||||
background: ${dt('panelmenu.item.focus.background')};
|
||||
color: ${dt('panelmenu.item.focus.color')};
|
||||
|
@ -94,6 +98,10 @@ const theme = ({ dt }) => `
|
|||
list-style: none;
|
||||
}
|
||||
|
||||
.p-panelmenu-submenu:dir(rtl) {
|
||||
padding: 0 ${dt('panelmenu.submenu.indent')} 0 0;
|
||||
}
|
||||
|
||||
.p-panelmenu-item-link {
|
||||
display: flex;
|
||||
gap: ${dt('panelmenu.item.gap')};
|
||||
|
|
|
@ -71,6 +71,11 @@ const theme = ({ dt }) => `
|
|||
height: ${dt('tieredmenu.submenu.icon.size')};
|
||||
}
|
||||
|
||||
.p-tieredmenu-submenu-icon:dir(rtl) {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.p-tieredmenu-item.p-focus > .p-tieredmenu-item-content {
|
||||
color: ${dt('tieredmenu.item.focus.color')};
|
||||
background: ${dt('tieredmenu.item.focus.background')};
|
||||
|
@ -111,7 +116,7 @@ const theme = ({ dt }) => `
|
|||
}
|
||||
|
||||
.p-tieredmenu-separator {
|
||||
border-top: 1px solid ${dt('tieredmenu.separator.border.color')};
|
||||
border-block-start: 1px solid ${dt('tieredmenu.separator.border.color')};
|
||||
}
|
||||
|
||||
.p-tieredmenu-overlay {
|
||||
|
@ -131,8 +136,13 @@ const theme = ({ dt }) => `
|
|||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
padding-left: ${dt('tieredmenu.submenu.mobile.indent')};
|
||||
padding-right: 0;
|
||||
padding-inline-start: ${dt('tieredmenu.submenu.mobile.indent')};
|
||||
padding-inline-end: 0;
|
||||
}
|
||||
|
||||
.p-tieredmenu-mobile .p-tieredmenu-submenu:dir(rtl) {
|
||||
padding-inline-start: 0;
|
||||
padding-inline-end: ${dt('tieredmenu.submenu.mobile.indent')};
|
||||
}
|
||||
|
||||
.p-tieredmenu-mobile .p-tieredmenu-submenu-icon {
|
||||
|
|
|
@ -63,6 +63,12 @@ const theme = ({ dt }) => `
|
|||
user-select: none;
|
||||
}
|
||||
|
||||
.p-toast-close-button:dir(rtl) {
|
||||
margin: -25% 0 0 auto;
|
||||
left: -25%;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
.p-toast-message-info,
|
||||
.p-toast-message-success,
|
||||
.p-toast-message-warn,
|
||||
|
|
254
pnpm-lock.yaml
254
pnpm-lock.yaml
|
@ -104,7 +104,7 @@ importers:
|
|||
version: 19.0.0
|
||||
nuxt:
|
||||
specifier: 3.3.2
|
||||
version: 3.3.2(@types/node@18.19.61)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(webpack-sources@3.2.3)
|
||||
version: 3.3.2(@types/node@18.19.62)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(webpack-sources@3.2.3)
|
||||
postcss:
|
||||
specifier: ^8.4.31
|
||||
version: 8.4.47
|
||||
|
@ -159,7 +159,7 @@ importers:
|
|||
version: 8.3.5(jiti@2.3.3)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0)
|
||||
unplugin-vue-components:
|
||||
specifier: ^0.27.0
|
||||
version: 0.27.0(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3))
|
||||
version: 0.27.0(@babel/parser@7.26.2)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3))
|
||||
publishDirectory: dist
|
||||
|
||||
packages/core:
|
||||
|
@ -230,11 +230,11 @@ importers:
|
|||
version: link:../primevue
|
||||
unplugin-vue-components:
|
||||
specifier: 0.27.0
|
||||
version: 0.27.0(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3))
|
||||
version: 0.27.0(@babel/parser@7.26.2)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3))
|
||||
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)
|
||||
version: 0.8.5(nuxt@3.3.2(@types/node@18.19.62)(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,13 +246,13 @@ 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)(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.62)(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
|
||||
'@types/node':
|
||||
specifier: ^18.17.17
|
||||
version: 18.19.61
|
||||
version: 18.19.62
|
||||
changelogen:
|
||||
specifier: ^0.5.5
|
||||
version: 0.5.7(magicast@0.3.5)
|
||||
|
@ -261,10 +261,10 @@ importers:
|
|||
version: 2.9.7(encoding@0.1.13)(magicast@0.3.5)
|
||||
nuxt:
|
||||
specifier: 3.3.2
|
||||
version: 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)
|
||||
version: 3.3.2(@types/node@18.19.62)(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)
|
||||
vitest:
|
||||
specifier: ^1.6.0
|
||||
version: 1.6.0(@types/node@18.19.61)(terser@5.36.0)
|
||||
version: 1.6.0(@types/node@18.19.62)(terser@5.36.0)
|
||||
|
||||
packages/primevue:
|
||||
dependencies:
|
||||
|
@ -374,12 +374,12 @@ packages:
|
|||
'@antfu/utils@0.7.10':
|
||||
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
|
||||
|
||||
'@babel/code-frame@7.26.0':
|
||||
resolution: {integrity: sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==}
|
||||
'@babel/code-frame@7.26.2':
|
||||
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/compat-data@7.26.0':
|
||||
resolution: {integrity: sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==}
|
||||
'@babel/compat-data@7.26.2':
|
||||
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/core@7.26.0':
|
||||
|
@ -393,8 +393,8 @@ packages:
|
|||
'@babel/core': ^7.11.0
|
||||
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
|
||||
|
||||
'@babel/generator@7.26.0':
|
||||
resolution: {integrity: sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==}
|
||||
'@babel/generator@7.26.2':
|
||||
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-annotate-as-pure@7.25.9':
|
||||
|
@ -488,8 +488,8 @@ packages:
|
|||
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/parser@7.26.1':
|
||||
resolution: {integrity: sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==}
|
||||
'@babel/parser@7.26.2':
|
||||
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
|
||||
|
@ -897,8 +897,8 @@ packages:
|
|||
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/standalone@7.26.1':
|
||||
resolution: {integrity: sha512-DAC3Vv62IA9VcMMAsTm5UzuEmsVjYkR5A9BX9zJrrrPHCQYJIp38jMHHx17RC4KwruwiIAb5hLFZLmE+wZgiyQ==}
|
||||
'@babel/standalone@7.26.2':
|
||||
resolution: {integrity: sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/template@7.25.9':
|
||||
|
@ -2397,8 +2397,8 @@ packages:
|
|||
'@types/json-schema@7.0.15':
|
||||
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
||||
|
||||
'@types/node@18.19.61':
|
||||
resolution: {integrity: sha512-z8fH66NcVkDzBItOao+Nyh0fiy7CYdxIyxnNCcZ60aY0I+EA/y4TSi/S/W9i8DIQvwVo7a0pgzAxmDeNnqrpkw==}
|
||||
'@types/node@18.19.62':
|
||||
resolution: {integrity: sha512-UOGhw+yZV/icyM0qohQVh3ktpY40Sp7tdTW7HxG3pTd7AiMrlFlAJNUrGK9t5mdW0+ViQcFV74zCSIx9ZJpncA==}
|
||||
|
||||
'@types/resolve@1.20.2':
|
||||
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
|
||||
|
@ -2942,8 +2942,8 @@ packages:
|
|||
caniuse-api@3.0.0:
|
||||
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
|
||||
|
||||
caniuse-lite@1.0.30001675:
|
||||
resolution: {integrity: sha512-/wV1bQwPrkLiQMjaJF5yUMVM/VdRPOCU8QZ+PmG6uW6DvYSrNY1bpwHI/3mOcUosLaJCzYDi5o91IQB51ft6cg==}
|
||||
caniuse-lite@1.0.30001676:
|
||||
resolution: {integrity: sha512-Qz6zwGCiPghQXGJvgQAem79esjitvJ+CxSbSQkW9H/UX5hg8XM88d4lp2W+MEQ81j+Hip58Il+jGVdazk1z9cw==}
|
||||
|
||||
chai@4.5.0:
|
||||
resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
|
||||
|
@ -3109,8 +3109,8 @@ packages:
|
|||
cookie-es@1.2.2:
|
||||
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
|
||||
|
||||
core-js-compat@3.38.1:
|
||||
resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
|
||||
core-js-compat@3.39.0:
|
||||
resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
|
||||
|
||||
core-util-is@1.0.3:
|
||||
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
|
||||
|
@ -6147,8 +6147,8 @@ packages:
|
|||
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
|
||||
hasBin: true
|
||||
|
||||
ts-api-utils@1.3.0:
|
||||
resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
|
||||
ts-api-utils@1.4.0:
|
||||
resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
|
||||
engines: {node: '>=16'}
|
||||
peerDependencies:
|
||||
typescript: '>=4.2.0'
|
||||
|
@ -6655,8 +6655,8 @@ packages:
|
|||
vue-bundle-renderer@1.0.3:
|
||||
resolution: {integrity: sha512-EfjX+5TTUl70bki9hPuVp+54JiZOvFIfoWBcfXsSwLzKEiDYyHNi5iX8srnqLIv3YRnvxgbntdcG1WPq0MvffQ==}
|
||||
|
||||
vue-component-type-helpers@2.1.8:
|
||||
resolution: {integrity: sha512-ii36gDzrYAfOQIkOlo44yceDdT5269gKmNGxf07Qx6seH2U50+tQ2ol02XLhYPmxrh6YabAsOdte8WDrpaO6Tw==}
|
||||
vue-component-type-helpers@2.1.10:
|
||||
resolution: {integrity: sha512-lfgdSLQKrUmADiSV6PbBvYgQ33KF3Ztv6gP85MfGaGaSGMTXORVaHT1EHfsqCgzRNBstPKYDmvAV9Do5CmJ07A==}
|
||||
|
||||
vue-devtools-stub@0.1.0:
|
||||
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
|
||||
|
@ -6973,23 +6973,23 @@ snapshots:
|
|||
|
||||
'@antfu/utils@0.7.10': {}
|
||||
|
||||
'@babel/code-frame@7.26.0':
|
||||
'@babel/code-frame@7.26.2':
|
||||
dependencies:
|
||||
'@babel/helper-validator-identifier': 7.25.9
|
||||
js-tokens: 4.0.0
|
||||
picocolors: 1.1.1
|
||||
|
||||
'@babel/compat-data@7.26.0': {}
|
||||
'@babel/compat-data@7.26.2': {}
|
||||
|
||||
'@babel/core@7.26.0':
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@babel/code-frame': 7.26.0
|
||||
'@babel/generator': 7.26.0
|
||||
'@babel/code-frame': 7.26.2
|
||||
'@babel/generator': 7.26.2
|
||||
'@babel/helper-compilation-targets': 7.25.9
|
||||
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
|
||||
'@babel/helpers': 7.26.0
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/template': 7.25.9
|
||||
'@babel/traverse': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
|
@ -7009,9 +7009,9 @@ snapshots:
|
|||
eslint-visitor-keys: 2.1.0
|
||||
semver: 6.3.1
|
||||
|
||||
'@babel/generator@7.26.0':
|
||||
'@babel/generator@7.26.2':
|
||||
dependencies:
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/types': 7.26.0
|
||||
'@jridgewell/gen-mapping': 0.3.5
|
||||
'@jridgewell/trace-mapping': 0.3.25
|
||||
|
@ -7030,7 +7030,7 @@ snapshots:
|
|||
|
||||
'@babel/helper-compilation-targets@7.25.9':
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.26.0
|
||||
'@babel/compat-data': 7.26.2
|
||||
'@babel/helper-validator-option': 7.25.9
|
||||
browserslist: 4.24.2
|
||||
lru-cache: 5.1.1
|
||||
|
@ -7147,7 +7147,7 @@ snapshots:
|
|||
'@babel/template': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
'@babel/parser@7.26.1':
|
||||
'@babel/parser@7.26.2':
|
||||
dependencies:
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
|
@ -7571,7 +7571,7 @@ snapshots:
|
|||
|
||||
'@babel/preset-env@7.26.0(@babel/core@7.26.0)':
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.26.0
|
||||
'@babel/compat-data': 7.26.2
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-compilation-targets': 7.25.9
|
||||
'@babel/helper-plugin-utils': 7.25.9
|
||||
|
@ -7639,7 +7639,7 @@ snapshots:
|
|||
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
|
||||
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
|
||||
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
|
||||
core-js-compat: 3.38.1
|
||||
core-js-compat: 3.39.0
|
||||
semver: 6.3.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -7655,19 +7655,19 @@ snapshots:
|
|||
dependencies:
|
||||
regenerator-runtime: 0.14.1
|
||||
|
||||
'@babel/standalone@7.26.1': {}
|
||||
'@babel/standalone@7.26.2': {}
|
||||
|
||||
'@babel/template@7.25.9':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.26.0
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/code-frame': 7.26.2
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
'@babel/traverse@7.25.9':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.26.0
|
||||
'@babel/generator': 7.26.0
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/code-frame': 7.26.2
|
||||
'@babel/generator': 7.26.2
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/template': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
debug: 4.3.7
|
||||
|
@ -8319,12 +8319,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)':
|
||||
'@nuxt/devtools-kit@0.8.5(magicast@0.3.5)(nuxt@3.3.2(@types/node@18.19.62)(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)
|
||||
nuxt: 3.3.2(@types/node@18.19.62)(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)
|
||||
transitivePeerDependencies:
|
||||
- magicast
|
||||
- rollup
|
||||
|
@ -8344,10 +8344,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)':
|
||||
'@nuxt/devtools@0.8.5(nuxt@3.3.2(@types/node@18.19.62)(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)
|
||||
'@nuxt/devtools-kit': 0.8.5(magicast@0.3.5)(nuxt@3.3.2(@types/node@18.19.62)(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
|
||||
|
@ -8365,7 +8365,7 @@ snapshots:
|
|||
launch-editor: 2.9.1
|
||||
local-pkg: 0.4.3
|
||||
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)
|
||||
nuxt: 3.3.2(@types/node@18.19.62)(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)
|
||||
nypm: 0.3.12
|
||||
ofetch: 1.4.1
|
||||
ohash: 1.1.4
|
||||
|
@ -8689,7 +8689,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)(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.62)(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)
|
||||
|
@ -8715,12 +8715,12 @@ snapshots:
|
|||
ufo: 1.5.4
|
||||
unenv: 1.10.0
|
||||
unplugin: 1.15.0(webpack-sources@3.2.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))
|
||||
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.62)(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:
|
||||
'@vue/test-utils': 2.4.6
|
||||
vitest: 1.6.0(@types/node@18.19.61)(terser@5.36.0)
|
||||
vitest: 1.6.0(@types/node@18.19.62)(terser@5.36.0)
|
||||
transitivePeerDependencies:
|
||||
- magicast
|
||||
- rollup
|
||||
|
@ -8729,12 +8729,12 @@ snapshots:
|
|||
|
||||
'@nuxt/ui-templates@1.3.4': {}
|
||||
|
||||
'@nuxt/vite-builder@3.3.2(@types/node@18.19.61)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(vue@3.5.12(typescript@4.9.5))(webpack-sources@3.2.3)':
|
||||
'@nuxt/vite-builder@3.3.2(@types/node@18.19.62)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(vue@3.5.12(typescript@4.9.5))(webpack-sources@3.2.3)':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.3.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
|
||||
'@rollup/plugin-replace': 5.0.7(rollup@3.29.5)
|
||||
'@vitejs/plugin-vue': 4.6.2(vite@4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))
|
||||
'@vitejs/plugin-vue-jsx': 3.1.0(vite@4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))
|
||||
'@vitejs/plugin-vue': 4.6.2(vite@4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))
|
||||
'@vitejs/plugin-vue-jsx': 3.1.0(vite@4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))
|
||||
autoprefixer: 10.4.20(postcss@8.4.47)
|
||||
chokidar: 3.6.0
|
||||
clear: 0.1.0
|
||||
|
@ -8763,9 +8763,9 @@ snapshots:
|
|||
strip-literal: 1.3.0
|
||||
ufo: 1.5.4
|
||||
unplugin: 1.15.0(webpack-sources@3.2.3)
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-node: 0.29.8(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-plugin-checker: 0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@4.9.5)(vite@4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0))
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-node: 0.29.8(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-plugin-checker: 0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@4.9.5)(vite@4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0))
|
||||
vue: 3.5.12(typescript@4.9.5)
|
||||
vue-bundle-renderer: 1.0.3
|
||||
transitivePeerDependencies:
|
||||
|
@ -8788,12 +8788,12 @@ snapshots:
|
|||
- vue-tsc
|
||||
- webpack-sources
|
||||
|
||||
'@nuxt/vite-builder@3.3.2(@types/node@18.19.61)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))':
|
||||
'@nuxt/vite-builder@3.3.2(@types/node@18.19.62)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))':
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.3.2(magicast@0.3.5)(rollup@3.29.5)
|
||||
'@rollup/plugin-replace': 5.0.7(rollup@3.29.5)
|
||||
'@vitejs/plugin-vue': 4.6.2(vite@4.2.3(@types/node@18.19.61)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
|
||||
'@vitejs/plugin-vue-jsx': 3.1.0(vite@4.2.3(@types/node@18.19.61)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
|
||||
'@vitejs/plugin-vue': 4.6.2(vite@4.2.3(@types/node@18.19.62)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
|
||||
'@vitejs/plugin-vue-jsx': 3.1.0(vite@4.2.3(@types/node@18.19.62)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
|
||||
autoprefixer: 10.4.20(postcss@8.4.47)
|
||||
chokidar: 3.6.0
|
||||
clear: 0.1.0
|
||||
|
@ -8822,9 +8822,9 @@ snapshots:
|
|||
strip-literal: 1.3.0
|
||||
ufo: 1.5.4
|
||||
unplugin: 1.15.0(webpack-sources@3.2.3)
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-node: 0.29.8(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-plugin-checker: 0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@4.2.3(@types/node@18.19.61)(terser@5.36.0))
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-node: 0.29.8(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-plugin-checker: 0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@4.2.3(@types/node@18.19.62)(terser@5.36.0))
|
||||
vue: 3.5.12(typescript@5.6.3)
|
||||
vue-bundle-renderer: 1.0.3
|
||||
transitivePeerDependencies:
|
||||
|
@ -9206,11 +9206,11 @@ snapshots:
|
|||
|
||||
'@types/http-proxy@1.17.15':
|
||||
dependencies:
|
||||
'@types/node': 18.19.61
|
||||
'@types/node': 18.19.62
|
||||
|
||||
'@types/json-schema@7.0.15': {}
|
||||
|
||||
'@types/node@18.19.61':
|
||||
'@types/node@18.19.62':
|
||||
dependencies:
|
||||
undici-types: 5.26.5
|
||||
|
||||
|
@ -9232,7 +9232,7 @@ snapshots:
|
|||
ignore: 5.3.2
|
||||
natural-compare: 1.4.0
|
||||
semver: 7.6.3
|
||||
ts-api-utils: 1.3.0(typescript@5.6.3)
|
||||
ts-api-utils: 1.4.0(typescript@5.6.3)
|
||||
optionalDependencies:
|
||||
typescript: 5.6.3
|
||||
transitivePeerDependencies:
|
||||
|
@ -9262,7 +9262,7 @@ snapshots:
|
|||
'@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.3)
|
||||
debug: 4.3.7
|
||||
eslint: 8.57.1
|
||||
ts-api-utils: 1.3.0(typescript@5.6.3)
|
||||
ts-api-utils: 1.4.0(typescript@5.6.3)
|
||||
optionalDependencies:
|
||||
typescript: 5.6.3
|
||||
transitivePeerDependencies:
|
||||
|
@ -9279,7 +9279,7 @@ snapshots:
|
|||
is-glob: 4.0.3
|
||||
minimatch: 9.0.3
|
||||
semver: 7.6.3
|
||||
ts-api-utils: 1.3.0(typescript@5.6.3)
|
||||
ts-api-utils: 1.4.0(typescript@5.6.3)
|
||||
optionalDependencies:
|
||||
typescript: 5.6.3
|
||||
transitivePeerDependencies:
|
||||
|
@ -9378,34 +9378,34 @@ snapshots:
|
|||
- encoding
|
||||
- supports-color
|
||||
|
||||
'@vitejs/plugin-vue-jsx@3.1.0(vite@4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))':
|
||||
'@vitejs/plugin-vue-jsx@3.1.0(vite@4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))':
|
||||
dependencies:
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
|
||||
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vue: 3.5.12(typescript@4.9.5)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@vitejs/plugin-vue-jsx@3.1.0(vite@4.2.3(@types/node@18.19.61)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
|
||||
'@vitejs/plugin-vue-jsx@3.1.0(vite@4.2.3(@types/node@18.19.62)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
|
||||
dependencies:
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
|
||||
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vue: 3.5.12(typescript@5.6.3)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@vitejs/plugin-vue@4.6.2(vite@4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))':
|
||||
'@vitejs/plugin-vue@4.6.2(vite@4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0))(vue@3.5.12(typescript@4.9.5))':
|
||||
dependencies:
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vue: 3.5.12(typescript@4.9.5)
|
||||
|
||||
'@vitejs/plugin-vue@4.6.2(vite@4.2.3(@types/node@18.19.61)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
|
||||
'@vitejs/plugin-vue@4.6.2(vite@4.2.3(@types/node@18.19.62)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
|
||||
dependencies:
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vue: 3.5.12(typescript@5.6.3)
|
||||
|
||||
'@vitest/expect@0.29.8':
|
||||
|
@ -9481,18 +9481,18 @@ snapshots:
|
|||
|
||||
'@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.0)':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.26.0
|
||||
'@babel/code-frame': 7.26.2
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-module-imports': 7.25.9
|
||||
'@babel/helper-plugin-utils': 7.25.9
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/parser': 7.26.2
|
||||
'@vue/compiler-sfc': 3.5.12
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@vue/compiler-core@3.5.12':
|
||||
dependencies:
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/parser': 7.26.2
|
||||
'@vue/shared': 3.5.12
|
||||
entities: 4.5.0
|
||||
estree-walker: 2.0.2
|
||||
|
@ -9505,7 +9505,7 @@ snapshots:
|
|||
|
||||
'@vue/compiler-sfc@3.5.12':
|
||||
dependencies:
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/parser': 7.26.2
|
||||
'@vue/compiler-core': 3.5.12
|
||||
'@vue/compiler-dom': 3.5.12
|
||||
'@vue/compiler-ssr': 3.5.12
|
||||
|
@ -9555,7 +9555,7 @@ snapshots:
|
|||
'@vue/test-utils@2.4.6':
|
||||
dependencies:
|
||||
js-beautify: 1.15.1
|
||||
vue-component-type-helpers: 2.1.8
|
||||
vue-component-type-helpers: 2.1.10
|
||||
|
||||
'@webassemblyjs/ast@1.12.1':
|
||||
dependencies:
|
||||
|
@ -9821,7 +9821,7 @@ snapshots:
|
|||
autoprefixer@10.4.20(postcss@8.4.47):
|
||||
dependencies:
|
||||
browserslist: 4.24.2
|
||||
caniuse-lite: 1.0.30001675
|
||||
caniuse-lite: 1.0.30001676
|
||||
fraction.js: 4.3.7
|
||||
normalize-range: 0.1.2
|
||||
picocolors: 1.1.1
|
||||
|
@ -9840,7 +9840,7 @@ snapshots:
|
|||
|
||||
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.26.0
|
||||
'@babel/compat-data': 7.26.2
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
|
||||
semver: 6.3.1
|
||||
|
@ -9851,7 +9851,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
|
||||
core-js-compat: 3.38.1
|
||||
core-js-compat: 3.39.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
|
@ -9910,7 +9910,7 @@ snapshots:
|
|||
|
||||
browserslist@4.24.2:
|
||||
dependencies:
|
||||
caniuse-lite: 1.0.30001675
|
||||
caniuse-lite: 1.0.30001676
|
||||
electron-to-chromium: 1.5.49
|
||||
node-releases: 2.0.18
|
||||
update-browserslist-db: 1.1.1(browserslist@4.24.2)
|
||||
|
@ -10010,11 +10010,11 @@ snapshots:
|
|||
caniuse-api@3.0.0:
|
||||
dependencies:
|
||||
browserslist: 4.24.2
|
||||
caniuse-lite: 1.0.30001675
|
||||
caniuse-lite: 1.0.30001676
|
||||
lodash.memoize: 4.1.2
|
||||
lodash.uniq: 4.5.0
|
||||
|
||||
caniuse-lite@1.0.30001675: {}
|
||||
caniuse-lite@1.0.30001676: {}
|
||||
|
||||
chai@4.5.0:
|
||||
dependencies:
|
||||
|
@ -10187,7 +10187,7 @@ snapshots:
|
|||
|
||||
cookie-es@1.2.2: {}
|
||||
|
||||
core-js-compat@3.38.1:
|
||||
core-js-compat@3.39.0:
|
||||
dependencies:
|
||||
browserslist: 4.24.2
|
||||
|
||||
|
@ -11460,7 +11460,7 @@ snapshots:
|
|||
|
||||
jest-worker@27.5.1:
|
||||
dependencies:
|
||||
'@types/node': 18.19.61
|
||||
'@types/node': 18.19.62
|
||||
merge-stream: 2.0.0
|
||||
supports-color: 8.1.1
|
||||
|
||||
|
@ -11713,7 +11713,7 @@ snapshots:
|
|||
|
||||
magicast@0.3.5:
|
||||
dependencies:
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/types': 7.26.0
|
||||
source-map-js: 1.2.1
|
||||
|
||||
|
@ -12275,14 +12275,14 @@ snapshots:
|
|||
- supports-color
|
||||
- webpack-sources
|
||||
|
||||
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):
|
||||
nuxt@3.3.2(@types/node@18.19.62)(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):
|
||||
dependencies:
|
||||
'@nuxt/devalue': 2.0.2
|
||||
'@nuxt/kit': 3.3.2(magicast@0.3.5)(rollup@4.24.3)
|
||||
'@nuxt/schema': 3.3.2(magicast@0.3.5)(rollup@4.24.3)
|
||||
'@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.3)
|
||||
'@nuxt/ui-templates': 1.3.4
|
||||
'@nuxt/vite-builder': 3.3.2(@types/node@18.19.61)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))
|
||||
'@nuxt/vite-builder': 3.3.2(@types/node@18.19.62)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))
|
||||
'@unhead/ssr': 1.11.10
|
||||
'@unhead/vue': 1.11.10(vue@3.5.12(typescript@5.6.3))
|
||||
'@vue/reactivity': 3.5.12
|
||||
|
@ -12357,14 +12357,14 @@ snapshots:
|
|||
- vue-tsc
|
||||
- webpack-sources
|
||||
|
||||
nuxt@3.3.2(@types/node@18.19.61)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(webpack-sources@3.2.3):
|
||||
nuxt@3.3.2(@types/node@18.19.62)(eslint@8.57.1)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(webpack-sources@3.2.3):
|
||||
dependencies:
|
||||
'@nuxt/devalue': 2.0.2
|
||||
'@nuxt/kit': 3.3.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
|
||||
'@nuxt/schema': 3.3.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
|
||||
'@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
|
||||
'@nuxt/ui-templates': 1.3.4
|
||||
'@nuxt/vite-builder': 3.3.2(@types/node@18.19.61)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(vue@3.5.12(typescript@4.9.5))(webpack-sources@3.2.3)
|
||||
'@nuxt/vite-builder': 3.3.2(@types/node@18.19.62)(eslint@8.57.1)(magicast@0.3.5)(optionator@0.9.4)(sass@1.45.0)(terser@5.36.0)(typescript@4.9.5)(vue@3.5.12(typescript@4.9.5))(webpack-sources@3.2.3)
|
||||
'@unhead/ssr': 1.11.10
|
||||
'@unhead/vue': 1.11.10(vue@3.5.12(typescript@4.9.5))
|
||||
'@vue/reactivity': 3.5.12
|
||||
|
@ -13264,7 +13264,7 @@ snapshots:
|
|||
rollup: 3.29.5
|
||||
typescript: 5.6.3
|
||||
optionalDependencies:
|
||||
'@babel/code-frame': 7.26.0
|
||||
'@babel/code-frame': 7.26.2
|
||||
|
||||
rollup-plugin-postcss@4.0.2(postcss@8.4.47):
|
||||
dependencies:
|
||||
|
@ -13840,7 +13840,7 @@ snapshots:
|
|||
|
||||
tree-kill@1.2.2: {}
|
||||
|
||||
ts-api-utils@1.3.0(typescript@5.6.3):
|
||||
ts-api-utils@1.4.0(typescript@5.6.3):
|
||||
dependencies:
|
||||
typescript: 5.6.3
|
||||
|
||||
|
@ -14045,7 +14045,7 @@ snapshots:
|
|||
|
||||
universalify@2.0.1: {}
|
||||
|
||||
unplugin-vue-components@0.27.0(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3)):
|
||||
unplugin-vue-components@0.27.0(@babel/parser@7.26.2)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3)):
|
||||
dependencies:
|
||||
'@antfu/utils': 0.7.10
|
||||
'@rollup/pluginutils': 5.1.3(rollup@4.24.3)
|
||||
|
@ -14059,7 +14059,7 @@ snapshots:
|
|||
unplugin: 1.15.0(webpack-sources@3.2.3)
|
||||
vue: 3.5.12(typescript@5.6.3)
|
||||
optionalDependencies:
|
||||
'@babel/parser': 7.26.1
|
||||
'@babel/parser': 7.26.2
|
||||
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.3)
|
||||
transitivePeerDependencies:
|
||||
- rollup
|
||||
|
@ -14101,7 +14101,7 @@ snapshots:
|
|||
untyped@1.5.1:
|
||||
dependencies:
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/standalone': 7.26.1
|
||||
'@babel/standalone': 7.26.2
|
||||
'@babel/types': 7.26.0
|
||||
defu: 6.1.4
|
||||
jiti: 2.3.3
|
||||
|
@ -14153,14 +14153,14 @@ snapshots:
|
|||
|
||||
validate-npm-package-name@5.0.1: {}
|
||||
|
||||
vite-node@0.29.8(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0):
|
||||
vite-node@0.29.8(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0):
|
||||
dependencies:
|
||||
cac: 6.7.14
|
||||
debug: 4.3.7
|
||||
mlly: 1.7.2
|
||||
pathe: 1.1.2
|
||||
picocolors: 1.1.1
|
||||
vite: 4.5.5(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.5.5(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- less
|
||||
|
@ -14171,13 +14171,13 @@ snapshots:
|
|||
- supports-color
|
||||
- terser
|
||||
|
||||
vite-node@1.6.0(@types/node@18.19.61)(terser@5.36.0):
|
||||
vite-node@1.6.0(@types/node@18.19.62)(terser@5.36.0):
|
||||
dependencies:
|
||||
cac: 6.7.14
|
||||
debug: 4.3.7
|
||||
pathe: 1.1.2
|
||||
picocolors: 1.1.1
|
||||
vite: 5.4.10(@types/node@18.19.61)(terser@5.36.0)
|
||||
vite: 5.4.10(@types/node@18.19.62)(terser@5.36.0)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- less
|
||||
|
@ -14189,9 +14189,9 @@ snapshots:
|
|||
- supports-color
|
||||
- terser
|
||||
|
||||
vite-plugin-checker@0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@4.9.5)(vite@4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)):
|
||||
vite-plugin-checker@0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@4.9.5)(vite@4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)):
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.26.0
|
||||
'@babel/code-frame': 7.26.2
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
chokidar: 3.6.0
|
||||
|
@ -14203,7 +14203,7 @@ snapshots:
|
|||
npm-run-path: 4.0.1
|
||||
strip-ansi: 6.0.1
|
||||
tiny-invariant: 1.3.3
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vscode-languageclient: 7.0.0
|
||||
vscode-languageserver: 7.0.0
|
||||
vscode-languageserver-textdocument: 1.0.12
|
||||
|
@ -14213,9 +14213,9 @@ snapshots:
|
|||
optionator: 0.9.4
|
||||
typescript: 4.9.5
|
||||
|
||||
vite-plugin-checker@0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@4.2.3(@types/node@18.19.61)(terser@5.36.0)):
|
||||
vite-plugin-checker@0.5.6(eslint@8.57.1)(optionator@0.9.4)(typescript@5.6.3)(vite@4.2.3(@types/node@18.19.62)(terser@5.36.0)):
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.26.0
|
||||
'@babel/code-frame': 7.26.2
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
chokidar: 3.6.0
|
||||
|
@ -14227,7 +14227,7 @@ snapshots:
|
|||
npm-run-path: 4.0.1
|
||||
strip-ansi: 6.0.1
|
||||
tiny-invariant: 1.3.3
|
||||
vite: 4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vscode-languageclient: 7.0.0
|
||||
vscode-languageserver: 7.0.0
|
||||
vscode-languageserver-textdocument: 1.0.12
|
||||
|
@ -14267,42 +14267,42 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
vite@4.2.3(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0):
|
||||
vite@4.2.3(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0):
|
||||
dependencies:
|
||||
esbuild: 0.17.19
|
||||
postcss: 8.4.47
|
||||
resolve: 1.22.8
|
||||
rollup: 3.29.5
|
||||
optionalDependencies:
|
||||
'@types/node': 18.19.61
|
||||
'@types/node': 18.19.62
|
||||
fsevents: 2.3.3
|
||||
sass: 1.45.0
|
||||
terser: 5.36.0
|
||||
|
||||
vite@4.5.5(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0):
|
||||
vite@4.5.5(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0):
|
||||
dependencies:
|
||||
esbuild: 0.18.20
|
||||
postcss: 8.4.47
|
||||
rollup: 3.29.5
|
||||
optionalDependencies:
|
||||
'@types/node': 18.19.61
|
||||
'@types/node': 18.19.62
|
||||
fsevents: 2.3.3
|
||||
sass: 1.45.0
|
||||
terser: 5.36.0
|
||||
|
||||
vite@5.4.10(@types/node@18.19.61)(terser@5.36.0):
|
||||
vite@5.4.10(@types/node@18.19.62)(terser@5.36.0):
|
||||
dependencies:
|
||||
esbuild: 0.21.5
|
||||
postcss: 8.4.47
|
||||
rollup: 4.24.3
|
||||
optionalDependencies:
|
||||
'@types/node': 18.19.61
|
||||
'@types/node': 18.19.62
|
||||
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)(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.62)(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)(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.62)(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'
|
||||
|
@ -14328,7 +14328,7 @@ snapshots:
|
|||
dependencies:
|
||||
'@types/chai': 4.3.20
|
||||
'@types/chai-subset': 1.3.5
|
||||
'@types/node': 18.19.61
|
||||
'@types/node': 18.19.62
|
||||
'@vitest/expect': 0.29.8
|
||||
'@vitest/runner': 0.29.8
|
||||
'@vitest/spy': 0.29.8
|
||||
|
@ -14347,8 +14347,8 @@ snapshots:
|
|||
tinybench: 2.9.0
|
||||
tinypool: 0.4.0
|
||||
tinyspy: 1.1.1
|
||||
vite: 4.5.5(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-node: 0.29.8(@types/node@18.19.61)(sass@1.45.0)(terser@5.36.0)
|
||||
vite: 4.5.5(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
vite-node: 0.29.8(@types/node@18.19.62)(sass@1.45.0)(terser@5.36.0)
|
||||
why-is-node-running: 2.3.0
|
||||
optionalDependencies:
|
||||
jsdom: 19.0.0
|
||||
|
@ -14361,7 +14361,7 @@ snapshots:
|
|||
- supports-color
|
||||
- terser
|
||||
|
||||
vitest@1.6.0(@types/node@18.19.61)(terser@5.36.0):
|
||||
vitest@1.6.0(@types/node@18.19.62)(terser@5.36.0):
|
||||
dependencies:
|
||||
'@vitest/expect': 1.6.0
|
||||
'@vitest/runner': 1.6.0
|
||||
|
@ -14380,11 +14380,11 @@ snapshots:
|
|||
strip-literal: 2.1.0
|
||||
tinybench: 2.9.0
|
||||
tinypool: 0.8.4
|
||||
vite: 5.4.10(@types/node@18.19.61)(terser@5.36.0)
|
||||
vite-node: 1.6.0(@types/node@18.19.61)(terser@5.36.0)
|
||||
vite: 5.4.10(@types/node@18.19.62)(terser@5.36.0)
|
||||
vite-node: 1.6.0(@types/node@18.19.62)(terser@5.36.0)
|
||||
why-is-node-running: 2.3.0
|
||||
optionalDependencies:
|
||||
'@types/node': 18.19.61
|
||||
'@types/node': 18.19.62
|
||||
transitivePeerDependencies:
|
||||
- less
|
||||
- lightningcss
|
||||
|
@ -14426,7 +14426,7 @@ snapshots:
|
|||
dependencies:
|
||||
ufo: 1.5.4
|
||||
|
||||
vue-component-type-helpers@2.1.8: {}
|
||||
vue-component-type-helpers@2.1.10: {}
|
||||
|
||||
vue-devtools-stub@0.1.0: {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue