vxe-pc-ui 3.6.49 → 3.7.0
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/README.md +122 -10
- package/es/components.js +0 -12
- package/es/icon/style.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/components.js +2 -23
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +3 -18
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +3 -3
- package/packages/components.ts +0 -12
- package/styles/all.scss +0 -6
- package/types/all.d.ts +16 -25
- package/types/components/button.d.ts +3 -1
- package/styles/components/flow-design.scss +0 -0
- package/styles/components/flow-view.scss +0 -0
- package/styles/components/form-design.scss +0 -294
- package/styles/components/form-view.scss +0 -3
- package/styles/components/list-design.scss +0 -113
- package/styles/components/list-item/list-item-all.scss +0 -3
- package/styles/components/list-item/list-item-field-column.scss +0 -19
- package/styles/components/list-item/list-item-field-configs.scss +0 -43
- package/styles/components/list-item/list-item-field-search.scss +0 -81
- package/styles/components/list-view.scss +0 -16
- package/styles/components/widget-form/widget-form-all.scss +0 -6
- package/styles/components/widget-form/widget-form-empty.scss +0 -7
- package/styles/components/widget-form/widget-form-input.scss +0 -0
- package/styles/components/widget-form/widget-form-row.scss +0 -88
- package/styles/components/widget-form/widget-form-select.scss +0 -0
- package/styles/components/widget-form/widget-form-subtable.scss +0 -204
- package/styles/components/widget-form/widget-form-textarea.scss +0 -0
- package/styles/components/widget-item/widget-item-all.scss +0 -4
- package/styles/components/widget-item/widget-item-data-source.scss +0 -110
- package/styles/components/widget-item/widget-item-devices.scss +0 -4
- package/styles/components/widget-item/widget-item-layout.scss +0 -87
- package/styles/components/widget-item/widget-item-prop-list.scss +0 -49
- /package/es/icon/{iconfont.1751948455443.ttf → iconfont.1751974153009.ttf} +0 -0
- /package/es/icon/{iconfont.1751948455443.woff → iconfont.1751974153009.woff} +0 -0
- /package/es/icon/{iconfont.1751948455443.woff2 → iconfont.1751974153009.woff2} +0 -0
- /package/es/{iconfont.1751948455443.ttf → iconfont.1751974153009.ttf} +0 -0
- /package/es/{iconfont.1751948455443.woff → iconfont.1751974153009.woff} +0 -0
- /package/es/{iconfont.1751948455443.woff2 → iconfont.1751974153009.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1751948455443.ttf → iconfont.1751974153009.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1751948455443.woff → iconfont.1751974153009.woff} +0 -0
- /package/lib/icon/style/{iconfont.1751948455443.woff2 → iconfont.1751974153009.woff2} +0 -0
- /package/lib/{iconfont.1751948455443.ttf → iconfont.1751974153009.ttf} +0 -0
- /package/lib/{iconfont.1751948455443.woff → iconfont.1751974153009.woff} +0 -0
- /package/lib/{iconfont.1751948455443.woff2 → iconfont.1751974153009.woff2} +0 -0
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
.vxe-form-design--widget-form-item-layout {
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-direction: row;
|
|
4
|
-
}
|
|
5
|
-
.vxe-form-design--widget-form-item-option {
|
|
6
|
-
width: 50%;
|
|
7
|
-
text-align: center;
|
|
8
|
-
padding: var(--vxe-ui-layout-padding-default);
|
|
9
|
-
margin: 0 var(--vxe-ui-layout-padding-default);
|
|
10
|
-
border: 1px solid var(--vxe-ui-input-border-color);
|
|
11
|
-
border-radius: var(--vxe-ui-base-border-radius);
|
|
12
|
-
cursor: pointer;
|
|
13
|
-
&.is--vertical {
|
|
14
|
-
.vxe-form-design--widget-form-item-option-row {
|
|
15
|
-
display: flex;
|
|
16
|
-
flex-direction: column;
|
|
17
|
-
&:nth-child(1) {
|
|
18
|
-
&::before {
|
|
19
|
-
content: "";
|
|
20
|
-
display: block;
|
|
21
|
-
width: 30%;
|
|
22
|
-
height: 1.2em;
|
|
23
|
-
margin: 2px;
|
|
24
|
-
background-color: var(--vxe-ui-font-tinge-color);
|
|
25
|
-
border-radius: var(--vxe-ui-base-border-radius);
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
&:nth-child(2) {
|
|
29
|
-
&::before {
|
|
30
|
-
content: "";
|
|
31
|
-
display: block;
|
|
32
|
-
width: 100%;
|
|
33
|
-
height: 1.2em;
|
|
34
|
-
margin: 2px;
|
|
35
|
-
background-color: var(--vxe-ui-font-tinge-color);
|
|
36
|
-
border-radius: var(--vxe-ui-base-border-radius);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
&.is--horizontal {
|
|
42
|
-
.vxe-form-design--widget-form-item-option-row {
|
|
43
|
-
display: flex;
|
|
44
|
-
flex-direction: row;
|
|
45
|
-
&:nth-child(1),
|
|
46
|
-
&:nth-child(2) {
|
|
47
|
-
&::before {
|
|
48
|
-
content: "";
|
|
49
|
-
display: block;
|
|
50
|
-
width: 30%;
|
|
51
|
-
height: 1.2em;
|
|
52
|
-
margin: 2px;
|
|
53
|
-
background-color: var(--vxe-ui-font-tinge-color);
|
|
54
|
-
border-radius: var(--vxe-ui-base-border-radius);
|
|
55
|
-
}
|
|
56
|
-
&::after {
|
|
57
|
-
content: "";
|
|
58
|
-
display: block;
|
|
59
|
-
width: 70%;
|
|
60
|
-
height: 1.2em;
|
|
61
|
-
margin: 2px;
|
|
62
|
-
background-color: var(--vxe-ui-font-tinge-color);
|
|
63
|
-
border-radius: var(--vxe-ui-base-border-radius);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
&:hover {
|
|
69
|
-
border-color: var(--vxe-ui-font-primary-color);
|
|
70
|
-
}
|
|
71
|
-
&.is--active {
|
|
72
|
-
color: var(--vxe-ui-font-primary-color);
|
|
73
|
-
border-color: var(--vxe-ui-font-primary-color);
|
|
74
|
-
.vxe-form-design--widget-form-item-option-row {
|
|
75
|
-
&:nth-child(1),
|
|
76
|
-
&:nth-child(2) {
|
|
77
|
-
&::before,
|
|
78
|
-
&::after {
|
|
79
|
-
background-color: var(--vxe-ui-font-primary-color);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
.vxe-form-design--widget-form-item-option-row {
|
|
86
|
-
margin-bottom: 0.2em;
|
|
87
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
.vxe-form-design--widget-form-item-prop-list {
|
|
2
|
-
margin-bottom: var(--vxe-ui-layout-padding-double);
|
|
3
|
-
padding: 0 var(--vxe-ui-layout-padding-default);
|
|
4
|
-
&:first-child {
|
|
5
|
-
margin-top: var(--vxe-ui-layout-padding-default);
|
|
6
|
-
}
|
|
7
|
-
& > span {
|
|
8
|
-
padding: 0 0.5em;
|
|
9
|
-
&:first-child {
|
|
10
|
-
padding: 0;
|
|
11
|
-
padding-right: var(--vxe-ui-layout-padding-default);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
& > span:first-child,
|
|
15
|
-
.vxe-form-design--widget-form-item-prop-width,
|
|
16
|
-
.vxe-form-design--widget-form-item-prop-unit {
|
|
17
|
-
display: inline-flex;
|
|
18
|
-
vertical-align: middle;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.vxe-form {
|
|
23
|
-
.vxe-form-design--widget-form-item-prop-list {
|
|
24
|
-
& > .vxe-form-design--widget-form-item-prop-width {
|
|
25
|
-
width: 90px;
|
|
26
|
-
}
|
|
27
|
-
& > .vxe-form-design--widget-form-item-prop-unit {
|
|
28
|
-
width: 90px;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.vxe-list-design--widget-form-item-prop-list {
|
|
34
|
-
margin-bottom: var(--vxe-ui-layout-padding-double);
|
|
35
|
-
padding: 0 var(--vxe-ui-layout-padding-default);
|
|
36
|
-
&:first-child {
|
|
37
|
-
margin-top: var(--vxe-ui-layout-padding-default);
|
|
38
|
-
}
|
|
39
|
-
&:last-child {
|
|
40
|
-
margin-bottom: 0;
|
|
41
|
-
}
|
|
42
|
-
& > span {
|
|
43
|
-
padding: 0 0.5em;
|
|
44
|
-
&:first-child {
|
|
45
|
-
padding: 0;
|
|
46
|
-
padding-right: var(--vxe-ui-layout-padding-default);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|