mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
Merge branch 'main' into issue-7081
This commit is contained in:
commit
fc2be69469
@ -11,7 +11,7 @@
|
|||||||
"color": "4.2.3",
|
"color": "4.2.3",
|
||||||
"ip": "2.0.1",
|
"ip": "2.0.1",
|
||||||
"node-polyfill-webpack-plugin": "^3.0.0",
|
"node-polyfill-webpack-plugin": "^3.0.0",
|
||||||
"sortablejs-vue3": "^1.2.11",
|
"vue-draggable-next": "^2.2.1",
|
||||||
"yaml": "^2.5.1"
|
"yaml": "^2.5.1"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
|
|||||||
@ -25,6 +25,9 @@ export default {
|
|||||||
|
|
||||||
return Array.from(new Set(options));
|
return Array.from(new Set(options));
|
||||||
},
|
},
|
||||||
|
enableFilterButton() {
|
||||||
|
return this.rows.some((r) => r.sourceSchedule !== undefined);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
@ -63,27 +66,30 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="vm-schedule-filter">
|
<div
|
||||||
<template>
|
class="vm-schedule-filter"
|
||||||
|
>
|
||||||
<span
|
<span
|
||||||
v-if="selected"
|
v-if="selected"
|
||||||
class="banner-item bg-warning"
|
class="banner-item bg-warning"
|
||||||
>
|
>
|
||||||
{{ t('harvester.tableHeaders.vmSchedule') }}{{ selected ? ` = ${selected}`: '' }}<i
|
{{ t('harvester.tableHeaders.vmSchedule') }}{{ selected ? ` = ${selected}`: '' }}
|
||||||
|
<i
|
||||||
class="icon icon-close ml-5"
|
class="icon icon-close ml-5"
|
||||||
@click="remove"
|
@click="remove"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
|
||||||
|
|
||||||
<v-dropdown
|
<v-dropdown
|
||||||
|
popper-class="vm-schedule-dropdown"
|
||||||
:triggers="scheduleOptions.length ? ['click'] : []"
|
:triggers="scheduleOptions.length ? ['click'] : []"
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
offset="1"
|
offset="1"
|
||||||
|
:distance="20"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
ref="actionDropDown"
|
ref="actionDropDown"
|
||||||
class="btn bg-primary mr-10"
|
class="btn bg-primary mr-10"
|
||||||
|
:disabled="!enableFilterButton"
|
||||||
>
|
>
|
||||||
<slot name="title">
|
<slot name="title">
|
||||||
{{ t('harvester.fields.filterSchedule') }}
|
{{ t('harvester.fields.filterSchedule') }}
|
||||||
@ -98,7 +104,7 @@ export default {
|
|||||||
name="model"
|
name="model"
|
||||||
:options="scheduleOptions"
|
:options="scheduleOptions"
|
||||||
:labels="scheduleOptions"
|
:labels="scheduleOptions"
|
||||||
@input="onSelect"
|
@update:value="onSelect"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -106,6 +112,12 @@ export default {
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.vm-schedule-dropdown .v-popper__arrow-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.vm-schedule-filter {
|
.vm-schedule-filter {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|||||||
@ -60,7 +60,8 @@ export default {
|
|||||||
});
|
});
|
||||||
|
|
||||||
this.queue = [];
|
this.queue = [];
|
||||||
}, 5)
|
}, 10),
|
||||||
|
deep: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@ -17,6 +17,12 @@ const featuresV132 = [
|
|||||||
'improveMaintenanceMode',
|
'improveMaintenanceMode',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
// TODO: add v1.3.3 official release note
|
||||||
|
// https://github.com/harvester/dashboard/releases/tag/v1.3.3-dev-20250105
|
||||||
|
const featuresV133 = [
|
||||||
|
...featuresV132,
|
||||||
|
];
|
||||||
|
|
||||||
// https://github.com/harvester/dashboard/releases/tag/v1.4.0
|
// https://github.com/harvester/dashboard/releases/tag/v1.4.0
|
||||||
const featuresV140 = [
|
const featuresV140 = [
|
||||||
...featuresV132,
|
...featuresV132,
|
||||||
@ -35,10 +41,17 @@ const featuresV141 = [
|
|||||||
...featuresV140
|
...featuresV140
|
||||||
];
|
];
|
||||||
|
|
||||||
|
// TODO: add v1.5.0 official release note
|
||||||
|
const featuresV150 = [
|
||||||
|
...featuresV141
|
||||||
|
];
|
||||||
|
|
||||||
export const RELEASE_FEATURES = {
|
export const RELEASE_FEATURES = {
|
||||||
'v1.3.0': featuresV130,
|
'v1.3.0': featuresV130,
|
||||||
'v1.3.1': featuresV131,
|
'v1.3.1': featuresV131,
|
||||||
'v1.3.2': featuresV132,
|
'v1.3.2': featuresV132,
|
||||||
|
'v1.3.3': featuresV133,
|
||||||
'v1.4.0': featuresV140,
|
'v1.4.0': featuresV140,
|
||||||
'v1.4.1': featuresV141,
|
'v1.4.1': featuresV141,
|
||||||
|
'v1.5.0': featuresV150
|
||||||
};
|
};
|
||||||
|
|||||||
@ -24,35 +24,24 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async fetch() {
|
async fetch() {
|
||||||
const hash = await allHash({
|
await allHash({
|
||||||
vms: this.$store.dispatch('harvester/findAll', { type: HCI.VM }),
|
vms: this.$store.dispatch('harvester/findAll', { type: HCI.VM }),
|
||||||
vmis: this.$store.dispatch('harvester/findAll', { type: HCI.VMI }),
|
vmis: this.$store.dispatch('harvester/findAll', { type: HCI.VMI }),
|
||||||
allClusterNetwork: this.$store.dispatch('harvester/findAll', { type: HCI.CLUSTER_NETWORK }),
|
allClusterNetwork: this.$store.dispatch('harvester/findAll', { type: HCI.CLUSTER_NETWORK }),
|
||||||
});
|
});
|
||||||
const instanceMap = {};
|
|
||||||
|
|
||||||
(hash.vmis || []).forEach((vmi) => {
|
|
||||||
const vmiUID = vmi?.metadata?.ownerReferences?.[0]?.uid;
|
|
||||||
|
|
||||||
if (vmiUID) {
|
|
||||||
instanceMap[vmiUID] = vmi;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
this.allClusterNetwork = hash.allClusterNetwork;
|
|
||||||
this.rows = hash.vms.filter((row) => {
|
|
||||||
return instanceMap[row.metadata?.uid]?.status?.nodeName === this.node?.metadata?.labels?.[HOSTNAME];
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
rows: [],
|
|
||||||
allClusterNetwork: []
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
|
allClusterNetwork() {
|
||||||
|
return this.$store.getters['harvester/all'](HCI.CLUSTER_NETWORK);
|
||||||
|
},
|
||||||
|
|
||||||
|
rows() {
|
||||||
|
const vms = this.$store.getters['harvester/all'](HCI.VM);
|
||||||
|
|
||||||
|
return vms.filter((vm) => vm.vmi?.status?.nodeName === this.node?.metadata?.labels?.[HOSTNAME]);
|
||||||
|
},
|
||||||
|
|
||||||
headers() {
|
headers() {
|
||||||
return [
|
return [
|
||||||
STATE,
|
STATE,
|
||||||
@ -87,8 +76,6 @@ export default {
|
|||||||
];
|
];
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@ -1,34 +1,31 @@
|
|||||||
<script>
|
<script>
|
||||||
|
import merge from 'lodash/merge';
|
||||||
|
import jsyaml from 'js-yaml';
|
||||||
import { LabeledInput } from '@components/Form/LabeledInput';
|
import { LabeledInput } from '@components/Form/LabeledInput';
|
||||||
import Tabbed from '@shell/components/Tabbed';
|
import Tabbed from '@shell/components/Tabbed';
|
||||||
import Tab from '@shell/components/Tabbed/Tab';
|
import Tab from '@shell/components/Tabbed/Tab';
|
||||||
import { RadioGroup } from '@components/Form/Radio';
|
import { RadioGroup } from '@components/Form/Radio';
|
||||||
import LabeledSelect from '@shell/components/form/LabeledSelect';
|
import LabeledSelect from '@shell/components/form/LabeledSelect';
|
||||||
|
|
||||||
import CreateEditView from '@shell/mixins/create-edit-view';
|
import CreateEditView from '@shell/mixins/create-edit-view';
|
||||||
|
|
||||||
import { STORAGE_CLASS } from '@shell/config/types';
|
import { STORAGE_CLASS } from '@shell/config/types';
|
||||||
import { allHash } from '@shell/utils/promise';
|
import { allHash } from '@shell/utils/promise';
|
||||||
import { set, get, clone } from '@shell/utils/object';
|
|
||||||
|
|
||||||
const VALUES_YAML_KEYS = [
|
|
||||||
'resources.requests.cpu',
|
|
||||||
'resources.requests.memory',
|
|
||||||
'resources.limits.cpu',
|
|
||||||
'resources.limits.memory',
|
|
||||||
'pvcClaim.enabled',
|
|
||||||
'pvcClaim.size',
|
|
||||||
'pvcClaim.storageClassName',
|
|
||||||
];
|
|
||||||
|
|
||||||
const DEFAULT_VALUES = {
|
const DEFAULT_VALUES = {
|
||||||
'resources.requests.cpu': '0.5',
|
resources: {
|
||||||
'resources.requests.memory': '2Gi',
|
requests: {
|
||||||
'resources.limits.cpu': '2',
|
cpu: '0.5',
|
||||||
'resources.limits.memory': '4Gi',
|
memory: '2Gi'
|
||||||
'pvcClaim.enabled': false,
|
},
|
||||||
'pvcClaim.size': '200Gi',
|
limits: {
|
||||||
'pvcClaim.storageClassName': '',
|
cpu: '2',
|
||||||
|
memory: '4Gi'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
pvcClaim: {
|
||||||
|
enabled: false,
|
||||||
|
size: '200Gi',
|
||||||
|
storageClassName: ''
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -64,19 +61,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
let valuesObj = {};
|
const valuesContent = this.parseValuesContent();
|
||||||
|
|
||||||
try {
|
|
||||||
valuesObj = JSON.parse(this.value?.spec?.valuesContent || '{}');
|
|
||||||
} catch (err) {}
|
|
||||||
|
|
||||||
const valuesContent = clone(valuesObj);
|
|
||||||
|
|
||||||
VALUES_YAML_KEYS.map((key) => {
|
|
||||||
if (!get(valuesObj, key)) {
|
|
||||||
set(valuesContent, key, DEFAULT_VALUES[key]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return { valuesContent };
|
return { valuesContent };
|
||||||
},
|
},
|
||||||
@ -100,8 +85,21 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
parseValuesContent() {
|
||||||
|
try {
|
||||||
|
return merge({}, DEFAULT_VALUES, jsyaml.load(this.value.spec.valuesContent));
|
||||||
|
} catch (err) {
|
||||||
|
this.$store.dispatch('growl/fromError', {
|
||||||
|
title: this.$store.getters['i18n/t']('generic.notification.title.error'),
|
||||||
|
err: err.data || err,
|
||||||
|
}, { root: true });
|
||||||
|
|
||||||
|
return DEFAULT_VALUES;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
update() {
|
update() {
|
||||||
set(this.value, 'spec.valuesContent', JSON.stringify(this.valuesContent));
|
this.value.spec.valuesContent = jsyaml.dump(this.valuesContent);
|
||||||
},
|
},
|
||||||
|
|
||||||
setDefaultClassName() {
|
setDefaultClassName() {
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import { Sortable } from 'sortablejs-vue3';
|
import { VueDraggableNext } from 'vue-draggable-next';
|
||||||
import InfoBox from '@shell/components/InfoBox';
|
import InfoBox from '@shell/components/InfoBox';
|
||||||
import { Banner } from '@components/Banner';
|
import { Banner } from '@components/Banner';
|
||||||
import BadgeStateFormatter from '@shell/components/formatter/BadgeStateFormatter';
|
import BadgeStateFormatter from '@shell/components/formatter/BadgeStateFormatter';
|
||||||
@ -22,7 +22,7 @@ export default {
|
|||||||
emits: ['update:value'],
|
emits: ['update:value'],
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
Banner, BadgeStateFormatter, Sortable, InfoBox, LabeledInput, UnitInput, LabeledSelect, ModalWithCard
|
Banner, BadgeStateFormatter, VueDraggableNext, InfoBox, LabeledInput, UnitInput, LabeledSelect, ModalWithCard
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
@ -272,14 +272,16 @@ export default {
|
|||||||
color="info"
|
color="info"
|
||||||
label-key="harvester.virtualMachine.volume.dragTip"
|
label-key="harvester.virtualMachine.volume.dragTip"
|
||||||
/>
|
/>
|
||||||
<Sortable
|
<VueDraggableNext
|
||||||
:list="rows"
|
:list="rows"
|
||||||
:options="{disabled: isView}"
|
:disabled="isView"
|
||||||
item-key="id"
|
item-key="id"
|
||||||
@end="update"
|
@end="update"
|
||||||
>
|
>
|
||||||
<template #item="{element: volume, index: i}">
|
<div
|
||||||
<div :key="volume.name">
|
v-for="(volume, i) in rows"
|
||||||
|
:key="volume.id"
|
||||||
|
>
|
||||||
<InfoBox class="box">
|
<InfoBox class="box">
|
||||||
<button
|
<button
|
||||||
v-if="!isView"
|
v-if="!isView"
|
||||||
@ -393,8 +395,7 @@ export default {
|
|||||||
</div>
|
</div>
|
||||||
</InfoBox>
|
</InfoBox>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</VueDraggableNext>
|
||||||
</Sortable>
|
|
||||||
<Banner
|
<Banner
|
||||||
v-if="showVolumeTip"
|
v-if="showVolumeTip"
|
||||||
color="warning"
|
color="warning"
|
||||||
|
|||||||
@ -742,6 +742,9 @@ harvester:
|
|||||||
terminationGracePeriodSeconds:
|
terminationGracePeriodSeconds:
|
||||||
label: Termination Grace Period
|
label: Termination Grace Period
|
||||||
affinity:
|
affinity:
|
||||||
|
addLabel: Add Workload Selector
|
||||||
|
topologyKey:
|
||||||
|
placeholder: 'topology.kubernetes.io/zone'
|
||||||
thisPodNamespace: This virtual machine's namespace
|
thisPodNamespace: This virtual machine's namespace
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
inNamespaces: "Workloads in these namespaces"
|
inNamespaces: "Workloads in these namespaces"
|
||||||
@ -1494,18 +1497,6 @@ harvester:
|
|||||||
pollingInterval:
|
pollingInterval:
|
||||||
label: Polling Interval
|
label: Polling Interval
|
||||||
|
|
||||||
affinity:
|
|
||||||
thisPodNamespace: This virtual machine's namespace
|
|
||||||
matchExpressions:
|
|
||||||
inNamespaces: "Workloads in these namespaces"
|
|
||||||
vmAffinityTitle: Virtual Machine Scheduling
|
|
||||||
namespaces:
|
|
||||||
placeholder: e.g. default,system,base
|
|
||||||
label: Namespaces
|
|
||||||
addLabel: Add Workload Selector
|
|
||||||
topologyKey:
|
|
||||||
placeholder: 'topology.kubernetes.io/zone'
|
|
||||||
|
|
||||||
advancedSettings:
|
advancedSettings:
|
||||||
experimental: 'Experimental features allow users to test and evaluate early-access functionality prior to official supported releases'
|
experimental: 'Experimental features allow users to test and evaluate early-access functionality prior to official supported releases'
|
||||||
descriptions:
|
descriptions:
|
||||||
|
|||||||
@ -282,14 +282,14 @@ export default {
|
|||||||
|
|
||||||
affinityLabels() {
|
affinityLabels() {
|
||||||
return {
|
return {
|
||||||
namespaceInputLabel: this.t('harvesterManager.affinity.namespaces.label'),
|
namespaceInputLabel: this.t('harvester.virtualMachine.affinity.namespaces.label'),
|
||||||
namespaceSelectionLabels: [
|
namespaceSelectionLabels: [
|
||||||
this.t('harvesterManager.affinity.thisPodNamespace'),
|
this.t('harvester.virtualMachine.affinity.thisPodNamespace'),
|
||||||
this.t('workload.scheduling.affinity.allNamespaces'),
|
this.t('workload.scheduling.affinity.allNamespaces'),
|
||||||
this.t('harvesterManager.affinity.matchExpressions.inNamespaces')
|
this.t('harvester.virtualMachine.affinity.matchExpressions.inNamespaces')
|
||||||
],
|
],
|
||||||
addLabel: this.t('harvesterManager.affinity.addLabel'),
|
addLabel: this.t('harvester.virtualMachine.affinity.addLabel'),
|
||||||
topologyKeyPlaceholder: this.t('harvesterManager.affinity.topologyKey.placeholder')
|
topologyKeyPlaceholder: this.t('harvester.virtualMachine.affinity.topologyKey.placeholder')
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
import HarvesterResource from './harvester';
|
import HarvesterResource from './harvester';
|
||||||
import { get } from '@shell/utils/object';
|
|
||||||
import { findBy } from '@shell/utils/array';
|
|
||||||
import { colorForState, stateDisplay, STATES } from '@shell/plugins/dashboard-store/resource-class';
|
import { colorForState, stateDisplay, STATES } from '@shell/plugins/dashboard-store/resource-class';
|
||||||
import { _CREATE } from '@shell/config/query-params';
|
import { _CREATE } from '@shell/config/query-params';
|
||||||
import { ucFirst, escapeHtml } from '@shell/utils/string';
|
import { ucFirst, escapeHtml } from '@shell/utils/string';
|
||||||
@ -66,15 +64,12 @@ export default class ScheduleVmBackup extends HarvesterResource {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
get state() {
|
get stateObj() {
|
||||||
const conditions = get(this, 'status.conditions');
|
return this?.metadata?.state || {};
|
||||||
const isSuspended = findBy(conditions, 'type', 'BackupSuspend')?.status === 'True';
|
|
||||||
|
|
||||||
if (isSuspended) {
|
|
||||||
return STATES.suspended.label;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.metadata.state.name;
|
get state() {
|
||||||
|
return this.status?.suspended === true ? STATES.suspended.label : STATES.active.label;
|
||||||
}
|
}
|
||||||
|
|
||||||
get stateDescription() {
|
get stateDescription() {
|
||||||
|
|||||||
@ -1120,10 +1120,6 @@ export default class VirtVm extends HarvesterResource {
|
|||||||
return qemu?.status === 'True';
|
return qemu?.status === 'True';
|
||||||
}
|
}
|
||||||
|
|
||||||
get warnDeletionMessage() {
|
|
||||||
return this.t('harvester.virtualMachine.promptRemove.tips');
|
|
||||||
}
|
|
||||||
|
|
||||||
get instanceLabels() {
|
get instanceLabels() {
|
||||||
const all = this.spec?.template?.metadata?.labels || {};
|
const all = this.spec?.template?.metadata?.labels || {};
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "harvester",
|
"name": "harvester",
|
||||||
"description": "Rancher UI Extension for Harvester",
|
"description": "Rancher UI Extension for Harvester",
|
||||||
"version": "1.0.2",
|
"version": "1.0.3",
|
||||||
"private": false,
|
"private": false,
|
||||||
"rancher": {
|
"rancher": {
|
||||||
"annotations": {
|
"annotations": {
|
||||||
|
|||||||
@ -4,6 +4,7 @@ import { isEmpty } from '@shell/utils/object';
|
|||||||
import Parse from 'url-parse';
|
import Parse from 'url-parse';
|
||||||
import { resourceNames } from '@shell/utils/string';
|
import { resourceNames } from '@shell/utils/string';
|
||||||
import { HCI } from '../types';
|
import { HCI } from '../types';
|
||||||
|
import { alternateLabel as alternateLabelButton } from '@shell/utils/platform';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'HarvesterPromptRemove',
|
name: 'HarvesterPromptRemove',
|
||||||
@ -40,7 +41,8 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
checkedList: [],
|
checkedList: [],
|
||||||
checkAll: true
|
checkAll: true,
|
||||||
|
alternateLabel: alternateLabelButton
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -138,6 +140,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<div>
|
||||||
<div class="mt-10">
|
<div class="mt-10">
|
||||||
{{ t('promptRemove.attemptingToRemove', {type}) }}
|
{{ t('promptRemove.attemptingToRemove', {type}) }}
|
||||||
<span v-clean-html="resourceNames(names, plusMore, t)"></span>
|
<span v-clean-html="resourceNames(names, plusMore, t)"></span>
|
||||||
@ -150,7 +153,8 @@ export default {
|
|||||||
v-for="(name, i) in removeNameArr[value[0].id]"
|
v-for="(name, i) in removeNameArr[value[0].id]"
|
||||||
:key="i"
|
:key="i"
|
||||||
>
|
>
|
||||||
<label class="checkbox-container mr-15"><input
|
<label class="checkbox-container mr-15">
|
||||||
|
<input
|
||||||
v-model="checkedList"
|
v-model="checkedList"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
:label="name"
|
:label="name"
|
||||||
@ -164,10 +168,10 @@ export default {
|
|||||||
</label>
|
</label>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<label class="checkbox-container mr-15"><input
|
<label class="checkbox-container mr-15">
|
||||||
v-model="checkAll"
|
<input
|
||||||
|
v-model="checkedList"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
@ -178,4 +182,11 @@ export default {
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="text-warning mb-10 mt-10">
|
||||||
|
{{ t('harvester.virtualMachine.promptRemove.tips') }}
|
||||||
|
</div>
|
||||||
|
<div class="text-info mt-20">
|
||||||
|
{{ t('promptRemove.protip', { alternateLabel }) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
125
yarn.lock
125
yarn.lock
@ -4313,17 +4313,6 @@
|
|||||||
estree-walker "^2.0.2"
|
estree-walker "^2.0.2"
|
||||||
source-map-js "^1.2.0"
|
source-map-js "^1.2.0"
|
||||||
|
|
||||||
"@vue/compiler-core@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.7.tgz#04300bdc9fb52f89e6f250bbac16e03f0e0ed914"
|
|
||||||
integrity sha512-A0gay3lK71MddsSnGlBxRPOugIVdACze9L/rCo5X5srCyjQfZOfYtSFMJc3aOZCM+xN55EQpb4R97rYn/iEbSw==
|
|
||||||
dependencies:
|
|
||||||
"@babel/parser" "^7.25.3"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
entities "^4.5.0"
|
|
||||||
estree-walker "^2.0.2"
|
|
||||||
source-map-js "^1.2.0"
|
|
||||||
|
|
||||||
"@vue/compiler-dom@3.2.47":
|
"@vue/compiler-dom@3.2.47":
|
||||||
version "3.2.47"
|
version "3.2.47"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz#a0b06caf7ef7056939e563dcaa9cbde30794f305"
|
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz#a0b06caf7ef7056939e563dcaa9cbde30794f305"
|
||||||
@ -4348,14 +4337,6 @@
|
|||||||
"@vue/compiler-core" "3.5.1"
|
"@vue/compiler-core" "3.5.1"
|
||||||
"@vue/shared" "3.5.1"
|
"@vue/shared" "3.5.1"
|
||||||
|
|
||||||
"@vue/compiler-dom@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.7.tgz#604ced082189b66cb811068332a45dcc11ae0af3"
|
|
||||||
integrity sha512-GYWl3+gO8/g0ZdYaJ18fYHdI/WVic2VuuUd1NsPp60DWXKy+XjdhFsDW7FbUto8siYYZcosBGn9yVBkjhq1M8Q==
|
|
||||||
dependencies:
|
|
||||||
"@vue/compiler-core" "3.5.7"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
|
|
||||||
"@vue/compiler-sfc@3.2.47":
|
"@vue/compiler-sfc@3.2.47":
|
||||||
version "3.2.47"
|
version "3.2.47"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz#1bdc36f6cdc1643f72e2c397eb1a398f5004ad3d"
|
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz#1bdc36f6cdc1643f72e2c397eb1a398f5004ad3d"
|
||||||
@ -4387,21 +4368,6 @@
|
|||||||
postcss "^8.4.44"
|
postcss "^8.4.44"
|
||||||
source-map-js "^1.2.0"
|
source-map-js "^1.2.0"
|
||||||
|
|
||||||
"@vue/compiler-sfc@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.7.tgz#1150c49c0e3b39d40b2cf0f7de9edfcba98fa3e9"
|
|
||||||
integrity sha512-EjOJtCWJrC7HqoCEzOwpIYHm+JH7YmkxC1hG6VkqIukYRqj8KFUlTLK6hcT4nGgtVov2+ZfrdrRlcaqS78HnBA==
|
|
||||||
dependencies:
|
|
||||||
"@babel/parser" "^7.25.3"
|
|
||||||
"@vue/compiler-core" "3.5.7"
|
|
||||||
"@vue/compiler-dom" "3.5.7"
|
|
||||||
"@vue/compiler-ssr" "3.5.7"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
estree-walker "^2.0.2"
|
|
||||||
magic-string "^0.30.11"
|
|
||||||
postcss "^8.4.47"
|
|
||||||
source-map-js "^1.2.0"
|
|
||||||
|
|
||||||
"@vue/compiler-sfc@^3.4.15":
|
"@vue/compiler-sfc@^3.4.15":
|
||||||
version "3.5.0"
|
version "3.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.0.tgz#dc1e34a331d5deea9e258a1e10e1b4d711b1afd6"
|
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.0.tgz#dc1e34a331d5deea9e258a1e10e1b4d711b1afd6"
|
||||||
@ -4441,14 +4407,6 @@
|
|||||||
"@vue/compiler-dom" "3.5.1"
|
"@vue/compiler-dom" "3.5.1"
|
||||||
"@vue/shared" "3.5.1"
|
"@vue/shared" "3.5.1"
|
||||||
|
|
||||||
"@vue/compiler-ssr@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.7.tgz#042144dfd574a1f64b685e87730b0196dc1846d2"
|
|
||||||
integrity sha512-oZx+jXP2k5arV/8Ly3TpQbfFyimMw2ANrRqvHJoKjPqtEzazxQGZjCLOfq8TnZ3wy2TOXdqfmVp4q7FyYeHV4g==
|
|
||||||
dependencies:
|
|
||||||
"@vue/compiler-dom" "3.5.7"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
|
|
||||||
"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.3.0":
|
"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.3.0":
|
||||||
version "3.3.0"
|
version "3.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz#f9f5fb53464b0c37b2c8d2f3fbfe44df60f61dc9"
|
resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz#f9f5fb53464b0c37b2c8d2f3fbfe44df60f61dc9"
|
||||||
@ -4495,13 +4453,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@vue/shared" "3.5.1"
|
"@vue/shared" "3.5.1"
|
||||||
|
|
||||||
"@vue/reactivity@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.7.tgz#a52237fce841d92fc861220a8f26b51f5c3245e2"
|
|
||||||
integrity sha512-yF0EpokpOHRNXyn/h6abXc9JFIzfdAf0MJHIi92xxCWS0mqrXH6+2aZ+A6EbSrspGzX5MHTd5N8iBA28HnXu9g==
|
|
||||||
dependencies:
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
|
|
||||||
"@vue/runtime-core@3.2.47":
|
"@vue/runtime-core@3.2.47":
|
||||||
version "3.2.47"
|
version "3.2.47"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz#406ebade3d5551c00fc6409bbc1eeb10f32e121d"
|
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz#406ebade3d5551c00fc6409bbc1eeb10f32e121d"
|
||||||
@ -4518,14 +4469,6 @@
|
|||||||
"@vue/reactivity" "3.5.1"
|
"@vue/reactivity" "3.5.1"
|
||||||
"@vue/shared" "3.5.1"
|
"@vue/shared" "3.5.1"
|
||||||
|
|
||||||
"@vue/runtime-core@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.7.tgz#4181b0a921d331f2efd5eda9aa35549ac97e6530"
|
|
||||||
integrity sha512-OzLpBpKbZEaZVSNfd+hQbfBrDKux+b7Yl5hYhhWWWhHD7fEpF+CdI3Brm5k5GsufHEfvMcjruPxwQZuBN6nFYQ==
|
|
||||||
dependencies:
|
|
||||||
"@vue/reactivity" "3.5.7"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
|
|
||||||
"@vue/runtime-dom@3.2.47":
|
"@vue/runtime-dom@3.2.47":
|
||||||
version "3.2.47"
|
version "3.2.47"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz#93e760eeaeab84dedfb7c3eaf3ed58d776299382"
|
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz#93e760eeaeab84dedfb7c3eaf3ed58d776299382"
|
||||||
@ -4545,16 +4488,6 @@
|
|||||||
"@vue/shared" "3.5.1"
|
"@vue/shared" "3.5.1"
|
||||||
csstype "^3.1.3"
|
csstype "^3.1.3"
|
||||||
|
|
||||||
"@vue/runtime-dom@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.7.tgz#646e006d403f2e6337f566fdf461fbe400e8487d"
|
|
||||||
integrity sha512-fL7cETfE27U2jyTgqzE382IGFY6a6uyznErn27KbbEzNctzxxUWYDbaN3B55l9nXh0xW2LRWPuWKOvjtO2UewQ==
|
|
||||||
dependencies:
|
|
||||||
"@vue/reactivity" "3.5.7"
|
|
||||||
"@vue/runtime-core" "3.5.7"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
csstype "^3.1.3"
|
|
||||||
|
|
||||||
"@vue/server-renderer@3.2.47":
|
"@vue/server-renderer@3.2.47":
|
||||||
version "3.2.47"
|
version "3.2.47"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz#8aa1d1871fc4eb5a7851aa7f741f8f700e6de3c0"
|
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz#8aa1d1871fc4eb5a7851aa7f741f8f700e6de3c0"
|
||||||
@ -4571,14 +4504,6 @@
|
|||||||
"@vue/compiler-ssr" "3.5.1"
|
"@vue/compiler-ssr" "3.5.1"
|
||||||
"@vue/shared" "3.5.1"
|
"@vue/shared" "3.5.1"
|
||||||
|
|
||||||
"@vue/server-renderer@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.7.tgz#65ba8b60c0ee9e791619c0f8b2b6209a258484e5"
|
|
||||||
integrity sha512-peRypij815eIDjpPpPXvYQGYqPH6QXwLJGWraJYPPn8JqWGl29A8QXnS7/Mh3TkMiOcdsJNhbFCoW2Agc2NgAQ==
|
|
||||||
dependencies:
|
|
||||||
"@vue/compiler-ssr" "3.5.7"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
|
|
||||||
"@vue/shared@3.2.47":
|
"@vue/shared@3.2.47":
|
||||||
version "3.2.47"
|
version "3.2.47"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.47.tgz#e597ef75086c6e896ff5478a6bfc0a7aa4bbd14c"
|
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.47.tgz#e597ef75086c6e896ff5478a6bfc0a7aa4bbd14c"
|
||||||
@ -4594,11 +4519,6 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.1.tgz#f9418dae5ac194a4f19023d812978c21a15412a1"
|
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.1.tgz#f9418dae5ac194a4f19023d812978c21a15412a1"
|
||||||
integrity sha512-NdcTRoO4KuW2RSFgpE2c+E/R/ZHaRzWPxAGxhmxZaaqLh6nYCXx7lc9a88ioqOCxCaV2SFJmujkxbUScW7dNsQ==
|
integrity sha512-NdcTRoO4KuW2RSFgpE2c+E/R/ZHaRzWPxAGxhmxZaaqLh6nYCXx7lc9a88ioqOCxCaV2SFJmujkxbUScW7dNsQ==
|
||||||
|
|
||||||
"@vue/shared@3.5.7":
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.7.tgz#1eedd1ffbf804c488fe806a17ff26c22e0ddb72f"
|
|
||||||
integrity sha512-NBE1PBIvzIedxIc2RZiKXvGbJkrZ2/hLf3h8GlS4/sP9xcXEZMFWOazFkNd6aGeUCMaproe5MHVYB3/4AW9q9g==
|
|
||||||
|
|
||||||
"@vue/test-utils@~2.0.0-0":
|
"@vue/test-utils@~2.0.0-0":
|
||||||
version "2.0.2"
|
version "2.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.0.2.tgz#0b5edd683366153d5bc5a91edc62f292118710eb"
|
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.0.2.tgz#0b5edd683366153d5bc5a91edc62f292118710eb"
|
||||||
@ -11526,7 +11446,7 @@ picocolors@^0.2.1:
|
|||||||
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f"
|
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f"
|
||||||
integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==
|
integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==
|
||||||
|
|
||||||
picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0:
|
picocolors@^1.0.0, picocolors@^1.0.1:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
|
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
|
||||||
integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
|
integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
|
||||||
@ -11862,15 +11782,6 @@ postcss@^8.1.10, postcss@^8.2.6, postcss@^8.3.5, postcss@^8.4.19, postcss@^8.4.3
|
|||||||
picocolors "^1.0.1"
|
picocolors "^1.0.1"
|
||||||
source-map-js "^1.2.0"
|
source-map-js "^1.2.0"
|
||||||
|
|
||||||
postcss@^8.4.47:
|
|
||||||
version "8.4.47"
|
|
||||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365"
|
|
||||||
integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==
|
|
||||||
dependencies:
|
|
||||||
nanoid "^3.3.7"
|
|
||||||
picocolors "^1.1.0"
|
|
||||||
source-map-js "^1.2.1"
|
|
||||||
|
|
||||||
prelude-ls@^1.2.1:
|
prelude-ls@^1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
|
||||||
@ -12805,34 +12716,16 @@ sockjs@^0.3.24:
|
|||||||
uuid "^8.3.2"
|
uuid "^8.3.2"
|
||||||
websocket-driver "^0.7.4"
|
websocket-driver "^0.7.4"
|
||||||
|
|
||||||
sortablejs-vue3@^1.2.11:
|
|
||||||
version "1.2.11"
|
|
||||||
resolved "https://registry.yarnpkg.com/sortablejs-vue3/-/sortablejs-vue3-1.2.11.tgz#c04f767253a03862a5445d310b335d9fdab71261"
|
|
||||||
integrity sha512-oKOA6N7yu2ktmqYXPHlPTQWbe9G4v16mn5ewogb+Ybc9Bk1Y+MIURrpbgedEv7f9TS5Bptvh81HGjazh5FEyJw==
|
|
||||||
dependencies:
|
|
||||||
sortablejs "^1.15.0"
|
|
||||||
vue "^3.3.7"
|
|
||||||
|
|
||||||
sortablejs@1.14.0:
|
sortablejs@1.14.0:
|
||||||
version "1.14.0"
|
version "1.14.0"
|
||||||
resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.14.0.tgz#6d2e17ccbdb25f464734df621d4f35d4ab35b3d8"
|
resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.14.0.tgz#6d2e17ccbdb25f464734df621d4f35d4ab35b3d8"
|
||||||
integrity sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==
|
integrity sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==
|
||||||
|
|
||||||
sortablejs@^1.15.0:
|
|
||||||
version "1.15.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.15.3.tgz#033668db5ebfb11167d1249ab88e748f27959e29"
|
|
||||||
integrity sha512-zdK3/kwwAK1cJgy1rwl1YtNTbRmc8qW/+vgXf75A7NHag5of4pyI6uK86ktmQETyWRH7IGaE73uZOOBcGxgqZg==
|
|
||||||
|
|
||||||
"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0:
|
"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0:
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
|
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
|
||||||
integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
|
integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
|
||||||
|
|
||||||
source-map-js@^1.2.1:
|
|
||||||
version "1.2.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
|
|
||||||
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
|
|
||||||
|
|
||||||
source-map-support@^0.5.17, source-map-support@^0.5.6, source-map-support@~0.5.20:
|
source-map-support@^0.5.17, source-map-support@^0.5.6, source-map-support@~0.5.20:
|
||||||
version "0.5.21"
|
version "0.5.21"
|
||||||
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
|
||||||
@ -13817,6 +13710,11 @@ vue-demi@*:
|
|||||||
resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.10.tgz#afc78de3d6f9e11bf78c55e8510ee12814522f04"
|
resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.10.tgz#afc78de3d6f9e11bf78c55e8510ee12814522f04"
|
||||||
integrity sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==
|
integrity sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==
|
||||||
|
|
||||||
|
vue-draggable-next@^2.2.1:
|
||||||
|
version "2.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/vue-draggable-next/-/vue-draggable-next-2.2.1.tgz#adbe98c74610cca8f4eb63f92042681f96920451"
|
||||||
|
integrity sha512-EAMS1IRHF0kZO0o5PMOinsQsXIqsrKT1hKmbICxG3UEtn7zLFkLxlAtajcCcUTisNvQ6TtCB5COjD9a1raNADw==
|
||||||
|
|
||||||
vue-eslint-parser@^9.0.1:
|
vue-eslint-parser@^9.0.1:
|
||||||
version "9.4.3"
|
version "9.4.3"
|
||||||
resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz#9b04b22c71401f1e8bca9be7c3e3416a4bde76a8"
|
resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz#9b04b22c71401f1e8bca9be7c3e3416a4bde76a8"
|
||||||
@ -13898,17 +13796,6 @@ vue3-virtual-scroll-list@0.2.1:
|
|||||||
resolved "https://registry.yarnpkg.com/vue3-virtual-scroll-list/-/vue3-virtual-scroll-list-0.2.1.tgz#7fdc5be066c9b8d877614626a0bc02eb1fd12ad0"
|
resolved "https://registry.yarnpkg.com/vue3-virtual-scroll-list/-/vue3-virtual-scroll-list-0.2.1.tgz#7fdc5be066c9b8d877614626a0bc02eb1fd12ad0"
|
||||||
integrity sha512-G4KxITUOy9D4ro15zOp40D6ogmMefzjIyMsBKqN3xGbV1P6dlKYMx+BBXCKm3Nr/6iipcUKM272Sh2AJRyWMyQ==
|
integrity sha512-G4KxITUOy9D4ro15zOp40D6ogmMefzjIyMsBKqN3xGbV1P6dlKYMx+BBXCKm3Nr/6iipcUKM272Sh2AJRyWMyQ==
|
||||||
|
|
||||||
vue@^3.3.7:
|
|
||||||
version "3.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.7.tgz#511df1fab33a4c20cfe6b59659d6f601f0c26625"
|
|
||||||
integrity sha512-JcFm0f5j8DQO9E07pZRxqZ/ZsNopMVzHYXpKvnfqXFcA4JTi+4YcrikRn9wkzWsdj0YsLzlLIsR0zzGxA2P6Wg==
|
|
||||||
dependencies:
|
|
||||||
"@vue/compiler-dom" "3.5.7"
|
|
||||||
"@vue/compiler-sfc" "3.5.7"
|
|
||||||
"@vue/runtime-dom" "3.5.7"
|
|
||||||
"@vue/server-renderer" "3.5.7"
|
|
||||||
"@vue/shared" "3.5.7"
|
|
||||||
|
|
||||||
vue@^3.4.31:
|
vue@^3.4.31:
|
||||||
version "3.5.1"
|
version "3.5.1"
|
||||||
resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.1.tgz#507eb4ab010a2ad894f8d7765f32e68be1604815"
|
resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.1.tgz#507eb4ab010a2ad894f8d7765f32e68be1604815"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user