@spark-ui/components 10.1.1 → 10.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 +12 -0
- package/dist/combobox/index.js +1 -1
- package/dist/combobox/index.js.map +1 -1
- package/dist/combobox/index.mjs +1 -1
- package/dist/combobox/index.mjs.map +1 -1
- package/dist/progress/index.js +2 -1
- package/dist/progress/index.js.map +1 -1
- package/dist/progress/index.mjs +2 -1
- package/dist/progress/index.mjs.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [10.2.1](https://github.com/leboncoin/spark-web/compare/v10.2.0...v10.2.1) (2025-04-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **components:** combobox - sync async options load with input ([1f48f9e](https://github.com/leboncoin/spark-web/commit/1f48f9e69e26f886a0b1f8ace6819b98acd47b89))
|
|
11
|
+
|
|
12
|
+
# [10.2.0](https://github.com/leboncoin/spark-web/compare/v10.1.1...v10.2.0) (2025-04-09)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- **components:** progress - screen reader optimization ([9541840](https://github.com/leboncoin/spark-web/commit/9541840cce1acc14c39beebd8774817704f6b132))
|
|
17
|
+
|
|
6
18
|
## [10.1.1](https://github.com/leboncoin/spark-web/compare/v10.1.0...v10.1.1) (2025-04-08)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/dist/combobox/index.js
CHANGED
|
@@ -1551,7 +1551,7 @@ var ComboboxProvider = ({
|
|
|
1551
1551
|
} else {
|
|
1552
1552
|
setSelectedItem(itemsMap.get(comboboxValue) || null);
|
|
1553
1553
|
}
|
|
1554
|
-
}, [multiple ? JSON.stringify(comboboxValue) : comboboxValue]);
|
|
1554
|
+
}, [multiple ? JSON.stringify(comboboxValue) : comboboxValue, itemsMap]);
|
|
1555
1555
|
const field = (0, import_form_field.useFormFieldControl)();
|
|
1556
1556
|
const internalFieldLabelID = `${ID_PREFIX2}-label-${(0, import_react7.useId)()}`;
|
|
1557
1557
|
const internalFieldID = `${ID_PREFIX2}-field-${(0, import_react7.useId)()}`;
|