@carbon/grid 10.40.0 → 10.41.0-rc.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.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/grid",
|
|
3
3
|
"description": "Grid for digital and software products using the Carbon Design System",
|
|
4
|
-
"version": "10.
|
|
4
|
+
"version": "10.41.0-rc.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@carbon/import-once": "^10.6.0",
|
|
36
|
-
"@carbon/layout": "^10.
|
|
36
|
+
"@carbon/layout": "^10.36.0-rc.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@carbon/cli": "^10.
|
|
39
|
+
"@carbon/cli": "^10.33.0-rc.0",
|
|
40
40
|
"rimraf": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"eyeglass": {
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"sassDir": "scss",
|
|
46
46
|
"needs": "^1.3.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "6f5bca3be0e19dc7590617c704a2834514b3176b"
|
|
49
49
|
}
|
|
@@ -251,10 +251,14 @@
|
|
|
251
251
|
// -----------------------------------------------------------------------------
|
|
252
252
|
// Column offset
|
|
253
253
|
// -----------------------------------------------------------------------------
|
|
254
|
-
@for $i from 1 through
|
|
254
|
+
@for $i from 1 through 17 {
|
|
255
255
|
.#{$prefix}--col-start-#{$i} {
|
|
256
256
|
grid-column-start: $i;
|
|
257
257
|
}
|
|
258
|
+
|
|
259
|
+
.#{$prefix}--col-end-#{$i} {
|
|
260
|
+
grid-column-start: $i;
|
|
261
|
+
}
|
|
258
262
|
}
|
|
259
263
|
|
|
260
264
|
.#{$prefix}--col-start-auto {
|
|
@@ -276,6 +280,10 @@
|
|
|
276
280
|
.#{$prefix}--#{$name}\:col-start-#{$i} {
|
|
277
281
|
grid-column-start: $i;
|
|
278
282
|
}
|
|
283
|
+
|
|
284
|
+
.#{$prefix}--#{$name}\:col-end-#{$i} {
|
|
285
|
+
grid-column-end: $i;
|
|
286
|
+
}
|
|
279
287
|
}
|
|
280
288
|
|
|
281
289
|
.#{$prefix}--#{$name}\:col-start-auto {
|