@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
22 lines • 570 B
TypeScript
export declare enum ToastRootCssVars {
/**
* Indicates the index of the toast in the list.
* @type {number}
*/
index = "--toast-index",
/**
* Indicates the vertical pixels offset of the toast in the list when expanded.
* @type {number}
*/
offsetY = "--toast-offset-y",
/**
* Indicates the horizontal swipe movement of the toast.
* @type {number}
*/
swipeMovementX = "--toast-swipe-movement-x",
/**
* Indicates the vertical swipe movement of the toast.
* @type {number}
*/
swipeMovementY = "--toast-swipe-movement-y",
}