@mezzanine-ui/system 1.0.0-beta.3 → 1.0.0-beta.4

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.
@@ -8,6 +8,7 @@ $default-durations: (
8
8
  fast: 150ms,
9
9
  moderate: 250ms,
10
10
  slow: 400ms,
11
+ long: 1000ms,
11
12
  loop: 1600ms,
12
13
  pause-short: 3000ms,
13
14
  pause-long: 10000ms,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/system",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.0-beta.4",
4
4
  "description": "Design System for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
@@ -13,6 +13,7 @@ $semantic-contexts: (
13
13
  icon,
14
14
  border,
15
15
  separator,
16
+ scrollbar,
16
17
  overlay,
17
18
  surface,
18
19
  shadow
@@ -336,6 +337,14 @@ $semantic-colors: (
336
337
  light: primitive.variable(white-base, white-alpha-20),
337
338
  dark: primitive.variable(white-base, white-alpha-20),
338
339
  ),
340
+ invisible: (
341
+ light: primitive.variable(black-base, black-alpha-0),
342
+ dark: primitive.variable(gray, 700),
343
+ ),
344
+ neutral-ghost: (
345
+ light: primitive.variable(gray, 100),
346
+ dark: primitive.variable(gray, 800),
347
+ ),
339
348
  neutral-faint: (
340
349
  light: primitive.variable(gray, 200),
341
350
  dark: primitive.variable(gray, 700),
@@ -395,6 +404,20 @@ $semantic-colors: (
395
404
  dark: primitive.variable(brand, 500),
396
405
  ),
397
406
  ),
407
+ scrollbar: (
408
+ neutral-light: (
409
+ light: primitive.variable(black-base, black-alpha-5),
410
+ dark: primitive.variable(white-base, white-alpha-5),
411
+ ),
412
+ neutral: (
413
+ light: primitive.variable(black-base, black-alpha-40),
414
+ dark: primitive.variable(white-base, white-alpha-40),
415
+ ),
416
+ strong: (
417
+ light: primitive.variable(black-base, black-alpha-60),
418
+ dark: primitive.variable(white-base, white-alpha-60),
419
+ ),
420
+ ),
398
421
  overlay: (
399
422
  strong: (
400
423
  light: primitive.variable(black-base, black-alpha-60),
@@ -150,6 +150,10 @@ $semantic-spacings: (
150
150
  default: primitive.variable(20),
151
151
  compact: primitive.variable(18),
152
152
  ),
153
+ gentle-fixed: (
154
+ default: primitive.variable(20),
155
+ compact: primitive.variable(20),
156
+ ),
153
157
  relaxed: (
154
158
  default: primitive.variable(24),
155
159
  compact: primitive.variable(20),
@@ -158,6 +162,10 @@ $semantic-spacings: (
158
162
  default: primitive.variable(28),
159
163
  compact: primitive.variable(24),
160
164
  ),
165
+ airy-fixed: (
166
+ default: primitive.variable(28),
167
+ compact: primitive.variable(28),
168
+ ),
161
169
  roomy: (
162
170
  default: primitive.variable(32),
163
171
  compact: primitive.variable(28),
@@ -198,6 +206,10 @@ $semantic-spacings: (
198
206
  default: primitive.variable(80),
199
207
  compact: primitive.variable(64),
200
208
  ),
209
+ xwide: (
210
+ default: primitive.variable(100),
211
+ compact: primitive.variable(92),
212
+ ),
201
213
  ),
202
214
  container: (
203
215
  minimal: (
@@ -331,6 +343,10 @@ $semantic-spacings: (
331
343
  default: primitive.variable(24),
332
344
  compact: primitive.variable(20),
333
345
  ),
346
+ relaxed: (
347
+ default: primitive.variable(32),
348
+ compact: primitive.variable(28),
349
+ ),
334
350
  loose: (
335
351
  default: primitive.variable(40),
336
352
  compact: primitive.variable(36),
@@ -16,6 +16,7 @@ $semantic-types: (
16
16
  text-link-body,
17
17
  text-link-caption,
18
18
  caption,
19
+ caption-mono,
19
20
  caption-highlight,
20
21
  annotation,
21
22
  annotation-highlight,
@@ -101,6 +102,13 @@ $semantic-typographies: (
101
102
  line-height: primitive.line-height-variable(caption),
102
103
  letter-spacing: primitive.letter-spacing-variable(0),
103
104
  ),
105
+ caption-mono: (
106
+ font-family: primitive.font-family-variable(sfmono),
107
+ font-size: primitive.font-size-variable(12),
108
+ font-weight: primitive.font-weight-variable(regular),
109
+ line-height: primitive.line-height-variable(caption),
110
+ letter-spacing: primitive.letter-spacing-variable(0),
111
+ ),
104
112
  caption-highlight: (
105
113
  font-size: primitive.font-size-variable(12),
106
114
  font-weight: primitive.font-weight-variable(semibold),