@mailwoman/react 9.3.0 → 9.4.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.
Files changed (159) hide show
  1. package/fonts.css +59 -0
  2. package/lib/common/About.tsx +89 -0
  3. package/lib/common/KindBadge.tsx +2 -7
  4. package/lib/common/confidence-tiers.ts +50 -0
  5. package/lib/common/text-tokens.ts +88 -0
  6. package/lib/index.ts +30 -28
  7. package/lib/map/CompareToggle.tsx +2 -2
  8. package/lib/map/{GeocoderDemo.tsx → Geocoder.tsx} +40 -40
  9. package/lib/map/{DemoControls.tsx → GeocoderControls.tsx} +16 -17
  10. package/lib/map/{DemoMap.tsx → MapCanvas.tsx} +15 -15
  11. package/lib/map/PlaceMarker.tsx +1 -1
  12. package/lib/map/ResolvedPlaceLayers.tsx +3 -3
  13. package/lib/map/ResultCamera.tsx +1 -1
  14. package/lib/map/ResultPanel.tsx +2 -2
  15. package/lib/map/VersionPicker.tsx +3 -3
  16. package/lib/map/fake-runtime.ts +122 -0
  17. package/lib/map/index.ts +16 -16
  18. package/lib/map/map-debug.ts +51 -0
  19. package/lib/map/place-render.ts +3 -2
  20. package/lib/map/types.ts +41 -39
  21. package/lib/map/{useDemoGeocode.ts → useGeocode.ts} +8 -8
  22. package/lib/pipeline/CandidatePicker.tsx +1 -1
  23. package/lib/pipeline/ComponentTable.tsx +1 -2
  24. package/lib/pipeline/ConfidenceCell.tsx +7 -19
  25. package/lib/pipeline/FailureDiagnostic.tsx +56 -0
  26. package/lib/pipeline/ResolvedPlace.tsx +17 -4
  27. package/lib/pipeline/SpanHighlight.tsx +97 -0
  28. package/lib/pipeline/TimingPanel.tsx +65 -0
  29. package/lib/pipeline/TreeView.tsx +55 -0
  30. package/lib/pipeline/copy.ts +1 -1
  31. package/lib/pipeline/types.ts +2 -75
  32. package/lib/pipeline/useParsePipeline.ts +2 -1
  33. package/lib/poi/types.ts +2 -1
  34. package/lib/runtime/{useDemoRuntime.ts → useReleaseRuntime.ts} +22 -24
  35. package/out/common/About.d.ts +12 -0
  36. package/out/common/About.d.ts.map +1 -0
  37. package/out/common/About.js +5 -0
  38. package/out/common/About.js.map +1 -0
  39. package/out/common/KindBadge.d.ts +2 -9
  40. package/out/common/KindBadge.d.ts.map +1 -1
  41. package/out/common/KindBadge.js.map +1 -1
  42. package/out/common/confidence-tiers.d.ts +36 -0
  43. package/out/common/confidence-tiers.d.ts.map +1 -0
  44. package/out/common/confidence-tiers.js +42 -0
  45. package/out/common/confidence-tiers.js.map +1 -0
  46. package/out/common/text-tokens.d.ts +46 -0
  47. package/out/common/text-tokens.d.ts.map +1 -0
  48. package/out/common/text-tokens.js +52 -0
  49. package/out/common/text-tokens.js.map +1 -0
  50. package/out/index.d.ts +14 -5
  51. package/out/index.d.ts.map +1 -1
  52. package/out/index.js +8 -2
  53. package/out/index.js.map +1 -1
  54. package/out/map/CompareToggle.d.ts +2 -2
  55. package/out/map/CompareToggle.d.ts.map +1 -1
  56. package/out/map/{GeocoderDemo.d.ts → Geocoder.d.ts} +17 -17
  57. package/out/map/Geocoder.d.ts.map +1 -0
  58. package/out/map/{GeocoderDemo.js → Geocoder.js} +25 -25
  59. package/out/map/Geocoder.js.map +1 -0
  60. package/out/map/{DemoControls.d.ts → GeocoderControls.d.ts} +16 -17
  61. package/out/map/GeocoderControls.d.ts.map +1 -0
  62. package/out/map/{DemoControls.js → GeocoderControls.js} +2 -2
  63. package/out/map/GeocoderControls.js.map +1 -0
  64. package/out/map/{DemoMap.d.ts → MapCanvas.d.ts} +15 -15
  65. package/out/map/MapCanvas.d.ts.map +1 -0
  66. package/out/map/{DemoMap.js → MapCanvas.js} +2 -2
  67. package/out/map/MapCanvas.js.map +1 -0
  68. package/out/map/PlaceMarker.d.ts +1 -1
  69. package/out/map/ResolvedPlaceLayers.d.ts +3 -3
  70. package/out/map/ResultCamera.d.ts +1 -1
  71. package/out/map/ResultCamera.js +1 -1
  72. package/out/map/ResultPanel.d.ts +2 -2
  73. package/out/map/ResultPanel.d.ts.map +1 -1
  74. package/out/map/ResultPanel.js.map +1 -1
  75. package/out/map/VersionPicker.d.ts +3 -3
  76. package/out/map/VersionPicker.d.ts.map +1 -1
  77. package/out/map/fake-runtime.d.ts +38 -0
  78. package/out/map/fake-runtime.d.ts.map +1 -0
  79. package/out/map/fake-runtime.js +107 -0
  80. package/out/map/fake-runtime.js.map +1 -0
  81. package/out/map/index.d.ts +10 -10
  82. package/out/map/index.d.ts.map +1 -1
  83. package/out/map/index.js +6 -6
  84. package/out/map/index.js.map +1 -1
  85. package/out/map/map-debug.d.ts +31 -0
  86. package/out/map/map-debug.d.ts.map +1 -0
  87. package/out/map/map-debug.js +31 -0
  88. package/out/map/map-debug.js.map +1 -0
  89. package/out/map/place-render.d.ts +2 -2
  90. package/out/map/place-render.d.ts.map +1 -1
  91. package/out/map/place-render.js +1 -1
  92. package/out/map/place-render.js.map +1 -1
  93. package/out/map/types.d.ts +41 -39
  94. package/out/map/types.d.ts.map +1 -1
  95. package/out/map/types.js +5 -5
  96. package/out/map/{useDemoGeocode.d.ts → useGeocode.d.ts} +9 -9
  97. package/out/map/useGeocode.d.ts.map +1 -0
  98. package/out/map/{useDemoGeocode.js → useGeocode.js} +4 -4
  99. package/out/map/useGeocode.js.map +1 -0
  100. package/out/pipeline/CandidatePicker.d.ts +1 -1
  101. package/out/pipeline/CandidatePicker.d.ts.map +1 -1
  102. package/out/pipeline/CandidatePicker.js.map +1 -1
  103. package/out/pipeline/ComponentTable.d.ts +1 -1
  104. package/out/pipeline/ComponentTable.d.ts.map +1 -1
  105. package/out/pipeline/ComponentTable.js.map +1 -1
  106. package/out/pipeline/ConfidenceCell.d.ts +2 -2
  107. package/out/pipeline/ConfidenceCell.d.ts.map +1 -1
  108. package/out/pipeline/ConfidenceCell.js +4 -16
  109. package/out/pipeline/ConfidenceCell.js.map +1 -1
  110. package/out/pipeline/FailureDiagnostic.d.ts +15 -0
  111. package/out/pipeline/FailureDiagnostic.d.ts.map +1 -0
  112. package/out/pipeline/FailureDiagnostic.js +21 -0
  113. package/out/pipeline/FailureDiagnostic.js.map +1 -0
  114. package/out/pipeline/ResolvedPlace.d.ts +1 -1
  115. package/out/pipeline/ResolvedPlace.d.ts.map +1 -1
  116. package/out/pipeline/ResolvedPlace.js +4 -10
  117. package/out/pipeline/ResolvedPlace.js.map +1 -1
  118. package/out/pipeline/SpanHighlight.d.ts +23 -0
  119. package/out/pipeline/SpanHighlight.d.ts.map +1 -0
  120. package/out/pipeline/SpanHighlight.js +31 -0
  121. package/out/pipeline/SpanHighlight.js.map +1 -0
  122. package/out/pipeline/TimingPanel.d.ts +16 -0
  123. package/out/pipeline/TimingPanel.d.ts.map +1 -0
  124. package/out/pipeline/TimingPanel.js +20 -0
  125. package/out/pipeline/TimingPanel.js.map +1 -0
  126. package/out/pipeline/TreeView.d.ts +17 -0
  127. package/out/pipeline/TreeView.d.ts.map +1 -0
  128. package/out/pipeline/TreeView.js +15 -0
  129. package/out/pipeline/TreeView.js.map +1 -0
  130. package/out/pipeline/copy.d.ts +1 -1
  131. package/out/pipeline/copy.d.ts.map +1 -1
  132. package/out/pipeline/types.d.ts +2 -68
  133. package/out/pipeline/types.d.ts.map +1 -1
  134. package/out/pipeline/types.js +1 -1
  135. package/out/pipeline/useParsePipeline.d.ts +2 -1
  136. package/out/pipeline/useParsePipeline.d.ts.map +1 -1
  137. package/out/pipeline/useParsePipeline.js.map +1 -1
  138. package/out/poi/types.d.ts +2 -1
  139. package/out/poi/types.d.ts.map +1 -1
  140. package/out/runtime/{useDemoRuntime.d.ts → useReleaseRuntime.d.ts} +18 -20
  141. package/out/runtime/useReleaseRuntime.d.ts.map +1 -0
  142. package/out/runtime/{useDemoRuntime.js → useReleaseRuntime.js} +4 -4
  143. package/out/runtime/useReleaseRuntime.js.map +1 -0
  144. package/package.json +139 -29
  145. package/styleframe.config.ts +321 -0
  146. package/styles.css +1074 -664
  147. package/tokens/index.css +115 -0
  148. package/tokens/tokens.json +521 -0
  149. package/tokens/tokens.resolver.json +185 -0
  150. package/out/map/DemoControls.d.ts.map +0 -1
  151. package/out/map/DemoControls.js.map +0 -1
  152. package/out/map/DemoMap.d.ts.map +0 -1
  153. package/out/map/DemoMap.js.map +0 -1
  154. package/out/map/GeocoderDemo.d.ts.map +0 -1
  155. package/out/map/GeocoderDemo.js.map +0 -1
  156. package/out/map/useDemoGeocode.d.ts.map +0 -1
  157. package/out/map/useDemoGeocode.js.map +0 -1
  158. package/out/runtime/useDemoRuntime.d.ts.map +0 -1
  159. package/out/runtime/useDemoRuntime.js.map +0 -1
@@ -0,0 +1,115 @@
1
+ :root {
2
+ --brand-magenta: #ff00b0;
3
+ --brand-blue: #1a00ff;
4
+ --brand-navy: #00093a;
5
+ --brand-amber: hsl(39deg 100% 50%);
6
+ --brand-teal: hsl(97.78deg 100% 50%);
7
+ --neutral-0: oklch(100% 0 264);
8
+ --neutral-50: oklch(97% 0.004 264);
9
+ --neutral-100: oklch(93% 0.006 264);
10
+ --neutral-200: oklch(87% 0.01 264);
11
+ --neutral-300: oklch(78% 0.015 264);
12
+ --neutral-400: oklch(66% 0.02 264);
13
+ --neutral-500: oklch(55% 0.024 264);
14
+ --neutral-600: oklch(45% 0.026 264);
15
+ --neutral-700: oklch(35% 0.028 264);
16
+ --neutral-800: oklch(26% 0.028 264);
17
+ --neutral-900: oklch(18% 0.026 264);
18
+ --neutral-950: oklch(12% 0.022 264);
19
+ --neutral-1000: oklch(0% 0 264);
20
+ --success-base: oklch(62% 0.15 150);
21
+ --warning-base: oklch(75% 0.15 75);
22
+ --danger-base: oklch(58% 0.2 25);
23
+ --info-base: oklch(65% 0.13 230);
24
+ --font-family-display: "Iosevka Nexus Web", "Iosevka", system-ui, sans-serif;
25
+ --font-family-text: "Iosevka Nexus Web", "Iosevka", system-ui, sans-serif;
26
+ --font-family-number: "Iosevka Nexus Web", "Iosevka", system-ui, sans-serif;
27
+ --font-family-code: "Iosevka Nexus Mono Web", "Iosevka", ui-monospace, "SF Mono", monospace;
28
+ --font-family-glyph: "Iosevka Nexus Mono Web", "Iosevka", ui-monospace, monospace;
29
+ --font-family-map: "Noto Sans Regular";
30
+ --font-size-display: 2.125rem;
31
+ --font-size-title: 1.375rem;
32
+ --font-size-headline: 1.0625rem;
33
+ --font-size-body: 1.0625rem;
34
+ --font-size-callout: 1rem;
35
+ --font-size-subheadline: 0.9375rem;
36
+ --font-size-footnote: 0.8125rem;
37
+ --font-size-caption: 0.75rem;
38
+ --line-height-tight: 1.2;
39
+ --line-height-body: 1.45;
40
+ --font-weight-regular: 400;
41
+ --font-weight-medium: 500;
42
+ --font-weight-semibold: 600;
43
+ --radius-control: 0.5rem;
44
+ --radius-panel: 0.875rem;
45
+ --radius-sheet: 0.875rem;
46
+ --radius-pill: 999px;
47
+ --duration-fast: 120ms;
48
+ --duration-standard: 220ms;
49
+ --duration-sheet: 320ms;
50
+ --easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
51
+ --easing-decelerate: cubic-bezier(0, 0, 0.2, 1);
52
+ --safe-area-top: env(safe-area-inset-top, 0px);
53
+ --safe-area-right: env(safe-area-inset-right, 0px);
54
+ --safe-area-bottom: env(safe-area-inset-bottom, 0px);
55
+ --safe-area-left: env(safe-area-inset-left, 0px);
56
+ --color-background-canvas: var(--neutral-50);
57
+ --color-background-raised: var(--neutral-0);
58
+ --color-background-sunken: var(--neutral-100);
59
+ --color-text-primary: var(--neutral-900);
60
+ --color-text-secondary: var(--neutral-600);
61
+ --color-text-tertiary: var(--neutral-500);
62
+ --color-separator: var(--neutral-200);
63
+ --color-accent: var(--brand-magenta);
64
+ --color-accent-contrast: var(--neutral-0);
65
+ --color-selection: var(--brand-magenta);
66
+ --control-background: var(--neutral-100);
67
+ --control-background-pressed: var(--neutral-200);
68
+ --control-foreground: var(--neutral-900);
69
+ --control-border: var(--neutral-300);
70
+ --color-state-success: var(--success-base);
71
+ --color-state-success-background: oklch(62% 0.15 150 / 0.14);
72
+ --color-state-warning: var(--warning-base);
73
+ --color-state-warning-background: oklch(75% 0.15 75 / 0.16);
74
+ --color-state-danger: var(--danger-base);
75
+ --color-state-danger-background: oklch(58% 0.2 25 / 0.14);
76
+ --color-state-info: var(--info-base);
77
+ --color-state-info-background: oklch(65% 0.13 230 / 0.14);
78
+ --color-accent-background: oklch(65% 0.29 340 / 0.14);
79
+ --material-glass-background: oklch(100% 0 264 / 0.72);
80
+ --material-glass-border: oklch(0% 0 264 / 0.1);
81
+ --material-glass-blur: 24px;
82
+ --material-glass-saturation: 180%;
83
+ --material-glass-shadow: 0 4px 28px oklch(0% 0 264 / 0.14);
84
+ --material-glass-highlight: oklch(100% 0 264 / 0.5);
85
+ --material-glass-fallback-background: var(--neutral-0);
86
+ }
87
+
88
+ [data-theme="dark"] {
89
+ --color-background-canvas: var(--neutral-950);
90
+ --color-background-raised: var(--neutral-900);
91
+ --color-background-sunken: var(--neutral-1000);
92
+ --color-text-primary: var(--neutral-100);
93
+ --color-text-secondary: var(--neutral-400);
94
+ --color-text-tertiary: var(--neutral-500);
95
+ --color-separator: oklch(100% 0 264 / 0.12);
96
+ --color-accent-contrast: var(--neutral-1000);
97
+ --control-background: oklch(100% 0 264 / 0.08);
98
+ --control-background-pressed: oklch(100% 0 264 / 0.14);
99
+ --control-foreground: var(--neutral-100);
100
+ --control-border: oklch(100% 0 264 / 0.16);
101
+ --color-state-success: oklch(76% 0.16 150);
102
+ --color-state-success-background: oklch(76% 0.16 150 / 0.18);
103
+ --color-state-warning: oklch(84% 0.15 75);
104
+ --color-state-warning-background: oklch(84% 0.15 75 / 0.18);
105
+ --color-state-danger: oklch(70% 0.19 25);
106
+ --color-state-danger-background: oklch(70% 0.19 25 / 0.18);
107
+ --color-state-info: oklch(78% 0.12 230);
108
+ --color-state-info-background: oklch(78% 0.12 230 / 0.18);
109
+ --color-accent-background: oklch(65% 0.29 340 / 0.18);
110
+ --material-glass-background: oklch(18% 0.026 264 / 0.72);
111
+ --material-glass-border: oklch(100% 0 264 / 0.14);
112
+ --material-glass-shadow: 0 4px 28px oklch(0% 0 264 / 0.45);
113
+ --material-glass-highlight: oklch(100% 0 264 / 0.12);
114
+ --material-glass-fallback-background: var(--neutral-900);
115
+ }
@@ -0,0 +1,521 @@
1
+ {
2
+ "$schema": "https://design-tokens.org/schemas/2025.10/tokens.json",
3
+ "$extensions": {
4
+ "dev.styleframe": {
5
+ "collection": "Mailwoman"
6
+ }
7
+ },
8
+ "brand-magenta": {
9
+ "$value": {
10
+ "colorSpace": "srgb",
11
+ "components": [1, 0, 0.6901960784313725]
12
+ },
13
+ "$type": "color"
14
+ },
15
+ "brand-blue": {
16
+ "$value": {
17
+ "colorSpace": "srgb",
18
+ "components": [0.10196078431372549, 0, 1]
19
+ },
20
+ "$type": "color"
21
+ },
22
+ "brand-navy": {
23
+ "$value": {
24
+ "colorSpace": "srgb",
25
+ "components": [0, 0.03529411764705882, 0.22745098039215686]
26
+ },
27
+ "$type": "color"
28
+ },
29
+ "brand-amber": {
30
+ "$value": {
31
+ "colorSpace": "hsl",
32
+ "components": [39, 100, 50]
33
+ },
34
+ "$type": "color"
35
+ },
36
+ "brand-teal": {
37
+ "$value": {
38
+ "colorSpace": "hsl",
39
+ "components": [97.78, 100, 50]
40
+ },
41
+ "$type": "color"
42
+ },
43
+ "neutral-0": {
44
+ "$value": {
45
+ "colorSpace": "oklch",
46
+ "components": [1, 0, 264]
47
+ },
48
+ "$type": "color"
49
+ },
50
+ "neutral-50": {
51
+ "$value": {
52
+ "colorSpace": "oklch",
53
+ "components": [0.97, 0.004, 264]
54
+ },
55
+ "$type": "color"
56
+ },
57
+ "neutral-100": {
58
+ "$value": {
59
+ "colorSpace": "oklch",
60
+ "components": [0.93, 0.006, 264]
61
+ },
62
+ "$type": "color"
63
+ },
64
+ "neutral-200": {
65
+ "$value": {
66
+ "colorSpace": "oklch",
67
+ "components": [0.87, 0.01, 264]
68
+ },
69
+ "$type": "color"
70
+ },
71
+ "neutral-300": {
72
+ "$value": {
73
+ "colorSpace": "oklch",
74
+ "components": [0.78, 0.015, 264]
75
+ },
76
+ "$type": "color"
77
+ },
78
+ "neutral-400": {
79
+ "$value": {
80
+ "colorSpace": "oklch",
81
+ "components": [0.66, 0.02, 264]
82
+ },
83
+ "$type": "color"
84
+ },
85
+ "neutral-500": {
86
+ "$value": {
87
+ "colorSpace": "oklch",
88
+ "components": [0.55, 0.024, 264]
89
+ },
90
+ "$type": "color"
91
+ },
92
+ "neutral-600": {
93
+ "$value": {
94
+ "colorSpace": "oklch",
95
+ "components": [0.45, 0.026, 264]
96
+ },
97
+ "$type": "color"
98
+ },
99
+ "neutral-700": {
100
+ "$value": {
101
+ "colorSpace": "oklch",
102
+ "components": [0.35, 0.028, 264]
103
+ },
104
+ "$type": "color"
105
+ },
106
+ "neutral-800": {
107
+ "$value": {
108
+ "colorSpace": "oklch",
109
+ "components": [0.26, 0.028, 264]
110
+ },
111
+ "$type": "color"
112
+ },
113
+ "neutral-900": {
114
+ "$value": {
115
+ "colorSpace": "oklch",
116
+ "components": [0.18, 0.026, 264]
117
+ },
118
+ "$type": "color"
119
+ },
120
+ "neutral-950": {
121
+ "$value": {
122
+ "colorSpace": "oklch",
123
+ "components": [0.12, 0.022, 264]
124
+ },
125
+ "$type": "color"
126
+ },
127
+ "neutral-1000": {
128
+ "$value": {
129
+ "colorSpace": "oklch",
130
+ "components": [0, 0, 264]
131
+ },
132
+ "$type": "color"
133
+ },
134
+ "success-base": {
135
+ "$value": {
136
+ "colorSpace": "oklch",
137
+ "components": [0.62, 0.15, 150]
138
+ },
139
+ "$type": "color"
140
+ },
141
+ "warning-base": {
142
+ "$value": {
143
+ "colorSpace": "oklch",
144
+ "components": [0.75, 0.15, 75]
145
+ },
146
+ "$type": "color"
147
+ },
148
+ "danger-base": {
149
+ "$value": {
150
+ "colorSpace": "oklch",
151
+ "components": [0.58, 0.2, 25]
152
+ },
153
+ "$type": "color"
154
+ },
155
+ "info-base": {
156
+ "$value": {
157
+ "colorSpace": "oklch",
158
+ "components": [0.65, 0.13, 230]
159
+ },
160
+ "$type": "color"
161
+ },
162
+ "font-family-display": {
163
+ "$value": "\"Iosevka Nexus Web\", \"Iosevka\", system-ui, sans-serif",
164
+ "$type": "fontFamily"
165
+ },
166
+ "font-family-text": {
167
+ "$value": "\"Iosevka Nexus Web\", \"Iosevka\", system-ui, sans-serif",
168
+ "$type": "fontFamily"
169
+ },
170
+ "font-family-number": {
171
+ "$value": "\"Iosevka Nexus Web\", \"Iosevka\", system-ui, sans-serif",
172
+ "$type": "fontFamily"
173
+ },
174
+ "font-family-code": {
175
+ "$value": "\"Iosevka Nexus Mono Web\", \"Iosevka\", ui-monospace, \"SF Mono\", monospace",
176
+ "$type": "fontFamily"
177
+ },
178
+ "font-family-glyph": {
179
+ "$value": "\"Iosevka Nexus Mono Web\", \"Iosevka\", ui-monospace, monospace",
180
+ "$type": "fontFamily"
181
+ },
182
+ "font-family-map": {
183
+ "$value": "\"Noto Sans Regular\"",
184
+ "$type": "fontFamily"
185
+ },
186
+ "font-size-display": {
187
+ "$value": {
188
+ "value": 2.125,
189
+ "unit": "rem"
190
+ },
191
+ "$type": "dimension"
192
+ },
193
+ "font-size-title": {
194
+ "$value": {
195
+ "value": 1.375,
196
+ "unit": "rem"
197
+ },
198
+ "$type": "dimension"
199
+ },
200
+ "font-size-headline": {
201
+ "$value": {
202
+ "value": 1.0625,
203
+ "unit": "rem"
204
+ },
205
+ "$type": "dimension"
206
+ },
207
+ "font-size-body": {
208
+ "$value": {
209
+ "value": 1.0625,
210
+ "unit": "rem"
211
+ },
212
+ "$type": "dimension"
213
+ },
214
+ "font-size-callout": {
215
+ "$value": {
216
+ "value": 1,
217
+ "unit": "rem"
218
+ },
219
+ "$type": "dimension"
220
+ },
221
+ "font-size-subheadline": {
222
+ "$value": {
223
+ "value": 0.9375,
224
+ "unit": "rem"
225
+ },
226
+ "$type": "dimension"
227
+ },
228
+ "font-size-footnote": {
229
+ "$value": {
230
+ "value": 0.8125,
231
+ "unit": "rem"
232
+ },
233
+ "$type": "dimension"
234
+ },
235
+ "font-size-caption": {
236
+ "$value": {
237
+ "value": 0.75,
238
+ "unit": "rem"
239
+ },
240
+ "$type": "dimension"
241
+ },
242
+ "line-height-tight": {
243
+ "$value": "1.2",
244
+ "$extensions": {
245
+ "dev.styleframe": {
246
+ "unknownType": true
247
+ }
248
+ }
249
+ },
250
+ "line-height-body": {
251
+ "$value": "1.45",
252
+ "$extensions": {
253
+ "dev.styleframe": {
254
+ "unknownType": true
255
+ }
256
+ }
257
+ },
258
+ "font-weight-regular": {
259
+ "$value": 400,
260
+ "$type": "fontWeight"
261
+ },
262
+ "font-weight-medium": {
263
+ "$value": 500,
264
+ "$type": "fontWeight"
265
+ },
266
+ "font-weight-semibold": {
267
+ "$value": 600,
268
+ "$type": "fontWeight"
269
+ },
270
+ "radius-control": {
271
+ "$value": {
272
+ "value": 0.5,
273
+ "unit": "rem"
274
+ },
275
+ "$type": "dimension"
276
+ },
277
+ "radius-panel": {
278
+ "$value": {
279
+ "value": 0.875,
280
+ "unit": "rem"
281
+ },
282
+ "$type": "dimension"
283
+ },
284
+ "radius-sheet": {
285
+ "$value": {
286
+ "value": 0.875,
287
+ "unit": "rem"
288
+ },
289
+ "$type": "dimension"
290
+ },
291
+ "radius-pill": {
292
+ "$value": {
293
+ "value": 999,
294
+ "unit": "px"
295
+ },
296
+ "$type": "dimension"
297
+ },
298
+ "duration-fast": {
299
+ "$value": {
300
+ "value": 120,
301
+ "unit": "ms"
302
+ },
303
+ "$type": "duration"
304
+ },
305
+ "duration-standard": {
306
+ "$value": {
307
+ "value": 220,
308
+ "unit": "ms"
309
+ },
310
+ "$type": "duration"
311
+ },
312
+ "duration-sheet": {
313
+ "$value": {
314
+ "value": 320,
315
+ "unit": "ms"
316
+ },
317
+ "$type": "duration"
318
+ },
319
+ "easing-standard": {
320
+ "$value": [0.4, 0, 0.2, 1],
321
+ "$type": "cubicBezier"
322
+ },
323
+ "easing-decelerate": {
324
+ "$value": [0, 0, 0.2, 1],
325
+ "$type": "cubicBezier"
326
+ },
327
+ "safe-area-top": {
328
+ "$value": "env(safe-area-inset-top, 0px)",
329
+ "$extensions": {
330
+ "dev.styleframe": {
331
+ "unknownType": true
332
+ }
333
+ }
334
+ },
335
+ "safe-area-right": {
336
+ "$value": "env(safe-area-inset-right, 0px)",
337
+ "$extensions": {
338
+ "dev.styleframe": {
339
+ "unknownType": true
340
+ }
341
+ }
342
+ },
343
+ "safe-area-bottom": {
344
+ "$value": "env(safe-area-inset-bottom, 0px)",
345
+ "$extensions": {
346
+ "dev.styleframe": {
347
+ "unknownType": true
348
+ }
349
+ }
350
+ },
351
+ "safe-area-left": {
352
+ "$value": "env(safe-area-inset-left, 0px)",
353
+ "$extensions": {
354
+ "dev.styleframe": {
355
+ "unknownType": true
356
+ }
357
+ }
358
+ },
359
+ "color-background-canvas": {
360
+ "$value": "{neutral-50}",
361
+ "$type": "color"
362
+ },
363
+ "color-background-raised": {
364
+ "$value": "{neutral-0}",
365
+ "$type": "color"
366
+ },
367
+ "color-background-sunken": {
368
+ "$value": "{neutral-100}",
369
+ "$type": "color"
370
+ },
371
+ "color-text-primary": {
372
+ "$value": "{neutral-900}",
373
+ "$type": "color"
374
+ },
375
+ "color-text-secondary": {
376
+ "$value": "{neutral-600}",
377
+ "$type": "color"
378
+ },
379
+ "color-text-tertiary": {
380
+ "$value": "{neutral-500}",
381
+ "$type": "color"
382
+ },
383
+ "color-separator": {
384
+ "$value": "{neutral-200}",
385
+ "$type": "color"
386
+ },
387
+ "color-accent": {
388
+ "$value": "{brand-magenta}",
389
+ "$type": "color"
390
+ },
391
+ "color-accent-contrast": {
392
+ "$value": "{neutral-0}",
393
+ "$type": "color"
394
+ },
395
+ "color-selection": {
396
+ "$value": "{brand-magenta}",
397
+ "$type": "color"
398
+ },
399
+ "control-background": {
400
+ "$value": "{neutral-100}",
401
+ "$type": "color"
402
+ },
403
+ "control-background-pressed": {
404
+ "$value": "{neutral-200}",
405
+ "$type": "color"
406
+ },
407
+ "control-foreground": {
408
+ "$value": "{neutral-900}",
409
+ "$type": "color"
410
+ },
411
+ "control-border": {
412
+ "$value": "{neutral-300}",
413
+ "$type": "color"
414
+ },
415
+ "color-state-success": {
416
+ "$value": "{success-base}",
417
+ "$type": "color"
418
+ },
419
+ "color-state-success-background": {
420
+ "$value": {
421
+ "colorSpace": "oklch",
422
+ "components": [0.62, 0.15, 150],
423
+ "alpha": 0.14
424
+ },
425
+ "$type": "color"
426
+ },
427
+ "color-state-warning": {
428
+ "$value": "{warning-base}",
429
+ "$type": "color"
430
+ },
431
+ "color-state-warning-background": {
432
+ "$value": {
433
+ "colorSpace": "oklch",
434
+ "components": [0.75, 0.15, 75],
435
+ "alpha": 0.16
436
+ },
437
+ "$type": "color"
438
+ },
439
+ "color-state-danger": {
440
+ "$value": "{danger-base}",
441
+ "$type": "color"
442
+ },
443
+ "color-state-danger-background": {
444
+ "$value": {
445
+ "colorSpace": "oklch",
446
+ "components": [0.58, 0.2, 25],
447
+ "alpha": 0.14
448
+ },
449
+ "$type": "color"
450
+ },
451
+ "color-state-info": {
452
+ "$value": "{info-base}",
453
+ "$type": "color"
454
+ },
455
+ "color-state-info-background": {
456
+ "$value": {
457
+ "colorSpace": "oklch",
458
+ "components": [0.65, 0.13, 230],
459
+ "alpha": 0.14
460
+ },
461
+ "$type": "color"
462
+ },
463
+ "color-accent-background": {
464
+ "$value": {
465
+ "colorSpace": "oklch",
466
+ "components": [0.65, 0.29, 340],
467
+ "alpha": 0.14
468
+ },
469
+ "$type": "color"
470
+ },
471
+ "material-glass-background": {
472
+ "$value": {
473
+ "colorSpace": "oklch",
474
+ "components": [1, 0, 264],
475
+ "alpha": 0.72
476
+ },
477
+ "$type": "color"
478
+ },
479
+ "material-glass-border": {
480
+ "$value": {
481
+ "colorSpace": "oklch",
482
+ "components": [0, 0, 264],
483
+ "alpha": 0.1
484
+ },
485
+ "$type": "color"
486
+ },
487
+ "material-glass-blur": {
488
+ "$value": {
489
+ "value": 24,
490
+ "unit": "px"
491
+ },
492
+ "$type": "dimension"
493
+ },
494
+ "material-glass-saturation": {
495
+ "$value": {
496
+ "value": 180,
497
+ "unit": "%"
498
+ },
499
+ "$type": "dimension"
500
+ },
501
+ "material-glass-shadow": {
502
+ "$value": "0 4px 28px oklch(0% 0 264 / 0.14)",
503
+ "$extensions": {
504
+ "dev.styleframe": {
505
+ "unknownType": true
506
+ }
507
+ }
508
+ },
509
+ "material-glass-highlight": {
510
+ "$value": {
511
+ "colorSpace": "oklch",
512
+ "components": [1, 0, 264],
513
+ "alpha": 0.5
514
+ },
515
+ "$type": "color"
516
+ },
517
+ "material-glass-fallback-background": {
518
+ "$value": "{neutral-0}",
519
+ "$type": "color"
520
+ }
521
+ }