Skip to content

Commit

Permalink
Merge branch 'master' into revision-menu
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangbing4 committed May 22, 2024
2 parents 84d0029 + 44229f5 commit 0b6836b
Show file tree
Hide file tree
Showing 10 changed files with 164 additions and 145 deletions.
19 changes: 19 additions & 0 deletions components/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,28 @@ export function strPad(str: number | string, length: number, pad: string = '0')
return str;
}

/**
* 在vue3.0中,数组会转成Proxy对象,需要获取原始数据比较
* https://github.com/ksc-fe/kpc/issues/985
* https://github.com/vuejs/core/blob/main/packages/reactivity/src/reactive.ts
*/
const RAW = '__v_raw';
function isProxy(value: any): boolean {
return value ? !!value[RAW] : false
}
function toRaw<T>(observed: T): T {
const raw = observed && (observed as any)[RAW]
return raw ? toRaw(raw) : observed
}
type EqualArrayValue = any | EqualArrayValue[]
export function isEqualArray(a: EqualArrayValue, b: EqualArrayValue): boolean {
if (a === b) return true;

// for vue3.0 Proxy object
if (isProxy(a)) a = toRaw(a);
if (isProxy(b)) b = toRaw(b);
if (a === b) return true;

if (Array.isArray(a) && Array.isArray(b)) {
if (a.length !== b.length) return false;
return a.every((value, index) => isEqualArray(value, b[index]));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"@emotion/css": "^11.5.0",
"dayjs": "^1.10.7",
"enquire.js": "^2.1.6",
"intact": "^3.0.34",
"intact": "^3.0.35",
"monaco-editor": "^0.26.1",
"mxgraphx": "^4.0.7",
"resize-observer-polyfill": "^1.5.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/kpc-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@emotion/css": "^11.5.0",
"dayjs": "^1.10.7",
"enquire.js": "^2.1.6",
"intact-react": "3.0.34",
"intact-react": "3.0.35",
"monaco-editor": "^0.26.1",
"mxgraphx": "^4.0.7",
"resize-observer-polyfill": "^1.5.1",
Expand Down
70 changes: 35 additions & 35 deletions packages/kpc-react/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -270,30 +270,30 @@ import-fresh@^3.2.1:
parent-module "^1.0.0"
resolve-from "^4.0.0"

[email protected].34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact-react/-/intact-react-3.0.34.tgz#e2bd8f964622939000150abb2f2669c663a925a5"
integrity sha512-vxSB5+yXNiHndNXaZVmmWp3WiiGEukJDbYqxmo+OQ5Zt+XTpb5E1NBvBT9GRwvrlwMtfnKfNKzIlp2RwaGUdoA==
[email protected].35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact-react/-/intact-react-3.0.35.tgz#1713e525622451c111a9a5a054d69a58f60b6cf3"
integrity sha512-Fh2Xy8YP7NkLWwiEI7R+SwaUKRQhs0AS5HuY/UJb9AYpa7dR42/aT/nNDFTbUkdD/UXfktQqOGmqerIHT9fmeQ==
dependencies:
intact "^3.0.34"
intact-shared "^3.0.34"
intact "^3.0.35"
intact-shared "^3.0.35"
tslib "^2.3.1"

intact-shared@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.34.tgz#ddaf0e098540d8e98bf49c5f378a33681f1c55a9"
integrity sha512-pT8cpl7XDF7lYM6xWEoLwtf12sEysPjSfdmUr5DXaWvRm8cByg4dTxC+/+KQ0m3Umv0WE2vilQMixIh9hqe0Fg==
intact-shared@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.35.tgz#90968290769beb9a89891a26a811b05ecebe2615"
integrity sha512-M14eQT+pYTRPbm79GM9wUXje9Wp2qYlpqIhBSIbqd13KCifJRgnSWnz3ZbDayUQLXDW+ZQmyNtYLtEkAKdV3Fw==

intact@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact/-/intact-3.0.34.tgz#9407202bd159f29d80792c26218b97b682cfae78"
integrity sha512-j13WHChj5aJmw4+FSgMoEF/s67mnsq/fSA0LhSpmGYY6CChsBH6aPyQJUvEdYtjytZBCABvuJYgbcbyNHynb+w==
intact@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact/-/intact-3.0.35.tgz#ddaaac4ae96fadcfe7aff55ed64def21cae0c8cc"
integrity sha512-W60u2ozoz5AwV8o440FL3YZ3PFaSTufvV//K4q93CcckZP7tJYU4dyIBOESuD3iS341Z77Z2bmEjuus3ih3ucA==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"
vdt "^3.0.34"
vdt-compiler "^3.0.34"
vdt "^3.0.35"
vdt-compiler "^3.0.35"

is-arrayish@^0.2.1:
version "0.2.1"
Expand Down Expand Up @@ -322,12 +322,12 @@ lines-and-columns@^1.1.6:
resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==

misstime@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.34.tgz#462f6509d06e1e80e7622b0ffa96df5438bbb87d"
integrity sha512-xO5ZHcG0cYkcWr7ZPquGFQWnZaMC5y4r1lKlFqCedLHFAAiV8SNEnj4bpFge8yTJJNO8LEXKOFWuE8WWpfy22g==
misstime@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.35.tgz#606f33f9a26d6df26b0a5b3e0af75c71a94f20ee"
integrity sha512-cq3m7d8IwDe1OTKjmLY1duHc7RDS9X2+M8RtaFNyBcdBOQl3Cb03GIiMJVIh9n8urd04KWwSVRmhm8reysoVyA==
dependencies:
intact-shared "^3.0.34"
intact-shared "^3.0.35"

monaco-editor@^0.26.1:
version "0.26.1"
Expand Down Expand Up @@ -427,22 +427,22 @@ tslib@^2.2.0, tslib@^2.3.1:
resolved "https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==

vdt-compiler@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.34.tgz#7110da7dc1e86a5a54987e9e07922cc25f46e0fb"
integrity sha512-UFILLLLSg9SxXkiyGLdGbExOttTf5Tawpu07YFOxjRQJA5mpUWhus2+2RUbkNiWzr+9OJB7hZCwEWBKF+pQd1Q==
vdt-compiler@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.35.tgz#636fdf503835c2a43937a923e5a0ae1f8eb1bf64"
integrity sha512-c1NJJmRGlroVGr1ZYlsIrUwB9KhfrTT8G1x4O9bEvb/OI07RIkaW8o/6qSs/e+zxpmR6SevDJXXsuvvXFVcPXg==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"

vdt@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.34.tgz#b01df681dbd986ef0515ead3f0a8c060b840a327"
integrity sha512-mGGTKgCTXZYHIlUYb2UsZxfp/n4sRLUP5XU+tA9l3qUXjvKeHz9tSsPdS4JdugvhTapaf8USTeE59e7SeMbzlA==
vdt@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.35.tgz#cb7e961844aac568f2e315bffd82c951c49d68f6"
integrity sha512-cPfNal73RHMQj7oNjwSpwKTyFyvGMBTs3HRomLLIX9o0CeD0D3yS7EyqCPlo5QZP3nG2lQL+k0YSK9CWPwNq1g==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"

yaml@^1.10.0:
Expand Down
2 changes: 1 addition & 1 deletion packages/kpc-vue-next/__tests__/components/upload.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('Upload', () => {
const test = shouldNotWarn():
const Demo = defineComponent({
setup() {
const files = ref([]);
const files = ref([{ name: 'name 1' }]);
return { files };
},
components: { Upload },
Expand Down
2 changes: 1 addition & 1 deletion packages/kpc-vue-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@emotion/css": "^11.5.0",
"dayjs": "^1.10.7",
"enquire.js": "^2.1.6",
"intact-vue-next": "3.0.34",
"intact-vue-next": "3.0.35",
"monaco-editor": "^0.26.1",
"mxgraphx": "^4.0.7",
"resize-observer-polyfill": "^1.5.1",
Expand Down
74 changes: 37 additions & 37 deletions packages/kpc-vue-next/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -623,30 +623,30 @@ import-fresh@^3.2.1:
parent-module "^1.0.0"
resolve-from "^4.0.0"

intact-shared@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.34.tgz#ddaf0e098540d8e98bf49c5f378a33681f1c55a9"
integrity sha512-pT8cpl7XDF7lYM6xWEoLwtf12sEysPjSfdmUr5DXaWvRm8cByg4dTxC+/+KQ0m3Umv0WE2vilQMixIh9hqe0Fg==

[email protected].34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact-vue-next/-/intact-vue-next-3.0.34.tgz#e9c4268c9be81900f590ec536df561ec70aa3a85"
integrity sha512-nv9UUXZ72jfXflVbopTWb+oxrGw9aoIdguaMwnn8EzIhiNaA34zpRqhy8GXOUJCG85P9BCkZZfU1zD0LqMtVIQ==
dependencies:
intact "^3.0.34"
intact-shared "^3.0.34"
intact-shared@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.35.tgz#90968290769beb9a89891a26a811b05ecebe2615"
integrity sha512-M14eQT+pYTRPbm79GM9wUXje9Wp2qYlpqIhBSIbqd13KCifJRgnSWnz3ZbDayUQLXDW+ZQmyNtYLtEkAKdV3Fw==

[email protected].35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact-vue-next/-/intact-vue-next-3.0.35.tgz#fb3693841251b6b212cd617fa51116c91f5f6489"
integrity sha512-l9WzU0wcLkdUBBKUPOK9pKlzges5p5e49Bvnz6l34uMyBa0rO0acCISMCaK3qGJpbMNl7B8x5H6+tC16byJ/OQ==
dependencies:
intact "^3.0.35"
intact-shared "^3.0.35"
tslib "^2.3.1"

intact@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact/-/intact-3.0.34.tgz#9407202bd159f29d80792c26218b97b682cfae78"
integrity sha512-j13WHChj5aJmw4+FSgMoEF/s67mnsq/fSA0LhSpmGYY6CChsBH6aPyQJUvEdYtjytZBCABvuJYgbcbyNHynb+w==
intact@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact/-/intact-3.0.35.tgz#ddaaac4ae96fadcfe7aff55ed64def21cae0c8cc"
integrity sha512-W60u2ozoz5AwV8o440FL3YZ3PFaSTufvV//K4q93CcckZP7tJYU4dyIBOESuD3iS341Z77Z2bmEjuus3ih3ucA==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"
vdt "^3.0.34"
vdt-compiler "^3.0.34"
vdt "^3.0.35"
vdt-compiler "^3.0.35"

is-arrayish@^0.2.1:
version "0.2.1"
Expand Down Expand Up @@ -722,12 +722,12 @@ minimist@^1.2.0:
resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==

misstime@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.34.tgz#462f6509d06e1e80e7622b0ffa96df5438bbb87d"
integrity sha512-xO5ZHcG0cYkcWr7ZPquGFQWnZaMC5y4r1lKlFqCedLHFAAiV8SNEnj4bpFge8yTJJNO8LEXKOFWuE8WWpfy22g==
misstime@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.35.tgz#606f33f9a26d6df26b0a5b3e0af75c71a94f20ee"
integrity sha512-cq3m7d8IwDe1OTKjmLY1duHc7RDS9X2+M8RtaFNyBcdBOQl3Cb03GIiMJVIh9n8urd04KWwSVRmhm8reysoVyA==
dependencies:
intact-shared "^3.0.34"
intact-shared "^3.0.35"

monaco-editor@^0.26.1:
version "0.26.1"
Expand Down Expand Up @@ -868,22 +868,22 @@ tslib@^2.2.0, tslib@^2.3.1:
resolved "https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==

vdt-compiler@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.34.tgz#7110da7dc1e86a5a54987e9e07922cc25f46e0fb"
integrity sha512-UFILLLLSg9SxXkiyGLdGbExOttTf5Tawpu07YFOxjRQJA5mpUWhus2+2RUbkNiWzr+9OJB7hZCwEWBKF+pQd1Q==
vdt-compiler@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.35.tgz#636fdf503835c2a43937a923e5a0ae1f8eb1bf64"
integrity sha512-c1NJJmRGlroVGr1ZYlsIrUwB9KhfrTT8G1x4O9bEvb/OI07RIkaW8o/6qSs/e+zxpmR6SevDJXXsuvvXFVcPXg==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"

vdt@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.34.tgz#b01df681dbd986ef0515ead3f0a8c060b840a327"
integrity sha512-mGGTKgCTXZYHIlUYb2UsZxfp/n4sRLUP5XU+tA9l3qUXjvKeHz9tSsPdS4JdugvhTapaf8USTeE59e7SeMbzlA==
vdt@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.35.tgz#cb7e961844aac568f2e315bffd82c951c49d68f6"
integrity sha512-cPfNal73RHMQj7oNjwSpwKTyFyvGMBTs3HRomLLIX9o0CeD0D3yS7EyqCPlo5QZP3nG2lQL+k0YSK9CWPwNq1g==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"

vue-loader@^16.1.2:
Expand Down
2 changes: 1 addition & 1 deletion packages/kpc-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@emotion/css": "^11.5.0",
"dayjs": "^1.10.7",
"enquire.js": "^2.1.6",
"intact-vue": "3.0.34",
"intact-vue": "3.0.35",
"monaco-editor": "^0.26.1",
"mxgraphx": "^4.0.7",
"resize-observer-polyfill": "^1.5.1",
Expand Down
74 changes: 37 additions & 37 deletions packages/kpc-vue/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -589,30 +589,30 @@ inherits@2:
resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==

intact-shared@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.34.tgz#ddaf0e098540d8e98bf49c5f378a33681f1c55a9"
integrity sha512-pT8cpl7XDF7lYM6xWEoLwtf12sEysPjSfdmUr5DXaWvRm8cByg4dTxC+/+KQ0m3Umv0WE2vilQMixIh9hqe0Fg==

[email protected].34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact-vue/-/intact-vue-3.0.34.tgz#c8a408ae168f8b22c8b56af34121ab47dc0a7cb3"
integrity sha512-jx2DH3XXqes5EPlXhjBuBxvcizM22pH7y6MpPubmMcYbz8a/gquuLec5mL7E/YCc/xpnz3GRbh011zeEYovF/A==
dependencies:
intact "^3.0.34"
intact-shared "^3.0.34"
intact-shared@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.35.tgz#90968290769beb9a89891a26a811b05ecebe2615"
integrity sha512-M14eQT+pYTRPbm79GM9wUXje9Wp2qYlpqIhBSIbqd13KCifJRgnSWnz3ZbDayUQLXDW+ZQmyNtYLtEkAKdV3Fw==

[email protected].35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact-vue/-/intact-vue-3.0.35.tgz#78bfd20e82a2da4c27782f2e7b39258763b168a3"
integrity sha512-uXddEikPbFtvYWF7WT7MxIEz34Zz2Vu+ZXD5xwv8n2apcgH4iVoE/lIfGwteVXMMZAqzSo6CDdV156GeEH2drg==
dependencies:
intact "^3.0.35"
intact-shared "^3.0.35"
tslib "^2.3.1"

intact@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/intact/-/intact-3.0.34.tgz#9407202bd159f29d80792c26218b97b682cfae78"
integrity sha512-j13WHChj5aJmw4+FSgMoEF/s67mnsq/fSA0LhSpmGYY6CChsBH6aPyQJUvEdYtjytZBCABvuJYgbcbyNHynb+w==
intact@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/intact/-/intact-3.0.35.tgz#ddaaac4ae96fadcfe7aff55ed64def21cae0c8cc"
integrity sha512-W60u2ozoz5AwV8o440FL3YZ3PFaSTufvV//K4q93CcckZP7tJYU4dyIBOESuD3iS341Z77Z2bmEjuus3ih3ucA==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"
vdt "^3.0.34"
vdt-compiler "^3.0.34"
vdt "^3.0.35"
vdt-compiler "^3.0.35"

is-arrayish@^0.2.1:
version "0.2.1"
Expand Down Expand Up @@ -715,12 +715,12 @@ minimist@^1.2.0:
resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==

misstime@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.34.tgz#462f6509d06e1e80e7622b0ffa96df5438bbb87d"
integrity sha512-xO5ZHcG0cYkcWr7ZPquGFQWnZaMC5y4r1lKlFqCedLHFAAiV8SNEnj4bpFge8yTJJNO8LEXKOFWuE8WWpfy22g==
misstime@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.35.tgz#606f33f9a26d6df26b0a5b3e0af75c71a94f20ee"
integrity sha512-cq3m7d8IwDe1OTKjmLY1duHc7RDS9X2+M8RtaFNyBcdBOQl3Cb03GIiMJVIh9n8urd04KWwSVRmhm8reysoVyA==
dependencies:
intact-shared "^3.0.34"
intact-shared "^3.0.35"

monaco-editor@^0.26.1:
version "0.26.1"
Expand Down Expand Up @@ -909,22 +909,22 @@ util-deprecate@^1.0.2:
resolved "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==

vdt-compiler@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.34.tgz#7110da7dc1e86a5a54987e9e07922cc25f46e0fb"
integrity sha512-UFILLLLSg9SxXkiyGLdGbExOttTf5Tawpu07YFOxjRQJA5mpUWhus2+2RUbkNiWzr+9OJB7hZCwEWBKF+pQd1Q==
vdt-compiler@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.35.tgz#636fdf503835c2a43937a923e5a0ae1f8eb1bf64"
integrity sha512-c1NJJmRGlroVGr1ZYlsIrUwB9KhfrTT8G1x4O9bEvb/OI07RIkaW8o/6qSs/e+zxpmR6SevDJXXsuvvXFVcPXg==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"

vdt@^3.0.34:
version "3.0.34"
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.34.tgz#b01df681dbd986ef0515ead3f0a8c060b840a327"
integrity sha512-mGGTKgCTXZYHIlUYb2UsZxfp/n4sRLUP5XU+tA9l3qUXjvKeHz9tSsPdS4JdugvhTapaf8USTeE59e7SeMbzlA==
vdt@^3.0.35:
version "3.0.35"
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.35.tgz#cb7e961844aac568f2e315bffd82c951c49d68f6"
integrity sha512-cPfNal73RHMQj7oNjwSpwKTyFyvGMBTs3HRomLLIX9o0CeD0D3yS7EyqCPlo5QZP3nG2lQL+k0YSK9CWPwNq1g==
dependencies:
intact-shared "^3.0.34"
misstime "^3.0.34"
intact-shared "^3.0.35"
misstime "^3.0.35"
tslib "^2.2.0"

vue-hot-reload-api@^2.3.0:
Expand Down
Loading

0 comments on commit 0b6836b

Please sign in to comment.