提交 0fcf6a19 编写于 作者: fxy060608's avatar fxy060608

build(deps): bump vue from 3.2.30 to 3.2.31

上级 d627d616
......@@ -12,7 +12,7 @@
"@dcloudio/uni-app": "../../uni-app",
"@dcloudio/uni-components": "../../uni-components",
"@dcloudio/uni-h5": "../../uni-h5",
"vue": "3.2.30",
"vue": "3.2.31",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
......
......@@ -99,8 +99,8 @@ var serviceContext = (function (vue) {
map[list[i]] = true;
}
return expectsLowerCase ? val => !!map[val.toLowerCase()] : val => !!map[val];
}
}
(process.env.NODE_ENV !== 'production')
? Object.freeze({})
: {};
......
......@@ -34,9 +34,9 @@
"@dcloudio/uni-i18n": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@types/pako": "1.0.2",
"@vue/compiler-sfc": "3.2.30",
"@vue/compiler-sfc": "3.2.31",
"pako": "^1.0.11",
"vue": "3.2.30"
"vue": "3.2.31"
},
"dependencies": {
"@dcloudio/uni-app-vite": "3.0.0-alpha-3031120220216001",
......
......@@ -25,7 +25,7 @@
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@rollup/pluginutils": "^4.1.2",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "3.2.30",
"@vue/compiler-sfc": "3.2.31",
"debug": "^4.3.3",
"fs-extra": "^10.0.0",
"rollup": "^2.59.0"
......@@ -33,6 +33,6 @@
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
}
}
......@@ -30,6 +30,6 @@
"@dcloudio/uni-push": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-stat": "3.0.0-alpha-3031120220216001",
"@vue/shared": "3.2.30"
"@vue/shared": "3.2.31"
}
}
......@@ -23,7 +23,7 @@
"@babel/preset-env": "^7.16.5",
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@vue/shared": "3.2.30",
"@vue/shared": "3.2.31",
"acorn": "^5.2.1",
"babel-loader": "^8.2.2",
"consolidate": "^0.15.1",
......
......@@ -24,11 +24,11 @@
"@dcloudio/uni-i18n": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@rollup/pluginutils": "^4.1.2",
"@vue/compiler-core": "3.2.30",
"@vue/compiler-dom": "3.2.30",
"@vue/compiler-sfc": "3.2.30",
"@vue/server-renderer": "3.2.30",
"@vue/shared": "3.2.30",
"@vue/compiler-core": "3.2.31",
"@vue/compiler-dom": "3.2.31",
"@vue/compiler-sfc": "3.2.31",
"@vue/server-renderer": "3.2.31",
"@vue/shared": "3.2.31",
"autoprefixer": "^10.4.2",
"base64url": "^3.0.1",
"chokidar": "^3.5.3",
......
......@@ -22,10 +22,10 @@
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@rollup/pluginutils": "^4.1.2",
"@vue/compiler-dom": "3.2.30",
"@vue/compiler-sfc": "3.2.30",
"@vue/server-renderer": "3.2.30",
"@vue/shared": "3.2.30",
"@vue/compiler-dom": "3.2.31",
"@vue/compiler-sfc": "3.2.31",
"@vue/server-renderer": "3.2.31",
"@vue/shared": "3.2.31",
"debug": "^4.3.3",
"fs-extra": "^10.0.0",
"mime": "^3.0.0",
......@@ -36,7 +36,7 @@
"@types/fs-extra": "^9.0.13",
"@types/mime": "^2.0.3",
"@types/module-alias": "^2.0.1",
"@vue/compiler-core": "3.2.30",
"@vue/compiler-core": "3.2.31",
"esbuild": "^0.14.14"
}
}
......@@ -4864,96 +4864,6 @@ function useRadioInject(radioChecked, radioValue, reset) {
field
};
}
function removeDOCTYPE(html) {
return html.replace(/<\?xml.*\?>\n/, "").replace(/<!doctype.*>\n/, "").replace(/<!DOCTYPE.*>\n/, "");
}
function parseAttrs(attrs) {
return attrs.reduce(function(pre, attr2) {
let value = attr2.value;
const name = attr2.name;
if (value.match(/ /) && name !== "style") {
value = value.split(" ");
}
if (pre[name]) {
if (Array.isArray(pre[name])) {
pre[name].push(value);
} else {
pre[name] = [pre[name], value];
}
} else {
pre[name] = value;
}
return pre;
}, {});
}
function parseHtml(html) {
html = removeDOCTYPE(html);
const stacks = [];
const results = {
node: "root",
children: []
};
HTMLParser(html, {
start: function(tag, attrs, unary) {
const node = {
name: tag
};
if (attrs.length !== 0) {
node.attrs = parseAttrs(attrs);
}
if (unary) {
const parent = stacks[0] || results;
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
} else {
stacks.unshift(node);
}
},
end: function(tag) {
const node = stacks.shift();
if (node.name !== tag)
console.error("invalid state: mismatch end tag");
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
chars: function(text) {
const node = {
type: "text",
text
};
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
comment: function(text) {
const node = {
node: "comment",
text
};
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
});
return results.children;
}
const TAGS = {
a: "",
abbr: "",
......@@ -5109,6 +5019,96 @@ function processClickEvent(node, elem, triggerItemClick) {
}, true);
}
}
function removeDOCTYPE(html) {
return html.replace(/<\?xml.*\?>\n/, "").replace(/<!doctype.*>\n/, "").replace(/<!DOCTYPE.*>\n/, "");
}
function parseAttrs(attrs) {
return attrs.reduce(function(pre, attr2) {
let value = attr2.value;
const name = attr2.name;
if (value.match(/ /) && name !== "style") {
value = value.split(" ");
}
if (pre[name]) {
if (Array.isArray(pre[name])) {
pre[name].push(value);
} else {
pre[name] = [pre[name], value];
}
} else {
pre[name] = value;
}
return pre;
}, {});
}
function parseHtml(html) {
html = removeDOCTYPE(html);
const stacks = [];
const results = {
node: "root",
children: []
};
HTMLParser(html, {
start: function(tag, attrs, unary) {
const node = {
name: tag
};
if (attrs.length !== 0) {
node.attrs = parseAttrs(attrs);
}
if (unary) {
const parent = stacks[0] || results;
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
} else {
stacks.unshift(node);
}
},
end: function(tag) {
const node = stacks.shift();
if (node.name !== tag)
console.error("invalid state: mismatch end tag");
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
chars: function(text) {
const node = {
type: "text",
text
};
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
comment: function(text) {
const node = {
node: "comment",
text
};
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
});
return results.children;
}
const props$f = {
nodes: {
type: [Array, String],
......
......@@ -11466,96 +11466,6 @@ function useRadioInject(radioChecked, radioValue, reset) {
field
};
}
function removeDOCTYPE(html) {
return html.replace(/<\?xml.*\?>\n/, "").replace(/<!doctype.*>\n/, "").replace(/<!DOCTYPE.*>\n/, "");
}
function parseAttrs(attrs2) {
return attrs2.reduce(function(pre, attr2) {
let value = attr2.value;
const name = attr2.name;
if (value.match(/ /) && name !== "style") {
value = value.split(" ");
}
if (pre[name]) {
if (Array.isArray(pre[name])) {
pre[name].push(value);
} else {
pre[name] = [pre[name], value];
}
} else {
pre[name] = value;
}
return pre;
}, {});
}
function parseHtml(html) {
html = removeDOCTYPE(html);
const stacks = [];
const results = {
node: "root",
children: []
};
HTMLParser(html, {
start: function(tag, attrs2, unary) {
const node = {
name: tag
};
if (attrs2.length !== 0) {
node.attrs = parseAttrs(attrs2);
}
if (unary) {
const parent = stacks[0] || results;
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
} else {
stacks.unshift(node);
}
},
end: function(tag) {
const node = stacks.shift();
if (node.name !== tag)
console.error("invalid state: mismatch end tag");
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
chars: function(text2) {
const node = {
type: "text",
text: text2
};
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
comment: function(text2) {
const node = {
node: "comment",
text: text2
};
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
});
return results.children;
}
const TAGS = {
a: "",
abbr: "",
......@@ -11711,6 +11621,96 @@ function processClickEvent(node, elem, triggerItemClick) {
}, true);
}
}
function removeDOCTYPE(html) {
return html.replace(/<\?xml.*\?>\n/, "").replace(/<!doctype.*>\n/, "").replace(/<!DOCTYPE.*>\n/, "");
}
function parseAttrs(attrs2) {
return attrs2.reduce(function(pre, attr2) {
let value = attr2.value;
const name = attr2.name;
if (value.match(/ /) && name !== "style") {
value = value.split(" ");
}
if (pre[name]) {
if (Array.isArray(pre[name])) {
pre[name].push(value);
} else {
pre[name] = [pre[name], value];
}
} else {
pre[name] = value;
}
return pre;
}, {});
}
function parseHtml(html) {
html = removeDOCTYPE(html);
const stacks = [];
const results = {
node: "root",
children: []
};
HTMLParser(html, {
start: function(tag, attrs2, unary) {
const node = {
name: tag
};
if (attrs2.length !== 0) {
node.attrs = parseAttrs(attrs2);
}
if (unary) {
const parent = stacks[0] || results;
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
} else {
stacks.unshift(node);
}
},
end: function(tag) {
const node = stacks.shift();
if (node.name !== tag)
console.error("invalid state: mismatch end tag");
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
chars: function(text2) {
const node = {
type: "text",
text: text2
};
if (stacks.length === 0) {
results.children.push(node);
} else {
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
},
comment: function(text2) {
const node = {
node: "comment",
text: text2
};
const parent = stacks[0];
if (!parent.children) {
parent.children = [];
}
parent.children.push(node);
}
});
return results.children;
}
const props$m = {
nodes: {
type: [Array, String],
......
......@@ -33,8 +33,8 @@
"@dcloudio/uni-h5-vue": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-i18n": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@vue/server-renderer": "3.2.30",
"@vue/shared": "3.2.30",
"@vue/server-renderer": "3.2.31",
"@vue/shared": "3.2.31",
"localstorage-polyfill": "^1.0.1",
"safe-area-insets": "^1.4.1",
"vue-router": "^4.0.12",
......@@ -47,6 +47,6 @@
"@types/google.maps": "^3.45.6",
"acorn-loose": "^8.2.1",
"acorn-walk": "^8.2.0",
"vue": "3.2.30"
"vue": "3.2.31"
}
}
......@@ -25,7 +25,7 @@
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-mp-vite": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-mp-vue": "3.0.0-alpha-3031120220216001",
"@vue/compiler-core": "3.2.30",
"@vue/shared": "3.2.30"
"@vue/compiler-core": "3.2.31",
"@vue/shared": "3.2.31"
}
}
......@@ -27,7 +27,7 @@
"gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
"devDependencies": {
"@dcloudio/uni-mp-weixin": "3.0.0-alpha-3031120220216001",
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
},
"dependencies": {
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
......
......@@ -24,13 +24,13 @@
"@babel/types": "^7.16.8",
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@vue/compiler-core": "3.2.30",
"@vue/compiler-dom": "3.2.30",
"@vue/shared": "3.2.30",
"@vue/compiler-core": "3.2.31",
"@vue/compiler-dom": "3.2.31",
"@vue/shared": "3.2.31",
"estree-walker": "^2.0.2"
},
"devDependencies": {
"@vue/compiler-sfc": "3.2.30",
"@vue/compiler-sfc": "3.2.31",
"source-map": "^0.6.1"
}
}
......@@ -23,7 +23,7 @@
"gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
"devDependencies": {
"@dcloudio/uni-mp-weixin": "3.0.0-alpha-3031120220216001",
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
},
"dependencies": {
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
......
......@@ -30,6 +30,6 @@
"@dcloudio/uni-mp-vite": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-mp-vue": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
}
}
......@@ -24,7 +24,7 @@
"devDependencies": {
"@dcloudio/uni-mp-weixin": "3.0.0-alpha-3031120220216001",
"@types/fs-extra": "^9.0.13",
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
},
"dependencies": {
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
......
......@@ -27,6 +27,6 @@
"@dcloudio/uni-mp-vite": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-mp-vue": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
}
}
......@@ -25,8 +25,8 @@
"@intlify/core-base": "9.1.9",
"@intlify/shared": "9.1.9",
"@intlify/vue-devtools": "9.1.9",
"@vue/compiler-sfc": "3.2.30",
"@vue/shared": "3.2.30",
"@vue/compiler-sfc": "3.2.31",
"@vue/shared": "3.2.31",
"debug": "^4.3.3",
"magic-string": "^0.25.7"
},
......
......@@ -26,7 +26,7 @@
},
"gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
"devDependencies": {
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
},
"dependencies": {
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
......
......@@ -22,13 +22,13 @@
},
"gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
"devDependencies": {
"@vue/compiler-core": "3.2.30"
"@vue/compiler-core": "3.2.31"
},
"dependencies": {
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-mp-vite": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-mp-vue": "3.0.0-alpha-3031120220216001",
"@dcloudio/uni-shared": "3.0.0-alpha-3031120220216001",
"@vue/shared": "3.2.30"
"@vue/shared": "3.2.31"
}
}
......@@ -20,9 +20,9 @@
},
"gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
"devDependencies": {
"@vue/runtime-core": "3.2.30"
"@vue/runtime-core": "3.2.31"
},
"dependencies": {
"@vue/shared": "3.2.30"
"@vue/shared": "3.2.31"
}
}
......@@ -31,10 +31,10 @@
"@vitejs/plugin-legacy": "^1.7.1",
"@vitejs/plugin-vue": "^2.2.0",
"@vitejs/plugin-vue-jsx": "^1.3.7",
"@vue/compiler-core": "3.2.30",
"@vue/compiler-dom": "3.2.30",
"@vue/compiler-sfc": "3.2.30",
"@vue/shared": "3.2.30",
"@vue/compiler-core": "3.2.31",
"@vue/compiler-dom": "3.2.31",
"@vue/compiler-sfc": "3.2.31",
"@vue/shared": "3.2.31",
"cac": "6.7.9",
"debug": "^4.3.3",
"estree-walker": "^2.0.2",
......
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册