@arkitektbedriftene/fe-lib 4.3.3 → 5.1.1

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 (67) hide show
  1. package/dist/elements/components/CompanyLogo.d.ts +8 -14
  2. package/dist/elements/elements.d.ts +1 -1
  3. package/dist/elements.d.ts +1 -0
  4. package/dist/elements.es.js +23 -23
  5. package/dist/icons.d.ts +1 -0
  6. package/dist/icons.es.js +3 -4
  7. package/dist/{index.esm-fa9e6ea7.js → index.esm-Dzt91gSZ.js} +29 -32
  8. package/dist/normalize.css.d.ts +1 -1
  9. package/dist/oidc/impersonate.d.ts +1 -1
  10. package/dist/oidc/oidc.d.ts +6 -6
  11. package/dist/oidc.d.ts +1 -0
  12. package/dist/oidc.es.js +5 -5
  13. package/dist/rich-text/Editor.d.ts +13 -18
  14. package/dist/rich-text/Plugins/Image/ImageComponent.d.ts +1 -1
  15. package/dist/rich-text/Plugins/Image/ImageNode.d.ts +2 -3
  16. package/dist/rich-text/Plugins/Image/ImagePlugin.d.ts +3 -3
  17. package/dist/rich-text/Plugins/LinkInsertPlugin.d.ts +3 -3
  18. package/dist/rich-text/Plugins/LinkTargetNode.d.ts +2 -2
  19. package/dist/rich-text/Plugins/ParsePlugin.d.ts +2 -2
  20. package/dist/rich-text/Plugins/RutineLinkNode.d.ts +12 -12
  21. package/dist/rich-text/Toolbar/Toolbar.d.ts +3 -119
  22. package/dist/rich-text/config.d.ts +9 -8
  23. package/dist/rich-text/editorContext.d.ts +7 -7
  24. package/dist/rich-text/getSelectedNode.d.ts +1 -1
  25. package/dist/rich-text/state.d.ts +5 -5
  26. package/dist/rich-text/styles.d.ts +102 -94
  27. package/dist/rich-text/theme.d.ts +1 -1
  28. package/dist/rich-text/trim.d.ts +3 -3
  29. package/dist/rich-text.d.ts +1 -0
  30. package/dist/rich-text.es.js +291 -281
  31. package/dist/ui/components/Alert.d.ts +95 -96
  32. package/dist/ui/components/Avatar.d.ts +97 -215
  33. package/dist/ui/components/Badge.d.ts +94 -94
  34. package/dist/ui/components/Box.d.ts +94 -94
  35. package/dist/ui/components/Button.d.ts +95 -96
  36. package/dist/ui/components/Card.d.ts +94 -94
  37. package/dist/ui/components/Dialog.d.ts +284 -400
  38. package/dist/ui/components/Form/Checkbox.d.ts +97 -216
  39. package/dist/ui/components/Form/Combobox.d.ts +2 -2
  40. package/dist/ui/components/Form/ReactSelect.d.ts +4 -2
  41. package/dist/ui/components/Form/Select.d.ts +3 -3
  42. package/dist/ui/components/Form/Switch.d.ts +195 -549
  43. package/dist/ui/components/Form/TextArea.d.ts +96 -97
  44. package/dist/ui/components/Form/TextInput.d.ts +96 -97
  45. package/dist/ui/components/Form/text.d.ts +188 -188
  46. package/dist/ui/components/Menu/DropdownMenu.d.ts +287 -287
  47. package/dist/ui/components/Menu/Menu.d.ts +281 -281
  48. package/dist/ui/components/NavBar.d.ts +98 -222
  49. package/dist/ui/components/OverlayCard.d.ts +94 -95
  50. package/dist/ui/components/Popover.d.ts +7 -124
  51. package/dist/ui/components/Spinner.d.ts +95 -96
  52. package/dist/ui/components/Stack.d.ts +95 -95
  53. package/dist/ui/components/Toolbar.d.ts +381 -382
  54. package/dist/ui/stitches.config.d.ts +569 -568
  55. package/dist/ui.css.d.ts +1 -1
  56. package/dist/ui.d.ts +1 -0
  57. package/dist/ui.es.js +54 -55
  58. package/package.json +5 -17
  59. package/dist/colors/colors.d.ts +0 -18
  60. package/dist/colors.d.ts +0 -1
  61. package/dist/colors.es.js +0 -20
  62. package/dist/hooks/hooks.d.ts +0 -2
  63. package/dist/hooks.d.ts +0 -1
  64. package/dist/hooks.es.js +0 -4
  65. package/dist/index.d.ts +0 -1
  66. package/dist/index.es.js +0 -4
  67. /package/dist/{stitches.config-00c23cdb.js → stitches.config-CEYOm13b.js} +0 -0
@@ -1,472 +1,356 @@
1
- import type { ComponentProps, ReactNode } from "react";
1
+ import { ComponentProps, ReactNode } from 'react';
2
2
  import * as RDialog from "@radix-ui/react-dialog";
3
- declare const DialogContent: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<RDialog.DialogContentProps & import("react").RefAttributes<HTMLDivElement>>, {}, {
3
+ declare const DialogContent: import('@stitches/react/types/styled-component').StyledComponent<import('react').ForwardRefExoticComponent<RDialog.DialogContentProps & import('react').RefAttributes<HTMLDivElement>>, {}, {
4
4
  lg: "(min-width: 1200px)";
5
5
  print: "print";
6
- }, import("@stitches/react/types/css-util").CSS<{
6
+ }, import('@stitches/react/types/css-util').CSS<{
7
7
  lg: "(min-width: 1200px)";
8
8
  print: "print";
9
9
  }, {
10
10
  colors: {
11
- gray50: string;
12
- gray100: string;
13
- gray200: string;
14
- gray300: string;
15
- gray400: string;
16
- gray500: string;
17
- gray600: string;
18
- gray700: string;
19
- gray800: string;
20
- gray900: string;
21
- blue50: string;
22
- blue100: string;
23
- blue200: string;
24
- blue300: string;
25
- blue400: string;
26
- blue500: string;
27
- blue600: string;
28
- blue700: string;
29
- blue800: string;
30
- blue900: string;
31
- yellow50: string;
32
- yellow100: string;
33
- yellow200: string;
34
- yellow300: string;
35
- yellow400: string;
36
- yellow500: string;
37
- yellow600: string;
38
- yellow700: string;
39
- yellow800: string;
40
- yellow900: string;
41
- orange500: string;
42
- red50: string;
43
- red100: string;
44
- red200: string;
45
- red300: string;
46
- red400: string;
47
- red500: string;
48
- red600: string;
49
- red700: string;
50
- red800: string;
51
- red900: string;
52
- green50: string;
53
- green100: string;
54
- green200: string;
55
- green300: string;
56
- green400: string;
57
- green500: string;
58
- green600: string;
59
- green700: string;
60
- green800: string;
61
- green900: string;
62
- primaryTextOnLightBg: string;
63
- primaryBg: string;
64
- primaryBgHover: string;
65
- primaryTextOnWhite: string;
66
- bodyGray: string;
67
- hoverDarker: string;
68
- borderDarker: string;
69
- selectedDarker: string;
70
- selectedOnBodyGray: string;
71
- darkGrayBg: string;
72
- border: string;
73
- text: string;
74
- secondaryText: string;
75
- focusRing: string;
11
+ gray50: "#F9FAFA";
12
+ gray100: "#EBEEEE";
13
+ gray200: "#CFD6D7";
14
+ gray300: "#B3BEC0";
15
+ gray400: "#97A6A8";
16
+ gray500: "#7C8E91";
17
+ gray600: "#627578";
18
+ gray700: "#4F5F61";
19
+ gray800: "#414D4F";
20
+ gray900: "#2C3435";
21
+ blue50: "#F7FBFB";
22
+ blue100: "#E3F0F2";
23
+ blue200: "#BADADF";
24
+ blue300: "#92C5CC";
25
+ blue400: "#67AEB8";
26
+ blue500: "#3C97A3";
27
+ blue600: "#1F7D8A";
28
+ blue700: "#19656F";
29
+ blue800: "#14525B";
30
+ blue900: "#0E383E";
31
+ yellow50: "#FDFAEF";
32
+ yellow100: "#F9EDCA";
33
+ yellow200: "#EFD27A";
34
+ yellow300: "#E5B626";
35
+ yellow400: "#C89E1C";
36
+ yellow500: "#AA8618";
37
+ yellow600: "#8C6E14";
38
+ yellow700: "#715910";
39
+ yellow800: "#5C490D";
40
+ yellow900: "#3E3109";
41
+ orange500: "#D1721C";
42
+ red50: "#FDF9F9";
43
+ red100: "#F7EBEB";
44
+ red200: "#EBCECD";
45
+ red300: "#DFB1B0";
46
+ red400: "#D39392";
47
+ red500: "#C67473";
48
+ red600: "#B85250";
49
+ red700: "#A92F2D";
50
+ red800: "#901F1E";
51
+ red900: "#631614";
52
+ green50: "#F8FAF9";
53
+ green100: "#E7F0EA";
54
+ green200: "#C5D9CB";
55
+ green300: "#A4C4AD";
56
+ green400: "#82AD8D";
57
+ green500: "#60976F";
58
+ green600: "#3C7F4E";
59
+ green700: "#296839";
60
+ green800: "#21552F";
61
+ green900: "#163920";
62
+ primaryTextOnLightBg: "#194b58";
63
+ primaryBg: "$blue600";
64
+ primaryBgHover: "$blue700";
65
+ primaryTextOnWhite: "$blue600";
66
+ bodyGray: "$gray100";
67
+ hoverDarker: "hsla(214deg, 25%, 21%, 0.06)";
68
+ borderDarker: "hsla(214deg, 25%, 21%, 0.1)";
69
+ selectedDarker: "hsla(214deg, 25%, 21%, 0.06)";
70
+ selectedOnBodyGray: "hsl(214deg, 35%, 80%)";
71
+ darkGrayBg: "#1f2937";
72
+ border: "hsl(214deg, 25%, 80%)";
73
+ text: "#1f2937";
74
+ secondaryText: "$gray500";
75
+ focusRing: "hsla(214deg, 15%, 10%, 0.6)";
76
76
  };
77
77
  fontSizes: {
78
- xs: string;
79
- sm: string;
80
- md: string;
81
- lg: string;
82
- xl: string;
83
- "2xl": string;
84
- "3xl": string;
78
+ xs: "0.75rem";
79
+ sm: "0.875rem";
80
+ md: "1rem";
81
+ lg: "1.125rem";
82
+ xl: "1.25rem";
83
+ "2xl": "1.5rem";
84
+ "3xl": "1.875rem";
85
85
  };
86
86
  fontWeights: {
87
- normal: string;
88
- medium: string;
89
- bold: string;
87
+ normal: "var(--ui-font-weight-normal)";
88
+ medium: "var(--ui-font-weight-semibold)";
89
+ bold: "var(--ui-font-weight-bold)";
90
90
  };
91
91
  space: {
92
- 1: string;
93
- 2: string;
94
- 3: string;
95
- 4: string;
96
- 6: string;
97
- 8: string;
92
+ 1: "0.25rem";
93
+ 2: "0.5rem";
94
+ 3: "0.75rem";
95
+ 4: "1rem";
96
+ 6: "1.5rem";
97
+ 8: "2rem";
98
98
  };
99
99
  shadows: {
100
- xs: string;
101
- sm: string;
102
- md: string;
103
- lg: string;
104
- overlayCard: string;
100
+ xs: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
101
+ sm: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
102
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
103
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
104
+ overlayCard: "0 5px 50px 0px rgb(0 0 0 / 0.15), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
105
105
  };
106
106
  radii: {
107
- xs: string;
108
- sm: string;
109
- md: string;
110
- mdmd: string;
111
- full: string;
107
+ xs: "0.125rem";
108
+ sm: "0.25rem";
109
+ md: "0.5rem";
110
+ mdmd: "calc(0.5rem - 0.125rem)";
111
+ full: "9999px";
112
112
  };
113
113
  zIndices: {
114
114
  toast: number;
115
115
  overlayCard: number;
116
116
  };
117
- }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
117
+ }, import('@stitches/react/types/config').DefaultThemeMap, {}>>;
118
118
  export declare const Dialog: ({ children, open, onOpenChange, trigger, css, contentProps, }: {
119
119
  children: ReactNode;
120
120
  open: boolean;
121
121
  onOpenChange: (bool: boolean) => void;
122
122
  trigger?: ReactNode;
123
123
  css?: ComponentProps<typeof DialogContent>["css"];
124
- contentProps?: (Omit<RDialog.DialogContentProps & import("react").RefAttributes<HTMLDivElement>, "css"> & import("@stitches/react/types/styled-component").TransformProps<{}, {
125
- lg: "(min-width: 1200px)";
126
- print: "print";
127
- }> & {
128
- css?: import("@stitches/react/types/css-util").CSS<{
129
- lg: "(min-width: 1200px)";
130
- print: "print";
131
- }, {
132
- colors: {
133
- gray50: string;
134
- gray100: string;
135
- gray200: string;
136
- gray300: string;
137
- gray400: string;
138
- gray500: string;
139
- gray600: string;
140
- gray700: string;
141
- gray800: string;
142
- gray900: string;
143
- blue50: string;
144
- blue100: string;
145
- blue200: string;
146
- blue300: string;
147
- blue400: string;
148
- blue500: string;
149
- blue600: string;
150
- blue700: string;
151
- blue800: string;
152
- blue900: string;
153
- yellow50: string;
154
- yellow100: string;
155
- yellow200: string;
156
- yellow300: string;
157
- yellow400: string;
158
- yellow500: string;
159
- yellow600: string;
160
- yellow700: string;
161
- yellow800: string;
162
- yellow900: string;
163
- orange500: string;
164
- red50: string;
165
- red100: string;
166
- red200: string;
167
- red300: string;
168
- red400: string;
169
- red500: string;
170
- red600: string;
171
- red700: string;
172
- red800: string;
173
- red900: string;
174
- green50: string;
175
- green100: string;
176
- green200: string;
177
- green300: string;
178
- green400: string;
179
- green500: string;
180
- green600: string;
181
- green700: string;
182
- green800: string;
183
- green900: string;
184
- primaryTextOnLightBg: string;
185
- primaryBg: string;
186
- primaryBgHover: string;
187
- primaryTextOnWhite: string;
188
- bodyGray: string;
189
- hoverDarker: string;
190
- borderDarker: string;
191
- selectedDarker: string;
192
- selectedOnBodyGray: string;
193
- darkGrayBg: string;
194
- border: string;
195
- text: string;
196
- secondaryText: string;
197
- focusRing: string;
198
- };
199
- fontSizes: {
200
- xs: string;
201
- sm: string;
202
- md: string;
203
- lg: string;
204
- xl: string;
205
- "2xl": string;
206
- "3xl": string;
207
- };
208
- fontWeights: {
209
- normal: string;
210
- medium: string;
211
- bold: string;
212
- };
213
- space: {
214
- 1: string;
215
- 2: string;
216
- 3: string;
217
- 4: string;
218
- 6: string;
219
- 8: string;
220
- };
221
- shadows: {
222
- xs: string;
223
- sm: string;
224
- md: string;
225
- lg: string;
226
- overlayCard: string;
227
- };
228
- radii: {
229
- xs: string;
230
- sm: string;
231
- md: string;
232
- mdmd: string;
233
- full: string;
234
- };
235
- zIndices: {
236
- toast: number;
237
- overlayCard: number;
238
- };
239
- }, import("@stitches/react/types/config").DefaultThemeMap, {}> | undefined;
240
- }) | undefined;
124
+ contentProps?: ComponentProps<typeof DialogContent>;
241
125
  }) => import("react/jsx-runtime").JSX.Element;
242
- export declare const DialogHeader: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<RDialog.DialogTitleProps & import("react").RefAttributes<HTMLHeadingElement>>, {}, {
126
+ export declare const DialogHeader: import('@stitches/react/types/styled-component').StyledComponent<import('react').ForwardRefExoticComponent<RDialog.DialogTitleProps & import('react').RefAttributes<HTMLHeadingElement>>, {}, {
243
127
  lg: "(min-width: 1200px)";
244
128
  print: "print";
245
- }, import("@stitches/react/types/css-util").CSS<{
129
+ }, import('@stitches/react/types/css-util').CSS<{
246
130
  lg: "(min-width: 1200px)";
247
131
  print: "print";
248
132
  }, {
249
133
  colors: {
250
- gray50: string;
251
- gray100: string;
252
- gray200: string;
253
- gray300: string;
254
- gray400: string;
255
- gray500: string;
256
- gray600: string;
257
- gray700: string;
258
- gray800: string;
259
- gray900: string;
260
- blue50: string;
261
- blue100: string;
262
- blue200: string;
263
- blue300: string;
264
- blue400: string;
265
- blue500: string;
266
- blue600: string;
267
- blue700: string;
268
- blue800: string;
269
- blue900: string;
270
- yellow50: string;
271
- yellow100: string;
272
- yellow200: string;
273
- yellow300: string;
274
- yellow400: string;
275
- yellow500: string;
276
- yellow600: string;
277
- yellow700: string;
278
- yellow800: string;
279
- yellow900: string;
280
- orange500: string;
281
- red50: string;
282
- red100: string;
283
- red200: string;
284
- red300: string;
285
- red400: string;
286
- red500: string;
287
- red600: string;
288
- red700: string;
289
- red800: string;
290
- red900: string;
291
- green50: string;
292
- green100: string;
293
- green200: string;
294
- green300: string;
295
- green400: string;
296
- green500: string;
297
- green600: string;
298
- green700: string;
299
- green800: string;
300
- green900: string;
301
- primaryTextOnLightBg: string;
302
- primaryBg: string;
303
- primaryBgHover: string;
304
- primaryTextOnWhite: string;
305
- bodyGray: string;
306
- hoverDarker: string;
307
- borderDarker: string;
308
- selectedDarker: string;
309
- selectedOnBodyGray: string;
310
- darkGrayBg: string;
311
- border: string;
312
- text: string;
313
- secondaryText: string;
314
- focusRing: string;
134
+ gray50: "#F9FAFA";
135
+ gray100: "#EBEEEE";
136
+ gray200: "#CFD6D7";
137
+ gray300: "#B3BEC0";
138
+ gray400: "#97A6A8";
139
+ gray500: "#7C8E91";
140
+ gray600: "#627578";
141
+ gray700: "#4F5F61";
142
+ gray800: "#414D4F";
143
+ gray900: "#2C3435";
144
+ blue50: "#F7FBFB";
145
+ blue100: "#E3F0F2";
146
+ blue200: "#BADADF";
147
+ blue300: "#92C5CC";
148
+ blue400: "#67AEB8";
149
+ blue500: "#3C97A3";
150
+ blue600: "#1F7D8A";
151
+ blue700: "#19656F";
152
+ blue800: "#14525B";
153
+ blue900: "#0E383E";
154
+ yellow50: "#FDFAEF";
155
+ yellow100: "#F9EDCA";
156
+ yellow200: "#EFD27A";
157
+ yellow300: "#E5B626";
158
+ yellow400: "#C89E1C";
159
+ yellow500: "#AA8618";
160
+ yellow600: "#8C6E14";
161
+ yellow700: "#715910";
162
+ yellow800: "#5C490D";
163
+ yellow900: "#3E3109";
164
+ orange500: "#D1721C";
165
+ red50: "#FDF9F9";
166
+ red100: "#F7EBEB";
167
+ red200: "#EBCECD";
168
+ red300: "#DFB1B0";
169
+ red400: "#D39392";
170
+ red500: "#C67473";
171
+ red600: "#B85250";
172
+ red700: "#A92F2D";
173
+ red800: "#901F1E";
174
+ red900: "#631614";
175
+ green50: "#F8FAF9";
176
+ green100: "#E7F0EA";
177
+ green200: "#C5D9CB";
178
+ green300: "#A4C4AD";
179
+ green400: "#82AD8D";
180
+ green500: "#60976F";
181
+ green600: "#3C7F4E";
182
+ green700: "#296839";
183
+ green800: "#21552F";
184
+ green900: "#163920";
185
+ primaryTextOnLightBg: "#194b58";
186
+ primaryBg: "$blue600";
187
+ primaryBgHover: "$blue700";
188
+ primaryTextOnWhite: "$blue600";
189
+ bodyGray: "$gray100";
190
+ hoverDarker: "hsla(214deg, 25%, 21%, 0.06)";
191
+ borderDarker: "hsla(214deg, 25%, 21%, 0.1)";
192
+ selectedDarker: "hsla(214deg, 25%, 21%, 0.06)";
193
+ selectedOnBodyGray: "hsl(214deg, 35%, 80%)";
194
+ darkGrayBg: "#1f2937";
195
+ border: "hsl(214deg, 25%, 80%)";
196
+ text: "#1f2937";
197
+ secondaryText: "$gray500";
198
+ focusRing: "hsla(214deg, 15%, 10%, 0.6)";
315
199
  };
316
200
  fontSizes: {
317
- xs: string;
318
- sm: string;
319
- md: string;
320
- lg: string;
321
- xl: string;
322
- "2xl": string;
323
- "3xl": string;
201
+ xs: "0.75rem";
202
+ sm: "0.875rem";
203
+ md: "1rem";
204
+ lg: "1.125rem";
205
+ xl: "1.25rem";
206
+ "2xl": "1.5rem";
207
+ "3xl": "1.875rem";
324
208
  };
325
209
  fontWeights: {
326
- normal: string;
327
- medium: string;
328
- bold: string;
210
+ normal: "var(--ui-font-weight-normal)";
211
+ medium: "var(--ui-font-weight-semibold)";
212
+ bold: "var(--ui-font-weight-bold)";
329
213
  };
330
214
  space: {
331
- 1: string;
332
- 2: string;
333
- 3: string;
334
- 4: string;
335
- 6: string;
336
- 8: string;
215
+ 1: "0.25rem";
216
+ 2: "0.5rem";
217
+ 3: "0.75rem";
218
+ 4: "1rem";
219
+ 6: "1.5rem";
220
+ 8: "2rem";
337
221
  };
338
222
  shadows: {
339
- xs: string;
340
- sm: string;
341
- md: string;
342
- lg: string;
343
- overlayCard: string;
223
+ xs: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
224
+ sm: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
225
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
226
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
227
+ overlayCard: "0 5px 50px 0px rgb(0 0 0 / 0.15), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
344
228
  };
345
229
  radii: {
346
- xs: string;
347
- sm: string;
348
- md: string;
349
- mdmd: string;
350
- full: string;
230
+ xs: "0.125rem";
231
+ sm: "0.25rem";
232
+ md: "0.5rem";
233
+ mdmd: "calc(0.5rem - 0.125rem)";
234
+ full: "9999px";
351
235
  };
352
236
  zIndices: {
353
237
  toast: number;
354
238
  overlayCard: number;
355
239
  };
356
- }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
357
- export declare const DialogActions: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
240
+ }, import('@stitches/react/types/config').DefaultThemeMap, {}>>;
241
+ export declare const DialogActions: import('@stitches/react/types/styled-component').StyledComponent<"div", {}, {
358
242
  lg: "(min-width: 1200px)";
359
243
  print: "print";
360
- }, import("@stitches/react/types/css-util").CSS<{
244
+ }, import('@stitches/react/types/css-util').CSS<{
361
245
  lg: "(min-width: 1200px)";
362
246
  print: "print";
363
247
  }, {
364
248
  colors: {
365
- gray50: string;
366
- gray100: string;
367
- gray200: string;
368
- gray300: string;
369
- gray400: string;
370
- gray500: string;
371
- gray600: string;
372
- gray700: string;
373
- gray800: string;
374
- gray900: string;
375
- blue50: string;
376
- blue100: string;
377
- blue200: string;
378
- blue300: string;
379
- blue400: string;
380
- blue500: string;
381
- blue600: string;
382
- blue700: string;
383
- blue800: string;
384
- blue900: string;
385
- yellow50: string;
386
- yellow100: string;
387
- yellow200: string;
388
- yellow300: string;
389
- yellow400: string;
390
- yellow500: string;
391
- yellow600: string;
392
- yellow700: string;
393
- yellow800: string;
394
- yellow900: string;
395
- orange500: string;
396
- red50: string;
397
- red100: string;
398
- red200: string;
399
- red300: string;
400
- red400: string;
401
- red500: string;
402
- red600: string;
403
- red700: string;
404
- red800: string;
405
- red900: string;
406
- green50: string;
407
- green100: string;
408
- green200: string;
409
- green300: string;
410
- green400: string;
411
- green500: string;
412
- green600: string;
413
- green700: string;
414
- green800: string;
415
- green900: string;
416
- primaryTextOnLightBg: string;
417
- primaryBg: string;
418
- primaryBgHover: string;
419
- primaryTextOnWhite: string;
420
- bodyGray: string;
421
- hoverDarker: string;
422
- borderDarker: string;
423
- selectedDarker: string;
424
- selectedOnBodyGray: string;
425
- darkGrayBg: string;
426
- border: string;
427
- text: string;
428
- secondaryText: string;
429
- focusRing: string;
249
+ gray50: "#F9FAFA";
250
+ gray100: "#EBEEEE";
251
+ gray200: "#CFD6D7";
252
+ gray300: "#B3BEC0";
253
+ gray400: "#97A6A8";
254
+ gray500: "#7C8E91";
255
+ gray600: "#627578";
256
+ gray700: "#4F5F61";
257
+ gray800: "#414D4F";
258
+ gray900: "#2C3435";
259
+ blue50: "#F7FBFB";
260
+ blue100: "#E3F0F2";
261
+ blue200: "#BADADF";
262
+ blue300: "#92C5CC";
263
+ blue400: "#67AEB8";
264
+ blue500: "#3C97A3";
265
+ blue600: "#1F7D8A";
266
+ blue700: "#19656F";
267
+ blue800: "#14525B";
268
+ blue900: "#0E383E";
269
+ yellow50: "#FDFAEF";
270
+ yellow100: "#F9EDCA";
271
+ yellow200: "#EFD27A";
272
+ yellow300: "#E5B626";
273
+ yellow400: "#C89E1C";
274
+ yellow500: "#AA8618";
275
+ yellow600: "#8C6E14";
276
+ yellow700: "#715910";
277
+ yellow800: "#5C490D";
278
+ yellow900: "#3E3109";
279
+ orange500: "#D1721C";
280
+ red50: "#FDF9F9";
281
+ red100: "#F7EBEB";
282
+ red200: "#EBCECD";
283
+ red300: "#DFB1B0";
284
+ red400: "#D39392";
285
+ red500: "#C67473";
286
+ red600: "#B85250";
287
+ red700: "#A92F2D";
288
+ red800: "#901F1E";
289
+ red900: "#631614";
290
+ green50: "#F8FAF9";
291
+ green100: "#E7F0EA";
292
+ green200: "#C5D9CB";
293
+ green300: "#A4C4AD";
294
+ green400: "#82AD8D";
295
+ green500: "#60976F";
296
+ green600: "#3C7F4E";
297
+ green700: "#296839";
298
+ green800: "#21552F";
299
+ green900: "#163920";
300
+ primaryTextOnLightBg: "#194b58";
301
+ primaryBg: "$blue600";
302
+ primaryBgHover: "$blue700";
303
+ primaryTextOnWhite: "$blue600";
304
+ bodyGray: "$gray100";
305
+ hoverDarker: "hsla(214deg, 25%, 21%, 0.06)";
306
+ borderDarker: "hsla(214deg, 25%, 21%, 0.1)";
307
+ selectedDarker: "hsla(214deg, 25%, 21%, 0.06)";
308
+ selectedOnBodyGray: "hsl(214deg, 35%, 80%)";
309
+ darkGrayBg: "#1f2937";
310
+ border: "hsl(214deg, 25%, 80%)";
311
+ text: "#1f2937";
312
+ secondaryText: "$gray500";
313
+ focusRing: "hsla(214deg, 15%, 10%, 0.6)";
430
314
  };
431
315
  fontSizes: {
432
- xs: string;
433
- sm: string;
434
- md: string;
435
- lg: string;
436
- xl: string;
437
- "2xl": string;
438
- "3xl": string;
316
+ xs: "0.75rem";
317
+ sm: "0.875rem";
318
+ md: "1rem";
319
+ lg: "1.125rem";
320
+ xl: "1.25rem";
321
+ "2xl": "1.5rem";
322
+ "3xl": "1.875rem";
439
323
  };
440
324
  fontWeights: {
441
- normal: string;
442
- medium: string;
443
- bold: string;
325
+ normal: "var(--ui-font-weight-normal)";
326
+ medium: "var(--ui-font-weight-semibold)";
327
+ bold: "var(--ui-font-weight-bold)";
444
328
  };
445
329
  space: {
446
- 1: string;
447
- 2: string;
448
- 3: string;
449
- 4: string;
450
- 6: string;
451
- 8: string;
330
+ 1: "0.25rem";
331
+ 2: "0.5rem";
332
+ 3: "0.75rem";
333
+ 4: "1rem";
334
+ 6: "1.5rem";
335
+ 8: "2rem";
452
336
  };
453
337
  shadows: {
454
- xs: string;
455
- sm: string;
456
- md: string;
457
- lg: string;
458
- overlayCard: string;
338
+ xs: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
339
+ sm: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
340
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
341
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
342
+ overlayCard: "0 5px 50px 0px rgb(0 0 0 / 0.15), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
459
343
  };
460
344
  radii: {
461
- xs: string;
462
- sm: string;
463
- md: string;
464
- mdmd: string;
465
- full: string;
345
+ xs: "0.125rem";
346
+ sm: "0.25rem";
347
+ md: "0.5rem";
348
+ mdmd: "calc(0.5rem - 0.125rem)";
349
+ full: "9999px";
466
350
  };
467
351
  zIndices: {
468
352
  toast: number;
469
353
  overlayCard: number;
470
354
  };
471
- }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
355
+ }, import('@stitches/react/types/config').DefaultThemeMap, {}>>;
472
356
  export {};