@flodesk/grain 2.21.0 → 2.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/arrange.js +20 -20
- package/es/types.js +6 -3
- package/package.json +1 -1
package/es/components/arrange.js
CHANGED
|
@@ -4,7 +4,7 @@ import "core-js/modules/es.object.define-properties.js";
|
|
|
4
4
|
import "core-js/modules/es.object.keys.js";
|
|
5
5
|
import "core-js/modules/es.array.index-of.js";
|
|
6
6
|
import "core-js/modules/es.symbol.js";
|
|
7
|
-
var _excluded = ["children", "gap", "
|
|
7
|
+
var _excluded = ["children", "gap", "alignItems", "justifyItems", "justifyContent", "alignContent", "columns", "autoFlow", "width", "height"];
|
|
8
8
|
|
|
9
9
|
var _templateObject;
|
|
10
10
|
|
|
@@ -16,11 +16,11 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
16
16
|
|
|
17
17
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
18
18
|
|
|
19
|
-
import { getGridColumns, getResponsiveSpace } from '../utilities';
|
|
19
|
+
import { getGridColumns, getResponsiveDimension, getResponsiveSpace } from '../utilities';
|
|
20
20
|
import React from 'react';
|
|
21
21
|
import styled from '@emotion/styled';
|
|
22
22
|
import { types } from '../types';
|
|
23
|
-
var Wrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: grid;\n ", ";\n ", ";\n grid-template-columns: ", ";\n justify-items: ", ";\n align-items: ", ";\n justify-content: ", ";\n align-content: ", ";\n
|
|
23
|
+
var Wrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: grid;\n ", ";\n ", ";\n grid-template-columns: ", ";\n justify-items: ", ";\n align-items: ", ";\n justify-content: ", ";\n align-content: ", ";\n ", ";\n ", ";\n"])), function (p) {
|
|
24
24
|
return !p.columns && "grid-auto-flow: ".concat(p.autoFlow);
|
|
25
25
|
}, function (p) {
|
|
26
26
|
return getResponsiveSpace('gap', p.gap);
|
|
@@ -35,46 +35,46 @@ var Wrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLi
|
|
|
35
35
|
}, function (p) {
|
|
36
36
|
return p.alignContent;
|
|
37
37
|
}, function (p) {
|
|
38
|
-
return p.
|
|
38
|
+
return getResponsiveDimension('width', p.width);
|
|
39
39
|
}, function (p) {
|
|
40
|
-
return p.
|
|
40
|
+
return getResponsiveDimension('height', p.height);
|
|
41
41
|
});
|
|
42
42
|
export var Arrange = function Arrange(_ref) {
|
|
43
43
|
var children = _ref.children,
|
|
44
44
|
gap = _ref.gap,
|
|
45
|
-
columns = _ref.columns,
|
|
46
|
-
_ref$autoFlow = _ref.autoFlow,
|
|
47
|
-
autoFlow = _ref$autoFlow === void 0 ? 'column' : _ref$autoFlow,
|
|
48
|
-
justifyItems = _ref.justifyItems,
|
|
49
45
|
_ref$alignItems = _ref.alignItems,
|
|
50
46
|
alignItems = _ref$alignItems === void 0 ? 'center' : _ref$alignItems,
|
|
47
|
+
justifyItems = _ref.justifyItems,
|
|
51
48
|
_ref$justifyContent = _ref.justifyContent,
|
|
52
49
|
justifyContent = _ref$justifyContent === void 0 ? 'start' : _ref$justifyContent,
|
|
53
50
|
alignContent = _ref.alignContent,
|
|
54
|
-
|
|
55
|
-
|
|
51
|
+
columns = _ref.columns,
|
|
52
|
+
_ref$autoFlow = _ref.autoFlow,
|
|
53
|
+
autoFlow = _ref$autoFlow === void 0 ? 'column' : _ref$autoFlow,
|
|
54
|
+
width = _ref.width,
|
|
55
|
+
height = _ref.height,
|
|
56
56
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
57
57
|
|
|
58
58
|
return /*#__PURE__*/React.createElement(Wrapper, Object.assign({
|
|
59
59
|
gap: gap,
|
|
60
60
|
columns: columns,
|
|
61
61
|
autoFlow: autoFlow,
|
|
62
|
-
justifyItems: justifyItems,
|
|
63
62
|
alignItems: alignItems,
|
|
63
|
+
justifyItems: justifyItems,
|
|
64
64
|
justifyContent: justifyContent,
|
|
65
65
|
alignContent: alignContent,
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
width: width,
|
|
67
|
+
height: height
|
|
68
68
|
}, props), children);
|
|
69
69
|
};
|
|
70
70
|
Arrange.propTypes = {
|
|
71
71
|
gap: types.space,
|
|
72
72
|
columns: types.columns,
|
|
73
73
|
autoFlow: types.autoFlow,
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
justifyContent: types.
|
|
77
|
-
alignContent: types.
|
|
78
|
-
|
|
79
|
-
|
|
74
|
+
alignItems: types.gridItemsAlignment,
|
|
75
|
+
justifyItems: types.gridItemsAlignment,
|
|
76
|
+
justifyContent: types.gridContentPosition,
|
|
77
|
+
alignContent: types.gridContentPosition,
|
|
78
|
+
width: types.dimension,
|
|
79
|
+
height: types.dimension
|
|
80
80
|
};
|
package/es/types.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import "core-js/modules/es.object.keys.js";
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { vars } from './variables';
|
|
4
|
+
export var gridContentPositions = ['start', 'end', 'center', 'stretch', 'space-around', 'space-between', 'space-evenly'];
|
|
5
|
+
export var gridItemsAlignments = ['start', 'end', 'center', 'stretch'];
|
|
6
|
+
export var autoFlows = ['column', 'row'];
|
|
4
7
|
export var types = {
|
|
5
8
|
color: PropTypes.oneOfType([PropTypes.oneOf(Object.keys(vars.colors)), PropTypes.string]),
|
|
6
9
|
space: PropTypes.oneOfType([PropTypes.oneOf(Object.keys(vars.spaces)), PropTypes.number, PropTypes.string, PropTypes.object]),
|
|
@@ -16,8 +19,8 @@ export var types = {
|
|
|
16
19
|
overflow: PropTypes.oneOf(['visible', 'hidden', 'scroll', 'auto']),
|
|
17
20
|
fieldSize: PropTypes.oneOf(['s', 'm']),
|
|
18
21
|
columns: PropTypes.oneOfType([PropTypes.array, PropTypes.string]),
|
|
19
|
-
autoFlow: PropTypes.oneOf(
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
autoFlow: PropTypes.oneOf(autoFlows),
|
|
23
|
+
gridItemsAlignment: PropTypes.oneOf(gridItemsAlignments),
|
|
24
|
+
gridContentPosition: PropTypes.oneOf(gridContentPositions),
|
|
22
25
|
icon: PropTypes.node
|
|
23
26
|
};
|