@deque/cauldron-react 6.4.0-canary.b2fa855d → 6.4.0-canary.b4ee4f33

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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -3604,7 +3604,7 @@ var Combobox = React.forwardRef(function (_a, ref) {
3604
3604
  var isAutoComplete = autocomplete !== 'none';
3605
3605
  var hasError = !!error;
3606
3606
  var comboboxOptions = children ||
3607
- options.map(function (option, index) { return (React__default["default"].createElement(ComboboxOption, { key: option.key || index, id: "".concat(id, "-option-").concat(index + 1), description: option.description }, option.label)); });
3607
+ options.map(function (option, index) { return (React__default["default"].createElement(ComboboxOption, { key: option.key || index, id: "".concat(id, "-option-").concat(index + 1), description: option.description, value: option.value }, option.label)); });
3608
3608
  var triggerListboxKeyDown = React__default["default"].useCallback(function (key) {
3609
3609
  var _a;
3610
3610
  (_a = listboxRef.current) === null || _a === void 0 ? void 0 : _a.dispatchEvent(new KeyboardEvent('keydown', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-react",
3
- "version": "6.4.0-canary.b2fa855d",
3
+ "version": "6.4.0-canary.b4ee4f33",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Fully accessible react components library for Deque Cauldron",
6
6
  "homepage": "https://cauldron.dequelabs.com/",