53 lines
2.7 KiB
JavaScript
53 lines
2.7 KiB
JavaScript
import { style } from '@primeuix/styles/speeddial';
|
|
import BaseStyle from '@primevue/core/base/style';
|
|
|
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: true, configurable: true, writable: true }) : e[r] = t, e; }
|
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
|
|
/* Direction */
|
|
var inlineStyles = {
|
|
root: function root(_ref) {
|
|
var props = _ref.props;
|
|
return {
|
|
alignItems: (props.direction === 'up' || props.direction === 'down') && 'center',
|
|
justifyContent: (props.direction === 'left' || props.direction === 'right') && 'center',
|
|
flexDirection: props.direction === 'up' ? 'column-reverse' : props.direction === 'down' ? 'column' : props.direction === 'left' ? 'row-reverse' : props.direction === 'right' ? 'row' : null
|
|
};
|
|
},
|
|
list: function list(_ref2) {
|
|
var props = _ref2.props;
|
|
return {
|
|
flexDirection: props.direction === 'up' ? 'column-reverse' : props.direction === 'down' ? 'column' : props.direction === 'left' ? 'row-reverse' : props.direction === 'right' ? 'row' : null
|
|
};
|
|
}
|
|
};
|
|
var classes = {
|
|
root: function root(_ref3) {
|
|
var instance = _ref3.instance,
|
|
props = _ref3.props;
|
|
return ["p-speeddial p-component p-speeddial-".concat(props.type), _defineProperty(_defineProperty(_defineProperty({}, "p-speeddial-direction-".concat(props.direction), props.type !== 'circle'), 'p-speeddial-open', instance.d_visible), 'p-disabled', props.disabled)];
|
|
},
|
|
pcButton: function pcButton(_ref5) {
|
|
var props = _ref5.props;
|
|
return ['p-speeddial-button', {
|
|
'p-speeddial-rotate': props.rotateAnimation && !props.hideIcon
|
|
}];
|
|
},
|
|
list: 'p-speeddial-list',
|
|
item: 'p-speeddial-item',
|
|
action: 'p-speeddial-action',
|
|
actionIcon: 'p-speeddial-action-icon',
|
|
mask: 'p-speeddial-mask p-overlay-mask'
|
|
};
|
|
var SpeedDialStyle = BaseStyle.extend({
|
|
name: 'speeddial',
|
|
style: style,
|
|
classes: classes,
|
|
inlineStyles: inlineStyles
|
|
});
|
|
|
|
export { SpeedDialStyle as default };
|
|
//# sourceMappingURL=index.mjs.map
|