cloud-b2b 1.1.3 → 1.1.6
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/es/Area/Area.js +8 -5
- package/es/Control/Control.js +3 -8
- package/es/SuperForm2/SuperForm.js +47 -28
- package/es/SuperTable/FilterDropDown.less +30 -30
- package/es/SuperTable/package.json +6 -6
- package/es/SuperTable2/SuperTable2.js +4 -2
- package/es/SuperTable2/package.json +6 -6
- package/es/SuperUpload/SuperUpload.js +30 -18
- package/es/Title/Title.less +35 -35
- package/es/Title/package.json +6 -6
- package/es/adjust.less +89 -89
- package/lib/Area/Area.js +8 -5
- package/lib/Control/Control.js +3 -8
- package/lib/SuperForm2/SuperForm.js +47 -28
- package/lib/SuperTable/FilterDropDown.less +30 -30
- package/lib/SuperTable/package.json +6 -6
- package/lib/SuperTable2/SuperTable2.js +4 -2
- package/lib/SuperTable2/package.json +6 -6
- package/lib/SuperUpload/SuperUpload.js +30 -17
- package/lib/Title/Title.less +35 -35
- package/lib/Title/package.json +6 -6
- package/lib/adjust.less +89 -89
- package/package.json +1 -1
package/lib/Title/Title.less
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
@import '../variables';
|
|
2
|
-
|
|
3
|
-
.@{cloudlink-prefix}-title {
|
|
4
|
-
> *:first-child {
|
|
5
|
-
display: inline-block;
|
|
6
|
-
color: @brand-primary;
|
|
7
|
-
line-height: 1.2;
|
|
8
|
-
|
|
9
|
-
&[data-border='true'] {
|
|
10
|
-
padding: 0 5px;
|
|
11
|
-
border-left: @brand-primary solid 3px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&[data-fold='true'] {
|
|
15
|
-
cursor: pointer;
|
|
16
|
-
margin: 8px 0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&[data-required='true'] {
|
|
20
|
-
&::after {
|
|
21
|
-
display: inline-block;
|
|
22
|
-
margin-left: 4px;
|
|
23
|
-
color: #f5222d;
|
|
24
|
-
font-size: 12px;
|
|
25
|
-
font-family: SimSun, sans-serif;
|
|
26
|
-
line-height: 1;
|
|
27
|
-
content: '*';
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
> [role = 'toolbar'] {
|
|
33
|
-
display: inline-block;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
1
|
+
@import '../variables';
|
|
2
|
+
|
|
3
|
+
.@{cloudlink-prefix}-title {
|
|
4
|
+
> *:first-child {
|
|
5
|
+
display: inline-block;
|
|
6
|
+
color: @brand-primary;
|
|
7
|
+
line-height: 1.2;
|
|
8
|
+
|
|
9
|
+
&[data-border='true'] {
|
|
10
|
+
padding: 0 5px;
|
|
11
|
+
border-left: @brand-primary solid 3px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&[data-fold='true'] {
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
margin: 8px 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&[data-required='true'] {
|
|
20
|
+
&::after {
|
|
21
|
+
display: inline-block;
|
|
22
|
+
margin-left: 4px;
|
|
23
|
+
color: #f5222d;
|
|
24
|
+
font-size: 12px;
|
|
25
|
+
font-family: SimSun, sans-serif;
|
|
26
|
+
line-height: 1;
|
|
27
|
+
content: '*';
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
> [role = 'toolbar'] {
|
|
33
|
+
display: inline-block;
|
|
34
|
+
}
|
|
35
|
+
}
|
package/lib/Title/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Title",
|
|
3
|
-
"version": "0.0.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"main": "./Title.js"
|
|
6
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Title",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"main": "./Title.js"
|
|
6
|
+
}
|
package/lib/adjust.less
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
|
|
2
|
-
.ant-table-small {
|
|
3
|
-
.ant-table-thead {
|
|
4
|
-
background-color: @table-header-bg;
|
|
5
|
-
|
|
6
|
-
> tr > th {
|
|
7
|
-
padding: 12px 8px 11px !important;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.ant-table-tbody > tr > td {
|
|
12
|
-
padding: 8px 8px 7px !important;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.ant-table-tbody > tr.ant-table-row-selected td {
|
|
16
|
-
background-color: @primary-1 !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
|
|
20
|
-
background-color: @table-header-bg !important;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.ant-table-selection-column {
|
|
24
|
-
min-width: 62px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
table {
|
|
28
|
-
border-collapse: separate;
|
|
29
|
-
border-spacing: 0;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.ant-modal {
|
|
34
|
-
top: 50px;
|
|
35
|
-
padding-bottom: 0;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.ant-form-item {
|
|
39
|
-
margin-bottom: 6px;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.ant-select-sm .ant-select-selection--single {
|
|
43
|
-
height: @input-height-sm !important;
|
|
44
|
-
overflow: hidden;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.ant-form-vertical .ant-form-item {
|
|
48
|
-
padding-bottom: 0;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.ant-form-item-control {
|
|
52
|
-
line-height: @input-height-sm;
|
|
53
|
-
|
|
54
|
-
> .ant-form-explain-holder[aria-hidden='true'] {
|
|
55
|
-
display: none;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.ant-form-vertical .ant-form-item-label {
|
|
60
|
-
padding: 0;
|
|
61
|
-
line-height: 1.2;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.ant-input-lg {
|
|
65
|
-
font-size: 12px;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.ant-btn-lg {
|
|
69
|
-
height: @input-height-lg;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.ant-menu-inline .ant-menu-item {
|
|
73
|
-
margin-top: 0;
|
|
74
|
-
margin-bottom: 0 !important;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.ant-modal-header {
|
|
78
|
-
padding: 13px 16px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.ant-modal-body {
|
|
82
|
-
padding: 16px;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.ant-btn-primary:focus {
|
|
86
|
-
background-color: white;
|
|
87
|
-
color: @primary-color;
|
|
88
|
-
text-shadow: none;
|
|
89
|
-
}
|
|
1
|
+
|
|
2
|
+
.ant-table-small {
|
|
3
|
+
.ant-table-thead {
|
|
4
|
+
background-color: @table-header-bg;
|
|
5
|
+
|
|
6
|
+
> tr > th {
|
|
7
|
+
padding: 12px 8px 11px !important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ant-table-tbody > tr > td {
|
|
12
|
+
padding: 8px 8px 7px !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ant-table-tbody > tr.ant-table-row-selected td {
|
|
16
|
+
background-color: @primary-1 !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
|
|
20
|
+
background-color: @table-header-bg !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ant-table-selection-column {
|
|
24
|
+
min-width: 62px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
table {
|
|
28
|
+
border-collapse: separate;
|
|
29
|
+
border-spacing: 0;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ant-modal {
|
|
34
|
+
top: 50px;
|
|
35
|
+
padding-bottom: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.ant-form-item {
|
|
39
|
+
margin-bottom: 6px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ant-select-sm .ant-select-selection--single {
|
|
43
|
+
height: @input-height-sm !important;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.ant-form-vertical .ant-form-item {
|
|
48
|
+
padding-bottom: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ant-form-item-control {
|
|
52
|
+
line-height: @input-height-sm;
|
|
53
|
+
|
|
54
|
+
> .ant-form-explain-holder[aria-hidden='true'] {
|
|
55
|
+
display: none;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ant-form-vertical .ant-form-item-label {
|
|
60
|
+
padding: 0;
|
|
61
|
+
line-height: 1.2;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ant-input-lg {
|
|
65
|
+
font-size: 12px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.ant-btn-lg {
|
|
69
|
+
height: @input-height-lg;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.ant-menu-inline .ant-menu-item {
|
|
73
|
+
margin-top: 0;
|
|
74
|
+
margin-bottom: 0 !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.ant-modal-header {
|
|
78
|
+
padding: 13px 16px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.ant-modal-body {
|
|
82
|
+
padding: 16px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.ant-btn-primary:focus {
|
|
86
|
+
background-color: white;
|
|
87
|
+
color: @primary-color;
|
|
88
|
+
text-shadow: none;
|
|
89
|
+
}
|