@vonage/vivid 3.0.0-next.57 → 3.0.0-next.59

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 (45) hide show
  1. package/README.md +19 -22
  2. package/accordion/index.js +1 -1
  3. package/accordion-item/index.js +1 -1
  4. package/action-group/index.js +1 -1
  5. package/avatar/index.js +1 -1
  6. package/badge/index.js +1 -1
  7. package/banner/index.js +1 -1
  8. package/breadcrumb-item/index.js +1 -1
  9. package/button/index.js +1 -1
  10. package/calendar/index.js +31 -16
  11. package/calendar-event/index.js +6 -6
  12. package/card/index.js +1 -1
  13. package/checkbox/index.js +10 -1
  14. package/dialog/index.js +1 -1
  15. package/divider/index.js +1 -1
  16. package/fab/index.js +1 -1
  17. package/focus/index.js +1 -1
  18. package/header/index.js +1 -1
  19. package/nav-disclosure/index.js +1 -1
  20. package/nav-item/index.js +1 -1
  21. package/note/index.js +1 -1
  22. package/package.json +4 -4
  23. package/progress/index.js +3 -3
  24. package/progress-ring/index.js +1 -1
  25. package/shared/button.js +4 -0
  26. package/shared/es.object.assign.js +1 -1
  27. package/shared/export.js +53 -30
  28. package/shared/form-associated.js +3 -6
  29. package/shared/form-elements.js +4 -0
  30. package/shared/icon.js +52 -35
  31. package/shared/index3.js +25 -19
  32. package/shared/iterators.js +1 -1
  33. package/shared/object-keys.js +1 -1
  34. package/shared/patterns/form-elements.d.ts +1 -1
  35. package/shared/web.dom-collections.iterator.js +18 -10
  36. package/side-drawer/index.js +2 -3
  37. package/styles/core/all.css +75 -0
  38. package/styles/core/theme.css +11 -0
  39. package/styles/core/typography.css +69 -0
  40. package/styles/{themes/dark.css → tokens/theme-dark.css} +25 -14
  41. package/styles/{themes/light.css → tokens/theme-light.css} +25 -14
  42. package/text-area/index.js +5 -1
  43. package/text-field/index.js +1 -1
  44. package/tooltip/index.js +1 -1
  45. package/styles/typography/desktop.css +0 -104
@@ -1,104 +0,0 @@
1
- /**
2
- * Do not edit directly
3
- * Generated on Sat, 10 Sep 2022 18:25:53 GMT
4
- */
5
- /**
6
- * Do not edit directly
7
- * Generated on Sat, 10 Sep 2022 18:25:53 GMT
8
- */
9
- :root {
10
- --vvd-font-headline: 500 condensed 66px/88px SpeziaCompleteVariableUpright;
11
- --vvd-font-subtitle: 500 condensed 52px/68px SpeziaCompleteVariableUpright;
12
- --vvd-font-heading1: 500 condensed 40px/52px SpeziaCompleteVariableUpright;
13
- --vvd-font-heading2: 500 condensed 32px/44px SpeziaCompleteVariableUpright;
14
- --vvd-font-heading3: 500 condensed 26px/36px SpeziaCompleteVariableUpright;
15
- --vvd-font-heading4: 500 condensed 20px/28px SpeziaCompleteVariableUpright;
16
- --vvd-font-base: 400 ultra-condensed 14px/20px SpeziaCompleteVariableUpright;
17
- --vvd-font-base-bold: 600 ultra-condensed 14px/20px SpeziaCompleteVariableUpright;
18
- --vvd-font-base-code: 400 ultra-condensed 14px/20px SpeziaMonoCompleteVariable;
19
- --vvd-font-base-extended: 400 ultra-condensed 16px/24px SpeziaCompleteVariableUpright;
20
- --vvd-font-base-extended-bold: 600 ultra-condensed 16px/24px SpeziaCompleteVariableUpright;
21
- --vvd-font-base-extended-code: 400 ultra-condensed 16px/24px SpeziaMonoCompleteVariable;
22
- --vvd-font-base-condensed: 400 ultra-condensed 12px/16px SpeziaCompleteVariableUpright;
23
- --vvd-font-base-condensed-bold: 600 ultra-condensed 12px/16px SpeziaCompleteVariableUpright;
24
- --vvd-font-base-condensed-code: 400 ultra-condensed 12px/16px SpeziaMonoCompleteVariable;
25
- }
26
-
27
- body {
28
- font-feature-settings: "kern"; /* turns on kerning */
29
- text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */
30
- -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */
31
- -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */
32
- font: var(--vvd-font-base);
33
- }
34
-
35
- p {
36
- font: var(--vvd-font-base);
37
- margin-block: 16px;
38
- }
39
-
40
- b, strong {
41
- font: var(--vvd-font-base-bold);
42
- }
43
-
44
- pre, var, code, kbd, samp {
45
- font: var(--vvd-font-base-code);
46
- }
47
-
48
- .headline {
49
- font: var(--vvd-font-headline);
50
- margin-block: 40px;
51
- }
52
-
53
- .subtitle {
54
- font: var(--vvd-font-subtitle);
55
- margin-block: 40px;
56
- }
57
-
58
- h1, .heading1 {
59
- font: var(--vvd-font-heading1);
60
- margin-block: 32px;
61
- }
62
-
63
- h2, .heading2 {
64
- font: var(--vvd-font-heading2);
65
- margin-block: 32px;
66
- }
67
-
68
- h2, .heading3 {
69
- font: var(--vvd-font-heading3);
70
- margin-block: 24px;
71
- }
72
-
73
- h4, .heading4 {
74
- font: var(--vvd-font-heading4);
75
- margin-block: 24px;
76
- }
77
-
78
- small, figcaption {
79
- font: var(--vvd-font-base-condensed);
80
- }
81
- small b, small strong, figcaption b, figcaption strong {
82
- font: var(--vvd-font-base-condensed-bold);
83
- }
84
- small pre, small var, small code, small kbd, small samp, figcaption pre, figcaption var, figcaption code, figcaption kbd, figcaption samp {
85
- font: var(--vvd-font-base-condensed-code);
86
- }
87
-
88
- sub,
89
- sup {
90
- font: 75%;
91
- line-height: 0;
92
- position: relative;
93
- vertical-align: baseline;
94
- }
95
-
96
- sub {
97
- bottom: -0.25em;
98
- }
99
-
100
- sup {
101
- top: -0.5em;
102
- }
103
-
104
- /*# sourceMappingURL=desktop.css.map */