@box/blueprint-web 7.17.0 → 7.18.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.
@@ -23,7 +23,9 @@ export interface WithColor {
23
23
  export type AvatarProps = React.ComponentPropsWithRef<'img'> & {
24
24
  /** Whether to display the anonymous user image */
25
25
  anonymous?: boolean;
26
- /** The badge */
26
+ /** The badge element. This prop will be removed in a future major release. Please use IconBadge or StatusBadge components instead.
27
+ * @deprecated
28
+ */
27
29
  children?: ReactElement;
28
30
  /** The size of the avatar */
29
31
  size?: AvatarSize;
@@ -59,7 +59,9 @@ export * from './toolbar';
59
59
  export * from './tooltip';
60
60
  export * from './trigger-button';
61
61
  export * from './util-components/focus-trap';
62
+ export * from './util-components/interactive-icon';
62
63
  export * from './util-components/scrollable-container/scrollable-container';
64
+ export * from './util-components/text-with-info-badge';
63
65
  export * from './utils/keyboardUtils';
64
66
  export * from './utils/useBreakpoint';
65
67
  export * from './visually-hidden';
package/lib-esm/index.js CHANGED
@@ -74,7 +74,9 @@ export { Toolbar } from './toolbar/index.js';
74
74
  export { Tooltip, TooltipProvider } from './tooltip/tooltip.js';
75
75
  export { TriggerButton } from './trigger-button/trigger-button.js';
76
76
  export { FocusTrap } from './util-components/focus-trap/focus-trap.js';
77
+ export { InteractiveIcon } from './util-components/interactive-icon/interactive-icon.js';
77
78
  export { ScrollContext, ScrollableContainer, useScroll, useScrollContext } from './util-components/scrollable-container/scrollable-container.js';
79
+ export { TextWithInfoBadge } from './util-components/text-with-info-badge/text-with-info-badge.js';
78
80
  export { isCtrlKeyPressed, isDeleteKeyPressed, keys } from './utils/keyboardUtils.js';
79
81
  export { Breakpoint, useBreakpoint } from './utils/useBreakpoint.js';
80
82
  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": "7.17.0",
3
+ "version": "7.18.1",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "publishConfig": {
@@ -66,7 +66,7 @@
66
66
  "react-stately": "^3.31.1",
67
67
  "tsx": "^4.16.5"
68
68
  },
69
- "gitHead": "dbca77b6b184684e64849c34133816dfaacf6956",
69
+ "gitHead": "5f880429ebc9ac8898b367150801cebd542afaff",
70
70
  "module": "lib-esm/index.js",
71
71
  "main": "lib-esm/index.js",
72
72
  "exports": {