@fangzhongya/vue-archive 0.0.83 → 0.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/index.cjs +58 -58
- package/dist/node/index.js +58 -58
- package/dist/packages/components/compo/index.cjs +1 -1
- package/dist/packages/components/compo/index.js +1 -1
- package/dist/packages/components/md/index.vue.cjs +1 -1
- package/dist/packages/components/md/index.vue.js +1 -1
- package/dist/packages/components/use/code.d.ts +25 -18
- package/dist/packages/config.cjs +1 -1
- package/dist/packages/config.js +8 -18
- package/dist/packages/node/index.d.ts +1 -1
- package/dist/packages/page/index/index.vue2.cjs +1 -1
- package/dist/packages/page/index/index.vue2.js +30 -28
- package/dist/packages/router/index.cjs +1 -1
- package/dist/packages/router/index.d.ts +1 -1
- package/dist/packages/router/index.js +10 -10
- package/dist/packages/utils/common.d.ts +2 -62
- package/dist/packages/utils/glob.d.ts +1 -1
- package/dist/packages/utils/type.d.ts +62 -0
- package/package.json +2 -2
package/dist/node/index.cjs
CHANGED
|
@@ -913,6 +913,64 @@ function mergeObject(a, b, j = 0, i) {
|
|
|
913
913
|
return a;
|
|
914
914
|
}
|
|
915
915
|
|
|
916
|
+
// packages/config.ts
|
|
917
|
+
var config = {
|
|
918
|
+
components: []
|
|
919
|
+
};
|
|
920
|
+
function userConfig(defaultConfig3) {
|
|
921
|
+
return mergeObject(config, defaultConfig3, 2);
|
|
922
|
+
}
|
|
923
|
+
function getConfig(key) {
|
|
924
|
+
return config[key];
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-7PJ2D3KR.js
|
|
928
|
+
function getVueText(content) {
|
|
929
|
+
const result = {
|
|
930
|
+
template: "",
|
|
931
|
+
scripts: [],
|
|
932
|
+
styles: [],
|
|
933
|
+
customBlocks: []
|
|
934
|
+
};
|
|
935
|
+
const templateRegex = /<template([\s\S]*?)>([\s\S]*?)<\/template>/;
|
|
936
|
+
const templateMatch = content.match(templateRegex);
|
|
937
|
+
if (templateMatch && templateMatch[2]) {
|
|
938
|
+
result.template = templateMatch[2];
|
|
939
|
+
}
|
|
940
|
+
const scriptRegex = /<script([\s\S]*?)>([\s\S]*?)<\/script>/g;
|
|
941
|
+
let scriptMatch;
|
|
942
|
+
while ((scriptMatch = scriptRegex.exec(content)) !== null) {
|
|
943
|
+
if (scriptMatch[2]) {
|
|
944
|
+
result.scripts.push(scriptMatch[2]);
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
const styleRegex = /<style([\s\S]*?)>([\s\S]*?)<\/style>/g;
|
|
948
|
+
let styleMatch;
|
|
949
|
+
while ((styleMatch = styleRegex.exec(content)) !== null) {
|
|
950
|
+
if (styleMatch[2]) {
|
|
951
|
+
result.styles.push(styleMatch[2]);
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
const customBlockRegex = /<([a-z][a-z0-9-]*)([\s\S]*?)>([\s\S]*?)<\/\1>/g;
|
|
955
|
+
let customMatch;
|
|
956
|
+
while ((customMatch = customBlockRegex.exec(content)) !== null) {
|
|
957
|
+
if (!["template", "script", "style"].includes(customMatch[1])) {
|
|
958
|
+
result.customBlocks.push({
|
|
959
|
+
type: customMatch[1],
|
|
960
|
+
content: customMatch[3]
|
|
961
|
+
});
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
return result;
|
|
965
|
+
}
|
|
966
|
+
function getVueTexts(content) {
|
|
967
|
+
const obj2 = getVueText(content);
|
|
968
|
+
return {
|
|
969
|
+
script: obj2.scripts.join("\n"),
|
|
970
|
+
style: obj2.styles.join("\n")
|
|
971
|
+
};
|
|
972
|
+
}
|
|
973
|
+
|
|
916
974
|
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-J7CICTHH.js
|
|
917
975
|
function humpToLine(name) {
|
|
918
976
|
const reg = /(([A-Z])([^A-Z]*))/g;
|
|
@@ -974,64 +1032,6 @@ function getSuffix2(url) {
|
|
|
974
1032
|
return "";
|
|
975
1033
|
}
|
|
976
1034
|
|
|
977
|
-
// packages/config.ts
|
|
978
|
-
var config = {
|
|
979
|
-
components: []
|
|
980
|
-
};
|
|
981
|
-
function userConfig(defaultConfig3) {
|
|
982
|
-
return mergeObject(config, defaultConfig3, 2);
|
|
983
|
-
}
|
|
984
|
-
function getConfig(key) {
|
|
985
|
-
return config[key];
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-7PJ2D3KR.js
|
|
989
|
-
function getVueText(content) {
|
|
990
|
-
const result = {
|
|
991
|
-
template: "",
|
|
992
|
-
scripts: [],
|
|
993
|
-
styles: [],
|
|
994
|
-
customBlocks: []
|
|
995
|
-
};
|
|
996
|
-
const templateRegex = /<template([\s\S]*?)>([\s\S]*?)<\/template>/;
|
|
997
|
-
const templateMatch = content.match(templateRegex);
|
|
998
|
-
if (templateMatch && templateMatch[2]) {
|
|
999
|
-
result.template = templateMatch[2];
|
|
1000
|
-
}
|
|
1001
|
-
const scriptRegex = /<script([\s\S]*?)>([\s\S]*?)<\/script>/g;
|
|
1002
|
-
let scriptMatch;
|
|
1003
|
-
while ((scriptMatch = scriptRegex.exec(content)) !== null) {
|
|
1004
|
-
if (scriptMatch[2]) {
|
|
1005
|
-
result.scripts.push(scriptMatch[2]);
|
|
1006
|
-
}
|
|
1007
|
-
}
|
|
1008
|
-
const styleRegex = /<style([\s\S]*?)>([\s\S]*?)<\/style>/g;
|
|
1009
|
-
let styleMatch;
|
|
1010
|
-
while ((styleMatch = styleRegex.exec(content)) !== null) {
|
|
1011
|
-
if (styleMatch[2]) {
|
|
1012
|
-
result.styles.push(styleMatch[2]);
|
|
1013
|
-
}
|
|
1014
|
-
}
|
|
1015
|
-
const customBlockRegex = /<([a-z][a-z0-9-]*)([\s\S]*?)>([\s\S]*?)<\/\1>/g;
|
|
1016
|
-
let customMatch;
|
|
1017
|
-
while ((customMatch = customBlockRegex.exec(content)) !== null) {
|
|
1018
|
-
if (!["template", "script", "style"].includes(customMatch[1])) {
|
|
1019
|
-
result.customBlocks.push({
|
|
1020
|
-
type: customMatch[1],
|
|
1021
|
-
content: customMatch[3]
|
|
1022
|
-
});
|
|
1023
|
-
}
|
|
1024
|
-
}
|
|
1025
|
-
return result;
|
|
1026
|
-
}
|
|
1027
|
-
function getVueTexts(content) {
|
|
1028
|
-
const obj2 = getVueText(content);
|
|
1029
|
-
return {
|
|
1030
|
-
script: obj2.scripts.join("\n"),
|
|
1031
|
-
style: obj2.styles.join("\n")
|
|
1032
|
-
};
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
1035
|
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-S6JRKYPY.js
|
|
1036
1036
|
function matchsStart2(key, matchs) {
|
|
1037
1037
|
if (matchs && matchs.length > 0) {
|
package/dist/node/index.js
CHANGED
|
@@ -895,6 +895,64 @@ function mergeObject(a, b, j = 0, i) {
|
|
|
895
895
|
return a;
|
|
896
896
|
}
|
|
897
897
|
|
|
898
|
+
// packages/config.ts
|
|
899
|
+
var config = {
|
|
900
|
+
components: []
|
|
901
|
+
};
|
|
902
|
+
function userConfig(defaultConfig3) {
|
|
903
|
+
return mergeObject(config, defaultConfig3, 2);
|
|
904
|
+
}
|
|
905
|
+
function getConfig(key) {
|
|
906
|
+
return config[key];
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-7PJ2D3KR.js
|
|
910
|
+
function getVueText(content) {
|
|
911
|
+
const result = {
|
|
912
|
+
template: "",
|
|
913
|
+
scripts: [],
|
|
914
|
+
styles: [],
|
|
915
|
+
customBlocks: []
|
|
916
|
+
};
|
|
917
|
+
const templateRegex = /<template([\s\S]*?)>([\s\S]*?)<\/template>/;
|
|
918
|
+
const templateMatch = content.match(templateRegex);
|
|
919
|
+
if (templateMatch && templateMatch[2]) {
|
|
920
|
+
result.template = templateMatch[2];
|
|
921
|
+
}
|
|
922
|
+
const scriptRegex = /<script([\s\S]*?)>([\s\S]*?)<\/script>/g;
|
|
923
|
+
let scriptMatch;
|
|
924
|
+
while ((scriptMatch = scriptRegex.exec(content)) !== null) {
|
|
925
|
+
if (scriptMatch[2]) {
|
|
926
|
+
result.scripts.push(scriptMatch[2]);
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
const styleRegex = /<style([\s\S]*?)>([\s\S]*?)<\/style>/g;
|
|
930
|
+
let styleMatch;
|
|
931
|
+
while ((styleMatch = styleRegex.exec(content)) !== null) {
|
|
932
|
+
if (styleMatch[2]) {
|
|
933
|
+
result.styles.push(styleMatch[2]);
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
const customBlockRegex = /<([a-z][a-z0-9-]*)([\s\S]*?)>([\s\S]*?)<\/\1>/g;
|
|
937
|
+
let customMatch;
|
|
938
|
+
while ((customMatch = customBlockRegex.exec(content)) !== null) {
|
|
939
|
+
if (!["template", "script", "style"].includes(customMatch[1])) {
|
|
940
|
+
result.customBlocks.push({
|
|
941
|
+
type: customMatch[1],
|
|
942
|
+
content: customMatch[3]
|
|
943
|
+
});
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
return result;
|
|
947
|
+
}
|
|
948
|
+
function getVueTexts(content) {
|
|
949
|
+
const obj2 = getVueText(content);
|
|
950
|
+
return {
|
|
951
|
+
script: obj2.scripts.join("\n"),
|
|
952
|
+
style: obj2.styles.join("\n")
|
|
953
|
+
};
|
|
954
|
+
}
|
|
955
|
+
|
|
898
956
|
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-J7CICTHH.js
|
|
899
957
|
function humpToLine(name) {
|
|
900
958
|
const reg = /(([A-Z])([^A-Z]*))/g;
|
|
@@ -956,64 +1014,6 @@ function getSuffix2(url) {
|
|
|
956
1014
|
return "";
|
|
957
1015
|
}
|
|
958
1016
|
|
|
959
|
-
// packages/config.ts
|
|
960
|
-
var config = {
|
|
961
|
-
components: []
|
|
962
|
-
};
|
|
963
|
-
function userConfig(defaultConfig3) {
|
|
964
|
-
return mergeObject(config, defaultConfig3, 2);
|
|
965
|
-
}
|
|
966
|
-
function getConfig(key) {
|
|
967
|
-
return config[key];
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-7PJ2D3KR.js
|
|
971
|
-
function getVueText(content) {
|
|
972
|
-
const result = {
|
|
973
|
-
template: "",
|
|
974
|
-
scripts: [],
|
|
975
|
-
styles: [],
|
|
976
|
-
customBlocks: []
|
|
977
|
-
};
|
|
978
|
-
const templateRegex = /<template([\s\S]*?)>([\s\S]*?)<\/template>/;
|
|
979
|
-
const templateMatch = content.match(templateRegex);
|
|
980
|
-
if (templateMatch && templateMatch[2]) {
|
|
981
|
-
result.template = templateMatch[2];
|
|
982
|
-
}
|
|
983
|
-
const scriptRegex = /<script([\s\S]*?)>([\s\S]*?)<\/script>/g;
|
|
984
|
-
let scriptMatch;
|
|
985
|
-
while ((scriptMatch = scriptRegex.exec(content)) !== null) {
|
|
986
|
-
if (scriptMatch[2]) {
|
|
987
|
-
result.scripts.push(scriptMatch[2]);
|
|
988
|
-
}
|
|
989
|
-
}
|
|
990
|
-
const styleRegex = /<style([\s\S]*?)>([\s\S]*?)<\/style>/g;
|
|
991
|
-
let styleMatch;
|
|
992
|
-
while ((styleMatch = styleRegex.exec(content)) !== null) {
|
|
993
|
-
if (styleMatch[2]) {
|
|
994
|
-
result.styles.push(styleMatch[2]);
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
const customBlockRegex = /<([a-z][a-z0-9-]*)([\s\S]*?)>([\s\S]*?)<\/\1>/g;
|
|
998
|
-
let customMatch;
|
|
999
|
-
while ((customMatch = customBlockRegex.exec(content)) !== null) {
|
|
1000
|
-
if (!["template", "script", "style"].includes(customMatch[1])) {
|
|
1001
|
-
result.customBlocks.push({
|
|
1002
|
-
type: customMatch[1],
|
|
1003
|
-
content: customMatch[3]
|
|
1004
|
-
});
|
|
1005
|
-
}
|
|
1006
|
-
}
|
|
1007
|
-
return result;
|
|
1008
|
-
}
|
|
1009
|
-
function getVueTexts(content) {
|
|
1010
|
-
const obj2 = getVueText(content);
|
|
1011
|
-
return {
|
|
1012
|
-
script: obj2.scripts.join("\n"),
|
|
1013
|
-
style: obj2.styles.join("\n")
|
|
1014
|
-
};
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
1017
|
// node_modules/.pnpm/@fangzhongya+utils@0.0.28/node_modules/@fangzhongya/utils/dist/chunk-S6JRKYPY.js
|
|
1018
1018
|
function matchsStart2(key, matchs) {
|
|
1019
1019
|
if (matchs && matchs.length > 0) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const q=require("../../utils/index.cjs");require("@fangzhongya/utils/basic/object/mergeObject");require("@fangzhongya/utils/basic/array/toggleArray");require("@fangzhongya/utils/name/humpToLine");require("@fangzhongya/utils/name/lineToLargeHump");require("@fangzhongya/utils/basic/string/appearNum");require("@fangzhongya/utils/basic/string/firstLower");require("@fangzhongya/utils/basic/array/duplicateRemoval");require("@fangzhongya/utils/basic/array/asyncMergeArray");require("@fangzhongya/utils/basic/string/firstUpper");require("@fangzhongya/utils/urls/getSuffix");require("@fangzhongya/utils/basic/array/replaceAfter");require("@fangzhongya/utils/
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const q=require("../../utils/index.cjs");require("@fangzhongya/utils/basic/object/mergeObject");require("@fangzhongya/utils/html/getVueText");require("@fangzhongya/utils/basic/array/toggleArray");require("@fangzhongya/utils/name/humpToLine");require("@fangzhongya/utils/name/lineToLargeHump");require("@fangzhongya/utils/basic/string/appearNum");require("@fangzhongya/utils/basic/string/firstLower");require("@fangzhongya/utils/basic/array/duplicateRemoval");require("@fangzhongya/utils/basic/array/asyncMergeArray");require("@fangzhongya/utils/basic/string/firstUpper");require("@fangzhongya/utils/urls/getSuffix");require("@fangzhongya/utils/basic/array/replaceAfter");require("@fangzhongya/utils/judge/matchsStart");require("@fangzhongya/utils/judge/matchsEnd");const a=require("../../utils/props.cjs"),p={titles:[],propss:[],slots:[],emitss:[],exposes:[]};function x(e,s){let t=e.charAt(0),l=[['"','"'],["'","'"],["`","`"],["(",")"],["{","}"],["[","]"]];const r=l.map(o=>o[0]);let i=r.indexOf(t);if(i!=-1){let o=[t];for(let n=1;n<e.length;n++){if(t=e[n],i=r.indexOf(t),i!=-1)i>2?o.push(t):o[o.length-1]===t?o.pop():o.push(t);else{let c=!1;for(let f of l)if(t===f[1]&&o[o.length-1]===f[0]){c=!0;break}c&&o.pop()}if(o.length===0)return s&&e[n+1]===" ",e.substring(0,n+1)}}else return s?e.substring(0,e.indexOf(" ")):e}function E(e){delete e.problems,delete e.source;let s=e.tag,t=e.name,l=e.description,r=e.default,i="",o="";if(s=="default")t=t.trim(),t=x(t)||t;else if(s=="selectable")t=t.trim();else{if(t.includes("=")){const f=t.split("=");t=f[0];const h=f[1]+" "+l,b=x(h,!0);b?(r=b,l=h.replace(b,"")):r=e.default||f[1]||""}const c=/\s*\((.*)\)\s/gi.exec(l);c&&c.length>0&&(i=c[1],l=l.replace(c[0],""))}return t.endsWith("*")&&(o="*",t=t.substring(0,t.length-1)),e.name=t,e.required=o,e.default=r||"",e.description=l,e.selectable=i,e}function O(e){let s=["title","text","author","date"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),g(l),t.arr.forEach(r=>{d(r.key,r.value)})}function g(e){p.titles.push(e)}function T(e){let s=["props","name","type","default","required","selectable","description","descriptions","return"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"props"),t.arr.forEach(r=>{d(r.key,r.value)})}function y(e){let s=["slot","name","selectable","description","descriptions"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"slot"),t.arr.forEach(r=>{d(r.key,r.value)})}function k(e){let s=["emits","name","selectable","description","descriptions"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"emits"),t.arr.forEach(r=>{d(r.key,r.value)})}function j(e){let s=["expose","name","type","return","selectable","description","descriptions"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"expose"),t.arr.forEach(r=>{d(r.key,r.value)})}function u(e,s){const t=p[s+"name"]||[],l=e.name??e[s]?.name,r=t.indexOf(l);r>=0&&(p[s+"s"].splice(r,1),t.splice(r,1)),p[s+"s"].push(e),t.push(l),p[s+"name"]=t}function S(){Object.keys(p).forEach(e=>{p[e]=[]})}function m(e,s){const t={descriptions:e?.description||""},l=[];return e?.tags&&e.tags?.forEach(r=>{let i=r.tag,o=E(r);if(!t.hasOwnProperty(i))t[i]=o;else{const n={};n[i]=o,l.push({key:i,value:n})}}),{arr:l,obj:t}}function d(e,s){switch(e){case"title":return g(s),!0;case"text":return g(s),!0;case"props":return u(s,"props"),!0;case"slot":return u(s,"slot"),!0;case"emits":return u(s,"emits"),!0;case"expose":return u(s,"expose"),!0;default:return!1}}function w(e,s){switch(e){case"title":return O(s),!0;case"props":return T(s),!0;case"slot":return y(s),!0;case"emits":return k(s),!0;case"expose":return j(s),!0;default:return!1}}function N(e){return S(),e?.forEach(s=>{let t=s?.tags||[],l=t?.length||0;if(l>0)for(let r=0;r<l;r++){const i=t[r]||{};if(w(i.tag,s))break}}),p}function P(e){let s=q.getTextNotes(e);return N(s)}const F=[{label:"属性名",prop:"name",formatter:a.props.name},{label:"说明",prop:"description",formatter:a.props.description},{label:"类型",prop:"type",formatter:a.props.type},{label:"可选值",prop:"selectable",formatter:a.props.selectable},{label:"默认值",prop:"default",formatter:a.props.default},{label:"必传",prop:"required",formatter:a.props.required},{label:"方法返回值",prop:"return",formatter:a.props.return}],v=[{label:"事件名",prop:"name",formatter:a.emits.name},{label:"说明",prop:"description",formatter:a.emits.description},{label:"回调参数",prop:"selectable",formatter:a.emits.selectable}],z=[{label:"方法名",prop:"name",formatter:a.expose.name},{label:"说明",prop:"description",formatter:a.expose.description},{label:"参数",prop:"selectable",formatter:a.expose.selectable},{label:"返回值",prop:"return",formatter(e){return a.expose.return(e)||e.expose.default||""}},{label:"类型",prop:"type",formatter(e){return a.expose.type(e)||"function"}}],A=[{label:"插槽名",prop:"name",formatter:a.slot.name},{label:"说明",prop:"description",formatter:a.slot.description},{label:"作用域参数",prop:"selectable",formatter:a.slot.selectable}];exports.getNotesText=P;exports.temits=v;exports.texpose=z;exports.tprops=F;exports.tslot=A;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { getTextNotes as T } from "../../utils/index.js";
|
|
2
2
|
import "@fangzhongya/utils/basic/object/mergeObject";
|
|
3
|
+
import "@fangzhongya/utils/html/getVueText";
|
|
3
4
|
import "@fangzhongya/utils/basic/array/toggleArray";
|
|
4
5
|
import "@fangzhongya/utils/name/humpToLine";
|
|
5
6
|
import "@fangzhongya/utils/name/lineToLargeHump";
|
|
@@ -10,7 +11,6 @@ import "@fangzhongya/utils/basic/array/asyncMergeArray";
|
|
|
10
11
|
import "@fangzhongya/utils/basic/string/firstUpper";
|
|
11
12
|
import "@fangzhongya/utils/urls/getSuffix";
|
|
12
13
|
import "@fangzhongya/utils/basic/array/replaceAfter";
|
|
13
|
-
import "@fangzhongya/utils/html/getVueText";
|
|
14
14
|
import "@fangzhongya/utils/judge/matchsStart";
|
|
15
15
|
import "@fangzhongya/utils/judge/matchsEnd";
|
|
16
16
|
import { props as f, emits as g, expose as m, slot as x } from "../../utils/props.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("vue"),s=require("../boxurl/index.vue.cjs"),u=require("../../../_virtual/common.cjs"),i=require("markdown-it"),_=require("../../utils/glob.cjs"),d={class:"md"},v={class:"md-top-name"},m=["innerHTML"],h=e.defineComponent({__name:"index",props:{value:Object},setup(a){const t=a,n=e.ref(""),l=new i({html:!0,xhtmlOut:!0,highlight:function(r,o){if(o&&u.getLanguage(o))try{return u.highlight(r,{language:o}).value}catch{}return""}});e.watch(()=>t.value,()=>{c()});function c(){t.value?.key&&_.getLocalTextTests(t.value).then(r=>{n.value=l.render(r)}).catch(()=>{n.value=""})}return c(),(r,o)=>(e.openBlock(),e.createElementBlock("div",d,[n.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createVNode(s,{value:t.value},{default:e.withCtx(()=>[e.createElementVNode("div",v,e.toDisplayString(t.value?.value)+" 说明文档
|
|
1
|
+
"use strict";const e=require("vue"),s=require("../boxurl/index.vue.cjs"),u=require("../../../_virtual/common.cjs"),i=require("markdown-it"),_=require("../../utils/glob.cjs"),d={class:"md"},v={class:"md-top-name"},m=["innerHTML"],h=e.defineComponent({__name:"index",props:{value:Object},setup(a){const t=a,n=e.ref(""),l=new i({html:!0,xhtmlOut:!0,highlight:function(r,o){if(o&&u.getLanguage(o))try{return u.highlight(r,{language:o}).value}catch{}return""}});e.watch(()=>t.value,()=>{c()});function c(){t.value?.key&&_.getLocalTextTests(t.value).then(r=>{n.value=l.render(r)}).catch(()=>{n.value=""})}return c(),(r,o)=>(e.openBlock(),e.createElementBlock("div",d,[n.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createVNode(s,{value:t.value},{default:e.withCtx(()=>[e.createElementVNode("div",v,e.toDisplayString(t.value?.value)+" 说明文档",1)]),_:1},8,["value"]),e.createElementVNode("div",{innerHTML:n.value},null,8,m)],64)):e.createCommentVNode("",!0)]))}});module.exports=h;
|
|
@@ -1,18 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
name: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
};
|
|
6
|
+
html: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default(): string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11
|
+
refresh: (...args: any[]) => void;
|
|
12
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
13
|
+
name: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
};
|
|
16
|
+
html: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default(): string;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{
|
|
21
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
html: string;
|
|
24
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
25
|
+
export default _default;
|
package/dist/packages/config.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@fangzhongya/utils/basic/object/mergeObject"),n={components:[]};function o(e){return t.mergeObject(n,e,2)}function r(e){return n[e]}exports.getConfig=r;exports.userConfig=o;
|
package/dist/packages/config.js
CHANGED
|
@@ -1,24 +1,14 @@
|
|
|
1
|
-
import { mergeObject as
|
|
2
|
-
|
|
3
|
-
import "@fangzhongya/utils/name/humpToLine";
|
|
4
|
-
import "@fangzhongya/utils/name/lineToLargeHump";
|
|
5
|
-
import "@fangzhongya/utils/basic/string/appearNum";
|
|
6
|
-
import "@fangzhongya/utils/basic/string/firstLower";
|
|
7
|
-
import "@fangzhongya/utils/basic/array/duplicateRemoval";
|
|
8
|
-
import "@fangzhongya/utils/basic/array/asyncMergeArray";
|
|
9
|
-
import "@fangzhongya/utils/basic/string/firstUpper";
|
|
10
|
-
import "@fangzhongya/utils/urls/getSuffix";
|
|
11
|
-
import "@fangzhongya/utils/basic/array/replaceAfter";
|
|
12
|
-
const t = {
|
|
1
|
+
import { mergeObject as t } from "@fangzhongya/utils/basic/object/mergeObject";
|
|
2
|
+
const o = {
|
|
13
3
|
components: []
|
|
14
4
|
};
|
|
15
|
-
function
|
|
16
|
-
return
|
|
5
|
+
function r(n) {
|
|
6
|
+
return t(o, n, 2);
|
|
17
7
|
}
|
|
18
|
-
function
|
|
19
|
-
return
|
|
8
|
+
function c(n) {
|
|
9
|
+
return o[n];
|
|
20
10
|
}
|
|
21
11
|
export {
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
c as getConfig,
|
|
13
|
+
r as userConfig
|
|
24
14
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("vue"),c=require("../../directives/adjust/index.cjs"),d=require("../../components/aside/index.vue.cjs"),a=require("../../components/header/index.vue.cjs"),r=require("../../components/main/index.vue.cjs"),u=require("../../utils/glob.cjs"),_=require("vue-router"),l={class:"__document-index"},v={class:"index-aside"},m={class:"index-aside-div"},h={class:"index-body"},p={class:"index-div"},x={class:"index-header"},q={class:"index-main"},N={class:"index-main-div"},g=e.defineComponent({__name:"index",setup(E){const n=_.useRoute(),t=e.ref({});function s(i){t.value=i}e.watch(()=>n.query?.id,()=>{o()});function o(){n.query?.id&&(t.value=u.getCompoName(n.query.id+"")[0])}return o(),(i,V)=>(e.openBlock(),e.createElementBlock("div",l,[e.withDirectives((e.openBlock(),e.createElementBlock("div",v,[e.createElementVNode("div",m,[e.createVNode(d,{value:t.value,onChange:s},null,8,["value"])])])),[[e.unref(c),{right:{}}]]),e.createElementVNode("div",h,[e.createElementVNode("div",p,[e.createElementVNode("div",x,[e.createVNode(a)]),e.createElementVNode("div",q,[e.createElementVNode("div",N,[(e.openBlock(),e.createBlock(r,{key:t.value?.name,value:t.value},null,8,["value"]))])])])])]))}});module.exports=g;
|
|
1
|
+
"use strict";const e=require("vue"),c=require("../../directives/adjust/index.cjs"),d=require("../../components/aside/index.vue.cjs"),a=require("../../components/header/index.vue.cjs"),r=require("../../components/main/index.vue.cjs"),u=require("../../utils/glob.cjs"),_=require("vue-router"),l={class:"__document-index"},v={class:"index-aside"},m={class:"index-aside-div"},h={class:"index-body"},p={class:"index-div"},x={class:"index-header"},q={class:"index-main"},N={class:"index-main-div"},g=e.defineComponent({__name:"index",setup(E){const n=_.useRoute(),t=e.ref({});function s(i){t.value=i}e.watch(()=>n.query?.id,()=>{o()});function o(){n.query?.id&&(t.value=u.getCompoName(n.query.id+"")[0]||{})}return e.onMounted(()=>{o()}),(i,V)=>(e.openBlock(),e.createElementBlock("div",l,[e.withDirectives((e.openBlock(),e.createElementBlock("div",v,[e.createElementVNode("div",m,[e.createVNode(d,{value:t.value,onChange:s},null,8,["value"])])])),[[e.unref(c),{right:{}}]]),e.createElementVNode("div",h,[e.createElementVNode("div",p,[e.createElementVNode("div",x,[e.createVNode(a)]),e.createElementVNode("div",q,[e.createElementVNode("div",N,[(e.openBlock(),e.createBlock(r,{key:t.value?.name,value:t.value},null,8,["value"]))])])])])]))}});module.exports=g;
|
|
@@ -1,49 +1,51 @@
|
|
|
1
|
-
import { defineComponent as r, ref as _, watch as l, createElementBlock as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import { getCompoName as
|
|
7
|
-
import { useRoute as
|
|
8
|
-
const
|
|
1
|
+
import { defineComponent as r, ref as _, watch as l, onMounted as m, createElementBlock as d, openBlock as t, withDirectives as u, createElementVNode as e, createVNode as a, unref as v, createBlock as f } from "vue";
|
|
2
|
+
import h from "../../directives/adjust/index.js";
|
|
3
|
+
import p from "../../components/aside/index.vue.js";
|
|
4
|
+
import x from "../../components/header/index.vue.js";
|
|
5
|
+
import g from "../../components/main/index.vue.js";
|
|
6
|
+
import { getCompoName as y } from "../../utils/glob.js";
|
|
7
|
+
import { useRoute as k } from "vue-router";
|
|
8
|
+
const C = { class: "__document-index" }, q = { class: "index-aside" }, B = { class: "index-aside-div" }, N = { class: "index-body" }, w = { class: "index-div" }, D = { class: "index-header" }, E = { class: "index-main" }, V = { class: "index-main-div" }, G = /* @__PURE__ */ r({
|
|
9
9
|
__name: "index",
|
|
10
|
-
setup(
|
|
11
|
-
const
|
|
10
|
+
setup($) {
|
|
11
|
+
const i = k(), o = _({});
|
|
12
12
|
function c(s) {
|
|
13
|
-
|
|
13
|
+
o.value = s;
|
|
14
14
|
}
|
|
15
15
|
l(
|
|
16
|
-
() =>
|
|
16
|
+
() => i.query?.id,
|
|
17
17
|
() => {
|
|
18
18
|
n();
|
|
19
19
|
}
|
|
20
20
|
);
|
|
21
21
|
function n() {
|
|
22
|
-
|
|
22
|
+
i.query?.id && (o.value = y(i.query.id + "")[0] || {});
|
|
23
23
|
}
|
|
24
|
-
return
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
return m(() => {
|
|
25
|
+
n();
|
|
26
|
+
}), (s, b) => (t(), d("div", C, [
|
|
27
|
+
u((t(), d("div", q, [
|
|
28
|
+
e("div", B, [
|
|
29
|
+
a(p, {
|
|
30
|
+
value: o.value,
|
|
29
31
|
onChange: c
|
|
30
32
|
}, null, 8, ["value"])
|
|
31
33
|
])
|
|
32
34
|
])), [
|
|
33
|
-
[
|
|
35
|
+
[v(h), {
|
|
34
36
|
right: {}
|
|
35
37
|
}]
|
|
36
38
|
]),
|
|
37
|
-
e("div",
|
|
38
|
-
e("div",
|
|
39
|
-
e("div", w, [
|
|
40
|
-
d(p)
|
|
41
|
-
]),
|
|
39
|
+
e("div", N, [
|
|
40
|
+
e("div", w, [
|
|
42
41
|
e("div", D, [
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
42
|
+
a(x)
|
|
43
|
+
]),
|
|
44
|
+
e("div", E, [
|
|
45
|
+
e("div", V, [
|
|
46
|
+
(t(), f(g, {
|
|
47
|
+
key: o.value?.name,
|
|
48
|
+
value: o.value
|
|
47
49
|
}, null, 8, ["value"]))
|
|
48
50
|
])
|
|
49
51
|
])
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("../config.cjs"),l=require("../utils/storage.cjs");require("@fangzhongya/utils/basic/string/firstUpper");const f=require("./file.cjs"),g=e=>Object.freeze(Object.defineProperty({__proto__:null,default:e},Symbol.toStringTag,{value:"Module"})),s=[{path:"/__document",name:"__document",component:()=>Promise.resolve().then(()=>g(require("../index/index.vue.cjs"))),redirect:{name:"__documentIndex"},meta:{title:"文档"},children:[]}];let m=0;document.addEventListener("keydown",y);function y(e){e=e||window.event,(e.ctrlKey&&e.location==82||e.location==116)&&l.setSession("-keydown-F5",2)}let o="__document";function h(e){o=u.getConfig("router")||"__document";let t="/"+o;s[0].path=t,s[0].redirect={name:o+"Index"},s[0].children?.unshift({path:t+"/:chapters+",redirect:{name:o+"Index"}}),f.getFileName().forEach(n=>{s[0].children?.push({path:n.value,name:o+n.name,component:n.component})});const a=u.getConfig("redirect");if(s.forEach(n=>{e.addRoute(n),e.beforeEach((i,c)=>{if(c.fullPath=="/"){let p=l.getSession("-keydown-F5");document.referrer||p==2?(console.log("刷新"),m=2):(console.log("地址栏输入 或者 刷新"),m=3)}else console.log("跳转"),m=1;l.setSession("-keydown-F5",0)})}),a){const n=e.getRoutes().filter(i=>i.path=="/")[0]||{path:"/"};n.redirect=t,n.name?e.addRoute(n.name,n):e.addRoute(n)}}const d={};function k(e){let t=e.path,a=e.params;if(a&&Object.keys(a).length)return a;{let n=d[t];return n&&Object.keys(n).length?n:m==3?{}:l.getSession("router.toPage."+t)}}function r(e,t,a="push"){let n=t.path||"";const i=t.name,c=t.params||{};e[a](t),i&&(n=e.resolve({name:i}).path),d[n]=c,l.setSession("router.toPage."+n,c)}function v(e,t){r(e,{name:o+"Single",query:{id:t
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("../config.cjs"),l=require("../utils/storage.cjs");require("@fangzhongya/utils/basic/string/firstUpper");const f=require("./file.cjs"),g=e=>Object.freeze(Object.defineProperty({__proto__:null,default:e},Symbol.toStringTag,{value:"Module"})),s=[{path:"/__document",name:"__document",component:()=>Promise.resolve().then(()=>g(require("../index/index.vue.cjs"))),redirect:{name:"__documentIndex"},meta:{title:"文档"},children:[]}];let m=0;document.addEventListener("keydown",y);function y(e){e=e||window.event,(e.ctrlKey&&e.location==82||e.location==116)&&l.setSession("-keydown-F5",2)}let o="__document";function h(e){o=u.getConfig("router")||"__document";let t="/"+o;s[0].path=t,s[0].redirect={name:o+"Index"},s[0].children?.unshift({path:t+"/:chapters+",redirect:{name:o+"Index"}}),f.getFileName().forEach(n=>{s[0].children?.push({path:n.value,name:o+n.name,component:n.component})});const a=u.getConfig("redirect");if(s.forEach(n=>{e.addRoute(n),e.beforeEach((i,c)=>{if(c.fullPath=="/"){let p=l.getSession("-keydown-F5");document.referrer||p==2?(console.log("刷新"),m=2):(console.log("地址栏输入 或者 刷新"),m=3)}else console.log("跳转"),m=1;l.setSession("-keydown-F5",0)})}),a){const n=e.getRoutes().filter(i=>i.path=="/")[0]||{path:"/"};n.redirect=t,n.name?e.addRoute(n.name,n):e.addRoute(n)}}const d={};function k(e){let t=e.path,a=e.params;if(a&&Object.keys(a).length)return a;{let n=d[t];return n&&Object.keys(n).length?n:m==3?{}:l.getSession("router.toPage."+t)}}function r(e,t,a="push"){let n=t.path||"";const i=t.name,c=t.params||{};e[a](t),i&&(n=e.resolve({name:i}).path),d[n]=c,l.setSession("router.toPage."+n,c)}function v(e,t){r(e,{name:o+"Single",query:{id:t?.name+"/"+t?.value},params:{key:t?.key,comkey:t?.comkey}})}function _(e,t){r(e,{name:o+"Develop",query:{id:t?.value},params:{key:t?.key}})}function P(e,t){r(e,{name:o+"Edit",query:{id:t?.value},params:{key:t?.key}})}function S(e,t){r(e,{name:o+"Tests",query:{id:t?.value},params:{key:t?.key}})}function q(e,t){r(e,{name:o+"Compon",query:{id:t?.value},params:{key:t?.key}})}exports.getPageParams=k;exports.init=h;exports.toCompon=q;exports.toDevelop=_;exports.toEdit=P;exports.toPage=r;exports.toSingle=v;exports.toTests=S;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Router, LocationQueryRaw, RouteParamsRaw, RouteLocationNormalizedLoaded } from 'vue-router';
|
|
2
|
-
import { TestsObj, ComponentsObj } from '../utils/
|
|
2
|
+
import { TestsObj, ComponentsObj } from '../utils/type';
|
|
3
3
|
import { ObjUnk } from '../config';
|
|
4
4
|
export declare function init(router: Router): void;
|
|
5
5
|
type ToPush = 'replace' | 'push';
|
|
@@ -68,45 +68,45 @@ function E(t, e) {
|
|
|
68
68
|
m(t, {
|
|
69
69
|
name: o + "Single",
|
|
70
70
|
query: {
|
|
71
|
-
id: e
|
|
71
|
+
id: e?.name + "/" + e?.value
|
|
72
72
|
},
|
|
73
|
-
params: { key: e
|
|
73
|
+
params: { key: e?.key, comkey: e?.comkey }
|
|
74
74
|
});
|
|
75
75
|
}
|
|
76
76
|
function q(t, e) {
|
|
77
77
|
m(t, {
|
|
78
78
|
name: o + "Develop",
|
|
79
79
|
query: {
|
|
80
|
-
id: e
|
|
80
|
+
id: e?.value
|
|
81
81
|
},
|
|
82
|
-
params: { key: e
|
|
82
|
+
params: { key: e?.key }
|
|
83
83
|
});
|
|
84
84
|
}
|
|
85
85
|
function x(t, e) {
|
|
86
86
|
m(t, {
|
|
87
87
|
name: o + "Edit",
|
|
88
88
|
query: {
|
|
89
|
-
id: e
|
|
89
|
+
id: e?.value
|
|
90
90
|
},
|
|
91
|
-
params: { key: e
|
|
91
|
+
params: { key: e?.key }
|
|
92
92
|
});
|
|
93
93
|
}
|
|
94
94
|
function F(t, e) {
|
|
95
95
|
m(t, {
|
|
96
96
|
name: o + "Tests",
|
|
97
97
|
query: {
|
|
98
|
-
id: e
|
|
98
|
+
id: e?.value
|
|
99
99
|
},
|
|
100
|
-
params: { key: e
|
|
100
|
+
params: { key: e?.key }
|
|
101
101
|
});
|
|
102
102
|
}
|
|
103
103
|
function R(t, e) {
|
|
104
104
|
m(t, {
|
|
105
105
|
name: o + "Compon",
|
|
106
106
|
query: {
|
|
107
|
-
id: e
|
|
107
|
+
id: e?.value
|
|
108
108
|
},
|
|
109
|
-
params: { key: e
|
|
109
|
+
params: { key: e?.key }
|
|
110
110
|
});
|
|
111
111
|
}
|
|
112
112
|
export {
|
|
@@ -1,70 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Components, Globs, GlobComs, FangMatch, GetRaw } from '../config';
|
|
2
|
+
import { PropsObj, ComponentsObj } from './type';
|
|
3
3
|
export declare const defaultExtensions: string[];
|
|
4
4
|
/**
|
|
5
5
|
* 判断是否匹配
|
|
6
6
|
*/
|
|
7
7
|
export declare function isUrlsMatchistarts(key: string, arr: Array<string>): boolean;
|
|
8
|
-
export interface TextObj {
|
|
9
|
-
name: string;
|
|
10
|
-
value: string;
|
|
11
|
-
suffix: string;
|
|
12
|
-
key: string;
|
|
13
|
-
cwd?: string;
|
|
14
|
-
raw: string;
|
|
15
|
-
getRaw: GetRaw | null;
|
|
16
|
-
}
|
|
17
|
-
export interface PropObj {
|
|
18
|
-
url: string;
|
|
19
|
-
comprops?: Array<FangMatch>;
|
|
20
|
-
curprops?: Array<FangMatch>;
|
|
21
|
-
name: string;
|
|
22
|
-
value: string;
|
|
23
|
-
suffix: string;
|
|
24
|
-
head: string;
|
|
25
|
-
key: string;
|
|
26
|
-
cwd?: string;
|
|
27
|
-
dir: string;
|
|
28
|
-
}
|
|
29
|
-
export interface PropsObj extends TextObj {
|
|
30
|
-
url: string;
|
|
31
|
-
comprops?: Array<FangMatch>;
|
|
32
|
-
curprops?: Array<FangMatch>;
|
|
33
|
-
dir: string;
|
|
34
|
-
tdir: string;
|
|
35
|
-
key: string;
|
|
36
|
-
}
|
|
37
|
-
export interface MdObj extends TextObj {
|
|
38
|
-
topurl: string;
|
|
39
|
-
comkey: string;
|
|
40
|
-
name: string;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* 调试文件对象
|
|
44
|
-
*/
|
|
45
|
-
export interface TestsObj extends TextObj {
|
|
46
|
-
dir: string;
|
|
47
|
-
url: string;
|
|
48
|
-
topurl: string;
|
|
49
|
-
name: string;
|
|
50
|
-
comname: string;
|
|
51
|
-
comkey: string;
|
|
52
|
-
component: AsyncComponentLoader;
|
|
53
|
-
}
|
|
54
|
-
export interface ComponentsObj extends Component, TextObj {
|
|
55
|
-
url: string;
|
|
56
|
-
name: string;
|
|
57
|
-
tdir: string;
|
|
58
|
-
adir: string;
|
|
59
|
-
aliasNames: Array<string>;
|
|
60
|
-
component?: AsyncComponentLoader;
|
|
61
|
-
comprops?: Array<FangMatch>;
|
|
62
|
-
curprops?: Array<FangMatch>;
|
|
63
|
-
tests: {
|
|
64
|
-
[key: string]: TestsObj;
|
|
65
|
-
} | undefined;
|
|
66
|
-
mds?: MdObj[];
|
|
67
|
-
}
|
|
68
8
|
/**
|
|
69
9
|
* 通过url 地址获取对应数据
|
|
70
10
|
* @param url
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { AsyncComponentLoader } from '../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
import { Component, GetRaw, FangMatch } from '../config';
|
|
3
|
+
export interface TextObj {
|
|
4
|
+
name: string;
|
|
5
|
+
value: string;
|
|
6
|
+
suffix: string;
|
|
7
|
+
key: string;
|
|
8
|
+
cwd?: string;
|
|
9
|
+
raw: string;
|
|
10
|
+
getRaw: GetRaw | null;
|
|
11
|
+
}
|
|
12
|
+
export interface PropObj {
|
|
13
|
+
url: string;
|
|
14
|
+
comprops?: Array<FangMatch>;
|
|
15
|
+
curprops?: Array<FangMatch>;
|
|
16
|
+
name: string;
|
|
17
|
+
value: string;
|
|
18
|
+
suffix: string;
|
|
19
|
+
head: string;
|
|
20
|
+
key: string;
|
|
21
|
+
cwd?: string;
|
|
22
|
+
dir: string;
|
|
23
|
+
}
|
|
24
|
+
export interface PropsObj extends TextObj {
|
|
25
|
+
url: string;
|
|
26
|
+
comprops?: Array<FangMatch>;
|
|
27
|
+
curprops?: Array<FangMatch>;
|
|
28
|
+
dir: string;
|
|
29
|
+
tdir: string;
|
|
30
|
+
key: string;
|
|
31
|
+
}
|
|
32
|
+
export interface MdObj extends TextObj {
|
|
33
|
+
topurl: string;
|
|
34
|
+
comkey: string;
|
|
35
|
+
name: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* 调试文件对象
|
|
39
|
+
*/
|
|
40
|
+
export interface TestsObj extends TextObj {
|
|
41
|
+
dir: string;
|
|
42
|
+
url: string;
|
|
43
|
+
topurl: string;
|
|
44
|
+
name: string;
|
|
45
|
+
comname: string;
|
|
46
|
+
comkey: string;
|
|
47
|
+
component: AsyncComponentLoader;
|
|
48
|
+
}
|
|
49
|
+
export interface ComponentsObj extends Component, TextObj {
|
|
50
|
+
url: string;
|
|
51
|
+
name: string;
|
|
52
|
+
tdir: string;
|
|
53
|
+
adir: string;
|
|
54
|
+
aliasNames: Array<string>;
|
|
55
|
+
component?: AsyncComponentLoader;
|
|
56
|
+
comprops?: Array<FangMatch>;
|
|
57
|
+
curprops?: Array<FangMatch>;
|
|
58
|
+
tests: {
|
|
59
|
+
[key: string]: TestsObj;
|
|
60
|
+
} | undefined;
|
|
61
|
+
mds?: MdObj[];
|
|
62
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fangzhongya/vue-archive",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.85",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description ": "vue 组件注释生成文档",
|
|
7
7
|
"author": "fangzhongya ",
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
"vite": "^7.1.3",
|
|
34
34
|
"vite-plugin-dts": "4.5.4",
|
|
35
35
|
"vitest": "^3.2.4",
|
|
36
|
-
"vue-router": "^4.5.1",
|
|
37
36
|
"vue-tsc": "^3.0.5",
|
|
38
37
|
"@codemirror/autocomplete": "6.18.6",
|
|
39
38
|
"@codemirror/lang-css": "^6.3.1",
|
|
@@ -50,6 +49,7 @@
|
|
|
50
49
|
"markdown-it": "^14.1.0",
|
|
51
50
|
"monaco-editor": "^0.52.2",
|
|
52
51
|
"prettier": "^3.6.2",
|
|
52
|
+
"vue-router": "^4.5.1",
|
|
53
53
|
"vue": "^3.5.18"
|
|
54
54
|
},
|
|
55
55
|
"types": "./dist/packages/index.d.ts",
|