@mezzanine-ui/system 1.0.0-beta.6 → 1.0.0-beta.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/system",
3
- "version": "1.0.0-beta.6",
3
+ "version": "1.0.0-beta.7",
4
4
  "description": "Design System for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
@@ -36,6 +36,7 @@ $primitive-scales: (
36
36
  64,
37
37
  68,
38
38
  70,
39
+ 72,
39
40
  76,
40
41
  80,
41
42
  88,
@@ -89,6 +90,7 @@ $default-primitives: (
89
90
  64: 64px,
90
91
  68: 68px,
91
92
  70: 70px,
93
+ 72: 72px,
92
94
  76: 76px,
93
95
  80: 80px,
94
96
  88: 88px,
@@ -45,6 +45,7 @@ $container-tones: (
45
45
  reduced,
46
46
  condensed,
47
47
  compressed,
48
+ concentrate-fixed,
48
49
  tightened,
49
50
  tiny,
50
51
  medium,
@@ -95,6 +96,7 @@ $vertical-tones: (
95
96
  tight,
96
97
  tight-fixed,
97
98
  base,
99
+ base-fixed,
98
100
  calm,
99
101
  comfort,
100
102
  roomy,
@@ -201,8 +203,8 @@ $semantic-spacings: (
201
203
  compact: primitive.variable(48),
202
204
  ),
203
205
  ultra-fixed: (
204
- default: primitive.variable(68),
205
- compact: primitive.variable(68),
206
+ default: primitive.variable(72),
207
+ compact: primitive.variable(72),
206
208
  ),
207
209
  max: (
208
210
  default: primitive.variable(80),
@@ -246,6 +248,10 @@ $semantic-spacings: (
246
248
  default: primitive.variable(70),
247
249
  compact: primitive.variable(70),
248
250
  ),
251
+ concentrate-fixed: (
252
+ default: primitive.variable(72),
253
+ compact: primitive.variable(72),
254
+ ),
249
255
  tightened: (
250
256
  default: primitive.variable(76),
251
257
  compact: primitive.variable(68),
@@ -478,6 +484,10 @@ $semantic-spacings: (
478
484
  default: primitive.variable(8),
479
485
  compact: primitive.variable(4),
480
486
  ),
487
+ base-fixed: (
488
+ default: primitive.variable(8),
489
+ compact: primitive.variable(8),
490
+ ),
481
491
  calm: (
482
492
  default: primitive.variable(10),
483
493
  compact: primitive.variable(6),
@@ -1,7 +1,7 @@
1
1
  @use '../utils/list';
2
2
 
3
3
  $prefix: mzn-z-index;
4
- $orders: (base, alert, modal, drawer, popover, feedback);
4
+ $orders: (base, alert, drawer, modal, popover, feedback);
5
5
 
6
6
  @mixin variables($base: 1000) {
7
7
  @for $index from 1 through list.length($orders) {