@box/blueprint-web 16.7.1 → 16.8.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/dist/lib-esm/actionable-inline-notice/actionable-inline-notice.js +3 -1
- package/dist/lib-esm/actionable-inline-notice/types.d.ts +2 -2
- package/dist/lib-esm/card-tooltip/card-tooltip.module.js +1 -1
- package/dist/lib-esm/guided-tooltip/guided-tooltip.figma.d.ts +1 -0
- package/dist/lib-esm/index.css +272 -259
- package/dist/lib-esm/primitives/context-menu/context-menu.module.js +1 -1
- package/dist/lib-esm/primitives/dropdown-menu/dropdown-menu.module.js +1 -1
- package/dist/lib-esm/tooltip/tooltip.module.js +1 -1
- package/package.json +3 -3
|
@@ -10,9 +10,11 @@ const ActionableInlineNotice = /*#__PURE__*/forwardRef(function ActionableInline
|
|
|
10
10
|
icon,
|
|
11
11
|
iconAriaLabel,
|
|
12
12
|
text,
|
|
13
|
-
title
|
|
13
|
+
title,
|
|
14
|
+
...rest
|
|
14
15
|
} = props;
|
|
15
16
|
return jsxs(BaseInlineNotice, {
|
|
17
|
+
...rest,
|
|
16
18
|
ref: forwardedRef,
|
|
17
19
|
backgroundColor: backgroundColor,
|
|
18
20
|
enableContainerQueryLayout: enableContainerQueryLayout,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { type FunctionComponent, type PropsWithChildren, type ReactElement, type SVGProps } from 'react';
|
|
1
|
+
import { type FunctionComponent, type HTMLAttributes, type PropsWithChildren, type ReactElement, type SVGProps } from 'react';
|
|
2
2
|
import { type RequireAllOrNone } from 'type-fest';
|
|
3
3
|
import { type BaseInlineNoticeProps, type ButtonProps } from '../primitives/base-inline-notice';
|
|
4
|
-
export type ActionableInlineNoticeProps = {
|
|
4
|
+
export type ActionableInlineNoticeProps = Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'title'> & {
|
|
5
5
|
/** Governs background color for inline notice
|
|
6
6
|
* @default backgroundBlue
|
|
7
7
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|