@nutui/nutui 4.3.6 → 4.3.7
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 +4053 -4161
- package/dist/nutui.umd.js +1 -1
- package/dist/packages/image/Image.js +79 -111
- package/dist/packages/input/Input.js +111 -181
- package/dist/packages/invoice/Invoice.js +4 -4
- package/dist/packages/menuitem/MenuItem.js +1 -1
- package/dist/packages/numberkeyboard/NumberKeyboard.js +6 -2
- package/dist/packages/tabpane/TabPane.js +1 -1
- package/dist/smartips/web-types.json +1 -1
- package/dist/types/__VUE/image/image.vue.d.ts +111 -0
- package/dist/types/__VUE/image/index.d.ts +6 -0
- package/dist/types/__VUE/input/index.d.ts +6 -0
- package/dist/types/__VUE/input/input.vue.d.ts +171 -0
- package/dist/types/__VUE/input/{type.d.ts → types.d.ts} +2 -2
- package/dist/types/__VUE/input/util.d.ts +1 -1
- package/dist/types/__VUE/numberkeyboard/index.vue.d.ts +3 -1
- package/dist/types/index.d.ts +5 -3
- package/package.json +1 -1
- package/dist/types/__VUE/image/index.vue.d.ts +0 -126
- package/dist/types/__VUE/input/index.vue.d.ts +0 -221
- /package/dist/types/__VUE/image/{type.d.ts → types.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## v4.3.7
|
|
2
|
+
|
|
3
|
+
`2024-05-07`
|
|
4
|
+
|
|
5
|
+
Features
|
|
6
|
+
|
|
7
|
+
- number-keyboard: add confirm event (#3059) @eiinu
|
|
8
|
+
|
|
9
|
+
Bug Fixes
|
|
10
|
+
|
|
11
|
+
- tabs: inject 数据增加 ?. (#3045) @2977938133
|
|
12
|
+
|
|
13
|
+
Refactors
|
|
14
|
+
|
|
15
|
+
- input, image: move to script setup @eiinu
|
|
16
|
+
|
|
17
|
+
Other Changes
|
|
18
|
+
|
|
19
|
+
- docs: input 更新 align demo 引用名称 (#3044) @ShuTianGit
|
|
20
|
+
|
|
1
21
|
## v4.3.6
|
|
2
22
|
|
|
3
23
|
`2024-04-19`
|