diff --git a/apps/web-antd/package.json b/apps/web-antd/package.json index 847d65725bc68709182d686b89beee76d534b1c9..3f20b0f03053f6b500d3263b5bf8a90605e3cf47 100644 --- a/apps/web-antd/package.json +++ b/apps/web-antd/package.json @@ -44,6 +44,7 @@ "@vben/types": "workspace:*", "@vben/utils": "workspace:*", "@videojs-player/vue": "catalog:", + "@vueuse/components": "catalog:", "@vueuse/core": "catalog:", "@vueuse/integrations": "catalog:", "ant-design-vue": "catalog:", diff --git a/apps/web-antd/src/api/mp/account/index.ts b/apps/web-antd/src/api/mp/account/index.ts index c5ee331b05eda4716683a5117e8257adcef78c33..ec156eca2acb0f6486958dc11bc6fac29f324b19 100644 --- a/apps/web-antd/src/api/mp/account/index.ts +++ b/apps/web-antd/src/api/mp/account/index.ts @@ -5,12 +5,12 @@ import { requestClient } from '#/api/request'; export namespace MpAccountApi { /** 公众号账号信息 */ export interface Account { - id?: number; + id: number; name: string; - account: string; - appId: string; - appSecret: string; - token: string; + account?: string; + appId?: string; + appSecret?: string; + token?: string; aesKey?: string; qrCodeUrl?: string; remark?: string; diff --git a/apps/web-antd/src/locales/langs/en-US/page.json b/apps/web-antd/src/locales/langs/en-US/page.json index 00a8c90b29e3a55c008e002825d23ddbc209c92b..409137ee3d757c19565cef96b717f5f5bd1ffae8 100644 --- a/apps/web-antd/src/locales/langs/en-US/page.json +++ b/apps/web-antd/src/locales/langs/en-US/page.json @@ -29,5 +29,11 @@ "tenant": { "placeholder": "Please select tenant", "success": "Switch tenant success" + }, + "mp": { + "upload": { + "invalidFormat": "Invalid {0} format!", + "maxSize": "{0} size cannot exceed {1}M!" + } } } diff --git a/apps/web-antd/src/locales/langs/zh-CN/page.json b/apps/web-antd/src/locales/langs/zh-CN/page.json index eefc4924b8cc5d7d9832b93d2414176db8b16e4b..f56160a6a75c5f690f1a60521bc6dad810719931 100644 --- a/apps/web-antd/src/locales/langs/zh-CN/page.json +++ b/apps/web-antd/src/locales/langs/zh-CN/page.json @@ -29,5 +29,11 @@ "tenant": { "placeholder": "请选择租户", "success": "切换租户成功" + }, + "mp": { + "upload": { + "invalidFormat": "上传{0}格式不对!", + "maxSize": "上传{0}大小不能超过{1}M!" + } } } diff --git a/apps/web-antd/src/views/mp/components/wx-account-select/index.ts b/apps/web-antd/src/views/mp/components/wx-account-select/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..038205bef9ae5025475c5249c9f91e679d68144b --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-account-select/index.ts @@ -0,0 +1 @@ +export { default as WxAccountSelect } from './main.vue'; diff --git a/apps/web-antd/src/views/mp/components/wx-account-select/main.vue b/apps/web-antd/src/views/mp/components/wx-account-select/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..3ee327338a75cf2b3b501371aa78d38016c73045 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-account-select/main.vue @@ -0,0 +1,73 @@ + + + + + + {{ item.name }} + + + diff --git a/apps/web-antd/src/views/mp/components/wx-location/index.ts b/apps/web-antd/src/views/mp/components/wx-location/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..72b3f8e73ba7404504ace9913bc1f30714175891 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-location/index.ts @@ -0,0 +1 @@ +export { default as WxLocation } from './main.vue'; diff --git a/apps/web-antd/src/views/mp/components/wx-location/main.vue b/apps/web-antd/src/views/mp/components/wx-location/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..eac33c1648a3d8a18f059b65172e9e89857e2687 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-location/main.vue @@ -0,0 +1,53 @@ + + + + + + + + + + + + + {{ label }} + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-material-select/index.ts b/apps/web-antd/src/views/mp/components/wx-material-select/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..34643ee2cb190a59b4e33a58d1609c8085acab96 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-material-select/index.ts @@ -0,0 +1,3 @@ +export { default as WxMaterialSelect } from './main.vue'; + +export { MaterialType, NewsType } from './types'; diff --git a/apps/web-antd/src/views/mp/components/wx-material-select/main.vue b/apps/web-antd/src/views/mp/components/wx-material-select/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..0f81fd24b3f3a64d859103f62077ca09d5f56f11 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-material-select/main.vue @@ -0,0 +1,446 @@ + + + + + + + + + + + {{ item.name }} + + + 选择 + + + + + + + + + + + + + + + + + + + + 选择 + + + + + + + + + + + + + + + + + 选择 + + + + + + + + + + + + + + + + + + 选择 + + + + + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-material-select/types.ts b/apps/web-antd/src/views/mp/components/wx-material-select/types.ts new file mode 100644 index 0000000000000000000000000000000000000000..3d44c5db7528d39278e85701f3b10ce1d6427518 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-material-select/types.ts @@ -0,0 +1,11 @@ +export enum NewsType { + Draft = '2', + Published = '1', +} + +export enum MaterialType { + Image = 'image', + News = 'news', + Video = 'video', + Voice = 'voice', +} diff --git a/apps/web-antd/src/views/mp/components/wx-msg/card.scss b/apps/web-antd/src/views/mp/components/wx-msg/card.scss new file mode 100644 index 0000000000000000000000000000000000000000..58fde79fd91341e0c38a49ad9608943e22ea6e60 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/card.scss @@ -0,0 +1,116 @@ +.avue-card { + &__item { + box-sizing: border-box; + height: 200px; + margin-bottom: 16px; + font-size: 14px; + font-feature-settings: 'tnum'; + font-variant: tabular-nums; + line-height: 1.5; + color: rgb(0 0 0 / 65%); + cursor: pointer; + list-style: none; + background-color: #fff; + border: 1px solid #e8e8e8; + + &:hover { + border-color: rgb(0 0 0 / 9%); + box-shadow: 0 2px 8px rgb(0 0 0 / 9%); + } + + &--add { + display: flex; + align-items: center; + justify-content: center; + width: 100%; + font-size: 16px; + color: rgb(0 0 0 / 45%); + background-color: #fff; + border: 1px dashed #000; + border-color: #d9d9d9; + border-radius: 2px; + + i { + margin-right: 10px; + } + + &:hover { + color: #40a9ff; + background-color: #fff; + border-color: #40a9ff; + } + } + } + + &__body { + display: flex; + padding: 24px; + } + + &__detail { + flex: 1; + } + + &__avatar { + width: 48px; + height: 48px; + margin-right: 12px; + overflow: hidden; + border-radius: 48px; + + img { + width: 100%; + height: 100%; + } + } + + &__title { + margin-bottom: 12px; + font-size: 16px; + color: rgb(0 0 0 / 85%); + + &:hover { + color: #1890ff; + } + } + + &__info { + display: -webkit-box; + height: 64px; + overflow: hidden; + -webkit-line-clamp: 3; + color: rgb(0 0 0 / 45%); + -webkit-box-orient: vertical; + } + + &__menu { + display: flex; + justify-content: space-around; + height: 50px; + line-height: 50px; + color: rgb(0 0 0 / 45%); + text-align: center; + background: #f7f9fa; + + &:hover { + color: #1890ff; + } + } +} + +/** joolun 额外加的 */ +.avue-comment__main { + flex: unset !important; + margin: 0 8px !important; + border-radius: 5px !important; +} + +.avue-comment__header { + border-top-left-radius: 5px; + border-top-right-radius: 5px; +} + +.avue-comment__body { + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; +} diff --git a/apps/web-antd/src/views/mp/components/wx-msg/comment.scss b/apps/web-antd/src/views/mp/components/wx-msg/comment.scss new file mode 100644 index 0000000000000000000000000000000000000000..219e2e5d4529ad095dece9555f32476f2eb8e95e --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/comment.scss @@ -0,0 +1,109 @@ +/* 来自 https://github.com/nmxiaowei/avue/blob/master/styles/src/element-ui/comment.scss */ +.avue-comment { + display: flex; + align-items: flex-start; + margin-bottom: 30px; + + &--reverse { + flex-direction: row-reverse; + + .avue-comment__main { + &::before, + &::after { + right: -8px; + left: auto; + border-width: 8px 0 8px 8px; + } + + &::before { + border-left-color: #dedede; + } + + &::after { + margin-right: 1px; + margin-left: auto; + border-left-color: #f8f8f8; + } + } + } + + &__avatar { + box-sizing: border-box; + width: 48px; + height: 48px; + vertical-align: middle; + border: 1px solid transparent; + border-radius: 50%; + } + + &__header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 5px 15px; + background: #f8f8f8; + border-bottom: 1px solid #eee; + } + + &__author { + font-size: 14px; + font-weight: 700; + color: #999; + } + + &__main { + position: relative; + flex: 1; + margin: 0 20px; + border: 1px solid #dedede; + border-radius: 2px; + + &::before, + &::after { + position: absolute; + top: 10px; + right: 100%; + left: -8px; + display: block; + width: 0; + height: 0; + pointer-events: none; + content: ' '; + border-color: transparent; + border-style: solid solid outset; + border-width: 8px 8px 8px 0; + } + + &::before { + z-index: 1; + border-right-color: #dedede; + } + + &::after { + z-index: 2; + margin-left: 1px; + border-right-color: #f8f8f8; + } + } + + &__body { + padding: 15px; + overflow: hidden; + font-family: + 'Segoe UI', 'Lucida Grande', Helvetica, Arial, 'Microsoft YaHei', + FreeSans, Arimo, 'Droid Sans', 'wenquanyi micro hei', 'Hiragino Sans GB', + 'Hiragino Sans GB W3', FontAwesome, sans-serif; + font-size: 14px; + color: #333; + background: #fff; + } + + blockquote { + padding: 1px 0 1px 15px; + margin: 0; + font-family: + Georgia, 'Times New Roman', Times, Kai, 'Kaiti SC', KaiTi, BiauKai, + FontAwesome, serif; + border-left: 4px solid #ddd; + } +} diff --git a/apps/web-antd/src/views/mp/components/wx-msg/components/Msg.vue b/apps/web-antd/src/views/mp/components/wx-msg/components/Msg.vue new file mode 100644 index 0000000000000000000000000000000000000000..bcb1805b22651e0df0047552f0488154ffda783f --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/components/Msg.vue @@ -0,0 +1,75 @@ + + + + + + + {{ item.content }} + + + + + + + + + + + + + + + + + + + + {{ item.title }} + + + {{ item.description }} + + + + + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-msg/components/MsgEvent.vue b/apps/web-antd/src/views/mp/components/wx-msg/components/MsgEvent.vue new file mode 100644 index 0000000000000000000000000000000000000000..24b039ebf920ad58742c723f9e00d573c199c59a --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/components/MsgEvent.vue @@ -0,0 +1,51 @@ + + + + + + 关注 + + + 取消关注 + + + 点击菜单 + 【{{ item.eventKey }}】 + + + 点击菜单链接 + 【{{ item.eventKey }}】 + + + 扫码结果 + 【{{ item.eventKey }}】 + + + 扫码结果 + 【{{ item.eventKey }}】 + + + 系统拍照发图 + + + 拍照或者相册 + + + 微信相册 + + + 选择地理位置 + + + 未知事件类型 + + + diff --git a/apps/web-antd/src/views/mp/components/wx-msg/components/MsgList.vue b/apps/web-antd/src/views/mp/components/wx-msg/components/MsgList.vue new file mode 100644 index 0000000000000000000000000000000000000000..0595a67d584a11d2403252f777d4bda05b7cdf45 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/components/MsgList.vue @@ -0,0 +1,71 @@ + + + + + + + + {{ getNickname(item.sendFrom) }} + + + + + + {{ formatDateTime(item.createTime) }} + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-msg/index.ts b/apps/web-antd/src/views/mp/components/wx-msg/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..32b56c390221390dd96bfbc3f239b81a9820bb81 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/index.ts @@ -0,0 +1,3 @@ +export { default as WxMsg } from './main.vue'; + +export { MsgType } from './types'; diff --git a/apps/web-antd/src/views/mp/components/wx-msg/main.vue b/apps/web-antd/src/views/mp/components/wx-msg/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..277f85e36dc6c187af8e3c7215ccba356e6dc9f3 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/main.vue @@ -0,0 +1,180 @@ + + + + + + + + + + 点击加载更多 + + + 没有更多了 + + + + + + + + + + + + 发送(S) + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-msg/types.ts b/apps/web-antd/src/views/mp/components/wx-msg/types.ts new file mode 100644 index 0000000000000000000000000000000000000000..9742db434c146a8e3da2633ea2386cbb0f3ca61f --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-msg/types.ts @@ -0,0 +1,17 @@ +export enum MsgType { + Event = 'event', + Image = 'image', + Link = 'link', + Location = 'location', + Music = 'music', + News = 'news', + Text = 'text', + Video = 'video', + Voice = 'voice', +} + +export interface User { + accountId: number; + avatar: string; + nickname: string; +} diff --git a/apps/web-antd/src/views/mp/components/wx-music/index.ts b/apps/web-antd/src/views/mp/components/wx-music/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..83e35d2df097b38e6157ba7d721147549c4e2dbe --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-music/index.ts @@ -0,0 +1 @@ +export { default as WxMusic } from './main.vue'; diff --git a/apps/web-antd/src/views/mp/components/wx-music/main.vue b/apps/web-antd/src/views/mp/components/wx-music/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..3f3919d9fc2377b5db838f505b59ad8b35bf613a --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-music/main.vue @@ -0,0 +1,91 @@ + + + + + + + + + + + + {{ title }} + {{ description }} + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-news/index.ts b/apps/web-antd/src/views/mp/components/wx-news/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..8505ecc9bb8733facfeba69abeeb630afc6c4b93 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-news/index.ts @@ -0,0 +1 @@ +export { default as WxNews } from './main.vue'; diff --git a/apps/web-antd/src/views/mp/components/wx-news/main.vue b/apps/web-antd/src/views/mp/components/wx-news/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..04688a1e8c00f0efba2ab54736f8b18cd071ca00 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-news/main.vue @@ -0,0 +1,115 @@ + + + + + + + + + + + + + {{ article.title }} + + + + + + + + + {{ article.title }} + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-reply/components/TabImage.vue b/apps/web-antd/src/views/mp/components/wx-reply/components/TabImage.vue new file mode 100644 index 0000000000000000000000000000000000000000..ccd9e9b27e6e1c2369b7ee94b83cebc09c95b7d4 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/components/TabImage.vue @@ -0,0 +1,219 @@ + + + + + + + + {{ reply.name }} + + + + + + + + + + + + + + + 素材库选择 + + + + + + + + + + + + + + 上传图片 + + + + + + + 支持 bmp/png/jpeg/jpg/gif 格式,大小不超过 2M + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-reply/components/TabMusic.vue b/apps/web-antd/src/views/mp/components/wx-reply/components/TabMusic.vue new file mode 100644 index 0000000000000000000000000000000000000000..ba296df420aae3a8ff53d3dac0507d5e04713846 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/components/TabMusic.vue @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + 本地上传 + + + 素材库选择 + + + + + + + + + + (reply.title = val || null)" + /> + (reply.description = val || null)" + /> + + + + + (reply.musicUrl = val || null)" + /> + (reply.hqMusicUrl = val || null)" + /> + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-reply/components/TabNews.vue b/apps/web-antd/src/views/mp/components/wx-reply/components/TabNews.vue new file mode 100644 index 0000000000000000000000000000000000000000..fda0087ef7105580a6bcabf7116475984895f9d0 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/components/TabNews.vue @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + {{ + newsType === NewsType.Published + ? '选择已发布图文' + : '选择草稿箱图文' + }} + + + + + + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-reply/components/TabText.vue b/apps/web-antd/src/views/mp/components/wx-reply/components/TabText.vue new file mode 100644 index 0000000000000000000000000000000000000000..914d943a69ead0e037c73f2231e7b60872c126cc --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/components/TabText.vue @@ -0,0 +1,26 @@ + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-reply/components/TabVideo.vue b/apps/web-antd/src/views/mp/components/wx-reply/components/TabVideo.vue new file mode 100644 index 0000000000000000000000000000000000000000..e44bc414f4a3d8b770301be2d1c1bb8812f02995 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/components/TabVideo.vue @@ -0,0 +1,192 @@ + + + + + + + (reply.title = val || null)" + /> + + + (reply.description = val || null)" + /> + + + + + + + + + + + + 素材库选择 + + + + + + + + + + + + + + 新建视频 + + + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-reply/components/TabVoice.vue b/apps/web-antd/src/views/mp/components/wx-reply/components/TabVoice.vue new file mode 100644 index 0000000000000000000000000000000000000000..b83cc7cdb7fe6b886c075126b6625ad6125ec9bf --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/components/TabVoice.vue @@ -0,0 +1,216 @@ + + + + + + {{ reply.name }} + + + + + + + + + + + + + + + + + 素材库选择 + + + + + + + + + + + + + + 点击上传 + + + + + + + 格式支持 mp3/wma/wav/amr,文件大小不超过 2M,播放长度不超过 60s + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-reply/components/types.ts b/apps/web-antd/src/views/mp/components/wx-reply/components/types.ts new file mode 100644 index 0000000000000000000000000000000000000000..d6d590cf228eba6ee488422e57cf1edf1bb287d9 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/components/types.ts @@ -0,0 +1,54 @@ +import type { Ref } from 'vue'; + +import { unref } from 'vue'; + +export enum ReplyType { + Image = 'image', + Music = 'music', + News = 'news', + Text = 'text', + Video = 'video', + Voice = 'voice', +} + +export interface Reply { + accountId: number; + articles?: any[]; + content?: null | string; + description?: null | string; + hqMusicUrl?: null | string; + introduction?: null | string; + mediaId?: null | string; + musicUrl?: null | string; + name?: null | string; + thumbMediaId?: null | string; + thumbMediaUrl?: null | string; + title?: null | string; + type: ReplyType; + url?: null | string; +} + +export enum NewsType { + Draft = '2', + Published = '1', +} + +/** 利用旧的reply[accountId, type]初始化新的Reply */ +export const createEmptyReply = (old: Ref | Reply): Reply => { + return { + accountId: unref(old).accountId, + articles: [], + content: null, + description: null, + hqMusicUrl: null, + introduction: null, + mediaId: null, + musicUrl: null, + name: null, + thumbMediaId: null, + thumbMediaUrl: null, + title: null, + type: unref(old).type, + url: null, + }; +}; diff --git a/apps/web-antd/src/views/mp/components/wx-reply/index.ts b/apps/web-antd/src/views/mp/components/wx-reply/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..e21a5ea2bdad3323afed143b50457839f8dd57f7 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/index.ts @@ -0,0 +1,4 @@ +export type { NewsType, Reply, ReplyType } from './components/types'; +export { createEmptyReply } from './components/types'; + +export { default as WxReplySelect } from './main.vue'; diff --git a/apps/web-antd/src/views/mp/components/wx-reply/main.vue b/apps/web-antd/src/views/mp/components/wx-reply/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..218047742e61122ad7eb2490b76ecdc45e1b272b --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-reply/main.vue @@ -0,0 +1,234 @@ + + + + + + + + + + + 文本 + + + + + + + + + + + 图片 + + + + + + + + + + + 语音 + + + + + + + + + + + 视频 + + + + + + + + + + + 图文 + + + + + + + + + + + 音乐 + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-video-play/index.ts b/apps/web-antd/src/views/mp/components/wx-video-play/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..ac6122342e06db8cfd5aecdb03c6dfb55b2b78f0 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-video-play/index.ts @@ -0,0 +1 @@ +export { default as WxVideoPlayer } from './main.vue'; diff --git a/apps/web-antd/src/views/mp/components/wx-video-play/main.vue b/apps/web-antd/src/views/mp/components/wx-video-play/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..4313d238fe5367f287828c5c96afbe31bbb69f14 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-video-play/main.vue @@ -0,0 +1,55 @@ + + + + + + + + + 点击播放视频 + + + + + + + + diff --git a/apps/web-antd/src/views/mp/components/wx-voice-play/index.ts b/apps/web-antd/src/views/mp/components/wx-voice-play/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..0523376e6693c095ede48f6d1bdd5cf50c81351f --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-voice-play/index.ts @@ -0,0 +1 @@ +export { default as WxVoicePlayer } from './main.vue'; diff --git a/apps/web-antd/src/views/mp/components/wx-voice-play/main.vue b/apps/web-antd/src/views/mp/components/wx-voice-play/main.vue new file mode 100644 index 0000000000000000000000000000000000000000..98bf2486e21e13112059230c92c06ada878662d1 --- /dev/null +++ b/apps/web-antd/src/views/mp/components/wx-voice-play/main.vue @@ -0,0 +1,100 @@ + + + + + + + + + {{ duration }} 秒 + + + 语音识别 + {{ content }} + + + + + diff --git a/apps/web-antd/src/views/mp/hooks/useUpload.ts b/apps/web-antd/src/views/mp/hooks/useUpload.ts new file mode 100644 index 0000000000000000000000000000000000000000..1d7236d0b421fe69eafebb8f013717528676c4cf --- /dev/null +++ b/apps/web-antd/src/views/mp/hooks/useUpload.ts @@ -0,0 +1,74 @@ +import { message } from 'ant-design-vue'; + +import { $t } from '#/locales'; + +export enum UploadType { + Image = 'image', + Video = 'video', + Voice = 'voice', +} + +interface UploadTypeConfig { + allowTypes: string[]; + maxSizeMB: number; + name: string; +} + +export interface UploadRawFile { + name: string; + size: number; + type: string; +} + +const UPLOAD_CONFIGS: Record = { + [UploadType.Image]: { + allowTypes: [ + 'image/jpeg', + 'image/png', + 'image/gif', + 'image/bmp', + 'image/jpg', + ], + maxSizeMB: 2, + name: '图片', + }, + [UploadType.Video]: { + allowTypes: ['video/mp4'], + maxSizeMB: 10, + name: '视频', + }, + [UploadType.Voice]: { + allowTypes: [ + 'audio/mp3', + 'audio/mpeg', + 'audio/wma', + 'audio/wav', + 'audio/amr', + ], + maxSizeMB: 2, + name: '语音', + }, +}; + +export const useBeforeUpload = (type: UploadType, maxSizeMB?: number) => { + const fn = (rawFile: UploadRawFile): boolean => { + const config = UPLOAD_CONFIGS[type]; + const finalMaxSize = maxSizeMB ?? config.maxSizeMB; + + // 格式不正确 + if (!config.allowTypes.includes(rawFile.type)) { + message.error($t('mp.upload.invalidFormat', [config.name])); + return false; + } + + // 大小不正确 + if (rawFile.size / 1024 / 1024 > finalMaxSize) { + message.error($t('mp.upload.maxSize', [config.name, finalMaxSize])); + return false; + } + + return true; + }; + + return fn; +}; diff --git a/apps/web-antd/src/views/mp/material/components/ImageTable.vue b/apps/web-antd/src/views/mp/material/components/ImageTable.vue new file mode 100644 index 0000000000000000000000000000000000000000..90d44f9aa932513d555cd762472b00239d6239d6 --- /dev/null +++ b/apps/web-antd/src/views/mp/material/components/ImageTable.vue @@ -0,0 +1,85 @@ + + + + + + + + + {{ item.name }} + + + + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/material/components/UploadFile.vue b/apps/web-antd/src/views/mp/material/components/UploadFile.vue new file mode 100644 index 0000000000000000000000000000000000000000..23afcfd3f98b9179dbf6fc1ff3e6da8ff5fe0cf9 --- /dev/null +++ b/apps/web-antd/src/views/mp/material/components/UploadFile.vue @@ -0,0 +1,105 @@ + + + + + + + 点击上传 + + + + {{ file.name }} + 删除 + + + + + + + diff --git a/apps/web-antd/src/views/mp/material/components/UploadVideo.vue b/apps/web-antd/src/views/mp/material/components/UploadVideo.vue new file mode 100644 index 0000000000000000000000000000000000000000..b192b13e6b4a95af18612eea35f47f3c74f22b24 --- /dev/null +++ b/apps/web-antd/src/views/mp/material/components/UploadVideo.vue @@ -0,0 +1,164 @@ + + + + + + + + 选择视频 + + + + 格式支持 MP4,文件大小不超过 10MB + + + + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/material/components/VideoTable.vue b/apps/web-antd/src/views/mp/material/components/VideoTable.vue new file mode 100644 index 0000000000000000000000000000000000000000..8dce040c531996c25dc64f2b975974035b2daa96 --- /dev/null +++ b/apps/web-antd/src/views/mp/material/components/VideoTable.vue @@ -0,0 +1,141 @@ + + + + + + + + + {{ formatDate2(row.createTime) }} + + + + + 下载 + + + + 删除 + + + + diff --git a/apps/web-antd/src/views/mp/material/components/VoiceTable.vue b/apps/web-antd/src/views/mp/material/components/VoiceTable.vue new file mode 100644 index 0000000000000000000000000000000000000000..4e889fb7cff84a6e0ce6c1958bbaa3778e65d138 --- /dev/null +++ b/apps/web-antd/src/views/mp/material/components/VoiceTable.vue @@ -0,0 +1,129 @@ + + + + + + + + + {{ formatDate2(row.createTime) }} + + + + + 下载 + + + + 删除 + + + + diff --git a/apps/web-antd/src/views/mp/material/components/upload.ts b/apps/web-antd/src/views/mp/material/components/upload.ts new file mode 100644 index 0000000000000000000000000000000000000000..5e6efdfcae81782b2cf0006d7d3a35e95c3a2009 --- /dev/null +++ b/apps/web-antd/src/views/mp/material/components/upload.ts @@ -0,0 +1,46 @@ +import type { UploadProps } from 'ant-design-vue'; + +import type { UploadRawFile } from '#/views/mp/hooks/useUpload'; + +import { useAccessStore } from '@vben/stores'; + +import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload'; + +const accessStore = useAccessStore(); +const HEADERS = { Authorization: `Bearer ${accessStore.accessToken}` }; // 请求头 +const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-permanent`; // 上传地址 + +interface UploadData { + accountId: number; + introduction: string; + title: string; + type: UploadType; +} + +const beforeImageUpload: UploadProps['beforeUpload'] = function ( + rawFile: UploadRawFile, +) { + return useBeforeUpload(UploadType.Image, 2)(rawFile); +}; + +const beforeVoiceUpload: UploadProps['beforeUpload'] = function ( + rawFile: UploadRawFile, +) { + return useBeforeUpload(UploadType.Voice, 2)(rawFile); +}; + +const beforeVideoUpload: UploadProps['beforeUpload'] = function ( + rawFile: UploadRawFile, +) { + return useBeforeUpload(UploadType.Video, 10)(rawFile); +}; + +export { + beforeImageUpload, + beforeVideoUpload, + beforeVoiceUpload, + HEADERS, + UPLOAD_URL, + type UploadData, + UploadType, +}; diff --git a/apps/web-antd/src/views/mp/material/index.vue b/apps/web-antd/src/views/mp/material/index.vue index 2966b8983a2e17a0b0908527bf4d78d0b9fc2261..32a5c34a190b7243da21b8b9d71538001b370f29 100644 --- a/apps/web-antd/src/views/mp/material/index.vue +++ b/apps/web-antd/src/views/mp/material/index.vue @@ -1,29 +1,212 @@ - - - - 该功能支持 Vue3 + element-plus 版本! - - - - 可参考 - https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mp/material/index - 代码,pull request 贡献给我们! - + + + + + + + + + + + + + + + + + + 图片 + + + + 支持 bmp/png/jpeg/jpg/gif 格式,大小不超过 2M + + + + + + + + + + + + + + + 语音 + + + + 格式支持 mp3/wma/wav/amr,文件大小不超过 2M,播放长度不超过 60s + + + + + + + + + + + + + + + 视频 + + + + 新建视频 + + + + + + + + + + + + diff --git a/apps/web-antd/src/views/mp/message/MessageTable.vue b/apps/web-antd/src/views/mp/message/MessageTable.vue new file mode 100644 index 0000000000000000000000000000000000000000..d7bcbbe41175f5a084d808c3546b5ba148aa67fa --- /dev/null +++ b/apps/web-antd/src/views/mp/message/MessageTable.vue @@ -0,0 +1,241 @@ + + + + + + {{ formatDate2(row.createTime) }} + + + + 粉丝 + 公众号 + + + + + 关注 + + + 取消关注 + + + 点击菜单 + 【{{ row.eventKey }}】 + + + 点击菜单链接 + 【{{ row.eventKey }}】 + + + 扫码结果 + 【{{ row.eventKey }}】 + + + 扫码结果 + 【{{ row.eventKey }}】 + + + 系统拍照发图 + + + 拍照或者相册 + + + 微信相册 + + + 选择地理位置 + + + 未知事件类型 + + + {{ row.content }} + + + + + + + + + + + + + 链接 + : + {{ row.title }} + + + + + + + + + + + + 未知消息类型 + + + + + 消息 + + + diff --git a/apps/web-antd/src/views/mp/message/index.vue b/apps/web-antd/src/views/mp/message/index.vue index 9f10288204b81c58698c5227b89fe3c843f2f9c4..b1194b0fdcb934f5b0722c9caf500b9a305d3ee3 100644 --- a/apps/web-antd/src/views/mp/message/index.vue +++ b/apps/web-antd/src/views/mp/message/index.vue @@ -1,28 +1,201 @@ - - - 该功能支持 Vue3 + element-plus 版本! - - - + + + + + + + + + + {{ dict.label }} + + + + + + + + + + + + + + + 搜索 + + + + + + 重置 + + + + + + + + + + + + + + + - 可参考 - https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mp/message/index - 代码,pull request 贡献给我们! - + + + + diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 57d2e7fd7ca6f60481dbb79d74c125c5ca10886f..a92a95f324df5f97206197a554c65f1742255ba7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,13 +26,13 @@ catalogs: version: 19.8.1 '@eslint/js': specifier: ^9.30.1 - version: 9.39.1 + version: 9.38.0 '@faker-js/faker': specifier: ^9.9.0 version: 9.9.0 '@form-create/ant-design-vue': specifier: ^3.2.27 - version: 3.2.32 + version: 3.2.31 '@form-create/antd-designer': specifier: ^3.3.0 version: 3.3.2 @@ -41,10 +41,14 @@ catalogs: version: 3.3.1 '@form-create/element-ui': specifier: ^3.2.27 - version: 3.2.32 + version: 3.2.31 '@iconify/json': specifier: ^2.2.354 +<<<<<<< HEAD + version: 2.2.398 +======= version: 2.2.405 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@iconify/tailwind': specifier: ^1.2.0 version: 1.2.0 @@ -59,7 +63,7 @@ catalogs: version: 6.0.8 '@jspm/generator': specifier: ^2.6.2 - version: 2.7.6 + version: 2.7.4 '@manypkg/get-packages': specifier: ^3.0.0 version: 3.1.0 @@ -86,22 +90,22 @@ catalogs: version: 0.5.19 '@tanstack/vue-query': specifier: ^5.81.5 - version: 5.90.7 + version: 5.90.5 '@tanstack/vue-store': specifier: ^0.7.1 version: 0.7.7 '@tinyflow-ai/vue': specifier: ^1.1.1 - version: 1.1.9 + version: 1.1.7 '@tinymce/tinymce-vue': specifier: ^6.1.0 version: 6.3.0 '@types/archiver': specifier: ^6.0.3 - version: 6.0.4 + version: 6.0.3 '@types/codemirror': specifier: ^5.60.13 - version: 5.60.17 + version: 5.60.16 '@types/crypto-js': specifier: ^4.2.2 version: 4.2.2 @@ -143,19 +147,19 @@ catalogs: version: 14.0.3 '@types/qrcode': specifier: ^1.5.5 - version: 1.5.6 + version: 1.5.5 '@types/qs': specifier: ^6.14.0 version: 6.14.0 '@types/sortablejs': specifier: ^1.15.8 - version: 1.15.9 + version: 1.15.8 '@typescript-eslint/eslint-plugin': specifier: ^8.35.1 - version: 8.46.3 + version: 8.46.2 '@typescript-eslint/parser': specifier: ^8.35.1 - version: 8.46.3 + version: 8.46.2 '@vee-validate/zod': specifier: ^4.15.1 version: 4.15.1 @@ -173,10 +177,17 @@ catalogs: version: 5.1.1 '@vue/shared': specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22 +======= version: 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vue/test-utils': specifier: ^2.4.6 version: 2.4.6 + '@vueuse/components': + specifier: ^13.4.0 + version: 13.9.0 '@vueuse/core': specifier: ^13.4.0 version: 13.9.0 @@ -197,7 +208,7 @@ catalogs: version: 10.4.21 axios: specifier: ^1.10.0 - version: 1.13.2 + version: 1.12.2 axios-mock-adapter: specifier: ^2.1.0 version: 2.1.0 @@ -254,7 +265,7 @@ catalogs: version: 8.19.4 cssnano: specifier: ^7.0.7 - version: 7.1.2 + version: 7.1.1 cz-git: specifier: ^1.11.2 version: 1.12.0 @@ -263,7 +274,7 @@ catalogs: version: 1.12.0 dayjs: specifier: ^1.11.13 - version: 1.11.19 + version: 1.11.18 defu: specifier: ^6.1.4 version: 6.1.4 @@ -281,13 +292,13 @@ catalogs: version: 5.6.0 element-plus: specifier: ^2.10.2 - version: 2.11.7 + version: 2.11.5 eslint: specifier: ^9.30.1 - version: 9.39.1 + version: 9.38.0 eslint-config-turbo: specifier: ^2.5.4 - version: 2.6.0 + version: 2.5.8 eslint-plugin-command: specifier: ^3.3.1 version: 3.3.1 @@ -344,7 +355,7 @@ catalogs: version: 7.1.0 globals: specifier: ^16.3.0 - version: 16.5.0 + version: 16.4.0 h3: specifier: ^1.15.3 version: 1.15.4 @@ -413,7 +424,7 @@ catalogs: version: 2.43.1 nitropack: specifier: ^2.11.13 - version: 2.12.9 + version: 2.12.7 nprogress: specifier: ^0.2.0 version: 0.2.0 @@ -422,7 +433,7 @@ catalogs: version: 8.2.0 pinia-plugin-persistedstate: specifier: ^4.4.1 - version: 4.7.1 + version: 4.5.0 pkg-types: specifier: ^2.2.0 version: 2.3.0 @@ -470,7 +481,7 @@ catalogs: version: 2.0.3 rimraf: specifier: ^6.0.1 - version: 6.1.0 + version: 6.0.1 rollup: specifier: ^4.44.1 version: 4.53.1 @@ -479,7 +490,7 @@ catalogs: version: 5.14.0 sass: specifier: ^1.89.2 - version: 1.93.3 + version: 1.93.2 secure-ls: specifier: ^2.0.0 version: 2.0.0 @@ -536,7 +547,7 @@ catalogs: version: 6.3.7 turbo: specifier: ^2.5.4 - version: 2.6.0 + version: 2.5.8 typescript: specifier: ^5.8.3 version: 5.9.3 @@ -554,7 +565,11 @@ catalogs: version: 7.21.7 vite: specifier: ^7.1.2 +<<<<<<< HEAD + version: 7.1.11 +======= version: 7.2.2 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vite-plugin-compression: specifier: ^0.5.1 version: 0.5.1 @@ -578,7 +593,7 @@ catalogs: version: 1.6.4 vitepress-plugin-group-icons: specifier: ^1.6.1 - version: 1.6.5 + version: 1.6.4 vitest: specifier: ^3.2.4 version: 3.2.4 @@ -614,10 +629,17 @@ catalogs: version: 4.1.0 vxe-pc-ui: specifier: ^4.9.29 +<<<<<<< HEAD + version: 4.10.5 + vxe-table: + specifier: ^4.16.11 + version: 4.17.0 +======= version: 4.10.18 vxe-table: specifier: ^4.16.11 version: 4.17.12 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef watermark-js-plus: specifier: ^1.6.2 version: 1.6.3 @@ -681,10 +703,17 @@ importers: version: link:scripts/vsh '@vitejs/plugin-vue': specifier: 'catalog:' +<<<<<<< HEAD + version: 6.0.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)) + '@vitejs/plugin-vue-jsx': + specifier: 'catalog:' + version: 5.1.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)) +======= version: 6.0.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3)) '@vitejs/plugin-vue-jsx': specifier: 'catalog:' version: 5.1.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vue/test-utils': specifier: 'catalog:' version: 2.4.6 @@ -711,28 +740,39 @@ importers: version: 1.56.1 rimraf: specifier: 'catalog:' - version: 6.1.0 + version: 6.0.1 tailwindcss: specifier: 'catalog:' version: 3.4.18(yaml@2.8.1) turbo: specifier: 'catalog:' - version: 2.6.0 + version: 2.5.8 typescript: specifier: 'catalog:' version: 5.9.3 unbuild: specifier: 'catalog:' +<<<<<<< HEAD + version: 3.6.1(sass@1.93.2)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3)) + vite: + specifier: 'catalog:' + version: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= version: 3.6.1(sass@1.93.3)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.24(typescript@5.9.3)) vite: specifier: 'catalog:' version: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vitest: specifier: 'catalog:' - version: 3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) + version: 3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) +======= version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vue-tsc: specifier: 'catalog:' version: 2.2.10(typescript@5.9.3) @@ -747,7 +787,7 @@ importers: version: 9.0.2 nitropack: specifier: 'catalog:' - version: 2.12.9 + version: 2.12.7 devDependencies: '@types/jsonwebtoken': specifier: 'catalog:' @@ -760,6 +800,15 @@ importers: dependencies: '@form-create/ant-design-vue': specifier: 'catalog:' +<<<<<<< HEAD + version: 3.2.31(vue@3.5.22(typescript@5.9.3)) + '@form-create/antd-designer': + specifier: 'catalog:' + version: 3.3.2(vue@3.5.22(typescript@5.9.3)) + '@tinymce/tinymce-vue': + specifier: 'catalog:' + version: 6.3.0(tinymce@7.9.1)(vue@3.5.22(typescript@5.9.3)) +======= version: 3.2.32(vue@3.5.24(typescript@5.9.3)) '@form-create/antd-designer': specifier: 'catalog:' @@ -767,6 +816,7 @@ importers: '@tinymce/tinymce-vue': specifier: 'catalog:' version: 6.3.0(tinymce@7.9.1)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vben/access': specifier: workspace:* version: link:../../packages/effects/access @@ -810,6 +860,24 @@ importers: specifier: workspace:* version: link:../../packages/utils '@videojs-player/vue': +<<<<<<< HEAD + specifier: ^1.0.0 + version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.22(typescript@5.9.3)) + '@vueuse/components': + specifier: 'catalog:' + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/core': + specifier: 'catalog:' + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/integrations': + specifier: 'catalog:' + version: 14.0.0(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.22(typescript@5.9.3)) + ant-design-vue: + specifier: 'catalog:' + version: 4.2.6(vue@3.5.22(typescript@5.9.3)) + benz-amr-recorder: + specifier: ^1.1.5 +======= specifier: 'catalog:' version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.24(typescript@5.9.3)) '@vueuse/core': @@ -823,13 +891,14 @@ importers: version: 4.2.6(vue@3.5.24(typescript@5.9.3)) benz-amr-recorder: specifier: 'catalog:' +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef version: 1.1.5 bpmn-js: specifier: 'catalog:' version: 17.11.1 bpmn-js-properties-panel: specifier: 'catalog:' - version: 5.23.0(@bpmn-io/properties-panel@3.33.2)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.11.2(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0))(diagram-js@12.8.1) + version: 5.23.0(@bpmn-io/properties-panel@3.33.0)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.11.2(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0))(diagram-js@12.8.1) bpmn-js-token-simulation: specifier: 'catalog:' version: 0.36.3 @@ -841,7 +910,7 @@ importers: version: 1.6.2 dayjs: specifier: 'catalog:' - version: 1.11.19 + version: 1.11.18 diagram-js: specifier: 'catalog:' version: 12.8.1 @@ -853,7 +922,11 @@ importers: version: 11.11.1 pinia: specifier: ^3.0.3 +<<<<<<< HEAD + version: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) +======= version: 3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef steady-xml: specifier: 'catalog:' version: 0.1.0 @@ -861,6 +934,25 @@ importers: specifier: 'catalog:' version: 7.9.1 video.js: +<<<<<<< HEAD + specifier: ^7.21.5 + version: 7.21.7 + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) + vue-dompurify-html: + specifier: 'catalog:' + version: 5.3.0(vue@3.5.22(typescript@5.9.3)) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) + vue3-signature: + specifier: 'catalog:' + version: 0.2.4(vue@3.5.22(typescript@5.9.3)) + vuedraggable: + specifier: 'catalog:' + version: 4.1.0(vue@3.5.22(typescript@5.9.3)) +======= specifier: 'catalog:' version: 7.21.7 vue: @@ -881,11 +973,21 @@ importers: vuedraggable: specifier: 'catalog:' version: 4.1.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef apps/web-ele: dependencies: '@form-create/designer': specifier: 'catalog:' +<<<<<<< HEAD + version: 3.3.1(vue@3.5.22(typescript@5.9.3)) + '@form-create/element-ui': + specifier: 'catalog:' + version: 3.2.31(vue@3.5.22(typescript@5.9.3)) + '@tinymce/tinymce-vue': + specifier: 'catalog:' + version: 6.3.0(tinymce@7.9.1)(vue@3.5.22(typescript@5.9.3)) +======= version: 3.3.1(vue@3.5.24(typescript@5.9.3)) '@form-create/element-ui': specifier: 'catalog:' @@ -893,6 +995,7 @@ importers: '@tinymce/tinymce-vue': specifier: 'catalog:' version: 6.3.0(tinymce@7.9.1)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vben/access': specifier: workspace:* version: link:../../packages/effects/access @@ -940,6 +1043,12 @@ importers: version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.24(typescript@5.9.3)) '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/integrations': + specifier: 'catalog:' + version: 14.0.0(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) '@vueuse/integrations': specifier: 'catalog:' @@ -947,21 +1056,30 @@ importers: benz-amr-recorder: specifier: 'catalog:' version: 1.1.5 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef cropperjs: specifier: 'catalog:' version: 1.6.2 dayjs: specifier: 'catalog:' - version: 1.11.19 + version: 1.11.18 element-plus: specifier: 'catalog:' +<<<<<<< HEAD + version: 2.11.5(vue@3.5.22(typescript@5.9.3)) +======= version: 2.11.7(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef highlight.js: specifier: 'catalog:' version: 11.11.1 pinia: specifier: ^3.0.3 +<<<<<<< HEAD + version: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) +======= version: 3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef tinymce: specifier: 'catalog:' version: 7.9.1 @@ -970,6 +1088,18 @@ importers: version: 7.21.7 vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) + vue-dompurify-html: + specifier: 'catalog:' + version: 5.3.0(vue@3.5.22(typescript@5.9.3)) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) + vuedraggable: + specifier: 'catalog:' + version: 4.1.0(vue@3.5.22(typescript@5.9.3)) +======= version: 3.5.24(typescript@5.9.3) vue-dompurify-html: specifier: 'catalog:' @@ -980,6 +1110,7 @@ importers: vuedraggable: specifier: 'catalog:' version: 4.1.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef devDependencies: unplugin-element-plus: specifier: 'catalog:' @@ -1031,12 +1162,28 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dayjs: specifier: 'catalog:' - version: 1.11.19 + version: 1.11.18 naive-ui: specifier: 'catalog:' +<<<<<<< HEAD + version: 2.43.1(vue@3.5.22(typescript@5.9.3)) + pinia: + specifier: ^3.0.3 + version: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 2.43.1(vue@3.5.24(typescript@5.9.3)) pinia: specifier: ^3.0.3 @@ -1126,6 +1273,7 @@ importers: '@types/lodash-es': specifier: ^4.17.12 version: 4.17.12 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef docs: dependencies: @@ -1146,35 +1294,57 @@ importers: version: link:../packages/styles ant-design-vue: specifier: 'catalog:' +<<<<<<< HEAD + version: 4.2.6(vue@3.5.22(typescript@5.9.3)) + lucide-vue-next: + specifier: 'catalog:' + version: 0.507.0(vue@3.5.22(typescript@5.9.3)) +======= version: 4.2.6(vue@3.5.24(typescript@5.9.3)) lucide-vue-next: specifier: 'catalog:' version: 0.507.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef medium-zoom: specifier: 'catalog:' version: 1.1.0 reka-ui: specifier: 'catalog:' +<<<<<<< HEAD + version: 2.6.0(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) +======= version: 2.6.0(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vitepress-plugin-group-icons: specifier: 'catalog:' - version: 1.6.5(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)) + version: 1.6.4(markdown-it@14.1.0)(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)) devDependencies: '@nolebase/vitepress-plugin-git-changelog': specifier: 'catalog:' +<<<<<<< HEAD + version: 2.18.2(vitepress@1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3)) +======= version: 2.18.2(vitepress@1.6.4(@algolia/client-search@5.43.0)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.13.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vben/vite-config': specifier: workspace:* version: link:../internal/vite-config '@vite-pwa/vitepress': specifier: 'catalog:' - version: 1.0.1(vite-plugin-pwa@1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1))(workbox-build@7.3.0)(workbox-window@7.3.0)) + version: 1.0.1(vite-plugin-pwa@1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0)) vitepress: specifier: 'catalog:' +<<<<<<< HEAD + version: 1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 1.6.4(@algolia/client-search@5.43.0)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.13.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3) vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef internal/lint-configs/commitlint-config: dependencies: @@ -1201,74 +1371,74 @@ importers: dependencies: eslint-config-turbo: specifier: 'catalog:' - version: 2.6.0(eslint@9.39.1(jiti@2.6.1))(turbo@2.6.0) + version: 2.5.8(eslint@9.38.0(jiti@2.6.1))(turbo@2.5.8) eslint-plugin-command: specifier: 'catalog:' - version: 3.3.1(eslint@9.39.1(jiti@2.6.1)) + version: 3.3.1(eslint@9.38.0(jiti@2.6.1)) eslint-plugin-import-x: specifier: 'catalog:' - version: 4.16.1(@typescript-eslint/utils@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)) + version: 4.16.1(@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1)) devDependencies: '@eslint/js': specifier: 'catalog:' - version: 9.39.1 + version: 9.38.0 '@types/eslint': specifier: 'catalog:' version: 9.6.1 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + version: 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + version: 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) eslint: specifier: 'catalog:' - version: 9.39.1(jiti@2.6.1) + version: 9.38.0(jiti@2.6.1) eslint-plugin-eslint-comments: specifier: 'catalog:' - version: 3.2.0(eslint@9.39.1(jiti@2.6.1)) + version: 3.2.0(eslint@9.38.0(jiti@2.6.1)) eslint-plugin-jsdoc: specifier: 'catalog:' - version: 50.8.0(eslint@9.39.1(jiti@2.6.1)) + version: 50.8.0(eslint@9.38.0(jiti@2.6.1)) eslint-plugin-jsonc: specifier: 'catalog:' - version: 2.21.0(eslint@9.39.1(jiti@2.6.1)) + version: 2.21.0(eslint@9.38.0(jiti@2.6.1)) eslint-plugin-n: specifier: 'catalog:' - version: 17.23.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + version: 17.23.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 eslint-plugin-perfectionist: specifier: 'catalog:' - version: 4.15.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + version: 4.15.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) eslint-plugin-prettier: specifier: 'catalog:' - version: 5.5.4(@types/eslint@9.6.1)(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2) + version: 5.5.4(@types/eslint@9.6.1)(eslint@9.38.0(jiti@2.6.1))(prettier@3.6.2) eslint-plugin-regexp: specifier: 'catalog:' - version: 2.10.0(eslint@9.39.1(jiti@2.6.1)) + version: 2.10.0(eslint@9.38.0(jiti@2.6.1)) eslint-plugin-unicorn: specifier: 'catalog:' - version: 59.0.1(eslint@9.39.1(jiti@2.6.1)) + version: 59.0.1(eslint@9.38.0(jiti@2.6.1)) eslint-plugin-unused-imports: specifier: 'catalog:' - version: 4.3.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)) + version: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1)) eslint-plugin-vitest: specifier: 'catalog:' - version: 0.5.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)(vitest@3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)) + version: 0.5.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)(vitest@3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) eslint-plugin-vue: specifier: 'catalog:' - version: 10.5.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.6.1))) + version: 10.5.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1))) globals: specifier: 'catalog:' - version: 16.5.0 + version: 16.4.0 jsonc-eslint-parser: specifier: 'catalog:' version: 2.4.1 vue-eslint-parser: specifier: 'catalog:' - version: 10.2.0(eslint@9.39.1(jiti@2.6.1)) + version: 10.2.0(eslint@9.38.0(jiti@2.6.1)) internal/lint-configs/prettier-config: dependencies: @@ -1341,7 +1511,7 @@ importers: version: 3.4.2 dayjs: specifier: 'catalog:' - version: 1.11.19 + version: 1.11.18 execa: specifier: 'catalog:' version: 9.6.0 @@ -1359,13 +1529,17 @@ importers: version: 3.6.2 rimraf: specifier: 'catalog:' - version: 6.1.0 + version: 6.0.1 internal/tailwind-config: dependencies: '@iconify/json': specifier: 'catalog:' +<<<<<<< HEAD + version: 2.2.398 +======= version: 2.2.405 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@iconify/tailwind': specifier: 'catalog:' version: 1.2.0 @@ -1383,7 +1557,7 @@ importers: version: 10.4.21(postcss@8.5.6) cssnano: specifier: 'catalog:' - version: 7.1.2(postcss@8.5.6) + version: 7.1.1(postcss@8.5.6) postcss: specifier: 'catalog:' version: 8.5.6 @@ -1414,16 +1588,24 @@ importers: version: link:../../packages/types vite: specifier: 'catalog:' +<<<<<<< HEAD + version: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= version: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef internal/vite-config: dependencies: '@intlify/unplugin-vue-i18n': specifier: 'catalog:' +<<<<<<< HEAD + version: 6.0.8(@vue/compiler-dom@3.5.22)(eslint@9.38.0(jiti@2.6.1))(rollup@4.52.5)(typescript@5.9.3)(vue-i18n@11.1.12(vue@3.5.22(typescript@5.9.3)))(vue@3.5.22(typescript@5.9.3)) +======= version: 6.0.8(@vue/compiler-dom@3.5.24)(eslint@9.39.1(jiti@2.6.1))(rollup@4.53.1)(typescript@5.9.3)(vue-i18n@11.1.12(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@jspm/generator': specifier: 'catalog:' - version: 2.7.6 + version: 2.7.4 archiver: specifier: 'catalog:' version: 7.0.1 @@ -1438,23 +1620,30 @@ importers: version: 7.2.0 nitropack: specifier: 'catalog:' - version: 2.12.9 + version: 2.12.7 resolve.exports: specifier: 'catalog:' version: 2.0.3 vite-plugin-pwa: specifier: 'catalog:' +<<<<<<< HEAD + version: 1.1.0(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0) + vite-plugin-vue-devtools: + specifier: 'catalog:' + version: 7.7.7(rollup@4.52.5)(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)) +======= version: 1.1.0(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0) vite-plugin-vue-devtools: specifier: 'catalog:' version: 7.7.7(rollup@4.53.1)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef devDependencies: '@pnpm/workspace.read-manifest': specifier: 'catalog:' version: 1000.2.6 '@types/archiver': specifier: 'catalog:' - version: 6.0.4 + version: 6.0.3 '@types/html-minifier-terser': specifier: 'catalog:' version: 7.0.2 @@ -1463,13 +1652,20 @@ importers: version: link:../node-utils '@vitejs/plugin-vue': specifier: 'catalog:' +<<<<<<< HEAD + version: 6.0.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)) + '@vitejs/plugin-vue-jsx': + specifier: 'catalog:' + version: 5.1.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)) +======= version: 6.0.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3)) '@vitejs/plugin-vue-jsx': specifier: 'catalog:' version: 5.1.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dayjs: specifier: 'catalog:' - version: 1.11.19 + version: 1.11.18 dotenv: specifier: 'catalog:' version: 16.6.1 @@ -1481,9 +1677,21 @@ importers: version: 5.14.0(rollup@4.53.1) sass: specifier: 'catalog:' - version: 1.93.3 + version: 1.93.2 vite: specifier: 'catalog:' +<<<<<<< HEAD + version: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + vite-plugin-compression: + specifier: 'catalog:' + version: 0.5.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) + vite-plugin-dts: + specifier: 'catalog:' + version: 4.5.4(@types/node@24.10.0)(rollup@4.52.5)(typescript@5.9.3)(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) + vite-plugin-html: + specifier: 'catalog:' + version: 3.2.2(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) +======= version: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) vite-plugin-compression: specifier: 'catalog:' @@ -1494,6 +1702,7 @@ importers: vite-plugin-html: specifier: 'catalog:' version: 3.2.2(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vite-plugin-lazy-import: specifier: 'catalog:' version: 1.0.7 @@ -1504,6 +1713,15 @@ importers: dependencies: '@iconify/vue': specifier: 'catalog:' +<<<<<<< HEAD + version: 5.0.0(vue@3.5.22(typescript@5.9.3)) + lucide-vue-next: + specifier: 'catalog:' + version: 0.507.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 5.0.0(vue@3.5.24(typescript@5.9.3)) lucide-vue-next: specifier: 'catalog:' @@ -1511,6 +1729,7 @@ importers: vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/@core/base/shared: dependencies: @@ -1519,10 +1738,17 @@ importers: version: 4.2.0 '@tanstack/vue-store': specifier: 'catalog:' +<<<<<<< HEAD + version: 0.7.7(vue@3.5.22(typescript@5.9.3)) + '@vue/shared': + specifier: 'catalog:' + version: 3.5.22 +======= version: 0.7.7(vue@3.5.24(typescript@5.9.3)) '@vue/shared': specifier: 'catalog:' version: 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef clsx: specifier: ^2.1.1 version: 2.1.1 @@ -1531,7 +1757,7 @@ importers: version: 4.2.0 dayjs: specifier: 'catalog:' - version: 1.11.19 + version: 1.11.18 defu: specifier: 'catalog:' version: 6.1.4 @@ -1583,10 +1809,17 @@ importers: dependencies: vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 3.5.24(typescript@5.9.3) vue-router: specifier: 'catalog:' version: 4.6.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/@core/composables: dependencies: @@ -1595,20 +1828,31 @@ importers: version: link:../base/shared '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + reka-ui: + specifier: 'catalog:' + version: 2.6.0(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) reka-ui: specifier: 'catalog:' version: 2.6.0(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef sortablejs: specifier: 'catalog:' version: 1.15.6 vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) +======= version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef devDependencies: '@types/sortablejs': specifier: 'catalog:' - version: 1.15.9 + version: 1.15.8 packages/@core/preferences: dependencies: @@ -1620,10 +1864,17 @@ importers: version: link:../base/typings '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/@core/ui-kit/form-ui: dependencies: @@ -1644,6 +1895,18 @@ importers: version: link:../../base/typings '@vee-validate/zod': specifier: 'catalog:' +<<<<<<< HEAD + version: 4.15.1(vue@3.5.22(typescript@5.9.3))(zod@3.25.76) + '@vueuse/core': + specifier: 'catalog:' + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vee-validate: + specifier: 'catalog:' + version: 4.15.1(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 4.15.1(vue@3.5.24(typescript@5.9.3))(zod@3.25.76) '@vueuse/core': specifier: 'catalog:' @@ -1654,6 +1917,7 @@ importers: vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef zod: specifier: 'catalog:' version: 3.25.76 @@ -1680,10 +1944,17 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/@core/ui-kit/menu-ui: dependencies: @@ -1704,10 +1975,17 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/@core/ui-kit/popup-ui: dependencies: @@ -1728,10 +2006,17 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/@core/ui-kit/shadcn-ui: dependencies: @@ -1749,12 +2034,28 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef class-variance-authority: specifier: 'catalog:' version: 0.7.1 lucide-vue-next: specifier: 'catalog:' +<<<<<<< HEAD + version: 0.507.0(vue@3.5.22(typescript@5.9.3)) + reka-ui: + specifier: 'catalog:' + version: 2.6.0(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) + vee-validate: + specifier: 'catalog:' + version: 4.15.1(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 0.507.0(vue@3.5.24(typescript@5.9.3)) reka-ui: specifier: 'catalog:' @@ -1765,6 +2066,7 @@ importers: vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/@core/ui-kit/tabs-ui: dependencies: @@ -1782,10 +2084,17 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/constants: dependencies: @@ -1809,7 +2118,11 @@ importers: version: link:../../utils vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) +======= version: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/effects/common-ui: dependencies: @@ -1845,10 +2158,17 @@ importers: version: link:../../types '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/integrations': + specifier: 'catalog:' + version: 14.0.0(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) '@vueuse/integrations': specifier: 'catalog:' version: 14.0.0(async-validator@4.2.5)(axios@1.13.2)(focus-trap@7.6.6)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef json-bigint: specifier: 'catalog:' version: 1.0.0 @@ -1860,6 +2180,18 @@ importers: version: 6.3.7 vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) + vue-json-viewer: + specifier: 'catalog:' + version: 3.0.4(vue@3.5.22(typescript@5.9.3)) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) + vue-tippy: + specifier: 'catalog:' + version: 6.7.1(vue@3.5.22(typescript@5.9.3)) +======= version: 3.5.24(typescript@5.9.3) vue-json-viewer: specifier: 'catalog:' @@ -1870,10 +2202,11 @@ importers: vue-tippy: specifier: 'catalog:' version: 6.7.1(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef devDependencies: '@types/qrcode': specifier: 'catalog:' - version: 1.5.6 + version: 1.5.5 packages/effects/hooks: dependencies: @@ -1894,6 +2227,15 @@ importers: version: link:../../utils '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 @@ -1901,6 +2243,7 @@ importers: vue-router: specifier: 'catalog:' version: 4.6.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef watermark-js-plus: specifier: 'catalog:' version: 1.6.3 @@ -1957,6 +2300,15 @@ importers: version: link:../../utils '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 @@ -1964,12 +2316,17 @@ importers: vue-router: specifier: 'catalog:' version: 4.6.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/effects/plugins: dependencies: '@tinyflow-ai/vue': specifier: 'catalog:' +<<<<<<< HEAD + version: 1.1.7(svelte@5.41.1)(vue@3.5.22(typescript@5.9.3)) +======= version: 1.1.9(svelte@5.43.5)(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vben-core/form-ui': specifier: workspace:* version: link:../../@core/ui-kit/form-ui @@ -1999,10 +2356,17 @@ importers: version: link:../../utils '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/motion': + specifier: 'catalog:' + version: 3.0.3(magicast@0.3.5)(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) '@vueuse/motion': specifier: 'catalog:' version: 3.0.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef codemirror: specifier: 'catalog:' version: 5.65.20 @@ -2026,6 +2390,15 @@ importers: version: 0.16.0(markmap-common@0.16.0) vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) + vxe-pc-ui: + specifier: 'catalog:' + version: 4.10.5(vue@3.5.22(typescript@5.9.3)) + vxe-table: + specifier: 'catalog:' + version: 4.17.0(vue@3.5.22(typescript@5.9.3)) +======= version: 3.5.24(typescript@5.9.3) vxe-pc-ui: specifier: 'catalog:' @@ -2033,10 +2406,11 @@ importers: vxe-table: specifier: 'catalog:' version: 4.17.12(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef devDependencies: '@types/codemirror': specifier: 'catalog:' - version: 5.60.17 + version: 5.60.16 '@types/markdown-it': specifier: 'catalog:' version: 14.1.2 @@ -2054,7 +2428,7 @@ importers: version: link:../../utils axios: specifier: 'catalog:' - version: 1.13.2 + version: 1.12.2 qs: specifier: 'catalog:' version: 6.14.0 @@ -2064,7 +2438,7 @@ importers: version: 6.14.0 axios-mock-adapter: specifier: 'catalog:' - version: 2.1.0(axios@1.13.2) + version: 2.1.0(axios@1.12.2) packages/icons: dependencies: @@ -2082,10 +2456,17 @@ importers: version: link:../@core/composables vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) + vue-i18n: + specifier: 'catalog:' + version: 11.1.12(vue@3.5.22(typescript@5.9.3)) +======= version: 3.5.24(typescript@5.9.3) vue-i18n: specifier: 'catalog:' version: 11.1.12(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/preferences: dependencies: @@ -2109,19 +2490,33 @@ importers: version: link:../@core/base/typings pinia: specifier: ^3.0.3 +<<<<<<< HEAD + version: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) + pinia-plugin-persistedstate: + specifier: 'catalog:' + version: 4.5.0(@nuxt/kit@3.19.3(magicast@0.3.5))(pinia@3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3))) +======= version: 3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)) pinia-plugin-persistedstate: specifier: 'catalog:' version: 4.7.1(@nuxt/kit@3.20.1)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3))) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef secure-ls: specifier: 'catalog:' version: 2.0.0 vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 3.5.24(typescript@5.9.3) vue-router: specifier: 'catalog:' version: 4.6.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/styles: dependencies: @@ -2136,10 +2531,17 @@ importers: version: link:../@core/base/typings vue: specifier: ^3.5.17 +<<<<<<< HEAD + version: 3.5.22(typescript@5.9.3) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 3.5.24(typescript@5.9.3) vue-router: specifier: 'catalog:' version: 4.6.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef packages/utils: dependencies: @@ -2151,13 +2553,21 @@ importers: version: link:../@core/base/typings vue-router: specifier: 'catalog:' +<<<<<<< HEAD + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 4.6.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef playground: dependencies: '@tanstack/vue-query': specifier: 'catalog:' +<<<<<<< HEAD + version: 5.90.5(vue@3.5.22(typescript@5.9.3)) +======= version: 5.90.7(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vben-core/menu-ui': specifier: workspace:* version: link:../packages/@core/ui-kit/menu-ui @@ -2205,18 +2615,34 @@ importers: version: link:../packages/utils '@vueuse/core': specifier: 'catalog:' +<<<<<<< HEAD + version: 13.9.0(vue@3.5.22(typescript@5.9.3)) + ant-design-vue: + specifier: 'catalog:' + version: 4.2.6(vue@3.5.22(typescript@5.9.3)) +======= version: 13.9.0(vue@3.5.24(typescript@5.9.3)) ant-design-vue: specifier: 'catalog:' version: 4.2.6(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dayjs: specifier: 'catalog:' - version: 1.11.19 + version: 1.11.18 json-bigint: specifier: 'catalog:' version: 1.0.0 pinia: specifier: ^3.0.3 +<<<<<<< HEAD + version: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) + vue: + specifier: ^3.5.17 + version: 3.5.22(typescript@5.9.3) + vue-router: + specifier: 'catalog:' + version: 4.6.3(vue@3.5.22(typescript@5.9.3)) +======= version: 3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)) vue: specifier: ^3.5.17 @@ -2224,6 +2650,7 @@ importers: vue-router: specifier: 'catalog:' version: 4.6.3(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef devDependencies: '@types/json-bigint': specifier: 'catalog:' @@ -2261,8 +2688,13 @@ importers: packages: +<<<<<<< HEAD + '@algolia/abtesting@1.6.1': + resolution: {integrity: sha512-wV/gNRkzb7sI9vs1OneG129hwe3Q5zPj7zigz3Ps7M5Lpo2hSorrOnXNodHEOV+yXE/ks4Pd+G3CDFIjFTWhMQ==} +======= '@algolia/abtesting@1.9.0': resolution: {integrity: sha512-4q9QCxFPiDIx1n5w41A1JMkrXI8p0ugCQnCGFtCKZPmWtwgWCqwVRncIbp++81xSELFZVQUfiB7Kbsla1tIBSw==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef engines: {node: '>= 14.0.0'} '@algolia/autocomplete-core@1.17.7': @@ -2285,6 +2717,58 @@ packages: '@algolia/client-search': '>= 4.9.1 < 6' algoliasearch: '>= 4.9.1 < 6' +<<<<<<< HEAD + '@algolia/client-abtesting@5.40.1': + resolution: {integrity: sha512-cxKNATPY5t+Mv8XAVTI57altkaPH+DZi4uMrnexPxPHODMljhGYY+GDZyHwv9a+8CbZHcY372OkxXrDMZA4Lnw==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-analytics@5.40.1': + resolution: {integrity: sha512-XP008aMffJCRGAY8/70t+hyEyvqqV7YKm502VPu0+Ji30oefrTn2al7LXkITz7CK6I4eYXWRhN6NaIUi65F1OA==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-common@5.40.1': + resolution: {integrity: sha512-gWfQuQUBtzUboJv/apVGZMoxSaB0M4Imwl1c9Ap+HpCW7V0KhjBddqF2QQt5tJZCOFsfNIgBbZDGsEPaeKUosw==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-insights@5.40.1': + resolution: {integrity: sha512-RTLjST/t+lsLMouQ4zeLJq2Ss+UNkLGyNVu+yWHanx6kQ3LT5jv8UvPwyht9s7R6jCPnlSI77WnL80J32ZuyJg==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-personalization@5.40.1': + resolution: {integrity: sha512-2FEK6bUomBzEYkTKzD0iRs7Ljtjb45rKK/VSkyHqeJnG+77qx557IeSO0qVFE3SfzapNcoytTofnZum0BQ6r3Q==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-query-suggestions@5.40.1': + resolution: {integrity: sha512-Nju4NtxAvXjrV2hHZNLKVJLXjOlW6jAXHef/CwNzk1b2qIrCWDO589ELi5ZHH1uiWYoYyBXDQTtHmhaOVVoyXg==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-search@5.40.1': + resolution: {integrity: sha512-Mw6pAUF121MfngQtcUb5quZVqMC68pSYYjCRZkSITC085S3zdk+h/g7i6FxnVdbSU6OztxikSDMh1r7Z+4iPlA==} + engines: {node: '>= 14.0.0'} + + '@algolia/ingestion@1.40.1': + resolution: {integrity: sha512-z+BPlhs45VURKJIxsR99NNBWpUEEqIgwt10v/fATlNxc4UlXvALdOsWzaFfe89/lbP5Bu4+mbO59nqBC87ZM/g==} + engines: {node: '>= 14.0.0'} + + '@algolia/monitoring@1.40.1': + resolution: {integrity: sha512-VJMUMbO0wD8Rd2VVV/nlFtLJsOAQvjnVNGkMkspFiFhpBA7s/xJOb+fJvvqwKFUjbKTUA7DjiSi1ljSMYBasXg==} + engines: {node: '>= 14.0.0'} + + '@algolia/recommend@5.40.1': + resolution: {integrity: sha512-ehvJLadKVwTp9Scg9NfzVSlBKH34KoWOQNTaN8i1Ac64AnO6iH2apJVSP6GOxssaghZ/s8mFQsDH3QIZoluFHA==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-browser-xhr@5.40.1': + resolution: {integrity: sha512-PbidVsPurUSQIr6X9/7s34mgOMdJnn0i6p+N6Ab+lsNhY5eiu+S33kZEpZwkITYBCIbhzDLOvb7xZD3gDi+USA==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-fetch@5.40.1': + resolution: {integrity: sha512-ThZ5j6uOZCF11fMw9IBkhigjOYdXGXQpj6h4k+T9UkZrF2RlKcPynFzDeRgaLdpYk8Yn3/MnFbwUmib7yxj5Lw==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-node-http@5.40.1': + resolution: {integrity: sha512-H1gYPojO6krWHnUXu/T44DrEun/Wl95PJzMXRcM/szstNQczSbwq6wIFJPI9nyE95tarZfUNU3rgorT+wZ6iCQ==} +======= '@algolia/client-abtesting@5.43.0': resolution: {integrity: sha512-YsKYkohIMxiYEAu8nppZi5EioYDUIo9Heoor8K8vMUnkUtGCOEU/Q4p5OWaYSSBx3evo09Ga9rG4jsKViIcDzQ==} engines: {node: '>= 14.0.0'} @@ -2335,6 +2819,7 @@ packages: '@algolia/requester-node-http@5.43.0': resolution: {integrity: sha512-UnUBNY0U+oT0bkYDsEqVsCkErC2w7idk4CRiLSzicqY8tGylD9oP0j13X/fse1CuiAFCCr3jfl+cBlN6dC0OFw==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef engines: {node: '>= 14.0.0'} '@alloc/quick-lru@5.2.0': @@ -2433,16 +2918,16 @@ packages: resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.28.5': - resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==} + '@babel/compat-data@7.28.4': + resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} engines: {node: '>=6.9.0'} - '@babel/core@7.28.5': - resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==} + '@babel/core@7.28.4': + resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.28.5': - resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} + '@babel/generator@7.28.3': + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} engines: {node: '>=6.9.0'} '@babel/helper-annotate-as-pure@7.27.3': @@ -2453,14 +2938,14 @@ packages: resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.28.5': - resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==} + '@babel/helper-create-class-features-plugin@7.28.3': + resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-create-regexp-features-plugin@7.28.5': - resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==} + '@babel/helper-create-regexp-features-plugin@7.27.1': + resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -2474,8 +2959,8 @@ packages: resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} engines: {node: '>=6.9.0'} - '@babel/helper-member-expression-to-functions@7.28.5': - resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} + '@babel/helper-member-expression-to-functions@7.27.1': + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} engines: {node: '>=6.9.0'} '@babel/helper-module-imports@7.27.1': @@ -2516,8 +3001,8 @@ packages: resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.28.5': - resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} engines: {node: '>=6.9.0'} '@babel/helper-validator-option@7.27.1': @@ -2532,13 +3017,13 @@ packages: resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} engines: {node: '>=6.9.0'} - '@babel/parser@7.28.5': - resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} + '@babel/parser@7.28.4': + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5': - resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==} + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1': + resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -2644,8 +3129,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.28.5': - resolution: {integrity: sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==} + '@babel/plugin-transform-block-scoping@7.28.4': + resolution: {integrity: sha512-1yxmvN0MJHOhPVmAsmoW5liWwoILobu/d/ShymZmj867bAdxGbehIrew1DuLpw2Ukv+qDSSPQdYW1dLNE7t11A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2674,8 +3159,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.28.5': - resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==} + '@babel/plugin-transform-destructuring@7.28.0': + resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2710,8 +3195,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.28.5': - resolution: {integrity: sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==} + '@babel/plugin-transform-exponentiation-operator@7.27.1': + resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2746,8 +3231,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-logical-assignment-operators@7.28.5': - resolution: {integrity: sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==} + '@babel/plugin-transform-logical-assignment-operators@7.27.1': + resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2770,8 +3255,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.28.5': - resolution: {integrity: sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==} + '@babel/plugin-transform-modules-systemjs@7.27.1': + resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2824,8 +3309,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-chaining@7.28.5': - resolution: {integrity: sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==} + '@babel/plugin-transform-optional-chaining@7.27.1': + resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2902,8 +3387,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.28.5': - resolution: {integrity: sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==} + '@babel/plugin-transform-typescript@7.28.0': + resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2932,8 +3417,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/preset-env@7.28.5': - resolution: {integrity: sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==} + '@babel/preset-env@7.28.3': + resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2943,8 +3428,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - '@babel/preset-typescript@7.28.5': - resolution: {integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==} + '@babel/preset-typescript@7.27.1': + resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2961,12 +3446,12 @@ packages: resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.28.5': - resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==} + '@babel/traverse@7.28.4': + resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.28.5': - resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} + '@babel/types@7.28.4': + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} engines: {node: '>=6.9.0'} '@bpmn-io/cm-theme@0.1.0-alpha.2': @@ -2994,24 +3479,21 @@ packages: '@bpmn-io/lezer-feel@1.9.0': resolution: {integrity: sha512-mV+pj+x0++9zT5/RkOOUNtkT2hpKpGWbXuFR8trJlvJeRe1dL/5yPal/RBcnk3z73tILK4kP6LzXelcsshQCEw==} - '@bpmn-io/properties-panel@3.33.2': - resolution: {integrity: sha512-8KgiKzJryfcxZmQb+ArL6zjWZ8N2o/vdWMWY01EOJrL/OmasCmxQU4lIE5GejgZ/EHoi92aVo8Ij+44uaRFGNw==} + '@bpmn-io/properties-panel@3.33.0': + resolution: {integrity: sha512-I41JNpfX7zzKTOpmB84ETt8dnyE4OLDtzNmQBN6m3wEnfFw19VuBa7C0XXMtF/Us1zvy3yFx+dAH//Hgg9e0uQ==} '@cacheable/memoize@2.0.3': resolution: {integrity: sha512-hl9wfQgpiydhQEIv7fkjEzTGE+tcosCXLKFDO707wYJ/78FVOlowb36djex5GdbSyeHnG62pomYLMuV/OT8Pbw==} - '@cacheable/memory@2.0.4': - resolution: {integrity: sha512-cCmJKCKlT1t7hNBI1+gFCwmKFd9I4pS3zqBeNGXTSODnpa0EeDmORHY8oEMTuozfdg3cgsVh8ojLaPYb6eC7Cg==} + '@cacheable/memory@2.0.3': + resolution: {integrity: sha512-R3UKy/CKOyb1LZG/VRCTMcpiMDyLH7SH3JrraRdK6kf3GweWCOU3sgvE13W3TiDRbxnDKylzKJvhUAvWl9LQOA==} - '@cacheable/utils@2.2.0': - resolution: {integrity: sha512-7xaQayO3msdVcxXLYcLU5wDqJBNdQcPPPHr6mdTEIQI7N7TbtSVVTpWOTfjyhg0L6AQwQdq7miKdWtTDBoBldQ==} + '@cacheable/utils@2.1.0': + resolution: {integrity: sha512-ZdxfOiaarMqMj+H7qwlt5EBKWaeGihSYVHdQv5lUsbn8MJJOTW82OIwirQ39U5tMZkNvy3bQE+ryzC+xTAb9/g==} '@camunda/feel-builtins@0.2.0': resolution: {integrity: sha512-Jusm8x3Onqze9E5Y0lGGdPj66bnFKLYNwDz+uG4otsEXgSL0FpF+koGHK48LkF9Jqo67KaP1y3zr2y/HIWRePw==} - '@carbon/icons@11.70.0': - resolution: {integrity: sha512-pw/u032VfP3UDcAr0SZzYJlfSmtiDkOHEgQSchmU9Z1g7CmpfQ7EWSW8ExcHm4DFdun8M3Z1QCkCyu0Hq+s1gg==} - '@changesets/apply-release-plan@7.0.13': resolution: {integrity: sha512-BIW7bofD2yAWoE8H4V40FikC+1nNFEKBisMECccS16W1rt6qqhNTBDmIw5HaqmMgtLNz9e7oiALiEUuKrQ4oHg==} @@ -3083,17 +3565,17 @@ packages: resolution: {integrity: sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==} engines: {node: '>=18.0.0'} - '@codemirror/autocomplete@6.19.1': - resolution: {integrity: sha512-q6NenYkEy2fn9+JyjIxMWcNjzTL/IhwqfzOut1/G3PrIFkrbl4AL7Wkse5tLrQUUyqGoAKU5+Pi5jnnXxH5HGw==} + '@codemirror/autocomplete@6.19.0': + resolution: {integrity: sha512-61Hfv3cF07XvUxNeC3E7jhG8XNi1Yom1G0lRC936oLnlF+jrbrv8rc/J98XlYzcsAoTVupfsf5fLej1aI8kyIg==} - '@codemirror/commands@6.10.0': - resolution: {integrity: sha512-2xUIc5mHXQzT16JnyOFkh8PvfeXuIut3pslWGfsGOhxP/lpgRm9HOl/mpzLErgt5mXDovqA0d11P21gofRLb9w==} + '@codemirror/commands@6.9.0': + resolution: {integrity: sha512-454TVgjhO6cMufsyyGN70rGIfJxJEjcqjBG2x2Y03Y/+Fm99d3O/Kv1QDYWuG6hvxsgmjXmBuATikIIYvERX+w==} '@codemirror/language@6.11.3': resolution: {integrity: sha512-9HBM2XnwDj7fnu0551HkGdrUrrqmYq/WC5iv6nbY2WdicXdGbhR/gfbZOH73Aqj4351alY1+aoG9rCNfiwS1RA==} - '@codemirror/lint@6.9.2': - resolution: {integrity: sha512-sv3DylBiIyi+xKwRCJAAsBZZZWo82shJ/RTMymLabAdtbkV5cSKwWDeCgtUq3v8flTaXS2y1kKkICuRYtUswyQ==} + '@codemirror/lint@6.9.0': + resolution: {integrity: sha512-wZxW+9XDytH3SKvS8cQzMyQCaaazH8XL1EMHleHe00wVzsv7NBQKVW2yzEHrRhmM7ZOhVdItPbvlRBvMp9ej7A==} '@codemirror/state@6.5.2': resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==} @@ -3203,14 +3685,14 @@ packages: '@cspell/dict-aws@4.0.15': resolution: {integrity: sha512-aPY7VVR5Os4rz36EaqXBAEy14wR4Rqv+leCJ2Ug/Gd0IglJpM30LalF3e2eJChnjje3vWoEC0Rz3+e5gpZG+Kg==} - '@cspell/dict-bash@4.2.2': - resolution: {integrity: sha512-kyWbwtX3TsCf5l49gGQIZkRLaB/P8g73GDRm41Zu8Mv51kjl2H7Au0TsEvHv7jzcsRLS6aUYaZv6Zsvk1fOz+Q==} + '@cspell/dict-bash@4.2.1': + resolution: {integrity: sha512-SBnzfAyEAZLI9KFS7DUG6Xc1vDFuLllY3jz0WHvmxe8/4xV3ufFE3fGxalTikc1VVeZgZmxYiABw4iGxVldYEg==} - '@cspell/dict-companies@3.2.7': - resolution: {integrity: sha512-fEyr3LmpFKTaD0LcRhB4lfW1AmULYBqzg4gWAV0dQCv06l+TsA+JQ+3pZJbUcoaZirtgsgT3dL3RUjmGPhUH0A==} + '@cspell/dict-companies@3.2.6': + resolution: {integrity: sha512-cVWBk4DSUOthCsgOsoB+5L5F1Wk8lWGHnw5de75YCKSjOEV8/6kskwwDrPTIHkoGVzpIzIIQ/OdXhYwa2G+16A==} - '@cspell/dict-cpp@6.0.14': - resolution: {integrity: sha512-dkmpSwvVfVdtoZ4mW/CK2Ep1v8mJlp6uiKpMNbSMOdJl4kq28nQS4vKNIX3B2bJa0Ha5iHHu+1mNjiLeO3g7Xg==} + '@cspell/dict-cpp@6.0.12': + resolution: {integrity: sha512-N4NsCTttVpMqQEYbf0VQwCj6np+pJESov0WieCN7R/0aByz4+MXEiDieWWisaiVi8LbKzs1mEj4ZTw5K/6O2UQ==} '@cspell/dict-cryptocurrencies@5.0.5': resolution: {integrity: sha512-R68hYYF/rtlE6T/dsObStzN5QZw+0aQBinAXuWCVqwdS7YZo0X33vGMfChkHaiCo3Z2+bkegqHlqxZF4TD3rUA==} @@ -3224,8 +3706,8 @@ packages: '@cspell/dict-dart@2.3.1': resolution: {integrity: sha512-xoiGnULEcWdodXI6EwVyqpZmpOoh8RA2Xk9BNdR7DLamV/QMvEYn8KJ7NlRiTSauJKPNkHHQ5EVHRM6sTS7jdg==} - '@cspell/dict-data-science@2.0.11': - resolution: {integrity: sha512-Dt+83nVCcF+dQyvFSaZjCKt1H5KbsVJFtH2X7VUfmIzQu8xCnV1fUmkhBzGJ+NiFs99Oy9JA6I9EjeqExzXk7g==} + '@cspell/dict-data-science@2.0.10': + resolution: {integrity: sha512-vZSsz7845ugW6mY65966Ki2bMS/ZnAZoTVvpuXQ07a2rYxJhUC+6WuBMD80hFLlKwjC5T/5Llv4F/VlB00swpw==} '@cspell/dict-django@4.1.5': resolution: {integrity: sha512-AvTWu99doU3T8ifoMYOMLW2CXKvyKLukPh1auOPwFGHzueWYvBBN+OxF8wF7XwjTBMMeRleVdLh3aWCDEX/ZWg==} @@ -3239,14 +3721,14 @@ packages: '@cspell/dict-elixir@4.0.8': resolution: {integrity: sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q==} - '@cspell/dict-en-common-misspellings@2.1.8': - resolution: {integrity: sha512-vDsjRFPQGuAADAiitf82z9Mz3DcqKZi6V5hPAEIFkLLKjFVBcjUsSq59SfL59ElIFb76MtBO0BLifdEbBj+DoQ==} + '@cspell/dict-en-common-misspellings@2.1.6': + resolution: {integrity: sha512-xV9yryOqZizbSqxRS7kSVRrxVEyWHUqwdY56IuT7eAWGyTCJNmitXzXa4p+AnEbhL+AB2WLynGVSbNoUC3ceFA==} '@cspell/dict-en-gb@1.1.33': resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} - '@cspell/dict-en_us@4.4.24': - resolution: {integrity: sha512-JE+/H2YicHJTneRmgH4GSI21rS+1yGZVl1jfOQgl8iHLC+yTTMtCvueNDMK94CgJACzYAoCsQB70MqiFJJfjLQ==} + '@cspell/dict-en_us@4.4.20': + resolution: {integrity: sha512-acAlX967bkrLwRhSJ8KGBCBUITMOe8+smwsShjei431vTB6tU5ZID6XDxR9hH/kDxfdiRTXAE8vkT3WJAHnc1Q==} '@cspell/dict-filetypes@3.0.14': resolution: {integrity: sha512-KSXaSMYYNMLLdHEnju1DyRRH3eQWPRYRnOXpuHUdOh2jC44VgQoxyMU7oB3NAhDhZKBPCihabzECsAGFbdKfEA==} @@ -3269,8 +3751,8 @@ packages: '@cspell/dict-git@3.0.7': resolution: {integrity: sha512-odOwVKgfxCQfiSb+nblQZc4ErXmnWEnv8XwkaI4sNJ7cNmojnvogYVeMqkXPjvfrgEcizEEA4URRD2Ms5PDk1w==} - '@cspell/dict-golang@6.0.24': - resolution: {integrity: sha512-rY7PlC3MsHozmjrZWi0HQPUl0BVCV0+mwK0rnMT7pOIXqOe4tWCYMULDIsEk4F0gbIxb5badd2dkCPDYjLnDgA==} + '@cspell/dict-golang@6.0.23': + resolution: {integrity: sha512-oXqUh/9dDwcmVlfUF5bn3fYFqbUzC46lXFQmi5emB0vYsyQXdNWsqi6/yH3uE7bdRE21nP7Yo0mR1jjFNyLamg==} '@cspell/dict-google@1.0.9': resolution: {integrity: sha512-biL65POqialY0i4g6crj7pR6JnBkbsPovB2WDYkj3H4TuC/QXv7Pu5pdPxeUJA6TSCHI7T5twsO4VSVyRxD9CA==} @@ -3322,11 +3804,11 @@ packages: '@cspell/dict-node@5.0.8': resolution: {integrity: sha512-AirZcN2i84ynev3p2/1NCPEhnNsHKMz9zciTngGoqpdItUb2bDt1nJBjwlsrFI78GZRph/VaqTVFwYikmncpXg==} - '@cspell/dict-npm@5.2.20': - resolution: {integrity: sha512-tJRv1qEdW3f8fxK/D2huoqkSvM6ogz55hAt9RTdB7tZy57wio9Tkj+xfi2DIeOlmf6e94c6pNPZIC/o5rclMhw==} + '@cspell/dict-npm@5.2.18': + resolution: {integrity: sha512-uJV1T7y9ifFysO22XmxjU7y95c+02lfCZHNsTYHw2KOL6tLjc3XK/i0xt9iGLkPpcxwNJSCdu13UpjXZGqce/Q==} - '@cspell/dict-php@4.1.0': - resolution: {integrity: sha512-dTDeabyOj7eFvn2Q4Za3uVXM2+SzeFMqX8ly2P0XTo4AzbCmI2hulFD/QIADwWmwiRrInbbf8cxwFHNIYrXl4w==} + '@cspell/dict-php@4.0.15': + resolution: {integrity: sha512-iepGB2gtToMWSTvybesn4/lUp4LwXcEm0s8vasJLP76WWVkq1zYjmeS+WAIzNgsuURyZ/9mGqhS0CWMuo74ODw==} '@cspell/dict-powershell@5.0.15': resolution: {integrity: sha512-l4S5PAcvCFcVDMJShrYD0X6Huv9dcsQPlsVsBGbH38wvuN7gS7+GxZFAjTNxDmTY1wrNi1cCatSg6Pu2BW4rgg==} @@ -3334,8 +3816,8 @@ packages: '@cspell/dict-public-licenses@2.0.15': resolution: {integrity: sha512-cJEOs901H13Pfy0fl4dCD1U+xpWIMaEPq8MeYU83FfDZvellAuSo4GqWCripfIqlhns/L6+UZEIJSOZnjgy7Wg==} - '@cspell/dict-python@4.2.21': - resolution: {integrity: sha512-M9OgwXWhpZqEZqKU2psB2DFsT8q5SwEahkQeIpNIRWIErjwG7I9yYhhfvPz6s5gMCMhhb3hqcPJTnmdgqGrQyg==} + '@cspell/dict-python@4.2.20': + resolution: {integrity: sha512-c1wbfb3MDMSY4UTNdGnA18NkrcX6cMlYER0HSpGYh2jLK43gS1QL3j2B49qgnRYfcLUp4xgeA05vzCQsjGbwuQ==} '@cspell/dict-r@2.1.1': resolution: {integrity: sha512-71Ka+yKfG4ZHEMEmDxc6+blFkeTTvgKbKAbwiwQAuKl3zpqs1Y0vUtwW2N4b3LgmSPhV3ODVY0y4m5ofqDuKMw==} @@ -3349,11 +3831,11 @@ packages: '@cspell/dict-scala@5.0.8': resolution: {integrity: sha512-YdftVmumv8IZq9zu1gn2U7A4bfM2yj9Vaupydotyjuc+EEZZSqAafTpvW/jKLWji2TgybM1L2IhmV0s/Iv9BTw==} - '@cspell/dict-shell@1.1.2': - resolution: {integrity: sha512-WqOUvnwcHK1X61wAfwyXq04cn7KYyskg90j4lLg3sGGKMW9Sq13hs91pqrjC44Q+lQLgCobrTkMDw9Wyl9nRFA==} + '@cspell/dict-shell@1.1.1': + resolution: {integrity: sha512-T37oYxE7OV1x/1D4/13Y8JZGa1QgDCXV7AVt3HLXjn0Fe3TaNDvf5sU0fGnXKmBPqFFrHdpD3uutAQb1dlp15g==} - '@cspell/dict-software-terms@5.1.11': - resolution: {integrity: sha512-xwARdlp6o81BK7uNl4qR5CmLBXuc9xWyEeEwzeAw/8SkBdYheVQO6F1Fey2iqMRDT9LAb5Znbg83pJVpLjgBjg==} + '@cspell/dict-software-terms@5.1.9': + resolution: {integrity: sha512-lpiSpS1iTF2n8barqVkPmhe5qXs5291IqcDUPr5ttFRxPMZ7pgrMUdvcdNUdkajymjDOyWfUNhdYXW7JndThZw==} '@cspell/dict-sql@2.2.1': resolution: {integrity: sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg==} @@ -3717,11 +4199,11 @@ packages: peerDependencies: vue: ^3.5.17 - '@emnapi/core@1.7.0': - resolution: {integrity: sha512-pJdKGq/1iquWYtv1RRSljZklxHCOCAJFJrImO5ZLKPJVJlVUcs8yFwNQlqS0Lo8xT1VAXXTCZocF9n26FWEKsw==} + '@emnapi/core@1.6.0': + resolution: {integrity: sha512-zq/ay+9fNIJJtJiZxdTnXS20PllcYMX3OE23ESc4HK/bdYu3cOWYVhsOhVnXALfU/uqJIxn5NBPd9z4v+SfoSg==} - '@emnapi/runtime@1.7.0': - resolution: {integrity: sha512-oAYoQnCYaQZKVS53Fq23ceWMRxq5EhQsE0x0RdQ55jT7wagMu5k+fS39v1fiSLrtrLQlXwVINenqhLMtTrV/1Q==} + '@emnapi/runtime@1.6.0': + resolution: {integrity: sha512-obtUmAHTMjll499P+D9A3axeJFlhdjOWdKUNs/U6QIGT7V5RjcUW1xToAzjvmgTSQhDbYn/NwfTRoJcQ2rNBxA==} '@emnapi/wasi-threads@1.1.0': resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} @@ -3895,32 +4377,32 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.12.2': - resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} '@eslint/config-array@0.21.1': resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/config-helpers@0.4.2': - resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} + '@eslint/config-helpers@0.4.1': + resolution: {integrity: sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/core@0.13.0': resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.17.0': - resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} + '@eslint/core@0.16.0': + resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/eslintrc@3.3.1': resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.39.1': - resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==} + '@eslint/js@9.38.0': + resolution: {integrity: sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.7': @@ -3931,8 +4413,8 @@ packages: resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.4.1': - resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} + '@eslint/plugin-kit@0.4.0': + resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@faker-js/faker@9.9.0': @@ -3951,8 +4433,8 @@ packages: '@floating-ui/vue@1.1.9': resolution: {integrity: sha512-BfNqNW6KA83Nexspgb9DZuz578R7HT8MZw1CfK9I6Ah4QReNWEJsXWHN+SdmOVLNGmTPDi+fDT535Df5PzMLbQ==} - '@form-create/ant-design-vue@3.2.32': - resolution: {integrity: sha512-0W4GDqbhwK14WiVZK6PvToIu2Ug21zMHIsC93w4gtOBQ1z19qCS28iRVaOppAZ7KbQ13uOdQyRi8vCzfsa0PmA==} + '@form-create/ant-design-vue@3.2.31': + resolution: {integrity: sha512-t2Hl3DcxS0BgzTrt8FQ0y9eHVOlFXp1D6cx4wE70mQHe43oQMK5oMSaYi4O9keb9F2SKANn/ozJh7DOOfAnVdg==} peerDependencies: vue: ^3.5.17 @@ -3997,8 +4479,8 @@ packages: '@form-create/component-wangeditor@3.2.14': resolution: {integrity: sha512-N/U/hFBdBu2OIguxoKe1Kslq5fW6XmtyhKDImLfKLn1xI6X5WUtt3r7QTaUPcVUl2vntpM9wJ/FBdG17RzF/Dg==} - '@form-create/core@3.2.32': - resolution: {integrity: sha512-1nXMBqtE0v1jTd7vQ5V5Rm6iLzlwnDiUO/Xu/sIu5sMyWw60XX1MIbrDg3ou+0kUvVOk3cOpgckXxU1HZEuWTw==} + '@form-create/core@3.2.31': + resolution: {integrity: sha512-7WTHeQk2M8bWWuQXiLKdeUQ8i6eqcoP3m5KjgcekLIcMKPb48yVqULRcAujK3jGZgLHm5IW4KVt7nw0oxWP7iQ==} peerDependencies: vue: ^3.5.17 @@ -4007,8 +4489,8 @@ packages: peerDependencies: vue: ^3.5.17 - '@form-create/element-ui@3.2.32': - resolution: {integrity: sha512-n3O4gcGTGKrF+oFTLs3vMO/MivLSQdYds096OAYKR8DULTNyqQB6eMsPOIE8u8FqY2kT7C+eh/5TwbBElYwSvw==} + '@form-create/element-ui@3.2.31': + resolution: {integrity: sha512-/dyd5pSRu0GnF27LluK62dLuNNTortVNOizQ7qk3mdfUoaf1Gsx4yAzvU9/SQNtyKvvQt0AH5blxc03CWFddhA==} peerDependencies: vue: ^3.5.17 @@ -4034,13 +4516,22 @@ packages: resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} engines: {node: '>=18.18'} - '@ibm/telemetry-js@1.10.2': - resolution: {integrity: sha512-F8+/NNUwtm8BuFz18O9KPvIFTFDo8GUSoyhPxPjEpk7nEyEzWGfhIiEPhL00B2NdHRLDSljh3AiCfSnL/tutiQ==} - hasBin: true + '@iconify-json/logos@1.2.9': + resolution: {integrity: sha512-G6VCdFnwZcrT6Eveq3m43oJfLw/CX8plwFcE+2jgv3fiGB64pTmnU7Yd1MNZ/eA+/Re2iEDhuCfSNOWTHwwK8w==} + + '@iconify-json/octicon@1.2.16': + resolution: {integrity: sha512-lVf3SbtRK0kNLAK7PxBoiyNGRZVdKpi+9y2/DXv8nWeFgBhU/ctK8D1s4wd0FNp1ZMyrh7K2MXmbnENcDOIUhA==} - '@iconify-json/logos@1.2.10': - resolution: {integrity: sha512-qxaXKJ6fu8jzTMPQdHtNxlfx6tBQ0jXRbHZIYy5Ilh8Lx9US9FsAdzZWUR8MXV8PnWTKGDFO4ZZee9VwerCyMA==} +<<<<<<< HEAD + '@iconify-json/simple-icons@1.2.55': + resolution: {integrity: sha512-9vc04pmup/zcef8hDypWU8nMwMaFVkWuUzWkxyL++DVp5AA8baoJHK6RyKN1v+cvfR2agxkUb053XVggzFFkTA==} + '@iconify-json/vscode-icons@1.2.32': + resolution: {integrity: sha512-UzZmL6hF02YGu/qEbpskEVnstlNJG+c+0PNzNYTIBf/dXylWHLUVufhOXqAzuGRjkUZ2q7rPpOEwLUPkhkFHUA==} + + '@iconify/json@2.2.398': + resolution: {integrity: sha512-SEUDjkyAenAKMd5hDfzNzeObZw+KgQdIHaOuWA4yv89qSf2s0dJ7L1iXhRjtEZxFnuXQ2D67uFiHmE+90jvDGQ==} +======= '@iconify-json/octicon@1.2.18': resolution: {integrity: sha512-rj94lgRl70HXovRxD+xSOpSql6cj3N8rv3ouSh7UJEuAFim0RcCEt2JQhr8hiS5Lj1D65EQP7oSNMrVOkYi8kg==} @@ -4052,6 +4543,7 @@ packages: '@iconify/json@2.2.405': resolution: {integrity: sha512-wpZMsZoqt6tHbipJ/JmkhRK1TWkmRrTBfL2pi48qXyqUxF56+OEUVB61VkcQ1hMKj/tDAIicFSirkaRZkMwliw==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@iconify/tailwind@1.2.0': resolution: {integrity: sha512-KgpIHWOTcRYw1XcoUqyNSrmYyfLLqZYu3AmP8zdfLk0F5TqRO8YerhlvlQmGfn7rJXgPeZN569xPAJnJ53zZxA==} @@ -4175,8 +4667,8 @@ packages: '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} - '@jspm/generator@2.7.6': - resolution: {integrity: sha512-rAUFW/+7kORaUngC+jevgK00mzD30wC4tErjneVZ4LDHuUYa44OQ/o78Hd3pYlf+tHocMyW7rQD52pt8jhW6lA==} + '@jspm/generator@2.7.4': + resolution: {integrity: sha512-DmAERvcXD0suJ4EXuoX7jCj1Tig02FnUrt280bwMs/A1ir1Dwm0Q6WRNtwh5Bw/gdVKoP3mjuonLAEYZXqwh7A==} '@jspm/import-map@1.2.2': resolution: {integrity: sha512-QrM7+lkgVE8t9NZSm9fDSzheguEOVCOxueKxSwgoOt7yUWesWKDFmmL9bQFURl4IqMcpPz7VV2Tvw9s9emaJzQ==} @@ -4196,14 +4688,14 @@ packages: '@lezer/common@1.3.0': resolution: {integrity: sha512-L9X8uHCYU310o99L3/MpJKYxPzXPOS7S0NmBaM7UO/x2Kb2WbmMLSkfvdr1KxRIFYOpbY0Jhn7CfLSUDzL8arQ==} - '@lezer/highlight@1.2.3': - resolution: {integrity: sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==} + '@lezer/highlight@1.2.2': + resolution: {integrity: sha512-z8TQwaBXXQIvG6i2g3e9cgMwUUXu9Ib7jo2qRRggdhwKpM56Dw3PM3wmexn+EGaaOZ7az0K7sjc3/gcGW7sz7A==} - '@lezer/lr@1.4.3': - resolution: {integrity: sha512-yenN5SqAxAPv/qMnpWW0AT7l+SxVrgG+u0tNsRQWqbrz66HIl8DnEbBObvy21J5K7+I1v7gsAnlE2VQ5yYVSeA==} + '@lezer/lr@1.4.2': + resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==} - '@lezer/markdown@1.6.0': - resolution: {integrity: sha512-AXb98u3M6BEzTnreBnGtQaF7xFTiMA92Dsy5tqEjpacbjRxDSFdN4bKJo9uvU4cEEOS7D2B9MT7kvDgOEIzJSw==} + '@lezer/markdown@1.5.1': + resolution: {integrity: sha512-F3ZFnIfNAOy/jPSk6Q0e3bs7e9grfK/n5zerkKoc5COH6Guy3Zb0vrJwXzdck79K16goBhYBRAvhf+ksqe0cMg==} '@manypkg/find-root@1.1.0': resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} @@ -4231,11 +4723,11 @@ packages: '@marijn/find-cluster-break@1.0.2': resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==} - '@microsoft/api-extractor-model@7.31.3': - resolution: {integrity: sha512-dv4quQI46p0U03TCEpasUf6JrJL3qjMN7JUAobsPElxBv4xayYYvWW9aPpfYV+Jx6hqUcVaLVOeV7+5hxsyoFQ==} + '@microsoft/api-extractor-model@7.31.2': + resolution: {integrity: sha512-d0WwxwBLZaHokTrOngqHVkQK59NlveV5RE4wEpjaybhSNmEK9N7KPCcT5n8JcpH6k5o6AhxG47g1km2D7BZw8Q==} - '@microsoft/api-extractor@7.54.0': - resolution: {integrity: sha512-t0SEcbVUPy4yAVykPafTNWktBg728X6p9t8qCuGDsYr1/lz2VQFihYDP2CnBFSArP5vwJPcvxktoKVSqH326cA==} + '@microsoft/api-extractor@7.53.2': + resolution: {integrity: sha512-hG3+wJY6aZlkQhGpUbhq1C5F1uJLsmDjrwVea+WT18RbD1XtIGn/c4uyMF7gdXLjLNwErB47hnRk9QNjpEHUWA==} hasBin: true '@microsoft/fetch-event-source@2.0.1': @@ -4277,8 +4769,13 @@ packages: resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==} engines: {node: ^18.17.0 || >=20.5.0} +<<<<<<< HEAD + '@nuxt/kit@3.19.3': + resolution: {integrity: sha512-ze46EW5xW+UxDvinvPkYt2MzR355Az1lA3bpX8KDialgnCwr+IbkBij/udbUEC6ZFbidPkfK1eKl4ESN7gMY+w==} +======= '@nuxt/kit@3.20.1': resolution: {integrity: sha512-TIslaylfI5kd3AxX5qts0qyrIQ9Uq3HAA1bgIIJ+c+zpDfK338YS+YrCWxBBzDMECRCbAS58mqAd2MtJfG1ENA==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef engines: {node: '>=18.12.0'} '@one-ini/wasm@0.1.1': @@ -4428,8 +4925,8 @@ packages: '@poppinss/colors@4.1.5': resolution: {integrity: sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==} - '@poppinss/dumper@0.6.5': - resolution: {integrity: sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==} + '@poppinss/dumper@0.6.4': + resolution: {integrity: sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==} '@poppinss/exception@1.2.2': resolution: {integrity: sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==} @@ -4441,8 +4938,8 @@ packages: '@rolldown/pluginutils@1.0.0-beta.29': resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==} - '@rolldown/pluginutils@1.0.0-beta.47': - resolution: {integrity: sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==} + '@rolldown/pluginutils@1.0.0-beta.44': + resolution: {integrity: sha512-g6eW7Zwnr2c5RADIoqziHoVs6b3W5QTQ4+qbpfjbkMJ9x+8Og211VW/oot2dj9dVwaK/UyC6Yo+02gV+wWQVNg==} '@rollup/plugin-alias@5.1.1': resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} @@ -4464,8 +4961,8 @@ packages: '@types/babel__core': optional: true - '@rollup/plugin-commonjs@28.0.9': - resolution: {integrity: sha512-PIR4/OHZ79romx0BVVll/PkwWpJ7e5lsqFa3gFfcrFPWwLXLV39JVUzQV9RKjWerE7B845Hqjj9VYlQeieZ2dA==} + '@rollup/plugin-commonjs@28.0.8': + resolution: {integrity: sha512-o1Ug9PxYsF61R7/NXO/GgMZZproLd/WH2XA53Tp9ppf6bU1lMlTtC/gUM6zM3mesi2E0rypk+PNtVrELREyWEQ==} engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 @@ -4514,8 +5011,8 @@ packages: peerDependencies: rollup: ^1.20.0 || ^2.0.0 - '@rollup/plugin-replace@6.0.3': - resolution: {integrity: sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==} + '@rollup/plugin-replace@6.0.2': + resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -4672,8 +5169,8 @@ packages: cpu: [x64] os: [win32] - '@rushstack/node-core-library@5.18.0': - resolution: {integrity: sha512-XDebtBdw5S3SuZIt+Ra2NieT8kQ3D2Ow1HxhDQ/2soinswnOu9e7S69VSwTOLlQnx5mpWbONu+5JJjDxMAb6Fw==} + '@rushstack/node-core-library@5.17.1': + resolution: {integrity: sha512-Mtcsa0aRJgYJOpeTe4qElLTRBlijNohdliq/xOhqce5rlzMIfLr73j9wUuj6GYPZPbG0S+is/RL2l0m/vnL55A==} peerDependencies: '@types/node': '*' peerDependenciesMeta: @@ -4691,16 +5188,16 @@ packages: '@rushstack/rig-package@0.6.0': resolution: {integrity: sha512-ZQmfzsLE2+Y91GF15c65L/slMRVhF6Hycq04D4TwtdGaUAbIXXg9c5pKA5KFU7M4QMaihoobp9JJYpYcaY3zOw==} - '@rushstack/terminal@0.19.3': - resolution: {integrity: sha512-0P8G18gK9STyO+CNBvkKPnWGMxESxecTYqOcikHOVIHXa9uAuTK+Fw8TJq2Gng1w7W6wTC9uPX6hGNvrMll2wA==} + '@rushstack/terminal@0.19.2': + resolution: {integrity: sha512-SJLC+6oUrJ0OOpuuwXxhktCTE3jeYVIwtvREdNhbcnVQrYGaDJpAoBgNVfw+VH0pTPpFLBqoPHsRRz7mj7WlbA==} peerDependencies: '@types/node': '*' peerDependenciesMeta: '@types/node': optional: true - '@rushstack/ts-command-line@5.1.3': - resolution: {integrity: sha512-Kdv0k/BnnxIYFlMVC1IxrIS0oGQd4T4b7vKfx52Y2+wk2WZSDFIvedr7JrhenzSlm3ou5KwtoTGTGd5nbODRug==} + '@rushstack/ts-command-line@5.1.2': + resolution: {integrity: sha512-jn0EnSefYrkZDrBGd6KGuecL84LI06DgzL4hVQ46AUijNBt2nRU/ST4HhrfII/w91siCd1J/Okvxq/BS75Me/A==} '@sec-ant/readable-stream@0.4.1': resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} @@ -4732,8 +5229,8 @@ packages: '@simonwep/pickr@1.8.2': resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==} - '@sindresorhus/is@7.1.1': - resolution: {integrity: sha512-rO92VvpgMc3kfiTjGT52LEtJ8Yc5kCWhZjLQ3LwlA4pSgPpQO7bVpYXParOD8Jwf+cVQECJo3yP/4I8aZtUQTQ==} + '@sindresorhus/is@7.1.0': + resolution: {integrity: sha512-7F/yz2IphV39hiS2zB4QYVkivrptHHh0K8qJJd9HhuWSdvf8AN7NpebW3CcDZDBQsUPMoDKWsY2WWgW7bqOcfA==} engines: {node: '>=18'} '@sindresorhus/merge-streams@2.3.0': @@ -4744,8 +5241,8 @@ packages: resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} engines: {node: '>=18'} - '@speed-highlight/core@1.2.12': - resolution: {integrity: sha512-uilwrK0Ygyri5dToHYdZSjcvpS2ZwX0w5aSt3GCEN9hrjxWCoeV4Z2DTXuxjwbntaLQIEEAlCeNQss5SoHvAEA==} + '@speed-highlight/core@1.2.7': + resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==} '@stylistic/stylelint-plugin@3.1.3': resolution: {integrity: sha512-85fsmzgsIVmyG3/GFrjuYj6Cz8rAM7IZiPiXCMiSMfoDOC1lOrzrXPDk24WqviAghnPqGpx8b0caK2PuewWGFg==} @@ -4786,8 +5283,8 @@ packages: resolution: {integrity: sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==} engines: {node: '>=12'} - '@tanstack/query-core@5.90.7': - resolution: {integrity: sha512-6PN65csiuTNfBMXqQUxQhCNdtm1rV+9kC9YwWAIKcaxAauq3Wu7p18j3gQY3YIBJU70jT/wzCCZ2uqto/vQgiQ==} + '@tanstack/query-core@5.90.5': + resolution: {integrity: sha512-wLamYp7FaDq6ZnNehypKI5fNvxHPfTYylE0m/ZpuuzJfJqhR5Pxg9gvGBHZx4n7J+V5Rg5mZxHHTlv25Zt5u+w==} '@tanstack/store@0.7.7': resolution: {integrity: sha512-xa6pTan1bcaqYDS9BDpSiS63qa6EoDkPN9RsRaxHuDdVDNntzq3xNwR5YKTU/V3SkSyC9T4YVOPh2zRQN0nhIQ==} @@ -4795,8 +5292,8 @@ packages: '@tanstack/virtual-core@3.13.12': resolution: {integrity: sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==} - '@tanstack/vue-query@5.90.7': - resolution: {integrity: sha512-2h0esebc2qVRVDge3gFArhss5+qn/Wb4abXuaEliSy+/xPWQMrEX7Ny0UKkCy1HcMZZjvfTtNRUfpYrx+vpipw==} + '@tanstack/vue-query@5.90.5': + resolution: {integrity: sha512-bTEmgIb6o5BqkoJPNV7ZKKsDHjiVnNydORw1n6S/x0dppb3lTT5KFOotQ5PqZG3OQY+9AwA6RJJN3pEx+9j1Pg==} peerDependencies: '@vue/composition-api': ^1.1.2 vue: ^3.5.17 @@ -4818,11 +5315,11 @@ packages: peerDependencies: vue: ^3.5.17 - '@tinyflow-ai/ui@1.1.9': - resolution: {integrity: sha512-Y20B5YKJJ9T6iw6aLPDIteziekq5+9rHrMKGco4hmwLrGfzAjbfdWAk9alMrQ/9MAdeXRxDsBXTSsqYQROy+DQ==} + '@tinyflow-ai/ui@1.1.7': + resolution: {integrity: sha512-aFI5dvYoKyp7sOBh0PXtta2wzzSwnfiMjPDEIGqRyR5nH1op8PLrD1Uw1OxAjV0iXoP+uvVWKZEtP8SVFJyXbw==} - '@tinyflow-ai/vue@1.1.9': - resolution: {integrity: sha512-6UHG5AqlimsOZOvjcLldtT/lk2VYNUO8wX6i7TRBZignDdJlUsJwWZHhtF27Crj3ol9mIGnXr7cPBe6Y9P4iFw==} + '@tinyflow-ai/vue@1.1.7': + resolution: {integrity: sha512-zRuMlUU3mz6wIxsCmzk42PGBTH2g5OYBlEB00GJ2Z4AalhKIIWotTZE8h6ixNUEVRMog+XZ+fIIhjjgicjSLVA==} peerDependencies: vue: ^3.5.17 @@ -4838,8 +5335,8 @@ packages: '@tybys/wasm-util@0.10.1': resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} - '@types/archiver@6.0.4': - resolution: {integrity: sha512-ULdQpARQ3sz9WH4nb98mJDYA0ft2A8C4f4fovvUcFwINa1cgGjY36JCAYuP5YypRq4mco1lJp1/7jEMS2oR0Hg==} + '@types/archiver@6.0.3': + resolution: {integrity: sha512-a6wUll6k3zX6qs5KlxIggs1P1JcYJaTCx2gnlr+f0S1yd2DoaEwoIK10HmBaLnZwWneBz+JBm0dwcZu0zECBcQ==} '@types/argparse@1.0.38': resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} @@ -4850,11 +5347,11 @@ packages: '@types/chai@5.2.3': resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} - '@types/codemirror@5.60.17': - resolution: {integrity: sha512-AZq2FIsUHVMlp7VSe2hTfl5w4pcUkoFkM3zVsRKsn1ca8CXRDYvnin04+HP2REkwsxemuHqvDofdlhUWNpbwfw==} + '@types/codemirror@5.60.16': + resolution: {integrity: sha512-V/yHdamffSS075jit+fDxaOAmdP2liok8NSNJnAZfDJErzOheuygHZEhAJrfmk5TEyM32MhkZjwo/idX791yxw==} - '@types/conventional-commits-parser@5.0.2': - resolution: {integrity: sha512-BgT2szDXnVypgpNxOK8aL5SGjUdaQbC++WZNjF1Qge3Og2+zhHj+RWhmehLhYyvQwqAmvezruVfOf8+3m74W+g==} + '@types/conventional-commits-parser@5.0.1': + resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} '@types/crypto-js@4.2.2': resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==} @@ -5027,6 +5524,9 @@ packages: '@types/node@24.10.0': resolution: {integrity: sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==} + '@types/node@24.9.1': + resolution: {integrity: sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==} + '@types/nprogress@0.2.3': resolution: {integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==} @@ -5036,8 +5536,8 @@ packages: '@types/postcss-import@14.0.3': resolution: {integrity: sha512-raZhRVTf6Vw5+QbmQ7LOHSDML71A5rj4+EqDzAbrZPfxfoGzFxMHRCq16VlddGIZpHELw0BG4G0YE2ANkdZiIQ==} - '@types/qrcode@1.5.6': - resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==} + '@types/qrcode@1.5.5': + resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==} '@types/qs@6.14.0': resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} @@ -5048,8 +5548,8 @@ packages: '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - '@types/sortablejs@1.15.9': - resolution: {integrity: sha512-7HP+rZGE2p886PKV9c9OJzLBI6BBJu1O7lJGYnPyG3fS4/duUCcngkNCjsLwIMV+WMqANe3tt4irrXHSIe68OQ==} + '@types/sortablejs@1.15.8': + resolution: {integrity: sha512-b79830lW+RZfwaztgs1aVPgbasJ8e7AXtZYHTELNXZPsERt4ymJdjV4OccDbHQAvHrCcFpbF78jkm0R6h/pZVg==} '@types/tern@0.23.9': resolution: {integrity: sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==} @@ -5063,9 +5563,12 @@ packages: '@types/unist@3.0.3': resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} +<<<<<<< HEAD +======= '@types/validator@13.15.4': resolution: {integrity: sha512-LSFfpSnJJY9wbC0LQxgvfb+ynbHftFo0tMsFOl/J4wexLnYMmDSPaj2ZyDv3TkfL1UePxPrxOWJfbiRS8mQv7A==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@types/video.js@7.3.58': resolution: {integrity: sha512-1CQjuSrgbv1/dhmcfQ83eVyYbvGyqhTvb2Opxr0QCV+iJ4J6/J+XWQ3Om59WiwCd1MN3rDUHasx5XRrpUtewYQ==} @@ -5075,23 +5578,23 @@ packages: '@types/web-bluetooth@0.0.21': resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==} - '@typescript-eslint/eslint-plugin@8.46.3': - resolution: {integrity: sha512-sbaQ27XBUopBkRiuY/P9sWGOWUW4rl8fDoHIUmLpZd8uldsTyB4/Zg6bWTegPoTLnKj9Hqgn3QD6cjPNB32Odw==} + '@typescript-eslint/eslint-plugin@8.46.2': + resolution: {integrity: sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.46.3 + '@typescript-eslint/parser': ^8.46.2 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.46.3': - resolution: {integrity: sha512-6m1I5RmHBGTnUGS113G04DMu3CpSdxCAU/UvtjNWL4Nuf3MW9tQhiJqRlHzChIkhy6kZSAQmc+I1bcGjE3yNKg==} + '@typescript-eslint/parser@8.46.2': + resolution: {integrity: sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/project-service@8.46.3': - resolution: {integrity: sha512-Fz8yFXsp2wDFeUElO88S9n4w1I4CWDTXDqDr9gYvZgUpwXQqmZBr9+NTTql5R3J7+hrJZPdpiWaB9VNhAKYLuQ==} + '@typescript-eslint/project-service@8.46.2': + resolution: {integrity: sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' @@ -5100,18 +5603,18 @@ packages: resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/scope-manager@8.46.3': - resolution: {integrity: sha512-FCi7Y1zgrmxp3DfWfr+3m9ansUUFoy8dkEdeQSgA9gbm8DaHYvZCdkFRQrtKiedFf3Ha6VmoqoAaP68+i+22kg==} + '@typescript-eslint/scope-manager@8.46.2': + resolution: {integrity: sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.46.3': - resolution: {integrity: sha512-GLupljMniHNIROP0zE7nCcybptolcH8QZfXOpCfhQDAdwJ/ZTlcaBOYebSOZotpti/3HrHSw7D3PZm75gYFsOA==} + '@typescript-eslint/tsconfig-utils@8.46.2': + resolution: {integrity: sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.46.3': - resolution: {integrity: sha512-ZPCADbr+qfz3aiTTYNNkCbUt+cjNwI/5McyANNrFBpVxPt7GqpEYz5ZfdwuFyGUnJ9FdDXbGODUu6iRCI6XRXw==} + '@typescript-eslint/type-utils@8.46.2': + resolution: {integrity: sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -5121,8 +5624,8 @@ packages: resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/types@8.46.3': - resolution: {integrity: sha512-G7Ok9WN/ggW7e/tOf8TQYMaxgID3Iujn231hfi0Pc7ZheztIJVpO44ekY00b7akqc6nZcvregk0Jpah3kep6hA==} + '@typescript-eslint/types@8.46.2': + resolution: {integrity: sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript-eslint/typescript-estree@7.18.0': @@ -5134,8 +5637,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@8.46.3': - resolution: {integrity: sha512-f/NvtRjOm80BtNM5OQtlaBdM5BRFUv7gf381j9wygDNL+qOYSNOgtQ/DCndiYi80iIOv76QqaTmp4fa9hwI0OA==} + '@typescript-eslint/typescript-estree@8.46.2': + resolution: {integrity: sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' @@ -5146,8 +5649,8 @@ packages: peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/utils@8.46.3': - resolution: {integrity: sha512-VXw7qmdkucEx9WkmR3ld/u6VhRyKeiF1uxWwCy/iuNfokjJ7VhsgLSOTjsol8BunSw190zABzpwdNsze2Kpo4g==} + '@typescript-eslint/utils@8.46.2': + resolution: {integrity: sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -5157,8 +5660,8 @@ packages: resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/visitor-keys@8.46.3': - resolution: {integrity: sha512-uk574k8IU0rOF/AjniX8qbLSGURJVUCeM5e4MIMKBFFi8weeiLrG1fyQejyLXQpRZbU/1BuQasleV/RfHC3hHg==} + '@typescript-eslint/visitor-keys@8.46.2': + resolution: {integrity: sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -5381,6 +5884,19 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 +<<<<<<< HEAD + '@vue/compiler-core@3.5.22': + resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==} + + '@vue/compiler-dom@3.5.22': + resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==} + + '@vue/compiler-sfc@3.5.22': + resolution: {integrity: sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==} + + '@vue/compiler-ssr@3.5.22': + resolution: {integrity: sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==} +======= '@vue/compiler-core@3.5.24': resolution: {integrity: sha512-eDl5H57AOpNakGNAkFDH+y7kTqrQpJkZFXhWZQGyx/5Wh7B1uQYvcWkvZi11BDhscPgj8N7XV3oRwiPnx1Vrig==} @@ -5392,6 +5908,7 @@ packages: '@vue/compiler-ssr@3.5.24': resolution: {integrity: sha512-trOvMWNBMQ/odMRHW7Ae1CdfYx+7MuiQu62Jtu36gMLXcaoqKvAyh+P73sYG9ll+6jLB6QPovqoKGGZROzkFFg==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} @@ -5429,6 +5946,24 @@ packages: typescript: optional: true +<<<<<<< HEAD + '@vue/reactivity@3.5.22': + resolution: {integrity: sha512-f2Wux4v/Z2pqc9+4SmgZC1p73Z53fyD90NFWXiX9AKVnVBEvLFOWCEgJD3GdGnlxPZt01PSlfmLqbLYzY/Fw4A==} + + '@vue/runtime-core@3.5.22': + resolution: {integrity: sha512-EHo4W/eiYeAzRTN5PCextDUZ0dMs9I8mQ2Fy+OkzvRPUYQEyK9yAjbasrMCXbLNhF7P0OUyivLjIy0yc6VrLJQ==} + + '@vue/runtime-dom@3.5.22': + resolution: {integrity: sha512-Av60jsryAkI023PlN7LsqrfPvwfxOd2yAwtReCjeuugTJTkgrksYJJstg1e12qle0NarkfhfFu1ox2D+cQotww==} + + '@vue/server-renderer@3.5.22': + resolution: {integrity: sha512-gXjo+ao0oHYTSswF+a3KRHZ1WszxIqO7u6XwNHqcqb9JfyIL/pbWrrh/xLv7jeDqla9u+LK7yfZKHih1e1RKAQ==} + peerDependencies: + vue: ^3.5.17 + + '@vue/shared@3.5.22': + resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==} +======= '@vue/reactivity@3.5.24': resolution: {integrity: sha512-BM8kBhtlkkbnyl4q+HiF5R5BL0ycDPfihowulm02q3WYp2vxgPcJuZO866qa/0u3idbMntKEtVNuAUp5bw4teg==} @@ -5445,10 +5980,16 @@ packages: '@vue/shared@3.5.24': resolution: {integrity: sha512-9cwHL2EsJBdi8NY22pngYYWzkTDhld6fAD6jlaeloNGciNSJL6bLpbxVgXl96X00Jtc6YWQv96YA/0sxex/k1A==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vue/test-utils@2.4.6': resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} + '@vueuse/components@13.9.0': + resolution: {integrity: sha512-0DDFpjG3hEEK+3YgSzE/OzOGqpo/KmxcXWzW2YdmgahZvaoUdegn68GmbdcHRJE7CH55dDj13Cz47iN8QoI3jQ==} + peerDependencies: + vue: ^3.5.17 + '@vueuse/core@12.8.2': resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==} @@ -5581,8 +6122,8 @@ packages: '@vueuse/shared@9.13.0': resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} - '@vxe-ui/core@4.2.13': - resolution: {integrity: sha512-c+YJg3L8WuwftsTBnHw56knMERkKJSmB+GOqPENE+MBNKPvHTohEuSV5XcY7UAK25lXwkWNKZjEkbEzNZZS5ig==} + '@vxe-ui/core@4.2.12': + resolution: {integrity: sha512-g6gNDykKrKLzxsDDFDYTD/6tWrV9AfSaU7WIlKCO67BSXgKDMaEVTsH7ZZ7fI5qkOO9DH1vo07kbacyBNx7gSQ==} peerDependencies: vue: ^3.5.17 @@ -5590,13 +6131,18 @@ packages: resolution: {integrity: sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==} engines: {node: '>=10.0.0'} +<<<<<<< HEAD + '@xyflow/svelte@1.4.0': + resolution: {integrity: sha512-LXokbj1nEP8FROE/y9/xU11G4dM2+mGBiMmPU714Mmk+bGnyot+nZmyR8Y7OFBUahY1mnMNfeclLPJKGy3r7tA==} +======= '@xyflow/svelte@1.4.1': resolution: {integrity: sha512-CAegVmLMpX64G6JnhiU7ezoIOY7aX88cf1fSOV8FutKdZNMxcJBykhvaXunOBf7jjDs9X887RH8Jgdl1rMwXww==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef peerDependencies: svelte: ^5.25.0 - '@xyflow/system@0.0.72': - resolution: {integrity: sha512-WBI5Aau0fXTXwxHPzceLNS6QdXggSWnGjDtj/gG669crApN8+SCmEtkBth1m7r6pStNo/5fI9McEi7Dk0ymCLA==} + '@xyflow/system@0.0.71': + resolution: {integrity: sha512-O2xIK84Uv1hH8qzeY94SKsj0R1n2jXHLsX6RZnM4x1Uc4oWiVbXDFucnkbFwhnQm3IIdAxkbgd2rEDp5oTRhhQ==} JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} @@ -5664,8 +6210,13 @@ packages: ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} +<<<<<<< HEAD + algoliasearch@5.40.1: + resolution: {integrity: sha512-iUNxcXUNg9085TJx0HJLjqtDE0r1RZ0GOGrt8KNQqQT5ugu8lZsHuMUYW/e0lHhq6xBvmktU9Bw4CXP9VQeKrg==} +======= algoliasearch@5.43.0: resolution: {integrity: sha512-hbkK41JsuGYhk+atBDxlcKxskjDCh3OOEDpdKZPtw+3zucBqhlojRG5e5KtCmByGyYvwZswVeaSWglgLn2fibg==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef engines: {node: '>= 14.0.0'} alien-signals@0.4.14: @@ -5681,8 +6232,8 @@ packages: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} - ansi-escapes@7.2.0: - resolution: {integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==} + ansi-escapes@7.1.1: + resolution: {integrity: sha512-Zhl0ErHcSRUaVfGUeUdDuLgpkEo8KIFjB4Y9uAc46ScOpdDiU1Dbyplh7qWJeJ/ZHpbyMSM26+X3BySgnIz40Q==} engines: {node: '>=18'} ansi-regex@5.0.1: @@ -5804,8 +6355,8 @@ packages: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} engines: {node: '>= 4.0.0'} - atomically@2.1.0: - resolution: {integrity: sha512-+gDffFXRW6sl/HCwbta7zK4uNqbPjv4YJEAdz7Vu+FLQHe77eZ4bvbJGi4hE0QPeJlMYMA3piXEr1UL3dAwx7Q==} + atomically@2.0.3: + resolution: {integrity: sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==} autolinker@3.16.2: resolution: {integrity: sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA==} @@ -5826,8 +6377,8 @@ packages: peerDependencies: axios: '>= 0.17.0' - axios@1.13.2: - resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==} + axios@1.12.2: + resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==} axobject-query@4.1.0: resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} @@ -5862,8 +6413,13 @@ packages: balanced-match@2.0.0: resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} +<<<<<<< HEAD + bare-events@2.8.0: + resolution: {integrity: sha512-AOhh6Bg5QmFIXdViHbMc2tLDsBIRxdkIaIddPslJF9Z5De3APBScuqGP2uThXnIpqFrgoxMNC6km7uXNIMLHXA==} +======= bare-events@2.8.2: resolution: {integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef peerDependencies: bare-abort-controller: '*' peerDependenciesMeta: @@ -5873,8 +6429,8 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.8.25: - resolution: {integrity: sha512-2NovHVesVF5TXefsGX1yzx1xgr7+m9JQenvz6FQY3qd+YXkKkYiv+vTCc7OriP9mcDZpTC5mAOYN4ocd29+erA==} + baseline-browser-mapping@2.8.19: + resolution: {integrity: sha512-zoKGUdu6vb2jd3YOq0nnhEDQVbPcHhco3UImJrv5dSkvxTc2pl2WjOPsjZXDwPDSl5eghIMuY3R6J9NDKF3KcQ==} hasBin: true benz-amr-recorder@1.1.5: @@ -5900,8 +6456,13 @@ packages: bintrees@1.0.2: resolution: {integrity: sha512-VOMgTMwjAaUG580SXn3LacVgjurrbMme7ZZNYGSSV7mmtY6QQRh0Eg3pwIcntQ77DErK1L0NxkbetjcoXzVwKw==} +<<<<<<< HEAD + birpc@2.6.1: + resolution: {integrity: sha512-LPnFhlDpdSH6FJhJyn4M0kFO7vtQ5iPw24FnG0y21q09xC7e8+1LeR31S1MAIrDAHp4m7aas4bEkTDTvMAtebQ==} +======= birpc@2.8.0: resolution: {integrity: sha512-Bz2a4qD/5GRhiHSwj30c/8kC8QGj12nNDwz3D4ErQ4Xhy35dsSDvF+RA/tWpjyU0pdGtSDiEk6B5fBGE1qNVhw==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} @@ -5938,8 +6499,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.27.0: - resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==} + browserslist@4.26.3: + resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -6034,8 +6595,8 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001754: - resolution: {integrity: sha512-x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==} + caniuse-lite@1.0.30001751: + resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==} ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -6062,8 +6623,8 @@ packages: character-entities-legacy@3.0.0: resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - chardet@2.1.1: - resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==} + chardet@2.1.0: + resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} check-error@2.1.1: resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} @@ -6313,6 +6874,10 @@ packages: cookie-es@2.0.0: resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==} + cookie@1.0.2: + resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} + engines: {node: '>=18'} + copy-anything@2.0.6: resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} @@ -6487,8 +7052,8 @@ packages: engines: {node: '>=4'} hasBin: true - cssnano-preset-default@7.0.10: - resolution: {integrity: sha512-6ZBjW0Lf1K1Z+0OKUAUpEN62tSXmYChXWi2NAA0afxEVsj9a+MbcB1l5qel6BHJHmULai2fCGRthCeKSFbScpA==} + cssnano-preset-default@7.0.9: + resolution: {integrity: sha512-tCD6AAFgYBOVpMBX41KjbvRh9c2uUjLXRyV7KHSIrwHiq5Z9o0TFfUCoM3TwVrRsRteN3sVXGNvjVNxYzkpTsA==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -6499,8 +7064,8 @@ packages: peerDependencies: postcss: ^8.4.32 - cssnano@7.1.2: - resolution: {integrity: sha512-HYOPBsNvoiFeR1eghKD5C3ASm64v9YVyJB4Ivnl2gqKoQYvjjN/G0rztvKQq8OxocUtC6sjqY8jwYngIB4AByA==} + cssnano@7.1.1: + resolution: {integrity: sha512-fm4D8ti0dQmFPeF8DXSAA//btEmqCOgAc/9Oa3C1LW94h5usNrJEfrON7b4FkPZgnDEn6OUs5NdxiJZmAtGOpQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -6691,8 +7256,8 @@ packages: date-fns@4.1.0: resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==} - dayjs@1.11.19: - resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==} + dayjs@1.11.18: + resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==} db0@0.3.4: resolution: {integrity: sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw==} @@ -6744,6 +7309,9 @@ packages: deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + deep-pick-omit@1.2.1: + resolution: {integrity: sha512-2J6Kc/m3irCeqVG42T+SaUMesaK7oGWaedGnQQK/+O0gYc+2SP5bKh/KKTE7d7SJ+GCA9UUE1GRzh6oDe0EnGw==} + deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} @@ -6856,10 +7424,6 @@ packages: resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - diff@8.0.2: - resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==} - engines: {node: '>=0.3.1'} - dijkstrajs@1.0.3: resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} @@ -6979,11 +7543,16 @@ packages: engines: {node: '>=0.10.0'} hasBin: true +<<<<<<< HEAD + electron-to-chromium@1.5.238: + resolution: {integrity: sha512-khBdc+w/Gv+cS8e/Pbnaw/FXcBUeKrRVik9IxfXtgREOWyJhR4tj43n3amkVogJ/yeQUqzkrZcFhtIxIdqmmcQ==} +======= electron-to-chromium@1.5.249: resolution: {integrity: sha512-5vcfL3BBe++qZ5kuFhD/p8WOM1N9m3nwvJPULJx+4xf2usSlZFJ0qoNYO2fOX4hi3ocuDcmDobtA+5SFr4OmBg==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef - element-plus@2.11.7: - resolution: {integrity: sha512-Bh47wuzsqaNBNDkbtlOlZER1cGcOB8GsXp/+C9b95MOrk0wvoHUV4NKKK7xMkfYNFYdYysQ752oMhnExgAL6+g==} + element-plus@2.11.5: + resolution: {integrity: sha512-O+bIVHQCjUDm4GiIznDXRoS8ar2TpWLwfOGnN/Aam0VXf5kbuc4SxdKKJdovWNxmxeqbcwjsSZPKgtXNcqys4A==} peerDependencies: vue: ^3.5.17 @@ -7080,8 +7649,8 @@ packages: resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} engines: {node: '>= 0.4'} - es-toolkit@1.41.0: - resolution: {integrity: sha512-bDd3oRmbVgqZCJS6WmeQieOrzpl3URcWBUVDXxOELlUW2FuW+0glPOz1n0KnRie+PdyvUZcXz2sOn00c6pPRIA==} + es-toolkit@1.40.0: + resolution: {integrity: sha512-8o6w0KFmU0CiIl0/Q/BCEOabF2IJaELM1T2PWj6e8KqzHv1gdx+7JtFnDwOx1kJH/isJ5NwlDG1nCr1HrRF94Q==} esbuild@0.25.3: resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==} @@ -7128,8 +7697,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-config-turbo@2.6.0: - resolution: {integrity: sha512-WdNSKL1vTl5IGyovn8w3xkaEKsK2n+l9Ybk+4oISptcom/vz9sO/9QcjEKuZSXG0zxrj9Oyx/UZA04hRxmOe+Q==} + eslint-config-turbo@2.5.8: + resolution: {integrity: sha512-wzxmN7dJNFGDwOvR/4j8U2iaIH/ruYez8qg/sCKrezJ3+ljbFMvJLmgKKt/1mDuyU9wj5aZqO6VijP3QH169FA==} peerDependencies: eslint: '>6.6.0' turbo: '>2.0.0' @@ -7232,8 +7801,8 @@ packages: peerDependencies: eslint: '>=8.44.0' - eslint-plugin-turbo@2.6.0: - resolution: {integrity: sha512-04TohZhq6YQVXBZVRvrn8ZTj1sUQYZmjUWsfwgFAlaM5Kbk5Fdh5mLBKfhGGzekB55E+Ut9qNzAGh+JW4rjiuA==} + eslint-plugin-turbo@2.5.8: + resolution: {integrity: sha512-bVjx4vTH0oTKIyQ7EGFAXnuhZMrKIfu17qlex/dps7eScPnGQLJ3r1/nFq80l8xA+8oYjsSirSQ2tXOKbz3kEw==} peerDependencies: eslint: '>6.6.0' turbo: '>2.0.0' @@ -7292,8 +7861,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.39.1: - resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==} + eslint@9.38.0: + resolution: {integrity: sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -7322,8 +7891,8 @@ packages: resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} engines: {node: '>=0.10'} - esrap@2.1.2: - resolution: {integrity: sha512-DgvlIQeowRNyvLPWW4PT7Gu13WznY288Du086E751mwwbsgr29ytBiYeLzAGIo0qk3Ujob0SDk8TiSaM5WQzNg==} + esrap@2.1.0: + resolution: {integrity: sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==} esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} @@ -7515,8 +8084,8 @@ packages: flatted@3.3.3: resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} - focus-trap@7.6.6: - resolution: {integrity: sha512-v/Z8bvMCajtx4mEXmOo7QEsIzlIOqRXTIwgUfsFOF9gEsespdbD0AkPIka1bSXZ8Y8oZ+2IVDQZePkTfEHZl7Q==} + focus-trap@7.6.5: + resolution: {integrity: sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==} follow-redirects@1.15.11: resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} @@ -7718,8 +8287,8 @@ packages: resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} engines: {node: '>=18'} - globals@16.5.0: - resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==} + globals@16.4.0: + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} engines: {node: '>=18'} globalthis@1.0.4: @@ -8402,8 +8971,8 @@ packages: kolorist@1.8.0: resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} - ky@1.14.0: - resolution: {integrity: sha512-Rczb6FMM6JT0lvrOlP5WUOCB7s9XKxzwgErzhKlKde1bEV90FXplV1o87fpt4PU/asJFiqjYJxAJyzJhcrxOsQ==} + ky@1.12.0: + resolution: {integrity: sha512-YRLmSUHCwOJRBMArtqMRLOmO7fewn3yOoui6aB8ERkRVXupa0UiaQaKbIXteMt4jUElhbdqTMsLFHs8APxxUoQ==} engines: {node: '>=18'} latest-version@9.0.0: @@ -8665,11 +9234,11 @@ packages: magic-string@0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - magic-string@0.30.21: - resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + magic-string@0.30.19: + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} - magicast@0.5.1: - resolution: {integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==} + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} @@ -8721,8 +9290,8 @@ packages: mdn-data@2.12.2: resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} - mdn-data@2.25.0: - resolution: {integrity: sha512-T2LPsjgUE/tgMmRXREVmwsux89DwWfNjiynOeXuLd2mX6jphGQ2YE3Ukz7LQ2VOFKiVZU/Ee1GqzHiipZCjymw==} + mdn-data@2.24.0: + resolution: {integrity: sha512-i97fklrJl03tL1tdRVw0ZfLLvuDsdb6wxL+TrJ+PKkCbLrp2PCu2+OYdCKychIUm19nSM/35S6qz7pJpnXttoA==} mdurl@2.0.0: resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} @@ -8809,8 +9378,13 @@ packages: min-dash@4.2.3: resolution: {integrity: sha512-VLMYQI5+FcD9Ad24VcB08uA83B07OhueAlZ88jBK6PyupTvEJwllTMUqMy0wPGYs7pZUEtEEMWdHB63m3LtEcg==} +<<<<<<< HEAD + min-document@2.19.0: + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} +======= min-document@2.19.1: resolution: {integrity: sha512-8lqe85PkqQJzIcs2iD7xW/WSxcncC3/DPVbTOafKNJDIMXwGfwXS350mH4SJslomntN2iYtFBuC0yNO3CEap6g==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef min-dom@4.2.1: resolution: {integrity: sha512-TMoL8SEEIhUWYgkj7XMSgxmwSyGI+4fP2KFFGnN3FbHfbGHVdsLYSz8LoIsgPhz4dWRmLvxWWSMgzZMJW5sZuA==} @@ -8822,10 +9396,6 @@ packages: resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} engines: {node: 20 || >=22} - minimatch@10.1.1: - resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} - engines: {node: 20 || >=22} - minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -8973,8 +9543,8 @@ packages: engines: {node: '>= 4.4.x'} hasBin: true - nitropack@2.12.9: - resolution: {integrity: sha512-t6qqNBn2UDGMWogQuORjbL2UPevB8PvIPsPHmqvWpeGOlPr4P8Oc5oA8t3wFwGmaolM2M/s2SwT23nx9yARmOg==} + nitropack@2.12.7: + resolution: {integrity: sha512-HWyzMBj2d8b14J6Cfnxv97ztnuHIgXNcrGiWCruLfb2ZfKsp6OCbZYJm5T9sv/ZKl8LedhatrMKG66HWJux9Rg==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -9031,8 +9601,8 @@ packages: node-mock-http@1.0.3: resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==} - node-releases@2.0.27: - resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + node-releases@2.0.26: + resolution: {integrity: sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==} nopt@7.2.1: resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} @@ -9103,8 +9673,8 @@ packages: resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} engines: {node: '>= 0.4'} - ofetch@1.5.1: - resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==} + ofetch@1.4.1: + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} ohash@2.0.11: resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} @@ -9342,8 +9912,8 @@ packages: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} - pinia-plugin-persistedstate@4.7.1: - resolution: {integrity: sha512-WHOqh2esDlR3eAaknPbqXrkkj0D24h8shrDPqysgCFR6ghqP/fpFfJmMPJp0gETHsvrh9YNNg6dQfo2OEtDnIQ==} + pinia-plugin-persistedstate@4.5.0: + resolution: {integrity: sha512-QTkP1xJVyCdr2I2p3AKUZM84/e+IS+HktRxKGAIuDzkyaKKV48mQcYkJFVVDuvTxlI5j6X3oZObpqoVB8JnWpw==} peerDependencies: '@nuxt/kit': '>=3.0.0' '@pinia/nuxt': '>=0.10.0' @@ -9356,10 +9926,10 @@ packages: pinia: optional: true - pinia@3.0.4: - resolution: {integrity: sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==} + pinia@3.0.3: + resolution: {integrity: sha512-ttXO/InUULUXkMHpTdp9Fj4hLpD/2AoJdmAbAeW2yu1iy1k+pkFekQXw5VpC0/5p51IOR/jDaDRfRWRnMMsGOA==} peerDependencies: - typescript: '>=4.5.0' + typescript: '>=4.4.4' vue: ^3.5.17 peerDependenciesMeta: typescript: @@ -9448,14 +10018,14 @@ packages: peerDependencies: postcss: ^8.4 - postcss-colormin@7.0.5: - resolution: {integrity: sha512-ekIBP/nwzRWhEMmIxHHbXHcMdzd1HIUzBECaj5KEdLz9DVP2HzT065sEhvOx1dkLjYW7jyD0CngThx6bpFi2fA==} + postcss-colormin@7.0.4: + resolution: {integrity: sha512-ziQuVzQZBROpKpfeDwmrG+Vvlr0YWmY/ZAk99XD+mGEBuEojoFekL41NCsdhyNUtZI7DPOoIWIR7vQQK9xwluw==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-convert-values@7.0.8: - resolution: {integrity: sha512-+XNKuPfkHTCEo499VzLMYn94TiL3r9YqRE3Ty+jP7UX4qjewUONey1t7CG21lrlTLN07GtGM8MqFVp86D4uKJg==} + postcss-convert-values@7.0.7: + resolution: {integrity: sha512-HR9DZLN04Xbe6xugRH6lS4ZQH2zm/bFh/ZyRkpedZozhvh+awAfbA0P36InO4fZfDhvYfNJeNvlTf1sjwGbw/A==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -9484,8 +10054,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-discard-comments@7.0.5: - resolution: {integrity: sha512-IR2Eja8WfYgN5n32vEGSctVQ1+JARfu4UH8M7bgGh1bC+xI/obsPJXaBpQF7MAByvgwZinhpHpdrmXtvVVlKcQ==} + postcss-discard-comments@7.0.4: + resolution: {integrity: sha512-6tCUoql/ipWwKtVP/xYiFf1U9QgJ0PUvxN7pTcsQ8Ns3Fnwq1pU5D5s1MhT/XySeLq6GXNvn37U46Ded0TckWg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -9604,8 +10174,8 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-merge-rules@7.0.7: - resolution: {integrity: sha512-njWJrd/Ms6XViwowaaCc+/vqhPG3SmXn725AGrnl+BgTuRPEacjiLEaGq16J6XirMJbtKkTwnt67SS+e2WGoew==} + postcss-merge-rules@7.0.6: + resolution: {integrity: sha512-2jIPT4Tzs8K87tvgCpSukRQ2jjd+hH6Bb8rEEOUDmmhOeTcqDg5fEFK8uKIu+Pvc3//sm3Uu6FRqfyv7YF7+BQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -9622,8 +10192,8 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-minify-params@7.0.5: - resolution: {integrity: sha512-FGK9ky02h6Ighn3UihsyeAH5XmLEE2MSGH5Tc4tXMFtEDx7B+zTG6hD/+/cT+fbF7PbYojsmmWjyTwFwW1JKQQ==} + postcss-minify-params@7.0.4: + resolution: {integrity: sha512-3OqqUddfH8c2e7M35W6zIwv7jssM/3miF9cbCSb1iJiWvtguQjlxZGIHK9JRmc8XAKmE2PFGtHSM7g/VcW97sw==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -9694,8 +10264,8 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-normalize-unicode@7.0.5: - resolution: {integrity: sha512-X6BBwiRxVaFHrb2WyBMddIeB5HBjJcAaUHyhLrM2FsxSq5TFqcHSsK7Zu1otag+o0ZphQGJewGH1tAyrD0zX1Q==} + postcss-normalize-unicode@7.0.4: + resolution: {integrity: sha512-LvIURTi1sQoZqj8mEIE8R15yvM+OhbR1avynMtI9bUzj5gGKR/gfZFd8O7VMj0QgJaIFzxDwxGl/ASMYAkqO8g==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -9753,8 +10323,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-reduce-initial@7.0.5: - resolution: {integrity: sha512-RHagHLidG8hTZcnr4FpyMB2jtgd/OcyAazjMhoy5qmWJOx1uxKh4ntk0Pb46ajKM0rkf32lRH4C8c9qQiPR6IA==} + postcss-reduce-initial@7.0.4: + resolution: {integrity: sha512-rdIC9IlMBn7zJo6puim58Xd++0HdbvHeHaPgXsimMfG1ijC5A9ULvNLSE0rUKVJOvNMcwewW4Ga21ngyJjY/+Q==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -10183,8 +10753,8 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rimraf@6.1.0: - resolution: {integrity: sha512-DxdlA1bdNzkZK7JiNWH+BAx1x4tEJWoTofIopFo6qWUU94jYrFZ0ubY05TqH3nWPJ1nKa1JWVFDINZ3fnrle/A==} + rimraf@6.0.1: + resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} engines: {node: 20 || >=22} hasBin: true @@ -10279,13 +10849,13 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sass@1.93.3: - resolution: {integrity: sha512-elOcIZRTM76dvxNAjqYrucTSI0teAF/L2Lv0s6f6b7FOwcwIuA357bIE871580AjHJuSvLIRUosgV+lIWx6Rgg==} + sass@1.93.2: + resolution: {integrity: sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==} engines: {node: '>=14.0.0'} hasBin: true - sax@1.4.3: - resolution: {integrity: sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==} + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} saxen@8.1.2: resolution: {integrity: sha512-xUOiiFbc3Ow7p8KMxwsGICPx46ZQvy3+qfNVhrkwfz3Vvq45eGt98Ft5IQaA1R/7Tb5B5MKh9fUR9x3c3nDTxw==} @@ -10638,11 +11208,8 @@ packages: strnum@1.1.2: resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==} - stubborn-fs@2.0.0: - resolution: {integrity: sha512-Y0AvSwDw8y+nlSNFXMm2g6L51rBGdAQT20J3YSOqxC53Lo3bjWRtr2BKcfYoAf352WYpsZSTURrA0tqhfgudPA==} - - stubborn-utils@1.0.2: - resolution: {integrity: sha512-zOh9jPYI+xrNOyisSelgym4tolKTJCQd5GBhK0+0xJvcYDcwlOoxF/rnFKQ2KRZknXSG9jWAp66fwP6AxN9STg==} + stubborn-fs@1.2.5: + resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==} style-mod@4.1.3: resolution: {integrity: sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==} @@ -10653,8 +11220,8 @@ packages: style-value-types@5.1.2: resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==} - stylehacks@7.0.7: - resolution: {integrity: sha512-bJkD0JkEtbRrMFtwgpJyBbFIwfDDONQ1Ov3sDLZQP8HuJ73kBOyx66H4bOcAbVWmnfLdvQ0AJwXxOMkpujcO6g==} + stylehacks@7.0.6: + resolution: {integrity: sha512-iitguKivmsueOmTO0wmxURXBP8uqOO+zikLGZ7Mm9e/94R4w5T999Js2taS/KBOnQ/wdC3jN3vNSrkGDrlnqQg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -10743,8 +11310,8 @@ packages: engines: {node: '>=16 || 14 >=14.17'} hasBin: true - superjson@2.2.5: - resolution: {integrity: sha512-zWPTX96LVsA/eVYnqOM2+ofcdPqdS1dAF1LN4TS2/MWuUpfitd9ctTa87wt4xrYnZnkLtS69xpBdSxVBP5Rm6w==} + superjson@2.2.3: + resolution: {integrity: sha512-ay3d+LW/S6yppKoTz3Bq4mG0xrS5bFwfWEBmQfbC7lt5wmtk+Obq0TxVuA9eYRirBTQb1K3eEpBRHMQEo0WyVw==} engines: {node: '>=16'} supports-color@10.2.2: @@ -10767,8 +11334,13 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} +<<<<<<< HEAD + svelte@5.41.1: + resolution: {integrity: sha512-0a/huwc8e2es+7KFi70esqsReRfRbrT8h1cJSY/+z1lF0yKM6TT+//HYu28Yxstr50H7ifaqZRDGd0KuKDxP7w==} +======= svelte@5.43.5: resolution: {integrity: sha512-HQoZArIewxQVNedseDsgMgnRSC4XOXczxXLF9rOJaPIJkg58INOPUiL8aEtzqZIXNSZJyw8NmqObwg/voajiHQ==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef engines: {node: '>=18'} sver@1.8.4: @@ -10790,8 +11362,8 @@ packages: resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==} engines: {node: '>=18'} - tabbable@6.3.0: - resolution: {integrity: sha512-EIHvdY5bPLuWForiR/AN2Bxngzpuwn1is4asboytXtpTgsArc+WmSJKVLlhdh71u7jFcryDqB2A8lQvj78MkyQ==} + tabbable@6.2.0: + resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} table@6.9.0: resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} @@ -10821,8 +11393,8 @@ packages: tar-stream@3.1.7: resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} - tar@7.5.2: - resolution: {integrity: sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==} + tar@7.5.1: + resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==} engines: {node: '>=18'} tdesign-icons-vue-next@0.4.1: @@ -10848,8 +11420,8 @@ packages: resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} engines: {node: '>=8'} - terser@5.44.1: - resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==} + terser@5.44.0: + resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==} engines: {node: '>=10'} hasBin: true @@ -10892,9 +11464,8 @@ packages: tinyexec@0.3.2: resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - tinyexec@1.0.2: - resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} - engines: {node: '>=18'} + tinyexec@1.0.1: + resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} tinyglobby@0.2.15: resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} @@ -10971,38 +11542,38 @@ packages: tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - turbo-darwin-64@2.6.0: - resolution: {integrity: sha512-6vHnLAubHj8Ib45Knu+oY0ZVCLO7WcibzAvt5b1E72YHqAs4y8meMAGMZM0jLqWPh/9maHDc16/qBCMxtW4pXg==} + turbo-darwin-64@2.5.8: + resolution: {integrity: sha512-Dh5bCACiHO8rUXZLpKw+m3FiHtAp2CkanSyJre+SInEvEr5kIxjGvCK/8MFX8SFRjQuhjtvpIvYYZJB4AGCxNQ==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.6.0: - resolution: {integrity: sha512-IU+gWMEXNBw8H0pxvE7nPEa5p6yahxbN8g/Q4Bf0AHymsAFqsScgV0peeNbWybdmY9jk1LPbALOsF2kY1I7ZiQ==} + turbo-darwin-arm64@2.5.8: + resolution: {integrity: sha512-f1H/tQC9px7+hmXn6Kx/w8Jd/FneIUnvLlcI/7RGHunxfOkKJKvsoiNzySkoHQ8uq1pJnhJ0xNGTlYM48ZaJOQ==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.6.0: - resolution: {integrity: sha512-CKoiJ2ZFJLCDsWdRlZg+ew1BkGn8iCEGdePhISVpjsGwkJwSVhVu49z2zKdBeL1IhcSKS2YALwp9ellNZANJxw==} + turbo-linux-64@2.5.8: + resolution: {integrity: sha512-hMyvc7w7yadBlZBGl/bnR6O+dJTx3XkTeyTTH4zEjERO6ChEs0SrN8jTFj1lueNXKIHh1SnALmy6VctKMGnWfw==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.6.0: - resolution: {integrity: sha512-WroVCdCvJbrhNxNdw7XB7wHAfPPJPV+IXY+ZKNed+9VdfBu/2mQNfKnvqTuFTH7n+Pdpv8to9qwhXRTJe26upg==} + turbo-linux-arm64@2.5.8: + resolution: {integrity: sha512-LQELGa7bAqV2f+3rTMRPnj5G/OHAe2U+0N9BwsZvfMvHSUbsQ3bBMWdSQaYNicok7wOZcHjz2TkESn1hYK6xIQ==} cpu: [arm64] os: [linux] - turbo-windows-64@2.6.0: - resolution: {integrity: sha512-7pZo5aGQPR+A7RMtWCZHusarJ6y15LQ+o3jOmpMxTic/W6Bad+jSeqo07TWNIseIWjCVzrSv27+0odiYRYtQdA==} + turbo-windows-64@2.5.8: + resolution: {integrity: sha512-3YdcaW34TrN1AWwqgYL9gUqmZsMT4T7g8Y5Azz+uwwEJW+4sgcJkIi9pYFyU4ZBSjBvkfuPZkGgfStir5BBDJQ==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.6.0: - resolution: {integrity: sha512-1Ty+NwIksQY7AtFUCPrTpcKQE7zmd/f7aRjdT+qkqGFQjIjFYctEtN7qo4vpQPBgCfS1U3ka83A2u/9CfJQ3wQ==} + turbo-windows-arm64@2.5.8: + resolution: {integrity: sha512-eFC5XzLmgXJfnAK3UMTmVECCwuBcORrWdewoiXBnUm934DY6QN8YowC/srhNnROMpaKaqNeRpoB5FxCww3eteQ==} cpu: [arm64] os: [win32] - turbo@2.6.0: - resolution: {integrity: sha512-kC5VJqOXo50k0/0jnJDDjibLAXalqT9j7PQ56so0pN+81VR4Fwb2QgIE9dTzT3phqOTQuEXkPh3sCpnv5Isz2g==} + turbo@2.5.8: + resolution: {integrity: sha512-5c9Fdsr9qfpT3hA0EyYSFRZj1dVVsb6KIWubA9JBYZ/9ZEAijgUEae0BBR/Xl/wekt4w65/lYLTFaP3JmwSO8w==} hasBin: true type-check@0.4.0: @@ -11017,8 +11588,8 @@ packages: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} - type-fest@5.2.0: - resolution: {integrity: sha512-xxCJm+Bckc6kQBknN7i9fnP/xobQRsRQxR01CztFkp/h++yfVxUUcmMgfR2HttJx/dpWjS9ubVuyspJv24Q9DA==} + type-fest@5.1.0: + resolution: {integrity: sha512-wQ531tuWvB6oK+pchHIu5lHe5f5wpSCqB8Kf4dWQRbOYc9HTge7JL0G4Qd44bh6QuJCccIzL3bugb8GI0MwHrg==} engines: {node: '>=20'} typed-array-buffer@1.0.3: @@ -11082,8 +11653,8 @@ packages: resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==} engines: {node: '>=20.18.1'} - unenv@2.0.0-rc.24: - resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==} + unenv@2.0.0-rc.21: + resolution: {integrity: sha512-Wj7/AMtE9MRnAXa6Su3Lk0LNCfqDYgfwVjwRFVum9U7wsto1imuHqk4kTm7Jni+5A0Hn7dttL6O/zjvUvoo+8A==} unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} @@ -11171,8 +11742,8 @@ packages: unrs-resolver@1.11.1: resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==} - unstorage@1.17.2: - resolution: {integrity: sha512-cKEsD6iBWJgOMJ6vW1ID/SYuqNf8oN4yqRk8OYqaVQ3nnkJXOT1PSpaMh2QfzLs78UN5kSNRD2c/mgjT8tX7+w==} + unstorage@1.17.1: + resolution: {integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==} peerDependencies: '@azure/app-configuration': ^1.8.0 '@azure/cosmos': ^4.2.0 @@ -11248,8 +11819,8 @@ packages: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} - update-browserslist-db@1.1.4: - resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -11395,8 +11966,13 @@ packages: terser: optional: true +<<<<<<< HEAD + vite@7.1.11: + resolution: {integrity: sha512-uzcxnSDVjAopEUjljkWh8EIrg6tlzrjFUfMcR1EVsRDGwf/ccef0qQPRyOrROwhrTDaApueq+ja+KLPlzR/zdg==} +======= vite@7.2.2: resolution: {integrity: sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -11435,13 +12011,11 @@ packages: yaml: optional: true - vitepress-plugin-group-icons@1.6.5: - resolution: {integrity: sha512-+pg4+GKDq2fLqKb1Sat5p1p4SuIZ5tEPxu8HjpwoeecZ/VaXKy6Bdf0wyjedjaTAyZQzXbvyavJegqAcQ+B0VA==} + vitepress-plugin-group-icons@1.6.4: + resolution: {integrity: sha512-YCFH0G2zTX/me51wooWy4SvaaA6VKjIxLoWDU9ON4rFx9907Yf9ZpCpa4JpwloVuvm5+82fqLXSuZ98EJ92UUQ==} peerDependencies: + markdown-it: '>=14' vite: '>=3' - peerDependenciesMeta: - vite: - optional: true vitepress@1.6.4: resolution: {integrity: sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==} @@ -11560,8 +12134,13 @@ packages: peerDependencies: vue: ^3.5.17 +<<<<<<< HEAD + vue@3.5.22: + resolution: {integrity: sha512-toaZjQ3a/G/mYaLSbV+QsQhIdMo9x5rrqIpYRObsJ6T/J+RyCSFwN2LHNVH9v8uIcljDNa3QzPVdv3Y6b9hAJQ==} +======= vue@3.5.24: resolution: {integrity: sha512-uTHDOpVQTMjcGgrqFPSb8iO2m1DUvo+WbGqoXQz8Y1CeBYQ0FXf2z1gLRaBtHjlRz7zZUBHxjVB5VTLzYkvftg==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef peerDependencies: typescript: '*' peerDependenciesMeta: @@ -11578,11 +12157,19 @@ packages: peerDependencies: vue: ^3.5.17 +<<<<<<< HEAD + vxe-pc-ui@4.10.5: + resolution: {integrity: sha512-ASGSBIhEXRYmro/kVzK+es5DOchWvFXegM2osqrCIKQcFTAkLzLU4mZc8jOihNaxwy212819w8kLdS9KDwpvSg==} + + vxe-table@4.17.0: + resolution: {integrity: sha512-IpyY5uzgMt4NEgTl0brAFe/xSyrBK8U0763uCG8LUe8TbGVuWMD5bCP9DYqkjK7cBmJjXtzwxlQ6I3auzCGd3Q==} +======= vxe-pc-ui@4.10.18: resolution: {integrity: sha512-YNlD9vs5AfEbtne2adCUDT5qt+7gN9FvczjamYpPm+2G8pi2Vs7T7VlxMhXh6jzFIymzFn6UfV3oszgpG8cS0A==} vxe-table@4.17.12: resolution: {integrity: sha512-gutC0uNC0Et2kelZH7Cn/808m+DUm7Cef9fNTRBy+oZkieqqoBkXajf2pBTnVry+72nsXfSyg9dUMKYm6hqPcg==} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef w3c-keyname@2.2.8: resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} @@ -11631,8 +12218,8 @@ packages: whatwg-url@7.1.0: resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - when-exit@2.1.5: - resolution: {integrity: sha512-VGkKJ564kzt6Ms1dbgPP/yuIoQCrsFAnRbptpC5wOEsDaNsbCB2bnfnaA8i/vRs5tjUSEOtIuvl9/MyVsvQZCg==} + when-exit@2.1.4: + resolution: {integrity: sha512-4rnvd3A1t16PWzrBUcSDZqcAmsUIy4minDXT/CZ8F2mVDgd65i4Aalimgz1aQkRGU0iH5eT5+6Rx2TK8o443Pg==} which-boxed-primitive@1.1.1: resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} @@ -11831,8 +12418,8 @@ packages: youch-core@0.3.3: resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==} - youch@4.1.0-beta.12: - resolution: {integrity: sha512-X+AQ2EdigcZb2h1XQmBMm19TrrfKXxEXWpnf8ThbARwiiSf/pA7MvRTCj5VHCI9z3vjJBsDeqWWyvaI9Bfp9Pg==} + youch@4.1.0-beta.11: + resolution: {integrity: sha512-sQi6PERyO/mT8w564ojOVeAlYTtVQmC2GaktQAf+IdI75/GKIggosBuvyVXvEV+FATAT6RbLdIjFoiIId4ozoQ==} zeebe-bpmn-moddle@1.11.0: resolution: {integrity: sha512-v2PkIAjyZEnzuFHrm9ZhpbEGMgNjYZkUw+H17JxkA7Da+dcbPHbD7fWuBWSbPzNSCOyYYmrH+PL6wp9407ptMg==} @@ -11865,6 +12452,19 @@ packages: snapshots: +<<<<<<< HEAD + '@algolia/abtesting@1.6.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1)(search-insights@2.17.3)': + dependencies: + '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1)(search-insights@2.17.3) + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1) +======= '@algolia/abtesting@1.9.0': dependencies: '@algolia/client-common': 5.43.0 @@ -11876,19 +12476,115 @@ snapshots: dependencies: '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0)(search-insights@2.17.3) '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@algolia/client-search' - algoliasearch - search-insights +<<<<<<< HEAD + '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1)(search-insights@2.17.3)': + dependencies: + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1) +======= '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0)(search-insights@2.17.3)': dependencies: '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef search-insights: 2.17.3 transitivePeerDependencies: - '@algolia/client-search' - algoliasearch +<<<<<<< HEAD + '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1)': + dependencies: + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1) + '@algolia/client-search': 5.40.1 + algoliasearch: 5.40.1 + + '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1)': + dependencies: + '@algolia/client-search': 5.40.1 + algoliasearch: 5.40.1 + + '@algolia/client-abtesting@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-analytics@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-common@5.40.1': {} + + '@algolia/client-insights@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-personalization@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-query-suggestions@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/client-search@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/ingestion@1.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/monitoring@1.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/recommend@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 + + '@algolia/requester-browser-xhr@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + + '@algolia/requester-fetch@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 + + '@algolia/requester-node-http@5.40.1': + dependencies: + '@algolia/client-common': 5.40.1 +======= '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0)': dependencies: '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0) @@ -11976,6 +12672,7 @@ snapshots: '@algolia/requester-node-http@5.43.0': dependencies: '@algolia/client-common': 5.43.0 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@alloc/quick-lru@5.2.0': {} @@ -11985,16 +12682,24 @@ snapshots: '@ant-design/icons-svg@4.4.2': {} +<<<<<<< HEAD + '@ant-design/icons-vue@7.0.1(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@ant-design/colors': 6.0.0 + '@ant-design/icons-svg': 4.4.2 + vue: 3.5.22(typescript@5.9.3) +======= '@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3))': dependencies: '@ant-design/colors': 6.0.0 '@ant-design/icons-svg': 4.4.2 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@antfu/install-pkg@1.1.0': dependencies: package-manager-detector: 1.5.0 - tinyexec: 1.0.2 + tinyexec: 1.0.1 '@antfu/utils@0.7.10': {} @@ -12048,23 +12753,23 @@ snapshots: '@babel/code-frame@7.27.1': dependencies: - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/compat-data@7.28.5': {} + '@babel/compat-data@7.28.4': {} - '@babel/core@7.28.5': + '@babel/core@7.28.4': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.5 + '@babel/generator': 7.28.3 '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) '@babel/helpers': 7.28.4 - '@babel/parser': 7.28.5 + '@babel/parser': 7.28.4 '@babel/template': 7.27.2 - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.28.4 + '@babel/types': 7.28.4 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 debug: 4.4.3 @@ -12074,49 +12779,49 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/generator@7.28.5': + '@babel/generator@7.28.3': dependencies: - '@babel/parser': 7.28.5 - '@babel/types': 7.28.5 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 '@babel/helper-annotate-as-pure@7.27.3': dependencies: - '@babel/types': 7.28.5 + '@babel/types': 7.28.4 '@babel/helper-compilation-targets@7.27.2': dependencies: - '@babel/compat-data': 7.28.5 + '@babel/compat-data': 7.28.4 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.27.0 + browserslist: 4.26.3 lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.5)': + '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-member-expression-to-functions': 7.27.1 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.28.4 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.28.5)': + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-annotate-as-pure': 7.27.3 regexpu-core: 6.4.0 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.5)': + '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.3 @@ -12127,602 +12832,602 @@ snapshots: '@babel/helper-globals@7.28.0': {} - '@babel/helper-member-expression-to-functions@7.28.5': + '@babel/helper-member-expression-to-functions@7.27.1': dependencies: - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.28.4 + '@babel/types': 7.28.4 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.27.1': dependencies: - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.28.4 + '@babel/types': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)': + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 - '@babel/traverse': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color '@babel/helper-optimise-call-expression@7.27.1': dependencies: - '@babel/types': 7.28.5 + '@babel/types': 7.28.4 '@babel/helper-plugin-utils@7.27.1': {} - '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.5)': + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-wrap-function': 7.28.3 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)': + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/core': 7.28.4 + '@babel/helper-member-expression-to-functions': 7.27.1 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.28.4 + '@babel/types': 7.28.4 transitivePeerDependencies: - supports-color '@babel/helper-string-parser@7.27.1': {} - '@babel/helper-validator-identifier@7.28.5': {} + '@babel/helper-validator-identifier@7.27.1': {} '@babel/helper-validator-option@7.27.1': {} '@babel/helper-wrap-function@7.28.3': dependencies: '@babel/template': 7.27.2 - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.28.4 + '@babel/types': 7.28.4 transitivePeerDependencies: - supports-color '@babel/helpers@7.28.4': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.5 + '@babel/types': 7.28.4 - '@babel/parser@7.28.5': + '@babel/parser@7.28.4': dependencies: - '@babel/types': 7.28.5 + '@babel/types': 7.28.4 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4) transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.5)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.5)': + '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.4) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.5)': + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 - '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.5)': + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.5)': + '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5) - '@babel/traverse': 7.28.5 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4) + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-block-scoping@7.28.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.5)': + '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.5)': + '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-globals': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) - '@babel/traverse': 7.28.5 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 - '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.5)': + '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-exponentiation-operator@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.5 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 - '@babel/traverse': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.5)': + '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) - '@babel/traverse': 7.28.5 + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) + '@babel/traverse': 7.28.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.5)': + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.5)': + '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5)': + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.5)': + '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 - '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) '@babel/helper-plugin-utils': 7.27.1 - '@babel/preset-env@7.28.5(@babel/core@7.28.5)': + '@babel/preset-env@7.28.3(@babel/core@7.28.4)': dependencies: - '@babel/compat-data': 7.28.5 - '@babel/core': 7.28.5 + '@babel/compat-data': 7.28.4 + '@babel/core': 7.28.4 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.5) - '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.5) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.5) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.5) - '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.5) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.5) - '@babel/plugin-transform-exponentiation-operator': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-modules-systemjs': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.5) - '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.5) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) - '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.5) - '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.5) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.5) - babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.5) - babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.5) - babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.5) + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4) + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4) + '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4) core-js-compat: 3.46.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/types': 7.28.5 + '@babel/types': 7.28.4 esutils: 2.0.3 - '@babel/preset-typescript@7.28.5(@babel/core@7.28.5)': + '@babel/preset-typescript@7.27.1(@babel/core@7.28.4)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) - '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4) transitivePeerDependencies: - supports-color @@ -12735,31 +13440,31 @@ snapshots: '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.5 - '@babel/types': 7.28.5 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 - '@babel/traverse@7.28.5': + '@babel/traverse@7.28.4': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.5 + '@babel/generator': 7.28.3 '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.28.5 + '@babel/parser': 7.28.4 '@babel/template': 7.27.2 - '@babel/types': 7.28.5 + '@babel/types': 7.28.4 debug: 4.4.3 transitivePeerDependencies: - supports-color - '@babel/types@7.28.5': + '@babel/types@7.28.4': dependencies: '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.27.1 '@bpmn-io/cm-theme@0.1.0-alpha.2': dependencies: '@codemirror/language': 6.11.3 '@codemirror/view': 6.38.6 - '@lezer/highlight': 1.2.3 + '@lezer/highlight': 1.2.2 '@bpmn-io/diagram-js-ui@0.2.3': dependencies: @@ -12775,13 +13480,13 @@ snapshots: '@bpmn-io/feel-lint': 2.1.0 '@bpmn-io/lang-feel': 2.4.0 '@camunda/feel-builtins': 0.2.0 - '@codemirror/autocomplete': 6.19.1 - '@codemirror/commands': 6.10.0 + '@codemirror/autocomplete': 6.19.0 + '@codemirror/commands': 6.9.0 '@codemirror/language': 6.11.3 - '@codemirror/lint': 6.9.2 + '@codemirror/lint': 6.9.0 '@codemirror/state': 6.5.2 '@codemirror/view': 6.38.6 - '@lezer/highlight': 1.2.3 + '@lezer/highlight': 1.2.2 min-dom: 4.2.1 '@bpmn-io/feel-lint@1.4.0': @@ -12797,48 +13502,44 @@ snapshots: '@bpmn-io/lang-feel@2.4.0': dependencies: '@bpmn-io/lezer-feel': 1.9.0 - '@codemirror/autocomplete': 6.19.1 + '@codemirror/autocomplete': 6.19.0 '@codemirror/language': 6.11.3 '@lezer/common': 1.3.0 '@bpmn-io/lezer-feel@1.9.0': dependencies: - '@lezer/highlight': 1.2.3 - '@lezer/lr': 1.4.3 + '@lezer/highlight': 1.2.2 + '@lezer/lr': 1.4.2 min-dash: 4.2.3 - '@bpmn-io/properties-panel@3.33.2': + '@bpmn-io/properties-panel@3.33.0': dependencies: '@bpmn-io/feel-editor': 1.12.0 - '@carbon/icons': 11.70.0 '@codemirror/view': 6.38.6 classnames: 2.5.1 feelers: 1.4.0 - focus-trap: 7.6.6 + focus-trap: 7.6.5 min-dash: 4.2.3 min-dom: 4.2.1 '@cacheable/memoize@2.0.3': dependencies: - '@cacheable/utils': 2.2.0 + '@cacheable/utils': 2.1.0 - '@cacheable/memory@2.0.4': + '@cacheable/memory@2.0.3': dependencies: - '@cacheable/utils': 2.2.0 + '@cacheable/memoize': 2.0.3 + '@cacheable/utils': 2.1.0 '@keyv/bigmap': 1.1.0(keyv@5.5.3) hookified: 1.12.2 keyv: 5.5.3 - '@cacheable/utils@2.2.0': + '@cacheable/utils@2.1.0': dependencies: keyv: 5.5.3 '@camunda/feel-builtins@0.2.0': {} - '@carbon/icons@11.70.0': - dependencies: - '@ibm/telemetry-js': 1.10.2 - '@changesets/apply-release-plan@7.0.13': dependencies: '@changesets/config': 3.1.1 @@ -13013,14 +13714,14 @@ snapshots: dependencies: mime: 3.0.0 - '@codemirror/autocomplete@6.19.1': + '@codemirror/autocomplete@6.19.0': dependencies: '@codemirror/language': 6.11.3 '@codemirror/state': 6.5.2 '@codemirror/view': 6.38.6 '@lezer/common': 1.3.0 - '@codemirror/commands@6.10.0': + '@codemirror/commands@6.9.0': dependencies: '@codemirror/language': 6.11.3 '@codemirror/state': 6.5.2 @@ -13032,11 +13733,11 @@ snapshots: '@codemirror/state': 6.5.2 '@codemirror/view': 6.38.6 '@lezer/common': 1.3.0 - '@lezer/highlight': 1.2.3 - '@lezer/lr': 1.4.3 + '@lezer/highlight': 1.2.2 + '@lezer/lr': 1.4.2 style-mod: 4.1.3 - '@codemirror/lint@6.9.2': + '@codemirror/lint@6.9.0': dependencies: '@codemirror/state': 6.5.2 '@codemirror/view': 6.38.6 @@ -13060,7 +13761,7 @@ snapshots: '@commitlint/load': 19.8.1(@types/node@24.10.0)(typescript@5.9.3) '@commitlint/read': 19.8.1 '@commitlint/types': 19.8.1 - tinyexec: 1.0.2 + tinyexec: 1.0.1 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -13134,7 +13835,7 @@ snapshots: '@commitlint/types': 19.8.1 git-raw-commits: 4.0.0 minimist: 1.2.8 - tinyexec: 1.0.2 + tinyexec: 1.0.1 '@commitlint/resolve-extends@19.8.1': dependencies: @@ -13160,7 +13861,7 @@ snapshots: '@commitlint/types@19.8.1': dependencies: - '@types/conventional-commits-parser': 5.0.2 + '@types/conventional-commits-parser': 5.0.1 chalk: 5.6.2 '@cspell/cspell-bundled-dicts@8.19.4': @@ -13168,21 +13869,21 @@ snapshots: '@cspell/dict-ada': 4.1.1 '@cspell/dict-al': 1.1.1 '@cspell/dict-aws': 4.0.15 - '@cspell/dict-bash': 4.2.2 - '@cspell/dict-companies': 3.2.7 - '@cspell/dict-cpp': 6.0.14 + '@cspell/dict-bash': 4.2.1 + '@cspell/dict-companies': 3.2.6 + '@cspell/dict-cpp': 6.0.12 '@cspell/dict-cryptocurrencies': 5.0.5 '@cspell/dict-csharp': 4.0.7 '@cspell/dict-css': 4.0.18 '@cspell/dict-dart': 2.3.1 - '@cspell/dict-data-science': 2.0.11 + '@cspell/dict-data-science': 2.0.10 '@cspell/dict-django': 4.1.5 '@cspell/dict-docker': 1.1.16 '@cspell/dict-dotnet': 5.0.10 '@cspell/dict-elixir': 4.0.8 - '@cspell/dict-en-common-misspellings': 2.1.8 + '@cspell/dict-en-common-misspellings': 2.1.6 '@cspell/dict-en-gb': 1.1.33 - '@cspell/dict-en_us': 4.4.24 + '@cspell/dict-en_us': 4.4.20 '@cspell/dict-filetypes': 3.0.14 '@cspell/dict-flutter': 1.1.1 '@cspell/dict-fonts': 4.0.5 @@ -13190,7 +13891,7 @@ snapshots: '@cspell/dict-fullstack': 3.2.7 '@cspell/dict-gaming-terms': 1.1.2 '@cspell/dict-git': 3.0.7 - '@cspell/dict-golang': 6.0.24 + '@cspell/dict-golang': 6.0.23 '@cspell/dict-google': 1.0.9 '@cspell/dict-haskell': 4.0.6 '@cspell/dict-html': 4.0.12 @@ -13206,17 +13907,17 @@ snapshots: '@cspell/dict-markdown': 2.0.12(@cspell/dict-css@4.0.18)(@cspell/dict-html-symbol-entities@4.0.4)(@cspell/dict-html@4.0.12)(@cspell/dict-typescript@3.2.3) '@cspell/dict-monkeyc': 1.0.11 '@cspell/dict-node': 5.0.8 - '@cspell/dict-npm': 5.2.20 - '@cspell/dict-php': 4.1.0 + '@cspell/dict-npm': 5.2.18 + '@cspell/dict-php': 4.0.15 '@cspell/dict-powershell': 5.0.15 '@cspell/dict-public-licenses': 2.0.15 - '@cspell/dict-python': 4.2.21 + '@cspell/dict-python': 4.2.20 '@cspell/dict-r': 2.1.1 '@cspell/dict-ruby': 5.0.9 '@cspell/dict-rust': 4.0.12 '@cspell/dict-scala': 5.0.8 - '@cspell/dict-shell': 1.1.2 - '@cspell/dict-software-terms': 5.1.11 + '@cspell/dict-shell': 1.1.1 + '@cspell/dict-software-terms': 5.1.9 '@cspell/dict-sql': 2.2.1 '@cspell/dict-svelte': 1.0.7 '@cspell/dict-swift': 2.0.6 @@ -13244,13 +13945,13 @@ snapshots: '@cspell/dict-aws@4.0.15': {} - '@cspell/dict-bash@4.2.2': + '@cspell/dict-bash@4.2.1': dependencies: - '@cspell/dict-shell': 1.1.2 + '@cspell/dict-shell': 1.1.1 - '@cspell/dict-companies@3.2.7': {} + '@cspell/dict-companies@3.2.6': {} - '@cspell/dict-cpp@6.0.14': {} + '@cspell/dict-cpp@6.0.12': {} '@cspell/dict-cryptocurrencies@5.0.5': {} @@ -13260,7 +13961,7 @@ snapshots: '@cspell/dict-dart@2.3.1': {} - '@cspell/dict-data-science@2.0.11': {} + '@cspell/dict-data-science@2.0.10': {} '@cspell/dict-django@4.1.5': {} @@ -13270,11 +13971,11 @@ snapshots: '@cspell/dict-elixir@4.0.8': {} - '@cspell/dict-en-common-misspellings@2.1.8': {} + '@cspell/dict-en-common-misspellings@2.1.6': {} '@cspell/dict-en-gb@1.1.33': {} - '@cspell/dict-en_us@4.4.24': {} + '@cspell/dict-en_us@4.4.20': {} '@cspell/dict-filetypes@3.0.14': {} @@ -13290,7 +13991,7 @@ snapshots: '@cspell/dict-git@3.0.7': {} - '@cspell/dict-golang@6.0.24': {} + '@cspell/dict-golang@6.0.23': {} '@cspell/dict-google@1.0.9': {} @@ -13327,17 +14028,17 @@ snapshots: '@cspell/dict-node@5.0.8': {} - '@cspell/dict-npm@5.2.20': {} + '@cspell/dict-npm@5.2.18': {} - '@cspell/dict-php@4.1.0': {} + '@cspell/dict-php@4.0.15': {} '@cspell/dict-powershell@5.0.15': {} '@cspell/dict-public-licenses@2.0.15': {} - '@cspell/dict-python@4.2.21': + '@cspell/dict-python@4.2.20': dependencies: - '@cspell/dict-data-science': 2.0.11 + '@cspell/dict-data-science': 2.0.10 '@cspell/dict-r@2.1.1': {} @@ -13347,9 +14048,9 @@ snapshots: '@cspell/dict-scala@5.0.8': {} - '@cspell/dict-shell@1.1.2': {} + '@cspell/dict-shell@1.1.1': {} - '@cspell/dict-software-terms@5.1.11': {} + '@cspell/dict-software-terms@5.1.9': {} '@cspell/dict-sql@2.2.1': {} @@ -13378,9 +14079,15 @@ snapshots: dependencies: css-render: 0.15.14 +<<<<<<< HEAD + '@css-render/vue3-ssr@0.15.14(vue@3.5.22(typescript@5.9.3))': + dependencies: + vue: 3.5.22(typescript@5.9.3) +======= '@css-render/vue3-ssr@0.15.14(vue@3.5.24(typescript@5.9.3))': dependencies: vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@csstools/cascade-layer-name-parser@2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: @@ -13679,9 +14386,15 @@ snapshots: '@docsearch/css@3.8.2': {} +<<<<<<< HEAD + '@docsearch/js@3.8.2(@algolia/client-search@5.40.1)(search-insights@2.17.3)': + dependencies: + '@docsearch/react': 3.8.2(@algolia/client-search@5.40.1)(search-insights@2.17.3) +======= '@docsearch/js@3.8.2(@algolia/client-search@5.43.0)(search-insights@2.17.3)': dependencies: '@docsearch/react': 3.8.2(@algolia/client-search@5.43.0)(search-insights@2.17.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef preact: 10.27.2 transitivePeerDependencies: - '@algolia/client-search' @@ -13690,12 +14403,21 @@ snapshots: - react-dom - search-insights +<<<<<<< HEAD + '@docsearch/react@3.8.2(@algolia/client-search@5.40.1)(search-insights@2.17.3)': + dependencies: + '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1)(search-insights@2.17.3) + '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.40.1)(algoliasearch@5.40.1) + '@docsearch/css': 3.8.2 + algoliasearch: 5.40.1 +======= '@docsearch/react@3.8.2(@algolia/client-search@5.43.0)(search-insights@2.17.3)': dependencies: '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0)(search-insights@2.17.3) '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.43.0)(algoliasearch@5.43.0) '@docsearch/css': 3.8.2 algoliasearch: 5.43.0 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: search-insights: 2.17.3 transitivePeerDependencies: @@ -13703,17 +14425,23 @@ snapshots: '@dual-bundle/import-meta-resolve@4.2.1': {} +<<<<<<< HEAD + '@element-plus/icons-vue@2.3.2(vue@3.5.22(typescript@5.9.3))': + dependencies: + vue: 3.5.22(typescript@5.9.3) +======= '@element-plus/icons-vue@2.3.2(vue@3.5.24(typescript@5.9.3))': dependencies: vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef - '@emnapi/core@1.7.0': + '@emnapi/core@1.6.0': dependencies: '@emnapi/wasi-threads': 1.1.0 tslib: 2.8.1 optional: true - '@emnapi/runtime@1.7.0': + '@emnapi/runtime@1.6.0': dependencies: tslib: 2.8.1 optional: true @@ -13732,7 +14460,7 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/types': 8.46.2 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -13812,12 +14540,12 @@ snapshots: '@esbuild/win32-x64@0.25.3': optional: true - '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@2.6.1))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.38.0(jiti@2.6.1))': dependencies: - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.12.2': {} + '@eslint-community/regexpp@4.12.1': {} '@eslint/config-array@0.21.1': dependencies: @@ -13827,15 +14555,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/config-helpers@0.4.2': + '@eslint/config-helpers@0.4.1': dependencies: - '@eslint/core': 0.17.0 + '@eslint/core': 0.16.0 '@eslint/core@0.13.0': dependencies: '@types/json-schema': 7.0.15 - '@eslint/core@0.17.0': + '@eslint/core@0.16.0': dependencies: '@types/json-schema': 7.0.15 @@ -13853,7 +14581,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.39.1': {} + '@eslint/js@9.38.0': {} '@eslint/object-schema@2.1.7': {} @@ -13862,9 +14590,9 @@ snapshots: '@eslint/core': 0.13.0 levn: 0.4.1 - '@eslint/plugin-kit@0.4.1': + '@eslint/plugin-kit@0.4.0': dependencies: - '@eslint/core': 0.17.0 + '@eslint/core': 0.16.0 levn: 0.4.1 '@faker-js/faker@9.9.0': {} @@ -13880,21 +14608,50 @@ snapshots: '@floating-ui/utils@0.2.10': {} +<<<<<<< HEAD + '@floating-ui/vue@1.1.9(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@floating-ui/dom': 1.7.4 + '@floating-ui/utils': 0.2.10 + vue-demi: 0.14.10(vue@3.5.22(typescript@5.9.3)) +======= '@floating-ui/vue@1.1.9(vue@3.5.24(typescript@5.9.3))': dependencies: '@floating-ui/dom': 1.7.4 '@floating-ui/utils': 0.2.10 vue-demi: 0.14.10(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@vue/composition-api' - vue +<<<<<<< HEAD + '@form-create/ant-design-vue@3.2.31(vue@3.5.22(typescript@5.9.3))': +======= '@form-create/ant-design-vue@3.2.32(vue@3.5.24(typescript@5.9.3))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@form-create/component-antdv-frame': 3.2.31 '@form-create/component-antdv-group': 3.2.31 '@form-create/component-antdv-upload': 3.2.31 '@form-create/component-subform': 3.1.34 +<<<<<<< HEAD + '@form-create/core': 3.2.31(vue@3.5.22(typescript@5.9.3)) + '@form-create/utils': 3.2.31 + vue: 3.5.22(typescript@5.9.3) + + '@form-create/antd-designer@3.3.2(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@form-create/ant-design-vue': 3.2.31(vue@3.5.22(typescript@5.9.3)) + '@form-create/component-wangeditor': 3.2.14 + '@form-create/utils': 3.2.31 + ant-design-vue: 4.2.6(vue@3.5.22(typescript@5.9.3)) + codemirror: 6.65.7 + js-beautify: 1.15.4 + signature_pad: 5.1.1 + vue: 3.5.22(typescript@5.9.3) + vuedraggable: 4.1.0(vue@3.5.22(typescript@5.9.3)) +======= '@form-create/core': 3.2.32(vue@3.5.24(typescript@5.9.3)) '@form-create/utils': 3.2.31 vue: 3.5.24(typescript@5.9.3) @@ -13910,6 +14667,7 @@ snapshots: signature_pad: 5.1.1 vue: 3.5.24(typescript@5.9.3) vuedraggable: 4.1.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@form-create/component-antdv-frame@3.2.31': dependencies: @@ -13957,6 +14715,28 @@ snapshots: dependencies: wangeditor: 4.7.15 +<<<<<<< HEAD + '@form-create/core@3.2.31(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@form-create/utils': 3.2.31 + vue: 3.5.22(typescript@5.9.3) + + '@form-create/designer@3.3.1(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@form-create/component-wangeditor': 3.2.14 + '@form-create/element-ui': 3.2.31(vue@3.5.22(typescript@5.9.3)) + '@form-create/utils': 3.2.31 + codemirror: 6.65.7 + element-plus: 2.11.5(vue@3.5.22(typescript@5.9.3)) + js-beautify: 1.15.4 + signature_pad: 5.1.1 + vue: 3.5.22(typescript@5.9.3) + vuedraggable: 4.1.0(vue@3.5.22(typescript@5.9.3)) + transitivePeerDependencies: + - '@vue/composition-api' + + '@form-create/element-ui@3.2.31(vue@3.5.22(typescript@5.9.3))': +======= '@form-create/core@3.2.32(vue@3.5.24(typescript@5.9.3))': dependencies: '@form-create/utils': 3.2.31 @@ -13977,6 +14757,7 @@ snapshots: - '@vue/composition-api' '@form-create/element-ui@3.2.32(vue@3.5.24(typescript@5.9.3))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@form-create/component-elm-checkbox': 3.2.31 '@form-create/component-elm-frame': 3.2.31 @@ -13986,9 +14767,15 @@ snapshots: '@form-create/component-elm-tree': 3.2.31 '@form-create/component-elm-upload': 3.2.31 '@form-create/component-subform': 3.1.34 +<<<<<<< HEAD + '@form-create/core': 3.2.31(vue@3.5.22(typescript@5.9.3)) + '@form-create/utils': 3.2.31 + vue: 3.5.22(typescript@5.9.3) +======= '@form-create/core': 3.2.32(vue@3.5.24(typescript@5.9.3)) '@form-create/utils': 3.2.31 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@form-create/utils@3.2.31': {} @@ -14007,25 +14794,35 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@ibm/telemetry-js@1.10.2': {} + '@iconify-json/logos@1.2.9': + dependencies: + '@iconify/types': 2.0.0 - '@iconify-json/logos@1.2.10': +<<<<<<< HEAD + '@iconify-json/octicon@1.2.16': dependencies: '@iconify/types': 2.0.0 + '@iconify-json/simple-icons@1.2.55': +======= '@iconify-json/octicon@1.2.18': dependencies: '@iconify/types': 2.0.0 '@iconify-json/simple-icons@1.2.58': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@iconify/types': 2.0.0 - '@iconify-json/vscode-icons@1.2.33': + '@iconify-json/vscode-icons@1.2.32': dependencies: '@iconify/types': 2.0.0 +<<<<<<< HEAD + '@iconify/json@2.2.398': +======= '@iconify/json@2.2.405': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@iconify/types': 2.0.0 pathe: 2.0.3 @@ -14049,14 +14846,21 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD + '@iconify/vue@5.0.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@iconify/types': 2.0.0 + vue: 3.5.22(typescript@5.9.3) +======= '@iconify/vue@5.0.0(vue@3.5.24(typescript@5.9.3))': dependencies: '@iconify/types': 2.0.0 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@inquirer/external-editor@1.0.3(@types/node@24.10.0)': dependencies: - chardet: 2.1.1 + chardet: 2.1.0 iconv-lite: 0.7.0 optionalDependencies: '@types/node': 24.10.0 @@ -14069,7 +14873,11 @@ snapshots: dependencies: '@swc/helpers': 0.5.17 +<<<<<<< HEAD + '@intlify/bundle-utils@10.0.1(vue-i18n@11.1.12(vue@3.5.22(typescript@5.9.3)))': +======= '@intlify/bundle-utils@10.0.1(vue-i18n@11.1.12(vue@3.5.24(typescript@5.9.3)))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@intlify/message-compiler': 11.1.12 '@intlify/shared': 11.1.12 @@ -14081,7 +14889,11 @@ snapshots: source-map-js: 1.2.1 yaml-eslint-parser: 1.3.0 optionalDependencies: +<<<<<<< HEAD + vue-i18n: 11.1.12(vue@3.5.22(typescript@5.9.3)) +======= vue-i18n: 11.1.12(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@intlify/core-base@11.1.12': dependencies: @@ -14095,6 +14907,17 @@ snapshots: '@intlify/shared@11.1.12': {} +<<<<<<< HEAD + '@intlify/unplugin-vue-i18n@6.0.8(@vue/compiler-dom@3.5.22)(eslint@9.38.0(jiti@2.6.1))(rollup@4.52.5)(typescript@5.9.3)(vue-i18n@11.1.12(vue@3.5.22(typescript@5.9.3)))(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) + '@intlify/bundle-utils': 10.0.1(vue-i18n@11.1.12(vue@3.5.22(typescript@5.9.3))) + '@intlify/shared': 11.1.12 + '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.1.12)(@vue/compiler-dom@3.5.22)(vue-i18n@11.1.12(vue@3.5.22(typescript@5.9.3)))(vue@3.5.22(typescript@5.9.3)) + '@rollup/pluginutils': 5.3.0(rollup@4.52.5) + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) +======= '@intlify/unplugin-vue-i18n@6.0.8(@vue/compiler-dom@3.5.24)(eslint@9.39.1(jiti@2.6.1))(rollup@4.53.1)(typescript@5.9.3)(vue-i18n@11.1.12(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) @@ -14104,6 +14927,7 @@ snapshots: '@rollup/pluginutils': 5.3.0(rollup@4.53.1) '@typescript-eslint/scope-manager': 8.46.3 '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef debug: 4.4.3 fast-glob: 3.3.3 js-yaml: 4.1.0 @@ -14112,9 +14936,15 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 unplugin: 1.16.1 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) + optionalDependencies: + vue-i18n: 11.1.12(vue@3.5.22(typescript@5.9.3)) +======= vue: 3.5.24(typescript@5.9.3) optionalDependencies: vue-i18n: 11.1.12(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@vue/compiler-dom' - eslint @@ -14122,14 +14952,24 @@ snapshots: - supports-color - typescript +<<<<<<< HEAD + '@intlify/vue-i18n-extensions@8.0.0(@intlify/shared@11.1.12)(@vue/compiler-dom@3.5.22)(vue-i18n@11.1.12(vue@3.5.22(typescript@5.9.3)))(vue@3.5.22(typescript@5.9.3))': +======= '@intlify/vue-i18n-extensions@8.0.0(@intlify/shared@11.1.12)(@vue/compiler-dom@3.5.24)(vue-i18n@11.1.12(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: - '@babel/parser': 7.28.5 + '@babel/parser': 7.28.4 optionalDependencies: '@intlify/shared': 11.1.12 +<<<<<<< HEAD + '@vue/compiler-dom': 3.5.22 + vue: 3.5.22(typescript@5.9.3) + vue-i18n: 11.1.12(vue@3.5.22(typescript@5.9.3)) +======= '@vue/compiler-dom': 3.5.24 vue: 3.5.24(typescript@5.9.3) vue-i18n: 11.1.12(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@ioredis/commands@1.4.0': {} @@ -14176,14 +15016,14 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 - '@jspm/generator@2.7.6': + '@jspm/generator@2.7.4': dependencies: - '@babel/core': 7.28.5 - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5) - '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4) + '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4) '@jspm/import-map': 1.2.2 es-module-lexer: 1.7.0 - minimatch: 10.1.1 + minimatch: 10.0.3 node-fetch-cache: 5.1.0 pako: 2.1.0 sver: 1.8.4 @@ -14206,18 +15046,18 @@ snapshots: '@lezer/common@1.3.0': {} - '@lezer/highlight@1.2.3': + '@lezer/highlight@1.2.2': dependencies: '@lezer/common': 1.3.0 - '@lezer/lr@1.4.3': + '@lezer/lr@1.4.2': dependencies: '@lezer/common': 1.3.0 - '@lezer/markdown@1.6.0': + '@lezer/markdown@1.5.1': dependencies: '@lezer/common': 1.3.0 - '@lezer/highlight': 1.2.3 + '@lezer/highlight': 1.2.2 '@manypkg/find-root@1.1.0': dependencies: @@ -14258,31 +15098,30 @@ snapshots: node-fetch: 2.7.0 nopt: 8.1.0 semver: 7.7.3 - tar: 7.5.2 + tar: 7.5.1 transitivePeerDependencies: - encoding - supports-color '@marijn/find-cluster-break@1.0.2': {} - '@microsoft/api-extractor-model@7.31.3(@types/node@24.10.0)': + '@microsoft/api-extractor-model@7.31.2(@types/node@24.10.0)': dependencies: '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.18.0(@types/node@24.10.0) + '@rushstack/node-core-library': 5.17.1(@types/node@24.10.0) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.54.0(@types/node@24.10.0)': + '@microsoft/api-extractor@7.53.2(@types/node@24.10.0)': dependencies: - '@microsoft/api-extractor-model': 7.31.3(@types/node@24.10.0) + '@microsoft/api-extractor-model': 7.31.2(@types/node@24.10.0) '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.18.0(@types/node@24.10.0) + '@rushstack/node-core-library': 5.17.1(@types/node@24.10.0) '@rushstack/rig-package': 0.6.0 - '@rushstack/terminal': 0.19.3(@types/node@24.10.0) - '@rushstack/ts-command-line': 5.1.3(@types/node@24.10.0) - diff: 8.0.2 + '@rushstack/terminal': 0.19.2(@types/node@24.10.0) + '@rushstack/ts-command-line': 5.1.2(@types/node@24.10.0) lodash: 4.17.21 minimatch: 10.0.3 resolve: 1.22.11 @@ -14305,8 +15144,8 @@ snapshots: '@napi-rs/wasm-runtime@0.2.12': dependencies: - '@emnapi/core': 1.7.0 - '@emnapi/runtime': 1.7.0 + '@emnapi/core': 1.6.0 + '@emnapi/runtime': 1.6.0 '@tybys/wasm-util': 0.10.1 optional: true @@ -14322,6 +15161,19 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.19.1 +<<<<<<< HEAD + '@nolebase/ui@2.18.2(vitepress@1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@iconify-json/octicon': 1.2.16 + less: 4.4.2 + vitepress: 1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3) + vue: 3.5.22(typescript@5.9.3) + + '@nolebase/vitepress-plugin-git-changelog@2.18.2(vitepress@1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@iconify-json/octicon': 1.2.16 + '@nolebase/ui': 2.18.2(vitepress@1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3)) +======= '@nolebase/ui@2.18.2(vitepress@1.6.4(@algolia/client-search@5.43.0)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.13.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.24(typescript@5.9.3))': dependencies: '@iconify-json/octicon': 1.2.18 @@ -14333,16 +15185,21 @@ snapshots: dependencies: '@iconify-json/octicon': 1.2.18 '@nolebase/ui': 2.18.2(vitepress@1.6.4(@algolia/client-search@5.43.0)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.13.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef colorette: 2.0.20 date-fns: 4.1.0 defu: 6.1.4 - es-toolkit: 1.41.0 + es-toolkit: 1.40.0 execa: 9.6.0 globby: 14.1.0 gray-matter: 4.0.3 less: 4.4.2 uncrypto: 0.1.3 +<<<<<<< HEAD + vitepress: 1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3) +======= vitepress: 1.6.4(@algolia/client-search@5.43.0)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.13.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - vue @@ -14350,9 +15207,13 @@ snapshots: dependencies: semver: 7.7.3 +<<<<<<< HEAD + '@nuxt/kit@3.19.3(magicast@0.3.5)': +======= '@nuxt/kit@3.20.1': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: - c12: 3.3.1(magicast@0.5.1) + c12: 3.3.1(magicast@0.3.5) consola: 3.4.2 defu: 6.1.4 destr: 2.0.5 @@ -14369,9 +15230,11 @@ snapshots: rc9: 2.1.2 scule: 1.3.0 semver: 7.7.3 + std-env: 3.10.0 tinyglobby: 0.2.15 ufo: 1.6.1 unctx: 2.4.1 + unimport: 5.5.0 untyped: 2.0.0 transitivePeerDependencies: - magicast @@ -14488,10 +15351,10 @@ snapshots: dependencies: kleur: 4.1.5 - '@poppinss/dumper@0.6.5': + '@poppinss/dumper@0.6.4': dependencies: '@poppinss/colors': 4.1.5 - '@sindresorhus/is': 7.1.1 + '@sindresorhus/is': 7.1.0 supports-color: 10.2.2 '@poppinss/exception@1.2.2': {} @@ -14500,29 +15363,33 @@ snapshots: '@rolldown/pluginutils@1.0.0-beta.29': {} - '@rolldown/pluginutils@1.0.0-beta.47': {} + '@rolldown/pluginutils@1.0.0-beta.44': {} '@rollup/plugin-alias@5.1.1(rollup@4.53.1)': optionalDependencies: rollup: 4.53.1 - '@rollup/plugin-babel@5.3.1(@babel/core@7.28.5)(rollup@2.79.2)': + '@rollup/plugin-babel@5.3.1(@babel/core@7.28.4)(rollup@2.79.2)': dependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-module-imports': 7.27.1 '@rollup/pluginutils': 3.1.0(rollup@2.79.2) rollup: 2.79.2 transitivePeerDependencies: - supports-color +<<<<<<< HEAD + '@rollup/plugin-commonjs@28.0.8(rollup@4.52.5)': +======= '@rollup/plugin-commonjs@28.0.9(rollup@4.53.1)': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.53.1) commondir: 1.0.1 estree-walker: 2.0.2 fdir: 6.5.0(picomatch@4.0.3) is-reference: 1.2.1 - magic-string: 0.30.21 + magic-string: 0.30.19 picomatch: 4.0.3 optionalDependencies: rollup: 4.53.1 @@ -14531,7 +15398,7 @@ snapshots: dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.53.1) estree-walker: 2.0.2 - magic-string: 0.30.21 + magic-string: 0.30.19 optionalDependencies: rollup: 4.53.1 @@ -14567,10 +15434,17 @@ snapshots: magic-string: 0.25.9 rollup: 2.79.2 +<<<<<<< HEAD + '@rollup/plugin-replace@6.0.2(rollup@4.52.5)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.52.5) + magic-string: 0.30.19 +======= '@rollup/plugin-replace@6.0.3(rollup@4.53.1)': dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.53.1) magic-string: 0.30.21 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: rollup: 4.53.1 @@ -14578,7 +15452,7 @@ snapshots: dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 - terser: 5.44.1 + terser: 5.44.0 optionalDependencies: rollup: 2.79.2 @@ -14586,7 +15460,7 @@ snapshots: dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 - terser: 5.44.1 + terser: 5.44.0 optionalDependencies: rollup: 4.53.1 @@ -14684,7 +15558,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.53.1': optional: true - '@rushstack/node-core-library@5.18.0(@types/node@24.10.0)': + '@rushstack/node-core-library@5.17.1(@types/node@24.10.0)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -14706,17 +15580,17 @@ snapshots: resolve: 1.22.11 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.19.3(@types/node@24.10.0)': + '@rushstack/terminal@0.19.2(@types/node@24.10.0)': dependencies: - '@rushstack/node-core-library': 5.18.0(@types/node@24.10.0) + '@rushstack/node-core-library': 5.17.1(@types/node@24.10.0) '@rushstack/problem-matcher': 0.1.1(@types/node@24.10.0) supports-color: 8.1.1 optionalDependencies: '@types/node': 24.10.0 - '@rushstack/ts-command-line@5.1.3(@types/node@24.10.0)': + '@rushstack/ts-command-line@5.1.2(@types/node@24.10.0)': dependencies: - '@rushstack/terminal': 0.19.3(@types/node@24.10.0) + '@rushstack/terminal': 0.19.2(@types/node@24.10.0) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -14770,13 +15644,13 @@ snapshots: core-js: 3.46.0 nanopop: 2.4.2 - '@sindresorhus/is@7.1.1': {} + '@sindresorhus/is@7.1.0': {} '@sindresorhus/merge-streams@2.3.0': {} '@sindresorhus/merge-streams@4.0.0': {} - '@speed-highlight/core@1.2.12': {} + '@speed-highlight/core@1.2.7': {} '@stylistic/stylelint-plugin@3.1.3(stylelint@16.25.0(typescript@5.9.3))': dependencies: @@ -14797,9 +15671,15 @@ snapshots: magic-string: 0.25.9 string.prototype.matchall: 4.0.12 +<<<<<<< HEAD + '@svelte-put/shortcut@4.1.0(svelte@5.41.1)': + dependencies: + svelte: 5.41.1 +======= '@svelte-put/shortcut@4.1.0(svelte@5.43.5)': dependencies: svelte: 5.43.5 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@sveltejs/acorn-typescript@1.0.6(acorn@8.15.0)': dependencies: @@ -14825,17 +15705,54 @@ snapshots: dependencies: remove-accents: 0.5.0 - '@tanstack/query-core@5.90.7': {} + '@tanstack/query-core@5.90.5': {} '@tanstack/store@0.7.7': {} '@tanstack/virtual-core@3.13.12': {} +<<<<<<< HEAD + '@tanstack/vue-query@5.90.5(vue@3.5.22(typescript@5.9.3))': +======= '@tanstack/vue-query@5.90.7(vue@3.5.24(typescript@5.9.3))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@tanstack/match-sorter-utils': 8.19.4 - '@tanstack/query-core': 5.90.7 + '@tanstack/query-core': 5.90.5 '@vue/devtools-api': 6.6.4 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) + vue-demi: 0.14.10(vue@3.5.22(typescript@5.9.3)) + + '@tanstack/vue-store@0.7.7(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@tanstack/store': 0.7.7 + vue: 3.5.22(typescript@5.9.3) + vue-demi: 0.14.10(vue@3.5.22(typescript@5.9.3)) + + '@tanstack/vue-virtual@3.13.12(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@tanstack/virtual-core': 3.13.12 + vue: 3.5.22(typescript@5.9.3) + + '@tinyflow-ai/ui@1.1.7(svelte@5.41.1)': + dependencies: + '@floating-ui/dom': 1.7.4 + '@xyflow/svelte': 1.4.0(svelte@5.41.1) + transitivePeerDependencies: + - svelte + + '@tinyflow-ai/vue@1.1.7(svelte@5.41.1)(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@tinyflow-ai/ui': 1.1.7(svelte@5.41.1) + vue: 3.5.22(typescript@5.9.3) + transitivePeerDependencies: + - svelte + + '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.1)(vue@3.5.22(typescript@5.9.3))': + dependencies: + vue: 3.5.22(typescript@5.9.3) +======= vue: 3.5.24(typescript@5.9.3) vue-demi: 0.14.10(vue@3.5.24(typescript@5.9.3)) @@ -14867,6 +15784,7 @@ snapshots: '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.1)(vue@3.5.24(typescript@5.9.3))': dependencies: vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: tinymce: 7.9.1 @@ -14875,7 +15793,7 @@ snapshots: tslib: 2.8.1 optional: true - '@types/archiver@6.0.4': + '@types/archiver@6.0.3': dependencies: '@types/readdir-glob': 1.1.5 @@ -14888,13 +15806,13 @@ snapshots: '@types/deep-eql': 4.0.2 assertion-error: 2.0.1 - '@types/codemirror@5.60.17': + '@types/codemirror@5.60.16': dependencies: '@types/tern': 0.23.9 - '@types/conventional-commits-parser@5.0.2': + '@types/conventional-commits-parser@5.0.1': dependencies: - '@types/node': 24.10.0 + '@types/node': 24.9.1 '@types/crypto-js@4.2.2': {} @@ -15041,7 +15959,7 @@ snapshots: '@types/jsonwebtoken@9.0.10': dependencies: '@types/ms': 2.1.0 - '@types/node': 24.10.0 + '@types/node': 24.9.1 '@types/katex@0.16.7': {} @@ -15090,6 +16008,10 @@ snapshots: dependencies: undici-types: 7.16.0 + '@types/node@24.9.1': + dependencies: + undici-types: 7.16.0 + '@types/nprogress@0.2.3': {} '@types/parse-json@4.0.2': {} @@ -15098,19 +16020,19 @@ snapshots: dependencies: postcss: 8.5.6 - '@types/qrcode@1.5.6': + '@types/qrcode@1.5.5': dependencies: - '@types/node': 24.10.0 + '@types/node': 24.9.1 '@types/qs@6.14.0': {} '@types/readdir-glob@1.1.5': dependencies: - '@types/node': 24.10.0 + '@types/node': 24.9.1 '@types/resolve@1.20.2': {} - '@types/sortablejs@1.15.9': {} + '@types/sortablejs@1.15.8': {} '@types/tern@0.23.9': dependencies: @@ -15122,23 +16044,26 @@ snapshots: '@types/unist@3.0.3': {} +<<<<<<< HEAD +======= '@types/validator@13.15.4': {} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@types/video.js@7.3.58': {} '@types/web-bluetooth@0.0.16': {} '@types/web-bluetooth@0.0.21': {} - '@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.46.3 - '@typescript-eslint/type-utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.46.3 - eslint: 9.39.1(jiti@2.6.1) + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/type-utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.2 + eslint: 9.38.0(jiti@2.6.1) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -15147,22 +16072,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.46.3 - '@typescript-eslint/types': 8.46.3 - '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.46.3 + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.2 debug: 4.4.3 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.46.3(typescript@5.9.3)': + '@typescript-eslint/project-service@8.46.2(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.9.3) - '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3) + '@typescript-eslint/types': 8.46.2 debug: 4.4.3 typescript: 5.9.3 transitivePeerDependencies: @@ -15173,22 +16098,22 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - '@typescript-eslint/scope-manager@8.46.3': + '@typescript-eslint/scope-manager@8.46.2': dependencies: - '@typescript-eslint/types': 8.46.3 - '@typescript-eslint/visitor-keys': 8.46.3 + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/visitor-keys': 8.46.2 - '@typescript-eslint/tsconfig-utils@8.46.3(typescript@5.9.3)': + '@typescript-eslint/tsconfig-utils@8.46.2(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.46.3 - '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) debug: 4.4.3 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -15196,7 +16121,7 @@ snapshots: '@typescript-eslint/types@7.18.0': {} - '@typescript-eslint/types@8.46.3': {} + '@typescript-eslint/types@8.46.2': {} '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)': dependencies: @@ -15213,12 +16138,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.46.3(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@8.46.2(typescript@5.9.3)': dependencies: - '@typescript-eslint/project-service': 8.46.3(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.9.3) - '@typescript-eslint/types': 8.46.3 - '@typescript-eslint/visitor-keys': 8.46.3 + '@typescript-eslint/project-service': 8.46.2(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3) + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/visitor-keys': 8.46.2 debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -15229,24 +16154,24 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/utils@7.18.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3) - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) - '@typescript-eslint/scope-manager': 8.46.3 - '@typescript-eslint/types': 8.46.3 - '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) - eslint: 9.39.1(jiti@2.6.1) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) + eslint: 9.38.0(jiti@2.6.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -15256,9 +16181,9 @@ snapshots: '@typescript-eslint/types': 7.18.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.46.3': + '@typescript-eslint/visitor-keys@8.46.2': dependencies: - '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/types': 8.46.2 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -15322,10 +16247,17 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.11.1': optional: true +<<<<<<< HEAD + '@vee-validate/zod@4.15.1(vue@3.5.22(typescript@5.9.3))(zod@3.25.76)': + dependencies: + type-fest: 4.41.0 + vee-validate: 4.15.1(vue@3.5.22(typescript@5.9.3)) +======= '@vee-validate/zod@4.15.1(vue@3.5.24(typescript@5.9.3))(zod@3.25.76)': dependencies: type-fest: 4.41.0 vee-validate: 4.15.1(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef zod: 3.25.76 transitivePeerDependencies: - vue @@ -15349,6 +16281,9 @@ snapshots: - rollup - supports-color +<<<<<<< HEAD + '@videojs-player/vue@1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.22(typescript@5.9.3))': +======= '@videojs-player/vue@1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.24(typescript@5.9.3))': dependencies: '@types/video.js': 7.3.58 @@ -15379,9 +16314,63 @@ snapshots: is-function: 1.0.2 '@vite-pwa/vitepress@1.0.1(vite-plugin-pwa@1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1))(workbox-build@7.3.0)(workbox-window@7.3.0))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef + dependencies: + '@types/video.js': 7.3.58 + video.js: 7.21.7 + vue: 3.5.22(typescript@5.9.3) + +<<<<<<< HEAD + '@videojs/http-streaming@2.16.3(video.js@7.21.7)': + dependencies: + '@babel/runtime': 7.28.4 + '@videojs/vhs-utils': 3.0.5 + aes-decrypter: 3.1.3 + global: 4.4.0 + m3u8-parser: 4.8.0 + mpd-parser: 0.22.1 + mux.js: 6.0.1 + video.js: 7.21.7 + + '@videojs/vhs-utils@3.0.5': + dependencies: + '@babel/runtime': 7.28.4 + global: 4.4.0 + url-toolkit: 2.2.5 + + '@videojs/xhr@2.6.0': + dependencies: + '@babel/runtime': 7.28.4 + global: 4.4.0 + is-function: 1.0.2 + + '@vite-pwa/vitepress@1.0.1(vite-plugin-pwa@1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0))': + dependencies: + vite-plugin-pwa: 1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0) + + '@vitejs/plugin-vue-jsx@5.1.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))': dependencies: - vite-plugin-pwa: 1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1))(workbox-build@7.3.0)(workbox-window@7.3.0) + '@babel/core': 7.28.4 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4) + '@rolldown/pluginutils': 1.0.0-beta.44 + '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4) + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + vue: 3.5.22(typescript@5.9.3) + transitivePeerDependencies: + - supports-color + '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(vue@3.5.22(typescript@5.9.3))': + dependencies: + vite: 5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0) + vue: 3.5.22(typescript@5.9.3) + + '@vitejs/plugin-vue@6.0.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@rolldown/pluginutils': 1.0.0-beta.29 + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + vue: 3.5.22(typescript@5.9.3) +======= '@vitejs/plugin-vue-jsx@5.1.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))': dependencies: '@babel/core': 7.28.5 @@ -15404,6 +16393,7 @@ snapshots: '@rolldown/pluginutils': 1.0.0-beta.29 vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vitest/expect@3.2.4': dependencies: @@ -15413,13 +16403,21 @@ snapshots: chai: 5.3.3 tinyrainbow: 2.0.0 +<<<<<<< HEAD + '@vitest/mocker@3.2.4(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))': +======= '@vitest/mocker@3.2.4(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 - magic-string: 0.30.21 + magic-string: 0.30.19 optionalDependencies: +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vitest/pretty-format@3.2.4': dependencies: @@ -15434,7 +16432,7 @@ snapshots: '@vitest/snapshot@3.2.4': dependencies: '@vitest/pretty-format': 3.2.4 - magic-string: 0.30.21 + magic-string: 0.30.19 pathe: 2.0.3 '@vitest/spy@3.2.4': @@ -15461,28 +16459,44 @@ snapshots: '@vue/babel-helper-vue-transform-on@1.5.0': {} - '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.5)': + '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.4)': dependencies: '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) '@babel/template': 7.27.2 - '@babel/traverse': 7.28.5 - '@babel/types': 7.28.5 + '@babel/traverse': 7.28.4 + '@babel/types': 7.28.4 '@vue/babel-helper-vue-transform-on': 1.5.0 +<<<<<<< HEAD + '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.4) + '@vue/shared': 3.5.22 +======= '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.5) '@vue/shared': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 transitivePeerDependencies: - supports-color - '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.5)': + '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.4)': dependencies: '@babel/code-frame': 7.27.1 - '@babel/core': 7.28.5 + '@babel/core': 7.28.4 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 +<<<<<<< HEAD + '@babel/parser': 7.28.4 + '@vue/compiler-sfc': 3.5.22 + transitivePeerDependencies: + - supports-color + + '@vue/compiler-core@3.5.22': + dependencies: + '@babel/parser': 7.28.4 + '@vue/shared': 3.5.22 +======= '@babel/parser': 7.28.5 '@vue/compiler-sfc': 3.5.24 transitivePeerDependencies: @@ -15492,10 +16506,25 @@ snapshots: dependencies: '@babel/parser': 7.28.5 '@vue/shared': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 +<<<<<<< HEAD + '@vue/compiler-dom@3.5.22': + dependencies: + '@vue/compiler-core': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/compiler-sfc@3.5.22': + dependencies: + '@babel/parser': 7.28.4 + '@vue/compiler-core': 3.5.22 + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-ssr': 3.5.22 + '@vue/shared': 3.5.22 +======= '@vue/compiler-dom@3.5.24': dependencies: '@vue/compiler-core': 3.5.24 @@ -15508,15 +16537,23 @@ snapshots: '@vue/compiler-dom': 3.5.24 '@vue/compiler-ssr': 3.5.24 '@vue/shared': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef estree-walker: 2.0.2 - magic-string: 0.30.21 + magic-string: 0.30.19 postcss: 8.5.6 source-map-js: 1.2.1 +<<<<<<< HEAD + '@vue/compiler-ssr@3.5.22': + dependencies: + '@vue/compiler-dom': 3.5.22 + '@vue/shared': 3.5.22 +======= '@vue/compiler-ssr@3.5.24': dependencies: '@vue/compiler-dom': 3.5.24 '@vue/shared': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vue/compiler-vue2@2.7.16': dependencies: @@ -15529,27 +16566,40 @@ snapshots: dependencies: '@vue/devtools-kit': 7.7.7 +<<<<<<< HEAD + '@vue/devtools-core@7.7.7(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))': +======= '@vue/devtools-core@7.7.7(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))': +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@vue/devtools-kit': 7.7.7 '@vue/devtools-shared': 7.7.7 mitt: 3.0.1 nanoid: 5.1.6 pathe: 2.0.3 +<<<<<<< HEAD + vite-hot-client: 2.1.0(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) + vue: 3.5.22(typescript@5.9.3) +======= vite-hot-client: 2.1.0(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)) vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - vite '@vue/devtools-kit@7.7.7': dependencies: '@vue/devtools-shared': 7.7.7 +<<<<<<< HEAD + birpc: 2.6.1 +======= birpc: 2.8.0 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef hookable: 5.5.3 mitt: 3.0.1 perfect-debounce: 1.0.0 speakingurl: 14.0.1 - superjson: 2.2.5 + superjson: 2.2.3 '@vue/devtools-shared@7.7.7': dependencies: @@ -15558,9 +16608,15 @@ snapshots: '@vue/language-core@2.2.0(typescript@5.9.3)': dependencies: '@volar/language-core': 2.4.23 +<<<<<<< HEAD + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.22 +======= '@vue/compiler-dom': 3.5.24 '@vue/compiler-vue2': 2.7.16 '@vue/shared': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef alien-signals: 0.4.14 minimatch: 9.0.5 muggle-string: 0.4.1 @@ -15571,9 +16627,15 @@ snapshots: '@vue/language-core@2.2.10(typescript@5.9.3)': dependencies: '@volar/language-core': 2.4.23 +<<<<<<< HEAD + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.22 +======= '@vue/compiler-dom': 3.5.24 '@vue/compiler-vue2': 2.7.16 '@vue/shared': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef alien-signals: 1.0.13 minimatch: 9.0.5 muggle-string: 0.4.1 @@ -15581,6 +16643,31 @@ snapshots: optionalDependencies: typescript: 5.9.3 +<<<<<<< HEAD + '@vue/reactivity@3.5.22': + dependencies: + '@vue/shared': 3.5.22 + + '@vue/runtime-core@3.5.22': + dependencies: + '@vue/reactivity': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/runtime-dom@3.5.22': + dependencies: + '@vue/reactivity': 3.5.22 + '@vue/runtime-core': 3.5.22 + '@vue/shared': 3.5.22 + csstype: 3.1.3 + + '@vue/server-renderer@3.5.22(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@vue/compiler-ssr': 3.5.22 + '@vue/shared': 3.5.22 + vue: 3.5.22(typescript@5.9.3) + + '@vue/shared@3.5.22': {} +======= '@vue/reactivity@3.5.24': dependencies: '@vue/shared': 3.5.24 @@ -15604,17 +16691,50 @@ snapshots: vue: 3.5.24(typescript@5.9.3) '@vue/shared@3.5.24': {} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vue/test-utils@2.4.6': dependencies: js-beautify: 1.15.4 vue-component-type-helpers: 2.2.12 + '@vueuse/components@13.9.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@vueuse/core': 13.9.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/shared': 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: 3.5.22(typescript@5.9.3) + '@vueuse/core@12.8.2(typescript@5.9.3)': dependencies: '@types/web-bluetooth': 0.0.21 '@vueuse/metadata': 12.8.2 '@vueuse/shared': 12.8.2(typescript@5.9.3) +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) + transitivePeerDependencies: + - typescript + + '@vueuse/core@13.9.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@types/web-bluetooth': 0.0.21 + '@vueuse/metadata': 13.9.0 + '@vueuse/shared': 13.9.0(vue@3.5.22(typescript@5.9.3)) + vue: 3.5.22(typescript@5.9.3) + + '@vueuse/core@14.0.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@types/web-bluetooth': 0.0.21 + '@vueuse/metadata': 14.0.0 + '@vueuse/shared': 14.0.0(vue@3.5.22(typescript@5.9.3)) + vue: 3.5.22(typescript@5.9.3) + + '@vueuse/core@9.13.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@types/web-bluetooth': 0.0.16 + '@vueuse/metadata': 9.13.0 + '@vueuse/shared': 9.13.0(vue@3.5.22(typescript@5.9.3)) + vue-demi: 0.14.10(vue@3.5.22(typescript@5.9.3)) +======= vue: 3.5.24(typescript@5.9.3) transitivePeerDependencies: - typescript @@ -15639,34 +16759,47 @@ snapshots: '@vueuse/metadata': 9.13.0 '@vueuse/shared': 9.13.0(vue@3.5.24(typescript@5.9.3)) vue-demi: 0.14.10(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.13.2)(focus-trap@7.6.6)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.3)': + '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.3)': dependencies: '@vueuse/core': 12.8.2(typescript@5.9.3) '@vueuse/shared': 12.8.2(typescript@5.9.3) +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) +======= vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: async-validator: 4.2.5 - axios: 1.13.2 - focus-trap: 7.6.6 + axios: 1.12.2 + focus-trap: 7.6.5 nprogress: 0.2.0 qrcode: 1.5.4 sortablejs: 1.15.6 transitivePeerDependencies: - typescript +<<<<<<< HEAD + '@vueuse/integrations@14.0.0(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@vueuse/core': 14.0.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/shared': 14.0.0(vue@3.5.22(typescript@5.9.3)) + vue: 3.5.22(typescript@5.9.3) +======= '@vueuse/integrations@14.0.0(async-validator@4.2.5)(axios@1.13.2)(focus-trap@7.6.6)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.24(typescript@5.9.3))': dependencies: '@vueuse/core': 14.0.0(vue@3.5.24(typescript@5.9.3)) '@vueuse/shared': 14.0.0(vue@3.5.24(typescript@5.9.3)) vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: async-validator: 4.2.5 - axios: 1.13.2 - focus-trap: 7.6.6 + axios: 1.12.2 + focus-trap: 7.6.5 nprogress: 0.2.0 qrcode: 1.5.4 sortablejs: 1.15.6 @@ -15679,22 +16812,52 @@ snapshots: '@vueuse/metadata@9.13.0': {} +<<<<<<< HEAD + '@vueuse/motion@3.0.3(magicast@0.3.5)(vue@3.5.22(typescript@5.9.3))': + dependencies: + '@vueuse/core': 13.9.0(vue@3.5.22(typescript@5.9.3)) + '@vueuse/shared': 13.9.0(vue@3.5.22(typescript@5.9.3)) +======= '@vueuse/motion@3.0.3(vue@3.5.24(typescript@5.9.3))': dependencies: '@vueuse/core': 13.9.0(vue@3.5.24(typescript@5.9.3)) '@vueuse/shared': 13.9.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef defu: 6.1.4 framesync: 6.1.2 popmotion: 11.0.5 style-value-types: 5.1.2 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) + optionalDependencies: + '@nuxt/kit': 3.19.3(magicast@0.3.5) +======= vue: 3.5.24(typescript@5.9.3) optionalDependencies: '@nuxt/kit': 3.20.1 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - magicast '@vueuse/shared@12.8.2(typescript@5.9.3)': dependencies: +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) + transitivePeerDependencies: + - typescript + + '@vueuse/shared@13.9.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + vue: 3.5.22(typescript@5.9.3) + + '@vueuse/shared@14.0.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + vue: 3.5.22(typescript@5.9.3) + + '@vueuse/shared@9.13.0(vue@3.5.22(typescript@5.9.3))': + dependencies: + vue-demi: 0.14.10(vue@3.5.22(typescript@5.9.3)) +======= vue: 3.5.24(typescript@5.9.3) transitivePeerDependencies: - typescript @@ -15710,10 +16873,20 @@ snapshots: '@vueuse/shared@9.13.0(vue@3.5.24(typescript@5.9.3))': dependencies: vue-demi: 0.14.10(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@vue/composition-api' - vue +<<<<<<< HEAD + '@vxe-ui/core@4.2.12(vue@3.5.22(typescript@5.9.3))': + dependencies: + dom-zindex: 1.0.6 + vue: 3.5.22(typescript@5.9.3) + xe-utils: 3.7.9 + + '@xmldom/xmldom@0.8.11': {} +======= '@vxe-ui/core@4.2.13(vue@3.5.24(typescript@5.9.3))': dependencies: dom-zindex: 1.0.6 @@ -15727,8 +16900,15 @@ snapshots: '@svelte-put/shortcut': 4.1.0(svelte@5.43.5) '@xyflow/system': 0.0.72 svelte: 5.43.5 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef - '@xyflow/system@0.0.72': + '@xyflow/svelte@1.4.0(svelte@5.41.1)': + dependencies: + '@svelte-put/shortcut': 4.1.0(svelte@5.41.1) + '@xyflow/system': 0.0.71 + svelte: 5.41.1 + + '@xyflow/system@0.0.71': dependencies: '@types/d3-drag': 3.0.7 '@types/d3-interpolate': 3.0.4 @@ -15808,6 +16988,24 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 +<<<<<<< HEAD + algoliasearch@5.40.1: + dependencies: + '@algolia/abtesting': 1.6.1 + '@algolia/client-abtesting': 5.40.1 + '@algolia/client-analytics': 5.40.1 + '@algolia/client-common': 5.40.1 + '@algolia/client-insights': 5.40.1 + '@algolia/client-personalization': 5.40.1 + '@algolia/client-query-suggestions': 5.40.1 + '@algolia/client-search': 5.40.1 + '@algolia/ingestion': 1.40.1 + '@algolia/monitoring': 1.40.1 + '@algolia/recommend': 5.40.1 + '@algolia/requester-browser-xhr': 5.40.1 + '@algolia/requester-fetch': 5.40.1 + '@algolia/requester-node-http': 5.40.1 +======= algoliasearch@5.43.0: dependencies: '@algolia/abtesting': 1.9.0 @@ -15824,6 +17022,7 @@ snapshots: '@algolia/requester-browser-xhr': 5.43.0 '@algolia/requester-fetch': 5.43.0 '@algolia/requester-node-http': 5.43.0 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef alien-signals@0.4.14: {} @@ -15835,7 +17034,7 @@ snapshots: ansi-colors@4.1.3: {} - ansi-escapes@7.2.0: + ansi-escapes@7.1.1: dependencies: environment: 1.1.0 @@ -15849,10 +17048,17 @@ snapshots: ansi-styles@6.2.3: {} +<<<<<<< HEAD + ant-design-vue@4.2.6(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@ant-design/colors': 6.0.0 + '@ant-design/icons-vue': 7.0.1(vue@3.5.22(typescript@5.9.3)) +======= ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)): dependencies: '@ant-design/colors': 6.0.0 '@ant-design/icons-vue': 7.0.1(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@babel/runtime': 7.28.4 '@ctrl/tinycolor': 4.2.0 '@emotion/hash': 0.9.2 @@ -15861,7 +17067,7 @@ snapshots: array-tree-filter: 2.1.0 async-validator: 4.2.5 csstype: 3.1.3 - dayjs: 1.11.19 + dayjs: 1.11.18 dom-align: 1.12.4 dom-scroll-into-view: 2.0.1 lodash: 4.17.21 @@ -15871,8 +17077,13 @@ snapshots: shallow-equal: 1.2.1 stylis: 4.3.6 throttle-debounce: 5.0.2 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) + vue-types: 3.0.2(vue@3.5.22(typescript@5.9.3)) +======= vue: 3.5.24(typescript@5.9.3) vue-types: 3.0.2(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef warning: 4.0.3 any-promise@1.3.0: {} @@ -15966,10 +17177,10 @@ snapshots: at-least-node@1.0.0: {} - atomically@2.1.0: + atomically@2.0.3: dependencies: - stubborn-fs: 2.0.0 - when-exit: 2.1.5 + stubborn-fs: 1.2.5 + when-exit: 2.1.4 autolinker@3.16.2: dependencies: @@ -15977,8 +17188,8 @@ snapshots: autoprefixer@10.4.21(postcss@8.5.6): dependencies: - browserslist: 4.27.0 - caniuse-lite: 1.0.30001754 + browserslist: 4.26.3 + caniuse-lite: 1.0.30001751 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -15989,13 +17200,13 @@ snapshots: dependencies: possible-typed-array-names: 1.1.0 - axios-mock-adapter@2.1.0(axios@1.13.2): + axios-mock-adapter@2.1.0(axios@1.12.2): dependencies: - axios: 1.13.2 + axios: 1.12.2 fast-deep-equal: 3.1.3 is-buffer: 2.0.5 - axios@1.13.2: + axios@1.12.2: dependencies: follow-redirects: 1.15.11 form-data: 4.0.4 @@ -16007,27 +17218,27 @@ snapshots: b4a@1.7.3: {} - babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.5): + babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4): dependencies: - '@babel/compat-data': 7.28.5 - '@babel/core': 7.28.5 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) + '@babel/compat-data': 7.28.4 + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.5): + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4): dependencies: - '@babel/core': 7.28.5 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) core-js-compat: 3.46.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.5): + babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4): dependencies: - '@babel/core': 7.28.5 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) transitivePeerDependencies: - supports-color @@ -16035,11 +17246,21 @@ snapshots: balanced-match@2.0.0: {} +<<<<<<< HEAD + bare-events@2.8.0: {} +======= bare-events@2.8.2: {} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef base64-js@1.5.1: {} - baseline-browser-mapping@2.8.25: {} + baseline-browser-mapping@2.8.19: {} + + benz-amr-recorder@1.1.5: + dependencies: + benz-recorderjs: 1.0.5 + + benz-recorderjs@1.0.5: {} benz-amr-recorder@1.1.5: dependencies: @@ -16061,7 +17282,11 @@ snapshots: bintrees@1.0.2: {} +<<<<<<< HEAD + birpc@2.6.1: {} +======= birpc@2.8.0: {} +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef boolbase@1.0.0: {} @@ -16076,10 +17301,10 @@ snapshots: widest-line: 5.0.0 wrap-ansi: 9.0.2 - bpmn-js-properties-panel@5.23.0(@bpmn-io/properties-panel@3.33.2)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.11.2(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0))(diagram-js@12.8.1): + bpmn-js-properties-panel@5.23.0(@bpmn-io/properties-panel@3.33.0)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.11.2(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0))(diagram-js@12.8.1): dependencies: '@bpmn-io/extract-process-variables': 0.8.0 - '@bpmn-io/properties-panel': 3.33.2 + '@bpmn-io/properties-panel': 3.33.0 array-move: 4.0.0 bpmn-js: 17.11.1 camunda-bpmn-js-behaviors: 1.11.2(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0) @@ -16125,13 +17350,21 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.27.0: + browserslist@4.26.3: dependencies: +<<<<<<< HEAD + baseline-browser-mapping: 2.8.19 + caniuse-lite: 1.0.30001751 + electron-to-chromium: 1.5.238 + node-releases: 2.0.26 + update-browserslist-db: 1.1.3(browserslist@4.26.3) +======= baseline-browser-mapping: 2.8.25 caniuse-lite: 1.0.30001754 electron-to-chromium: 1.5.249 node-releases: 2.0.27 update-browserslist-db: 1.1.4(browserslist@4.27.0) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef buffer-crc32@1.0.0: {} @@ -16150,7 +17383,7 @@ snapshots: dependencies: run-applescript: 7.1.0 - c12@3.3.1(magicast@0.5.1): + c12@3.3.1(magicast@0.3.5): dependencies: chokidar: 4.0.3 confbox: 0.2.2 @@ -16165,7 +17398,7 @@ snapshots: pkg-types: 2.3.0 rc9: 2.1.2 optionalDependencies: - magicast: 0.5.1 + magicast: 0.3.5 cac@6.7.14: {} @@ -16186,8 +17419,8 @@ snapshots: cacheable@2.1.1: dependencies: '@cacheable/memoize': 2.0.3 - '@cacheable/memory': 2.0.4 - '@cacheable/utils': 2.2.0 + '@cacheable/memory': 2.0.3 + '@cacheable/utils': 2.1.0 hookified: 1.12.2 keyv: 5.5.3 qified: 0.5.1 @@ -16238,12 +17471,12 @@ snapshots: caniuse-api@3.0.0: dependencies: - browserslist: 4.27.0 - caniuse-lite: 1.0.30001754 + browserslist: 4.26.3 + caniuse-lite: 1.0.30001751 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001754: {} + caniuse-lite@1.0.30001751: {} ccount@2.0.1: {} @@ -16270,7 +17503,7 @@ snapshots: character-entities-legacy@3.0.0: {} - chardet@2.1.1: {} + chardet@2.1.0: {} check-error@2.1.1: {} @@ -16332,7 +17565,11 @@ snapshots: circular-dependency-scanner@2.3.0: dependencies: '@ast-grep/napi': 0.37.0 +<<<<<<< HEAD + '@vue/compiler-sfc': 3.5.22 +======= '@vue/compiler-sfc': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef commander: 12.1.0 get-tsconfig: 4.13.0 graph-cycles: 3.0.0 @@ -16499,7 +17736,7 @@ snapshots: configstore@7.1.0: dependencies: - atomically: 2.1.0 + atomically: 2.0.3 dot-prop: 9.0.0 graceful-fs: 4.2.11 xdg-basedir: 5.1.0 @@ -16531,6 +17768,8 @@ snapshots: cookie-es@2.0.0: {} + cookie@1.0.2: {} + copy-anything@2.0.6: dependencies: is-what: 3.14.1 @@ -16541,7 +17780,7 @@ snapshots: core-js-compat@3.46.0: dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 core-js-pure@3.46.0: {} @@ -16750,24 +17989,24 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@7.0.10(postcss@8.5.6): + cssnano-preset-default@7.0.9(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 css-declaration-sorter: 7.3.0(postcss@8.5.6) cssnano-utils: 5.0.1(postcss@8.5.6) postcss: 8.5.6 postcss-calc: 10.1.1(postcss@8.5.6) - postcss-colormin: 7.0.5(postcss@8.5.6) - postcss-convert-values: 7.0.8(postcss@8.5.6) - postcss-discard-comments: 7.0.5(postcss@8.5.6) + postcss-colormin: 7.0.4(postcss@8.5.6) + postcss-convert-values: 7.0.7(postcss@8.5.6) + postcss-discard-comments: 7.0.4(postcss@8.5.6) postcss-discard-duplicates: 7.0.2(postcss@8.5.6) postcss-discard-empty: 7.0.1(postcss@8.5.6) postcss-discard-overridden: 7.0.1(postcss@8.5.6) postcss-merge-longhand: 7.0.5(postcss@8.5.6) - postcss-merge-rules: 7.0.7(postcss@8.5.6) + postcss-merge-rules: 7.0.6(postcss@8.5.6) postcss-minify-font-values: 7.0.1(postcss@8.5.6) postcss-minify-gradients: 7.0.1(postcss@8.5.6) - postcss-minify-params: 7.0.5(postcss@8.5.6) + postcss-minify-params: 7.0.4(postcss@8.5.6) postcss-minify-selectors: 7.0.5(postcss@8.5.6) postcss-normalize-charset: 7.0.1(postcss@8.5.6) postcss-normalize-display-values: 7.0.1(postcss@8.5.6) @@ -16775,11 +18014,11 @@ snapshots: postcss-normalize-repeat-style: 7.0.1(postcss@8.5.6) postcss-normalize-string: 7.0.1(postcss@8.5.6) postcss-normalize-timing-functions: 7.0.1(postcss@8.5.6) - postcss-normalize-unicode: 7.0.5(postcss@8.5.6) + postcss-normalize-unicode: 7.0.4(postcss@8.5.6) postcss-normalize-url: 7.0.1(postcss@8.5.6) postcss-normalize-whitespace: 7.0.1(postcss@8.5.6) postcss-ordered-values: 7.0.2(postcss@8.5.6) - postcss-reduce-initial: 7.0.5(postcss@8.5.6) + postcss-reduce-initial: 7.0.4(postcss@8.5.6) postcss-reduce-transforms: 7.0.1(postcss@8.5.6) postcss-svgo: 7.1.0(postcss@8.5.6) postcss-unique-selectors: 7.0.4(postcss@8.5.6) @@ -16788,9 +18027,9 @@ snapshots: dependencies: postcss: 8.5.6 - cssnano@7.1.2(postcss@8.5.6): + cssnano@7.1.1(postcss@8.5.6): dependencies: - cssnano-preset-default: 7.0.10(postcss@8.5.6) + cssnano-preset-default: 7.0.9(postcss@8.5.6) lilconfig: 3.1.3 postcss: 8.5.6 @@ -16996,7 +18235,7 @@ snapshots: date-fns@4.1.0: {} - dayjs@1.11.19: {} + dayjs@1.11.18: {} db0@0.3.4: {} @@ -17014,6 +18253,8 @@ snapshots: deep-is@0.1.4: {} + deep-pick-omit@1.2.1: {} + deepmerge@4.3.1: {} default-browser-id@5.0.0: {} @@ -17055,9 +18296,15 @@ snapshots: depcheck@1.4.7: dependencies: +<<<<<<< HEAD + '@babel/parser': 7.28.4 + '@babel/traverse': 7.28.4 + '@vue/compiler-sfc': 3.5.22 +======= '@babel/parser': 7.28.5 '@babel/traverse': 7.28.5 '@vue/compiler-sfc': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef callsite: 1.0.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -17140,8 +18387,6 @@ snapshots: diff-sequences@27.5.1: {} - diff@8.0.2: {} - dijkstrajs@1.0.3: {} dir-glob@3.0.1: @@ -17207,7 +18452,7 @@ snapshots: dot-prop@10.1.0: dependencies: - type-fest: 5.2.0 + type-fest: 5.1.0 dot-prop@5.3.0: dependencies: @@ -17259,25 +18504,42 @@ snapshots: dependencies: jake: 10.9.4 +<<<<<<< HEAD + electron-to-chromium@1.5.238: {} + + element-plus@2.11.5(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@ctrl/tinycolor': 4.2.0 + '@element-plus/icons-vue': 2.3.2(vue@3.5.22(typescript@5.9.3)) +======= electron-to-chromium@1.5.249: {} element-plus@2.11.7(vue@3.5.24(typescript@5.9.3)): dependencies: '@ctrl/tinycolor': 4.2.0 '@element-plus/icons-vue': 2.3.2(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@floating-ui/dom': 1.7.4 '@popperjs/core': '@sxzz/popperjs-es@2.11.7' '@types/lodash': 4.17.20 '@types/lodash-es': 4.17.12 +<<<<<<< HEAD + '@vueuse/core': 9.13.0(vue@3.5.22(typescript@5.9.3)) +======= '@vueuse/core': 9.13.0(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef async-validator: 4.2.5 - dayjs: 1.11.19 + dayjs: 1.11.18 lodash: 4.17.21 lodash-es: 4.17.21 lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21) memoize-one: 6.0.0 normalize-wheel-es: 1.2.0 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) +======= vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@vue/composition-api' @@ -17414,7 +18676,7 @@ snapshots: is-date-object: 1.1.0 is-symbol: 1.1.1 - es-toolkit@1.41.0: {} + es-toolkit@1.40.0: {} esbuild@0.25.3: optionalDependencies: @@ -17464,21 +18726,21 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-compat-utils@0.5.1(eslint@9.39.1(jiti@2.6.1)): + eslint-compat-utils@0.5.1(eslint@9.38.0(jiti@2.6.1)): dependencies: - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) semver: 7.7.3 - eslint-compat-utils@0.6.5(eslint@9.39.1(jiti@2.6.1)): + eslint-compat-utils@0.6.5(eslint@9.38.0(jiti@2.6.1)): dependencies: - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) semver: 7.7.3 - eslint-config-turbo@2.6.0(eslint@9.39.1(jiti@2.6.1))(turbo@2.6.0): + eslint-config-turbo@2.5.8(eslint@9.38.0(jiti@2.6.1))(turbo@2.5.8): dependencies: - eslint: 9.39.1(jiti@2.6.1) - eslint-plugin-turbo: 2.6.0(eslint@9.39.1(jiti@2.6.1))(turbo@2.6.0) - turbo: 2.6.0 + eslint: 9.38.0(jiti@2.6.1) + eslint-plugin-turbo: 2.5.8(eslint@9.38.0(jiti@2.6.1))(turbo@2.5.8) + turbo: 2.5.8 eslint-import-context@0.1.9(unrs-resolver@1.11.1): dependencies: @@ -17487,55 +18749,55 @@ snapshots: optionalDependencies: unrs-resolver: 1.11.1 - eslint-json-compat-utils@0.2.1(eslint@9.39.1(jiti@2.6.1))(jsonc-eslint-parser@2.4.1): + eslint-json-compat-utils@0.2.1(eslint@9.38.0(jiti@2.6.1))(jsonc-eslint-parser@2.4.1): dependencies: - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) esquery: 1.6.0 jsonc-eslint-parser: 2.4.1 - eslint-plugin-command@3.3.1(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-command@3.3.1(eslint@9.38.0(jiti@2.6.1)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) - eslint-plugin-es-x@7.8.0(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-es-x@7.8.0(eslint@9.38.0(jiti@2.6.1)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) - '@eslint-community/regexpp': 4.12.2 - eslint: 9.39.1(jiti@2.6.1) - eslint-compat-utils: 0.5.1(eslint@9.39.1(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.1 + eslint: 9.38.0(jiti@2.6.1) + eslint-compat-utils: 0.5.1(eslint@9.38.0(jiti@2.6.1)) - eslint-plugin-eslint-comments@3.2.0(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-eslint-comments@3.2.0(eslint@9.38.0(jiti@2.6.1)): dependencies: escape-string-regexp: 1.0.5 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) ignore: 5.3.2 - eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1)): dependencies: - '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/types': 8.46.2 comment-parser: 1.4.1 debug: 4.4.3 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) eslint-import-context: 0.1.9(unrs-resolver@1.11.1) is-glob: 4.0.3 - minimatch: 10.1.1 + minimatch: 10.0.3 semver: 7.7.3 stable-hash-x: 0.2.0 unrs-resolver: 1.11.1 optionalDependencies: - '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) transitivePeerDependencies: - supports-color - eslint-plugin-jsdoc@50.8.0(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-jsdoc@50.8.0(eslint@9.38.0(jiti@2.6.1)): dependencies: '@es-joy/jsdoccomment': 0.50.2 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) espree: 10.4.0 esquery: 1.6.0 parse-imports-exports: 0.2.4 @@ -17544,13 +18806,13 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.21.0(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-jsonc@2.21.0(eslint@9.38.0(jiti@2.6.1)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) diff-sequences: 27.5.1 - eslint: 9.39.1(jiti@2.6.1) - eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.6.1)) - eslint-json-compat-utils: 0.2.1(eslint@9.39.1(jiti@2.6.1))(jsonc-eslint-parser@2.4.1) + eslint: 9.38.0(jiti@2.6.1) + eslint-compat-utils: 0.6.5(eslint@9.38.0(jiti@2.6.1)) + eslint-json-compat-utils: 0.2.1(eslint@9.38.0(jiti@2.6.1))(jsonc-eslint-parser@2.4.1) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.1 @@ -17559,12 +18821,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.23.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3): + eslint-plugin-n@17.23.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) enhanced-resolve: 5.18.3 - eslint: 9.39.1(jiti@2.6.1) - eslint-plugin-es-x: 7.8.0(eslint@9.39.1(jiti@2.6.1)) + eslint: 9.38.0(jiti@2.6.1) + eslint-plugin-es-x: 7.8.0(eslint@9.38.0(jiti@2.6.1)) get-tsconfig: 4.13.0 globals: 15.15.0 globrex: 0.1.2 @@ -17576,54 +18838,54 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3): + eslint-plugin-perfectionist@4.15.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3): dependencies: - '@typescript-eslint/types': 8.46.3 - '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) - eslint: 9.39.1(jiti@2.6.1) + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.38.0(jiti@2.6.1) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-prettier@5.5.4(@types/eslint@9.6.1)(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2): + eslint-plugin-prettier@5.5.4(@types/eslint@9.6.1)(eslint@9.38.0(jiti@2.6.1))(prettier@3.6.2): dependencies: - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) prettier: 3.6.2 prettier-linter-helpers: 1.0.0 synckit: 0.11.11 optionalDependencies: '@types/eslint': 9.6.1 - eslint-plugin-regexp@2.10.0(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-regexp@2.10.0(eslint@9.38.0(jiti@2.6.1)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) - '@eslint-community/regexpp': 4.12.2 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-turbo@2.6.0(eslint@9.39.1(jiti@2.6.1))(turbo@2.6.0): + eslint-plugin-turbo@2.5.8(eslint@9.38.0(jiti@2.6.1))(turbo@2.5.8): dependencies: dotenv: 16.0.3 - eslint: 9.39.1(jiti@2.6.1) - turbo: 2.6.0 + eslint: 9.38.0(jiti@2.6.1) + turbo: 2.5.8 - eslint-plugin-unicorn@59.0.1(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-unicorn@59.0.1(eslint@9.38.0(jiti@2.6.1)): dependencies: - '@babel/helper-validator-identifier': 7.28.5 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) + '@babel/helper-validator-identifier': 7.27.1 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) '@eslint/plugin-kit': 0.2.8 ci-info: 4.3.1 clean-regexp: 1.0.0 core-js-compat: 3.46.0 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) esquery: 1.6.0 find-up-simple: 1.0.1 - globals: 16.5.0 + globals: 16.4.0 indent-string: 5.0.0 is-builtin-module: 5.0.0 jsesc: 3.1.0 @@ -17633,35 +18895,35 @@ snapshots: semver: 7.7.3 strip-indent: 4.1.1 - eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)): + eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1)): dependencies: - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) - eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)(vitest@3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)): + eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)(vitest@3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) - eslint: 9.39.1(jiti@2.6.1) + '@typescript-eslint/utils': 7.18.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.38.0(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) - vitest: 3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) + vitest: 3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-vue@10.5.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.6.1))): + eslint-plugin-vue@10.5.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1))): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) - eslint: 9.39.1(jiti@2.6.1) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) + eslint: 9.38.0(jiti@2.6.1) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.3 - vue-eslint-parser: 10.2.0(eslint@9.39.1(jiti@2.6.1)) + vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.6.1)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3) eslint-scope@8.4.0: dependencies: @@ -17672,16 +18934,16 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.39.1(jiti@2.6.1): + eslint@9.38.0(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) - '@eslint-community/regexpp': 4.12.2 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.1 - '@eslint/config-helpers': 0.4.2 - '@eslint/core': 0.17.0 + '@eslint/config-helpers': 0.4.1 + '@eslint/core': 0.16.0 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.39.1 - '@eslint/plugin-kit': 0.4.1 + '@eslint/js': 9.38.0 + '@eslint/plugin-kit': 0.4.0 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 @@ -17733,7 +18995,7 @@ snapshots: dependencies: estraverse: 5.3.0 - esrap@2.1.2: + esrap@2.1.0: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -17761,7 +19023,11 @@ snapshots: events-universal@1.0.1: dependencies: +<<<<<<< HEAD + bare-events: 2.8.0 +======= bare-events: 2.8.2 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - bare-abort-controller @@ -17852,23 +19118,23 @@ snapshots: dependencies: '@bpmn-io/cm-theme': 0.1.0-alpha.2 '@bpmn-io/feel-lint': 1.4.0 - '@codemirror/autocomplete': 6.19.1 - '@codemirror/commands': 6.10.0 + '@codemirror/autocomplete': 6.19.0 + '@codemirror/commands': 6.9.0 '@codemirror/language': 6.11.3 - '@codemirror/lint': 6.9.2 + '@codemirror/lint': 6.9.0 '@codemirror/state': 6.5.2 '@codemirror/view': 6.38.6 '@lezer/common': 1.3.0 - '@lezer/highlight': 1.2.3 - '@lezer/lr': 1.4.3 - '@lezer/markdown': 1.6.0 + '@lezer/highlight': 1.2.2 + '@lezer/lr': 1.4.2 + '@lezer/markdown': 1.5.1 feelin: 3.2.0 lezer-feel: 1.9.0 min-dom: 5.1.1 feelin@3.2.0: dependencies: - '@lezer/lr': 1.4.3 + '@lezer/lr': 1.4.2 lezer-feel: 1.9.0 luxon: 3.7.2 @@ -17930,7 +19196,7 @@ snapshots: fix-dts-default-cjs-exports@1.0.1: dependencies: - magic-string: 0.30.21 + magic-string: 0.30.19 mlly: 1.8.0 rollup: 4.53.1 @@ -17952,9 +19218,9 @@ snapshots: flatted@3.3.3: {} - focus-trap@7.6.6: + focus-trap@7.6.5: dependencies: - tabbable: 6.3.0 + tabbable: 6.2.0 follow-redirects@1.15.11: {} @@ -18132,7 +19398,7 @@ snapshots: dependencies: foreground-child: 3.3.1 jackspeak: 4.1.1 - minimatch: 10.1.1 + minimatch: 10.0.3 minipass: 7.1.2 package-json-from-dist: 1.0.1 path-scurry: 2.0.1 @@ -18176,14 +19442,18 @@ snapshots: global@4.4.0: dependencies: +<<<<<<< HEAD + min-document: 2.19.0 +======= min-document: 2.19.1 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef process: 0.11.10 globals@14.0.0: {} globals@15.15.0: {} - globals@16.5.0: {} + globals@16.4.0: {} globalthis@1.0.4: dependencies: @@ -18333,7 +19603,7 @@ snapshots: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.44.1 + terser: 5.44.0 html-minifier-terser@7.2.0: dependencies: @@ -18343,7 +19613,7 @@ snapshots: entities: 4.5.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.44.1 + terser: 5.44.0 html-tags@3.3.1: {} @@ -18830,7 +20100,7 @@ snapshots: kolorist@1.8.0: {} - ky@1.14.0: {} + ky@1.12.0: {} latest-version@9.0.0: dependencies: @@ -18906,8 +20176,8 @@ snapshots: lezer-feel@1.9.0: dependencies: - '@lezer/highlight': 1.2.3 - '@lezer/lr': 1.4.3 + '@lezer/highlight': 1.2.2 + '@lezer/lr': 1.4.2 min-dash: 4.2.3 lilconfig@3.1.3: {} @@ -19037,7 +20307,7 @@ snapshots: log-update@6.1.0: dependencies: - ansi-escapes: 7.2.0 + ansi-escapes: 7.1.1 cli-cursor: 5.0.0 slice-ansi: 7.1.2 strip-ansi: 7.1.2 @@ -19065,9 +20335,15 @@ snapshots: dependencies: yallist: 4.0.0 +<<<<<<< HEAD + lucide-vue-next@0.507.0(vue@3.5.22(typescript@5.9.3)): + dependencies: + vue: 3.5.22(typescript@5.9.3) +======= lucide-vue-next@0.507.0(vue@3.5.24(typescript@5.9.3)): dependencies: vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef luxon@3.7.2: {} @@ -19083,14 +20359,14 @@ snapshots: dependencies: sourcemap-codec: 1.4.8 - magic-string@0.30.21: + magic-string@0.30.19: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 - magicast@0.5.1: + magicast@0.3.5: dependencies: - '@babel/parser': 7.28.5 - '@babel/types': 7.28.5 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 source-map-js: 1.2.1 make-dir@2.1.0: @@ -19170,7 +20446,7 @@ snapshots: mdn-data@2.12.2: {} - mdn-data@2.25.0: {} + mdn-data@2.24.0: {} mdurl@2.0.0: {} @@ -19233,7 +20509,11 @@ snapshots: min-dash@4.2.3: {} +<<<<<<< HEAD + min-document@2.19.0: +======= min-document@2.19.1: +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: dom-walk: 0.1.2 @@ -19252,10 +20532,6 @@ snapshots: dependencies: '@isaacs/brace-expansion': 5.0.0 - minimatch@10.1.1: - dependencies: - '@isaacs/brace-expansion': 5.0.0 - minimatch@3.1.2: dependencies: brace-expansion: 1.1.12 @@ -19304,11 +20580,15 @@ snapshots: mitt@3.0.1: {} +<<<<<<< HEAD + mkdist@2.4.1(sass@1.93.2)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3)): +======= mkdist@2.4.1(sass@1.93.3)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.24(typescript@5.9.3)): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: autoprefixer: 10.4.21(postcss@8.5.6) citty: 0.1.6 - cssnano: 7.1.2(postcss@8.5.6) + cssnano: 7.1.1(postcss@8.5.6) defu: 6.1.4 esbuild: 0.25.3 jiti: 1.21.7 @@ -19320,9 +20600,13 @@ snapshots: semver: 7.7.3 tinyglobby: 0.2.15 optionalDependencies: - sass: 1.93.3 + sass: 1.93.2 typescript: 5.9.3 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) +======= vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vue-tsc: 2.2.10(typescript@5.9.3) mlly@1.8.0: @@ -19376,10 +20660,17 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 +<<<<<<< HEAD + naive-ui@2.43.1(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@css-render/plugin-bem': 0.15.14(css-render@0.15.14) + '@css-render/vue3-ssr': 0.15.14(vue@3.5.22(typescript@5.9.3)) +======= naive-ui@2.43.1(vue@3.5.24(typescript@5.9.3)): dependencies: '@css-render/plugin-bem': 0.15.14(css-render@0.15.14) '@css-render/vue3-ssr': 0.15.14(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@types/katex': 0.16.7 '@types/lodash': 4.17.20 '@types/lodash-es': 4.17.12 @@ -19394,10 +20685,17 @@ snapshots: lodash-es: 4.17.21 seemly: 0.3.10 treemate: 0.3.11 +<<<<<<< HEAD + vdirs: 0.1.8(vue@3.5.22(typescript@5.9.3)) + vooks: 0.2.12(vue@3.5.22(typescript@5.9.3)) + vue: 3.5.22(typescript@5.9.3) + vueuc: 0.4.65(vue@3.5.22(typescript@5.9.3)) +======= vdirs: 0.1.8(vue@3.5.24(typescript@5.9.3)) vooks: 0.2.12(vue@3.5.24(typescript@5.9.3)) vue: 3.5.24(typescript@5.9.3) vueuc: 0.4.65(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef nanoid@3.3.11: {} @@ -19414,12 +20712,22 @@ snapshots: needle@3.3.1: dependencies: iconv-lite: 0.6.3 - sax: 1.4.3 + sax: 1.4.1 optional: true - nitropack@2.12.9: + nitropack@2.12.7: dependencies: '@cloudflare/kv-asset-handler': 0.4.0 +<<<<<<< HEAD + '@rollup/plugin-alias': 5.1.1(rollup@4.52.5) + '@rollup/plugin-commonjs': 28.0.8(rollup@4.52.5) + '@rollup/plugin-inject': 5.0.5(rollup@4.52.5) + '@rollup/plugin-json': 6.1.0(rollup@4.52.5) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.52.5) + '@rollup/plugin-replace': 6.0.2(rollup@4.52.5) + '@rollup/plugin-terser': 0.4.4(rollup@4.52.5) + '@vercel/nft': 0.30.3(rollup@4.52.5) +======= '@rollup/plugin-alias': 5.1.1(rollup@4.53.1) '@rollup/plugin-commonjs': 28.0.9(rollup@4.53.1) '@rollup/plugin-inject': 5.0.5(rollup@4.53.1) @@ -19428,8 +20736,9 @@ snapshots: '@rollup/plugin-replace': 6.0.3(rollup@4.53.1) '@rollup/plugin-terser': 0.4.4(rollup@4.53.1) '@vercel/nft': 0.30.3(rollup@4.53.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef archiver: 7.0.1 - c12: 3.3.1(magicast@0.5.1) + c12: 3.3.1(magicast@0.3.5) chokidar: 4.0.3 citty: 0.1.6 compatx: 0.2.0 @@ -19456,13 +20765,13 @@ snapshots: klona: 2.0.6 knitwork: 1.2.0 listhen: 1.9.0 - magic-string: 0.30.21 - magicast: 0.5.1 + magic-string: 0.30.19 + magicast: 0.3.5 mime: 4.1.0 mlly: 1.8.0 node-fetch-native: 1.6.7 node-mock-http: 1.0.3 - ofetch: 1.5.1 + ofetch: 1.4.1 ohash: 2.0.11 pathe: 2.0.3 perfect-debounce: 2.0.0 @@ -19481,13 +20790,13 @@ snapshots: ultrahtml: 1.6.0 uncrypto: 0.1.3 unctx: 2.4.1 - unenv: 2.0.0-rc.24 + unenv: 2.0.0-rc.21 unimport: 5.5.0 unplugin-utils: 0.3.1 - unstorage: 1.17.2(db0@0.3.4)(ioredis@5.8.2) + unstorage: 1.17.1(db0@0.3.4)(ioredis@5.8.2) untyped: 2.0.0 unwasm: 0.3.11 - youch: 4.1.0-beta.12 + youch: 4.1.0-beta.11 youch-core: 0.3.3 transitivePeerDependencies: - '@azure/app-configuration' @@ -19560,7 +20869,7 @@ snapshots: node-mock-http@1.0.3: {} - node-releases@2.0.27: {} + node-releases@2.0.26: {} nopt@7.2.1: dependencies: @@ -19599,7 +20908,7 @@ snapshots: consola: 3.4.2 pathe: 2.0.3 pkg-types: 2.3.0 - tinyexec: 1.0.2 + tinyexec: 1.0.1 object-assign@4.1.1: {} @@ -19622,7 +20931,7 @@ snapshots: has-symbols: 1.1.0 object-keys: 1.1.1 - ofetch@1.5.1: + ofetch@1.4.1: dependencies: destr: 2.0.5 node-fetch-native: 1.6.7 @@ -19732,7 +21041,7 @@ snapshots: package-json@10.0.1: dependencies: - ky: 1.14.0 + ky: 1.12.0 registry-auth-token: 5.1.0 registry-url: 6.0.1 semver: 7.7.3 @@ -19851,10 +21160,25 @@ snapshots: pify@4.0.1: {} +<<<<<<< HEAD + pinia-plugin-persistedstate@4.5.0(@nuxt/kit@3.19.3(magicast@0.3.5))(pinia@3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3))): +======= pinia-plugin-persistedstate@4.7.1(@nuxt/kit@3.20.1)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3))): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: + deep-pick-omit: 1.2.1 defu: 6.1.4 + destr: 2.0.5 optionalDependencies: +<<<<<<< HEAD + '@nuxt/kit': 3.19.3(magicast@0.3.5) + pinia: 3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)) + + pinia@3.0.3(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@vue/devtools-api': 7.7.7 + vue: 3.5.22(typescript@5.9.3) +======= '@nuxt/kit': 3.20.1 pinia: 3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)) @@ -19862,6 +21186,7 @@ snapshots: dependencies: '@vue/devtools-api': 7.7.7 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: typescript: 5.9.3 @@ -19949,17 +21274,17 @@ snapshots: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-colormin@7.0.5(postcss@8.5.6): + postcss-colormin@7.0.4(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.8(postcss@8.5.6): + postcss-convert-values@7.0.7(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 postcss: 8.5.6 postcss-value-parser: 4.2.0 @@ -19993,7 +21318,7 @@ snapshots: postcss: 8.5.6 postcss-selector-parser: 7.1.0 - postcss-discard-comments@7.0.5(postcss@8.5.6): + postcss-discard-comments@7.0.4(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-selector-parser: 7.1.0 @@ -20095,11 +21420,11 @@ snapshots: dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - stylehacks: 7.0.7(postcss@8.5.6) + stylehacks: 7.0.6(postcss@8.5.6) - postcss-merge-rules@7.0.7(postcss@8.5.6): + postcss-merge-rules@7.0.6(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 caniuse-api: 3.0.0 cssnano-utils: 5.0.1(postcss@8.5.6) postcss: 8.5.6 @@ -20117,9 +21442,9 @@ snapshots: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.5(postcss@8.5.6): + postcss-minify-params@7.0.4(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 cssnano-utils: 5.0.1(postcss@8.5.6) postcss: 8.5.6 postcss-value-parser: 4.2.0 @@ -20181,9 +21506,9 @@ snapshots: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.5(postcss@8.5.6): + postcss-normalize-unicode@7.0.4(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 postcss: 8.5.6 postcss-value-parser: 4.2.0 @@ -20260,7 +21585,7 @@ snapshots: '@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.6) '@csstools/postcss-unset-value': 4.0.0(postcss@8.5.6) autoprefixer: 10.4.21(postcss@8.5.6) - browserslist: 4.27.0 + browserslist: 4.26.3 css-blank-pseudo: 7.0.1(postcss@8.5.6) css-has-pseudo: 7.0.3(postcss@8.5.6) css-prefers-color-scheme: 10.0.0(postcss@8.5.6) @@ -20297,9 +21622,9 @@ snapshots: postcss: 8.5.6 postcss-selector-parser: 7.1.0 - postcss-reduce-initial@7.0.5(postcss@8.5.6): + postcss-reduce-initial@7.0.4(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 caniuse-api: 3.0.0 postcss: 8.5.6 @@ -20521,7 +21846,7 @@ snapshots: refa@0.12.1: dependencies: - '@eslint-community/regexpp': 4.12.2 + '@eslint-community/regexpp': 4.12.1 reflect.getprototypeof@1.0.10: dependencies: @@ -20552,7 +21877,7 @@ snapshots: regexp-ast-analysis@0.7.1: dependencies: - '@eslint-community/regexpp': 4.12.2 + '@eslint-community/regexpp': 4.12.1 refa: 0.12.1 regexp-tree@0.1.27: {} @@ -20593,6 +21918,15 @@ snapshots: dependencies: jsesc: 3.1.0 +<<<<<<< HEAD + reka-ui@2.6.0(typescript@5.9.3)(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@floating-ui/dom': 1.7.4 + '@floating-ui/vue': 1.1.9(vue@3.5.22(typescript@5.9.3)) + '@internationalized/date': 3.10.0 + '@internationalized/number': 3.6.5 + '@tanstack/vue-virtual': 3.13.12(vue@3.5.22(typescript@5.9.3)) +======= reka-ui@2.6.0(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)): dependencies: '@floating-ui/dom': 1.7.4 @@ -20600,12 +21934,17 @@ snapshots: '@internationalized/date': 3.10.0 '@internationalized/number': 3.6.5 '@tanstack/vue-virtual': 3.13.12(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vueuse/core': 12.8.2(typescript@5.9.3) '@vueuse/shared': 12.8.2(typescript@5.9.3) aria-hidden: 1.2.6 defu: 6.1.4 ohash: 2.0.11 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) +======= vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@vue/composition-api' - typescript @@ -20659,7 +21998,7 @@ snapshots: rfdc@1.4.1: {} - rimraf@6.1.0: + rimraf@6.0.1: dependencies: glob: 11.0.3 package-json-from-dist: 1.0.1 @@ -20668,8 +22007,13 @@ snapshots: rollup-plugin-dts@6.2.3(rollup@4.53.1)(typescript@5.9.3): dependencies: +<<<<<<< HEAD + magic-string: 0.30.19 + rollup: 4.52.5 +======= magic-string: 0.30.21 rollup: 4.53.1 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef typescript: 5.9.3 optionalDependencies: '@babel/code-frame': 7.27.1 @@ -20771,7 +22115,7 @@ snapshots: safer-buffer@2.1.2: {} - sass@1.93.3: + sass@1.93.2: dependencies: chokidar: 4.0.3 immutable: 5.1.4 @@ -20779,7 +22123,7 @@ snapshots: optionalDependencies: '@parcel/watcher': 2.5.1 - sax@1.4.3: {} + sax@1.4.1: {} saxen@8.1.2: {} @@ -20789,7 +22133,7 @@ snapshots: scslre@0.3.0: dependencies: - '@eslint-community/regexpp': 4.12.2 + '@eslint-community/regexpp': 4.12.1 refa: 0.12.1 regexp-ast-analysis: 0.7.1 @@ -21160,11 +22504,7 @@ snapshots: strnum@1.1.2: {} - stubborn-fs@2.0.0: - dependencies: - stubborn-utils: 1.0.2 - - stubborn-utils@1.0.2: {} + stubborn-fs@1.2.5: {} style-mod@4.1.3: {} @@ -21175,9 +22515,9 @@ snapshots: hey-listen: 1.0.8 tslib: 2.4.0 - stylehacks@7.0.7(postcss@8.5.6): + stylehacks@7.0.6(postcss@8.5.6): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 postcss: 8.5.6 postcss-selector-parser: 7.1.0 @@ -21244,7 +22584,7 @@ snapshots: css-tree: 3.1.0 is-plain-object: 5.0.0 known-css-properties: 0.36.0 - mdn-data: 2.25.0 + mdn-data: 2.24.0 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.6 postcss-selector-parser: 7.1.0 @@ -21307,7 +22647,7 @@ snapshots: pirates: 4.0.7 ts-interface-checker: 0.1.13 - superjson@2.2.5: + superjson@2.2.3: dependencies: copy-anything: 4.0.5 @@ -21328,7 +22668,11 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} +<<<<<<< HEAD + svelte@5.41.1: +======= svelte@5.43.5: +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@jridgewell/remapping': 2.3.5 '@jridgewell/sourcemap-codec': 1.5.5 @@ -21339,10 +22683,10 @@ snapshots: axobject-query: 4.1.0 clsx: 2.1.1 esm-env: 1.2.2 - esrap: 2.1.2 + esrap: 2.1.0 is-reference: 3.0.3 locate-character: 3.0.0 - magic-string: 0.30.21 + magic-string: 0.30.19 zimmerframe: 1.1.4 sver@1.8.4: @@ -21359,7 +22703,7 @@ snapshots: css-what: 6.2.2 csso: 5.0.5 picocolors: 1.1.1 - sax: 1.4.3 + sax: 1.4.1 synckit@0.11.11: dependencies: @@ -21367,7 +22711,7 @@ snapshots: system-architecture@0.1.0: {} - tabbable@6.3.0: {} + tabbable@6.2.0: {} table@6.9.0: dependencies: @@ -21424,7 +22768,7 @@ snapshots: - bare-abort-controller - react-native-b4a - tar@7.5.2: + tar@7.5.1: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 @@ -21465,7 +22809,7 @@ snapshots: term-size@2.2.1: {} - terser@5.44.1: + terser@5.44.0: dependencies: '@jridgewell/source-map': 0.3.11 acorn: 8.15.0 @@ -21504,7 +22848,7 @@ snapshots: tinyexec@0.3.2: {} - tinyexec@1.0.2: {} + tinyexec@1.0.1: {} tinyglobby@0.2.15: dependencies: @@ -21562,32 +22906,32 @@ snapshots: tslib@2.8.1: {} - turbo-darwin-64@2.6.0: + turbo-darwin-64@2.5.8: optional: true - turbo-darwin-arm64@2.6.0: + turbo-darwin-arm64@2.5.8: optional: true - turbo-linux-64@2.6.0: + turbo-linux-64@2.5.8: optional: true - turbo-linux-arm64@2.6.0: + turbo-linux-arm64@2.5.8: optional: true - turbo-windows-64@2.6.0: + turbo-windows-64@2.5.8: optional: true - turbo-windows-arm64@2.6.0: + turbo-windows-arm64@2.5.8: optional: true - turbo@2.6.0: + turbo@2.5.8: optionalDependencies: - turbo-darwin-64: 2.6.0 - turbo-darwin-arm64: 2.6.0 - turbo-linux-64: 2.6.0 - turbo-linux-arm64: 2.6.0 - turbo-windows-64: 2.6.0 - turbo-windows-arm64: 2.6.0 + turbo-darwin-64: 2.5.8 + turbo-darwin-arm64: 2.5.8 + turbo-linux-64: 2.5.8 + turbo-linux-arm64: 2.5.8 + turbo-windows-64: 2.5.8 + turbo-windows-arm64: 2.5.8 type-check@0.4.0: dependencies: @@ -21597,7 +22941,7 @@ snapshots: type-fest@4.41.0: {} - type-fest@5.2.0: + type-fest@5.1.0: dependencies: tagged-tag: 1.0.0 @@ -21651,6 +22995,16 @@ snapshots: has-symbols: 1.1.0 which-boxed-primitive: 1.1.1 +<<<<<<< HEAD + unbuild@3.6.1(sass@1.93.2)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@rollup/plugin-alias': 5.1.1(rollup@4.52.5) + '@rollup/plugin-commonjs': 28.0.8(rollup@4.52.5) + '@rollup/plugin-json': 6.1.0(rollup@4.52.5) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.52.5) + '@rollup/plugin-replace': 6.0.2(rollup@4.52.5) + '@rollup/pluginutils': 5.3.0(rollup@4.52.5) +======= unbuild@3.6.1(sass@1.93.3)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.24(typescript@5.9.3)): dependencies: '@rollup/plugin-alias': 5.1.1(rollup@4.53.1) @@ -21659,6 +23013,7 @@ snapshots: '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.1) '@rollup/plugin-replace': 6.0.3(rollup@4.53.1) '@rollup/pluginutils': 5.3.0(rollup@4.53.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef citty: 0.1.6 consola: 3.4.2 defu: 6.1.4 @@ -21666,8 +23021,13 @@ snapshots: fix-dts-default-cjs-exports: 1.0.1 hookable: 5.5.3 jiti: 2.6.1 +<<<<<<< HEAD + magic-string: 0.30.19 + mkdist: 2.4.1(sass@1.93.2)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3)) +======= magic-string: 0.30.21 mkdist: 2.4.1(sass@1.93.3)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef mlly: 1.8.0 pathe: 2.0.3 pkg-types: 2.3.0 @@ -21691,16 +23051,20 @@ snapshots: dependencies: acorn: 8.15.0 estree-walker: 3.0.3 - magic-string: 0.30.21 + magic-string: 0.30.19 unplugin: 2.3.10 undici-types@7.16.0: {} undici@7.16.0: {} - unenv@2.0.0-rc.24: + unenv@2.0.0-rc.21: dependencies: + defu: 6.1.4 + exsolve: 1.0.7 + ohash: 2.0.11 pathe: 2.0.3 + ufo: 1.6.1 unicode-canonical-property-names-ecmascript@2.0.1: {} @@ -21723,7 +23087,7 @@ snapshots: escape-string-regexp: 5.0.0 estree-walker: 3.0.3 local-pkg: 1.1.2 - magic-string: 0.30.21 + magic-string: 0.30.19 mlly: 1.8.0 pathe: 2.0.3 picomatch: 4.0.3 @@ -21776,7 +23140,7 @@ snapshots: unplugin-element-plus@0.10.0: dependencies: es-module-lexer: 1.7.0 - magic-string: 0.30.21 + magic-string: 0.30.19 unplugin: 2.3.10 unplugin-utils: 0.2.5 @@ -21826,7 +23190,7 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1 '@unrs/resolver-binding-win32-x64-msvc': 1.11.1 - unstorage@1.17.2(db0@0.3.4)(ioredis@5.8.2): + unstorage@1.17.1(db0@0.3.4)(ioredis@5.8.2): dependencies: anymatch: 3.1.3 chokidar: 4.0.3 @@ -21834,7 +23198,7 @@ snapshots: h3: 1.15.4 lru-cache: 10.4.3 node-fetch-native: 1.6.7 - ofetch: 1.5.1 + ofetch: 1.4.1 ufo: 1.6.1 optionalDependencies: db0: 0.3.4 @@ -21857,7 +23221,7 @@ snapshots: unwasm@0.3.11: dependencies: knitwork: 1.2.0 - magic-string: 0.30.21 + magic-string: 0.30.19 mlly: 1.8.0 pathe: 2.0.3 pkg-types: 2.3.0 @@ -21865,9 +23229,9 @@ snapshots: upath@1.2.0: {} - update-browserslist-db@1.1.4(browserslist@4.27.0): + update-browserslist-db@1.1.3(browserslist@4.26.3): dependencies: - browserslist: 4.27.0 + browserslist: 4.26.3 escalade: 3.2.0 picocolors: 1.1.1 @@ -21894,6 +23258,18 @@ snapshots: util-deprecate@1.0.2: {} +<<<<<<< HEAD + vdirs@0.1.8(vue@3.5.22(typescript@5.9.3)): + dependencies: + evtd: 0.2.4 + vue: 3.5.22(typescript@5.9.3) + + vee-validate@4.15.1(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@vue/devtools-api': 7.7.7 + type-fest: 4.41.0 + vue: 3.5.22(typescript@5.9.3) +======= validator@13.15.22: {} vdirs@0.1.8(vue@3.5.24(typescript@5.9.3)): @@ -21906,6 +23282,7 @@ snapshots: '@vue/devtools-api': 7.7.7 type-fest: 4.41.0 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vfile-message@4.0.3: dependencies: @@ -21932,6 +23309,8 @@ snapshots: safe-json-parse: 4.0.0 videojs-font: 3.2.0 videojs-vtt.js: 0.15.5 +<<<<<<< HEAD +======= videojs-font@3.2.0: {} @@ -21942,14 +23321,29 @@ snapshots: vite-hot-client@2.1.0(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)): dependencies: vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef + + videojs-font@3.2.0: {} - vite-node@3.2.4(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1): + videojs-vtt.js@0.15.5: + dependencies: + global: 4.4.0 + + vite-hot-client@2.1.0(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)): + dependencies: + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + + vite-node@3.2.4(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@types/node' - jiti @@ -21964,11 +23358,25 @@ snapshots: - tsx - yaml +<<<<<<< HEAD + vite-plugin-compression@0.5.1(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)): +======= vite-plugin-compression@0.5.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: chalk: 4.1.2 debug: 4.4.3 fs-extra: 10.1.0 +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + transitivePeerDependencies: + - supports-color + + vite-plugin-dts@4.5.4(@types/node@24.10.0)(rollup@4.52.5)(typescript@5.9.3)(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)): + dependencies: + '@microsoft/api-extractor': 7.53.2(@types/node@24.10.0) + '@rollup/pluginutils': 5.3.0(rollup@4.52.5) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -21977,22 +23385,31 @@ snapshots: dependencies: '@microsoft/api-extractor': 7.54.0(@types/node@24.10.0) '@rollup/pluginutils': 5.3.0(rollup@4.53.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@volar/typescript': 2.4.23 '@vue/language-core': 2.2.0(typescript@5.9.3) compare-versions: 6.1.1 debug: 4.4.3 kolorist: 1.8.0 local-pkg: 1.1.2 - magic-string: 0.30.21 + magic-string: 0.30.19 typescript: 5.9.3 optionalDependencies: +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@types/node' - rollup - supports-color +<<<<<<< HEAD + vite-plugin-html@3.2.2(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)): +======= vite-plugin-html@3.2.2(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@rollup/pluginutils': 4.2.1 colorette: 2.0.20 @@ -22006,9 +23423,15 @@ snapshots: html-minifier-terser: 6.1.0 node-html-parser: 5.4.2 pathe: 0.2.0 +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + + vite-plugin-inspect@0.8.9(rollup@4.52.5)(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)): +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) vite-plugin-inspect@0.8.9(rollup@4.53.1)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.3.0(rollup@4.53.1) @@ -22019,7 +23442,11 @@ snapshots: perfect-debounce: 1.0.0 picocolors: 1.1.1 sirv: 3.0.2 +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - rollup - supports-color @@ -22031,44 +23458,78 @@ snapshots: rollup: 4.53.1 xe-utils: 3.7.9 - vite-plugin-pwa@1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1))(workbox-build@7.3.0)(workbox-window@7.3.0): + vite-plugin-pwa@1.1.0(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0): dependencies: debug: 4.4.3 pretty-bytes: 6.1.1 tinyglobby: 0.2.15 - vite: 5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1) + vite: 5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0) workbox-build: 7.3.0 workbox-window: 7.3.0 transitivePeerDependencies: - supports-color +<<<<<<< HEAD + vite-plugin-pwa@1.1.0(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0): +======= vite-plugin-pwa@1.1.0(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: debug: 4.4.3 pretty-bytes: 6.1.1 tinyglobby: 0.2.15 +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef workbox-build: 7.3.0 workbox-window: 7.3.0 transitivePeerDependencies: - supports-color +<<<<<<< HEAD + vite-plugin-vue-devtools@7.7.7(rollup@4.52.5)(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@vue/devtools-core': 7.7.7(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)) +======= vite-plugin-vue-devtools@7.7.7(rollup@4.53.1)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3)): dependencies: '@vue/devtools-core': 7.7.7(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vue/devtools-kit': 7.7.7 '@vue/devtools-shared': 7.7.7 execa: 9.6.0 sirv: 3.0.2 +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + vite-plugin-inspect: 0.8.9(rollup@4.52.5)(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) + vite-plugin-vue-inspector: 5.3.2(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) vite-plugin-inspect: 0.8.9(rollup@4.53.1)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)) vite-plugin-vue-inspector: 5.3.2(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - '@nuxt/kit' - rollup - supports-color - vue +<<<<<<< HEAD + vite-plugin-vue-inspector@5.3.2(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)): + dependencies: + '@babel/core': 7.28.4 + '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4) + '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4) + '@vue/compiler-dom': 3.5.22 + kolorist: 1.8.0 + magic-string: 0.30.19 + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= vite-plugin-vue-inspector@5.3.2(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)): dependencies: '@babel/core': 7.28.5 @@ -22081,10 +23542,11 @@ snapshots: kolorist: 1.8.0 magic-string: 0.30.21 vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - supports-color - vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1): + vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0): dependencies: esbuild: 0.25.3 postcss: 8.5.6 @@ -22093,10 +23555,14 @@ snapshots: '@types/node': 24.10.0 fsevents: 2.3.3 less: 4.4.2 - sass: 1.93.3 - terser: 5.44.1 + sass: 1.93.2 + terser: 5.44.0 +<<<<<<< HEAD + vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1): +======= vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: esbuild: 0.25.3 fdir: 6.5.0(picomatch@4.0.3) @@ -22109,40 +23575,59 @@ snapshots: fsevents: 2.3.3 jiti: 2.6.1 less: 4.4.2 - sass: 1.93.3 - terser: 5.44.1 + sass: 1.93.2 + terser: 5.44.0 yaml: 2.8.1 - vitepress-plugin-group-icons@1.6.5(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)): + vitepress-plugin-group-icons@1.6.4(markdown-it@14.1.0)(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)): dependencies: - '@iconify-json/logos': 1.2.10 - '@iconify-json/vscode-icons': 1.2.33 + '@iconify-json/logos': 1.2.9 + '@iconify-json/vscode-icons': 1.2.32 '@iconify/utils': 3.0.2 - optionalDependencies: - vite: 5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1) + markdown-it: 14.1.0 + vite: 5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0) transitivePeerDependencies: - supports-color +<<<<<<< HEAD + vitepress@1.6.4(@algolia/client-search@5.40.1)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.12.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.3): + dependencies: + '@docsearch/css': 3.8.2 + '@docsearch/js': 3.8.2(@algolia/client-search@5.40.1)(search-insights@2.17.3) + '@iconify-json/simple-icons': 1.2.55 +======= vitepress@1.6.4(@algolia/client-search@5.43.0)(@types/node@24.10.0)(async-validator@4.2.5)(axios@1.13.2)(less@4.4.2)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.93.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3): dependencies: '@docsearch/css': 3.8.2 '@docsearch/js': 3.8.2(@algolia/client-search@5.43.0)(search-insights@2.17.3) '@iconify-json/simple-icons': 1.2.58 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@shikijs/core': 2.5.0 '@shikijs/transformers': 2.5.0 '@shikijs/types': 2.5.0 '@types/markdown-it': 14.1.2 +<<<<<<< HEAD + '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(vue@3.5.22(typescript@5.9.3)) + '@vue/devtools-api': 7.7.7 + '@vue/shared': 3.5.22 +======= '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1))(vue@3.5.24(typescript@5.9.3)) '@vue/devtools-api': 7.7.7 '@vue/shared': 3.5.24 +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vueuse/core': 12.8.2(typescript@5.9.3) - '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.13.2)(focus-trap@7.6.6)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.3) - focus-trap: 7.6.6 + '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.3) + focus-trap: 7.6.5 mark.js: 8.11.1 minisearch: 7.2.0 shiki: 2.5.0 +<<<<<<< HEAD + vite: 5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.2)(terser@5.44.0) + vue: 3.5.22(typescript@5.9.3) +======= vite: 5.4.21(@types/node@24.10.0)(less@4.4.2)(sass@1.93.3)(terser@5.44.1) vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef optionalDependencies: postcss: 8.5.6 transitivePeerDependencies: @@ -22172,11 +23657,15 @@ snapshots: - typescript - universal-cookie - vitest@3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1): + vitest@3.2.4(@types/node@24.10.0)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.3 '@vitest/expect': 3.2.4 +<<<<<<< HEAD + '@vitest/mocker': 3.2.4(vite@7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)) +======= '@vitest/mocker': 3.2.4(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -22185,7 +23674,7 @@ snapshots: chai: 5.3.3 debug: 4.4.3 expect-type: 1.2.2 - magic-string: 0.30.21 + magic-string: 0.30.19 pathe: 2.0.3 picomatch: 4.0.3 std-env: 3.10.0 @@ -22194,8 +23683,13 @@ snapshots: tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 +<<<<<<< HEAD + vite: 7.1.11(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1) +======= vite: 7.2.2(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) vite-node: 3.2.4(@types/node@24.10.0)(jiti@2.6.1)(less@4.4.2)(sass@1.93.3)(terser@5.44.1)(yaml@2.8.1) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 24.10.0 @@ -22214,10 +23708,17 @@ snapshots: - tsx - yaml +<<<<<<< HEAD + vooks@0.2.12(vue@3.5.22(typescript@5.9.3)): + dependencies: + evtd: 0.2.4 + vue: 3.5.22(typescript@5.9.3) +======= vooks@0.2.12(vue@3.5.24(typescript@5.9.3)): dependencies: evtd: 0.2.4 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vscode-languageserver-textdocument@1.0.12: {} @@ -22225,6 +23726,16 @@ snapshots: vue-component-type-helpers@2.2.12: {} +<<<<<<< HEAD + vue-demi@0.14.10(vue@3.5.22(typescript@5.9.3)): + dependencies: + vue: 3.5.22(typescript@5.9.3) + + vue-dompurify-html@5.3.0(vue@3.5.22(typescript@5.9.3)): + dependencies: + dompurify: 3.3.0 + vue: 3.5.22(typescript@5.9.3) +======= vue-demi@0.14.10(vue@3.5.24(typescript@5.9.3)): dependencies: vue: 3.5.24(typescript@5.9.3) @@ -22233,11 +23744,12 @@ snapshots: dependencies: dompurify: 3.3.0 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef - vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.6.1)): + vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.6.1)): dependencies: debug: 4.4.3 - eslint: 9.39.1(jiti@2.6.1) + eslint: 9.38.0(jiti@2.6.1) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -22246,11 +23758,33 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD + vue-i18n@11.1.12(vue@3.5.22(typescript@5.9.3)): +======= vue-i18n@11.1.12(vue@3.5.24(typescript@5.9.3)): +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef dependencies: '@intlify/core-base': 11.1.12 '@intlify/shared': 11.1.12 '@vue/devtools-api': 6.6.4 +<<<<<<< HEAD + vue: 3.5.22(typescript@5.9.3) + + vue-json-viewer@3.0.4(vue@3.5.22(typescript@5.9.3)): + dependencies: + clipboard: 2.0.11 + vue: 3.5.22(typescript@5.9.3) + + vue-router@4.6.3(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.22(typescript@5.9.3) + + vue-tippy@6.7.1(vue@3.5.22(typescript@5.9.3)): + dependencies: + tippy.js: 6.3.7 + vue: 3.5.22(typescript@5.9.3) +======= vue: 3.5.24(typescript@5.9.3) vue-json-viewer@3.0.4(vue@3.5.24(typescript@5.9.3)): @@ -22267,6 +23801,7 @@ snapshots: dependencies: tippy.js: 6.3.7 vue: 3.5.24(typescript@5.9.3) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef vue-tsc@2.2.10(typescript@5.9.3): dependencies: @@ -22274,6 +23809,37 @@ snapshots: '@vue/language-core': 2.2.10(typescript@5.9.3) typescript: 5.9.3 +<<<<<<< HEAD + vue-types@3.0.2(vue@3.5.22(typescript@5.9.3)): + dependencies: + is-plain-object: 3.0.1 + vue: 3.5.22(typescript@5.9.3) + + vue3-signature@0.2.4(vue@3.5.22(typescript@5.9.3)): + dependencies: + default-passive-events: 2.0.0 + signature_pad: 3.0.0-beta.4 + vue: 3.5.22(typescript@5.9.3) + + vue@3.5.22(typescript@5.9.3): + dependencies: + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-sfc': 3.5.22 + '@vue/runtime-dom': 3.5.22 + '@vue/server-renderer': 3.5.22(vue@3.5.22(typescript@5.9.3)) + '@vue/shared': 3.5.22 + optionalDependencies: + typescript: 5.9.3 + + vuedraggable@4.1.0(vue@3.5.22(typescript@5.9.3)): + dependencies: + sortablejs: 1.14.0 + vue: 3.5.22(typescript@5.9.3) + + vueuc@0.4.65(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@css-render/vue3-ssr': 0.15.14(vue@3.5.22(typescript@5.9.3)) +======= vue-types@3.0.2(vue@3.5.24(typescript@5.9.3)): dependencies: is-plain-object: 3.0.1 @@ -22309,10 +23875,26 @@ snapshots: vueuc@0.4.65(vue@3.5.24(typescript@5.9.3)): dependencies: '@css-render/vue3-ssr': 0.15.14(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef '@juggle/resize-observer': 3.4.0 css-render: 0.15.14 evtd: 0.2.4 seemly: 0.3.10 +<<<<<<< HEAD + vdirs: 0.1.8(vue@3.5.22(typescript@5.9.3)) + vooks: 0.2.12(vue@3.5.22(typescript@5.9.3)) + vue: 3.5.22(typescript@5.9.3) + + vxe-pc-ui@4.10.5(vue@3.5.22(typescript@5.9.3)): + dependencies: + '@vxe-ui/core': 4.2.12(vue@3.5.22(typescript@5.9.3)) + transitivePeerDependencies: + - vue + + vxe-table@4.17.0(vue@3.5.22(typescript@5.9.3)): + dependencies: + vxe-pc-ui: 4.10.5(vue@3.5.22(typescript@5.9.3)) +======= vdirs: 0.1.8(vue@3.5.24(typescript@5.9.3)) vooks: 0.2.12(vue@3.5.24(typescript@5.9.3)) vue: 3.5.24(typescript@5.9.3) @@ -22326,6 +23908,7 @@ snapshots: vxe-table@4.17.12(vue@3.5.24(typescript@5.9.3)): dependencies: vxe-pc-ui: 4.10.18(vue@3.5.24(typescript@5.9.3)) +>>>>>>> d4f9bb20dd825e0e6bca96a43fc33f7e4bf6b2ef transitivePeerDependencies: - vue @@ -22372,7 +23955,7 @@ snapshots: tr46: 1.0.1 webidl-conversions: 4.0.2 - when-exit@2.1.5: {} + when-exit@2.1.4: {} which-boxed-primitive@1.1.1: dependencies: @@ -22448,10 +24031,10 @@ snapshots: workbox-build@7.3.0: dependencies: '@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1) - '@babel/core': 7.28.5 - '@babel/preset-env': 7.28.5(@babel/core@7.28.5) + '@babel/core': 7.28.4 + '@babel/preset-env': 7.28.3(@babel/core@7.28.4) '@babel/runtime': 7.28.4 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.28.5)(rollup@2.79.2) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.28.4)(rollup@2.79.2) '@rollup/plugin-node-resolve': 15.3.1(rollup@2.79.2) '@rollup/plugin-replace': 2.4.2(rollup@2.79.2) '@rollup/plugin-terser': 0.4.4(rollup@2.79.2) @@ -22663,12 +24246,12 @@ snapshots: '@poppinss/exception': 1.2.2 error-stack-parser-es: 1.0.5 - youch@4.1.0-beta.12: + youch@4.1.0-beta.11: dependencies: '@poppinss/colors': 4.1.5 - '@poppinss/dumper': 0.6.5 - '@speed-highlight/core': 1.2.12 - cookie-es: 2.0.0 + '@poppinss/dumper': 0.6.4 + '@speed-highlight/core': 1.2.7 + cookie: 1.0.2 youch-core: 0.3.3 zeebe-bpmn-moddle@1.11.0: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index a452c627f2b01418141f5bec330347be17633b67..c83f3bb4a7044182c20010f28cb8c0e0d54e58e3 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -74,6 +74,7 @@ catalog: '@vue/reactivity': ^3.5.17 '@vue/shared': ^3.5.17 '@vue/test-utils': ^2.4.6 + '@vueuse/components': ^13.4.0 '@vueuse/core': ^13.4.0 '@vueuse/integrations': ^14.0.0 '@vueuse/motion': ^3.0.3
{{ item.name }}
{{ reply.name }}
点击播放视频