@easyv/react-components 0.0.35 → 0.0.37
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/Modal/index.less +5 -4
- package/dist/Radio/index.less +33 -31
- package/package.json +2 -1
package/dist/Modal/index.less
CHANGED
|
@@ -90,10 +90,11 @@
|
|
|
90
90
|
.arco-icon-info-circle-fill {
|
|
91
91
|
color: rgb(var(--link-6));
|
|
92
92
|
}
|
|
93
|
-
}
|
|
94
93
|
|
|
95
|
-
.
|
|
96
|
-
|
|
97
|
-
|
|
94
|
+
// 调整 modal.[xxx] 的内容左边距,主题配置不支持修改
|
|
95
|
+
&.arco-modal-simple {
|
|
96
|
+
.arco-modal-content {
|
|
97
|
+
padding-left: 28px;
|
|
98
|
+
}
|
|
98
99
|
}
|
|
99
100
|
}
|
package/dist/Radio/index.less
CHANGED
|
@@ -1,41 +1,43 @@
|
|
|
1
1
|
.arco-radio-group {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
&.arco-radio-group-type-button {
|
|
3
|
+
label {
|
|
4
|
+
&.arco-radio-button {
|
|
5
|
+
position: relative;
|
|
6
|
+
font-weight: normal;
|
|
7
|
+
border-width: 1px;
|
|
8
|
+
border-style: solid;
|
|
9
|
+
border-block-start-width: 1.02px;
|
|
10
|
+
border-inline-start-width: 0;
|
|
11
|
+
border-inline-end-width: 1px;
|
|
12
|
+
border-color: var(--color-border-4);
|
|
13
|
+
margin: 0;
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
&::after {
|
|
16
|
+
background-color: transparent;
|
|
17
|
+
}
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
&::before {
|
|
20
|
+
background-color: transparent;
|
|
21
|
+
}
|
|
21
22
|
|
|
22
|
-
|
|
23
|
+
border-radius: 0;
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
&:first-child {
|
|
26
|
+
border-inline-start-width: 1px;
|
|
27
|
+
}
|
|
27
28
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
&.arco-radio-checked {
|
|
30
|
+
z-index: 1;
|
|
31
|
+
color: rgb(var(--primary-6));
|
|
32
|
+
border-color: rgb(var(--primary-6));
|
|
32
33
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
&::before {
|
|
35
|
+
left: -1px;
|
|
36
|
+
height: 100%;
|
|
37
|
+
opacity: 1;
|
|
38
|
+
background-color: rgb(var(--primary-6));
|
|
39
|
+
transition: none;
|
|
40
|
+
}
|
|
39
41
|
}
|
|
40
42
|
}
|
|
41
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easyv/react-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.37",
|
|
4
4
|
"description": "a react component library base on arco design",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@arco-design/web-react": "2.57.1",
|
|
57
57
|
"@arco-themes/react-dtable": "0.0.40",
|
|
58
|
+
"@arco-themes/react-easytwin": "0.0.16",
|
|
58
59
|
"@commitlint/cli": "^17.1.2",
|
|
59
60
|
"@commitlint/config-conventional": "^17.1.0",
|
|
60
61
|
"@easyv/sync-to-mirror": "^0.0.2",
|