@guardian/stand 0.0.9 → 0.0.11

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 (158) hide show
  1. package/README.md +1122 -1
  2. package/dist/avatar.cjs +9 -0
  3. package/dist/avatar.js +2 -0
  4. package/dist/button.cjs +9 -0
  5. package/dist/button.js +2 -0
  6. package/dist/components/TitleText.cjs +28 -0
  7. package/dist/components/TitleText.js +22 -0
  8. package/dist/components/avatar/Avatar.cjs +57 -0
  9. package/dist/components/avatar/Avatar.js +27 -0
  10. package/dist/components/avatar/styles.cjs +33 -0
  11. package/dist/components/avatar/styles.js +29 -0
  12. package/dist/components/avatar/types.cjs +16 -0
  13. package/dist/components/avatar/types.js +14 -0
  14. package/dist/components/button/Button.cjs +38 -0
  15. package/dist/components/button/Button.js +19 -0
  16. package/dist/components/button/styles.cjs +68 -0
  17. package/dist/components/button/styles.js +63 -0
  18. package/dist/components/icon/Icon.cjs +46 -0
  19. package/dist/components/icon/Icon.js +19 -0
  20. package/dist/components/icon/styles.cjs +27 -0
  21. package/dist/components/icon/styles.js +20 -0
  22. package/dist/components/icon-button/IconButton.cjs +45 -0
  23. package/dist/components/icon-button/IconButton.js +26 -0
  24. package/dist/components/icon-button/styles.cjs +9 -0
  25. package/dist/components/icon-button/styles.js +6 -0
  26. package/dist/components/icon-link-button/IconLinkButton.cjs +47 -0
  27. package/dist/components/icon-link-button/IconLinkButton.js +23 -0
  28. package/dist/components/icon-link-button/styles.cjs +9 -0
  29. package/dist/components/icon-link-button/styles.js +6 -0
  30. package/dist/components/link-button/LinkButton.cjs +35 -0
  31. package/dist/components/link-button/LinkButton.js +16 -0
  32. package/dist/components/link-button/styles.cjs +9 -0
  33. package/dist/components/link-button/styles.js +6 -0
  34. package/dist/components/typography/Typography.cjs +26 -0
  35. package/dist/components/typography/Typography.js +13 -0
  36. package/dist/components/typography/styles.cjs +15 -0
  37. package/dist/components/typography/styles.js +12 -0
  38. package/dist/components/user-menu/PreferenceRadioGroup.cjs +53 -0
  39. package/dist/components/user-menu/PreferenceRadioGroup.js +19 -0
  40. package/dist/components/user-menu/UserMenu.cjs +67 -0
  41. package/dist/components/user-menu/UserMenu.js +11 -0
  42. package/dist/components/user-menu/default-options.cjs +109 -0
  43. package/dist/components/user-menu/default-options.js +105 -0
  44. package/dist/components/user-menu/styles.cjs +90 -0
  45. package/dist/components/user-menu/styles.js +83 -0
  46. package/dist/fonts/MaterialSymbolsOutlined.css +23 -0
  47. package/dist/fonts/MaterialSymbolsRound.css +23 -0
  48. package/dist/fonts/MaterialSymbolsSharp.css +23 -0
  49. package/dist/fonts/material-symbols-types.ts +3825 -0
  50. package/dist/icon-button.cjs +7 -0
  51. package/dist/icon-button.js +1 -0
  52. package/dist/icon-link-button.cjs +7 -0
  53. package/dist/icon-link-button.js +1 -0
  54. package/dist/icon.cjs +9 -0
  55. package/dist/icon.js +2 -0
  56. package/dist/index.cjs +16 -4
  57. package/dist/index.js +6 -0
  58. package/dist/link-button.cjs +7 -0
  59. package/dist/link-button.js +1 -0
  60. package/dist/styleD/build/css/base/colors.css +1 -1
  61. package/dist/styleD/build/css/base/sizing.css +2 -0
  62. package/dist/styleD/build/css/component/avatar.css +54 -0
  63. package/dist/styleD/build/css/component/button.css +282 -0
  64. package/dist/styleD/build/css/component/byline.css +1 -1
  65. package/dist/styleD/build/css/component/icon.css +11 -0
  66. package/dist/styleD/build/css/component/typography.css +7 -0
  67. package/dist/styleD/build/css/component/userMenu.css +29 -0
  68. package/dist/styleD/build/css/semantic/colors.css +12 -8
  69. package/dist/styleD/build/css/semantic/sizing.css +1 -0
  70. package/dist/styleD/build/css/semantic/typography.css +3 -0
  71. package/dist/styleD/build/typescript/base/colors.cjs +1 -1
  72. package/dist/styleD/build/typescript/base/colors.js +1 -1
  73. package/dist/styleD/build/typescript/base/sizing.cjs +2 -0
  74. package/dist/styleD/build/typescript/base/sizing.js +2 -0
  75. package/dist/styleD/build/typescript/component/avatar.cjs +88 -0
  76. package/dist/styleD/build/typescript/component/avatar.js +86 -0
  77. package/dist/styleD/build/typescript/component/button.cjs +523 -0
  78. package/dist/styleD/build/typescript/component/button.js +521 -0
  79. package/dist/styleD/build/typescript/component/byline.cjs +1 -1
  80. package/dist/styleD/build/typescript/component/byline.js +1 -1
  81. package/dist/styleD/build/typescript/component/icon.cjs +19 -0
  82. package/dist/styleD/build/typescript/component/icon.js +17 -0
  83. package/dist/styleD/build/typescript/component/typography.cjs +7 -0
  84. package/dist/styleD/build/typescript/component/typography.js +5 -0
  85. package/dist/styleD/build/typescript/component/userMenu.cjs +37 -0
  86. package/dist/styleD/build/typescript/component/userMenu.js +35 -0
  87. package/dist/styleD/build/typescript/semantic/colors.cjs +14 -10
  88. package/dist/styleD/build/typescript/semantic/colors.js +14 -10
  89. package/dist/styleD/build/typescript/semantic/sizing.cjs +2 -1
  90. package/dist/styleD/build/typescript/semantic/sizing.js +2 -1
  91. package/dist/styleD/build/typescript/semantic/typography.cjs +5 -0
  92. package/dist/styleD/build/typescript/semantic/typography.js +5 -0
  93. package/dist/types/avatar.d.ts +19 -0
  94. package/dist/types/button.d.ts +20 -0
  95. package/dist/types/components/TitleText.d.ts +6 -0
  96. package/dist/types/components/avatar/Avatar.d.ts +2 -0
  97. package/dist/types/components/avatar/styles.d.ts +8 -0
  98. package/dist/types/components/avatar/types.d.ts +45 -0
  99. package/dist/types/components/button/Button.d.ts +2 -0
  100. package/dist/types/components/button/styles.d.ts +7 -0
  101. package/dist/types/components/button/types.d.ts +18 -0
  102. package/dist/types/components/byline/schema.d.ts +1 -1
  103. package/dist/types/components/icon/Icon.d.ts +2 -0
  104. package/dist/types/components/icon/styles.d.ts +8 -0
  105. package/dist/types/components/icon/types.d.ts +28 -0
  106. package/dist/types/components/icon-button/IconButton.d.ts +2 -0
  107. package/dist/types/components/icon-button/styles.d.ts +522 -0
  108. package/dist/types/components/icon-button/types.d.ts +26 -0
  109. package/dist/types/components/icon-link-button/IconLinkButton.d.ts +2 -0
  110. package/dist/types/components/icon-link-button/styles.d.ts +522 -0
  111. package/dist/types/components/icon-link-button/types.d.ts +26 -0
  112. package/dist/types/components/link-button/LinkButton.d.ts +2 -0
  113. package/dist/types/components/link-button/styles.d.ts +522 -0
  114. package/dist/types/components/link-button/types.d.ts +18 -0
  115. package/dist/types/components/typography/Typography.d.ts +6 -0
  116. package/dist/types/components/typography/styles.d.ts +7 -0
  117. package/dist/types/components/typography/types.d.ts +13 -0
  118. package/dist/types/components/user-menu/PreferenceRadioGroup.d.ts +15 -0
  119. package/dist/types/components/user-menu/UserMenu.d.ts +17 -0
  120. package/dist/types/components/user-menu/default-options.d.ts +5 -0
  121. package/dist/types/components/user-menu/model.d.ts +9 -0
  122. package/dist/types/components/user-menu/styles.d.ts +9 -0
  123. package/dist/types/components/user-menu/theme.d.ts +3 -0
  124. package/dist/types/components/user-menu/types.d.ts +5 -0
  125. package/dist/types/fonts/material-symbols-types.d.ts +3822 -0
  126. package/dist/types/icon-button.d.ts +20 -0
  127. package/dist/types/icon-link-button.d.ts +20 -0
  128. package/dist/types/icon.d.ts +27 -0
  129. package/dist/types/index.d.ts +17 -0
  130. package/dist/types/link-button.d.ts +20 -0
  131. package/dist/types/styleD/build/typescript/base/colors.d.ts +1 -1
  132. package/dist/types/styleD/build/typescript/base/sizing.d.ts +2 -0
  133. package/dist/types/styleD/build/typescript/component/avatar.d.ts +88 -0
  134. package/dist/types/styleD/build/typescript/component/button.d.ts +523 -0
  135. package/dist/types/styleD/build/typescript/component/icon.d.ts +19 -0
  136. package/dist/types/styleD/build/typescript/component/typography.d.ts +7 -0
  137. package/dist/types/styleD/build/typescript/component/userMenu.d.ts +37 -0
  138. package/dist/types/styleD/build/typescript/semantic/colors.d.ts +7 -3
  139. package/dist/types/styleD/build/typescript/semantic/sizing.d.ts +1 -0
  140. package/dist/types/styleD/build/typescript/semantic/typography.d.ts +5 -0
  141. package/dist/types/typography.d.ts +19 -0
  142. package/dist/types/user-menu.d.ts +18 -0
  143. package/dist/types/util/reset.d.ts +1 -0
  144. package/dist/types/util/storybookStyles.d.ts +1 -0
  145. package/dist/types/util/types.d.ts +28 -0
  146. package/dist/types/utils.d.ts +1 -0
  147. package/dist/typography.cjs +9 -0
  148. package/dist/typography.js +2 -0
  149. package/dist/user-menu.cjs +9 -0
  150. package/dist/user-menu.js +2 -0
  151. package/dist/util/css/reset.css +124 -0
  152. package/dist/util/reset.cjs +10 -0
  153. package/dist/util/reset.css.cjs +5 -0
  154. package/dist/util/reset.css.js +3 -0
  155. package/dist/util/reset.js +8 -0
  156. package/dist/utils.cjs +2 -0
  157. package/dist/utils.js +1 -0
  158. package/package.json +81 -3
@@ -0,0 +1,521 @@
1
+ const componentButton = {
2
+ shared: {
3
+ display: "inline-flex",
4
+ "-webkit-appearance": "none",
5
+ "text-align": "inherit",
6
+ "box-shadow": "none",
7
+ cursor: "pointer",
8
+ "justify-content": "center",
9
+ "align-items": "center",
10
+ "text-decoration": "none",
11
+ ":disabled": {
12
+ cursor: "not-allowed"
13
+ },
14
+ ":focus-visible": {
15
+ outline: "0.125rem solid #0072a9",
16
+ "outline-offset": "0.125rem"
17
+ }
18
+ },
19
+ "emphasised-primary": {
20
+ shared: {
21
+ color: "#ffffff",
22
+ backgroundColor: "#0d4289",
23
+ borderRadius: "0.25rem",
24
+ border: "0.0625rem solid #0d4289",
25
+ ":hover": {
26
+ backgroundColor: "#092f62",
27
+ border: "0.0625rem solid #092f62"
28
+ },
29
+ ":active": {
30
+ backgroundColor: "#061d3c",
31
+ border: "0.0625rem solid #061d3c"
32
+ },
33
+ ":disabled": {
34
+ color: "#999999",
35
+ backgroundColor: "#dcdcdc",
36
+ border: "0.0625rem solid #dcdcdc"
37
+ }
38
+ },
39
+ xs: {
40
+ height: "1.5rem",
41
+ padding: {
42
+ top: "0.25rem",
43
+ right: "0.5rem",
44
+ bottom: "0.25rem",
45
+ left: "0.5rem",
46
+ withIcon: {
47
+ iconLeft: {
48
+ left: "0.25rem"
49
+ }
50
+ }
51
+ },
52
+ typography: {
53
+ font: "normal 700 0.75rem/1 Open Sans",
54
+ letterSpacing: "0rem",
55
+ fontWidth: 95
56
+ },
57
+ icon: {
58
+ size: "1.125rem",
59
+ gap: "0.25rem"
60
+ },
61
+ iconButton: {
62
+ width: "1.5rem"
63
+ }
64
+ },
65
+ sm: {
66
+ height: "2rem",
67
+ padding: {
68
+ top: "0.25rem",
69
+ right: "0.625rem",
70
+ bottom: "0.25rem",
71
+ left: "0.625rem",
72
+ withIcon: {
73
+ iconLeft: {
74
+ left: "0.5rem"
75
+ }
76
+ }
77
+ },
78
+ typography: {
79
+ font: "normal 700 0.875rem/1 Open Sans",
80
+ letterSpacing: "-0.0125rem",
81
+ fontWidth: 95
82
+ },
83
+ icon: {
84
+ size: "1.125rem",
85
+ gap: "0.25rem"
86
+ },
87
+ iconButton: {
88
+ width: "2rem"
89
+ }
90
+ },
91
+ md: {
92
+ height: "2.5rem",
93
+ padding: {
94
+ top: "0.25rem",
95
+ right: "0.75rem",
96
+ bottom: "0.25rem",
97
+ left: "0.75rem",
98
+ withIcon: {
99
+ iconLeft: {
100
+ left: "0.5rem"
101
+ }
102
+ }
103
+ },
104
+ typography: {
105
+ font: "normal 700 0.875rem/1 Open Sans",
106
+ letterSpacing: "-0.0125rem",
107
+ fontWidth: 95
108
+ },
109
+ icon: {
110
+ size: "1.25rem",
111
+ gap: "0.25rem"
112
+ },
113
+ iconButton: {
114
+ width: "2.5rem"
115
+ }
116
+ },
117
+ lg: {
118
+ height: "3rem",
119
+ padding: {
120
+ top: "0.25rem",
121
+ right: "1rem",
122
+ bottom: "0.25rem",
123
+ left: "1rem",
124
+ withIcon: {
125
+ iconLeft: {
126
+ left: "0.75rem"
127
+ }
128
+ }
129
+ },
130
+ typography: {
131
+ font: "normal 700 1rem/1 Open Sans",
132
+ letterSpacing: "-0.0125rem",
133
+ fontWidth: 95
134
+ },
135
+ icon: {
136
+ size: "1.5rem",
137
+ gap: "0.25rem"
138
+ },
139
+ iconButton: {
140
+ width: "3rem"
141
+ }
142
+ }
143
+ },
144
+ "emphasised-secondary": {
145
+ shared: {
146
+ color: "#000000",
147
+ backgroundColor: "none",
148
+ borderRadius: "0.25rem",
149
+ border: "0.0625rem solid #0d4289",
150
+ ":hover": {
151
+ backgroundColor: "#e8f0fb",
152
+ border: "0.0625rem solid #0d4289"
153
+ },
154
+ ":active": {
155
+ backgroundColor: "#c5d9f4",
156
+ border: "0.0625rem solid #0d4289"
157
+ },
158
+ ":disabled": {
159
+ color: "#999999",
160
+ backgroundColor: "none",
161
+ border: "0.0625rem solid #dcdcdc"
162
+ }
163
+ },
164
+ xs: {
165
+ height: "1.5rem",
166
+ padding: {
167
+ top: "0.25rem",
168
+ right: "0.5rem",
169
+ bottom: "0.25rem",
170
+ left: "0.5rem",
171
+ withIcon: {
172
+ iconLeft: {
173
+ left: "0.25rem"
174
+ }
175
+ }
176
+ },
177
+ typography: {
178
+ font: "normal 700 0.75rem/1 Open Sans",
179
+ letterSpacing: "0rem",
180
+ fontWidth: 95
181
+ },
182
+ icon: {
183
+ size: "1.125rem",
184
+ gap: "0.25rem"
185
+ },
186
+ iconButton: {
187
+ width: "1.5rem"
188
+ }
189
+ },
190
+ sm: {
191
+ height: "2rem",
192
+ padding: {
193
+ top: "0.25rem",
194
+ right: "0.625rem",
195
+ bottom: "0.25rem",
196
+ left: "0.625rem",
197
+ withIcon: {
198
+ iconLeft: {
199
+ left: "0.5rem"
200
+ }
201
+ }
202
+ },
203
+ typography: {
204
+ font: "normal 700 0.875rem/1 Open Sans",
205
+ letterSpacing: "-0.0125rem",
206
+ fontWidth: 95
207
+ },
208
+ icon: {
209
+ size: "1.125rem",
210
+ gap: "0.25rem"
211
+ },
212
+ iconButton: {
213
+ width: "2rem"
214
+ }
215
+ },
216
+ md: {
217
+ height: "2.5rem",
218
+ padding: {
219
+ top: "0.25rem",
220
+ right: "0.75rem",
221
+ bottom: "0.25rem",
222
+ left: "0.75rem",
223
+ withIcon: {
224
+ iconLeft: {
225
+ left: "0.5rem"
226
+ }
227
+ }
228
+ },
229
+ typography: {
230
+ font: "normal 700 0.875rem/1 Open Sans",
231
+ letterSpacing: "-0.0125rem",
232
+ fontWidth: 95
233
+ },
234
+ icon: {
235
+ size: "1.25rem",
236
+ gap: "0.25rem"
237
+ },
238
+ iconButton: {
239
+ width: "2.5rem"
240
+ }
241
+ },
242
+ lg: {
243
+ height: "3rem",
244
+ padding: {
245
+ top: "0.25rem",
246
+ right: "1rem",
247
+ bottom: "0.25rem",
248
+ left: "1rem",
249
+ withIcon: {
250
+ iconLeft: {
251
+ left: "0.75rem"
252
+ }
253
+ }
254
+ },
255
+ typography: {
256
+ font: "normal 700 1rem/1 Open Sans",
257
+ letterSpacing: "-0.0125rem",
258
+ fontWidth: 95
259
+ },
260
+ icon: {
261
+ size: "1.5rem",
262
+ gap: "0.25rem"
263
+ },
264
+ iconButton: {
265
+ width: "3rem"
266
+ }
267
+ }
268
+ },
269
+ "neutral-primary": {
270
+ shared: {
271
+ color: "#ffffff",
272
+ backgroundColor: "#545454",
273
+ borderRadius: "0.25rem",
274
+ border: "0.0625rem solid #545454",
275
+ ":hover": {
276
+ backgroundColor: "#333333",
277
+ border: "0.0625rem solid #333333"
278
+ },
279
+ ":active": {
280
+ backgroundColor: "#121212",
281
+ border: "0.0625rem solid #121212"
282
+ },
283
+ ":disabled": {
284
+ color: "#999999",
285
+ backgroundColor: "#dcdcdc",
286
+ border: "0.0625rem solid #dcdcdc"
287
+ }
288
+ },
289
+ xs: {
290
+ height: "1.5rem",
291
+ padding: {
292
+ top: "0.25rem",
293
+ right: "0.5rem",
294
+ bottom: "0.25rem",
295
+ left: "0.5rem",
296
+ withIcon: {
297
+ iconLeft: {
298
+ left: "0.25rem"
299
+ }
300
+ }
301
+ },
302
+ typography: {
303
+ font: "normal 700 0.75rem/1 Open Sans",
304
+ letterSpacing: "0rem",
305
+ fontWidth: 95
306
+ },
307
+ icon: {
308
+ size: "1.125rem",
309
+ gap: "0.25rem"
310
+ },
311
+ iconButton: {
312
+ width: "1.5rem"
313
+ }
314
+ },
315
+ sm: {
316
+ height: "2rem",
317
+ padding: {
318
+ top: "0.25rem",
319
+ right: "0.625rem",
320
+ bottom: "0.25rem",
321
+ left: "0.625rem",
322
+ withIcon: {
323
+ iconLeft: {
324
+ left: "0.5rem"
325
+ }
326
+ }
327
+ },
328
+ typography: {
329
+ font: "normal 700 0.875rem/1 Open Sans",
330
+ letterSpacing: "-0.0125rem",
331
+ fontWidth: 95
332
+ },
333
+ icon: {
334
+ size: "1.125rem",
335
+ gap: "0.25rem"
336
+ },
337
+ iconButton: {
338
+ width: "2rem"
339
+ }
340
+ },
341
+ md: {
342
+ height: "2.5rem",
343
+ padding: {
344
+ top: "0.25rem",
345
+ right: "0.75rem",
346
+ bottom: "0.25rem",
347
+ left: "0.75rem",
348
+ withIcon: {
349
+ iconLeft: {
350
+ left: "0.5rem"
351
+ }
352
+ }
353
+ },
354
+ typography: {
355
+ font: "normal 700 0.875rem/1 Open Sans",
356
+ letterSpacing: "-0.0125rem",
357
+ fontWidth: 95
358
+ },
359
+ icon: {
360
+ size: "1.25rem",
361
+ gap: "0.25rem"
362
+ },
363
+ iconButton: {
364
+ width: "2.5rem"
365
+ }
366
+ },
367
+ lg: {
368
+ height: "3rem",
369
+ padding: {
370
+ top: "0.25rem",
371
+ right: "1rem",
372
+ bottom: "0.25rem",
373
+ left: "1rem",
374
+ withIcon: {
375
+ iconLeft: {
376
+ left: "0.75rem"
377
+ }
378
+ }
379
+ },
380
+ typography: {
381
+ font: "normal 700 1rem/1 Open Sans",
382
+ letterSpacing: "-0.0125rem",
383
+ fontWidth: 95
384
+ },
385
+ icon: {
386
+ size: "1.5rem",
387
+ gap: "0.25rem"
388
+ },
389
+ iconButton: {
390
+ width: "3rem"
391
+ }
392
+ }
393
+ },
394
+ "neutral-secondary": {
395
+ shared: {
396
+ color: "#000000",
397
+ backgroundColor: "none",
398
+ borderRadius: "0.25rem",
399
+ border: "0.0625rem solid #545454",
400
+ ":hover": {
401
+ backgroundColor: "#ededed",
402
+ border: "0.0625rem solid #545454"
403
+ },
404
+ ":active": {
405
+ backgroundColor: "#dcdcdc",
406
+ border: "0.0625rem solid #545454"
407
+ },
408
+ ":disabled": {
409
+ color: "#999999",
410
+ backgroundColor: "none",
411
+ border: "0.0625rem solid #dcdcdc"
412
+ }
413
+ },
414
+ xs: {
415
+ height: "1.5rem",
416
+ padding: {
417
+ top: "0.25rem",
418
+ right: "0.5rem",
419
+ bottom: "0.25rem",
420
+ left: "0.5rem",
421
+ withIcon: {
422
+ iconLeft: {
423
+ left: "0.25rem"
424
+ }
425
+ }
426
+ },
427
+ typography: {
428
+ font: "normal 700 0.75rem/1 Open Sans",
429
+ letterSpacing: "0rem",
430
+ fontWidth: 95
431
+ },
432
+ icon: {
433
+ size: "1.125rem",
434
+ gap: "0.25rem"
435
+ },
436
+ iconButton: {
437
+ width: "1.5rem"
438
+ }
439
+ },
440
+ sm: {
441
+ height: "2rem",
442
+ padding: {
443
+ top: "0.25rem",
444
+ right: "0.625rem",
445
+ bottom: "0.25rem",
446
+ left: "0.625rem",
447
+ withIcon: {
448
+ iconLeft: {
449
+ left: "0.5rem"
450
+ }
451
+ }
452
+ },
453
+ typography: {
454
+ font: "normal 700 0.875rem/1 Open Sans",
455
+ letterSpacing: "-0.0125rem",
456
+ fontWidth: 95
457
+ },
458
+ icon: {
459
+ size: "1.125rem",
460
+ gap: "0.25rem"
461
+ },
462
+ iconButton: {
463
+ width: "2rem"
464
+ }
465
+ },
466
+ md: {
467
+ height: "2.5rem",
468
+ padding: {
469
+ top: "0.25rem",
470
+ right: "0.75rem",
471
+ bottom: "0.25rem",
472
+ left: "0.75rem",
473
+ withIcon: {
474
+ iconLeft: {
475
+ left: "0.5rem"
476
+ }
477
+ }
478
+ },
479
+ typography: {
480
+ font: "normal 700 0.875rem/1 Open Sans",
481
+ letterSpacing: "-0.0125rem",
482
+ fontWidth: 95
483
+ },
484
+ icon: {
485
+ size: "1.25rem",
486
+ gap: "0.25rem"
487
+ },
488
+ iconButton: {
489
+ width: "2.5rem"
490
+ }
491
+ },
492
+ lg: {
493
+ height: "3rem",
494
+ padding: {
495
+ top: "0.25rem",
496
+ right: "1rem",
497
+ bottom: "0.25rem",
498
+ left: "1rem",
499
+ withIcon: {
500
+ iconLeft: {
501
+ left: "0.75rem"
502
+ }
503
+ }
504
+ },
505
+ typography: {
506
+ font: "normal 700 1rem/1 Open Sans",
507
+ letterSpacing: "-0.0125rem",
508
+ fontWidth: 95
509
+ },
510
+ icon: {
511
+ size: "1.5rem",
512
+ gap: "0.25rem"
513
+ },
514
+ iconButton: {
515
+ width: "3rem"
516
+ }
517
+ }
518
+ }
519
+ };
520
+
521
+ export { componentButton };
@@ -16,7 +16,7 @@ const componentByline = {
16
16
  borderRadius: "8px",
17
17
  paddingX: "4px",
18
18
  paddingY: "2px",
19
- selectedBorderColor: "#bdd4f4",
19
+ selectedBorderColor: "#c5d9f4",
20
20
  taggedBackgroundColor: "#dcdcdc",
21
21
  untaggedColor: "#000000"
22
22
  },
@@ -14,7 +14,7 @@ const componentByline = {
14
14
  borderRadius: "8px",
15
15
  paddingX: "4px",
16
16
  paddingY: "2px",
17
- selectedBorderColor: "#bdd4f4",
17
+ selectedBorderColor: "#c5d9f4",
18
18
  taggedBackgroundColor: "#dcdcdc",
19
19
  untaggedColor: "#000000"
20
20
  },
@@ -0,0 +1,19 @@
1
+ 'use strict';
2
+
3
+ const componentIcon = {
4
+ shared: {
5
+ display: "inline-flex",
6
+ "user-select": "none"
7
+ },
8
+ sm: {
9
+ size: "1.125rem"
10
+ },
11
+ md: {
12
+ size: "1.25rem"
13
+ },
14
+ lg: {
15
+ size: "1.5rem"
16
+ }
17
+ };
18
+
19
+ exports.componentIcon = componentIcon;
@@ -0,0 +1,17 @@
1
+ const componentIcon = {
2
+ shared: {
3
+ display: "inline-flex",
4
+ "user-select": "none"
5
+ },
6
+ sm: {
7
+ size: "1.125rem"
8
+ },
9
+ md: {
10
+ size: "1.25rem"
11
+ },
12
+ lg: {
13
+ size: "1.5rem"
14
+ }
15
+ };
16
+
17
+ export { componentIcon };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ const componentTypography = {
4
+ color: "#000000"
5
+ };
6
+
7
+ exports.componentTypography = componentTypography;
@@ -0,0 +1,5 @@
1
+ const componentTypography = {
2
+ color: "#000000"
3
+ };
4
+
5
+ export { componentTypography };
@@ -0,0 +1,37 @@
1
+ 'use strict';
2
+
3
+ const componentUserMenu = {
4
+ container: {
5
+ backgroundColor: "#dcdcdc",
6
+ width: "300px",
7
+ paddingY: "0.25rem",
8
+ paddingX: "0.25rem"
9
+ },
10
+ heading: {
11
+ fontWeight: 700,
12
+ fontSize: "1.125rem",
13
+ paddingTop: "0px",
14
+ paddingRight: "0px",
15
+ paddingBottom: "0px",
16
+ paddingLeft: "0px",
17
+ textAlign: "left"
18
+ },
19
+ label: {
20
+ fontWeight: 700,
21
+ fontSize: "0.875rem",
22
+ paddingTop: "15px",
23
+ paddingRight: "0px",
24
+ paddingBottom: "0.375rem",
25
+ paddingLeft: "0px",
26
+ textAlign: "left"
27
+ },
28
+ toggleButton: {
29
+ baseBackgroundColor: "#ededed",
30
+ disabledBackgroundColor: "#dcdcdc",
31
+ baseBorderColor: "#dcdcdc",
32
+ selectedBorderColor: "#0d4289",
33
+ gap: "0.25rem"
34
+ }
35
+ };
36
+
37
+ exports.componentUserMenu = componentUserMenu;
@@ -0,0 +1,35 @@
1
+ const componentUserMenu = {
2
+ container: {
3
+ backgroundColor: "#dcdcdc",
4
+ width: "300px",
5
+ paddingY: "0.25rem",
6
+ paddingX: "0.25rem"
7
+ },
8
+ heading: {
9
+ fontWeight: 700,
10
+ fontSize: "1.125rem",
11
+ paddingTop: "0px",
12
+ paddingRight: "0px",
13
+ paddingBottom: "0px",
14
+ paddingLeft: "0px",
15
+ textAlign: "left"
16
+ },
17
+ label: {
18
+ fontWeight: 700,
19
+ fontSize: "0.875rem",
20
+ paddingTop: "15px",
21
+ paddingRight: "0px",
22
+ paddingBottom: "0.375rem",
23
+ paddingLeft: "0px",
24
+ textAlign: "left"
25
+ },
26
+ toggleButton: {
27
+ baseBackgroundColor: "#ededed",
28
+ disabledBackgroundColor: "#dcdcdc",
29
+ baseBorderColor: "#dcdcdc",
30
+ selectedBorderColor: "#0d4289",
31
+ gap: "0.25rem"
32
+ }
33
+ };
34
+
35
+ export { componentUserMenu };