@hi-ui/hiui 4.3.5 → 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 +27 -0
- package/lib/cjs/index.js +130 -664
- package/lib/cjs/ui/locale-context/lib/esm/LocaleContext.js +3 -17
- package/lib/cjs/ui/locale-context/lib/esm/LocaleProvider.js +7 -34
- package/lib/cjs/ui/locale-context/lib/esm/locale/en-US.js +1 -1
- package/lib/cjs/ui/locale-context/lib/esm/locale/index.js +1 -6
- package/lib/cjs/ui/locale-context/lib/esm/locale/zh-CN.js +1 -1
- package/lib/cjs/ui/locale-context/lib/esm/locale/zh-HK.js +1 -1
- package/lib/cjs/ui/locale-context/lib/esm/locale/zh-TW.js +1 -1
- package/lib/cjs/ui/locale-context/lib/esm/types.js +0 -4
- package/lib/cjs/utils/array-utils/lib/esm/index.js +1 -8
- package/lib/cjs/utils/env/lib/esm/index.js +0 -8
- package/lib/cjs/utils/object-utils/lib/esm/index.js +4 -15
- package/lib/cjs/utils/type-assertion/lib/esm/index.js +1 -8
- package/lib/esm/ui/locale-context/lib/esm/LocaleContext.js +3 -7
- package/lib/esm/ui/locale-context/lib/esm/LocaleProvider.js +5 -11
- package/lib/esm/ui/locale-context/lib/esm/locale/en-US.js +0 -1
- package/lib/esm/ui/locale-context/lib/esm/locale/index.js +1 -1
- package/lib/esm/ui/locale-context/lib/esm/locale/zh-CN.js +0 -1
- package/lib/esm/ui/locale-context/lib/esm/locale/zh-HK.js +0 -1
- package/lib/esm/ui/locale-context/lib/esm/locale/zh-TW.js +0 -1
- package/lib/esm/ui/locale-context/lib/esm/types.js +0 -1
- package/lib/esm/utils/array-utils/lib/esm/index.js +1 -3
- package/lib/esm/utils/env/lib/esm/index.js +0 -5
- package/lib/esm/utils/object-utils/lib/esm/index.js +1 -6
- package/lib/esm/utils/type-assertion/lib/esm/index.js +1 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,32 @@
|
|
1
1
|
# @hi-ui/hiui
|
2
2
|
|
3
|
+
## 4.3.7
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#2669](https://github.com/XiaoMi/hiui/pull/2669) [`d8e7308f5`](https://github.com/XiaoMi/hiui/commit/d8e7308f5ab898795a284141d618a1253d218d9d) Thanks [@zyprepare](https://github.com/zyprepare)! - Modal fix: 补充 api 调用中的参数类型声明
|
8
|
+
|
9
|
+
- [#2667](https://github.com/XiaoMi/hiui/pull/2667) [`3e2e9c389`](https://github.com/XiaoMi/hiui/commit/3e2e9c389c15908b6dc70ad224253d8287273eea) Thanks [@zyprepare](https://github.com/zyprepare)! - feat(pop-confirm): add content api
|
10
|
+
|
11
|
+
- [#2663](https://github.com/XiaoMi/hiui/pull/2663) [`9a46f8e0f`](https://github.com/XiaoMi/hiui/commit/9a46f8e0ff52bd76728b17e11dcedd0ce3953be1) Thanks [@zyprepare](https://github.com/zyprepare)! - Radio feat: add autoWidth api
|
12
|
+
|
13
|
+
- Updated dependencies [[`d8e7308f5`](https://github.com/XiaoMi/hiui/commit/d8e7308f5ab898795a284141d618a1253d218d9d), [`9a46f8e0f`](https://github.com/XiaoMi/hiui/commit/9a46f8e0ff52bd76728b17e11dcedd0ce3953be1), [`3e2e9c389`](https://github.com/XiaoMi/hiui/commit/3e2e9c389c15908b6dc70ad224253d8287273eea)]:
|
14
|
+
- @hi-ui/modal@4.0.12
|
15
|
+
- @hi-ui/radio@4.1.0
|
16
|
+
- @hi-ui/pop-confirm@4.2.0
|
17
|
+
|
18
|
+
## 4.3.6
|
19
|
+
|
20
|
+
### Patch Changes
|
21
|
+
|
22
|
+
- [#2658](https://github.com/XiaoMi/hiui/pull/2658) [`1dd9b9e32`](https://github.com/XiaoMi/hiui/commit/1dd9b9e3298966ecf9ebd913f23deb7e088bce4a) Thanks [@zyprepare](https://github.com/zyprepare)! - feat(tag): add editorRender api
|
23
|
+
|
24
|
+
- [#2659](https://github.com/XiaoMi/hiui/pull/2659) [`b78487cd7`](https://github.com/XiaoMi/hiui/commit/b78487cd725532000f81876e1826f1918c37b23a) Thanks [@zyprepare](https://github.com/zyprepare)! - Menu fix: 修复 mini 模式下子菜单内容展示不全问题
|
25
|
+
|
26
|
+
- Updated dependencies [[`1dd9b9e32`](https://github.com/XiaoMi/hiui/commit/1dd9b9e3298966ecf9ebd913f23deb7e088bce4a), [`b78487cd7`](https://github.com/XiaoMi/hiui/commit/b78487cd725532000f81876e1826f1918c37b23a)]:
|
27
|
+
- @hi-ui/tag@4.1.0
|
28
|
+
- @hi-ui/menu@4.1.3
|
29
|
+
|
3
30
|
## 4.3.5
|
4
31
|
|
5
32
|
### Patch Changes
|