@nutui/nutui 4.3.4 → 4.3.5
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 +20 -0
- package/dist/nutui.es.js +1 -1
- package/dist/nutui.js +2121 -2184
- package/dist/nutui.umd.js +1 -1
- package/dist/packages/cell/Cell.js +89 -80
- package/dist/packages/cellgroup/CellGroup.js +44 -21
- package/dist/packages/form/Form.js +3 -3
- package/dist/packages/formitem/FormItem.js +3 -3
- package/dist/packages/inputnumber/InputNumber.js +6 -6
- package/dist/packages/skeleton/Skeleton.js +88 -123
- package/dist/smartips/web-types.json +1 -1
- package/dist/types/__VUE/cell/cell.vue.d.ts +113 -0
- package/dist/types/__VUE/cell/index.d.ts +6 -0
- package/dist/types/__VUE/cellgroup/cell-group.vue.d.ts +55 -0
- package/dist/types/__VUE/cellgroup/index.d.ts +5 -0
- package/dist/types/__VUE/navbar/navbar.vue.d.ts +1 -1
- package/dist/types/__VUE/skeleton/index.d.ts +5 -0
- package/dist/types/__VUE/skeleton/skeleton.vue.d.ts +102 -0
- package/dist/types/__VUE/swiper/index.vue.d.ts +2 -2
- package/dist/types/__VUE/uploader/index.vue.d.ts +1 -1
- package/dist/types/index.d.ts +7 -4
- package/dist/types/utils/Interceptor.d.ts +2 -2
- package/package.json +1 -1
- package/dist/types/__VUE/cell/index.vue.d.ts +0 -120
- package/dist/types/__VUE/cellgroup/index.vue.d.ts +0 -33
- package/dist/types/__VUE/skeleton/index.vue.d.ts +0 -117
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## v4.3.5
|
|
2
|
+
|
|
3
|
+
`2024-04-10`
|
|
4
|
+
|
|
5
|
+
Features
|
|
6
|
+
|
|
7
|
+
- input-number: 支持透传属性至 input 元素 (#3008) @eiinu
|
|
8
|
+
|
|
9
|
+
Bug Fixes
|
|
10
|
+
|
|
11
|
+
- tag: 修复图标引用问题 @eiinu
|
|
12
|
+
|
|
13
|
+
Refactors
|
|
14
|
+
|
|
15
|
+
- move to script setup: skeleton, cell @eiinu
|
|
16
|
+
|
|
17
|
+
Other Changes
|
|
18
|
+
|
|
19
|
+
- deps: typescript v5.4.4 (#3013) @eiinu
|
|
20
|
+
|
|
1
21
|
## v4.3.4
|
|
2
22
|
|
|
3
23
|
`2024-04-01`
|