翻译表增加字数限制筛查
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
This commit is contained in:
parent
b1383a7091
commit
337f15b252
@ -44,6 +44,7 @@
|
|||||||
"ant-design-vue": "catalog:",
|
"ant-design-vue": "catalog:",
|
||||||
"cal-heatmap": "^4.2.4",
|
"cal-heatmap": "^4.2.4",
|
||||||
"dayjs": "catalog:",
|
"dayjs": "catalog:",
|
||||||
|
"json-editor-vue": "^0.18.1",
|
||||||
"pinia": "catalog:",
|
"pinia": "catalog:",
|
||||||
"pixi.js": "8.11.0-main.efa7feb",
|
"pixi.js": "8.11.0-main.efa7feb",
|
||||||
"prettier-eslint": "^16.4.2",
|
"prettier-eslint": "^16.4.2",
|
||||||
|
|||||||
@ -11,6 +11,7 @@ export interface ActivityData {
|
|||||||
level?: number;
|
level?: number;
|
||||||
cfg?: string;
|
cfg?: string;
|
||||||
extra?: string;
|
extra?: string;
|
||||||
|
tag?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ActivityListParam {
|
export interface ActivityListParam {
|
||||||
@ -18,6 +19,7 @@ export interface ActivityListParam {
|
|||||||
ServerId: number;
|
ServerId: number;
|
||||||
PageSize: number;
|
PageSize: number;
|
||||||
CurrentPage: number;
|
CurrentPage: number;
|
||||||
|
activityType?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface EditActivityParam {
|
export interface EditActivityParam {
|
||||||
@ -25,9 +27,14 @@ export interface EditActivityParam {
|
|||||||
Cfg : ActivityData;
|
Cfg : ActivityData;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ResgetActivityListApi{
|
||||||
|
total: number;
|
||||||
|
data: ActivityData[];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export async function getActivityListApi(p:ActivityListParam) {
|
export async function getActivityListApi(p:ActivityListParam) {
|
||||||
return requestClient.post<ActivityData[]>('/activity/list', p);
|
return requestClient.post<ResgetActivityListApi>('/activity/list', p);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function editActivityApi(p: EditActivityParam) {
|
export async function editActivityApi(p: EditActivityParam) {
|
||||||
|
|||||||
@ -15,6 +15,7 @@ export interface languageParam{
|
|||||||
EndTime?: string;
|
EndTime?: string;
|
||||||
SearchField?: string;
|
SearchField?: string;
|
||||||
SearchValue?: string;
|
SearchValue?: string;
|
||||||
|
len_limit?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getStatisticsOrder(data : OperationParam) {
|
export async function getStatisticsOrder(data : OperationParam) {
|
||||||
|
|||||||
@ -29,6 +29,7 @@ export const triggerTypeData: Record<string, string> = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const activityTypeData: Record<number, string> = {
|
export const activityTypeData: Record<number, string> = {
|
||||||
|
0: '不限',
|
||||||
1: '挖矿活动',
|
1: '挖矿活动',
|
||||||
2: '猜颜色',
|
2: '猜颜色',
|
||||||
3: '赛跑活动',
|
3: '赛跑活动',
|
||||||
|
|||||||
@ -103,3 +103,18 @@ export const formatItems = (items: string) => {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const parseNumber = (param: any) => {
|
||||||
|
try{
|
||||||
|
switch(typeof(param)){
|
||||||
|
case 'string':
|
||||||
|
return parseInt(param, 10);
|
||||||
|
case 'number':
|
||||||
|
return param;
|
||||||
|
default:
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}catch(e){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,6 +1,6 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { VxeGridProps, VxeGridListeners } from '#/adapter/vxe-table';
|
import type { VxeGridProps, VxeGridListeners } from '#/adapter/vxe-table';
|
||||||
import { Button, notification, Image, Popover } from 'ant-design-vue';
|
import { Button, notification, Image } from 'ant-design-vue';
|
||||||
import { Page } from '@vben/common-ui';
|
import { Page } from '@vben/common-ui';
|
||||||
import { getLanguageList, saveLanguageList, deleteLanguageItem } from '#/api/core/statistics';
|
import { getLanguageList, saveLanguageList, deleteLanguageItem } from '#/api/core/statistics';
|
||||||
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||||
@ -14,6 +14,7 @@ import dayjs from 'dayjs';
|
|||||||
import { AccessControl } from '@vben/access';
|
import { AccessControl } from '@vben/access';
|
||||||
import { useAccess } from '@vben/access';
|
import { useAccess } from '@vben/access';
|
||||||
import GlossaryData from '#/store/glossary.json';
|
import GlossaryData from '#/store/glossary.json';
|
||||||
|
import { ref } from 'vue';
|
||||||
const { hasAccessByRoles } = useAccess();
|
const { hasAccessByRoles } = useAccess();
|
||||||
const [AddLanguageModal, AddLanguageModalApi] = useVbenModal({
|
const [AddLanguageModal, AddLanguageModalApi] = useVbenModal({
|
||||||
connectedComponent: addLanguage,
|
connectedComponent: addLanguage,
|
||||||
@ -38,6 +39,7 @@ let total: languageType = {
|
|||||||
pt_BR: '',
|
pt_BR: '',
|
||||||
es_LATAM: '',
|
es_LATAM: '',
|
||||||
};
|
};
|
||||||
|
const len_limit = ref<string>('');
|
||||||
const startDate = dayjs().subtract(7, 'day').startOf('day');
|
const startDate = dayjs().subtract(7, 'day').startOf('day');
|
||||||
const endDate = dayjs().endOf('day');
|
const endDate = dayjs().endOf('day');
|
||||||
const formOptions: VbenFormProps = {
|
const formOptions: VbenFormProps = {
|
||||||
@ -91,8 +93,23 @@ const formOptions: VbenFormProps = {
|
|||||||
},
|
},
|
||||||
fieldName: 'EndTime',
|
fieldName: 'EndTime',
|
||||||
label: $t('page.common.endTime'),
|
label: $t('page.common.endTime'),
|
||||||
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
component: 'Select',
|
||||||
|
defaultValue: false,
|
||||||
|
componentProps: {
|
||||||
|
options: [
|
||||||
|
{ label: 'en_US', value: 'en_US' },
|
||||||
|
{ label: 'zh_CN', value: 'zh_CN' },
|
||||||
|
{ label: 'pt_BR', value: 'pt_BR' },
|
||||||
|
{ label: 'es_LATAM', value: 'es_LATAM' },
|
||||||
|
],
|
||||||
|
placeholder: '请选择',
|
||||||
|
showSearch: true,
|
||||||
|
},
|
||||||
|
fieldName: 'len_limit',
|
||||||
|
label: 'len_limit:',
|
||||||
|
}
|
||||||
],
|
],
|
||||||
// 控制表单是否显示折叠按钮
|
// 控制表单是否显示折叠按钮
|
||||||
showCollapseButton: true,
|
showCollapseButton: true,
|
||||||
@ -159,6 +176,18 @@ const gridOptions: VxeGridProps<languageType> = {
|
|||||||
if (lastOp.find(opItem => opItem.LanguageId === row.Id && opItem.Field === prop && opItem.Type === 'Edit')) {
|
if (lastOp.find(opItem => opItem.LanguageId === row.Id && opItem.Field === prop && opItem.Type === 'Edit')) {
|
||||||
return 'row-green';
|
return 'row-green';
|
||||||
}
|
}
|
||||||
|
if (len_limit.value === 'zh_CN' && column.field === 'zh_CN') {
|
||||||
|
return 'row-yellow';
|
||||||
|
}
|
||||||
|
if (len_limit.value === 'en_US' && column.field === 'en_US') {
|
||||||
|
return 'row-yellow';
|
||||||
|
}
|
||||||
|
if (len_limit.value === 'pt_BR' && column.field === 'pt_BR') {
|
||||||
|
return 'row-yellow';
|
||||||
|
}
|
||||||
|
if (len_limit.value === 'es_LATAM' && column.field === 'es_LATAM') {
|
||||||
|
return 'row-yellow';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
proxyConfig: {
|
proxyConfig: {
|
||||||
@ -175,7 +204,9 @@ const gridOptions: VxeGridProps<languageType> = {
|
|||||||
EndTime: formValues.EndTime ? Math.floor(new Date(formValues.EndTime).getTime() / 1000) : undefined,
|
EndTime: formValues.EndTime ? Math.floor(new Date(formValues.EndTime).getTime() / 1000) : undefined,
|
||||||
SearchField: formValues.SearchField,
|
SearchField: formValues.SearchField,
|
||||||
SearchValue: formValues.SearchValue,
|
SearchValue: formValues.SearchValue,
|
||||||
|
len_limit: formValues.len_limit || '',
|
||||||
} as languageParam);
|
} as languageParam);
|
||||||
|
len_limit.value = formValues.len_limit || '';
|
||||||
newData = response.data || [];
|
newData = response.data || [];
|
||||||
columnStr = response.column || "";
|
columnStr = response.column || "";
|
||||||
if (columnStr && columnStr.length > 0) {
|
if (columnStr && columnStr.length > 0) {
|
||||||
@ -184,7 +215,6 @@ const gridOptions: VxeGridProps<languageType> = {
|
|||||||
en_USVisible = cols.includes('en_US');
|
en_USVisible = cols.includes('en_US');
|
||||||
chineseVisible = cols.includes('zh_CN');
|
chineseVisible = cols.includes('zh_CN');
|
||||||
pt_BRVisible = cols.includes('pt_BR');
|
pt_BRVisible = cols.includes('pt_BR');
|
||||||
|
|
||||||
}
|
}
|
||||||
oldData = newData.map(item => ({ ...item }));
|
oldData = newData.map(item => ({ ...item }));
|
||||||
console.log('API response:', response);
|
console.log('API response:', response);
|
||||||
@ -452,6 +482,9 @@ function getGlossary(row: languageType) {
|
|||||||
.row-green {
|
.row-green {
|
||||||
background-color: #0ea800;
|
background-color: #0ea800;
|
||||||
}
|
}
|
||||||
|
.row-yellow {
|
||||||
|
background-color: #c9bc04;
|
||||||
|
}
|
||||||
.zh-cn-column {
|
.zh-cn-column {
|
||||||
font-family: "猫啃什锦黑", sans-serif;
|
font-family: "猫啃什锦黑", sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,17 +1,12 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { useVbenForm, useVbenModal } from '@vben/common-ui';
|
import { useVbenForm, useVbenModal } from '@vben/common-ui';
|
||||||
import { Image } from "ant-design-vue";
|
|
||||||
import { Tag } from 'ant-design-vue';
|
|
||||||
import { ref } from "vue";
|
|
||||||
import { addActivityApi } from '#/api/core/activity';
|
import { addActivityApi } from '#/api/core/activity';
|
||||||
import type { EditActivityParam } from '#/api/core/activity';
|
import type { EditActivityParam } from '#/api/core/activity';
|
||||||
import { getUnixTime } from '#/store/util';
|
import { getUnixTime } from '#/store/util';
|
||||||
interface MailItem {
|
import JsonEitorVue from 'json-editor-vue';
|
||||||
Id: string | number;
|
import { activityTypeData } from '#/store/order';
|
||||||
Num: number;
|
import {ref} from 'vue';
|
||||||
url?: string;
|
const value = ref();
|
||||||
}
|
|
||||||
let items = ref<MailItem[]>([]);
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: 'DetailMailModal',
|
name: 'DetailMailModal',
|
||||||
});
|
});
|
||||||
@ -35,36 +30,12 @@ const [Form, FormApi] = useVbenForm({
|
|||||||
fieldName: 'type',
|
fieldName: 'type',
|
||||||
label: '活动类型',
|
label: '活动类型',
|
||||||
componentProps: {
|
componentProps: {
|
||||||
options: [
|
options: activityTypeData ? Object.entries(activityTypeData).map(([key, value]) => ({
|
||||||
{
|
label: value,
|
||||||
label: '挖矿活动',
|
value: key,
|
||||||
value: 1,
|
})) : [],
|
||||||
},
|
placeholder: '请选择',
|
||||||
{
|
showSearch: true,
|
||||||
label: '猜颜色',
|
|
||||||
value: 2,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '赛跑活动',
|
|
||||||
value: 3,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '限时特惠礼包',
|
|
||||||
value: 4,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '买一赠一礼包',
|
|
||||||
value: 5,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '超值加购礼包',
|
|
||||||
value: 6,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '好友合作活动',
|
|
||||||
value: 7,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -119,6 +90,16 @@ const [Form, FormApi] = useVbenForm({
|
|||||||
rows: 8,
|
rows: 8,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
component: 'Textarea',
|
||||||
|
fieldName: 'jsonCfg',
|
||||||
|
label: 'json配置',
|
||||||
|
defaultValue: '{}',
|
||||||
|
componentProps: {
|
||||||
|
type: 'textarea',
|
||||||
|
rows: 8,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
component: 'Textarea',
|
component: 'Textarea',
|
||||||
defaultValue: '{}',
|
defaultValue: '{}',
|
||||||
@ -154,22 +135,10 @@ const [Modal, modalApi] = useVbenModal({
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<Modal :width="800" title="邮件详情">
|
<Modal :width="800" title="增加活动配置">
|
||||||
<Form>
|
<Form>
|
||||||
<template #items>
|
<template #jsonCfg>
|
||||||
<div class="flex flex-wrap items-center justify-center">
|
<JsonEitorVue v-model="value" v-bind="{/* local props & attrs */}" class="w-[100%] h-[500px]"/>
|
||||||
<div v-for="item in items" :key="item.Id" class="flex items-center gap-1">
|
|
||||||
<template v-if="item.url">
|
|
||||||
<Image :src="item.url" width="30px" />
|
|
||||||
</template>
|
|
||||||
<template v-else>
|
|
||||||
<Tag class="w-[45px] h-[30px] flex items-center justify-center text-xs">
|
|
||||||
{{ item.Id }}
|
|
||||||
</Tag>
|
|
||||||
</template>
|
|
||||||
<span>x{{ item.Num }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</Form>
|
</Form>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|||||||
@ -1,20 +1,15 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { useVbenForm, useVbenModal } from '@vben/common-ui';
|
import { useVbenForm, useVbenModal } from '@vben/common-ui';
|
||||||
import { Image, message } from "ant-design-vue";
|
import { message } from "ant-design-vue";
|
||||||
import { formatItems } from '#/store/util';
|
|
||||||
import { activityTypeData } from '#/store/order';
|
import { activityTypeData } from '#/store/order';
|
||||||
import { Tag } from 'ant-design-vue';
|
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import { editActivityApi } from '#/api/core/activity';
|
import { editActivityApi } from '#/api/core/activity';
|
||||||
import type { EditActivityParam } from '#/api/core/activity';
|
import type { EditActivityParam } from '#/api/core/activity';
|
||||||
import { getUnixTime } from '#/store/util';
|
import { getUnixTime } from '#/store/util';
|
||||||
interface MailItem {
|
import JsonEitorVue from 'json-editor-vue';
|
||||||
Id: string | number;
|
|
||||||
Num: number;
|
const value = ref();
|
||||||
url?: string;
|
|
||||||
}
|
|
||||||
let items = ref<MailItem[]>([]);
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: 'DetailMailModal',
|
name: 'DetailMailModal',
|
||||||
});
|
});
|
||||||
@ -129,13 +124,13 @@ const [Modal, modalApi] = useVbenModal({
|
|||||||
cfg: modalData.cfg,
|
cfg: modalData.cfg,
|
||||||
extra: modalData.extra,
|
extra: modalData.extra,
|
||||||
});
|
});
|
||||||
items.value = formatItems(modalData.items);
|
value.value = JSON.parse(modalData.cfg || '{}');
|
||||||
|
console.log('value', value.value);
|
||||||
},
|
},
|
||||||
onConfirm: async () => {
|
onConfirm: async () => {
|
||||||
const values = await FormApi.getValues();
|
const values = await FormApi.getValues();
|
||||||
const mMdata = modalApi.getData();
|
const mMdata = modalApi.getData();
|
||||||
const modalData = mMdata.cfg || {};
|
const modalData = mMdata.cfg || {};
|
||||||
const cfgjson = JSON.parse(values.cfg);
|
|
||||||
const level: number = Number(values.level) || 0;
|
const level: number = Number(values.level) || 0;
|
||||||
const params: EditActivityParam = {
|
const params: EditActivityParam = {
|
||||||
AppId: mMdata.AppId,
|
AppId: mMdata.AppId,
|
||||||
@ -148,7 +143,7 @@ const [Modal, modalApi] = useVbenModal({
|
|||||||
level: level,
|
level: level,
|
||||||
mail_title: values.mail_title,
|
mail_title: values.mail_title,
|
||||||
mail_content: values.mail_content,
|
mail_content: values.mail_content,
|
||||||
cfg: JSON.stringify(cfgjson),
|
cfg: JSON.stringify(value.value || {}),
|
||||||
extra: values.extra,
|
extra: values.extra,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -162,22 +157,10 @@ const [Modal, modalApi] = useVbenModal({
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<Modal :width="800" title="邮件详情">
|
<Modal :width="800" title="活动详情">
|
||||||
<Form>
|
<Form>
|
||||||
<template #items>
|
<template #cfg>
|
||||||
<div class="flex flex-wrap items-center justify-center">
|
<JsonEitorVue v-model="value" v-bind="{/* local props & attrs */ }" class="w-[100%] h-[500px]" />
|
||||||
<div v-for="item in items" :key="item.Id" class="flex items-center gap-1">
|
|
||||||
<template v-if="item.url">
|
|
||||||
<Image :src="item.url" width="30px" />
|
|
||||||
</template>
|
|
||||||
<template v-else>
|
|
||||||
<Tag class="w-[45px] h-[30px] flex items-center justify-center text-xs">
|
|
||||||
{{ item.Id }}
|
|
||||||
</Tag>
|
|
||||||
</template>
|
|
||||||
<span>x{{ item.Num }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</Form>
|
</Form>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { Page } from '@vben/common-ui';
|
import { Page } from '@vben/common-ui';
|
||||||
import { Button, Card, Space } from 'ant-design-vue';
|
import { Button, Card, Space, Tag } from 'ant-design-vue';
|
||||||
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||||
import type { VxeGridListeners, VxeGridProps } from '#/adapter/vxe-table';
|
import type { VxeGridListeners, VxeGridProps } from '#/adapter/vxe-table';
|
||||||
import type { VbenFormProps } from '#/adapter/form';
|
import type { VbenFormProps } from '#/adapter/form';
|
||||||
@ -13,8 +13,9 @@ import { onMounted, ref } from 'vue';
|
|||||||
import AddActivityModal from './activity-add.vue';
|
import AddActivityModal from './activity-add.vue';
|
||||||
import DetailActivityModal from './activity-detail.vue';
|
import DetailActivityModal from './activity-detail.vue';
|
||||||
import { activityTypeData } from '#/store/order';
|
import { activityTypeData } from '#/store/order';
|
||||||
|
import { parseNumber } from '#/store/util';
|
||||||
import { $t } from '#/locales'
|
import { $t } from '#/locales'
|
||||||
|
const activityList = ref<string[]>([]);
|
||||||
const appList = ref<AppData[]>([]);
|
const appList = ref<AppData[]>([]);
|
||||||
const ServerList = ref<ServerData[]>([]);
|
const ServerList = ref<ServerData[]>([]);
|
||||||
const formOptions: VbenFormProps = {
|
const formOptions: VbenFormProps = {
|
||||||
@ -25,27 +26,6 @@ const formOptions: VbenFormProps = {
|
|||||||
component: 'Select',
|
component: 'Select',
|
||||||
defaultValue: 1,
|
defaultValue: 1,
|
||||||
componentProps: {
|
componentProps: {
|
||||||
onChange: async (value: number) => {
|
|
||||||
const serverResponse = await getServerListApi({
|
|
||||||
AppId: value,
|
|
||||||
Type: 1,
|
|
||||||
});
|
|
||||||
ServerList.value = Array.isArray(serverResponse)
|
|
||||||
? serverResponse
|
|
||||||
: [];
|
|
||||||
GridApi.formApi.updateSchema([
|
|
||||||
{
|
|
||||||
component: 'Select',
|
|
||||||
componentProps: {
|
|
||||||
options: ServerList.value.map((item) => ({
|
|
||||||
label: item.ServerName,
|
|
||||||
value: item.ServerId,
|
|
||||||
})),
|
|
||||||
},
|
|
||||||
fieldName: 'ServerId',
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
},
|
|
||||||
filterOption: true,
|
filterOption: true,
|
||||||
options: [],
|
options: [],
|
||||||
placeholder: '请选择',
|
placeholder: '请选择',
|
||||||
@ -54,6 +34,21 @@ const formOptions: VbenFormProps = {
|
|||||||
fieldName: 'AppId',
|
fieldName: 'AppId',
|
||||||
label: 'APP:',
|
label: 'APP:',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
component: 'Select',
|
||||||
|
defaultValue: "不限",
|
||||||
|
componentProps: {
|
||||||
|
filterOption: true,
|
||||||
|
options: activityTypeData ? Object.entries(activityTypeData).map(([key, value]) => ({
|
||||||
|
label: value,
|
||||||
|
value: key,
|
||||||
|
})) : [],
|
||||||
|
placeholder: '请选择',
|
||||||
|
showSearch: true,
|
||||||
|
},
|
||||||
|
fieldName: 'activityType',
|
||||||
|
label: '活动类型:',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
// 控制表单是否显示折叠按钮
|
// 控制表单是否显示折叠按钮
|
||||||
showCollapseButton: true,
|
showCollapseButton: true,
|
||||||
@ -72,6 +67,7 @@ const gridOptions: VxeGridProps<ActivityData> = {
|
|||||||
{ field: 'level', title: '开启等级', },
|
{ field: 'level', title: '开启等级', },
|
||||||
{ field: 'start_time', title: '开启时间', formatter: ({ cellValue }) => new Date(cellValue * 1000).toLocaleString(), },
|
{ field: 'start_time', title: '开启时间', formatter: ({ cellValue }) => new Date(cellValue * 1000).toLocaleString(), },
|
||||||
{ field: 'end_time', title: '结束时间', formatter: ({ cellValue }) => new Date(cellValue * 1000).toLocaleString(), },
|
{ field: 'end_time', title: '结束时间', formatter: ({ cellValue }) => new Date(cellValue * 1000).toLocaleString(), },
|
||||||
|
{ field: 'tag', title: '状态', slots: { default: 'tag' } },
|
||||||
],
|
],
|
||||||
height: 'auto',
|
height: 'auto',
|
||||||
pagerConfig: {},
|
pagerConfig: {},
|
||||||
@ -82,13 +78,32 @@ const gridOptions: VxeGridProps<ActivityData> = {
|
|||||||
},
|
},
|
||||||
ajax: {
|
ajax: {
|
||||||
query: async ({ page }, formValues) => {
|
query: async ({ page }, formValues) => {
|
||||||
let AppId = parseInt(formValues.AppId, 10);
|
let AppId = parseNumber(formValues.AppId);
|
||||||
|
let activityType = parseNumber(formValues.activityType);
|
||||||
|
console.log('query', formValues, page);
|
||||||
const response = await getActivityListApi({
|
const response = await getActivityListApi({
|
||||||
AppId: AppId,
|
AppId: AppId,
|
||||||
ServerId: formValues.ServerId,
|
ServerId: formValues.ServerId,
|
||||||
PageSize: page.pageSize,
|
PageSize: page.pageSize,
|
||||||
CurrentPage: page.currentPage,
|
CurrentPage: page.currentPage,
|
||||||
|
activityType: activityType,
|
||||||
});
|
});
|
||||||
|
if (!response || !response.data) {
|
||||||
|
activityList.value = [];
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
const now = Math.floor(Date.now() / 1000);
|
||||||
|
activityList.value = [];
|
||||||
|
for (let item of response.data) {
|
||||||
|
if (item.end_time < now) {
|
||||||
|
item.tag = '已结束';
|
||||||
|
} else if (item.start_time > now) {
|
||||||
|
item.tag = '未开始';
|
||||||
|
} else {
|
||||||
|
activityList.value = Array.from(new Set([...activityList.value, activityTypeData[item.type]])).filter((v): v is string => v !== undefined);
|
||||||
|
item.tag = '生效中';
|
||||||
|
}
|
||||||
|
}
|
||||||
return response;
|
return response;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -164,6 +179,19 @@ onMounted(async () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function getTagColor(tag: string) {
|
||||||
|
switch (tag) {
|
||||||
|
case '未开始':
|
||||||
|
return 'blue';
|
||||||
|
case '生效中':
|
||||||
|
return 'green';
|
||||||
|
case '已结束':
|
||||||
|
return 'red';
|
||||||
|
default:
|
||||||
|
return 'brown';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async function addActivity() {
|
async function addActivity() {
|
||||||
//console.log('addActivity');
|
//console.log('addActivity');
|
||||||
const Value = await GridApi.formApi.getValues();
|
const Value = await GridApi.formApi.getValues();
|
||||||
@ -178,10 +206,23 @@ async function addActivity() {
|
|||||||
<AddActivityM class="w-[50%]" />
|
<AddActivityM class="w-[50%]" />
|
||||||
<DetailActivityM class="w-[50%]" />
|
<DetailActivityM class="w-[50%]" />
|
||||||
<Card class="mb-5" title="活动操作">
|
<Card class="mb-5" title="活动操作">
|
||||||
|
<div class="mb-5">
|
||||||
|
<Space>
|
||||||
|
<template v-for="value in activityList" :key="value">
|
||||||
|
<Tag color="green">{{ value }}</Tag>
|
||||||
|
</template>
|
||||||
|
</Space>
|
||||||
|
</div>
|
||||||
|
|
||||||
<Space>
|
<Space>
|
||||||
<Button @click="addActivity">新增活动</Button>
|
<Button @click="addActivity">新增活动</Button>
|
||||||
</Space>
|
</Space>
|
||||||
|
|
||||||
</Card>
|
</Card>
|
||||||
<Grid />
|
<Grid>
|
||||||
|
<template #tag="{ row }">
|
||||||
|
<Tag :color=getTagColor(row.tag)>{{ row.tag }}</Tag>
|
||||||
|
</template>
|
||||||
|
</Grid>
|
||||||
</Page>
|
</Page>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
417
pnpm-lock.yaml
417
pnpm-lock.yaml
@ -639,6 +639,9 @@ importers:
|
|||||||
dayjs:
|
dayjs:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.11.13
|
version: 1.11.13
|
||||||
|
json-editor-vue:
|
||||||
|
specifier: ^0.18.1
|
||||||
|
version: 0.18.1(vue@3.5.13(typescript@5.7.2))
|
||||||
pinia:
|
pinia:
|
||||||
specifier: 2.2.2
|
specifier: 2.2.2
|
||||||
version: 2.2.2(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2))
|
version: 2.2.2(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2))
|
||||||
@ -778,7 +781,7 @@ importers:
|
|||||||
version: 3.3.0
|
version: 3.3.0
|
||||||
eslint-plugin-perfectionist:
|
eslint-plugin-perfectionist:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 3.9.1(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.4.0)))
|
version: 3.9.1(eslint@9.16.0(jiti@2.4.0))(svelte@5.55.0)(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.4.0)))
|
||||||
eslint-plugin-prettier:
|
eslint-plugin-prettier:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 5.2.1(@types/eslint@9.6.1)(eslint@9.16.0(jiti@2.4.0))(prettier@3.6.0)
|
version: 5.2.1(@types/eslint@9.6.1)(eslint@9.16.0(jiti@2.4.0))(prettier@3.6.0)
|
||||||
@ -2545,6 +2548,30 @@ packages:
|
|||||||
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
|
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
|
||||||
engines: {node: '>=16.13'}
|
engines: {node: '>=16.13'}
|
||||||
|
|
||||||
|
'@codemirror/autocomplete@6.20.1':
|
||||||
|
resolution: {integrity: sha512-1cvg3Vz1dSSToCNlJfRA2WSI4ht3K+WplO0UMOgmUYPivCyy2oueZY6Lx7M9wThm7SDUBViRmuT+OG/i8+ON9A==}
|
||||||
|
|
||||||
|
'@codemirror/commands@6.10.3':
|
||||||
|
resolution: {integrity: sha512-JFRiqhKu+bvSkDLI+rUhJwSxQxYb759W5GBezE8Uc8mHLqC9aV/9aTC7yJSqCtB3F00pylrLCwnyS91Ap5ej4Q==}
|
||||||
|
|
||||||
|
'@codemirror/lang-json@6.0.2':
|
||||||
|
resolution: {integrity: sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==}
|
||||||
|
|
||||||
|
'@codemirror/language@6.12.3':
|
||||||
|
resolution: {integrity: sha512-QwCZW6Tt1siP37Jet9Tb02Zs81TQt6qQrZR2H+eGMcFsL1zMrk2/b9CLC7/9ieP1fjIUMgviLWMmgiHoJrj+ZA==}
|
||||||
|
|
||||||
|
'@codemirror/lint@6.9.5':
|
||||||
|
resolution: {integrity: sha512-GElsbU9G7QT9xXhpUg1zWGmftA/7jamh+7+ydKRuT0ORpWS3wOSP0yT1FOlIZa7mIJjpVPipErsyvVqB9cfTFA==}
|
||||||
|
|
||||||
|
'@codemirror/search@6.6.0':
|
||||||
|
resolution: {integrity: sha512-koFuNXcDvyyotWcgOnZGmY7LZqEOXZaaxD/j6n18TCLx2/9HieZJ5H6hs1g8FiRxBD0DNfs0nXn17g872RmYdw==}
|
||||||
|
|
||||||
|
'@codemirror/state@6.6.0':
|
||||||
|
resolution: {integrity: sha512-4nbvra5R5EtiCzr9BTHiTLc+MLXK2QGiAVYMyi8PkQd3SR+6ixar/Q/01Fa21TBIDOZXgeWV4WppsQolSreAPQ==}
|
||||||
|
|
||||||
|
'@codemirror/view@6.40.0':
|
||||||
|
resolution: {integrity: sha512-WA0zdU7xfF10+5I3HhUUq3kqOx3KjqmtQ9lqZjfK7jtYk4G72YW9rezcSywpaUMCWOMlq+6E0pO1IWg1TNIhtg==}
|
||||||
|
|
||||||
'@commitlint/cli@19.6.0':
|
'@commitlint/cli@19.6.0':
|
||||||
resolution: {integrity: sha512-v17BgGD9w5KnthaKxXnEg6KLq6DYiAxyiN44TpiRtqyW8NSq+Kx99mkEG8Qo6uu6cI5eMzMojW2muJxjmPnF8w==}
|
resolution: {integrity: sha512-v17BgGD9w5KnthaKxXnEg6KLq6DYiAxyiN44TpiRtqyW8NSq+Kx99mkEG8Qo6uu6cI5eMzMojW2muJxjmPnF8w==}
|
||||||
engines: {node: '>=v18'}
|
engines: {node: '>=v18'}
|
||||||
@ -3474,6 +3501,18 @@ packages:
|
|||||||
'@floating-ui/vue@1.1.5':
|
'@floating-ui/vue@1.1.5':
|
||||||
resolution: {integrity: sha512-ynL1p5Z+woPVSwgMGqeDrx6HrJfGIDzFyESFkyqJKilGW1+h/8yVY29Khn0LaU6wHBRwZ13ntG6reiHWK6jyzw==}
|
resolution: {integrity: sha512-ynL1p5Z+woPVSwgMGqeDrx6HrJfGIDzFyESFkyqJKilGW1+h/8yVY29Khn0LaU6wHBRwZ13ntG6reiHWK6jyzw==}
|
||||||
|
|
||||||
|
'@fortawesome/fontawesome-common-types@7.2.0':
|
||||||
|
resolution: {integrity: sha512-IpR0bER9FY25p+e7BmFH25MZKEwFHTfRAfhOyJubgiDnoJNsSvJ7nigLraHtp4VOG/cy8D7uiV0dLkHOne5Fhw==}
|
||||||
|
engines: {node: '>=6'}
|
||||||
|
|
||||||
|
'@fortawesome/free-regular-svg-icons@7.2.0':
|
||||||
|
resolution: {integrity: sha512-iycmlN51EULlQ4D/UU9WZnHiN0CvjJ2TuuCrAh+1MVdzD+4ViKYH2deNAll4XAAYlZa8WAefHR5taSK8hYmSMw==}
|
||||||
|
engines: {node: '>=6'}
|
||||||
|
|
||||||
|
'@fortawesome/free-solid-svg-icons@7.2.0':
|
||||||
|
resolution: {integrity: sha512-YTVITFGN0/24PxzXrwqCgnyd7njDuzp5ZvaCx5nq/jg55kUYd94Nj8UTchBdBofi/L0nwRfjGOg0E41d2u9T1w==}
|
||||||
|
engines: {node: '>=6'}
|
||||||
|
|
||||||
'@gar/promisify@1.1.3':
|
'@gar/promisify@1.1.3':
|
||||||
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
||||||
|
|
||||||
@ -3569,8 +3608,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-bmsP4L2HqBF6i6uaMqJMcFBONVjKt+siGluRq4Ca4C0q7W2eMaVZr8iCgF9dKbcVXutftkC7D6z2SaSMmLiDyA==}
|
resolution: {integrity: sha512-bmsP4L2HqBF6i6uaMqJMcFBONVjKt+siGluRq4Ca4C0q7W2eMaVZr8iCgF9dKbcVXutftkC7D6z2SaSMmLiDyA==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
|
|
||||||
'@intlify/shared@11.1.12':
|
'@intlify/shared@11.3.0':
|
||||||
resolution: {integrity: sha512-Om86EjuQtA69hdNj3GQec9ZC0L0vPSAnXzB3gP/gyJ7+mA7t06d9aOAiqMZ+xEOsumGP4eEBlfl8zF2LOTzf2A==}
|
resolution: {integrity: sha512-LC6P/uay7rXL5zZ5+5iRJfLs/iUN8apu9tm8YqQVmW3Uq3X4A0dOFUIDuAmB7gAC29wTHOS3EiN/IosNSz0eNQ==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
|
|
||||||
'@intlify/shared@12.0.0-alpha.3':
|
'@intlify/shared@12.0.0-alpha.3':
|
||||||
@ -3627,6 +3666,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
|
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
|
|
||||||
|
'@jridgewell/remapping@2.3.5':
|
||||||
|
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
||||||
|
|
||||||
'@jridgewell/resolve-uri@3.1.2':
|
'@jridgewell/resolve-uri@3.1.2':
|
||||||
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
@ -3644,12 +3686,40 @@ packages:
|
|||||||
'@jridgewell/trace-mapping@0.3.25':
|
'@jridgewell/trace-mapping@0.3.25':
|
||||||
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
||||||
|
|
||||||
|
'@jsep-plugin/assignment@1.3.0':
|
||||||
|
resolution: {integrity: sha512-VVgV+CXrhbMI3aSusQyclHkenWSAm95WaiKrMxRFam3JSUiIaQjoMIw2sEs/OX4XifnqeQUN4DYbJjlA8EfktQ==}
|
||||||
|
engines: {node: '>= 10.16.0'}
|
||||||
|
peerDependencies:
|
||||||
|
jsep: ^0.4.0||^1.0.0
|
||||||
|
|
||||||
|
'@jsep-plugin/regex@1.0.4':
|
||||||
|
resolution: {integrity: sha512-q7qL4Mgjs1vByCaTnDFcBnV9HS7GVPJX5vyVoCgZHNSC9rjwIlmbXG5sUuorR5ndfHAIlJ8pVStxvjXHbNvtUg==}
|
||||||
|
engines: {node: '>= 10.16.0'}
|
||||||
|
peerDependencies:
|
||||||
|
jsep: ^0.4.0||^1.0.0
|
||||||
|
|
||||||
|
'@jsonquerylang/jsonquery@5.1.1':
|
||||||
|
resolution: {integrity: sha512-Fj4SoA6Ku09EF+t7OEI8QLipA2A+fJCdEOwnDWG84o5jXMRjkcN5NCMH7kFZb5fP62xz914XV5LBOiDdiUXObg==}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
'@jspm/generator@2.4.1':
|
'@jspm/generator@2.4.1':
|
||||||
resolution: {integrity: sha512-FmVw1I4JoNUG129GjgPLU3PQ+OQP/eZpbSoH/jT8cCjN9blHQkx0KD4jHozcd04kxAoEFeWo+9HBxktv4geC0A==}
|
resolution: {integrity: sha512-FmVw1I4JoNUG129GjgPLU3PQ+OQP/eZpbSoH/jT8cCjN9blHQkx0KD4jHozcd04kxAoEFeWo+9HBxktv4geC0A==}
|
||||||
|
|
||||||
'@jspm/import-map@1.1.0':
|
'@jspm/import-map@1.1.0':
|
||||||
resolution: {integrity: sha512-vmk583YnMi4fmqeXbWIBiyzFu+vqVZ5VCoaa6H4xeSQy5E6JAWtmcq72OAMFTeSTqw7xxHQIJFq2OlHKdUWitQ==}
|
resolution: {integrity: sha512-vmk583YnMi4fmqeXbWIBiyzFu+vqVZ5VCoaa6H4xeSQy5E6JAWtmcq72OAMFTeSTqw7xxHQIJFq2OlHKdUWitQ==}
|
||||||
|
|
||||||
|
'@lezer/common@1.5.1':
|
||||||
|
resolution: {integrity: sha512-6YRVG9vBkaY7p1IVxL4s44n5nUnaNnGM2/AckNgYOnxTG2kWh1vR8BMxPseWPjRNpb5VtXnMpeYAEAADoRV1Iw==}
|
||||||
|
|
||||||
|
'@lezer/highlight@1.2.3':
|
||||||
|
resolution: {integrity: sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==}
|
||||||
|
|
||||||
|
'@lezer/json@1.0.3':
|
||||||
|
resolution: {integrity: sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==}
|
||||||
|
|
||||||
|
'@lezer/lr@1.4.8':
|
||||||
|
resolution: {integrity: sha512-bPWa0Pgx69ylNlMlPvBPryqeLYQjyJjqPx+Aupm5zydLIF3NE+6MMLT8Yi23Bd9cif9VS00aUebn+6fDIGBcDA==}
|
||||||
|
|
||||||
'@manypkg/find-root@1.1.0':
|
'@manypkg/find-root@1.1.0':
|
||||||
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
|
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
|
||||||
|
|
||||||
@ -3672,6 +3742,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
|
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
'@marijn/find-cluster-break@1.0.2':
|
||||||
|
resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
|
||||||
|
|
||||||
'@microsoft/api-extractor-model@7.29.6':
|
'@microsoft/api-extractor-model@7.29.6':
|
||||||
resolution: {integrity: sha512-gC0KGtrZvxzf/Rt9oMYD2dHvtN/1KPEYsrQPyMKhLHnlVuO/f4AFN3E4toqZzD2pt4LhkKoYmL2H9tX3yCOyRw==}
|
resolution: {integrity: sha512-gC0KGtrZvxzf/Rt9oMYD2dHvtN/1KPEYsrQPyMKhLHnlVuO/f4AFN3E4toqZzD2pt4LhkKoYmL2H9tX3yCOyRw==}
|
||||||
|
|
||||||
@ -4007,6 +4080,13 @@ packages:
|
|||||||
resolution: {integrity: sha512-B9ewI0KVC1yqyeoQzErVnV4kdnxaYfwRMctxk/YwJxZZc/nVZ3VOVE+r2kXIFaGbUgc4ZHFn+aE2qvzCRXTXHw==}
|
resolution: {integrity: sha512-B9ewI0KVC1yqyeoQzErVnV4kdnxaYfwRMctxk/YwJxZZc/nVZ3VOVE+r2kXIFaGbUgc4ZHFn+aE2qvzCRXTXHw==}
|
||||||
engines: {node: '>=14.19.0', npm: '>=7.0.0'}
|
engines: {node: '>=14.19.0', npm: '>=7.0.0'}
|
||||||
|
|
||||||
|
'@replit/codemirror-indentation-markers@6.5.3':
|
||||||
|
resolution: {integrity: sha512-hL5Sfvw3C1vgg7GolLe/uxX5T3tmgOA3ZzqlMv47zjU1ON51pzNWiVbS22oh6crYhtVhv8b3gdXwoYp++2ilHw==}
|
||||||
|
peerDependencies:
|
||||||
|
'@codemirror/language': ^6.0.0
|
||||||
|
'@codemirror/state': ^6.0.0
|
||||||
|
'@codemirror/view': ^6.0.0
|
||||||
|
|
||||||
'@rollup/plugin-alias@5.1.1':
|
'@rollup/plugin-alias@5.1.1':
|
||||||
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
|
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
|
||||||
engines: {node: '>=14.0.0'}
|
engines: {node: '>=14.0.0'}
|
||||||
@ -4279,6 +4359,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
|
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
|
'@sphinxxxx/color-conversion@2.2.2':
|
||||||
|
resolution: {integrity: sha512-XExJS3cLqgrmNBIP3bBw6+1oQ1ksGjFh0+oClDKFYpCCqx/hlqwWO5KO/S63fzUo67SxI9dMrF0y5T/Ey7h8Zw==}
|
||||||
|
|
||||||
'@stylistic/stylelint-plugin@3.1.1':
|
'@stylistic/stylelint-plugin@3.1.1':
|
||||||
resolution: {integrity: sha512-XagAHHIa528EvyGybv8EEYGK5zrVW74cHpsjhtovVATbhDRuJYfE+X4HCaAieW9lCkwbX6L+X0I4CiUG3w/hFw==}
|
resolution: {integrity: sha512-XagAHHIa528EvyGybv8EEYGK5zrVW74cHpsjhtovVATbhDRuJYfE+X4HCaAieW9lCkwbX6L+X0I4CiUG3w/hFw==}
|
||||||
engines: {node: ^18.12 || >=20.9}
|
engines: {node: ^18.12 || >=20.9}
|
||||||
@ -4288,6 +4371,11 @@ packages:
|
|||||||
'@surma/rollup-plugin-off-main-thread@2.2.3':
|
'@surma/rollup-plugin-off-main-thread@2.2.3':
|
||||||
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
|
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
|
||||||
|
|
||||||
|
'@sveltejs/acorn-typescript@1.0.9':
|
||||||
|
resolution: {integrity: sha512-lVJX6qEgs/4DOcRTpo56tmKzVPtoWAaVbL4hfO7t7NVwl9AAXzQR6cihesW1BmNMPl+bK6dreu2sOKBP2Q9CIA==}
|
||||||
|
peerDependencies:
|
||||||
|
acorn: ^8.9.0
|
||||||
|
|
||||||
'@swc/helpers@0.5.15':
|
'@swc/helpers@0.5.15':
|
||||||
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
||||||
|
|
||||||
@ -5028,6 +5116,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
|
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
|
|
||||||
|
aria-query@5.3.1:
|
||||||
|
resolution: {integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==}
|
||||||
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
array-buffer-byte-length@1.0.2:
|
array-buffer-byte-length@1.0.2:
|
||||||
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
|
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@ -5111,6 +5203,10 @@ packages:
|
|||||||
axios@1.7.9:
|
axios@1.7.9:
|
||||||
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
|
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
|
||||||
|
|
||||||
|
axobject-query@4.1.0:
|
||||||
|
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
|
||||||
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
b4a@1.6.7:
|
b4a@1.6.7:
|
||||||
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
|
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
|
||||||
|
|
||||||
@ -5399,6 +5495,13 @@ packages:
|
|||||||
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
|
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
|
codemirror-wrapped-line-indent@1.0.9:
|
||||||
|
resolution: {integrity: sha512-oc976hHLt35u6Ojbhub+IWOxEpapZSqYieLEdGhsgFZ4rtYQtdb5KjxzgjCCyVe3t0yk+a6hmaIOEsjU/tZRxQ==}
|
||||||
|
peerDependencies:
|
||||||
|
'@codemirror/language': ^6.9.0
|
||||||
|
'@codemirror/state': ^6.2.1
|
||||||
|
'@codemirror/view': ^6.17.1
|
||||||
|
|
||||||
color-convert@2.0.1:
|
color-convert@2.0.1:
|
||||||
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
||||||
engines: {node: '>=7.0.0'}
|
engines: {node: '>=7.0.0'}
|
||||||
@ -5584,6 +5687,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
|
resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
|
||||||
engines: {node: '>= 14'}
|
engines: {node: '>= 14'}
|
||||||
|
|
||||||
|
crelt@1.0.6:
|
||||||
|
resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
|
||||||
|
|
||||||
croner@9.0.0:
|
croner@9.0.0:
|
||||||
resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
|
resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
|
||||||
engines: {node: '>=18.0'}
|
engines: {node: '>=18.0'}
|
||||||
@ -6047,12 +6153,19 @@ packages:
|
|||||||
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
|
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
|
devalue@5.6.4:
|
||||||
|
resolution: {integrity: sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==}
|
||||||
|
|
||||||
devlop@1.1.0:
|
devlop@1.1.0:
|
||||||
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
|
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
|
||||||
|
|
||||||
didyoumean@1.2.2:
|
didyoumean@1.2.2:
|
||||||
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
||||||
|
|
||||||
|
diff-sequences@29.6.3:
|
||||||
|
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
|
||||||
|
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||||
|
|
||||||
dijkstrajs@1.0.3:
|
dijkstrajs@1.0.3:
|
||||||
resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
|
resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
|
||||||
|
|
||||||
@ -6484,6 +6597,9 @@ packages:
|
|||||||
jiti:
|
jiti:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
esm-env@1.2.2:
|
||||||
|
resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
|
||||||
|
|
||||||
espree@10.3.0:
|
espree@10.3.0:
|
||||||
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
@ -6501,6 +6617,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
||||||
engines: {node: '>=0.10'}
|
engines: {node: '>=0.10'}
|
||||||
|
|
||||||
|
esrap@2.2.4:
|
||||||
|
resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==}
|
||||||
|
|
||||||
esrecurse@4.3.0:
|
esrecurse@4.3.0:
|
||||||
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
||||||
engines: {node: '>=4.0'}
|
engines: {node: '>=4.0'}
|
||||||
@ -7093,6 +7212,9 @@ packages:
|
|||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
immutable-json-patch@6.0.2:
|
||||||
|
resolution: {integrity: sha512-KwCA5DXJiyldda8SPha1zB+6+vbEi5/jRRcYii/6yFXlyu9ZjiSH/wPq8Ri2Hk8iGjjTMcHW3Z21S4MOpl7sOw==}
|
||||||
|
|
||||||
immutable@4.3.7:
|
immutable@4.3.7:
|
||||||
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
|
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
|
||||||
|
|
||||||
@ -7333,6 +7455,9 @@ packages:
|
|||||||
is-reference@1.2.1:
|
is-reference@1.2.1:
|
||||||
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
|
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
|
||||||
|
|
||||||
|
is-reference@3.0.3:
|
||||||
|
resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
|
||||||
|
|
||||||
is-regex@1.2.1:
|
is-regex@1.2.1:
|
||||||
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
|
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@ -7462,6 +7587,10 @@ packages:
|
|||||||
jju@1.4.0:
|
jju@1.4.0:
|
||||||
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
|
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
|
||||||
|
|
||||||
|
jmespath@0.16.0:
|
||||||
|
resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
|
||||||
|
engines: {node: '>= 0.6.0'}
|
||||||
|
|
||||||
js-beautify@1.15.1:
|
js-beautify@1.15.1:
|
||||||
resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==}
|
resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@ -7499,6 +7628,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
|
resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
|
||||||
engines: {node: '>=12.0.0'}
|
engines: {node: '>=12.0.0'}
|
||||||
|
|
||||||
|
jsep@1.4.0:
|
||||||
|
resolution: {integrity: sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==}
|
||||||
|
engines: {node: '>= 10.16.0'}
|
||||||
|
|
||||||
jsesc@0.5.0:
|
jsesc@0.5.0:
|
||||||
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
|
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@ -7516,6 +7649,15 @@ packages:
|
|||||||
json-buffer@3.0.1:
|
json-buffer@3.0.1:
|
||||||
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
||||||
|
|
||||||
|
json-editor-vue@0.18.1:
|
||||||
|
resolution: {integrity: sha512-SQCtNngo/ScFjXC7KUOqLOeeLgvl+xwWbxfNelqIOHC6uLilQl7AlWzNJyrDqo+RWnc53nT0OngXki5uTx9SJg==}
|
||||||
|
peerDependencies:
|
||||||
|
'@vue/composition-api': '>=1'
|
||||||
|
vue: ^3.5.13
|
||||||
|
peerDependenciesMeta:
|
||||||
|
'@vue/composition-api':
|
||||||
|
optional: true
|
||||||
|
|
||||||
json-parse-even-better-errors@2.3.1:
|
json-parse-even-better-errors@2.3.1:
|
||||||
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
||||||
|
|
||||||
@ -7528,6 +7670,9 @@ packages:
|
|||||||
json-schema@0.4.0:
|
json-schema@0.4.0:
|
||||||
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
|
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
|
||||||
|
|
||||||
|
json-source-map@0.6.1:
|
||||||
|
resolution: {integrity: sha512-1QoztHPsMQqhDq0hlXY5ZqcEdUzxQEIxgFkKl4WUp2pgShObl+9ovi4kRh2TfvAfxAoHOJ9vIMEqk3k4iex7tg==}
|
||||||
|
|
||||||
json-stable-stringify-without-jsonify@1.0.1:
|
json-stable-stringify-without-jsonify@1.0.1:
|
||||||
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
||||||
|
|
||||||
@ -7550,10 +7695,19 @@ packages:
|
|||||||
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
|
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
|
||||||
engines: {'0': node >= 0.2.0}
|
engines: {'0': node >= 0.2.0}
|
||||||
|
|
||||||
|
jsonpath-plus@10.4.0:
|
||||||
|
resolution: {integrity: sha512-T92WWatJXmhBbKsgH/0hl+jxjdXrifi5IKeMY02DWggRxX0UElcbVzPlmgLTbvsPeW1PasQ6xE2Q75stkhGbsA==}
|
||||||
|
engines: {node: '>=18.0.0'}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
jsonpointer@5.0.1:
|
jsonpointer@5.0.1:
|
||||||
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
|
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
|
jsonrepair@3.13.3:
|
||||||
|
resolution: {integrity: sha512-BTznj0owIt2CBAH/LTo7+1I5pMvl1e1033LRl/HUowlZmJOIhzC0zbX5bxMngLkfT4WnzPP26QnW5wMr2g9tsQ==}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
keyv@4.5.4:
|
keyv@4.5.4:
|
||||||
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
||||||
|
|
||||||
@ -7623,6 +7777,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
|
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
|
|
||||||
|
locate-character@3.0.0:
|
||||||
|
resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
|
||||||
|
|
||||||
locate-path@5.0.0:
|
locate-path@5.0.0:
|
||||||
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -7655,12 +7812,14 @@ packages:
|
|||||||
|
|
||||||
lodash.get@4.4.2:
|
lodash.get@4.4.2:
|
||||||
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
|
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
|
||||||
|
deprecated: This package is deprecated. Use the optional chaining (?.) operator instead.
|
||||||
|
|
||||||
lodash.isarguments@3.1.0:
|
lodash.isarguments@3.1.0:
|
||||||
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
|
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
|
||||||
|
|
||||||
lodash.isequal@4.5.0:
|
lodash.isequal@4.5.0:
|
||||||
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
|
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
|
||||||
|
deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
|
||||||
|
|
||||||
lodash.isplainobject@4.0.6:
|
lodash.isplainobject@4.0.6:
|
||||||
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
|
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
|
||||||
@ -7802,6 +7961,9 @@ packages:
|
|||||||
medium-zoom@1.1.0:
|
medium-zoom@1.1.0:
|
||||||
resolution: {integrity: sha512-ewyDsp7k4InCUp3jRmwHBRFGyjBimKps/AJLjRSox+2q/2H4p/PNpQf+pwONWlJiOudkBXtbdmVbFjqyybfTmQ==}
|
resolution: {integrity: sha512-ewyDsp7k4InCUp3jRmwHBRFGyjBimKps/AJLjRSox+2q/2H4p/PNpQf+pwONWlJiOudkBXtbdmVbFjqyybfTmQ==}
|
||||||
|
|
||||||
|
memoize-one@6.0.0:
|
||||||
|
resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
|
||||||
|
|
||||||
meow@12.1.1:
|
meow@12.1.1:
|
||||||
resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
|
resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
|
||||||
engines: {node: '>=16.10'}
|
engines: {node: '>=16.10'}
|
||||||
@ -9712,6 +9874,9 @@ packages:
|
|||||||
stubborn-fs@1.2.5:
|
stubborn-fs@1.2.5:
|
||||||
resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==}
|
resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==}
|
||||||
|
|
||||||
|
style-mod@4.1.3:
|
||||||
|
resolution: {integrity: sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==}
|
||||||
|
|
||||||
style-search@0.1.0:
|
style-search@0.1.0:
|
||||||
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
|
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
|
||||||
|
|
||||||
@ -9821,6 +9986,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
|
svelte@5.55.0:
|
||||||
|
resolution: {integrity: sha512-SThllKq6TRMBwPtat7ASnm/9CDXnIhBR0NPGw0ujn2DVYx9rVwsPZxDaDQcYGdUz/3BYVsCzdq7pZarRQoGvtw==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
sver@1.8.4:
|
sver@1.8.4:
|
||||||
resolution: {integrity: sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA==}
|
resolution: {integrity: sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA==}
|
||||||
|
|
||||||
@ -10263,6 +10432,12 @@ packages:
|
|||||||
validate-npm-package-license@3.0.4:
|
validate-npm-package-license@3.0.4:
|
||||||
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
|
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
|
||||||
|
|
||||||
|
vanilla-jsoneditor@3.11.0:
|
||||||
|
resolution: {integrity: sha512-/Zw09Yv8Q2i1yC2q5cDsNtFpyFOQu1Aci4u8dsHwyzhueWnibCMteZz6n1aE9+RGgU92Ni5K4cXTMDUowJPE0A==}
|
||||||
|
|
||||||
|
vanilla-picker@2.12.3:
|
||||||
|
resolution: {integrity: sha512-qVkT1E7yMbUsB2mmJNFmaXMWE2hF8ffqzMMwe9zdAikd8u2VfnsVY2HQcOUi2F38bgbxzlJBEdS1UUhOXdF9GQ==}
|
||||||
|
|
||||||
vee-validate@4.14.7:
|
vee-validate@4.14.7:
|
||||||
resolution: {integrity: sha512-XVb1gBFJR57equ11HEI8uxNqFJkwvCP/b+p+saDPQYaW7k45cdF5jsYPEJud1o29GD6h2y7Awm7Qfm89yKi74A==}
|
resolution: {integrity: sha512-XVb1gBFJR57equ11HEI8uxNqFJkwvCP/b+p+saDPQYaW7k45cdF5jsYPEJud1o29GD6h2y7Awm7Qfm89yKi74A==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -10520,6 +10695,9 @@ packages:
|
|||||||
vxe-table@4.17.11:
|
vxe-table@4.17.11:
|
||||||
resolution: {integrity: sha512-M4+7yV5EPcm0zzC9/Hamo/1qdShFyKDXz5JQgceQGDFIorSpwE6UbA2SK6muk/qMUQwvc9cSOVPKMPNGE2VftA==}
|
resolution: {integrity: sha512-M4+7yV5EPcm0zzC9/Hamo/1qdShFyKDXz5JQgceQGDFIorSpwE6UbA2SK6muk/qMUQwvc9cSOVPKMPNGE2VftA==}
|
||||||
|
|
||||||
|
w3c-keyname@2.2.8:
|
||||||
|
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
|
||||||
|
|
||||||
warning@4.0.3:
|
warning@4.0.3:
|
||||||
resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
|
resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
|
||||||
|
|
||||||
@ -10761,6 +10939,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
|
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
|
zimmerframe@1.1.4:
|
||||||
|
resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
|
||||||
|
|
||||||
zip-stream@6.0.1:
|
zip-stream@6.0.1:
|
||||||
resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
|
resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
|
||||||
engines: {node: '>= 14'}
|
engines: {node: '>= 14'}
|
||||||
@ -11899,6 +12080,57 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
mime: 3.0.0
|
mime: 3.0.0
|
||||||
|
|
||||||
|
'@codemirror/autocomplete@6.20.1':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/language': 6.12.3
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
'@lezer/common': 1.5.1
|
||||||
|
|
||||||
|
'@codemirror/commands@6.10.3':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/language': 6.12.3
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
'@lezer/common': 1.5.1
|
||||||
|
|
||||||
|
'@codemirror/lang-json@6.0.2':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/language': 6.12.3
|
||||||
|
'@lezer/json': 1.0.3
|
||||||
|
|
||||||
|
'@codemirror/language@6.12.3':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
'@lezer/common': 1.5.1
|
||||||
|
'@lezer/highlight': 1.2.3
|
||||||
|
'@lezer/lr': 1.4.8
|
||||||
|
style-mod: 4.1.3
|
||||||
|
|
||||||
|
'@codemirror/lint@6.9.5':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
crelt: 1.0.6
|
||||||
|
|
||||||
|
'@codemirror/search@6.6.0':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
crelt: 1.0.6
|
||||||
|
|
||||||
|
'@codemirror/state@6.6.0':
|
||||||
|
dependencies:
|
||||||
|
'@marijn/find-cluster-break': 1.0.2
|
||||||
|
|
||||||
|
'@codemirror/view@6.40.0':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
crelt: 1.0.6
|
||||||
|
style-mod: 4.1.3
|
||||||
|
w3c-keyname: 2.2.8
|
||||||
|
|
||||||
'@commitlint/cli@19.6.0(@types/node@22.10.1)(typescript@5.7.2)':
|
'@commitlint/cli@19.6.0(@types/node@22.10.1)(typescript@5.7.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@commitlint/format': 19.5.0
|
'@commitlint/format': 19.5.0
|
||||||
@ -12739,6 +12971,16 @@ snapshots:
|
|||||||
- '@vue/composition-api'
|
- '@vue/composition-api'
|
||||||
- vue
|
- vue
|
||||||
|
|
||||||
|
'@fortawesome/fontawesome-common-types@7.2.0': {}
|
||||||
|
|
||||||
|
'@fortawesome/free-regular-svg-icons@7.2.0':
|
||||||
|
dependencies:
|
||||||
|
'@fortawesome/fontawesome-common-types': 7.2.0
|
||||||
|
|
||||||
|
'@fortawesome/free-solid-svg-icons@7.2.0':
|
||||||
|
dependencies:
|
||||||
|
'@fortawesome/fontawesome-common-types': 7.2.0
|
||||||
|
|
||||||
'@gar/promisify@1.1.3': {}
|
'@gar/promisify@1.1.3': {}
|
||||||
|
|
||||||
'@humanfs/core@0.19.1': {}
|
'@humanfs/core@0.19.1': {}
|
||||||
@ -12847,7 +13089,7 @@ snapshots:
|
|||||||
|
|
||||||
'@intlify/shared@10.0.5': {}
|
'@intlify/shared@10.0.5': {}
|
||||||
|
|
||||||
'@intlify/shared@11.1.12': {}
|
'@intlify/shared@11.3.0': {}
|
||||||
|
|
||||||
'@intlify/shared@12.0.0-alpha.3': {}
|
'@intlify/shared@12.0.0-alpha.3': {}
|
||||||
|
|
||||||
@ -12855,8 +13097,8 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.0))
|
'@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.0))
|
||||||
'@intlify/bundle-utils': 10.0.0(vue-i18n@10.0.5(vue@3.5.13(typescript@5.7.2)))
|
'@intlify/bundle-utils': 10.0.0(vue-i18n@10.0.5(vue@3.5.13(typescript@5.7.2)))
|
||||||
'@intlify/shared': 11.1.12
|
'@intlify/shared': 11.3.0
|
||||||
'@intlify/vue-i18n-extensions': 7.0.0(@intlify/shared@11.1.12)(@vue/compiler-dom@3.5.13)(vue-i18n@10.0.5(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
|
'@intlify/vue-i18n-extensions': 7.0.0(@intlify/shared@11.3.0)(@vue/compiler-dom@3.5.13)(vue-i18n@10.0.5(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
|
||||||
'@rollup/pluginutils': 5.1.3(rollup@4.28.0)
|
'@rollup/pluginutils': 5.1.3(rollup@4.28.0)
|
||||||
'@typescript-eslint/scope-manager': 8.17.0
|
'@typescript-eslint/scope-manager': 8.17.0
|
||||||
'@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
|
'@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
|
||||||
@ -12878,11 +13120,11 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
- typescript
|
- typescript
|
||||||
|
|
||||||
'@intlify/vue-i18n-extensions@7.0.0(@intlify/shared@11.1.12)(@vue/compiler-dom@3.5.13)(vue-i18n@10.0.5(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))':
|
'@intlify/vue-i18n-extensions@7.0.0(@intlify/shared@11.3.0)(@vue/compiler-dom@3.5.13)(vue-i18n@10.0.5(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/parser': 7.26.2
|
'@babel/parser': 7.26.2
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@intlify/shared': 11.1.12
|
'@intlify/shared': 11.3.0
|
||||||
'@vue/compiler-dom': 3.5.13
|
'@vue/compiler-dom': 3.5.13
|
||||||
vue: 3.5.13(typescript@5.7.2)
|
vue: 3.5.13(typescript@5.7.2)
|
||||||
vue-i18n: 10.0.5(vue@3.5.13(typescript@5.7.2))
|
vue-i18n: 10.0.5(vue@3.5.13(typescript@5.7.2))
|
||||||
@ -12914,6 +13156,11 @@ snapshots:
|
|||||||
'@jridgewell/sourcemap-codec': 1.5.0
|
'@jridgewell/sourcemap-codec': 1.5.0
|
||||||
'@jridgewell/trace-mapping': 0.3.25
|
'@jridgewell/trace-mapping': 0.3.25
|
||||||
|
|
||||||
|
'@jridgewell/remapping@2.3.5':
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/gen-mapping': 0.3.8
|
||||||
|
'@jridgewell/trace-mapping': 0.3.25
|
||||||
|
|
||||||
'@jridgewell/resolve-uri@3.1.2': {}
|
'@jridgewell/resolve-uri@3.1.2': {}
|
||||||
|
|
||||||
'@jridgewell/set-array@1.2.1': {}
|
'@jridgewell/set-array@1.2.1': {}
|
||||||
@ -12930,6 +13177,16 @@ snapshots:
|
|||||||
'@jridgewell/resolve-uri': 3.1.2
|
'@jridgewell/resolve-uri': 3.1.2
|
||||||
'@jridgewell/sourcemap-codec': 1.5.0
|
'@jridgewell/sourcemap-codec': 1.5.0
|
||||||
|
|
||||||
|
'@jsep-plugin/assignment@1.3.0(jsep@1.4.0)':
|
||||||
|
dependencies:
|
||||||
|
jsep: 1.4.0
|
||||||
|
|
||||||
|
'@jsep-plugin/regex@1.0.4(jsep@1.4.0)':
|
||||||
|
dependencies:
|
||||||
|
jsep: 1.4.0
|
||||||
|
|
||||||
|
'@jsonquerylang/jsonquery@5.1.1': {}
|
||||||
|
|
||||||
'@jspm/generator@2.4.1':
|
'@jspm/generator@2.4.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.26.0
|
'@babel/core': 7.26.0
|
||||||
@ -12945,6 +13202,22 @@ snapshots:
|
|||||||
|
|
||||||
'@jspm/import-map@1.1.0': {}
|
'@jspm/import-map@1.1.0': {}
|
||||||
|
|
||||||
|
'@lezer/common@1.5.1': {}
|
||||||
|
|
||||||
|
'@lezer/highlight@1.2.3':
|
||||||
|
dependencies:
|
||||||
|
'@lezer/common': 1.5.1
|
||||||
|
|
||||||
|
'@lezer/json@1.0.3':
|
||||||
|
dependencies:
|
||||||
|
'@lezer/common': 1.5.1
|
||||||
|
'@lezer/highlight': 1.2.3
|
||||||
|
'@lezer/lr': 1.4.8
|
||||||
|
|
||||||
|
'@lezer/lr@1.4.8':
|
||||||
|
dependencies:
|
||||||
|
'@lezer/common': 1.5.1
|
||||||
|
|
||||||
'@manypkg/find-root@1.1.0':
|
'@manypkg/find-root@1.1.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.27.6
|
'@babel/runtime': 7.27.6
|
||||||
@ -12991,6 +13264,8 @@ snapshots:
|
|||||||
- encoding
|
- encoding
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
'@marijn/find-cluster-break@1.0.2': {}
|
||||||
|
|
||||||
'@microsoft/api-extractor-model@7.29.6(@types/node@22.10.1)':
|
'@microsoft/api-extractor-model@7.29.6(@types/node@22.10.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@microsoft/tsdoc': 0.15.1
|
'@microsoft/tsdoc': 0.15.1
|
||||||
@ -13447,6 +13722,12 @@ snapshots:
|
|||||||
- encoding
|
- encoding
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
'@replit/codemirror-indentation-markers@6.5.3(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.40.0)':
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/language': 6.12.3
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
|
||||||
'@rollup/plugin-alias@5.1.1(rollup@4.28.0)':
|
'@rollup/plugin-alias@5.1.1(rollup@4.28.0)':
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
rollup: 4.28.0
|
rollup: 4.28.0
|
||||||
@ -13713,6 +13994,8 @@ snapshots:
|
|||||||
|
|
||||||
'@sindresorhus/merge-streams@4.0.0': {}
|
'@sindresorhus/merge-streams@4.0.0': {}
|
||||||
|
|
||||||
|
'@sphinxxxx/color-conversion@2.2.2': {}
|
||||||
|
|
||||||
'@stylistic/stylelint-plugin@3.1.1(stylelint@16.11.0(typescript@5.7.2))':
|
'@stylistic/stylelint-plugin@3.1.1(stylelint@16.11.0(typescript@5.7.2))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
|
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
|
||||||
@ -13731,6 +14014,10 @@ snapshots:
|
|||||||
magic-string: 0.25.9
|
magic-string: 0.25.9
|
||||||
string.prototype.matchall: 4.0.12
|
string.prototype.matchall: 4.0.12
|
||||||
|
|
||||||
|
'@sveltejs/acorn-typescript@1.0.9(acorn@8.14.0)':
|
||||||
|
dependencies:
|
||||||
|
acorn: 8.14.0
|
||||||
|
|
||||||
'@swc/helpers@0.5.15':
|
'@swc/helpers@0.5.15':
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
@ -14631,6 +14918,8 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
|
|
||||||
|
aria-query@5.3.1: {}
|
||||||
|
|
||||||
array-buffer-byte-length@1.0.2:
|
array-buffer-byte-length@1.0.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
call-bound: 1.0.4
|
call-bound: 1.0.4
|
||||||
@ -14710,6 +14999,8 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- debug
|
- debug
|
||||||
|
|
||||||
|
axobject-query@4.1.0: {}
|
||||||
|
|
||||||
b4a@1.6.7: {}
|
b4a@1.6.7: {}
|
||||||
|
|
||||||
babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.0):
|
babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.0):
|
||||||
@ -15075,6 +15366,12 @@ snapshots:
|
|||||||
|
|
||||||
cluster-key-slot@1.1.2: {}
|
cluster-key-slot@1.1.2: {}
|
||||||
|
|
||||||
|
codemirror-wrapped-line-indent@1.0.9(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.40.0):
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/language': 6.12.3
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
|
||||||
color-convert@2.0.1:
|
color-convert@2.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
color-name: 1.1.4
|
color-name: 1.1.4
|
||||||
@ -15240,6 +15537,8 @@ snapshots:
|
|||||||
crc-32: 1.2.2
|
crc-32: 1.2.2
|
||||||
readable-stream: 4.5.2
|
readable-stream: 4.5.2
|
||||||
|
|
||||||
|
crelt@1.0.6: {}
|
||||||
|
|
||||||
croner@9.0.0: {}
|
croner@9.0.0: {}
|
||||||
|
|
||||||
cross-env@7.0.3:
|
cross-env@7.0.3:
|
||||||
@ -15755,12 +16054,16 @@ snapshots:
|
|||||||
|
|
||||||
detect-libc@2.0.3: {}
|
detect-libc@2.0.3: {}
|
||||||
|
|
||||||
|
devalue@5.6.4: {}
|
||||||
|
|
||||||
devlop@1.1.0:
|
devlop@1.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
dequal: 2.0.3
|
dequal: 2.0.3
|
||||||
|
|
||||||
didyoumean@1.2.2: {}
|
didyoumean@1.2.2: {}
|
||||||
|
|
||||||
|
diff-sequences@29.6.3: {}
|
||||||
|
|
||||||
dijkstrajs@1.0.3: {}
|
dijkstrajs@1.0.3: {}
|
||||||
|
|
||||||
dir-glob@3.0.1:
|
dir-glob@3.0.1:
|
||||||
@ -16190,7 +16493,7 @@ snapshots:
|
|||||||
|
|
||||||
eslint-plugin-no-only-tests@3.3.0: {}
|
eslint-plugin-no-only-tests@3.3.0: {}
|
||||||
|
|
||||||
eslint-plugin-perfectionist@3.9.1(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.4.0))):
|
eslint-plugin-perfectionist@3.9.1(eslint@9.16.0(jiti@2.4.0))(svelte@5.55.0)(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.4.0))):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.17.0
|
'@typescript-eslint/types': 8.17.0
|
||||||
'@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)
|
'@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)
|
||||||
@ -16198,6 +16501,7 @@ snapshots:
|
|||||||
minimatch: 9.0.5
|
minimatch: 9.0.5
|
||||||
natural-compare-lite: 1.4.0
|
natural-compare-lite: 1.4.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
|
svelte: 5.55.0
|
||||||
vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.4.0))
|
vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.4.0))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@ -16377,6 +16681,8 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
esm-env@1.2.2: {}
|
||||||
|
|
||||||
espree@10.3.0:
|
espree@10.3.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.14.0
|
acorn: 8.14.0
|
||||||
@ -16395,6 +16701,11 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
|
|
||||||
|
esrap@2.2.4:
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/sourcemap-codec': 1.5.0
|
||||||
|
'@typescript-eslint/types': 8.17.0
|
||||||
|
|
||||||
esrecurse@4.3.0:
|
esrecurse@4.3.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
@ -17058,6 +17369,8 @@ snapshots:
|
|||||||
image-size@0.5.5:
|
image-size@0.5.5:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
immutable-json-patch@6.0.2: {}
|
||||||
|
|
||||||
immutable@4.3.7: {}
|
immutable@4.3.7: {}
|
||||||
|
|
||||||
import-fresh@3.3.0:
|
import-fresh@3.3.0:
|
||||||
@ -17263,6 +17576,10 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/estree': 1.0.8
|
'@types/estree': 1.0.8
|
||||||
|
|
||||||
|
is-reference@3.0.3:
|
||||||
|
dependencies:
|
||||||
|
'@types/estree': 1.0.8
|
||||||
|
|
||||||
is-regex@1.2.1:
|
is-regex@1.2.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
call-bound: 1.0.4
|
call-bound: 1.0.4
|
||||||
@ -17373,6 +17690,8 @@ snapshots:
|
|||||||
|
|
||||||
jju@1.4.0: {}
|
jju@1.4.0: {}
|
||||||
|
|
||||||
|
jmespath@0.16.0: {}
|
||||||
|
|
||||||
js-beautify@1.15.1:
|
js-beautify@1.15.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
config-chain: 1.1.13
|
config-chain: 1.1.13
|
||||||
@ -17404,6 +17723,8 @@ snapshots:
|
|||||||
|
|
||||||
jsdoc-type-pratt-parser@4.1.0: {}
|
jsdoc-type-pratt-parser@4.1.0: {}
|
||||||
|
|
||||||
|
jsep@1.4.0: {}
|
||||||
|
|
||||||
jsesc@0.5.0: {}
|
jsesc@0.5.0: {}
|
||||||
|
|
||||||
jsesc@3.0.2: {}
|
jsesc@3.0.2: {}
|
||||||
@ -17412,6 +17733,12 @@ snapshots:
|
|||||||
|
|
||||||
json-buffer@3.0.1: {}
|
json-buffer@3.0.1: {}
|
||||||
|
|
||||||
|
json-editor-vue@0.18.1(vue@3.5.13(typescript@5.7.2)):
|
||||||
|
dependencies:
|
||||||
|
vanilla-jsoneditor: 3.11.0
|
||||||
|
vue: 3.5.13(typescript@5.7.2)
|
||||||
|
vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
|
||||||
|
|
||||||
json-parse-even-better-errors@2.3.1: {}
|
json-parse-even-better-errors@2.3.1: {}
|
||||||
|
|
||||||
json-schema-traverse@0.4.1: {}
|
json-schema-traverse@0.4.1: {}
|
||||||
@ -17420,6 +17747,8 @@ snapshots:
|
|||||||
|
|
||||||
json-schema@0.4.0: {}
|
json-schema@0.4.0: {}
|
||||||
|
|
||||||
|
json-source-map@0.6.1: {}
|
||||||
|
|
||||||
json-stable-stringify-without-jsonify@1.0.1: {}
|
json-stable-stringify-without-jsonify@1.0.1: {}
|
||||||
|
|
||||||
json5@2.2.3: {}
|
json5@2.2.3: {}
|
||||||
@ -17443,8 +17772,16 @@ snapshots:
|
|||||||
|
|
||||||
jsonparse@1.3.1: {}
|
jsonparse@1.3.1: {}
|
||||||
|
|
||||||
|
jsonpath-plus@10.4.0:
|
||||||
|
dependencies:
|
||||||
|
'@jsep-plugin/assignment': 1.3.0(jsep@1.4.0)
|
||||||
|
'@jsep-plugin/regex': 1.0.4(jsep@1.4.0)
|
||||||
|
jsep: 1.4.0
|
||||||
|
|
||||||
jsonpointer@5.0.1: {}
|
jsonpointer@5.0.1: {}
|
||||||
|
|
||||||
|
jsonrepair@3.13.3: {}
|
||||||
|
|
||||||
keyv@4.5.4:
|
keyv@4.5.4:
|
||||||
dependencies:
|
dependencies:
|
||||||
json-buffer: 3.0.1
|
json-buffer: 3.0.1
|
||||||
@ -17544,6 +17881,8 @@ snapshots:
|
|||||||
mlly: 1.7.3
|
mlly: 1.7.3
|
||||||
pkg-types: 1.2.1
|
pkg-types: 1.2.1
|
||||||
|
|
||||||
|
locate-character@3.0.0: {}
|
||||||
|
|
||||||
locate-path@5.0.0:
|
locate-path@5.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
p-locate: 4.1.0
|
p-locate: 4.1.0
|
||||||
@ -17726,6 +18065,8 @@ snapshots:
|
|||||||
|
|
||||||
medium-zoom@1.1.0: {}
|
medium-zoom@1.1.0: {}
|
||||||
|
|
||||||
|
memoize-one@6.0.0: {}
|
||||||
|
|
||||||
meow@12.1.1: {}
|
meow@12.1.1: {}
|
||||||
|
|
||||||
meow@13.2.0: {}
|
meow@13.2.0: {}
|
||||||
@ -19767,6 +20108,8 @@ snapshots:
|
|||||||
|
|
||||||
stubborn-fs@1.2.5: {}
|
stubborn-fs@1.2.5: {}
|
||||||
|
|
||||||
|
style-mod@4.1.3: {}
|
||||||
|
|
||||||
style-search@0.1.0: {}
|
style-search@0.1.0: {}
|
||||||
|
|
||||||
stylehacks@7.0.4(postcss@8.4.49):
|
stylehacks@7.0.4(postcss@8.4.49):
|
||||||
@ -19914,6 +20257,25 @@ snapshots:
|
|||||||
|
|
||||||
supports-preserve-symlinks-flag@1.0.0: {}
|
supports-preserve-symlinks-flag@1.0.0: {}
|
||||||
|
|
||||||
|
svelte@5.55.0:
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/remapping': 2.3.5
|
||||||
|
'@jridgewell/sourcemap-codec': 1.5.0
|
||||||
|
'@sveltejs/acorn-typescript': 1.0.9(acorn@8.14.0)
|
||||||
|
'@types/estree': 1.0.8
|
||||||
|
'@types/trusted-types': 2.0.7
|
||||||
|
acorn: 8.14.0
|
||||||
|
aria-query: 5.3.1
|
||||||
|
axobject-query: 4.1.0
|
||||||
|
clsx: 2.1.1
|
||||||
|
devalue: 5.6.4
|
||||||
|
esm-env: 1.2.2
|
||||||
|
esrap: 2.2.4
|
||||||
|
is-reference: 3.0.3
|
||||||
|
locate-character: 3.0.0
|
||||||
|
magic-string: 0.30.14
|
||||||
|
zimmerframe: 1.1.4
|
||||||
|
|
||||||
sver@1.8.4:
|
sver@1.8.4:
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
semver: 6.3.1
|
semver: 6.3.1
|
||||||
@ -20395,6 +20757,39 @@ snapshots:
|
|||||||
spdx-correct: 3.2.0
|
spdx-correct: 3.2.0
|
||||||
spdx-expression-parse: 3.0.1
|
spdx-expression-parse: 3.0.1
|
||||||
|
|
||||||
|
vanilla-jsoneditor@3.11.0:
|
||||||
|
dependencies:
|
||||||
|
'@codemirror/autocomplete': 6.20.1
|
||||||
|
'@codemirror/commands': 6.10.3
|
||||||
|
'@codemirror/lang-json': 6.0.2
|
||||||
|
'@codemirror/language': 6.12.3
|
||||||
|
'@codemirror/lint': 6.9.5
|
||||||
|
'@codemirror/search': 6.6.0
|
||||||
|
'@codemirror/state': 6.6.0
|
||||||
|
'@codemirror/view': 6.40.0
|
||||||
|
'@fortawesome/free-regular-svg-icons': 7.2.0
|
||||||
|
'@fortawesome/free-solid-svg-icons': 7.2.0
|
||||||
|
'@jsonquerylang/jsonquery': 5.1.1
|
||||||
|
'@lezer/highlight': 1.2.3
|
||||||
|
'@replit/codemirror-indentation-markers': 6.5.3(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.40.0)
|
||||||
|
ajv: 8.17.1
|
||||||
|
codemirror-wrapped-line-indent: 1.0.9(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.40.0)
|
||||||
|
diff-sequences: 29.6.3
|
||||||
|
immutable-json-patch: 6.0.2
|
||||||
|
jmespath: 0.16.0
|
||||||
|
json-source-map: 0.6.1
|
||||||
|
jsonpath-plus: 10.4.0
|
||||||
|
jsonrepair: 3.13.3
|
||||||
|
lodash-es: 4.17.21
|
||||||
|
memoize-one: 6.0.0
|
||||||
|
natural-compare-lite: 1.4.0
|
||||||
|
svelte: 5.55.0
|
||||||
|
vanilla-picker: 2.12.3
|
||||||
|
|
||||||
|
vanilla-picker@2.12.3:
|
||||||
|
dependencies:
|
||||||
|
'@sphinxxxx/color-conversion': 2.2.2
|
||||||
|
|
||||||
vee-validate@4.14.7(vue@3.5.13(typescript@5.7.2)):
|
vee-validate@4.14.7(vue@3.5.13(typescript@5.7.2)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue/devtools-api': 7.6.4
|
'@vue/devtools-api': 7.6.4
|
||||||
@ -20783,6 +21178,8 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- vue
|
- vue
|
||||||
|
|
||||||
|
w3c-keyname@2.2.8: {}
|
||||||
|
|
||||||
warning@4.0.3:
|
warning@4.0.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
loose-envify: 1.4.0
|
loose-envify: 1.4.0
|
||||||
@ -21107,6 +21504,8 @@ snapshots:
|
|||||||
|
|
||||||
yoctocolors@2.1.1: {}
|
yoctocolors@2.1.1: {}
|
||||||
|
|
||||||
|
zimmerframe@1.1.4: {}
|
||||||
|
|
||||||
zip-stream@6.0.1:
|
zip-stream@6.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
archiver-utils: 5.0.2
|
archiver-utils: 5.0.2
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user