@flodesk/grain 2.20.4 → 2.22.1

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,12 +1,15 @@
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]),
7
10
  dimension: PropTypes.oneOfType([PropTypes.number, PropTypes.string, PropTypes.object]),
8
11
  side: PropTypes.oneOf(['all', 'left', 'right', 'top', 'bottom', 'x', 'y']),
9
- radius: PropTypes.oneOfType([PropTypes.oneOf(Object.keys(vars.radii)), PropTypes.string]),
12
+ radius: PropTypes.oneOfType([PropTypes.oneOf(Object.keys(vars.radii)), PropTypes.string, PropTypes.number]),
10
13
  shadow: PropTypes.oneOfType([PropTypes.oneOf(Object.keys(vars.shadows)), PropTypes.string]),
11
14
  position: PropTypes.oneOf(['static', 'relative', 'fixed', 'absolute', 'sticky']),
12
15
  textSize: PropTypes.oneOfType([PropTypes.oneOf(Object.keys(vars.texts)), 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
  };
@@ -26,31 +26,31 @@ import "core-js/modules/es.array.from.js";
26
26
  import "core-js/modules/es.regexp.exec.js";
27
27
  import { getCssVar, isNumber, isString, u, isObject } from '.';
28
28
  import { vars, varInfo } from '../variables';
29
- export var getMediaCss = function getMediaCss(breakpoint, property, value) {
29
+ export var getMediaCss = function getMediaCss(mediaQuery, property, value) {
30
30
  var getValue = function getValue(val) {
31
31
  if (val === 0) return val;
32
32
  if (isNumber(val)) return u(val);
33
33
  if (isString(val)) return val;
34
34
  };
35
35
 
36
- if (breakpoint === 'default') {
36
+ if (mediaQuery === 'default') {
37
37
  return "".concat(property, ": ").concat(getValue(value), ";");
38
38
  }
39
39
 
40
- return "\n @media ".concat(breakpoint, " {\n ").concat(property, ": ").concat(getValue(value), ";\n }\n ");
40
+ return "\n ".concat(mediaQuery, " {\n ").concat(property, ": ").concat(getValue(value), ";\n }\n ");
41
41
  };
42
42
  export var mapObjToMedia = function mapObjToMedia(property, obj, type) {
43
43
  var varPrefix = varInfo[type].prefix;
44
44
  var declarations = Object.entries(obj).map(function (_ref) {
45
45
  var _ref2 = _slicedToArray(_ref, 2),
46
- breakpoint = _ref2[0],
46
+ mediaQuery = _ref2[0],
47
47
  value = _ref2[1];
48
48
 
49
49
  if (value in vars[type]) {
50
- return getMediaCss(breakpoint, property, getCssVar(varPrefix, value));
50
+ return getMediaCss(mediaQuery, property, getCssVar(varPrefix, value));
51
51
  }
52
52
 
53
- return getMediaCss(breakpoint, property, value);
53
+ return getMediaCss(mediaQuery, property, value);
54
54
  }); // reverse array to make sure max-widths correctly override
55
55
 
56
56
  declarations.reverse().join('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flodesk/grain",
3
- "version": "2.20.4",
3
+ "version": "2.22.1",
4
4
  "description": "Flodesk design system",
5
5
  "module": "es/index.js",
6
6
  "author": "Flodesk",