@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.
@@ -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", "columns", "autoFlow", "justifyItems", "alignItems", "justifyContent", "alignContent", "placeItems", "placeContent"];
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 place-items: ", ";\n place-content: ", ";\n"])), function (p) {
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.placeItems;
38
+ return getResponsiveDimension('width', p.width);
39
39
  }, function (p) {
40
- return p.placeContent;
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
- placeItems = _ref.placeItems,
55
- placeContent = _ref.placeContent,
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
- placeItems: placeItems,
67
- placeContent: placeContent
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
- justifyItems: types.gridItemsAlignments,
75
- alignItems: types.gridItemsAlignments,
76
- justifyContent: types.gridContentPositions,
77
- alignContent: types.gridContentPositions,
78
- placeItems: types.gridItemsAlignments,
79
- placeContent: types.gridContentPositions
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(['column', 'row']),
20
- gridItemsAlignments: PropTypes.oneOf(['start', 'end', 'center', 'stretch']),
21
- gridContentPositions: PropTypes.oneOf(['start', 'end', 'center', 'stretch', 'space-around', 'space-between', 'space-evenly']),
22
+ autoFlow: PropTypes.oneOf(autoFlows),
23
+ gridItemsAlignment: PropTypes.oneOf(gridItemsAlignments),
24
+ gridContentPosition: PropTypes.oneOf(gridContentPositions),
22
25
  icon: PropTypes.node
23
26
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flodesk/grain",
3
- "version": "2.21.0",
3
+ "version": "2.22.0",
4
4
  "description": "Flodesk design system",
5
5
  "module": "es/index.js",
6
6
  "author": "Flodesk",