@ucloud-fe/react-components 1.12.1 → 1.13.0
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/main.min.js +8 -8
- package/index.d.ts +4 -0
- package/lib/components/AutoComplete/AutoComplete.d.ts +4 -2
- package/lib/components/AutoComplete/AutoComplete.js +8 -3
- package/lib/components/Cascader/Cascader.d.ts +3 -1
- package/lib/components/Cascader/Cascader.js +27 -18
- package/lib/components/Form/ControllerContext.d.ts +1 -1
- package/lib/components/Form/style/index.js +24 -24
- package/lib/components/Message/style/index.js +15 -15
- package/lib/components/Notice/index.d.ts +1 -1
- package/lib/components/Select/Select.d.ts +8 -2
- package/lib/components/Select/Select.js +32 -7
- package/lib/components/Select/index.d.ts +1 -1
- package/lib/components/Select/style/index.d.ts +7 -25
- package/lib/components/Select/style/index.js +34 -27
- package/lib/components/Steps/Step.js +3 -1
- package/lib/components/Steps/style/index.js +28 -26
- package/lib/hooks/useOverflow.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.13.0](https://github.com/UCloud-FE/react-components/compare/v1.12.2...v1.13.0) (2024-12-04)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **autocomplete:** add input props ([237797d](https://github.com/UCloud-FE/react-components/commit/237797d97079c402de459088446213c5354e7089))
|
|
10
|
+
- **Cascader:** add separator ([d9f91df](https://github.com/UCloud-FE/react-components/commit/d9f91df47d3d01eb03df2b83d18994ae065d21a4))
|
|
11
|
+
- **Message:** add h3 bold ([dc7b9a8](https://github.com/UCloud-FE/react-components/commit/dc7b9a87d730ca576038afbf73b60f2e9291365a))
|
|
12
|
+
- **Select:** add error status ([6aef4cf](https://github.com/UCloud-FE/react-components/commit/6aef4cf8f3a13a9952a596dba58a90e274184418))
|
|
13
|
+
- **Steps:** fix style ([574eb93](https://github.com/UCloud-FE/react-components/commit/574eb930d4e0e060323f19ed81023f8dfb631a2e))
|
|
14
|
+
|
|
15
|
+
### [1.12.2](https://github.com/UCloud-FE/react-components/compare/v1.12.1...v1.12.2) (2024-09-02)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- **Steps:** hidden remark ([6620422](https://github.com/UCloud-FE/react-components/commit/662042282665851c7cf7b2ea432ee7e95509a1b9))
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- **Steps:** add doc ([fd881f9](https://github.com/UCloud-FE/react-components/commit/fd881f9d4aa968ab1655c5437172d1fc316bd981))
|
|
24
|
+
|
|
5
25
|
### [1.12.1](https://github.com/UCloud-FE/react-components/compare/v1.12.0...v1.12.1) (2024-08-28)
|
|
6
26
|
|
|
7
27
|
### Features
|