tdesign-vue-next
Version:
TDesign Component for vue-next
102 lines (98 loc) • 4.81 kB
JavaScript
/**
* tdesign v1.15.2
* (c) 2025 tdesign
* @license MIT
*/
import { defineComponent, computed, createVNode, Fragment } from 'vue';
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import props from './props.js';
import { isArray, isNumber, isString } from 'lodash-es';
import { u as useChildSlots, a as useFlatChildrenSlots } from '../_chunks/dep-0f8c45fe.js';
import { u as useTNodeJSX } from '../_chunks/dep-1d44782f.js';
import { u as usePrefixClass } from '../_chunks/dep-79c44a11.js';
import '../_chunks/dep-7324137b.js';
import '../_chunks/dep-e604a5ce.js';
import '@babel/runtime/helpers/toConsumableArray';
import { g as getFlexGapPolyFill } from '../_chunks/dep-a72765fe.js';
import '@babel/runtime/helpers/typeof';
import '../_chunks/dep-6c13cc0e.js';
import '../_chunks/dep-1f7ad104.js';
import '../config-provider/hooks/useConfig.js';
import '../config-provider/utils/context.js';
import '../_chunks/dep-3b49fbbe.js';
import '../_chunks/dep-7fac49fa.js';
import 'dayjs';
import '@babel/runtime/helpers/createClass';
import '@babel/runtime/helpers/classCallCheck';
import '@babel/runtime/helpers/objectWithoutProperties';
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
var sizeMap = {
small: "8px",
medium: "16px",
large: "24px"
};
var defaultNeedPolyfill = getFlexGapPolyFill();
var _Space = defineComponent({
name: "TSpace",
props: _objectSpread(_objectSpread({}, props), {}, {
forceFlexGapPolyfill: Boolean
}),
setup: function setup(props2) {
var COMPONENT_NAME = usePrefixClass("space");
var renderTNodeJSX = useTNodeJSX();
var getChildSlots = useChildSlots();
var getFlatChildren = useFlatChildrenSlots();
var needPolyfill = computed(function () {
return props2.forceFlexGapPolyfill || defaultNeedPolyfill;
});
var renderStyle = computed(function () {
var renderGap = "";
if (isArray(props2.size)) {
renderGap = props2.size.map(function (s) {
if (isNumber(s)) return "".concat(s, "px");
if (isString(s) && ["small", "medium", "large"].includes(s)) return sizeMap[s];
return s;
}).join(" ");
} else if (isString(props2.size)) {
renderGap = ["small", "medium", "large"].includes(props2.size) ? sizeMap[props2.size] : props2.size;
} else if (isNumber(props2.size)) {
renderGap = "".concat(props2.size, "px");
}
var style = {};
if (needPolyfill.value) {
var _renderGap$split = renderGap.split(" "),
_renderGap$split2 = _slicedToArray(_renderGap$split, 2),
columnGap = _renderGap$split2[0],
rowGap = _renderGap$split2[1];
style["--td-space-column-gap"] = columnGap;
style["--td-space-row-gap"] = rowGap || columnGap;
} else {
style.gap = renderGap;
}
return style;
});
function renderChildren() {
var children = getFlatChildren(getChildSlots());
var separatorContent = renderTNodeJSX("separator");
return children.map(function (child, index) {
var showSeparator = index + 1 !== children.length && separatorContent;
return createVNode(Fragment, null, [createVNode("div", {
"class": "".concat(COMPONENT_NAME.value, "-item")
}, [child]), showSeparator && createVNode("div", {
"class": "".concat(COMPONENT_NAME.value, "-item-separator")
}, [separatorContent])]);
});
}
return function () {
var spaceClassNames = ["".concat(COMPONENT_NAME.value), _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, "".concat(COMPONENT_NAME.value, "-align-").concat(props2.align), props2.align), "".concat(COMPONENT_NAME.value, "-").concat(props2.direction), props2.direction), "".concat(COMPONENT_NAME.value, "--break-line"), props2.breakLine), "".concat(COMPONENT_NAME.value, "--polyfill"), needPolyfill.value)];
return createVNode("div", {
"class": spaceClassNames,
"style": renderStyle.value
}, [renderChildren()]);
};
}
});
export { _Space as default };
//# sourceMappingURL=space.js.map