diff --git a/docs/reference/generated/menu-popup.json b/docs/reference/generated/menu-popup.json index 0ce836710c..589987eac0 100644 --- a/docs/reference/generated/menu-popup.json +++ b/docs/reference/generated/menu-popup.json @@ -19,7 +19,7 @@ "description": "Present when the menu is closed." }, "data-instant": { - "description": "Indicates the instant type of the menu popup.", + "description": "Present if animations should be instant.", "type": "'click' | 'dismiss'" }, "data-side": { diff --git a/docs/reference/generated/popover-popup.json b/docs/reference/generated/popover-popup.json index 150af7f8ef..ae2fce2413 100644 --- a/docs/reference/generated/popover-popup.json +++ b/docs/reference/generated/popover-popup.json @@ -27,7 +27,7 @@ "description": "Present when the popup is closed." }, "data-instant": { - "description": "Indicates the instant type of the popover popup.", + "description": "Present if animations should be instant.", "type": "'click' | 'dismiss'" }, "data-side": { diff --git a/docs/reference/generated/tooltip-popup.json b/docs/reference/generated/tooltip-popup.json index 56325e4847..c8188486a8 100644 --- a/docs/reference/generated/tooltip-popup.json +++ b/docs/reference/generated/tooltip-popup.json @@ -19,7 +19,7 @@ "description": "Present when the tooltip is closed." }, "data-instant": { - "description": "Indicates the instant type of the tooltip popup.", + "description": "Present if animations should be instant.", "type": "'delay' | 'dismiss' | 'focus'" }, "data-side": { diff --git a/packages/react/src/menu/popup/MenuPopupDataAttributes.ts b/packages/react/src/menu/popup/MenuPopupDataAttributes.ts index 9d7734b13a..d3ff83aa90 100644 --- a/packages/react/src/menu/popup/MenuPopupDataAttributes.ts +++ b/packages/react/src/menu/popup/MenuPopupDataAttributes.ts @@ -21,7 +21,7 @@ export enum MenuPopupDataAttributes { */ side = 'data-side', /** - * Indicates the instant type of the menu popup. + * Present if animations should be instant. * @type {'click' | 'dismiss'} */ instant = 'data-instant', diff --git a/packages/react/src/popover/popup/PopoverPopupDataAttributes.ts b/packages/react/src/popover/popup/PopoverPopupDataAttributes.ts index e705ace7c9..24ff5fd557 100644 --- a/packages/react/src/popover/popup/PopoverPopupDataAttributes.ts +++ b/packages/react/src/popover/popup/PopoverPopupDataAttributes.ts @@ -21,7 +21,7 @@ export enum PopoverPopupDataAttributes { */ side = 'data-side', /** - * Indicates the instant type of the popover popup. + * Present if animations should be instant. * @type {'click' | 'dismiss'} */ instant = 'data-instant', diff --git a/packages/react/src/tooltip/popup/TooltipPopupDataAttributes.ts b/packages/react/src/tooltip/popup/TooltipPopupDataAttributes.ts index 9bf2420a26..df425103ac 100644 --- a/packages/react/src/tooltip/popup/TooltipPopupDataAttributes.ts +++ b/packages/react/src/tooltip/popup/TooltipPopupDataAttributes.ts @@ -21,7 +21,7 @@ export enum TooltipPopupDataAttributes { */ side = 'data-side', /** - * Indicates the instant type of the tooltip popup. + * Present if animations should be instant. * @type {'delay' | 'dismiss' | 'focus'} */ instant = 'data-instant',