@rhc-shared-components/form-multi-select-component 1.0.0 → 1.0.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/dist/index.js +0 -1
- package/dist/index.modern.js +0 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -361,7 +361,6 @@ var FormMultiSelectInput = function FormMultiSelectInput(_ref) {
|
|
|
361
361
|
return React__default["default"].createElement(reactCore.SelectOption, Object.assign({
|
|
362
362
|
key: option.value || option.children,
|
|
363
363
|
isFocused: focusedItemIndex === index,
|
|
364
|
-
className: option.className,
|
|
365
364
|
id: "select-multi-typeahead-" + option.value.replace(' ', '-'),
|
|
366
365
|
isDisabled: option.isDisabled || isSubmitting
|
|
367
366
|
}, option));
|
package/dist/index.modern.js
CHANGED
|
@@ -303,7 +303,6 @@ const FormMultiSelectInput = _ref => {
|
|
|
303
303
|
}, selectOptions.map((option, index) => React__default.createElement(SelectOption, Object.assign({
|
|
304
304
|
key: option.value || option.children,
|
|
305
305
|
isFocused: focusedItemIndex === index,
|
|
306
|
-
className: option.className,
|
|
307
306
|
id: `select-multi-typeahead-${option.value.replace(' ', '-')}`,
|
|
308
307
|
isDisabled: option.isDisabled || isSubmitting
|
|
309
308
|
}, option)))))));
|