@arkitektbedriftene/fe-lib 4.3.2 → 5.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +100 -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 +452 -432
  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,17 +1,16 @@
1
- /// <reference types="react" />
2
- import { type OffsetOptions, type Placement, offset, type UseRoleProps } from "@floating-ui/react";
3
- import { type OverlayCardProps } from "./OverlayCard";
1
+ import { OffsetOptions, Placement, UseRoleProps } from '@floating-ui/react';
2
+ import { OverlayCardProps } from './OverlayCard';
4
3
  export declare const Popover: ({ children, offset: offsetOptions, open, onOpenChange, trigger, hoverDelay, placement, role: popoverRole, }: {
5
4
  children: React.ReactNode;
6
- offset?: OffsetOptions | undefined;
5
+ offset?: OffsetOptions;
7
6
  open: boolean;
8
7
  onOpenChange: (open: boolean) => void;
9
- trigger?: "click" | "hover" | undefined;
8
+ trigger?: "click" | "hover";
10
9
  hoverDelay?: number | {
11
10
  open: number;
12
11
  close: number;
13
- } | undefined;
14
- placement?: Placement | undefined;
12
+ };
13
+ placement?: Placement;
15
14
  role?: UseRoleProps["role"];
16
15
  }) => import("react/jsx-runtime").JSX.Element;
17
16
  export declare const PopoverTrigger: ({ children }: {
@@ -19,121 +18,5 @@ export declare const PopoverTrigger: ({ children }: {
19
18
  }) => import("react/jsx-runtime").JSX.Element;
20
19
  export declare const PopoverContent: ({ children, overlayCardProps }: {
21
20
  children: React.ReactNode;
22
- overlayCardProps?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "css"> & import("@stitches/react/types/styled-component").TransformProps<{}, {
23
- lg: "(min-width: 1200px)";
24
- print: "print";
25
- }> & {
26
- css?: import("@stitches/react/types/css-util").CSS<{
27
- lg: "(min-width: 1200px)";
28
- print: "print";
29
- }, {
30
- colors: {
31
- gray50: string;
32
- gray100: string;
33
- gray200: string;
34
- gray300: string;
35
- gray400: string;
36
- gray500: string;
37
- gray600: string;
38
- gray700: string;
39
- gray800: string;
40
- gray900: string;
41
- blue50: string;
42
- blue100: string;
43
- blue200: string;
44
- blue300: string;
45
- blue400: string;
46
- blue500: string;
47
- blue600: string;
48
- blue700: string;
49
- blue800: string;
50
- blue900: string;
51
- yellow50: string;
52
- yellow100: string;
53
- yellow200: string;
54
- yellow300: string;
55
- yellow400: string;
56
- yellow500: string;
57
- yellow600: string;
58
- yellow700: string;
59
- yellow800: string;
60
- yellow900: string;
61
- orange500: string;
62
- red50: string;
63
- red100: string;
64
- red200: string;
65
- red300: string;
66
- red400: string;
67
- red500: string;
68
- red600: string;
69
- red700: string;
70
- red800: string;
71
- red900: string;
72
- green50: string;
73
- green100: string;
74
- green200: string;
75
- green300: string;
76
- green400: string;
77
- green500: string;
78
- green600: string;
79
- green700: string;
80
- green800: string;
81
- green900: string;
82
- primaryTextOnLightBg: string;
83
- primaryBg: string;
84
- primaryBgHover: string;
85
- primaryTextOnWhite: string;
86
- bodyGray: string;
87
- hoverDarker: string;
88
- borderDarker: string;
89
- selectedDarker: string;
90
- selectedOnBodyGray: string;
91
- darkGrayBg: string;
92
- border: string;
93
- text: string;
94
- secondaryText: string;
95
- focusRing: string;
96
- };
97
- fontSizes: {
98
- xs: string;
99
- sm: string;
100
- md: string;
101
- lg: string;
102
- xl: string;
103
- "2xl": string;
104
- "3xl": string;
105
- };
106
- fontWeights: {
107
- normal: string;
108
- medium: string;
109
- bold: string;
110
- };
111
- space: {
112
- 1: string;
113
- 2: string;
114
- 3: string;
115
- 4: string;
116
- 6: string;
117
- 8: string;
118
- };
119
- shadows: {
120
- xs: string;
121
- sm: string;
122
- md: string;
123
- lg: string;
124
- overlayCard: string;
125
- };
126
- radii: {
127
- xs: string;
128
- sm: string;
129
- md: string;
130
- mdmd: string;
131
- full: string;
132
- };
133
- zIndices: {
134
- toast: number;
135
- overlayCard: number;
136
- };
137
- }, import("@stitches/react/types/config").DefaultThemeMap, {}> | undefined;
138
- }) | undefined;
21
+ overlayCardProps?: OverlayCardProps;
139
22
  }) => import("react/jsx-runtime").JSX.Element | null;
@@ -1,121 +1,120 @@
1
- /// <reference types="react" />
2
- export declare const Spinner: import("react").ForwardRefExoticComponent<Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "color" | "css" | "size"> & import("@stitches/react/types/styled-component").TransformProps<{
1
+ export declare const Spinner: import('react').ForwardRefExoticComponent<Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "color" | "css" | "size"> & import('@stitches/react/types/styled-component').TransformProps<{
3
2
  size?: "xs" | "sm" | "md" | "lg" | undefined;
4
3
  color?: "inherit" | "dark" | "light" | undefined;
5
4
  }, {
6
5
  lg: "(min-width: 1200px)";
7
6
  print: "print";
8
7
  }> & {
9
- css?: import("@stitches/react/types/css-util").CSS<{
8
+ css?: import('@stitches/react/types/css-util').CSS<{
10
9
  lg: "(min-width: 1200px)";
11
10
  print: "print";
12
11
  }, {
13
12
  colors: {
14
- gray50: string;
15
- gray100: string;
16
- gray200: string;
17
- gray300: string;
18
- gray400: string;
19
- gray500: string;
20
- gray600: string;
21
- gray700: string;
22
- gray800: string;
23
- gray900: string;
24
- blue50: string;
25
- blue100: string;
26
- blue200: string;
27
- blue300: string;
28
- blue400: string;
29
- blue500: string;
30
- blue600: string;
31
- blue700: string;
32
- blue800: string;
33
- blue900: string;
34
- yellow50: string;
35
- yellow100: string;
36
- yellow200: string;
37
- yellow300: string;
38
- yellow400: string;
39
- yellow500: string;
40
- yellow600: string;
41
- yellow700: string;
42
- yellow800: string;
43
- yellow900: string;
44
- orange500: string;
45
- red50: string;
46
- red100: string;
47
- red200: string;
48
- red300: string;
49
- red400: string;
50
- red500: string;
51
- red600: string;
52
- red700: string;
53
- red800: string;
54
- red900: string;
55
- green50: string;
56
- green100: string;
57
- green200: string;
58
- green300: string;
59
- green400: string;
60
- green500: string;
61
- green600: string;
62
- green700: string;
63
- green800: string;
64
- green900: string;
65
- primaryTextOnLightBg: string;
66
- primaryBg: string;
67
- primaryBgHover: string;
68
- primaryTextOnWhite: string;
69
- bodyGray: string;
70
- hoverDarker: string;
71
- borderDarker: string;
72
- selectedDarker: string;
73
- selectedOnBodyGray: string;
74
- darkGrayBg: string;
75
- border: string;
76
- text: string;
77
- secondaryText: string;
78
- focusRing: string;
13
+ gray50: "#F9FAFA";
14
+ gray100: "#EBEEEE";
15
+ gray200: "#CFD6D7";
16
+ gray300: "#B3BEC0";
17
+ gray400: "#97A6A8";
18
+ gray500: "#7C8E91";
19
+ gray600: "#627578";
20
+ gray700: "#4F5F61";
21
+ gray800: "#414D4F";
22
+ gray900: "#2C3435";
23
+ blue50: "#F7FBFB";
24
+ blue100: "#E3F0F2";
25
+ blue200: "#BADADF";
26
+ blue300: "#92C5CC";
27
+ blue400: "#67AEB8";
28
+ blue500: "#3C97A3";
29
+ blue600: "#1F7D8A";
30
+ blue700: "#19656F";
31
+ blue800: "#14525B";
32
+ blue900: "#0E383E";
33
+ yellow50: "#FDFAEF";
34
+ yellow100: "#F9EDCA";
35
+ yellow200: "#EFD27A";
36
+ yellow300: "#E5B626";
37
+ yellow400: "#C89E1C";
38
+ yellow500: "#AA8618";
39
+ yellow600: "#8C6E14";
40
+ yellow700: "#715910";
41
+ yellow800: "#5C490D";
42
+ yellow900: "#3E3109";
43
+ orange500: "#D1721C";
44
+ red50: "#FDF9F9";
45
+ red100: "#F7EBEB";
46
+ red200: "#EBCECD";
47
+ red300: "#DFB1B0";
48
+ red400: "#D39392";
49
+ red500: "#C67473";
50
+ red600: "#B85250";
51
+ red700: "#A92F2D";
52
+ red800: "#901F1E";
53
+ red900: "#631614";
54
+ green50: "#F8FAF9";
55
+ green100: "#E7F0EA";
56
+ green200: "#C5D9CB";
57
+ green300: "#A4C4AD";
58
+ green400: "#82AD8D";
59
+ green500: "#60976F";
60
+ green600: "#3C7F4E";
61
+ green700: "#296839";
62
+ green800: "#21552F";
63
+ green900: "#163920";
64
+ primaryTextOnLightBg: "#194b58";
65
+ primaryBg: "$blue600";
66
+ primaryBgHover: "$blue700";
67
+ primaryTextOnWhite: "$blue600";
68
+ bodyGray: "$gray100";
69
+ hoverDarker: "hsla(214deg, 25%, 21%, 0.06)";
70
+ borderDarker: "hsla(214deg, 25%, 21%, 0.1)";
71
+ selectedDarker: "hsla(214deg, 25%, 21%, 0.06)";
72
+ selectedOnBodyGray: "hsl(214deg, 35%, 80%)";
73
+ darkGrayBg: "#1f2937";
74
+ border: "hsl(214deg, 25%, 80%)";
75
+ text: "#1f2937";
76
+ secondaryText: "$gray500";
77
+ focusRing: "hsla(214deg, 15%, 10%, 0.6)";
79
78
  };
80
79
  fontSizes: {
81
- xs: string;
82
- sm: string;
83
- md: string;
84
- lg: string;
85
- xl: string;
86
- "2xl": string;
87
- "3xl": string;
80
+ xs: "0.75rem";
81
+ sm: "0.875rem";
82
+ md: "1rem";
83
+ lg: "1.125rem";
84
+ xl: "1.25rem";
85
+ "2xl": "1.5rem";
86
+ "3xl": "1.875rem";
88
87
  };
89
88
  fontWeights: {
90
- normal: string;
91
- medium: string;
92
- bold: string;
89
+ normal: "var(--ui-font-weight-normal)";
90
+ medium: "var(--ui-font-weight-semibold)";
91
+ bold: "var(--ui-font-weight-bold)";
93
92
  };
94
93
  space: {
95
- 1: string;
96
- 2: string;
97
- 3: string;
98
- 4: string;
99
- 6: string;
100
- 8: string;
94
+ 1: "0.25rem";
95
+ 2: "0.5rem";
96
+ 3: "0.75rem";
97
+ 4: "1rem";
98
+ 6: "1.5rem";
99
+ 8: "2rem";
101
100
  };
102
101
  shadows: {
103
- xs: string;
104
- sm: string;
105
- md: string;
106
- lg: string;
107
- overlayCard: string;
102
+ xs: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
103
+ sm: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
104
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
105
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
106
+ 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)";
108
107
  };
109
108
  radii: {
110
- xs: string;
111
- sm: string;
112
- md: string;
113
- mdmd: string;
114
- full: string;
109
+ xs: "0.125rem";
110
+ sm: "0.25rem";
111
+ md: "0.5rem";
112
+ mdmd: "calc(0.5rem - 0.125rem)";
113
+ full: "9999px";
115
114
  };
116
115
  zIndices: {
117
116
  toast: number;
118
117
  overlayCard: number;
119
118
  };
120
- }, import("@stitches/react/types/config").DefaultThemeMap, {}> | undefined;
121
- }, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
119
+ }, import('@stitches/react/types/config').DefaultThemeMap, {}> | undefined;
120
+ }, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
@@ -1,119 +1,119 @@
1
- export declare const Stack: import("@stitches/react/types/styled-component").StyledComponent<"div", {
1
+ export declare const Stack: import('@stitches/react/types/styled-component').StyledComponent<"div", {
2
2
  direction?: "column" | "row" | undefined;
3
3
  align?: "start" | "center" | undefined;
4
- gap?: 0 | 1 | "0" | "1" | "2" | "3" | 2 | 3 | 4 | "4" | "5" | "6" | "8" | 6 | 8 | 5 | 7 | "7" | undefined;
4
+ gap?: 0 | 3 | 1 | "0" | "1" | "2" | "3" | 2 | 4 | "4" | "5" | "6" | "8" | 6 | 8 | "7" | 5 | 7 | undefined;
5
5
  }, {
6
6
  lg: "(min-width: 1200px)";
7
7
  print: "print";
8
- }, import("@stitches/react/types/css-util").CSS<{
8
+ }, import('@stitches/react/types/css-util').CSS<{
9
9
  lg: "(min-width: 1200px)";
10
10
  print: "print";
11
11
  }, {
12
12
  colors: {
13
- gray50: string;
14
- gray100: string;
15
- gray200: string;
16
- gray300: string;
17
- gray400: string;
18
- gray500: string;
19
- gray600: string;
20
- gray700: string;
21
- gray800: string;
22
- gray900: string;
23
- blue50: string;
24
- blue100: string;
25
- blue200: string;
26
- blue300: string;
27
- blue400: string;
28
- blue500: string;
29
- blue600: string;
30
- blue700: string;
31
- blue800: string;
32
- blue900: string;
33
- yellow50: string;
34
- yellow100: string;
35
- yellow200: string;
36
- yellow300: string;
37
- yellow400: string;
38
- yellow500: string;
39
- yellow600: string;
40
- yellow700: string;
41
- yellow800: string;
42
- yellow900: string;
43
- orange500: string;
44
- red50: string;
45
- red100: string;
46
- red200: string;
47
- red300: string;
48
- red400: string;
49
- red500: string;
50
- red600: string;
51
- red700: string;
52
- red800: string;
53
- red900: string;
54
- green50: string;
55
- green100: string;
56
- green200: string;
57
- green300: string;
58
- green400: string;
59
- green500: string;
60
- green600: string;
61
- green700: string;
62
- green800: string;
63
- green900: string;
64
- primaryTextOnLightBg: string;
65
- primaryBg: string;
66
- primaryBgHover: string;
67
- primaryTextOnWhite: string;
68
- bodyGray: string;
69
- hoverDarker: string;
70
- borderDarker: string;
71
- selectedDarker: string;
72
- selectedOnBodyGray: string;
73
- darkGrayBg: string;
74
- border: string;
75
- text: string;
76
- secondaryText: string;
77
- focusRing: string;
13
+ gray50: "#F9FAFA";
14
+ gray100: "#EBEEEE";
15
+ gray200: "#CFD6D7";
16
+ gray300: "#B3BEC0";
17
+ gray400: "#97A6A8";
18
+ gray500: "#7C8E91";
19
+ gray600: "#627578";
20
+ gray700: "#4F5F61";
21
+ gray800: "#414D4F";
22
+ gray900: "#2C3435";
23
+ blue50: "#F7FBFB";
24
+ blue100: "#E3F0F2";
25
+ blue200: "#BADADF";
26
+ blue300: "#92C5CC";
27
+ blue400: "#67AEB8";
28
+ blue500: "#3C97A3";
29
+ blue600: "#1F7D8A";
30
+ blue700: "#19656F";
31
+ blue800: "#14525B";
32
+ blue900: "#0E383E";
33
+ yellow50: "#FDFAEF";
34
+ yellow100: "#F9EDCA";
35
+ yellow200: "#EFD27A";
36
+ yellow300: "#E5B626";
37
+ yellow400: "#C89E1C";
38
+ yellow500: "#AA8618";
39
+ yellow600: "#8C6E14";
40
+ yellow700: "#715910";
41
+ yellow800: "#5C490D";
42
+ yellow900: "#3E3109";
43
+ orange500: "#D1721C";
44
+ red50: "#FDF9F9";
45
+ red100: "#F7EBEB";
46
+ red200: "#EBCECD";
47
+ red300: "#DFB1B0";
48
+ red400: "#D39392";
49
+ red500: "#C67473";
50
+ red600: "#B85250";
51
+ red700: "#A92F2D";
52
+ red800: "#901F1E";
53
+ red900: "#631614";
54
+ green50: "#F8FAF9";
55
+ green100: "#E7F0EA";
56
+ green200: "#C5D9CB";
57
+ green300: "#A4C4AD";
58
+ green400: "#82AD8D";
59
+ green500: "#60976F";
60
+ green600: "#3C7F4E";
61
+ green700: "#296839";
62
+ green800: "#21552F";
63
+ green900: "#163920";
64
+ primaryTextOnLightBg: "#194b58";
65
+ primaryBg: "$blue600";
66
+ primaryBgHover: "$blue700";
67
+ primaryTextOnWhite: "$blue600";
68
+ bodyGray: "$gray100";
69
+ hoverDarker: "hsla(214deg, 25%, 21%, 0.06)";
70
+ borderDarker: "hsla(214deg, 25%, 21%, 0.1)";
71
+ selectedDarker: "hsla(214deg, 25%, 21%, 0.06)";
72
+ selectedOnBodyGray: "hsl(214deg, 35%, 80%)";
73
+ darkGrayBg: "#1f2937";
74
+ border: "hsl(214deg, 25%, 80%)";
75
+ text: "#1f2937";
76
+ secondaryText: "$gray500";
77
+ focusRing: "hsla(214deg, 15%, 10%, 0.6)";
78
78
  };
79
79
  fontSizes: {
80
- xs: string;
81
- sm: string;
82
- md: string;
83
- lg: string;
84
- xl: string;
85
- "2xl": string;
86
- "3xl": string;
80
+ xs: "0.75rem";
81
+ sm: "0.875rem";
82
+ md: "1rem";
83
+ lg: "1.125rem";
84
+ xl: "1.25rem";
85
+ "2xl": "1.5rem";
86
+ "3xl": "1.875rem";
87
87
  };
88
88
  fontWeights: {
89
- normal: string;
90
- medium: string;
91
- bold: string;
89
+ normal: "var(--ui-font-weight-normal)";
90
+ medium: "var(--ui-font-weight-semibold)";
91
+ bold: "var(--ui-font-weight-bold)";
92
92
  };
93
93
  space: {
94
- 1: string;
95
- 2: string;
96
- 3: string;
97
- 4: string;
98
- 6: string;
99
- 8: string;
94
+ 1: "0.25rem";
95
+ 2: "0.5rem";
96
+ 3: "0.75rem";
97
+ 4: "1rem";
98
+ 6: "1.5rem";
99
+ 8: "2rem";
100
100
  };
101
101
  shadows: {
102
- xs: string;
103
- sm: string;
104
- md: string;
105
- lg: string;
106
- overlayCard: string;
102
+ xs: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
103
+ sm: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
104
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
105
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
106
+ 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)";
107
107
  };
108
108
  radii: {
109
- xs: string;
110
- sm: string;
111
- md: string;
112
- mdmd: string;
113
- full: string;
109
+ xs: "0.125rem";
110
+ sm: "0.25rem";
111
+ md: "0.5rem";
112
+ mdmd: "calc(0.5rem - 0.125rem)";
113
+ full: "9999px";
114
114
  };
115
115
  zIndices: {
116
116
  toast: number;
117
117
  overlayCard: number;
118
118
  };
119
- }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
119
+ }, import('@stitches/react/types/config').DefaultThemeMap, {}>>;