@box/blueprint-web 10.2.1 → 10.3.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/README.md +1 -1
- package/dist/README.md +1 -1
- package/dist/lib-esm/combobox/index.d.ts +1 -0
- package/dist/lib-esm/combobox-group/combobox-group-combobox.js +2 -0
- package/dist/lib-esm/index.css +11 -11
- package/dist/lib-esm/index.d.ts +1 -0
- package/dist/lib-esm/index.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -186,4 +186,4 @@ This repo is owned and maintained by the Design System Team, you can reach out t
|
|
|
186
186
|
|
|
187
187
|
## Testing
|
|
188
188
|
|
|
189
|
-
See more in [Testing docs](./docs/contribution/03-component-contribution/05-testing.
|
|
189
|
+
See more in [Testing docs](./docs/contribution/03-component-contribution/05-testing.mdx).
|
package/dist/README.md
CHANGED
|
@@ -186,4 +186,4 @@ This repo is owned and maintained by the Design System Team, you can reach out t
|
|
|
186
186
|
|
|
187
187
|
## Testing
|
|
188
188
|
|
|
189
|
-
See more in [Testing docs](./docs/contribution/03-component-contribution/05-testing.
|
|
189
|
+
See more in [Testing docs](./docs/contribution/03-component-contribution/05-testing.mdx).
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import clsx from 'clsx';
|
|
3
3
|
import { forwardRef, useCallback, useEffect } from 'react';
|
|
4
|
+
import '@radix-ui/react-tooltip';
|
|
5
|
+
import 'tabbable';
|
|
4
6
|
import { Combobox } from '../combobox/combobox.js';
|
|
5
7
|
import { useComboboxGroupContext } from './combobox-group-context.js';
|
|
6
8
|
import styles from './combobox-group.module.js';
|
package/dist/lib-esm/index.css
CHANGED
|
@@ -1425,6 +1425,17 @@
|
|
|
1425
1425
|
height:0;
|
|
1426
1426
|
}
|
|
1427
1427
|
}
|
|
1428
|
+
.bp_chips_group_module_chipsGroup--61ede{
|
|
1429
|
+
display:flex;
|
|
1430
|
+
flex-wrap:wrap;
|
|
1431
|
+
gap:var(--space-2);
|
|
1432
|
+
margin:calc(var(--border-3)*-1);
|
|
1433
|
+
max-width:100%;
|
|
1434
|
+
padding:var(--border-3);
|
|
1435
|
+
}
|
|
1436
|
+
.bp_chips_group_module_chipsGroup--61ede > [role=row]{
|
|
1437
|
+
max-width:100%;
|
|
1438
|
+
}
|
|
1428
1439
|
.bp_input_chip_module_container--482bc{
|
|
1429
1440
|
align-items:center;
|
|
1430
1441
|
background-color:var(--surface-inputchip-surface);
|
|
@@ -1620,17 +1631,6 @@
|
|
|
1620
1631
|
.bp_text_area_module_textAreaContainer--71ba4 .bp_text_area_module_inlineError--71ba4{
|
|
1621
1632
|
margin-block-start:var(--space-2);
|
|
1622
1633
|
}
|
|
1623
|
-
.bp_chips_group_module_chipsGroup--61ede{
|
|
1624
|
-
display:flex;
|
|
1625
|
-
flex-wrap:wrap;
|
|
1626
|
-
gap:var(--space-2);
|
|
1627
|
-
margin:calc(var(--border-3)*-1);
|
|
1628
|
-
max-width:100%;
|
|
1629
|
-
padding:var(--border-3);
|
|
1630
|
-
}
|
|
1631
|
-
.bp_chips_group_module_chipsGroup--61ede > [role=row]{
|
|
1632
|
-
max-width:100%;
|
|
1633
|
-
}
|
|
1634
1634
|
|
|
1635
1635
|
.bp_combobox_module_container--076fd{
|
|
1636
1636
|
display:flex;
|
package/dist/lib-esm/index.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export * from './utils/isProduction';
|
|
|
77
77
|
export * from './utils/keyboardUtils';
|
|
78
78
|
export * from './utils/useBreakpoint';
|
|
79
79
|
export * from './utils/useControllableState';
|
|
80
|
+
export * from './utils/useForkRef';
|
|
80
81
|
export * from './utils/useFullTextTooltip';
|
|
81
82
|
export * from './utils/useUniqueId';
|
|
82
83
|
export * from './visually-hidden';
|
package/dist/lib-esm/index.js
CHANGED
|
@@ -13,6 +13,7 @@ export { CardTooltip } from './card-tooltip/card-tooltip.js';
|
|
|
13
13
|
export { CardTooltipV2 } from './card-tooltip-v2/card-tooltip-v2.js';
|
|
14
14
|
export { Checkbox } from './checkbox/index.js';
|
|
15
15
|
export { CollapsibleSection } from './collapsible/collapsible-section.js';
|
|
16
|
+
export { ChipsGroup } from './combobox/chips-group.js';
|
|
16
17
|
export { Combobox, Root } from './combobox/combobox.js';
|
|
17
18
|
export { ComboboxGroup } from './combobox-group/combobox-group.js';
|
|
18
19
|
export { ContentCard } from './content-card/content-card.js';
|
|
@@ -93,6 +94,7 @@ export { isProduction } from './utils/isProduction.js';
|
|
|
93
94
|
export { isCtrlKeyPressed, isDeleteKeyPressed, keys } from './utils/keyboardUtils.js';
|
|
94
95
|
export { Breakpoint, useBreakpoint } from './utils/useBreakpoint.js';
|
|
95
96
|
export { useControllableState } from './utils/useControllableState.js';
|
|
97
|
+
export { useForkRef } from './utils/useForkRef.js';
|
|
96
98
|
export { useFullTextTooltip } from './utils/useFullTextTooltip.js';
|
|
97
99
|
export { getUniqueId, useUniqueId } from './utils/useUniqueId.js';
|
|
98
100
|
export { VisuallyHidden } from './visually-hidden/visually-hidden.js';
|