@fangzhongya/vue-components 0.1.18 → 0.1.20
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/archive.cjs +6 -6
- package/dist/archive.d.cts +10 -0
- package/dist/archive.d.ts +10 -0
- package/dist/archive.js +4 -4
- package/dist/{chunk-VP5RIE57.js → chunk-BYSC7OW2.js} +2 -2
- package/dist/{chunk-QJWZJHFG.js → chunk-FU4WJYFK.js} +22 -15
- package/dist/{chunk-F2PKOFAZ.cjs → chunk-G77ZHBIW.cjs} +4 -4
- package/dist/{chunk-XMZBDIKY.cjs → chunk-HHOXRED7.cjs} +1 -1
- package/dist/{chunk-M6Y4OKJR.cjs → chunk-QWU3JOQN.cjs} +10 -10
- package/dist/{chunk-BDZPEKUD.js → chunk-RHUKOWKH.js} +1 -1
- package/dist/{chunk-5ZYL6JOZ.cjs → chunk-S6ZDMFHL.cjs} +33 -26
- package/dist/{chunk-ZRYXYGML.js → chunk-VOW7W52X.js} +8 -8
- package/dist/component.cjs +4 -4
- package/dist/component.d.cts +22 -0
- package/dist/component.d.ts +22 -0
- package/dist/component.js +3 -3
- package/dist/config.d.cts +138 -0
- package/dist/config.d.ts +138 -0
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +4 -4
- package/dist/library.cjs +2 -2
- package/dist/library.d.cts +14 -0
- package/dist/library.d.ts +14 -0
- package/dist/library.js +1 -1
- package/dist/resolver.cjs +5 -5
- package/dist/resolver.d.cts +10 -0
- package/dist/resolver.d.ts +10 -0
- package/dist/resolver.js +4 -4
- package/dist/util.cjs +3 -3
- package/dist/util.d.cts +5 -0
- package/dist/util.d.ts +5 -0
- package/dist/util.js +2 -2
- package/package.json +8 -8
package/dist/archive.cjs
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkS6ZDMFHLcjs = require('./chunk-S6ZDMFHL.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkUNBQUEQ4cjs = require('./chunk-UNBQUEQ4.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
9
|
+
var _chunkQWU3JOQNcjs = require('./chunk-QWU3JOQN.cjs');
|
|
10
|
+
require('./chunk-HHOXRED7.cjs');
|
|
11
11
|
|
|
12
12
|
// packages/archive.ts
|
|
13
13
|
var _fs = require('fs');
|
|
14
14
|
var _path = require('path');
|
|
15
15
|
|
|
16
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
16
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-5HC662VK.js
|
|
17
17
|
var TYPE_MARKERS = {
|
|
18
18
|
FUNCTION_REF: "_FR_",
|
|
19
19
|
CODE_BLOCK: "_CB_",
|
|
@@ -299,8 +299,8 @@ function setJson(obj) {
|
|
|
299
299
|
}
|
|
300
300
|
}
|
|
301
301
|
function ComponentsResolverArchive(config2 = {}) {
|
|
302
|
-
const configs =
|
|
303
|
-
const fangComp = new (0,
|
|
302
|
+
const configs = _chunkQWU3JOQNcjs.unmergeObject.call(void 0, _chunkUNBQUEQ4cjs.config, archiveConfig, 2, true);
|
|
303
|
+
const fangComp = new (0, _chunkS6ZDMFHLcjs.component_default)(_chunkQWU3JOQNcjs.unmergeObject.call(void 0, configs, config2, 1));
|
|
304
304
|
setJson(fangComp.config);
|
|
305
305
|
return [
|
|
306
306
|
{
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FangConfig } from './config.cjs';
|
|
2
|
+
import { ComponentResolver } from 'unplugin-vue-components';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* 自动按需匹配注册
|
|
6
|
+
* @returns
|
|
7
|
+
*/
|
|
8
|
+
declare function ComponentsResolverArchive(config?: FangConfig): ComponentResolver[];
|
|
9
|
+
|
|
10
|
+
export { ComponentsResolverArchive };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FangConfig } from './config.js';
|
|
2
|
+
import { ComponentResolver } from 'unplugin-vue-components';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* 自动按需匹配注册
|
|
6
|
+
* @returns
|
|
7
|
+
*/
|
|
8
|
+
declare function ComponentsResolverArchive(config?: FangConfig): ComponentResolver[];
|
|
9
|
+
|
|
10
|
+
export { ComponentsResolverArchive };
|
package/dist/archive.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import {
|
|
2
2
|
component_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FU4WJYFK.js";
|
|
4
4
|
import {
|
|
5
5
|
config
|
|
6
6
|
} from "./chunk-DURXCSNX.js";
|
|
7
7
|
import {
|
|
8
8
|
unmergeObject
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-VOW7W52X.js";
|
|
10
|
+
import "./chunk-RHUKOWKH.js";
|
|
11
11
|
|
|
12
12
|
// packages/archive.ts
|
|
13
13
|
import { writeFile } from "fs";
|
|
14
14
|
import { resolve } from "path";
|
|
15
15
|
|
|
16
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
16
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-5HC662VK.js
|
|
17
17
|
var TYPE_MARKERS = {
|
|
18
18
|
FUNCTION_REF: "_FR_",
|
|
19
19
|
CODE_BLOCK: "_CB_",
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
component_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FU4WJYFK.js";
|
|
4
4
|
import {
|
|
5
5
|
config
|
|
6
6
|
} from "./chunk-DURXCSNX.js";
|
|
7
7
|
import {
|
|
8
8
|
unmergeObject
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-VOW7W52X.js";
|
|
10
10
|
|
|
11
11
|
// packages/resolver.ts
|
|
12
12
|
function ComponentsResolver(config2 = {}) {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getComponentNames,
|
|
3
3
|
styleLog
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-VOW7W52X.js";
|
|
5
5
|
import {
|
|
6
6
|
humpToLine
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-RHUKOWKH.js";
|
|
8
8
|
|
|
9
9
|
// packages/component.ts
|
|
10
10
|
import fastGlob from "fast-glob";
|
|
11
11
|
import { resolve } from "path";
|
|
12
12
|
|
|
13
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
13
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-YNOFNHEK.js
|
|
14
14
|
function matchsEnd(key, matchs) {
|
|
15
15
|
if (matchs && matchs.length > 0) {
|
|
16
16
|
for (const value of matchs) {
|
|
@@ -30,7 +30,7 @@ function matchsEnd(key, matchs) {
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
33
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-S6JRKYPY.js
|
|
34
34
|
function matchsStart(key, matchs) {
|
|
35
35
|
if (matchs && matchs.length > 0) {
|
|
36
36
|
for (const value of matchs) {
|
|
@@ -133,17 +133,24 @@ var FangComponent = class {
|
|
|
133
133
|
};
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
|
-
#getMatchsUrl(
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
136
|
+
// #getMatchsUrl(
|
|
137
|
+
// urls: Array<string>,
|
|
138
|
+
// name: string,
|
|
139
|
+
// type: string,
|
|
140
|
+
// config: Config,
|
|
141
|
+
// ) {
|
|
142
|
+
// const arr = this.#getNames()(name, type, config);
|
|
143
|
+
// const ms: FangMatchs = [];
|
|
144
|
+
// const m = config.matchextss;
|
|
145
|
+
// if (m) {
|
|
146
|
+
// ms.push(m);
|
|
147
|
+
// }
|
|
148
|
+
// return (
|
|
149
|
+
// urls.filter((v) => {
|
|
150
|
+
// return isUrlsMatchi(v, arr, ms);
|
|
151
|
+
// })[0] || ''
|
|
152
|
+
// );
|
|
153
|
+
// }
|
|
147
154
|
#isMatchFile(url, arr, matchexts, nomatchexts) {
|
|
148
155
|
const is = isUrlsMatchi(url, arr, matchexts);
|
|
149
156
|
if (is && nomatchexts && nomatchexts.length > 0) {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkS6ZDMFHLcjs = require('./chunk-S6ZDMFHL.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkUNBQUEQ4cjs = require('./chunk-UNBQUEQ4.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkQWU3JOQNcjs = require('./chunk-QWU3JOQN.cjs');
|
|
10
10
|
|
|
11
11
|
// packages/resolver.ts
|
|
12
12
|
function ComponentsResolver(config2 = {}) {
|
|
13
|
-
const configs =
|
|
14
|
-
const fangComp = new (0,
|
|
13
|
+
const configs = _chunkQWU3JOQNcjs.unmergeObject.call(void 0, _chunkUNBQUEQ4cjs.config, config2, 1);
|
|
14
|
+
const fangComp = new (0, _chunkS6ZDMFHLcjs.component_default)(configs);
|
|
15
15
|
return [
|
|
16
16
|
{
|
|
17
17
|
type: "component",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-J7CICTHH.js
|
|
2
2
|
function humpToLine(name) {
|
|
3
3
|
const reg = /(([A-Z])([^A-Z]*))/g;
|
|
4
4
|
let result;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkHHOXRED7cjs = require('./chunk-HHOXRED7.cjs');
|
|
4
4
|
|
|
5
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
5
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-HVQG2IGJ.js
|
|
6
6
|
function styleLog(msg = "", obj) {
|
|
7
7
|
const arr = ["\x1B[0m"];
|
|
8
8
|
if (_optionalChain([obj, 'optionalAccess', _ => _.revert])) {
|
|
@@ -32,7 +32,7 @@ function styleLog(msg = "", obj) {
|
|
|
32
32
|
return arr.join("");
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
35
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-A6J46LQK.js
|
|
36
36
|
function unmergeObject(a, b, j = 0, i) {
|
|
37
37
|
let c;
|
|
38
38
|
if (a instanceof Array) {
|
|
@@ -78,12 +78,12 @@ function unmergeObject(a, b, j = 0, i) {
|
|
|
78
78
|
return c;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
81
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-EWJJKQIO.js
|
|
82
82
|
function firstUpper(str) {
|
|
83
83
|
return str.slice(0, 1).toUpperCase() + str.slice(1);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
86
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-XCDKXZFR.js
|
|
87
87
|
function lineToLargeHump(name) {
|
|
88
88
|
let arr = name.split("-");
|
|
89
89
|
arr = arr.map((vs) => {
|
|
@@ -92,25 +92,25 @@ function lineToLargeHump(name) {
|
|
|
92
92
|
return arr.join("");
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
95
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-4OBNLDTJ.js
|
|
96
96
|
function firstLower(str) {
|
|
97
97
|
return str.slice(0, 1).toLowerCase() + str.slice(1);
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
100
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-AM67P3W7.js
|
|
101
101
|
function lineToSmallHump(name) {
|
|
102
102
|
return firstLower(lineToLargeHump(name));
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
105
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-VRRDYCUH.js
|
|
106
106
|
function getComponentNames(name) {
|
|
107
107
|
if (name.includes("-")) {
|
|
108
|
-
const line =
|
|
108
|
+
const line = _chunkHHOXRED7cjs.humpToLine.call(void 0, name);
|
|
109
109
|
const upper = lineToLargeHump(line);
|
|
110
110
|
const lower = lineToSmallHump(upper);
|
|
111
111
|
return [line, upper, lower];
|
|
112
112
|
} else if (/[A-Z]/.test(name)) {
|
|
113
|
-
const line =
|
|
113
|
+
const line = _chunkHHOXRED7cjs.humpToLine.call(void 0, name);
|
|
114
114
|
if (/^[A-Z]/.test(name)) {
|
|
115
115
|
const upper = lineToLargeHump(line);
|
|
116
116
|
const lower = lineToSmallHump(upper);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
1
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-J7CICTHH.js
|
|
2
2
|
function humpToLine(name) {
|
|
3
3
|
const reg = /(([A-Z])([^A-Z]*))/g;
|
|
4
4
|
let result;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkQWU3JOQNcjs = require('./chunk-QWU3JOQN.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkHHOXRED7cjs = require('./chunk-HHOXRED7.cjs');
|
|
8
8
|
|
|
9
9
|
// packages/component.ts
|
|
10
10
|
var _fastglob = require('fast-glob'); var _fastglob2 = _interopRequireDefault(_fastglob);
|
|
11
11
|
var _path = require('path');
|
|
12
12
|
|
|
13
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
13
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-YNOFNHEK.js
|
|
14
14
|
function matchsEnd(key, matchs) {
|
|
15
15
|
if (matchs && matchs.length > 0) {
|
|
16
16
|
for (const value of matchs) {
|
|
@@ -30,7 +30,7 @@ function matchsEnd(key, matchs) {
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
33
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-S6JRKYPY.js
|
|
34
34
|
function matchsStart(key, matchs) {
|
|
35
35
|
if (matchs && matchs.length > 0) {
|
|
36
36
|
for (const value of matchs) {
|
|
@@ -124,26 +124,33 @@ var FangComponent = class {
|
|
|
124
124
|
return this.config.getAliass;
|
|
125
125
|
} else {
|
|
126
126
|
return function(name, _type, c) {
|
|
127
|
-
const arr =
|
|
127
|
+
const arr = _chunkQWU3JOQNcjs.getComponentNames.call(void 0, name);
|
|
128
128
|
if (c.alias) {
|
|
129
|
-
return [...
|
|
129
|
+
return [..._chunkQWU3JOQNcjs.getComponentNames.call(void 0, c.alias + "-" + name), ...arr];
|
|
130
130
|
} else {
|
|
131
131
|
return arr;
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
|
-
#getMatchsUrl(
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
136
|
+
// #getMatchsUrl(
|
|
137
|
+
// urls: Array<string>,
|
|
138
|
+
// name: string,
|
|
139
|
+
// type: string,
|
|
140
|
+
// config: Config,
|
|
141
|
+
// ) {
|
|
142
|
+
// const arr = this.#getNames()(name, type, config);
|
|
143
|
+
// const ms: FangMatchs = [];
|
|
144
|
+
// const m = config.matchextss;
|
|
145
|
+
// if (m) {
|
|
146
|
+
// ms.push(m);
|
|
147
|
+
// }
|
|
148
|
+
// return (
|
|
149
|
+
// urls.filter((v) => {
|
|
150
|
+
// return isUrlsMatchi(v, arr, ms);
|
|
151
|
+
// })[0] || ''
|
|
152
|
+
// );
|
|
153
|
+
// }
|
|
147
154
|
#isMatchFile(url, arr, matchexts, nomatchexts) {
|
|
148
155
|
const is = isUrlsMatchi(url, arr, matchexts);
|
|
149
156
|
if (is && nomatchexts && nomatchexts.length > 0) {
|
|
@@ -283,7 +290,7 @@ var FangComponent = class {
|
|
|
283
290
|
* @returns { Boolean } 是否要替换
|
|
284
291
|
*/
|
|
285
292
|
#namefilter(name) {
|
|
286
|
-
name =
|
|
293
|
+
name = _chunkHHOXRED7cjs.humpToLine.call(void 0, name);
|
|
287
294
|
if (this.config.startss) {
|
|
288
295
|
for (let index = 0; index < this.config.startss.length; index++) {
|
|
289
296
|
const element = this.config.startss[index] + "-";
|
|
@@ -496,46 +503,46 @@ var FangComponent = class {
|
|
|
496
503
|
};
|
|
497
504
|
const arr = [];
|
|
498
505
|
arr.push(
|
|
499
|
-
|
|
506
|
+
_chunkQWU3JOQNcjs.styleLog.call(void 0, "[@fangzhongya/vue-components]", {
|
|
500
507
|
text: 3
|
|
501
508
|
})
|
|
502
509
|
);
|
|
503
510
|
if (obj && obj.from) {
|
|
504
|
-
let sfrom =
|
|
511
|
+
let sfrom = _chunkQWU3JOQNcjs.styleLog.call(void 0, _optionalChain([obj, 'optionalAccess', _28 => _28.from]), {
|
|
505
512
|
text: 4,
|
|
506
513
|
revert: true
|
|
507
514
|
});
|
|
508
515
|
arr.push(
|
|
509
|
-
|
|
516
|
+
_chunkQWU3JOQNcjs.styleLog.call(void 0, type, {
|
|
510
517
|
text: texts[type]
|
|
511
518
|
})
|
|
512
519
|
);
|
|
513
520
|
arr.push(
|
|
514
|
-
|
|
521
|
+
_chunkQWU3JOQNcjs.styleLog.call(void 0, name, {
|
|
515
522
|
bold: true
|
|
516
523
|
})
|
|
517
524
|
);
|
|
518
525
|
if (!is) {
|
|
519
|
-
sfrom =
|
|
526
|
+
sfrom = _chunkQWU3JOQNcjs.styleLog.call(void 0, "+", {
|
|
520
527
|
text: 2
|
|
521
528
|
}) + sfrom;
|
|
522
529
|
}
|
|
523
530
|
arr.push(sfrom);
|
|
524
531
|
if (obj.sideEffects) {
|
|
525
532
|
arr.push(
|
|
526
|
-
|
|
533
|
+
_chunkQWU3JOQNcjs.styleLog.call(void 0, obj.sideEffects.toString(), {
|
|
527
534
|
text: texts["sideEffects"]
|
|
528
535
|
})
|
|
529
536
|
);
|
|
530
537
|
}
|
|
531
538
|
} else {
|
|
532
539
|
arr.push(
|
|
533
|
-
|
|
540
|
+
_chunkQWU3JOQNcjs.styleLog.call(void 0, type, {
|
|
534
541
|
text: texts[type]
|
|
535
542
|
})
|
|
536
543
|
);
|
|
537
544
|
arr.push(
|
|
538
|
-
|
|
545
|
+
_chunkQWU3JOQNcjs.styleLog.call(void 0, name, {
|
|
539
546
|
bold: true,
|
|
540
547
|
text: 1
|
|
541
548
|
})
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
humpToLine
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-RHUKOWKH.js";
|
|
4
4
|
|
|
5
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
5
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-HVQG2IGJ.js
|
|
6
6
|
function styleLog(msg = "", obj) {
|
|
7
7
|
const arr = ["\x1B[0m"];
|
|
8
8
|
if (obj?.revert) {
|
|
@@ -32,7 +32,7 @@ function styleLog(msg = "", obj) {
|
|
|
32
32
|
return arr.join("");
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
35
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-A6J46LQK.js
|
|
36
36
|
function unmergeObject(a, b, j = 0, i) {
|
|
37
37
|
let c;
|
|
38
38
|
if (a instanceof Array) {
|
|
@@ -78,12 +78,12 @@ function unmergeObject(a, b, j = 0, i) {
|
|
|
78
78
|
return c;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
81
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-EWJJKQIO.js
|
|
82
82
|
function firstUpper(str) {
|
|
83
83
|
return str.slice(0, 1).toUpperCase() + str.slice(1);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
86
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-XCDKXZFR.js
|
|
87
87
|
function lineToLargeHump(name) {
|
|
88
88
|
let arr = name.split("-");
|
|
89
89
|
arr = arr.map((vs) => {
|
|
@@ -92,17 +92,17 @@ function lineToLargeHump(name) {
|
|
|
92
92
|
return arr.join("");
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
95
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-4OBNLDTJ.js
|
|
96
96
|
function firstLower(str) {
|
|
97
97
|
return str.slice(0, 1).toLowerCase() + str.slice(1);
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
100
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-AM67P3W7.js
|
|
101
101
|
function lineToSmallHump(name) {
|
|
102
102
|
return firstLower(lineToLargeHump(name));
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
// node_modules/.pnpm/@fangzhongya+utils@0.0.
|
|
105
|
+
// node_modules/.pnpm/@fangzhongya+utils@0.0.44/node_modules/@fangzhongya/utils/dist/chunk-VRRDYCUH.js
|
|
106
106
|
function getComponentNames(name) {
|
|
107
107
|
if (name.includes("-")) {
|
|
108
108
|
const line = humpToLine(name);
|
package/dist/component.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
3
|
+
var _chunkS6ZDMFHLcjs = require('./chunk-S6ZDMFHL.cjs');
|
|
4
|
+
require('./chunk-QWU3JOQN.cjs');
|
|
5
|
+
require('./chunk-HHOXRED7.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkS6ZDMFHLcjs.component_default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { FangConfig, Config } from './config.cjs';
|
|
2
|
+
import { ComponentInfo } from 'unplugin-vue-components';
|
|
3
|
+
|
|
4
|
+
type FangComponentInfo = ComponentInfo | undefined | void;
|
|
5
|
+
type ResolveType = 'component' | 'directive' | 'sideEffects';
|
|
6
|
+
/**
|
|
7
|
+
* 自动注册组件和指令的方法
|
|
8
|
+
*/
|
|
9
|
+
declare class FangComponent {
|
|
10
|
+
#private;
|
|
11
|
+
config: FangConfig;
|
|
12
|
+
constructor(config?: Config);
|
|
13
|
+
/**
|
|
14
|
+
* 自动按需匹配注册
|
|
15
|
+
* @param {String} name 名称
|
|
16
|
+
* @param {String} type 类型
|
|
17
|
+
* @returns { Object } 注册的对象
|
|
18
|
+
*/
|
|
19
|
+
resolve(name: string, type: ResolveType): FangComponentInfo;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { FangComponent as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { FangConfig, Config } from './config.js';
|
|
2
|
+
import { ComponentInfo } from 'unplugin-vue-components';
|
|
3
|
+
|
|
4
|
+
type FangComponentInfo = ComponentInfo | undefined | void;
|
|
5
|
+
type ResolveType = 'component' | 'directive' | 'sideEffects';
|
|
6
|
+
/**
|
|
7
|
+
* 自动注册组件和指令的方法
|
|
8
|
+
*/
|
|
9
|
+
declare class FangComponent {
|
|
10
|
+
#private;
|
|
11
|
+
config: FangConfig;
|
|
12
|
+
constructor(config?: Config);
|
|
13
|
+
/**
|
|
14
|
+
* 自动按需匹配注册
|
|
15
|
+
* @param {String} name 名称
|
|
16
|
+
* @param {String} type 类型
|
|
17
|
+
* @returns { Object } 注册的对象
|
|
18
|
+
*/
|
|
19
|
+
resolve(name: string, type: ResolveType): FangComponentInfo;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { FangComponent as default };
|
package/dist/component.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
component_default
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-FU4WJYFK.js";
|
|
4
|
+
import "./chunk-VOW7W52X.js";
|
|
5
|
+
import "./chunk-RHUKOWKH.js";
|
|
6
6
|
export {
|
|
7
7
|
component_default as default
|
|
8
8
|
};
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
interface Config {
|
|
2
|
+
/**
|
|
3
|
+
* 自动导入的文件目录
|
|
4
|
+
*/
|
|
5
|
+
dir?: string;
|
|
6
|
+
/**
|
|
7
|
+
* 文件后缀
|
|
8
|
+
* 如果为空数组,
|
|
9
|
+
*/
|
|
10
|
+
extensions?: Array<string>;
|
|
11
|
+
/**
|
|
12
|
+
* 自己的别名
|
|
13
|
+
*/
|
|
14
|
+
alias?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 通过头匹配,默认转换成 - 模式匹配的
|
|
17
|
+
* dir下面子目录来配置别名
|
|
18
|
+
* 不区分首字母大小写
|
|
19
|
+
*/
|
|
20
|
+
getAliass?: (naem: string, type: string, config: Config) => string[];
|
|
21
|
+
/**
|
|
22
|
+
* 匹配目录数组
|
|
23
|
+
* 从头开始匹配
|
|
24
|
+
*/
|
|
25
|
+
matchs?: Array<string | RegExp>;
|
|
26
|
+
/**
|
|
27
|
+
* 匹配文件路径
|
|
28
|
+
* 从尾部开始匹配
|
|
29
|
+
*/
|
|
30
|
+
matchexts?: Array<string | RegExp>;
|
|
31
|
+
/**
|
|
32
|
+
* 不匹配目录数组
|
|
33
|
+
* 从头开始匹配
|
|
34
|
+
*/
|
|
35
|
+
nomatchs?: Array<string | RegExp>;
|
|
36
|
+
/**
|
|
37
|
+
* 不匹配文件路径
|
|
38
|
+
* 从尾部开始匹配
|
|
39
|
+
*/
|
|
40
|
+
nomatchexts?: Array<string | RegExp>;
|
|
41
|
+
matchextss?: string | RegExp;
|
|
42
|
+
/**no
|
|
43
|
+
* 指令
|
|
44
|
+
*/
|
|
45
|
+
matchDirexts?: Array<string | RegExp>;
|
|
46
|
+
nomatchDirexts?: Array<string | RegExp>;
|
|
47
|
+
matchDirextss?: string | RegExp;
|
|
48
|
+
/**
|
|
49
|
+
* 样式
|
|
50
|
+
*/
|
|
51
|
+
matchCsss?: Array<string | RegExp>;
|
|
52
|
+
nomatchCsss?: Array<string | RegExp>;
|
|
53
|
+
matchCssss?: string | RegExp;
|
|
54
|
+
/**
|
|
55
|
+
* 指令文件夹名称
|
|
56
|
+
*/
|
|
57
|
+
directives?: string;
|
|
58
|
+
/**
|
|
59
|
+
* 样式文件夹名称
|
|
60
|
+
*/
|
|
61
|
+
csss?: string;
|
|
62
|
+
csssuffixs?: Array<string>;
|
|
63
|
+
/**
|
|
64
|
+
* 是否缓存
|
|
65
|
+
*/
|
|
66
|
+
isCache?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* 过滤 不匹配 通过头匹配,默认转换成 - 模式匹配的
|
|
69
|
+
* 不区分首字母大小写
|
|
70
|
+
*/
|
|
71
|
+
startss?: Array<string>;
|
|
72
|
+
/**
|
|
73
|
+
* 过滤 不匹配 全匹配 - 模式匹配的
|
|
74
|
+
* 不区分首字母大小写
|
|
75
|
+
*/
|
|
76
|
+
filtes?: Array<string>;
|
|
77
|
+
/**
|
|
78
|
+
* 匹配到的文件路径
|
|
79
|
+
*/
|
|
80
|
+
getFromName?(url: string, name: string, type: string): string;
|
|
81
|
+
/**
|
|
82
|
+
* 控制台是否输出日志
|
|
83
|
+
*/
|
|
84
|
+
log?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* 获取匹配数组
|
|
87
|
+
*/
|
|
88
|
+
isMatch?(url: string, naem: string, names?: Array<string>, config?: Config): boolean;
|
|
89
|
+
/**
|
|
90
|
+
* 获取指令匹配数组
|
|
91
|
+
*/
|
|
92
|
+
isMatchDir?(url: string, name: string, names?: Array<string>, config?: Config): boolean;
|
|
93
|
+
/**
|
|
94
|
+
* 获取样式匹配数组
|
|
95
|
+
*/
|
|
96
|
+
isMatchCss?(url: string, name: string, names?: Array<string>, config?: Config): boolean;
|
|
97
|
+
/**
|
|
98
|
+
* 多个时获取那个
|
|
99
|
+
*/
|
|
100
|
+
getMatchs?(urls: Array<string>, name: string, type: string, config?: Config): string;
|
|
101
|
+
/**
|
|
102
|
+
* 获取指令匹配数组
|
|
103
|
+
*/
|
|
104
|
+
getMatchDirs?(urls: Array<string>, name: string, type: string, config?: Config): string;
|
|
105
|
+
/**
|
|
106
|
+
* 获取样式匹配数组
|
|
107
|
+
*/
|
|
108
|
+
getMatchCsss?(urls: Array<string>, name: string, type: string, config?: Config): string;
|
|
109
|
+
}
|
|
110
|
+
interface FangConfig extends Config {
|
|
111
|
+
/**
|
|
112
|
+
* 是否去掉路径的前缀
|
|
113
|
+
*/
|
|
114
|
+
urlprefix?: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* 是否生成json 配置文件
|
|
117
|
+
*/
|
|
118
|
+
isJson?: boolean;
|
|
119
|
+
/**
|
|
120
|
+
* 生成json 配置文件名称
|
|
121
|
+
*/
|
|
122
|
+
jsonName?: string;
|
|
123
|
+
/**
|
|
124
|
+
* 格式化的组件的地址
|
|
125
|
+
*/
|
|
126
|
+
urls?: Array<string>;
|
|
127
|
+
/**
|
|
128
|
+
* 格式化的指令的地址
|
|
129
|
+
*/
|
|
130
|
+
dirUrls?: Array<string>;
|
|
131
|
+
/**
|
|
132
|
+
* 格式化的样式的地址
|
|
133
|
+
*/
|
|
134
|
+
cssUrls?: Array<string>;
|
|
135
|
+
}
|
|
136
|
+
declare const config: Config;
|
|
137
|
+
|
|
138
|
+
export { type Config, type FangConfig, config };
|
package/dist/config.d.ts
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
interface Config {
|
|
2
|
+
/**
|
|
3
|
+
* 自动导入的文件目录
|
|
4
|
+
*/
|
|
5
|
+
dir?: string;
|
|
6
|
+
/**
|
|
7
|
+
* 文件后缀
|
|
8
|
+
* 如果为空数组,
|
|
9
|
+
*/
|
|
10
|
+
extensions?: Array<string>;
|
|
11
|
+
/**
|
|
12
|
+
* 自己的别名
|
|
13
|
+
*/
|
|
14
|
+
alias?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 通过头匹配,默认转换成 - 模式匹配的
|
|
17
|
+
* dir下面子目录来配置别名
|
|
18
|
+
* 不区分首字母大小写
|
|
19
|
+
*/
|
|
20
|
+
getAliass?: (naem: string, type: string, config: Config) => string[];
|
|
21
|
+
/**
|
|
22
|
+
* 匹配目录数组
|
|
23
|
+
* 从头开始匹配
|
|
24
|
+
*/
|
|
25
|
+
matchs?: Array<string | RegExp>;
|
|
26
|
+
/**
|
|
27
|
+
* 匹配文件路径
|
|
28
|
+
* 从尾部开始匹配
|
|
29
|
+
*/
|
|
30
|
+
matchexts?: Array<string | RegExp>;
|
|
31
|
+
/**
|
|
32
|
+
* 不匹配目录数组
|
|
33
|
+
* 从头开始匹配
|
|
34
|
+
*/
|
|
35
|
+
nomatchs?: Array<string | RegExp>;
|
|
36
|
+
/**
|
|
37
|
+
* 不匹配文件路径
|
|
38
|
+
* 从尾部开始匹配
|
|
39
|
+
*/
|
|
40
|
+
nomatchexts?: Array<string | RegExp>;
|
|
41
|
+
matchextss?: string | RegExp;
|
|
42
|
+
/**no
|
|
43
|
+
* 指令
|
|
44
|
+
*/
|
|
45
|
+
matchDirexts?: Array<string | RegExp>;
|
|
46
|
+
nomatchDirexts?: Array<string | RegExp>;
|
|
47
|
+
matchDirextss?: string | RegExp;
|
|
48
|
+
/**
|
|
49
|
+
* 样式
|
|
50
|
+
*/
|
|
51
|
+
matchCsss?: Array<string | RegExp>;
|
|
52
|
+
nomatchCsss?: Array<string | RegExp>;
|
|
53
|
+
matchCssss?: string | RegExp;
|
|
54
|
+
/**
|
|
55
|
+
* 指令文件夹名称
|
|
56
|
+
*/
|
|
57
|
+
directives?: string;
|
|
58
|
+
/**
|
|
59
|
+
* 样式文件夹名称
|
|
60
|
+
*/
|
|
61
|
+
csss?: string;
|
|
62
|
+
csssuffixs?: Array<string>;
|
|
63
|
+
/**
|
|
64
|
+
* 是否缓存
|
|
65
|
+
*/
|
|
66
|
+
isCache?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* 过滤 不匹配 通过头匹配,默认转换成 - 模式匹配的
|
|
69
|
+
* 不区分首字母大小写
|
|
70
|
+
*/
|
|
71
|
+
startss?: Array<string>;
|
|
72
|
+
/**
|
|
73
|
+
* 过滤 不匹配 全匹配 - 模式匹配的
|
|
74
|
+
* 不区分首字母大小写
|
|
75
|
+
*/
|
|
76
|
+
filtes?: Array<string>;
|
|
77
|
+
/**
|
|
78
|
+
* 匹配到的文件路径
|
|
79
|
+
*/
|
|
80
|
+
getFromName?(url: string, name: string, type: string): string;
|
|
81
|
+
/**
|
|
82
|
+
* 控制台是否输出日志
|
|
83
|
+
*/
|
|
84
|
+
log?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* 获取匹配数组
|
|
87
|
+
*/
|
|
88
|
+
isMatch?(url: string, naem: string, names?: Array<string>, config?: Config): boolean;
|
|
89
|
+
/**
|
|
90
|
+
* 获取指令匹配数组
|
|
91
|
+
*/
|
|
92
|
+
isMatchDir?(url: string, name: string, names?: Array<string>, config?: Config): boolean;
|
|
93
|
+
/**
|
|
94
|
+
* 获取样式匹配数组
|
|
95
|
+
*/
|
|
96
|
+
isMatchCss?(url: string, name: string, names?: Array<string>, config?: Config): boolean;
|
|
97
|
+
/**
|
|
98
|
+
* 多个时获取那个
|
|
99
|
+
*/
|
|
100
|
+
getMatchs?(urls: Array<string>, name: string, type: string, config?: Config): string;
|
|
101
|
+
/**
|
|
102
|
+
* 获取指令匹配数组
|
|
103
|
+
*/
|
|
104
|
+
getMatchDirs?(urls: Array<string>, name: string, type: string, config?: Config): string;
|
|
105
|
+
/**
|
|
106
|
+
* 获取样式匹配数组
|
|
107
|
+
*/
|
|
108
|
+
getMatchCsss?(urls: Array<string>, name: string, type: string, config?: Config): string;
|
|
109
|
+
}
|
|
110
|
+
interface FangConfig extends Config {
|
|
111
|
+
/**
|
|
112
|
+
* 是否去掉路径的前缀
|
|
113
|
+
*/
|
|
114
|
+
urlprefix?: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* 是否生成json 配置文件
|
|
117
|
+
*/
|
|
118
|
+
isJson?: boolean;
|
|
119
|
+
/**
|
|
120
|
+
* 生成json 配置文件名称
|
|
121
|
+
*/
|
|
122
|
+
jsonName?: string;
|
|
123
|
+
/**
|
|
124
|
+
* 格式化的组件的地址
|
|
125
|
+
*/
|
|
126
|
+
urls?: Array<string>;
|
|
127
|
+
/**
|
|
128
|
+
* 格式化的指令的地址
|
|
129
|
+
*/
|
|
130
|
+
dirUrls?: Array<string>;
|
|
131
|
+
/**
|
|
132
|
+
* 格式化的样式的地址
|
|
133
|
+
*/
|
|
134
|
+
cssUrls?: Array<string>;
|
|
135
|
+
}
|
|
136
|
+
declare const config: Config;
|
|
137
|
+
|
|
138
|
+
export { type Config, type FangConfig, config };
|
package/dist/index.cjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkG77ZHBIWcjs = require('./chunk-G77ZHBIW.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkS6ZDMFHLcjs = require('./chunk-S6ZDMFHL.cjs');
|
|
7
7
|
require('./chunk-UNBQUEQ4.cjs');
|
|
8
|
-
require('./chunk-
|
|
9
|
-
require('./chunk-
|
|
8
|
+
require('./chunk-QWU3JOQN.cjs');
|
|
9
|
+
require('./chunk-HHOXRED7.cjs');
|
|
10
10
|
|
|
11
11
|
// packages/index.ts
|
|
12
|
-
var FangComponent = class extends
|
|
12
|
+
var FangComponent = class extends _chunkS6ZDMFHLcjs.component_default {
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
exports.ComponentsResolver =
|
|
17
|
+
exports.ComponentsResolver = _chunkG77ZHBIWcjs.ComponentsResolver; exports.FangComponent = FangComponent;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import FangComponent$1 from './component.cjs';
|
|
2
|
+
export { Config } from './config.cjs';
|
|
3
|
+
export { ComponentsResolver } from './resolver.cjs';
|
|
4
|
+
import 'unplugin-vue-components';
|
|
5
|
+
|
|
6
|
+
declare class FangComponent extends FangComponent$1 {
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export { FangComponent };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import FangComponent$1 from './component.js';
|
|
2
|
+
export { Config } from './config.js';
|
|
3
|
+
export { ComponentsResolver } from './resolver.js';
|
|
4
|
+
import 'unplugin-vue-components';
|
|
5
|
+
|
|
6
|
+
declare class FangComponent extends FangComponent$1 {
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export { FangComponent };
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ComponentsResolver
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-BYSC7OW2.js";
|
|
4
4
|
import {
|
|
5
5
|
component_default
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-FU4WJYFK.js";
|
|
7
7
|
import "./chunk-DURXCSNX.js";
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-VOW7W52X.js";
|
|
9
|
+
import "./chunk-RHUKOWKH.js";
|
|
10
10
|
|
|
11
11
|
// packages/index.ts
|
|
12
12
|
var FangComponent = class extends component_default {
|
package/dist/library.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkHHOXRED7cjs = require('./chunk-HHOXRED7.cjs');
|
|
4
4
|
|
|
5
5
|
// packages/library.ts
|
|
6
6
|
function namefilter(config, name) {
|
|
7
|
-
let vm =
|
|
7
|
+
let vm = _chunkHHOXRED7cjs.humpToLine.call(void 0, name);
|
|
8
8
|
if (config.alias) {
|
|
9
9
|
const reg1 = new RegExp("^" + config.alias + "-" + config.prefix + "-");
|
|
10
10
|
if (reg1.test(vm)) {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ComponentResolveResult, ComponentResolver } from 'unplugin-vue-components';
|
|
2
|
+
|
|
3
|
+
type Config = {
|
|
4
|
+
prefix: string;
|
|
5
|
+
alias?: string;
|
|
6
|
+
getFrom?(mc: string, type: string | number): ComponentResolveResult;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* 自动按需匹配注册
|
|
10
|
+
* @returns
|
|
11
|
+
*/
|
|
12
|
+
declare function FangLibResolver(config: Config): ComponentResolver[];
|
|
13
|
+
|
|
14
|
+
export { FangLibResolver };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ComponentResolveResult, ComponentResolver } from 'unplugin-vue-components';
|
|
2
|
+
|
|
3
|
+
type Config = {
|
|
4
|
+
prefix: string;
|
|
5
|
+
alias?: string;
|
|
6
|
+
getFrom?(mc: string, type: string | number): ComponentResolveResult;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* 自动按需匹配注册
|
|
10
|
+
* @returns
|
|
11
|
+
*/
|
|
12
|
+
declare function FangLibResolver(config: Config): ComponentResolver[];
|
|
13
|
+
|
|
14
|
+
export { FangLibResolver };
|
package/dist/library.js
CHANGED
package/dist/resolver.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var _chunkG77ZHBIWcjs = require('./chunk-G77ZHBIW.cjs');
|
|
4
|
+
require('./chunk-S6ZDMFHL.cjs');
|
|
5
5
|
require('./chunk-UNBQUEQ4.cjs');
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-QWU3JOQN.cjs');
|
|
7
|
+
require('./chunk-HHOXRED7.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.ComponentsResolver =
|
|
10
|
+
exports.ComponentsResolver = _chunkG77ZHBIWcjs.ComponentsResolver;
|
package/dist/resolver.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ComponentsResolver
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-BYSC7OW2.js";
|
|
4
|
+
import "./chunk-FU4WJYFK.js";
|
|
5
5
|
import "./chunk-DURXCSNX.js";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-VOW7W52X.js";
|
|
7
|
+
import "./chunk-RHUKOWKH.js";
|
|
8
8
|
export {
|
|
9
9
|
ComponentsResolver
|
|
10
10
|
};
|
package/dist/util.cjs
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkQWU3JOQNcjs = require('./chunk-QWU3JOQN.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkHHOXRED7cjs = require('./chunk-HHOXRED7.cjs');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
exports.firstUpper =
|
|
16
|
+
exports.firstUpper = _chunkQWU3JOQNcjs.firstUpper; exports.getComponentNames = _chunkQWU3JOQNcjs.getComponentNames; exports.humpToLine = _chunkHHOXRED7cjs.humpToLine; exports.styleLog = _chunkQWU3JOQNcjs.styleLog; exports.unmergeObject = _chunkQWU3JOQNcjs.unmergeObject;
|
package/dist/util.d.cts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { styleLog } from '@fangzhongya/utils/log/styleLog';
|
|
2
|
+
export { unmergeObject } from '@fangzhongya/utils/basic/object/unmergeObject';
|
|
3
|
+
export { getComponentNames } from '@fangzhongya/utils/name/getComponentNames';
|
|
4
|
+
export { humpToLine } from '@fangzhongya/utils/name/humpToLine';
|
|
5
|
+
export { firstUpper } from '@fangzhongya/utils/basic/string/firstUpper';
|
package/dist/util.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { styleLog } from '@fangzhongya/utils/log/styleLog';
|
|
2
|
+
export { unmergeObject } from '@fangzhongya/utils/basic/object/unmergeObject';
|
|
3
|
+
export { getComponentNames } from '@fangzhongya/utils/name/getComponentNames';
|
|
4
|
+
export { humpToLine } from '@fangzhongya/utils/name/humpToLine';
|
|
5
|
+
export { firstUpper } from '@fangzhongya/utils/basic/string/firstUpper';
|
package/dist/util.js
CHANGED
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
getComponentNames,
|
|
4
4
|
styleLog,
|
|
5
5
|
unmergeObject
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-VOW7W52X.js";
|
|
7
7
|
import {
|
|
8
8
|
humpToLine
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-RHUKOWKH.js";
|
|
10
10
|
export {
|
|
11
11
|
firstUpper,
|
|
12
12
|
getComponentNames,
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fangzhongya/vue-components",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.20",
|
|
6
6
|
"description ": "unplugin-vue-components插件",
|
|
7
7
|
"author": "fangzhongya ",
|
|
8
8
|
"license": "MIT",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"registry": "https://registry.npmjs.org/"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@fangzhongya/create": "0.2.
|
|
22
|
-
"@fangzhongya/utils": "0.0.
|
|
23
|
-
"@types/node": "^24.
|
|
21
|
+
"@fangzhongya/create": "0.2.41",
|
|
22
|
+
"@fangzhongya/utils": "0.0.44",
|
|
23
|
+
"@types/node": "^24.10.0",
|
|
24
24
|
"ts-node": "^10.9.2",
|
|
25
25
|
"tsup": "^8.5.0",
|
|
26
|
-
"typescript": "^5.9.
|
|
27
|
-
"unplugin-vue-components": "^
|
|
28
|
-
"vitest": "^
|
|
29
|
-
"vue": "^3.5.
|
|
26
|
+
"typescript": "^5.9.3",
|
|
27
|
+
"unplugin-vue-components": "^30.0.0",
|
|
28
|
+
"vitest": "^4.0.8",
|
|
29
|
+
"vue": "^3.5.24"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"fast-glob": "^3.3.3"
|