cbvirtua 1.0.53 → 1.0.55

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cbvirtua",
3
- "version": "1.0.53",
3
+ "version": "1.0.55",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/vant-2.x.zip ADDED
Binary file
@@ -80,4 +80,21 @@ async function polling() {
80
80
  作者:小南聊一聊
81
81
  链接:https://juejin.cn/post/7099252918682910733
82
82
  来源:稀土掘金
83
- 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
83
+ 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
84
+
85
+ .ui-input[is-error], [is="ui-input"][is-error], .ui-input > [is-error] {
86
+ border-color: var(--ui-red, #eb4646) !important;
87
+ }
88
+
89
+ input.ui-input, .ui-input > input, [is="ui-input"] {
90
+ height: var(--ui-input-height);
91
+ line-height: var(--ui-input-line-height);
92
+ padding: calc((var(--ui-input-height) - var(--ui-input-line-height) - 2px) / 2) 8px;
93
+ border: 1px solid var(--ui-border, #d0d0d5);
94
+ border-radius: var(--ui-radius, 4px);
95
+ background-color: var(--ui-white, #fff);
96
+ box-sizing: border-box;
97
+ font-size: var(--ui-font, 14px);
98
+ outline: none;
99
+ color: var(--ui-dark, #4c5161);
100
+ transition: border-color var(--ui-animate-time, .2s), background-color var(--ui-animate-time, .2s);