@symbo.ls/atoms 2.34.27 → 2.34.29
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/Box.js +44 -0
- package/package.json +6 -6
package/Box.js
CHANGED
|
@@ -1252,6 +1252,50 @@ export const Box = {
|
|
|
1252
1252
|
}
|
|
1253
1253
|
},
|
|
1254
1254
|
|
|
1255
|
+
// grid
|
|
1256
|
+
...{
|
|
1257
|
+
gridTemplate: ({ props }) =>
|
|
1258
|
+
!isUndefined(props.gridTemplate) && {
|
|
1259
|
+
gridTemplate: props.gridTemplate
|
|
1260
|
+
},
|
|
1261
|
+
gridTemplateColumns: ({ props }) =>
|
|
1262
|
+
!isUndefined(props.gridTemplateColumns) && {
|
|
1263
|
+
gridTemplateColumns: props.gridTemplateColumns
|
|
1264
|
+
},
|
|
1265
|
+
gridTemplateRows: ({ props }) =>
|
|
1266
|
+
!isUndefined(props.gridTemplateRows) && {
|
|
1267
|
+
gridTemplateRows: props.gridTemplateRows
|
|
1268
|
+
},
|
|
1269
|
+
gridTemplateAreas: ({ props }) =>
|
|
1270
|
+
!isUndefined(props.gridTemplateAreas) && {
|
|
1271
|
+
gridTemplateAreas: props.gridTemplateAreas
|
|
1272
|
+
},
|
|
1273
|
+
gridAutoColumns: ({ props }) =>
|
|
1274
|
+
!isUndefined(props.gridAutoColumns) && {
|
|
1275
|
+
gridAutoColumns: props.gridAutoColumns
|
|
1276
|
+
},
|
|
1277
|
+
gridAutoRows: ({ props }) =>
|
|
1278
|
+
!isUndefined(props.gridAutoRows) && {
|
|
1279
|
+
gridAutoRows: props.gridAutoRows
|
|
1280
|
+
},
|
|
1281
|
+
gridAutoFlow: ({ props }) =>
|
|
1282
|
+
!isUndefined(props.gridAutoFlow) && {
|
|
1283
|
+
gridAutoFlow: props.gridAutoFlow
|
|
1284
|
+
},
|
|
1285
|
+
grid: ({ props }) =>
|
|
1286
|
+
!isUndefined(props.grid) && {
|
|
1287
|
+
grid: props.grid
|
|
1288
|
+
},
|
|
1289
|
+
gridColumnEnd: ({ props }) =>
|
|
1290
|
+
!isUndefined(props.gridColumnEnd) && {
|
|
1291
|
+
gridColumnEnd: props.gridColumnEnd
|
|
1292
|
+
},
|
|
1293
|
+
gridRowEnd: ({ props }) =>
|
|
1294
|
+
!isUndefined(props.gridRowEnd) && {
|
|
1295
|
+
gridRowEnd: props.gridRowEnd
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
|
|
1255
1299
|
// container queries
|
|
1256
1300
|
...{
|
|
1257
1301
|
container: ({ props }) =>
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/atoms",
|
|
3
|
-
"version": "2.34.
|
|
3
|
+
"version": "2.34.29",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"gitHead": "
|
|
6
|
+
"gitHead": "90cb8b61065249122ff356c3ea6eb56191c49bfa",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@domql/state": "^2.34.
|
|
9
|
-
"@domql/utils": "^2.34.
|
|
10
|
-
"@symbo.ls/emotion": "^2.34.
|
|
11
|
-
"@symbo.ls/scratch": "^2.34.
|
|
8
|
+
"@domql/state": "^2.34.29",
|
|
9
|
+
"@domql/utils": "^2.34.29",
|
|
10
|
+
"@symbo.ls/emotion": "^2.34.29",
|
|
11
|
+
"@symbo.ls/scratch": "^2.34.29"
|
|
12
12
|
},
|
|
13
13
|
"source": "src/index.js",
|
|
14
14
|
"devDependencies": {
|