@symbo.ls/atoms 2.11.101 → 2.11.111

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.
Files changed (2) hide show
  1. package/Block.js +9 -3
  2. package/package.json +2 -2
package/Block.js CHANGED
@@ -132,13 +132,13 @@ export const Block = {
132
132
  },
133
133
 
134
134
  gridColumn: ({ props }) => props.gridColumn && ({ gridColumn: props.gridColumn }),
135
- gridColumnStart: ({ props }) => props.columnStart
135
+ gridColumnStart: ({ props }) => props.gridColumnStart
136
136
  ? ({
137
- gridColumnStart: props.columnStart
137
+ gridColumnStart: props.gridColumnStart
138
138
  })
139
139
  : null,
140
140
  gridRow: ({ props }) => props.gridRow && ({ gridRow: props.gridRow }),
141
- gridRowStart: ({ props }) => props.rowStart ? ({ gridRowStart: props.rowStart }) : null,
141
+ gridRowStart: ({ props }) => props.gridRowStart ? ({ gridRowStart: props.gridRowStart }) : null,
142
142
 
143
143
  size: ({ props }) => {
144
144
  if (typeof props.heightRange !== 'string') return
@@ -168,3 +168,9 @@ export const List = {
168
168
  childExtend: { tag: 'li' }
169
169
  }
170
170
  // export const Article = { tag: 'article' }
171
+
172
+ export const Gutter = {
173
+ props: {
174
+ boxSize: 'C1',
175
+ },
176
+ }
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.11.101",
3
+ "version": "2.11.111",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "e6e99cfe2412652932a3c0eb2f580b427e6b8096",
6
+ "gitHead": "aa3de4cf73a9919ac866233c63cc5879c8e1fac8",
7
7
  "dependencies": {
8
8
  "@domql/state": "latest",
9
9
  "@domql/utils": "latest",