@flodesk/grain 2.22.1 → 3.0.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.
@@ -16,16 +16,16 @@ 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, getResponsiveDimension, getResponsiveSpace } from '../utilities';
19
+ import { getResponsiveDimension, getResponsiveGridColumns, 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 ", ";\n ", ";\n"])), function (p) {
23
+ var Wrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: grid;\n ", ";\n ", ";\n ", ";\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);
27
27
  }, function (p) {
28
- return getGridColumns(p.columns);
28
+ return getResponsiveGridColumns(p.columns);
29
29
  }, function (p) {
30
30
  return p.justifyItems;
31
31
  }, function (p) {
package/es/types.js CHANGED
@@ -18,7 +18,7 @@ export var types = {
18
18
  textAlign: PropTypes.oneOf(['left', 'center', 'right']),
19
19
  overflow: PropTypes.oneOf(['visible', 'hidden', 'scroll', 'auto']),
20
20
  fieldSize: PropTypes.oneOf(['s', 'm']),
21
- columns: PropTypes.oneOfType([PropTypes.array, PropTypes.string]),
21
+ columns: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
22
22
  autoFlow: PropTypes.oneOf(autoFlows),
23
23
  gridItemsAlignment: PropTypes.oneOf(gridItemsAlignments),
24
24
  gridContentPosition: PropTypes.oneOf(gridContentPositions),
@@ -1,5 +1,6 @@
1
1
  export { getDimension } from './responsive';
2
2
  export { getResponsiveDimension } from './responsive';
3
+ export { getResponsiveGridColumns } from './responsive';
3
4
  export { getColor } from './styles';
4
5
  export { getShadow } from './styles';
5
6
  export { getTextSize } from './responsive';
@@ -9,7 +10,6 @@ export { getRadius } from './styles';
9
10
  export { getTransition } from './styles';
10
11
  export { getResponsiveSpace } from './responsive';
11
12
  export { getIconSize } from './styles';
12
- export { getGridColumns } from './styles';
13
13
  export { getBorder } from './styles';
14
14
  export { isBrowser } from './helpers';
15
15
  export { getCssVarCore } from './helpers';
@@ -104,4 +104,24 @@ export var getResponsiveTextSize = function getResponsiveTextSize(size) {
104
104
  }
105
105
 
106
106
  return "".concat(property, ": ").concat(getTextSize(size));
107
+ };
108
+ export var mapColumnsToMedia = function mapColumnsToMedia(property, obj) {
109
+ var declarations = Object.entries(obj).map(function (_ref3) {
110
+ var _ref4 = _slicedToArray(_ref3, 2),
111
+ breakpoint = _ref4[0],
112
+ value = _ref4[1];
113
+
114
+ return getMediaCss(breakpoint, property, value);
115
+ });
116
+ return declarations.join('');
117
+ };
118
+ export var getResponsiveGridColumns = function getResponsiveGridColumns(columns) {
119
+ if (!columns) return;
120
+ var property = 'grid-template-columns';
121
+
122
+ if (isObject(columns)) {
123
+ return mapColumnsToMedia(property, columns);
124
+ }
125
+
126
+ return "".concat(property, ": ").concat(columns);
107
127
  };
@@ -1,5 +1,5 @@
1
- import "core-js/modules/es.array.map.js";
2
1
  import "core-js/modules/es.array.concat.js";
2
+ import "core-js/modules/es.array.map.js";
3
3
  import "core-js/modules/es.object.define-property.js";
4
4
  import "core-js/modules/es.object.keys.js";
5
5
  import "core-js/modules/es.symbol.js";
@@ -62,17 +62,6 @@ export var getIconSize = function getIconSize(size) {
62
62
 
63
63
  return getDimension(size);
64
64
  };
65
- export var getGridColumns = function getGridColumns(columns) {
66
- if (columns) {
67
- if (isArray(columns)) {
68
- return columns.map(function (column) {
69
- return getDimension(column);
70
- }).join(' ');
71
- }
72
-
73
- if (isString(columns)) return columns;
74
- }
75
- };
76
65
  export var getBorder = function getBorder(borderSide, borderWidth, borderColor) {
77
66
  var borderSides = {
78
67
  all: ["top", "right", "bottom", "left"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flodesk/grain",
3
- "version": "2.22.1",
3
+ "version": "3.0.0",
4
4
  "description": "Flodesk design system",
5
5
  "module": "es/index.js",
6
6
  "author": "Flodesk",