@devvie/bottom-sheet
Version:
The 😎smart , 📦tiny , and 🎗flexible bottom sheet your app craves 🚀
31 lines (30 loc) • 881 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CUSTOM_BACKDROP_POSITIONS = exports.ANIMATIONS = void 0;
/**
* Supported animation types
*/
let ANIMATIONS = exports.ANIMATIONS = /*#__PURE__*/function (ANIMATIONS) {
ANIMATIONS["SLIDE"] = "slide";
ANIMATIONS["SPRING"] = "spring";
ANIMATIONS["FADE"] = "fade";
return ANIMATIONS;
}({});
/**
* Alias for `ANIMATIONS` to allow literal animation type string as prop
* @alias ANIMATIONS
*/
/**
* Supported custom backdrop component position
*/
let CUSTOM_BACKDROP_POSITIONS = exports.CUSTOM_BACKDROP_POSITIONS = /*#__PURE__*/function (CUSTOM_BACKDROP_POSITIONS) {
CUSTOM_BACKDROP_POSITIONS["TOP"] = "top";
CUSTOM_BACKDROP_POSITIONS["BEHIND"] = "behind";
return CUSTOM_BACKDROP_POSITIONS;
}({});
/**
* Bottom sheet's ref instance methods
*/
//# sourceMappingURL=types.d.js.map