@wot-ui/ui 2.0.1 → 2.0.3
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/changelog.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
### [2.0.3](https://github.com/wot-ui/wot-ui/compare/v2.0.2...v2.0.3) (2026-04-23)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### ✨ Features | 新功能
|
|
8
|
+
|
|
9
|
+
* ✨ checkbox 支持独立使用 ([#7](https://github.com/wot-ui/wot-ui/issues/7)) ([4b04820](https://github.com/wot-ui/wot-ui/commit/4b04820853f19459a88f69ce6e19d9a756b0cf8e))
|
|
10
|
+
|
|
11
|
+
### [2.0.2](https://github.com/wot-ui/wot-ui/compare/v2.0.1...v2.0.2) (2026-04-22)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
15
|
+
|
|
16
|
+
* 🐛 移除按钮组件的 flex-shrink 属性 ([a6d6068](https://github.com/wot-ui/wot-ui/commit/a6d6068402fb39778e68d0280e45d7894daca386))
|
|
17
|
+
|
|
4
18
|
### [2.0.1](https://github.com/wot-ui/wot-ui/compare/v2.0.0...v2.0.1) (2026-04-22)
|
|
5
19
|
|
|
6
20
|
|
|
@@ -120,7 +120,7 @@ const readonlyValue = computed(() => {
|
|
|
120
120
|
if (isDef(props.readonly)) {
|
|
121
121
|
return props.readonly
|
|
122
122
|
} else {
|
|
123
|
-
return getPropByPath(checkboxGroup.value, 'props.readonly')
|
|
123
|
+
return getPropByPath(checkboxGroup.value, 'props.readonly') || false
|
|
124
124
|
}
|
|
125
125
|
})
|
|
126
126
|
|
|
@@ -128,7 +128,7 @@ const directionValue = computed(() => {
|
|
|
128
128
|
if (isDef(props.direction)) {
|
|
129
129
|
return props.direction
|
|
130
130
|
} else {
|
|
131
|
-
return getPropByPath(checkboxGroup.value, 'props.direction') as CheckboxDirection
|
|
131
|
+
return (getPropByPath(checkboxGroup.value, 'props.direction') as CheckboxDirection) || 'vertical'
|
|
132
132
|
}
|
|
133
133
|
})
|
|
134
134
|
|
|
@@ -136,7 +136,7 @@ const placementValue = computed<CheckboxPlacement>(() => {
|
|
|
136
136
|
if (isDef(props.placement)) {
|
|
137
137
|
return props.placement
|
|
138
138
|
} else {
|
|
139
|
-
return getPropByPath(checkboxGroup.value, 'props.placement')
|
|
139
|
+
return getPropByPath(checkboxGroup.value, 'props.placement') || 'left'
|
|
140
140
|
}
|
|
141
141
|
})
|
|
142
142
|
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"id":"wot-ui","name":"@wot-ui/ui","displayName":"wot-ui 一个轻量、美观、AI友好的 uni-app 组件库","version":"2.0.
|
|
1
|
+
{"id":"wot-ui","name":"@wot-ui/ui","displayName":"wot-ui 一个轻量、美观、AI友好的 uni-app 组件库","version":"2.0.3","license":"MIT","description":"wot-ui 一个轻量、美观、AI友好的 uni-app 组件库。","keywords":["wot-ui","国际化","组件库","vue3","暗黑模式"],"main":"index.ts","repository":{"type":"git","url":"https://github.com/wot-ui/wot-ui.git"},"engines":{"HBuilderX":"^3.8.7"},"dcloudext":{"type":"component-vue","sale":{"regular":{"price":"0.00"},"sourcecode":{"price":"0.00"}},"contact":{"qq":""},"declaration":{"ads":"无","data":"插件不采集任何数据","permissions":"无"},"npmurl":"https://www.npmjs.com/package/@wot-ui/ui"},"vetur":{"tags":"tags.json","attributes":"attributes.json"},"web-types":"web-types.json","uni_modules":{"dependencies":[],"encrypt":[],"platforms":{"cloud":{"tcb":"y","aliyun":"y","alipay":"n"},"client":{"Vue":{"vue2":"n","vue3":"y"},"App":{"app-vue":"y","app-nvue":"n","app-uvue":"n"},"H5-mobile":{"Safari":"y","Android Browser":"y","微信浏览器(Android)":"y","QQ浏览器(Android)":"y"},"H5-pc":{"Chrome":"y","IE":"u","Edge":"y","Firefox":"y","Safari":"y"},"小程序":{"微信":"y","阿里":"y","百度":"u","字节跳动":"u","QQ":"y","钉钉":"y","快手":"u","飞书":"u","京东":"u"},"快应用":{"华为":"u","联盟":"u"}}}},"peerDependencies":{"vue":">=3.2.47"}}
|