zhytech-ui-mobile 1.0.15 → 1.0.17
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 +10 -0
- package/dist/static/scss/checkbox.scss +14 -12
- package/dist/static/scss/radio.scss +14 -12
- package/dist/style.css +1 -1
- package/dist/types/components/puzzleVCode/index.d.ts +5 -0
- package/dist/types/components/puzzleVCode/types/configOptionView.d.ts +53 -0
- package/dist/types/index.d.ts +3 -2
- package/dist/zhytech-ui-mobile.es.js +610 -193
- package/dist/zhytech-ui-mobile.umd.js +2 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -59,6 +59,16 @@ setTheme("dark");
|
|
|
59
59
|
|
|
60
60
|
> #### 版本更新清单:
|
|
61
61
|
|
|
62
|
+
**V 1.0.17**
|
|
63
|
+
```html
|
|
64
|
+
1.新增拼图验证码组件(zhyPuzzleVcode),暴漏option类型vcodeConfigOption
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
**V 1.0.16**
|
|
68
|
+
```html
|
|
69
|
+
1.优化多选框组件、单选框禁用时的样式
|
|
70
|
+
```
|
|
71
|
+
|
|
62
72
|
**V 1.0.14**
|
|
63
73
|
```html
|
|
64
74
|
1.修复多选框组件、日期组件、时间组件的项目说明/答案解析提示图标显示异常
|
|
@@ -7,18 +7,20 @@
|
|
|
7
7
|
&.is-inline {
|
|
8
8
|
margin-right: 15px;
|
|
9
9
|
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
&.is-disabled {
|
|
11
|
+
&.is-checked {
|
|
12
|
+
.wd-checkbox__shape {
|
|
13
|
+
--at-apply: theme-bc-info;
|
|
14
|
+
--at-apply: theme-bgc-info;
|
|
15
|
+
}
|
|
16
|
+
.wd-checkbox__txt {
|
|
17
|
+
--at-apply: theme-color-info;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
.wd-checkbox__shape {
|
|
21
|
+
background: #ffffff !important;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
22
24
|
.wd-checkbox__shape {
|
|
23
25
|
vertical-align: top;
|
|
24
26
|
}
|
|
@@ -13,18 +13,20 @@
|
|
|
13
13
|
width: calc(100% - 20px);
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
16
|
+
&.is-disabled {
|
|
17
|
+
&.is-checked {
|
|
18
|
+
.wd-radio__shape {
|
|
19
|
+
--at-apply: theme-bc-info;
|
|
20
|
+
--at-apply: theme-bgc-info;
|
|
21
|
+
}
|
|
22
|
+
.wd-radio__label {
|
|
23
|
+
--at-apply: theme-color-info;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.wd-radio__shape {
|
|
27
|
+
background: #ffffff !important;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
28
30
|
.wd-radio__shape {
|
|
29
31
|
margin-top: 2px;
|
|
30
32
|
margin-right: 5px;
|