@hi-ui/input 4.2.0 → 4.2.1
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 +7 -0
- package/lib/cjs/utils/index.js +3 -0
- package/lib/esm/utils/index.js +3 -0
- package/lib/types/types.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# @hi-ui/input
|
2
2
|
|
3
|
+
## 4.2.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#3024](https://github.com/XiaoMi/hiui/pull/3024) [`4baa3bda2`](https://github.com/XiaoMi/hiui/commit/4baa3bda267233c45d15717bc8765587901447b3) Thanks [@zyprepare](https://github.com/zyprepare)! - fix(input): 修复 type="X" 时最后一位无法输入 X 的问题 (#3023)
|
8
|
+
chore(input): type 类型中增加 number 类型
|
9
|
+
|
3
10
|
## 4.2.0
|
4
11
|
|
5
12
|
### Minor Changes
|
package/lib/cjs/utils/index.js
CHANGED
package/lib/esm/utils/index.js
CHANGED
package/lib/types/types.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
import { HiBaseAppearanceEnum } from '@hi-ui/core';
|
2
2
|
export declare type InputAppearanceEnum = HiBaseAppearanceEnum | 'underline';
|
3
|
-
export declare type InputTypeEnum = 'text' | 'id' | 'tel' | 'card' | 'amount' | 'email' | 'password';
|
3
|
+
export declare type InputTypeEnum = 'text' | 'id' | 'tel' | 'card' | 'amount' | 'email' | 'password' | 'number';
|