cozy-ui 117.1.0 → 117.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 +21 -0
- package/dist/cozy-ui.min.css +1 -1
- package/package.json +1 -1
- package/react/NestedSelect/NestedSelect.jsx +23 -12
- package/react/NestedSelect/NestedSelect.md +1 -8
- package/react/NestedSelect/NestedSelect.spec.jsx +15 -12
- package/react/NestedSelect/styles.styl +1 -1
- package/react/QualificationModal/helpers.js +61 -0
- package/react/QualificationModal/helpers.spec.js +32 -0
- package/react/QualificationModal/index.jsx +14 -37
- package/react/QualificationModal/locales/en.json +2 -1
- package/react/QualificationModal/locales/fr.json +2 -1
- package/stylus/components/table.styl +1 -1
- package/transpiled/react/NestedSelect/NestedSelect.js +33 -15
- package/transpiled/react/QualificationModal/helpers.js +68 -0
- package/transpiled/react/QualificationModal/index.js +12 -40
- package/transpiled/react/QualificationModal/locales/index.js +4 -2
- package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [117.2.1](https://github.com/cozy/cozy-ui/compare/v117.2.0...v117.2.1) (2025-02-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **Table:** Adjust selected color ([5e0fd17](https://github.com/cozy/cozy-ui/commit/5e0fd17))
|
|
7
|
+
|
|
8
|
+
# [117.2.0](https://github.com/cozy/cozy-ui/compare/v117.1.0...v117.2.0) (2025-01-30)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **NestedSelect:** Show now result according to searchResult ([debae36](https://github.com/cozy/cozy-ui/commit/debae36))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **NestedSelect:** Add delay on search result ([fc57533](https://github.com/cozy/cozy-ui/commit/fc57533))
|
|
19
|
+
* **NestedSelect:** Replace Input by SearchBar for search options ([cf01651](https://github.com/cozy/cozy-ui/commit/cf01651))
|
|
20
|
+
* **QualificationModal:** Add search bar ([fab5baa](https://github.com/cozy/cozy-ui/commit/fab5baa))
|
|
21
|
+
|
|
1
22
|
# [117.1.0](https://github.com/cozy/cozy-ui/compare/v117.0.0...v117.1.0) (2025-01-21)
|
|
2
23
|
|
|
3
24
|
|