@box/blueprint-web 10.3.0 → 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.
@@ -1,2 +1,3 @@
1
+ export * from './chips-group';
1
2
  export * from './combobox';
2
3
  export * from './types';
@@ -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';
@@ -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;
@@ -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';
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@box/blueprint-web",
3
- "version": "10.3.0",
3
+ "version": "10.3.1",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "publishConfig": {