@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.
34 lines (33 loc) • 999 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ToastRootCssVars = void 0;
let ToastRootCssVars = exports.ToastRootCssVars = /*#__PURE__*/function (ToastRootCssVars) {
/**
* Indicates the index of the toast in the list.
* @type {number}
*/
ToastRootCssVars["index"] = "--toast-index";
/**
* Indicates the vertical pixels offset of the toast in the list when expanded.
* @type {number}
*/
ToastRootCssVars["offsetY"] = "--toast-offset-y";
/**
* Indicates the measured natural height of the toast in pixels.
* @type {number}
*/
ToastRootCssVars["height"] = "--toast-height";
/**
* Indicates the horizontal swipe movement of the toast.
* @type {number}
*/
ToastRootCssVars["swipeMovementX"] = "--toast-swipe-movement-x";
/**
* Indicates the vertical swipe movement of the toast.
* @type {number}
*/
ToastRootCssVars["swipeMovementY"] = "--toast-swipe-movement-y";
return ToastRootCssVars;
}({});