@fangzhongya/fang-ui 0.0.8 → 0.0.9
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.
|
@@ -7,7 +7,7 @@ var _humpToLine = require('@fangzhongya/utils/name/humpToLine');
|
|
|
7
7
|
var _lineToLargeHump = require('@fangzhongya/utils/name/lineToLargeHump');
|
|
8
8
|
var config = {
|
|
9
9
|
prefix: "",
|
|
10
|
-
name: "fang-ui",
|
|
10
|
+
name: "@fangzhongya/fang-ui",
|
|
11
11
|
styles: []
|
|
12
12
|
};
|
|
13
13
|
function namefilter(c, name) {
|
|
@@ -31,10 +31,10 @@ function getFrom(mc, type) {
|
|
|
31
31
|
if (type == 1) {
|
|
32
32
|
if (_chunkQEPARHHXcjs.config_default.components.includes(filename)) {
|
|
33
33
|
const name = _lineToLargeHump.lineToLargeHump.call(void 0, mc);
|
|
34
|
-
const from = `${config.name}/
|
|
34
|
+
const from = `${config.name}/components/${filename}/index`;
|
|
35
35
|
let sideEffects;
|
|
36
36
|
if (_chunkQEPARHHXcjs.config_default.sideEffects.includes(filename)) {
|
|
37
|
-
sideEffects = `${config.name}/
|
|
37
|
+
sideEffects = `${config.name}/components/${filename}/index.scss`;
|
|
38
38
|
}
|
|
39
39
|
return {
|
|
40
40
|
name,
|
|
@@ -47,14 +47,14 @@ function getFrom(mc, type) {
|
|
|
47
47
|
} else {
|
|
48
48
|
if (_chunkQEPARHHXcjs.config_default.directives.includes(filename)) {
|
|
49
49
|
const name = "default";
|
|
50
|
-
const from = `${config.name}/
|
|
50
|
+
const from = `${config.name}/directives/${filename}/index`;
|
|
51
51
|
return {
|
|
52
52
|
name,
|
|
53
53
|
from
|
|
54
54
|
};
|
|
55
55
|
} else if (_chunkQEPARHHXcjs.config_default.directives.includes("v-" + filename)) {
|
|
56
56
|
const name = "default";
|
|
57
|
-
const from = `${config.name}/
|
|
57
|
+
const from = `${config.name}/directives/${"v-" + filename}/index`;
|
|
58
58
|
return {
|
|
59
59
|
name,
|
|
60
60
|
from
|
|
@@ -7,7 +7,7 @@ import { humpToLine } from "@fangzhongya/utils/name/humpToLine";
|
|
|
7
7
|
import { lineToLargeHump } from "@fangzhongya/utils/name/lineToLargeHump";
|
|
8
8
|
var config = {
|
|
9
9
|
prefix: "",
|
|
10
|
-
name: "fang-ui",
|
|
10
|
+
name: "@fangzhongya/fang-ui",
|
|
11
11
|
styles: []
|
|
12
12
|
};
|
|
13
13
|
function namefilter(c, name) {
|
|
@@ -31,10 +31,10 @@ function getFrom(mc, type) {
|
|
|
31
31
|
if (type == 1) {
|
|
32
32
|
if (config_default.components.includes(filename)) {
|
|
33
33
|
const name = lineToLargeHump(mc);
|
|
34
|
-
const from = `${config.name}/
|
|
34
|
+
const from = `${config.name}/components/${filename}/index`;
|
|
35
35
|
let sideEffects;
|
|
36
36
|
if (config_default.sideEffects.includes(filename)) {
|
|
37
|
-
sideEffects = `${config.name}/
|
|
37
|
+
sideEffects = `${config.name}/components/${filename}/index.scss`;
|
|
38
38
|
}
|
|
39
39
|
return {
|
|
40
40
|
name,
|
|
@@ -47,14 +47,14 @@ function getFrom(mc, type) {
|
|
|
47
47
|
} else {
|
|
48
48
|
if (config_default.directives.includes(filename)) {
|
|
49
49
|
const name = "default";
|
|
50
|
-
const from = `${config.name}/
|
|
50
|
+
const from = `${config.name}/directives/${filename}/index`;
|
|
51
51
|
return {
|
|
52
52
|
name,
|
|
53
53
|
from
|
|
54
54
|
};
|
|
55
55
|
} else if (config_default.directives.includes("v-" + filename)) {
|
|
56
56
|
const name = "default";
|
|
57
|
-
const from = `${config.name}/
|
|
57
|
+
const from = `${config.name}/directives/${"v-" + filename}/index`;
|
|
58
58
|
return {
|
|
59
59
|
name,
|
|
60
60
|
from
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fangzhongya/fang-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description ": "fang-ui",
|
|
7
7
|
"keywords": [
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"vitest": "^3.1.3",
|
|
45
45
|
"vue": "^3.5.14",
|
|
46
46
|
"vue-tsc": "^2.2.10",
|
|
47
|
+
"@fang-ui/components": "0.0.1-0",
|
|
47
48
|
"@fang-ui/hooks": "0.0.1-0",
|
|
48
49
|
"@fang-ui/directives": "0.0.1-0",
|
|
49
|
-
"@fang-ui/
|
|
50
|
+
"@fang-ui/locale": "0.0.1-0",
|
|
50
51
|
"@fang-ui/icons": "0.0.1-0",
|
|
52
|
+
"@fang-ui/types": "0.0.1-0",
|
|
51
53
|
"@fang-ui/theme": "0.0.1-0",
|
|
52
|
-
"@fang-ui/
|
|
53
|
-
"@fang-ui/utils": "0.0.1-0",
|
|
54
|
-
"@fang-ui/types": "0.0.1-0"
|
|
54
|
+
"@fang-ui/utils": "0.0.1-0"
|
|
55
55
|
},
|
|
56
56
|
"main": "./dist/index.cjs",
|
|
57
57
|
"module": "./dist/index.js",
|