@fangzhongya/fang-ui 0.1.21 → 0.1.22
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/components/index.scss +1 -2
- package/dist/css/index.css +0 -22
- package/dist/hooks/global-config/index.cjs +2 -6
- package/dist/hooks/global-config/index.js +2 -6
- package/dist/icons/index.json +1 -1
- package/dist/index.css +0 -22
- package/package.json +5 -5
- /package/dist/components/{forms-items → forms-item}/index.css +0 -0
- /package/dist/components/{keep-com → popover}/index.css +0 -0
- /package/dist/css/{forms-items.css → forms-item.css} +0 -0
- /package/dist/css/{keep-com.css → popover.css} +0 -0
package/dist/css/index.css
CHANGED
|
@@ -1835,26 +1835,4 @@
|
|
|
1835
1835
|
left: 0;
|
|
1836
1836
|
z-index: 1;
|
|
1837
1837
|
opacity: 0;
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
.tablesvp {
|
|
1841
|
-
width: 100%;
|
|
1842
|
-
height: var(--tablesvp-height);
|
|
1843
|
-
display: flex;
|
|
1844
|
-
flex-direction: column;
|
|
1845
|
-
}
|
|
1846
|
-
.tablesvp-main {
|
|
1847
|
-
display: flex;
|
|
1848
|
-
flex-direction: column;
|
|
1849
|
-
flex: 1;
|
|
1850
|
-
width: 100%;
|
|
1851
|
-
}
|
|
1852
|
-
.tablesvp-main.is-radio .el-table__header .el-table-column--selection .el-checkbox {
|
|
1853
|
-
display: none;
|
|
1854
|
-
}
|
|
1855
|
-
.tablesvp-paginat {
|
|
1856
|
-
overflow: hidden;
|
|
1857
|
-
}
|
|
1858
|
-
.tablesvp-paginat .el-pagination {
|
|
1859
|
-
justify-content: flex-end;
|
|
1860
1838
|
}
|
|
@@ -22,17 +22,13 @@ function setValue(v, k, z) {
|
|
|
22
22
|
}
|
|
23
23
|
function setGlobalConfig(obj, key) {
|
|
24
24
|
if (key) {
|
|
25
|
-
globalConfig.value
|
|
26
|
-
obj,
|
|
27
|
-
key,
|
|
28
|
-
globalConfig.value
|
|
29
|
-
);
|
|
25
|
+
setValue(obj, key, globalConfig.value);
|
|
30
26
|
} else {
|
|
31
27
|
const v = obj;
|
|
32
28
|
Object.keys(v).forEach((key2) => {
|
|
33
29
|
const k = key2;
|
|
34
30
|
const z = v[k];
|
|
35
|
-
|
|
31
|
+
setValue(z, k, globalConfig.value);
|
|
36
32
|
});
|
|
37
33
|
}
|
|
38
34
|
}
|
|
@@ -20,17 +20,13 @@ function setValue(v, k, z) {
|
|
|
20
20
|
}
|
|
21
21
|
function setGlobalConfig(obj, key) {
|
|
22
22
|
if (key) {
|
|
23
|
-
globalConfig.value
|
|
24
|
-
obj,
|
|
25
|
-
key,
|
|
26
|
-
globalConfig.value
|
|
27
|
-
);
|
|
23
|
+
setValue(obj, key, globalConfig.value);
|
|
28
24
|
} else {
|
|
29
25
|
const v = obj;
|
|
30
26
|
Object.keys(v).forEach((key2) => {
|
|
31
27
|
const k = key2;
|
|
32
28
|
const z = v[k];
|
|
33
|
-
|
|
29
|
+
setValue(z, k, globalConfig.value);
|
|
34
30
|
});
|
|
35
31
|
}
|
|
36
32
|
}
|
package/dist/icons/index.json
CHANGED
package/dist/index.css
CHANGED
|
@@ -1835,26 +1835,4 @@
|
|
|
1835
1835
|
left: 0;
|
|
1836
1836
|
z-index: 1;
|
|
1837
1837
|
opacity: 0;
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
.tablesvp {
|
|
1841
|
-
width: 100%;
|
|
1842
|
-
height: var(--tablesvp-height);
|
|
1843
|
-
display: flex;
|
|
1844
|
-
flex-direction: column;
|
|
1845
|
-
}
|
|
1846
|
-
.tablesvp-main {
|
|
1847
|
-
display: flex;
|
|
1848
|
-
flex-direction: column;
|
|
1849
|
-
flex: 1;
|
|
1850
|
-
width: 100%;
|
|
1851
|
-
}
|
|
1852
|
-
.tablesvp-main.is-radio .el-table__header .el-table-column--selection .el-checkbox {
|
|
1853
|
-
display: none;
|
|
1854
|
-
}
|
|
1855
|
-
.tablesvp-paginat {
|
|
1856
|
-
overflow: hidden;
|
|
1857
|
-
}
|
|
1858
|
-
.tablesvp-paginat .el-pagination {
|
|
1859
|
-
justify-content: flex-end;
|
|
1860
1838
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fangzhongya/fang-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.22",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description ": "fang-ui",
|
|
7
7
|
"keywords": [
|
|
@@ -51,14 +51,14 @@
|
|
|
51
51
|
"vue-tsc": "^3.1.3",
|
|
52
52
|
"vuedraggable": "4.1.0",
|
|
53
53
|
"vxe-table": "4.17.13",
|
|
54
|
-
"@fang-ui/components": "0.0.1-0",
|
|
55
54
|
"@fang-ui/icons": "0.0.1-0",
|
|
56
55
|
"@fang-ui/directives": "0.0.1-0",
|
|
56
|
+
"@fang-ui/components": "0.0.1-0",
|
|
57
57
|
"@fang-ui/hooks": "0.0.1-0",
|
|
58
|
-
"@fang-ui/
|
|
58
|
+
"@fang-ui/utils": "0.0.1-0",
|
|
59
59
|
"@fang-ui/theme": "0.0.1-0",
|
|
60
|
-
"@fang-ui/
|
|
61
|
-
"@fang-ui/
|
|
60
|
+
"@fang-ui/locale": "0.0.1-0",
|
|
61
|
+
"@fang-ui/types": "0.0.1-0"
|
|
62
62
|
},
|
|
63
63
|
"main": "./dist/index.cjs",
|
|
64
64
|
"module": "./dist/index.js",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|