@s-ui/react-layout-grid
Advanced tools
Comparing version 1.3.0 to 1.4.0
import { jsx as _jsx } from "react/jsx-runtime"; | ||
import PropTypes from 'prop-types'; | ||
import cx from 'classnames'; | ||
@@ -3,0 +4,0 @@ import { BASE_CLASS, CELL_NUMBERS } from '../settings'; |
import { jsx as _jsx } from "react/jsx-runtime"; | ||
import PropTypes from 'prop-types'; | ||
import LayoutGridItem from './gridItem'; | ||
@@ -9,4 +10,6 @@ import cx from 'classnames'; | ||
children = _ref.children, | ||
justifyContent = _ref.justifyContent; | ||
var classNames = cx("" + BASE_CLASS, alignItems && BASE_CLASS + "--ai-" + alignItems, justifyContent && BASE_CLASS + "--jc-" + justifyContent); | ||
justifyContent = _ref.justifyContent, | ||
_ref$isGapless = _ref.isGapless, | ||
isGapless = _ref$isGapless === void 0 ? false : _ref$isGapless; | ||
var classNames = cx("" + BASE_CLASS, alignItems && BASE_CLASS + "--ai-" + alignItems, justifyContent && BASE_CLASS + "--jc-" + justifyContent, isGapless && "is-gapless"); | ||
return /*#__PURE__*/_jsx("div", { | ||
@@ -13,0 +16,0 @@ className: classNames, |
{ | ||
"name": "@s-ui/react-layout-grid", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
9381
61