@box/blueprint-web 12.12.0 → 12.13.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.
@@ -73,6 +73,7 @@ export * from './trigger-button';
73
73
  export * from './util-components/focus-trap';
74
74
  export * from './util-components/interactive-icon';
75
75
  export * from './util-components/labelable';
76
+ export * from './util-components/list-checkbox';
76
77
  export * from './util-components/scrollable-container/scrollable-container';
77
78
  export * from './util-components/text-with-info-badge';
78
79
  export * from './utils/composeEventHandlers';
@@ -91,6 +91,7 @@ export { TriggerButton } from './trigger-button/trigger-button.js';
91
91
  export { FocusTrap } from './util-components/focus-trap/focus-trap.js';
92
92
  export { InteractiveIcon } from './util-components/interactive-icon/interactive-icon.js';
93
93
  export { useLabelable } from './util-components/labelable/useLabelable.js';
94
+ export { ListCheckbox } from './util-components/list-checkbox/list-checkbox.js';
94
95
  export { ScrollContext, ScrollableContainer, useScroll, useScrollContext } from './util-components/scrollable-container/scrollable-container.js';
95
96
  export { TextWithInfoBadge } from './util-components/text-with-info-badge/text-with-info-badge.js';
96
97
  export { composeEventHandlers } from './utils/composeEventHandlers.js';
@@ -1,5 +1,5 @@
1
1
  import { type CheckboxProps } from 'react-aria-components';
2
- interface ListCheckboxProps extends CheckboxProps {
2
+ export interface ListCheckboxProps extends CheckboxProps {
3
3
  className?: string;
4
4
  isDisabled?: boolean;
5
5
  }
@@ -11,4 +11,3 @@ interface ListCheckboxProps extends CheckboxProps {
11
11
  * @see https://react-spectrum.adobe.com/react-aria/Checkbox.html
12
12
  */
13
13
  export declare const ListCheckbox: import("react").ForwardRefExoticComponent<ListCheckboxProps & import("react").RefAttributes<HTMLLabelElement>>;
14
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@box/blueprint-web",
3
- "version": "12.12.0",
3
+ "version": "12.13.0",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "publishConfig": {