@box/blueprint-web 12.109.0 → 12.110.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.
|
@@ -44,6 +44,7 @@ const RootInner = ({
|
|
|
44
44
|
disabled = false,
|
|
45
45
|
required = false,
|
|
46
46
|
className,
|
|
47
|
+
popoverClassName,
|
|
47
48
|
error,
|
|
48
49
|
hideLabel = false,
|
|
49
50
|
label,
|
|
@@ -449,7 +450,7 @@ const RootInner = ({
|
|
|
449
450
|
children: [inputComponent, showLoading || filteredOptions.length > 0 || filteredOptions.length <= 0 && noResultMessage ? jsx(ComboboxPopover, {
|
|
450
451
|
ref: popoverRefCallback,
|
|
451
452
|
"aria-labelledby": comboboxId,
|
|
452
|
-
className: styles.popover,
|
|
453
|
+
className: clsx(styles.popover, popoverClassName),
|
|
453
454
|
"data-modern": enableModernizedComponents ? 'true' : 'false',
|
|
454
455
|
fitViewport: true,
|
|
455
456
|
gutter: 8,
|
|
@@ -160,6 +160,10 @@ export interface ComboboxBaseProps<Multiple extends boolean, FreeInput extends b
|
|
|
160
160
|
* Extend the styles applied to the component.
|
|
161
161
|
*/
|
|
162
162
|
className?: string;
|
|
163
|
+
/**
|
|
164
|
+
* Extend the styles applied to the popover component.
|
|
165
|
+
*/
|
|
166
|
+
popoverClassName?: string;
|
|
163
167
|
/**
|
|
164
168
|
* When `true`, label text is hidden.
|
|
165
169
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.110.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"publishConfig": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@ariakit/react": "0.4.15",
|
|
49
49
|
"@ariakit/react-core": "0.4.15",
|
|
50
|
-
"@box/blueprint-web-assets": "^4.89.
|
|
50
|
+
"@box/blueprint-web-assets": "^4.89.5",
|
|
51
51
|
"@internationalized/date": "^3.7.0",
|
|
52
52
|
"@radix-ui/react-accordion": "1.1.2",
|
|
53
53
|
"@radix-ui/react-checkbox": "1.0.4",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"type-fest": "^3.2.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@box/storybook-utils": "^0.14.
|
|
80
|
+
"@box/storybook-utils": "^0.14.39",
|
|
81
81
|
"@types/react": "^18.0.0",
|
|
82
82
|
"@types/react-dom": "^18.0.0",
|
|
83
83
|
"react": "^18.3.0",
|