@box/blueprint-web 12.133.1 → 12.134.0
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/lib-esm/combobox/combobox.js +1 -1
- package/dist/lib-esm/combobox/combobox.module.js +1 -1
- package/dist/lib-esm/index.css +221 -229
- package/dist/lib-esm/modal/modal.module.js +1 -1
- package/dist/lib-esm/primitives/base-button/base-button.module.js +1 -1
- package/dist/lib-esm/side-panel/side-panel.module.js +1 -1
- package/dist/lib-esm/split-button/styles.module.js +1 -1
- package/package.json +3 -3
|
@@ -335,7 +335,7 @@ const RootInner = ({
|
|
|
335
335
|
const showChipsGroup = Array.isArray(selectedValue) && selectedValue.length > 0;
|
|
336
336
|
const showComboboxCancelButton = clearButtonAriaLabel && (inputValue.length > 0 || (Array.isArray(selectedValue) ? selectedValue.length > 0 : !!selectedValue));
|
|
337
337
|
const showSingleSelectChip = displaySingleSelectionAsChip && !Array.isArray(selectedValue) && !!selectedValue;
|
|
338
|
-
const Label = useLabelable(label, comboboxId);
|
|
338
|
+
const Label = useLabelable(label, comboboxId, required);
|
|
339
339
|
const inlineErrorId = useUniqueId('inline-error-');
|
|
340
340
|
const ariaDescribedBy = clsx(rest['aria-describedby'], {
|
|
341
341
|
[inlineErrorId]: hasError
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../index.css';
|
|
2
|
-
var styles = {"container":"bp_combobox_module_container--
|
|
2
|
+
var styles = {"container":"bp_combobox_module_container--c44bc","label":"bp_combobox_module_label--c44bc","textInput":"bp_combobox_module_textInput--c44bc","popover":"bp_combobox_module_popover--c44bc","disabled":"bp_combobox_module_disabled--c44bc","hiddenLabel":"bp_combobox_module_hiddenLabel--c44bc","comboboxContainer":"bp_combobox_module_comboboxContainer--c44bc","withComboboxButtons":"bp_combobox_module_withComboboxButtons--c44bc","error":"bp_combobox_module_error--c44bc","textInputWrapper":"bp_combobox_module_textInputWrapper--c44bc","comboboxButtons":"bp_combobox_module_comboboxButtons--c44bc","withChips":"bp_combobox_module_withChips--c44bc","inlineError":"bp_combobox_module_inlineError--c44bc","option":"bp_combobox_module_option--c44bc","indicator":"bp_combobox_module_indicator--c44bc","indicatorIcon":"bp_combobox_module_indicatorIcon--c44bc","optionWithIndicator":"bp_combobox_module_optionWithIndicator--c44bc","loadingIndicator":"bp_combobox_module_loadingIndicator--c44bc"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|