@atlaskit/primitives
Version:
Primitives are token-backed low-level building blocks.
70 lines (67 loc) • 2.07 kB
JavaScript
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
/* eslint-disable @repo/internal/styles/no-exported-styles */
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { forwardRef, memo } from 'react';
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
import { jsx } from '@emotion/react';
import { xcss } from '../xcss/xcss';
import Flex from './flex';
var flexGrowMap = {
hug: xcss({
flexGrow: 0
}),
fill: xcss({
width: '100%',
flexGrow: 1
})
};
/**
* __Stack__
*
* Stack is a primitive component based on flexbox that manages the block layout of direct children.
*
* @example
* ```tsx
* <Stack>
* <Box padding="space.100" backgroundColor="neutral"></Box>
* <Box padding="space.100" backgroundColor="neutral"></Box>
* </Stack>
* ```
*
*/
var Stack = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function (_ref, ref) {
var as = _ref.as,
alignItems = _ref.alignInline,
_ref$alignBlock = _ref.alignBlock,
alignBlock = _ref$alignBlock === void 0 ? 'stretch' : _ref$alignBlock,
spread = _ref.spread,
grow = _ref.grow,
space = _ref.space,
children = _ref.children,
testId = _ref.testId,
xcss = _ref.xcss,
role = _ref.role;
var justifyContent = spread || alignBlock;
// We're type coercing this as Compiled styles in an array isn't supported by the types
// But the runtime accepts it none-the-wiser. We can remove this entire block and replace
// it with cx(defaultStyles, focusRingStyles, xcssStyles) when we've moved away from Emotion.
var styles = grow ? [flexGrowMap[grow]].concat(_toConsumableArray(Array.isArray(xcss) ? xcss : [xcss])) : xcss;
return jsx(Flex, {
as: as,
role: role,
gap: space,
direction: "column",
alignItems: alignItems,
justifyContent: justifyContent
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
,
xcss: styles,
testId: testId,
ref: ref
}, children);
}));
Stack.displayName = 'Stack';
export default Stack;