@fangzhongya/fang-ui 0.0.23 → 0.0.25
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/array/index.css +0 -4
- package/dist/components/box/index.css +0 -4
- package/dist/components/box-adjust/index.css +0 -4
- package/dist/components/box-local/index.css +0 -4
- package/dist/components/box-mask/index.css +0 -4
- package/dist/components/box-title/index.css +0 -4
- package/dist/components/buttons/index.css +0 -4
- package/dist/components/cascaders/index.css +0 -4
- package/dist/components/checks/index.css +0 -4
- package/dist/components/css/common.scss +0 -8
- package/dist/components/dates/index.css +0 -4
- package/dist/components/dialog/index.css +4 -8
- package/dist/components/dialog/index.scss +21 -19
- package/dist/components/drawer/index.css +0 -4
- package/dist/components/el-tables/index.css +0 -4
- package/dist/components/forms/index.css +0 -4
- package/dist/components/forms-div/index.css +0 -4
- package/dist/components/{forms-item → forms-items}/index.css +0 -4
- package/dist/components/global-config/index.css +0 -4
- package/dist/components/icon/index.css +0 -4
- package/dist/components/index.scss +1 -0
- package/dist/components/input-array/index.css +0 -4
- package/dist/components/input-num/index.css +0 -4
- package/dist/components/inputs/index.css +0 -4
- package/dist/components/lists/index.css +0 -4
- package/dist/components/menus/index.cjs +1 -0
- package/dist/components/menus/index.css +19 -0
- package/dist/components/menus/index.js +1 -0
- package/dist/components/menus/index.scss +9 -0
- package/dist/components/page/index.css +0 -4
- package/dist/components/pagin/index.css +0 -4
- package/dist/components/popup/index.css +0 -4
- package/dist/components/right-key/index.css +0 -4
- package/dist/components/selects/index.css +0 -4
- package/dist/components/switchs/index.css +0 -4
- package/dist/components/tables/index.css +0 -4
- package/dist/components/tables-pagin/index.css +0 -4
- package/dist/components/text/index.css +0 -4
- package/dist/components/vxe-tables/index.css +0 -4
- package/dist/components/window/index.css +0 -4
- package/dist/index.css +9 -8
- package/package.json +4 -4
|
@@ -13,27 +13,23 @@
|
|
|
13
13
|
--g-main-bg: var(--bg-color-page);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.com {
|
|
17
|
-
font-size: 20px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
16
|
.f-dialog.el-dialog {
|
|
21
17
|
padding: 0;
|
|
22
18
|
}
|
|
23
|
-
.f-dialog.el-dialog__header {
|
|
19
|
+
.f-dialog.el-dialog .f-dialog__header {
|
|
24
20
|
padding-top: 16px;
|
|
25
21
|
padding-left: 20px;
|
|
26
22
|
border-bottom: 1px solid #e5e7eb;
|
|
27
23
|
}
|
|
28
|
-
.f-dialog.el-dialog__header .el-dialog__headerbtn {
|
|
24
|
+
.f-dialog.el-dialog .f-dialog__header .el-dialog__headerbtn {
|
|
29
25
|
width: 56px;
|
|
30
26
|
height: 56px;
|
|
31
27
|
font-size: 22px;
|
|
32
28
|
}
|
|
33
|
-
.f-dialog.el-dialog__body {
|
|
29
|
+
.f-dialog.el-dialog .f-dialog__body {
|
|
34
30
|
padding: 20px 30px;
|
|
35
31
|
}
|
|
36
|
-
.f-dialog.el-dialog__footer {
|
|
32
|
+
.f-dialog.el-dialog .f-dialog__footer {
|
|
37
33
|
border-top: 1px solid #e5e7eb;
|
|
38
34
|
padding: 20px 20px;
|
|
39
35
|
}
|
|
@@ -4,27 +4,29 @@ $dialog: 'f-dialog';
|
|
|
4
4
|
@include b($dialog) {
|
|
5
5
|
&.#{e()}dialog {
|
|
6
6
|
padding: 0;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
7
|
+
.#{z($dialog)} {
|
|
8
|
+
&__header {
|
|
9
|
+
padding-top: 16px;
|
|
10
|
+
padding-left: 20px;
|
|
11
|
+
// background-color: #3770ed;
|
|
12
|
+
border-bottom: 1px solid #e5e7eb;
|
|
13
|
+
.#{e()}dialog__title,
|
|
14
|
+
.#{e()}dialog__close {
|
|
15
|
+
// color: #fff;
|
|
16
|
+
}
|
|
17
|
+
.#{e()}dialog__headerbtn {
|
|
18
|
+
width: 56px;
|
|
19
|
+
height: 56px;
|
|
20
|
+
font-size: 22px;
|
|
21
|
+
}
|
|
15
22
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
23
|
+
&__body {
|
|
24
|
+
padding: 20px 30px;
|
|
25
|
+
}
|
|
26
|
+
&__footer {
|
|
27
|
+
border-top: 1px solid #e5e7eb;
|
|
28
|
+
padding: 20px 20px;
|
|
20
29
|
}
|
|
21
|
-
}
|
|
22
|
-
&__body {
|
|
23
|
-
padding: 20px 30px;
|
|
24
|
-
}
|
|
25
|
-
&__footer {
|
|
26
|
-
border-top: 1px solid #e5e7eb;
|
|
27
|
-
padding: 20px 20px;
|
|
28
30
|
}
|
|
29
31
|
}
|
|
30
32
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
;/* empty css */
|
|
3
4
|
const withInstall = require("../../utils/vues/withInstall.cjs");
|
|
4
5
|
const index_vue_vue_type_script_setup_true_lang = require("./src/index.cjs");
|
|
5
6
|
const Menus = withInstall.withInstall(index_vue_vue_type_script_setup_true_lang.default, "Menus");
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--icon-picker-on: rgb(91, 189, 246);
|
|
3
|
+
--icon-picker-border: #eee;
|
|
4
|
+
--color-primary: #409eff;
|
|
5
|
+
--bag-primary: #409eff;
|
|
6
|
+
--bag-primary-text: #fff;
|
|
7
|
+
--border: #eee;
|
|
8
|
+
--layout-panel-gap: 10px;
|
|
9
|
+
--layout-panel-padding: 20px;
|
|
10
|
+
--layout-form-item-padding-right: var(
|
|
11
|
+
--layout-panel-gap
|
|
12
|
+
);
|
|
13
|
+
--g-main-bg: var(--bg-color-page);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.menus .menu-li-item {
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
}
|
package/dist/index.css
CHANGED
|
@@ -13,27 +13,23 @@
|
|
|
13
13
|
--g-main-bg: var(--bg-color-page);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.com {
|
|
17
|
-
font-size: 20px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
16
|
.f-dialog.el-dialog {
|
|
21
17
|
padding: 0;
|
|
22
18
|
}
|
|
23
|
-
.f-dialog.el-dialog__header {
|
|
19
|
+
.f-dialog.el-dialog .f-dialog__header {
|
|
24
20
|
padding-top: 16px;
|
|
25
21
|
padding-left: 20px;
|
|
26
22
|
border-bottom: 1px solid #e5e7eb;
|
|
27
23
|
}
|
|
28
|
-
.f-dialog.el-dialog__header .el-dialog__headerbtn {
|
|
24
|
+
.f-dialog.el-dialog .f-dialog__header .el-dialog__headerbtn {
|
|
29
25
|
width: 56px;
|
|
30
26
|
height: 56px;
|
|
31
27
|
font-size: 22px;
|
|
32
28
|
}
|
|
33
|
-
.f-dialog.el-dialog__body {
|
|
29
|
+
.f-dialog.el-dialog .f-dialog__body {
|
|
34
30
|
padding: 20px 30px;
|
|
35
31
|
}
|
|
36
|
-
.f-dialog.el-dialog__footer {
|
|
32
|
+
.f-dialog.el-dialog .f-dialog__footer {
|
|
37
33
|
border-top: 1px solid #e5e7eb;
|
|
38
34
|
padding: 20px 20px;
|
|
39
35
|
}
|
|
@@ -447,6 +443,11 @@
|
|
|
447
443
|
border-bottom: 0;
|
|
448
444
|
}
|
|
449
445
|
|
|
446
|
+
.menus .menu-li-item {
|
|
447
|
+
display: flex;
|
|
448
|
+
align-items: center;
|
|
449
|
+
}
|
|
450
|
+
|
|
450
451
|
.page {
|
|
451
452
|
height: 100%;
|
|
452
453
|
width: 100%;
|
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.25",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description ": "fang-ui",
|
|
7
7
|
"keywords": [
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"vue-tsc": "^3.0.3",
|
|
48
48
|
"vuedraggable": "4.1.0",
|
|
49
49
|
"vxe-table": "4.14.4",
|
|
50
|
-
"@fang-ui/components": "0.0.1-0",
|
|
51
50
|
"@fang-ui/directives": "0.0.1-0",
|
|
51
|
+
"@fang-ui/components": "0.0.1-0",
|
|
52
52
|
"@fang-ui/hooks": "0.0.1-0",
|
|
53
53
|
"@fang-ui/icons": "0.0.1-0",
|
|
54
54
|
"@fang-ui/locale": "0.0.1-0",
|
|
55
55
|
"@fang-ui/theme": "0.0.1-0",
|
|
56
|
-
"@fang-ui/
|
|
57
|
-
"@fang-ui/
|
|
56
|
+
"@fang-ui/utils": "0.0.1-0",
|
|
57
|
+
"@fang-ui/types": "0.0.1-0"
|
|
58
58
|
},
|
|
59
59
|
"main": "./dist/index.cjs",
|
|
60
60
|
"module": "./dist/index.js",
|