@fremtind/jokul 5.0.0-next.1 → 5.0.0-next.2

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 (258) hide show
  1. package/README.md +29 -6
  2. package/bin/jokul.mjs +10 -0
  3. package/bin/run-jokul-cli.mjs +63 -0
  4. package/build/build-stats.html +1 -1
  5. package/build/cjs/components/card/Card.cjs +1 -1
  6. package/build/cjs/components/card/Card.cjs.map +1 -1
  7. package/build/cjs/components/card/types.cjs +1 -1
  8. package/build/cjs/components/card/types.cjs.map +1 -1
  9. package/build/cjs/components/card/types.d.cts +2 -2
  10. package/build/cjs/components/checkbox/Checkbox.cjs +1 -1
  11. package/build/cjs/components/checkbox/Checkbox.cjs.map +1 -1
  12. package/build/cjs/components/cookie-consent/CookieConsent.cjs +1 -1
  13. package/build/cjs/components/cookie-consent/CookieConsent.cjs.map +1 -1
  14. package/build/cjs/components/cookie-consent/CookieConsent.d.cts +1 -1
  15. package/build/cjs/components/cookie-consent/types.d.cts +4 -0
  16. package/build/cjs/components/datepicker/DatePicker.cjs +1 -1
  17. package/build/cjs/components/datepicker/DatePicker.cjs.map +1 -1
  18. package/build/cjs/components/expander/ExpandablePanel.cjs +1 -1
  19. package/build/cjs/components/expander/ExpandablePanel.cjs.map +1 -1
  20. package/build/cjs/components/link/Link.cjs +1 -1
  21. package/build/cjs/components/link/Link.cjs.map +1 -1
  22. package/build/cjs/components/link/Link.d.cts +2 -2
  23. package/build/cjs/components/link/types.d.cts +1 -4
  24. package/build/cjs/components/modal/Modal.cjs +1 -1
  25. package/build/cjs/components/modal/Modal.cjs.map +1 -1
  26. package/build/cjs/components/modal/Modal.d.cts +2 -9
  27. package/build/cjs/components/modal/index.d.cts +1 -1
  28. package/build/cjs/components/modal/types.d.cts +18 -0
  29. package/build/cjs/components/popover/Popover.cjs +1 -1
  30. package/build/cjs/components/popover/Popover.cjs.map +1 -1
  31. package/build/cjs/components/radio-button/BaseRadioButton.cjs +1 -1
  32. package/build/cjs/components/radio-button/BaseRadioButton.cjs.map +1 -1
  33. package/build/cjs/core/tokens.cjs +2 -0
  34. package/build/cjs/core/tokens.cjs.map +1 -0
  35. package/build/cjs/core/tokens.d.cts +593 -0
  36. package/build/cjs/tailwind/colors.cjs +2 -0
  37. package/build/cjs/tailwind/colors.cjs.map +1 -0
  38. package/build/cjs/tailwind/colors.d.cts +39 -0
  39. package/build/cjs/tokens.cjs +1 -1
  40. package/build/cjs/tokens.cjs.map +1 -1
  41. package/build/cjs/tokens.d.cts +98 -39
  42. package/build/es/components/card/Card.js +1 -1
  43. package/build/es/components/card/Card.js.map +1 -1
  44. package/build/es/components/card/types.d.ts +2 -2
  45. package/build/es/components/card/types.js +1 -1
  46. package/build/es/components/card/types.js.map +1 -1
  47. package/build/es/components/checkbox/Checkbox.js +1 -1
  48. package/build/es/components/checkbox/Checkbox.js.map +1 -1
  49. package/build/es/components/cookie-consent/CookieConsent.d.ts +1 -1
  50. package/build/es/components/cookie-consent/CookieConsent.js +1 -1
  51. package/build/es/components/cookie-consent/CookieConsent.js.map +1 -1
  52. package/build/es/components/cookie-consent/types.d.ts +4 -0
  53. package/build/es/components/datepicker/DatePicker.js +1 -1
  54. package/build/es/components/datepicker/DatePicker.js.map +1 -1
  55. package/build/es/components/expander/ExpandablePanel.js +1 -1
  56. package/build/es/components/expander/ExpandablePanel.js.map +1 -1
  57. package/build/es/components/link/Link.d.ts +2 -2
  58. package/build/es/components/link/Link.js +1 -1
  59. package/build/es/components/link/Link.js.map +1 -1
  60. package/build/es/components/link/types.d.ts +1 -4
  61. package/build/es/components/modal/Modal.d.ts +2 -9
  62. package/build/es/components/modal/Modal.js +1 -1
  63. package/build/es/components/modal/Modal.js.map +1 -1
  64. package/build/es/components/modal/index.d.ts +1 -1
  65. package/build/es/components/modal/types.d.ts +18 -0
  66. package/build/es/components/popover/Popover.js +1 -1
  67. package/build/es/components/popover/Popover.js.map +1 -1
  68. package/build/es/components/radio-button/BaseRadioButton.js +1 -1
  69. package/build/es/components/radio-button/BaseRadioButton.js.map +1 -1
  70. package/build/es/core/tokens.d.ts +593 -0
  71. package/build/es/core/tokens.js +2 -0
  72. package/build/es/core/tokens.js.map +1 -0
  73. package/build/es/tailwind/colors.d.ts +39 -0
  74. package/build/es/tailwind/colors.js +2 -0
  75. package/build/es/tailwind/colors.js.map +1 -0
  76. package/build/es/tokens.d.ts +98 -39
  77. package/build/es/tokens.js +1 -1
  78. package/build/es/tokens.js.map +1 -1
  79. package/codemods/__tests__/import-paths.test.mjs +84 -0
  80. package/codemods/import-paths.mjs +393 -0
  81. package/package.json +6 -1
  82. package/styles/base.css +483 -66
  83. package/styles/base.min.css +1 -1
  84. package/styles/components/autosuggest/autosuggest.css +2 -2
  85. package/styles/components/autosuggest/autosuggest.min.css +1 -1
  86. package/styles/components/autosuggest/autosuggest.scss +2 -2
  87. package/styles/components/beta/description-list/description-list.css +1 -1
  88. package/styles/components/beta/description-list/description-list.min.css +1 -1
  89. package/styles/components/beta/description-list/description-list.scss +1 -1
  90. package/styles/components/beta/nav-link/navlink.css +2 -2
  91. package/styles/components/beta/nav-link/navlink.min.css +1 -1
  92. package/styles/components/beta/nav-link/navlink.scss +2 -2
  93. package/styles/components/beta/select/select.css +9 -9
  94. package/styles/components/beta/select/select.min.css +1 -1
  95. package/styles/components/beta/select/select.scss +8 -7
  96. package/styles/components/breadcrumb/breadcrumb.css +1 -1
  97. package/styles/components/breadcrumb/breadcrumb.min.css +1 -1
  98. package/styles/components/button/button.css +6 -2
  99. package/styles/components/button/button.min.css +1 -1
  100. package/styles/components/button/button.scss +12 -12
  101. package/styles/components/card/card.css +6 -9
  102. package/styles/components/card/card.min.css +1 -1
  103. package/styles/components/card/card.scss +6 -10
  104. package/styles/components/checkbox/checkbox.css +43 -9
  105. package/styles/components/checkbox/checkbox.min.css +1 -1
  106. package/styles/components/checkbox/checkbox.scss +38 -21
  107. package/styles/components/checkbox-panel/checkbox-panel.css +65 -26
  108. package/styles/components/checkbox-panel/checkbox-panel.min.css +1 -1
  109. package/styles/components/checkbox-panel/checkbox-panel.scss +4 -0
  110. package/styles/components/chip/chip.css +2 -2
  111. package/styles/components/chip/chip.min.css +1 -1
  112. package/styles/components/chip/chip.scss +1 -1
  113. package/styles/components/combobox/combobox.css +18 -15
  114. package/styles/components/combobox/combobox.min.css +1 -1
  115. package/styles/components/combobox/combobox.scss +9 -6
  116. package/styles/components/countdown/countdown.css +4 -4
  117. package/styles/components/countdown/countdown.min.css +1 -1
  118. package/styles/components/datepicker/_calendar-date-button.scss +7 -7
  119. package/styles/components/datepicker/_calendar-navigation-dropdown.scss +1 -1
  120. package/styles/components/datepicker/_calendar.scss +6 -7
  121. package/styles/components/datepicker/datepicker.css +19 -11
  122. package/styles/components/datepicker/datepicker.min.css +1 -1
  123. package/styles/components/description-list/description-list.css +1 -1
  124. package/styles/components/description-list/description-list.min.css +1 -1
  125. package/styles/components/description-list/description-list.scss +1 -1
  126. package/styles/components/expander/expandable.css +17 -17
  127. package/styles/components/expander/expandable.min.css +1 -1
  128. package/styles/components/expander/expandable.scss +15 -19
  129. package/styles/components/feedback/feedback.css +6 -8
  130. package/styles/components/feedback/feedback.min.css +1 -1
  131. package/styles/components/feedback/feedback.scss +4 -9
  132. package/styles/components/file/file.css +5 -5
  133. package/styles/components/file/file.min.css +1 -1
  134. package/styles/components/file/file.scss +5 -5
  135. package/styles/components/file-input/file-input.css +26 -22
  136. package/styles/components/file-input/file-input.min.css +1 -1
  137. package/styles/components/file-input/file-input.scss +3 -3
  138. package/styles/components/help/help.css +2 -2
  139. package/styles/components/help/help.min.css +1 -1
  140. package/styles/components/help/help.scss +2 -2
  141. package/styles/components/icon/icon.css +4 -4
  142. package/styles/components/icon/icon.min.css +1 -1
  143. package/styles/components/icon/icon.scss +4 -4
  144. package/styles/components/icon-button/icon-button.css +1 -1
  145. package/styles/components/icon-button/icon-button.min.css +1 -1
  146. package/styles/components/input-group/input-group.css +2 -2
  147. package/styles/components/input-group/input-group.min.css +1 -1
  148. package/styles/components/input-panel/input-panel.css +19 -17
  149. package/styles/components/input-panel/input-panel.min.css +1 -1
  150. package/styles/components/input-panel/input-panel.scss +20 -18
  151. package/styles/components/link/link.css +1 -1
  152. package/styles/components/link/link.min.css +1 -1
  153. package/styles/components/link-list/link-list.css +6 -2
  154. package/styles/components/link-list/link-list.min.css +1 -1
  155. package/styles/components/link-list/link-list.scss +6 -2
  156. package/styles/components/loader/loader.css +6 -6
  157. package/styles/components/loader/loader.min.css +1 -1
  158. package/styles/components/loader/skeleton-loader.css +4 -4
  159. package/styles/components/loader/skeleton-loader.min.css +1 -1
  160. package/styles/components/loader/skeleton-loader.scss +1 -1
  161. package/styles/components/menu/_menu-divider.scss +1 -1
  162. package/styles/components/menu/menu.css +3 -3
  163. package/styles/components/menu/menu.min.css +1 -1
  164. package/styles/components/menu/menu.scss +2 -2
  165. package/styles/components/message/message.css +19 -9
  166. package/styles/components/message/message.min.css +1 -1
  167. package/styles/components/message/message.scss +16 -6
  168. package/styles/components/modal/_layout.scss +22 -0
  169. package/styles/components/modal/_modal-base.scss +32 -0
  170. package/styles/components/modal/_motion.scss +45 -0
  171. package/styles/components/modal/_overlay.scss +20 -0
  172. package/styles/components/modal/_parts.scss +33 -0
  173. package/styles/components/modal/_placement.scss +59 -0
  174. package/styles/components/modal/modal.css +118 -34
  175. package/styles/components/modal/modal.min.css +1 -1
  176. package/styles/components/modal/modal.scss +6 -95
  177. package/styles/components/nav-link/nav-link.css +1 -1
  178. package/styles/components/nav-link/nav-link.min.css +1 -1
  179. package/styles/components/pagination/pagination.css +1 -1
  180. package/styles/components/pagination/pagination.min.css +1 -1
  181. package/styles/components/popover/popover.css +12 -1
  182. package/styles/components/popover/popover.min.css +1 -1
  183. package/styles/components/popover/popover.scss +15 -1
  184. package/styles/components/progress-bar/progress-bar.css +27 -3
  185. package/styles/components/progress-bar/progress-bar.min.css +1 -1
  186. package/styles/components/progress-bar/progress-bar.scss +5 -0
  187. package/styles/components/radio-button/radio-button.css +41 -6
  188. package/styles/components/radio-button/radio-button.min.css +1 -1
  189. package/styles/components/radio-button/radio-button.scss +35 -16
  190. package/styles/components/radio-panel/radio-panel.css +22 -17
  191. package/styles/components/radio-panel/radio-panel.min.css +1 -1
  192. package/styles/components/radio-panel/radio-panel.scss +4 -0
  193. package/styles/components/search/search-with-submit-button.css +1 -1
  194. package/styles/components/search/search-with-submit-button.min.css +1 -1
  195. package/styles/components/search/search-with-submit-button.scss +1 -1
  196. package/styles/components/search/search.css +2 -2
  197. package/styles/components/search/search.min.css +1 -1
  198. package/styles/components/search/search.scss +1 -1
  199. package/styles/components/segmented-control/segmented-control.css +54 -19
  200. package/styles/components/segmented-control/segmented-control.min.css +1 -1
  201. package/styles/components/segmented-control/segmented-control.scss +4 -4
  202. package/styles/components/select/select.css +15 -15
  203. package/styles/components/select/select.min.css +1 -1
  204. package/styles/components/select/select.scss +12 -12
  205. package/styles/components/summary-table/summary-table.css +2 -2
  206. package/styles/components/summary-table/summary-table.min.css +1 -1
  207. package/styles/components/summary-table/summary-table.scss +2 -2
  208. package/styles/components/system-message/system-message.css +20 -10
  209. package/styles/components/system-message/system-message.min.css +1 -1
  210. package/styles/components/system-message/system-message.scss +17 -7
  211. package/styles/components/table/_table-head.scss +1 -1
  212. package/styles/components/table/_table-row.scss +2 -2
  213. package/styles/components/table/table.css +3 -3
  214. package/styles/components/table/table.min.css +1 -1
  215. package/styles/components/table-of-contents/table-of-contents.css +1 -1
  216. package/styles/components/table-of-contents/table-of-contents.min.css +1 -1
  217. package/styles/components/table-of-contents/table-of-contents.scss +1 -1
  218. package/styles/components/tabs/tabs.css +3 -3
  219. package/styles/components/tabs/tabs.min.css +1 -1
  220. package/styles/components/tabs/tabs.scss +2 -2
  221. package/styles/components/tag/tag.css +16 -6
  222. package/styles/components/tag/tag.min.css +1 -1
  223. package/styles/components/tag/tag.scss +16 -6
  224. package/styles/components/text-area/text-area.css +8 -8
  225. package/styles/components/text-area/text-area.min.css +1 -1
  226. package/styles/components/text-input/text-input.css +8 -8
  227. package/styles/components/text-input/text-input.min.css +1 -1
  228. package/styles/components/toast/toast.css +19 -12
  229. package/styles/components/toast/toast.min.css +1 -1
  230. package/styles/components/toast/toast.scss +15 -12
  231. package/styles/components/toggle-switch/_toggle-slider.scss +4 -4
  232. package/styles/components/toggle-switch/toggle-switch.css +14 -19
  233. package/styles/components/toggle-switch/toggle-switch.min.css +2 -2
  234. package/styles/components/toggle-switch/toggle-switch.scss +9 -16
  235. package/styles/components/tooltip/tooltip.css +3 -3
  236. package/styles/components/tooltip/tooltip.min.css +1 -1
  237. package/styles/components/tooltip/tooltip.scss +3 -3
  238. package/styles/components.css +536 -294
  239. package/styles/components.min.css +2 -2
  240. package/styles/core/jkl/_tokens.scss +59 -0
  241. package/styles/core/jkl/legacy/_dynamic-colors.scss +40 -0
  242. package/styles/core/jkl/legacy/_tokens.scss +742 -0
  243. package/styles/core/theme/_color-tokens.scss +73 -0
  244. package/styles/core/theme/_legacy-color-tokens.scss +81 -0
  245. package/styles/core/theme/_legacy-tokens.scss +279 -0
  246. package/styles/core/theme/_spacing-tokens.scss +33 -0
  247. package/styles/core/theme/_tokens.scss +33 -0
  248. package/styles/hooks/stories/styles.scss +2 -2
  249. package/styles/jkl/_ornaments.scss +1 -1
  250. package/styles/jkl/_tokens.scss +151 -71
  251. package/styles/shared/input/shared-input-styles.scss +6 -6
  252. package/styles/shared/track/track.scss +2 -2
  253. package/styles/tailwind.css +108 -66
  254. package/styles/theme/_color-scheme.scss +135 -66
  255. package/styles/theme/_index.scss +3 -0
  256. package/styles/theme/brands/dnb/_color-scheme.scss +119 -0
  257. package/styles/theme/brands/eika/_color-scheme.scss +119 -0
  258. package/styles/theme/brands/sparebank1/_color-scheme.scss +119 -0
@@ -0,0 +1,593 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ declare const _default: {
5
+ border: {
6
+ width: {
7
+ "1": string;
8
+ "2": string;
9
+ "3": string;
10
+ };
11
+ radius: {
12
+ none: string;
13
+ xs: string;
14
+ s: string;
15
+ m: string;
16
+ l: string;
17
+ full: string;
18
+ };
19
+ };
20
+ breakpoint: {
21
+ small: string;
22
+ medium: string;
23
+ large: string;
24
+ xl: string;
25
+ };
26
+ color: {
27
+ brand: {
28
+ snohvit: string;
29
+ varde: string;
30
+ granitt: string;
31
+ hvit: string;
32
+ svart: string;
33
+ skifer: string;
34
+ fjellgra: string;
35
+ stein: string;
36
+ svaberg: string;
37
+ dis: string;
38
+ sand: string;
39
+ };
40
+ functional: {
41
+ info: string;
42
+ infoDark: string;
43
+ success: string;
44
+ successDark: string;
45
+ warning: string;
46
+ warningDark: string;
47
+ error: string;
48
+ errorDark: string;
49
+ };
50
+ background: {
51
+ page: {
52
+ light: string;
53
+ dark: string;
54
+ };
55
+ pageVariant: {
56
+ light: string;
57
+ dark: string;
58
+ };
59
+ container: {
60
+ light: string;
61
+ dark: string;
62
+ };
63
+ containerLow: {
64
+ light: string;
65
+ dark: string;
66
+ };
67
+ containerHigh: {
68
+ light: string;
69
+ dark: string;
70
+ };
71
+ containerInverted: {
72
+ light: string;
73
+ dark: string;
74
+ };
75
+ containerSubdued: {
76
+ light: string;
77
+ dark: string;
78
+ };
79
+ input: {
80
+ base: {
81
+ light: string;
82
+ dark: string;
83
+ };
84
+ focus: {
85
+ light: string;
86
+ dark: string;
87
+ };
88
+ };
89
+ action: {
90
+ light: string;
91
+ dark: string;
92
+ };
93
+ interactive: {
94
+ light: string;
95
+ dark: string;
96
+ };
97
+ interactiveHover: {
98
+ light: string;
99
+ dark: string;
100
+ };
101
+ interactiveSelected: {
102
+ light: string;
103
+ dark: string;
104
+ };
105
+ alert: {
106
+ neutral: {
107
+ light: string;
108
+ dark: string;
109
+ };
110
+ info: {
111
+ light: string;
112
+ dark: string;
113
+ };
114
+ success: {
115
+ light: string;
116
+ dark: string;
117
+ };
118
+ warning: {
119
+ light: string;
120
+ dark: string;
121
+ };
122
+ error: {
123
+ light: string;
124
+ dark: string;
125
+ };
126
+ };
127
+ };
128
+ text: {
129
+ default: {
130
+ light: string;
131
+ dark: string;
132
+ };
133
+ subdued: {
134
+ light: string;
135
+ dark: string;
136
+ };
137
+ inverted: {
138
+ light: string;
139
+ dark: string;
140
+ };
141
+ onAction: {
142
+ light: string;
143
+ dark: string;
144
+ };
145
+ interactive: {
146
+ light: string;
147
+ dark: string;
148
+ };
149
+ interactiveHover: {
150
+ light: string;
151
+ dark: string;
152
+ };
153
+ onAlert: {
154
+ light: string;
155
+ dark: string;
156
+ };
157
+ onAlertSubdued: {
158
+ light: string;
159
+ dark: string;
160
+ };
161
+ };
162
+ border: {
163
+ action: {
164
+ light: string;
165
+ dark: string;
166
+ };
167
+ input: {
168
+ light: string;
169
+ dark: string;
170
+ };
171
+ inputFocus: {
172
+ light: string;
173
+ dark: string;
174
+ };
175
+ separator: {
176
+ light: string;
177
+ dark: string;
178
+ };
179
+ separatorStrong: {
180
+ light: string;
181
+ dark: string;
182
+ };
183
+ separatorHover: {
184
+ light: string;
185
+ dark: string;
186
+ };
187
+ subdued: {
188
+ light: string;
189
+ dark: string;
190
+ };
191
+ };
192
+ };
193
+ motion: {
194
+ timing: {
195
+ energetic: string;
196
+ snappy: string;
197
+ productive: string;
198
+ expressive: string;
199
+ lazy: string;
200
+ };
201
+ easing: {
202
+ standard: string;
203
+ entrance: string;
204
+ exit: string;
205
+ easeInBounceOut: string;
206
+ focus: string;
207
+ };
208
+ };
209
+ spacing: {
210
+ "0": string;
211
+ "2": string;
212
+ "4": string;
213
+ "8": string;
214
+ "12": string;
215
+ "16": string;
216
+ "24": string;
217
+ "32": string;
218
+ "40": string;
219
+ "64": string;
220
+ "104": string;
221
+ "168": string;
222
+ };
223
+ semanticSpacing: {
224
+ none: string;
225
+ "2xs": string;
226
+ xs: string;
227
+ s: string;
228
+ m: string;
229
+ l: string;
230
+ xl: string;
231
+ "2xl": string;
232
+ };
233
+ icon: {
234
+ weight: {
235
+ normal: string;
236
+ bold: string;
237
+ };
238
+ };
239
+ typography: {
240
+ weight: {
241
+ normal: string;
242
+ bold: string;
243
+ };
244
+ font: {
245
+ weight: {
246
+ normal: string;
247
+ bold: string;
248
+ };
249
+ size: {
250
+ "1": string;
251
+ "2": string;
252
+ "3": string;
253
+ "4": string;
254
+ "5": string;
255
+ "6": string;
256
+ "7": string;
257
+ "8": string;
258
+ "9": string;
259
+ "10": string;
260
+ "16": string;
261
+ "18": string;
262
+ "20": string;
263
+ "21": string;
264
+ "23": string;
265
+ "25": string;
266
+ "26": string;
267
+ "28": string;
268
+ "30": string;
269
+ "36": string;
270
+ "44": string;
271
+ "56": string;
272
+ };
273
+ };
274
+ line: {
275
+ height: {
276
+ "24": string;
277
+ "28": string;
278
+ "32": string;
279
+ "36": string;
280
+ "40": string;
281
+ "44": string;
282
+ "52": string;
283
+ "64": string;
284
+ flush: string;
285
+ tight: string;
286
+ relaxed: string;
287
+ };
288
+ };
289
+ style: {
290
+ title: {
291
+ small: {
292
+ fontSize: string;
293
+ lineHeight: string;
294
+ fontWeight: string;
295
+ };
296
+ base: {
297
+ fontSize: string;
298
+ lineHeight: string;
299
+ fontWeight: string;
300
+ };
301
+ };
302
+ titleSmall: {
303
+ small: {
304
+ fontSize: string;
305
+ lineHeight: string;
306
+ fontWeight: string;
307
+ };
308
+ base: {
309
+ fontSize: string;
310
+ lineHeight: string;
311
+ fontWeight: string;
312
+ };
313
+ };
314
+ heading_1: {
315
+ small: {
316
+ fontSize: string;
317
+ lineHeight: string;
318
+ fontWeight: string;
319
+ };
320
+ base: {
321
+ fontSize: string;
322
+ lineHeight: string;
323
+ fontWeight: string;
324
+ };
325
+ };
326
+ heading_2: {
327
+ small: {
328
+ fontSize: string;
329
+ lineHeight: string;
330
+ fontWeight: string;
331
+ };
332
+ base: {
333
+ fontSize: string;
334
+ lineHeight: string;
335
+ fontWeight: string;
336
+ };
337
+ };
338
+ heading_3: {
339
+ small: {
340
+ fontSize: string;
341
+ lineHeight: string;
342
+ fontWeight: string;
343
+ };
344
+ base: {
345
+ fontSize: string;
346
+ lineHeight: string;
347
+ fontWeight: string;
348
+ };
349
+ };
350
+ heading_4: {
351
+ small: {
352
+ fontSize: string;
353
+ lineHeight: string;
354
+ fontWeight: string;
355
+ };
356
+ base: {
357
+ fontSize: string;
358
+ lineHeight: string;
359
+ fontWeight: string;
360
+ };
361
+ };
362
+ heading_5: {
363
+ small: {
364
+ fontSize: string;
365
+ lineHeight: string;
366
+ fontWeight: string;
367
+ };
368
+ base: {
369
+ fontSize: string;
370
+ lineHeight: string;
371
+ fontWeight: string;
372
+ };
373
+ };
374
+ paragraphLarge: {
375
+ small: {
376
+ fontSize: string;
377
+ lineHeight: string;
378
+ fontWeight: string;
379
+ };
380
+ base: {
381
+ fontSize: string;
382
+ lineHeight: string;
383
+ fontWeight: string;
384
+ };
385
+ };
386
+ paragraphMedium: {
387
+ small: {
388
+ fontSize: string;
389
+ lineHeight: string;
390
+ fontWeight: string;
391
+ };
392
+ base: {
393
+ fontSize: string;
394
+ lineHeight: string;
395
+ fontWeight: string;
396
+ };
397
+ };
398
+ paragraphSmall: {
399
+ small: {
400
+ fontSize: string;
401
+ lineHeight: string;
402
+ fontWeight: string;
403
+ };
404
+ base: {
405
+ fontSize: string;
406
+ lineHeight: string;
407
+ fontWeight: string;
408
+ };
409
+ };
410
+ textLarge: {
411
+ small: {
412
+ fontSize: string;
413
+ lineHeight: string;
414
+ fontWeight: string;
415
+ };
416
+ base: {
417
+ fontSize: string;
418
+ lineHeight: string;
419
+ fontWeight: string;
420
+ };
421
+ };
422
+ textMedium: {
423
+ small: {
424
+ fontSize: string;
425
+ lineHeight: string;
426
+ fontWeight: string;
427
+ };
428
+ base: {
429
+ fontSize: string;
430
+ lineHeight: string;
431
+ fontWeight: string;
432
+ };
433
+ };
434
+ textSmall: {
435
+ small: {
436
+ fontSize: string;
437
+ lineHeight: string;
438
+ fontWeight: string;
439
+ };
440
+ base: {
441
+ fontSize: string;
442
+ lineHeight: string;
443
+ fontWeight: string;
444
+ };
445
+ };
446
+ textMicro: {
447
+ small: {
448
+ fontSize: string;
449
+ lineHeight: string;
450
+ fontWeight: string;
451
+ };
452
+ base: {
453
+ fontSize: string;
454
+ lineHeight: string;
455
+ fontWeight: string;
456
+ };
457
+ };
458
+ body: {
459
+ small: {
460
+ fontSize: string;
461
+ lineHeight: string;
462
+ fontWeight: string;
463
+ };
464
+ base: {
465
+ fontSize: string;
466
+ lineHeight: string;
467
+ fontWeight: string;
468
+ };
469
+ };
470
+ small: {
471
+ small: {
472
+ fontSize: string;
473
+ lineHeight: string;
474
+ fontWeight: string;
475
+ };
476
+ base: {
477
+ fontSize: string;
478
+ lineHeight: string;
479
+ fontWeight: string;
480
+ };
481
+ };
482
+ };
483
+ title: {
484
+ small: {
485
+ fontSize: string;
486
+ lineHeight: string;
487
+ fontWeight: string;
488
+ };
489
+ base: {
490
+ fontSize: string;
491
+ lineHeight: string;
492
+ fontWeight: string;
493
+ };
494
+ };
495
+ titleSmall: {
496
+ small: {
497
+ fontSize: string;
498
+ lineHeight: string;
499
+ fontWeight: string;
500
+ };
501
+ base: {
502
+ fontSize: string;
503
+ lineHeight: string;
504
+ fontWeight: string;
505
+ };
506
+ };
507
+ heading_1: {
508
+ small: {
509
+ fontSize: string;
510
+ lineHeight: string;
511
+ fontWeight: string;
512
+ };
513
+ base: {
514
+ fontSize: string;
515
+ lineHeight: string;
516
+ fontWeight: string;
517
+ };
518
+ };
519
+ heading_2: {
520
+ small: {
521
+ fontSize: string;
522
+ lineHeight: string;
523
+ fontWeight: string;
524
+ };
525
+ base: {
526
+ fontSize: string;
527
+ lineHeight: string;
528
+ fontWeight: string;
529
+ };
530
+ };
531
+ heading_3: {
532
+ small: {
533
+ fontSize: string;
534
+ lineHeight: string;
535
+ fontWeight: string;
536
+ };
537
+ base: {
538
+ fontSize: string;
539
+ lineHeight: string;
540
+ fontWeight: string;
541
+ };
542
+ };
543
+ heading_4: {
544
+ small: {
545
+ fontSize: string;
546
+ lineHeight: string;
547
+ fontWeight: string;
548
+ };
549
+ base: {
550
+ fontSize: string;
551
+ lineHeight: string;
552
+ fontWeight: string;
553
+ };
554
+ };
555
+ heading_5: {
556
+ small: {
557
+ fontSize: string;
558
+ lineHeight: string;
559
+ fontWeight: string;
560
+ };
561
+ base: {
562
+ fontSize: string;
563
+ lineHeight: string;
564
+ fontWeight: string;
565
+ };
566
+ };
567
+ body: {
568
+ small: {
569
+ fontSize: string;
570
+ lineHeight: string;
571
+ fontWeight: string;
572
+ };
573
+ base: {
574
+ fontSize: string;
575
+ lineHeight: string;
576
+ fontWeight: string;
577
+ };
578
+ };
579
+ small: {
580
+ small: {
581
+ fontSize: string;
582
+ lineHeight: string;
583
+ fontWeight: string;
584
+ };
585
+ base: {
586
+ fontSize: string;
587
+ lineHeight: string;
588
+ fontWeight: string;
589
+ };
590
+ };
591
+ };
592
+ };
593
+ export default _default;
@@ -0,0 +1,2 @@
1
+ const e={border:{width:{1:"0.0625rem",2:"0.125rem",3:"0.1875rem"},radius:{none:"0",xs:"0.25rem",s:"0.5rem",m:"0.75rem",l:"1rem",full:"9999px"}},breakpoint:{small:"0",medium:"680px",large:"1200px",xl:"1600px"},color:{brand:{snohvit:"#F9F9F9",varde:"#E0DBD4",granitt:"#1B1917",hvit:"#FFFFFF",svart:"#000000",skifer:"#313030",fjellgra:"#444141",stein:"#636060",svaberg:"#C8C5C3",dis:"#ECE9E5",sand:"#F4F2EF"},functional:{info:"#D3D3F6",infoDark:"#A9A9CA",success:"#ACD3B5",successDark:"#94B79B",warning:"#EFDD9E",warningDark:"#DECC8D",error:"#F6B3B3",errorDark:"#DE9E9E"},background:{page:{light:"#F4F2EF",dark:"#1B1917"},pageVariant:{light:"#F9F9F9",dark:"#1B1917"},container:{light:"#F9F9F9",dark:"#313030"},containerLow:{light:"#ECE9E5",dark:"#000000"},containerHigh:{light:"#FFFFFF",dark:"#313030"},containerInverted:{light:"#1B1917",dark:"#F9F9F9"},containerSubdued:{light:"#C8C5C3",dark:"#636060"},input:{base:{light:"transparent",dark:"transparent"},focus:{light:"#FFFFFF",dark:"#313030"}},action:{light:"#1B1917",dark:"#F9F9F9"},interactive:{light:"transparent",dark:"transparent"},interactiveHover:{light:"#ECE9E5",dark:"#444141"},interactiveSelected:{light:"#E0DBD4",dark:"#636060"},alert:{neutral:{light:"#E0DBD4",dark:"#E0DBD4"},info:{light:"#D3D3F6",dark:"#A9A9CA"},success:{light:"#ACD3B5",dark:"#94B79B"},warning:{light:"#EFDD9E",dark:"#DECC8D"},error:{light:"#F6B3B3",dark:"#DE9E9E"}}},text:{default:{light:"#1B1917",dark:"#F9F9F9"},subdued:{light:"#636060",dark:"#C8C5C3"},inverted:{light:"#F9F9F9",dark:"#1B1917"},onAction:{light:"#F9F9F9",dark:"#1B1917"},interactive:{light:"#1B1917",dark:"#F9F9F9"},interactiveHover:{light:"#636060",dark:"#C8C5C3"},onAlert:{light:"#1B1917",dark:"#1B1917"},onAlertSubdued:{light:"#444141",dark:"#444141"}},border:{action:{light:"#1B1917",dark:"#F9F9F9"},input:{light:"#636060",dark:"#C8C5C3"},inputFocus:{light:"#1B1917",dark:"#F9F9F9"},separator:{light:"#C8C5C3",dark:"#636060"},separatorStrong:{light:"#636060",dark:"#C8C5C3"},separatorHover:{light:"#1B1917",dark:"#F9F9F9"},subdued:{light:"#C8C5C3",dark:"#636060"}}},motion:{timing:{energetic:"75ms",snappy:"100ms",productive:"150ms",expressive:"250ms",lazy:"400ms"},easing:{standard:"ease",entrance:"ease-out",exit:"ease-in",easeInBounceOut:"cubic-bezier(0, 0, 0.375, 1.17)",focus:"cubic-bezier(0.6, 0.2, 0.35, 1)"}},spacing:{0:"0rem",2:"0.125rem",4:"0.25rem",8:"0.5rem",12:"0.75rem",16:"1rem",24:"1.5rem",32:"2rem",40:"2.5rem",64:"4rem",104:"6.5rem",168:"10.5rem"},semanticSpacing:{none:"0","2xs":"0.25rem",xs:"0.5rem",s:"1rem",m:"1.5rem",l:"2.5rem",xl:"4rem","2xl":"6.5rem"},icon:{weight:{normal:"300",bold:"400"}},typography:{weight:{normal:"400",bold:"700"},font:{weight:{normal:"400",bold:"700"},size:{1:"var(--jkl-font-size-1)",2:"var(--jkl-font-size-2)",3:"var(--jkl-font-size-3)",4:"var(--jkl-font-size-4)",5:"var(--jkl-font-size-5)",6:"var(--jkl-font-size-6)",7:"var(--jkl-font-size-7)",8:"var(--jkl-font-size-8)",9:"var(--jkl-font-size-9)",10:"var(--jkl-font-size-10)",16:"1rem",18:"1.125rem",20:"1.25rem",21:"1.3125rem",23:"1.4375rem",25:"1.5625rem",26:"1.625rem",28:"1.75rem",30:"1.875rem",36:"2.25rem",44:"2.75rem",56:"3.5rem"}},line:{height:{24:"1.5rem",28:"1.75rem",32:"2rem",36:"2.25rem",40:"2.5rem",44:"2.75rem",52:"3.25rem",64:"4rem",flush:"var(--jkl-line-height-flush)",tight:"var(--jkl-line-height-tight)",relaxed:"var(--jkl-line-height-relaxed)"}},style:{title:{small:{fontSize:"var(--jkl-font-size-8)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-8)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},titleSmall:{small:{fontSize:"var(--jkl-font-size-7)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-7)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},heading_1:{small:{fontSize:"var(--jkl-font-size-8)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-8)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},heading_2:{small:{fontSize:"var(--jkl-font-size-7)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-7)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},heading_3:{small:{fontSize:"var(--jkl-font-size-6)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"700"},base:{fontSize:"var(--jkl-font-size-6)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"700"}},heading_4:{small:{fontSize:"var(--jkl-font-size-5)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"700"},base:{fontSize:"var(--jkl-font-size-5)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"700"}},heading_5:{small:{fontSize:"var(--jkl-font-size-4)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"700"},base:{fontSize:"var(--jkl-font-size-4)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"700"}},paragraphLarge:{small:{fontSize:"var(--jkl-font-size-5)",lineHeight:"var(--jkl-line-height-relaxed)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-5)",lineHeight:"var(--jkl-line-height-relaxed)",fontWeight:"400"}},paragraphMedium:{small:{fontSize:"var(--jkl-font-size-3)",lineHeight:"var(--jkl-line-height-relaxed)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-3)",lineHeight:"var(--jkl-line-height-relaxed)",fontWeight:"400"}},paragraphSmall:{small:{fontSize:"var(--jkl-font-size-2)",lineHeight:"var(--jkl-line-height-relaxed)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-2)",lineHeight:"var(--jkl-line-height-relaxed)",fontWeight:"400"}},textLarge:{small:{fontSize:"var(--jkl-font-size-5)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-5)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},textMedium:{small:{fontSize:"var(--jkl-font-size-3)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-3)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},textSmall:{small:{fontSize:"var(--jkl-font-size-2)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-2)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},textMicro:{small:{fontSize:"var(--jkl-font-size-1)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"},base:{fontSize:"var(--jkl-font-size-1)",lineHeight:"var(--jkl-line-height-tight)",fontWeight:"400"}},body:{small:{fontSize:"1.125rem",lineHeight:"1.75rem",fontWeight:"400"},base:{fontSize:"1.25rem",lineHeight:"2rem",fontWeight:"400"}},small:{small:{fontSize:"1rem",lineHeight:"1.5rem",fontWeight:"400"},base:{fontSize:"1rem",lineHeight:"1.5rem",fontWeight:"400"}}},title:{small:{fontSize:"2.25rem",lineHeight:"2.75rem",fontWeight:"400"},base:{fontSize:"3.5rem",lineHeight:"4rem",fontWeight:"400"}},titleSmall:{small:{fontSize:"1.875rem",lineHeight:"2.25rem",fontWeight:"400"},base:{fontSize:"2.75rem",lineHeight:"3.25rem",fontWeight:"400"}},heading_1:{small:{fontSize:"1.625rem",lineHeight:"2rem",fontWeight:"400"},base:{fontSize:"2.25rem",lineHeight:"2.75rem",fontWeight:"400"}},heading_2:{small:{fontSize:"1.4375rem",lineHeight:"2rem",fontWeight:"400"},base:{fontSize:"1.75rem",lineHeight:"2.5rem",fontWeight:"400"}},heading_3:{small:{fontSize:"1.3125rem",lineHeight:"1.75rem",fontWeight:"700"},base:{fontSize:"1.5625rem",lineHeight:"2rem",fontWeight:"700"}},heading_4:{small:{fontSize:"1.125rem",lineHeight:"1.5rem",fontWeight:"700"},base:{fontSize:"1.3125rem",lineHeight:"1.75rem",fontWeight:"700"}},heading_5:{small:{fontSize:"1rem",lineHeight:"1.5rem",fontWeight:"700"},base:{fontSize:"1rem",lineHeight:"1.5rem",fontWeight:"700"}},body:{small:{fontSize:"1.125rem",lineHeight:"1.75rem",fontWeight:"400"},base:{fontSize:"1.25rem",lineHeight:"2rem",fontWeight:"400"}},small:{small:{fontSize:"1rem",lineHeight:"1.5rem",fontWeight:"400"},base:{fontSize:"1rem",lineHeight:"1.5rem",fontWeight:"400"}}}};export{e as default};
2
+ //# sourceMappingURL=tokens.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens.js","sources":["../../../src/core/tokens.ts"],"sourcesContent":["/**\n * Do not edit directly, this file was auto-generated.\n */\n\nexport default {\"border\":{\"width\":{\"1\":\"0.0625rem\",\"2\":\"0.125rem\",\"3\":\"0.1875rem\"},\"radius\":{\"none\":\"0\",\"xs\":\"0.25rem\",\"s\":\"0.5rem\",\"m\":\"0.75rem\",\"l\":\"1rem\",\"full\":\"9999px\"}},\"breakpoint\":{\"small\":\"0\",\"medium\":\"680px\",\"large\":\"1200px\",\"xl\":\"1600px\"},\"color\":{\"brand\":{\"snohvit\":\"#F9F9F9\",\"varde\":\"#E0DBD4\",\"granitt\":\"#1B1917\",\"hvit\":\"#FFFFFF\",\"svart\":\"#000000\",\"skifer\":\"#313030\",\"fjellgra\":\"#444141\",\"stein\":\"#636060\",\"svaberg\":\"#C8C5C3\",\"dis\":\"#ECE9E5\",\"sand\":\"#F4F2EF\"},\"functional\":{\"info\":\"#D3D3F6\",\"infoDark\":\"#A9A9CA\",\"success\":\"#ACD3B5\",\"successDark\":\"#94B79B\",\"warning\":\"#EFDD9E\",\"warningDark\":\"#DECC8D\",\"error\":\"#F6B3B3\",\"errorDark\":\"#DE9E9E\"},\"background\":{\"page\":{\"light\":\"#F4F2EF\",\"dark\":\"#1B1917\"},\"pageVariant\":{\"light\":\"#F9F9F9\",\"dark\":\"#1B1917\"},\"container\":{\"light\":\"#F9F9F9\",\"dark\":\"#313030\"},\"containerLow\":{\"light\":\"#ECE9E5\",\"dark\":\"#000000\"},\"containerHigh\":{\"light\":\"#FFFFFF\",\"dark\":\"#313030\"},\"containerInverted\":{\"light\":\"#1B1917\",\"dark\":\"#F9F9F9\"},\"containerSubdued\":{\"light\":\"#C8C5C3\",\"dark\":\"#636060\"},\"input\":{\"base\":{\"light\":\"transparent\",\"dark\":\"transparent\"},\"focus\":{\"light\":\"#FFFFFF\",\"dark\":\"#313030\"}},\"action\":{\"light\":\"#1B1917\",\"dark\":\"#F9F9F9\"},\"interactive\":{\"light\":\"transparent\",\"dark\":\"transparent\"},\"interactiveHover\":{\"light\":\"#ECE9E5\",\"dark\":\"#444141\"},\"interactiveSelected\":{\"light\":\"#E0DBD4\",\"dark\":\"#636060\"},\"alert\":{\"neutral\":{\"light\":\"#E0DBD4\",\"dark\":\"#E0DBD4\"},\"info\":{\"light\":\"#D3D3F6\",\"dark\":\"#A9A9CA\"},\"success\":{\"light\":\"#ACD3B5\",\"dark\":\"#94B79B\"},\"warning\":{\"light\":\"#EFDD9E\",\"dark\":\"#DECC8D\"},\"error\":{\"light\":\"#F6B3B3\",\"dark\":\"#DE9E9E\"}}},\"text\":{\"default\":{\"light\":\"#1B1917\",\"dark\":\"#F9F9F9\"},\"subdued\":{\"light\":\"#636060\",\"dark\":\"#C8C5C3\"},\"inverted\":{\"light\":\"#F9F9F9\",\"dark\":\"#1B1917\"},\"onAction\":{\"light\":\"#F9F9F9\",\"dark\":\"#1B1917\"},\"interactive\":{\"light\":\"#1B1917\",\"dark\":\"#F9F9F9\"},\"interactiveHover\":{\"light\":\"#636060\",\"dark\":\"#C8C5C3\"},\"onAlert\":{\"light\":\"#1B1917\",\"dark\":\"#1B1917\"},\"onAlertSubdued\":{\"light\":\"#444141\",\"dark\":\"#444141\"}},\"border\":{\"action\":{\"light\":\"#1B1917\",\"dark\":\"#F9F9F9\"},\"input\":{\"light\":\"#636060\",\"dark\":\"#C8C5C3\"},\"inputFocus\":{\"light\":\"#1B1917\",\"dark\":\"#F9F9F9\"},\"separator\":{\"light\":\"#C8C5C3\",\"dark\":\"#636060\"},\"separatorStrong\":{\"light\":\"#636060\",\"dark\":\"#C8C5C3\"},\"separatorHover\":{\"light\":\"#1B1917\",\"dark\":\"#F9F9F9\"},\"subdued\":{\"light\":\"#C8C5C3\",\"dark\":\"#636060\"}}},\"motion\":{\"timing\":{\"energetic\":\"75ms\",\"snappy\":\"100ms\",\"productive\":\"150ms\",\"expressive\":\"250ms\",\"lazy\":\"400ms\"},\"easing\":{\"standard\":\"ease\",\"entrance\":\"ease-out\",\"exit\":\"ease-in\",\"easeInBounceOut\":\"cubic-bezier(0, 0, 0.375, 1.17)\",\"focus\":\"cubic-bezier(0.6, 0.2, 0.35, 1)\"}},\"spacing\":{\"0\":\"0rem\",\"2\":\"0.125rem\",\"4\":\"0.25rem\",\"8\":\"0.5rem\",\"12\":\"0.75rem\",\"16\":\"1rem\",\"24\":\"1.5rem\",\"32\":\"2rem\",\"40\":\"2.5rem\",\"64\":\"4rem\",\"104\":\"6.5rem\",\"168\":\"10.5rem\"},\"semanticSpacing\":{\"none\":\"0\",\"2xs\":\"0.25rem\",\"xs\":\"0.5rem\",\"s\":\"1rem\",\"m\":\"1.5rem\",\"l\":\"2.5rem\",\"xl\":\"4rem\",\"2xl\":\"6.5rem\"},\"icon\":{\"weight\":{\"normal\":\"300\",\"bold\":\"400\"}},\"typography\":{\"weight\":{\"normal\":\"400\",\"bold\":\"700\"},\"font\":{\"weight\":{\"normal\":\"400\",\"bold\":\"700\"},\"size\":{\"1\":\"var(--jkl-font-size-1)\",\"2\":\"var(--jkl-font-size-2)\",\"3\":\"var(--jkl-font-size-3)\",\"4\":\"var(--jkl-font-size-4)\",\"5\":\"var(--jkl-font-size-5)\",\"6\":\"var(--jkl-font-size-6)\",\"7\":\"var(--jkl-font-size-7)\",\"8\":\"var(--jkl-font-size-8)\",\"9\":\"var(--jkl-font-size-9)\",\"10\":\"var(--jkl-font-size-10)\",\"16\":\"1rem\",\"18\":\"1.125rem\",\"20\":\"1.25rem\",\"21\":\"1.3125rem\",\"23\":\"1.4375rem\",\"25\":\"1.5625rem\",\"26\":\"1.625rem\",\"28\":\"1.75rem\",\"30\":\"1.875rem\",\"36\":\"2.25rem\",\"44\":\"2.75rem\",\"56\":\"3.5rem\"}},\"line\":{\"height\":{\"24\":\"1.5rem\",\"28\":\"1.75rem\",\"32\":\"2rem\",\"36\":\"2.25rem\",\"40\":\"2.5rem\",\"44\":\"2.75rem\",\"52\":\"3.25rem\",\"64\":\"4rem\",\"flush\":\"var(--jkl-line-height-flush)\",\"tight\":\"var(--jkl-line-height-tight)\",\"relaxed\":\"var(--jkl-line-height-relaxed)\"}},\"style\":{\"title\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-8)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-8)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"titleSmall\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-7)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-7)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"heading_1\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-8)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-8)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"heading_2\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-7)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-7)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"heading_3\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-6)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"700\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-6)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"700\"}},\"heading_4\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-5)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"700\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-5)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"700\"}},\"heading_5\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-4)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"700\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-4)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"700\"}},\"paragraphLarge\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-5)\",\"lineHeight\":\"var(--jkl-line-height-relaxed)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-5)\",\"lineHeight\":\"var(--jkl-line-height-relaxed)\",\"fontWeight\":\"400\"}},\"paragraphMedium\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-3)\",\"lineHeight\":\"var(--jkl-line-height-relaxed)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-3)\",\"lineHeight\":\"var(--jkl-line-height-relaxed)\",\"fontWeight\":\"400\"}},\"paragraphSmall\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-2)\",\"lineHeight\":\"var(--jkl-line-height-relaxed)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-2)\",\"lineHeight\":\"var(--jkl-line-height-relaxed)\",\"fontWeight\":\"400\"}},\"textLarge\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-5)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-5)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"textMedium\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-3)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-3)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"textSmall\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-2)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-2)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"textMicro\":{\"small\":{\"fontSize\":\"var(--jkl-font-size-1)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"var(--jkl-font-size-1)\",\"lineHeight\":\"var(--jkl-line-height-tight)\",\"fontWeight\":\"400\"}},\"body\":{\"small\":{\"fontSize\":\"1.125rem\",\"lineHeight\":\"1.75rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"1.25rem\",\"lineHeight\":\"2rem\",\"fontWeight\":\"400\"}},\"small\":{\"small\":{\"fontSize\":\"1rem\",\"lineHeight\":\"1.5rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"1rem\",\"lineHeight\":\"1.5rem\",\"fontWeight\":\"400\"}}},\"title\":{\"small\":{\"fontSize\":\"2.25rem\",\"lineHeight\":\"2.75rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"3.5rem\",\"lineHeight\":\"4rem\",\"fontWeight\":\"400\"}},\"titleSmall\":{\"small\":{\"fontSize\":\"1.875rem\",\"lineHeight\":\"2.25rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"2.75rem\",\"lineHeight\":\"3.25rem\",\"fontWeight\":\"400\"}},\"heading_1\":{\"small\":{\"fontSize\":\"1.625rem\",\"lineHeight\":\"2rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"2.25rem\",\"lineHeight\":\"2.75rem\",\"fontWeight\":\"400\"}},\"heading_2\":{\"small\":{\"fontSize\":\"1.4375rem\",\"lineHeight\":\"2rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"1.75rem\",\"lineHeight\":\"2.5rem\",\"fontWeight\":\"400\"}},\"heading_3\":{\"small\":{\"fontSize\":\"1.3125rem\",\"lineHeight\":\"1.75rem\",\"fontWeight\":\"700\"},\"base\":{\"fontSize\":\"1.5625rem\",\"lineHeight\":\"2rem\",\"fontWeight\":\"700\"}},\"heading_4\":{\"small\":{\"fontSize\":\"1.125rem\",\"lineHeight\":\"1.5rem\",\"fontWeight\":\"700\"},\"base\":{\"fontSize\":\"1.3125rem\",\"lineHeight\":\"1.75rem\",\"fontWeight\":\"700\"}},\"heading_5\":{\"small\":{\"fontSize\":\"1rem\",\"lineHeight\":\"1.5rem\",\"fontWeight\":\"700\"},\"base\":{\"fontSize\":\"1rem\",\"lineHeight\":\"1.5rem\",\"fontWeight\":\"700\"}},\"body\":{\"small\":{\"fontSize\":\"1.125rem\",\"lineHeight\":\"1.75rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"1.25rem\",\"lineHeight\":\"2rem\",\"fontWeight\":\"400\"}},\"small\":{\"small\":{\"fontSize\":\"1rem\",\"lineHeight\":\"1.5rem\",\"fontWeight\":\"400\"},\"base\":{\"fontSize\":\"1rem\",\"lineHeight\":\"1.5rem\",\"fontWeight\":\"400\"}}}};\n"],"names":["tokens","border","width","radius","none","xs","s","m","l","full","breakpoint","small","medium","large","xl","color","brand","snohvit","varde","granitt","hvit","svart","skifer","fjellgra","stein","svaberg","dis","sand","functional","info","infoDark","success","successDark","warning","warningDark","error","errorDark","background","page","light","dark","pageVariant","container","containerLow","containerHigh","containerInverted","containerSubdued","input","base","focus","action","interactive","interactiveHover","interactiveSelected","alert","neutral","text","default","subdued","inverted","onAction","onAlert","onAlertSubdued","inputFocus","separator","separatorStrong","separatorHover","motion","timing","energetic","snappy","productive","expressive","lazy","easing","standard","entrance","exit","easeInBounceOut","spacing","semanticSpacing","icon","weight","normal","bold","typography","font","size","line","height","flush","tight","relaxed","style","title","fontSize","lineHeight","fontWeight","titleSmall","heading_1","heading_2","heading_3","heading_4","heading_5","paragraphLarge","paragraphMedium","paragraphSmall","textLarge","textMedium","textSmall","textMicro","body"],"mappings":"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"}