@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.
- package/lib/index.js +1 -1
- 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