wix-style-react
Version:
33 lines (32 loc) • 904 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TYPE_POSITIONS_MAP = exports.dataHooks = exports.ACTION_BUTTON_TYPES = exports.THEMES = void 0;
var THEMES = {
standard: 'standard',
error: 'error',
success: 'success',
warning: 'warning',
premium: 'premium'
};
exports.THEMES = THEMES;
var ACTION_BUTTON_TYPES = {
textLink: 'textLink',
button: 'button'
};
exports.ACTION_BUTTON_TYPES = ACTION_BUTTON_TYPES;
var prefix = 'notification';
var dataHooks = {
notificationContent: "".concat(prefix, "-content"),
notificationCloseButton: "".concat(prefix, "-close-button"),
notificationLabel: "".concat(prefix, "-label"),
notificationCtaButton: "".concat(prefix, "-cta-button")
};
exports.dataHooks = dataHooks;
var TYPE_POSITIONS_MAP = {
relative: 'global',
absolute: 'local',
fixed: 'sticky'
};
exports.TYPE_POSITIONS_MAP = TYPE_POSITIONS_MAP;