@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.
13 lines • 440 B
JavaScript
export let ToastContentDataAttributes = /*#__PURE__*/function (ToastContentDataAttributes) {
/**
* Present when the toast viewport is expanded.
* @type {boolean}
*/
ToastContentDataAttributes["expanded"] = "data-expanded";
/**
* Present when the toast is behind the frontmost toast in the stack.
* @type {boolean}
*/
ToastContentDataAttributes["behind"] = "data-behind";
return ToastContentDataAttributes;
}({});