@jeromefitz/design-system 4.2.0 → 4.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. package/{AlertDialog-ee362b59.d.ts → AlertDialog-efc39ae4.d.ts} +3 -2
  2. package/Announce-b311c213.d.ts +7 -0
  3. package/{Callout-a91a41d8.d.ts → Callout-c978a8d7.d.ts} +2 -1
  4. package/Caption-ae1e8b29.d.ts +7 -0
  5. package/{Carousel-f81083b2.d.ts → Carousel-f62f305d.d.ts} +6 -5
  6. package/{CommandMenu-bb0d6311.d.ts → CommandMenu-1ae9466e.d.ts} +3 -2
  7. package/{Dialog-12f5f63b.d.ts → Dialog-761861ae.d.ts} +2 -1
  8. package/{EmojiParser-36ff1262.d.ts → EmojiParser-e7bab872.d.ts} +4 -2
  9. package/Icon-55b276d7.d.ts +96 -0
  10. package/{NavigationMenu-900904d7.d.ts → NavigationMenu-6f7bd705.d.ts} +2 -1
  11. package/{Note-d2764283.d.ts → Note-afd77418.d.ts} +3 -1
  12. package/{PageHeading-c0cd9afd.d.ts → PageHeading-65c4ebd2.d.ts} +5 -4
  13. package/{Popover-0ed9b61a.d.ts → Popover-576f9624.d.ts} +2 -1
  14. package/ScrollArea-956dd2c0.d.ts +8 -0
  15. package/{Sheet-772a3ac6.d.ts → Sheet-9939339d.d.ts} +2 -1
  16. package/Spacer-b7b52ac3.d.ts +5 -0
  17. package/{Spotify-c2a68dcf.d.ts → Spotify-d4dcb0cd.d.ts} +3 -2
  18. package/{Tooltip-0d809b6c.d.ts → Tooltip-23cab6fc.d.ts} +2 -1
  19. package/{VisuallyHidden-25ba8420.d.ts → VisuallyHidden-6c2e2863.d.ts} +3 -1
  20. package/components/AlertDialog/index.d.ts +2 -1
  21. package/components/Announce/index.d.ts +2 -1
  22. package/components/Callout/index.d.ts +2 -1
  23. package/components/Caption/index.d.ts +2 -1
  24. package/components/Carousel/index.d.ts +2 -1
  25. package/components/CommandMenu/index.d.ts +2 -1
  26. package/components/Dialog/index.d.ts +2 -1
  27. package/components/Icon/index.d.ts +2 -1
  28. package/components/NavigationMenu/index.d.ts +2 -1
  29. package/components/Note/index.d.ts +2 -1
  30. package/components/PageHeading/index.d.ts +2 -1
  31. package/components/Popover/index.d.ts +2 -1
  32. package/components/ScrollArea/index.d.ts +2 -1
  33. package/components/Sheet/index.d.ts +2 -1
  34. package/components/Spacer/index.d.ts +2 -1
  35. package/components/Tooltip/index.d.ts +2 -1
  36. package/components/VisuallyHidden/index.d.ts +2 -1
  37. package/components/index.d.ts +18 -17
  38. package/custom/Card/index.d.ts +2 -1
  39. package/custom/Emoji/index.d.ts +2 -1
  40. package/custom/Hero/index.d.ts +6 -4
  41. package/custom/index.d.ts +3 -2
  42. package/index.d.ts +20 -19
  43. package/package.json +18 -18
  44. package/Announce-94b08fcf.d.ts +0 -5
  45. package/Caption-5bdd1afc.d.ts +0 -5
  46. package/Icon-464faa80.d.ts +0 -95
  47. package/ScrollArea-14b2feb8.d.ts +0 -6
  48. package/Spacer-94122963.d.ts +0 -3
@@ -1,15 +1,16 @@
1
1
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
2
2
  import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
3
3
  import * as react from 'react';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
4
5
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
5
6
 
6
7
  declare function Root({ children, ...props }: {
7
8
  [x: string]: any;
8
9
  children: any;
9
- }): JSX.Element;
10
+ }): react_jsx_runtime.JSX.Element;
10
11
  declare const AlertDialogDemo: ({ dialogText }: {
11
12
  dialogText: any;
12
- }) => JSX.Element;
13
+ }) => react_jsx_runtime.JSX.Element;
13
14
  declare const AlertDialog: typeof Root;
14
15
  declare const AlertDialogTrigger: react.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
15
16
  declare const AlertDialogContent: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogContentProps & react.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {}, {}, {}>>;
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare const Announce: ({ children }: {
4
+ children: any;
5
+ }) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { Announce as A };
@@ -1,3 +1,4 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
1
2
  import { ReactNode } from 'react';
2
3
 
3
4
  declare type CalloutVariant = 'error' | 'info' | 'note' | 'quote' | 'success' | 'warning';
@@ -7,6 +8,6 @@ interface CalloutProps {
7
8
  variant?: CalloutVariant;
8
9
  }
9
10
 
10
- declare const Callout: (props: CalloutProps) => JSX.Element;
11
+ declare const Callout: (props: CalloutProps) => react_jsx_runtime.JSX.Element;
11
12
 
12
13
  export { Callout as C, CalloutProps as a };
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare const Caption: ({ children }: {
4
+ children: any;
5
+ }) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { Caption as C };
@@ -1,12 +1,13 @@
1
1
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
2
2
  import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
3
3
  import * as _stitches_react_types_config from '@stitches/react/types/config';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
4
5
 
5
- declare const Carousel: (props: any) => JSX.Element;
6
- declare const CarouselSlideList: (props: any) => JSX.Element;
7
- declare const CarouselSlide: (props: any) => JSX.Element;
8
- declare const CarouselNext: (props: any) => JSX.Element;
9
- declare const CarouselPrevious: (props: any) => JSX.Element;
6
+ declare const Carousel: (props: any) => react_jsx_runtime.JSX.Element;
7
+ declare const CarouselSlideList: (props: any) => react_jsx_runtime.JSX.Element;
8
+ declare const CarouselSlide: (props: any) => react_jsx_runtime.JSX.Element;
9
+ declare const CarouselNext: (props: any) => react_jsx_runtime.JSX.Element;
10
+ declare const CarouselPrevious: (props: any) => react_jsx_runtime.JSX.Element;
10
11
  declare const CarouselArrowButton: _stitches_react_types_styled_component.StyledComponent<"button", {}, {
11
12
  bp1: string;
12
13
  bp2: string;
@@ -3,6 +3,7 @@ import * as _stitches_react_types_css_util from '@stitches/react/types/css-util'
3
3
  import * as _stitches_react_types_config from '@stitches/react/types/config';
4
4
  import * as react from 'react';
5
5
  import { ReactNode } from 'react';
6
+ import * as react_jsx_runtime from 'react/jsx-runtime';
6
7
 
7
8
  declare const _Command: any;
8
9
  declare const CommandInput: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "value"> & {
@@ -3214,13 +3215,13 @@ interface CommandMenuItemProps {
3214
3215
  shortcut?: string;
3215
3216
  value?: string | any;
3216
3217
  }
3217
- declare function CommandMenuItem({ children, onSelect, shortcut, value, }: CommandMenuItemProps): JSX.Element;
3218
+ declare function CommandMenuItem({ children, onSelect, shortcut, value, }: CommandMenuItemProps): react_jsx_runtime.JSX.Element;
3218
3219
  interface CommandMenuProps {
3219
3220
  children: ReactNode | any;
3220
3221
  open: boolean;
3221
3222
  onOpenChange: (open: boolean) => void;
3222
3223
  wrapperCss?: any;
3223
3224
  }
3224
- declare function CommandMenu({ children, open, onOpenChange, wrapperCss, }: CommandMenuProps): JSX.Element;
3225
+ declare function CommandMenu({ children, open, onOpenChange, wrapperCss, }: CommandMenuProps): react_jsx_runtime.JSX.Element;
3225
3226
 
3226
3227
  export { CommandInput as C, _Command as _, CommandTopShine as a, CommandBadge as b, CommandLoader as c, CommandList as d, CommandSeparator as e, CommandGroup as f, CommandEmpty as g, CommandShortCuts as h, CommandItem as i, CommandMenu as j, CommandMenuItem as k };
@@ -1,11 +1,12 @@
1
1
  import * as react from 'react';
2
2
  import { ComponentProps, ReactNode } from 'react';
3
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
4
  import * as DialogPrimitive from '@radix-ui/react-dialog';
4
5
 
5
6
  declare type DialogProps = ComponentProps<typeof DialogPrimitive.Root> & {
6
7
  children: ReactNode;
7
8
  };
8
- declare function Dialog({ children, ...props }: DialogProps): JSX.Element;
9
+ declare function Dialog({ children, ...props }: DialogProps): react_jsx_runtime.JSX.Element;
9
10
  declare const DialogTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
10
11
  declare const DialogClose: react.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & react.RefAttributes<HTMLButtonElement>>;
11
12
  declare const DialogTitle: react.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & react.RefAttributes<HTMLHeadingElement>>;
@@ -1,11 +1,13 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
1
3
  declare const Emoji: ({ character, margin }: {
2
4
  character: any;
3
5
  margin?: boolean;
4
- }) => JSX.Element;
6
+ }) => react_jsx_runtime.JSX.Element;
5
7
 
6
8
  declare const EmojiParser: ({ id, text }: {
7
9
  id: any;
8
10
  text: any;
9
- }) => JSX.Element;
11
+ }) => react_jsx_runtime.JSX.Element;
10
12
 
11
13
  export { Emoji as E, EmojiParser as a };
@@ -0,0 +1,96 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { I as IconProps } from './Icon.types-48a13108.js';
3
+
4
+ declare const Icon: {
5
+ (): void;
6
+ ArrowLeft: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
7
+ ArrowRight: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
8
+ ArrowTopRight: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
9
+ ArrowUturnLeft: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
10
+ Bell: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
11
+ Bookmark: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
12
+ BookmarkFilled: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
13
+ BookOpen: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
14
+ Calendar: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
15
+ CaretDown: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
16
+ CaretLeft: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
17
+ CaretRight: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
18
+ CaretSort: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
19
+ CaretUp: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
20
+ ChatBubble: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
21
+ Check: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
22
+ CheckCircled: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
23
+ ChevronDown: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
24
+ ChevronLeft: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
25
+ ChevronRight: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
26
+ ChevronUp: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
27
+ Clock: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
28
+ Cross1: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
29
+ Cross2: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
30
+ CrossCircled: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
31
+ Desktop: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
32
+ Enter: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
33
+ EnvelopeOpen: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
34
+ ExclamationTriangle: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
35
+ Exit: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
36
+ ExternalLink: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
37
+ FontBold: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
38
+ FontItalic: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
39
+ Gear: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
40
+ GitHubLogo: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
41
+ HamburgerMenu: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
42
+ Home: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
43
+ IdCard: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
44
+ Image: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
45
+ InfoCircled: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
46
+ InstagramLogo: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
47
+ Link1: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
48
+ LinkedInLogo: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
49
+ ListBullet: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
50
+ LocationMarker: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
51
+ MagnifyingGlass: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
52
+ Map: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
53
+ Microphone: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
54
+ Moon: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
55
+ MusicNote: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
56
+ Pencil1: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
57
+ Pencil2: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
58
+ Quote: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
59
+ Return: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
60
+ Share1: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
61
+ SpeakerModerate: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
62
+ SpeakerOff: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
63
+ Star: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
64
+ Strikethrough: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
65
+ Sun: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
66
+ Tag: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
67
+ TextAlignCenter: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
68
+ TextAlignJustify: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
69
+ TextAlignLeft: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
70
+ TextAlignRight: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
71
+ Ticket: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
72
+ TwitterLogo: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
73
+ /**
74
+ * Customizations and Shorthand
75
+ */
76
+ Alert: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
77
+ Book: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
78
+ Cross: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
79
+ Error: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
80
+ GitHub: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
81
+ Info: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
82
+ Instagram: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
83
+ Link: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
84
+ LinkedIn: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
85
+ MusicalNote: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
86
+ Pencil: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
87
+ PencilWithPaper: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
88
+ Reply: ({ css, label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
89
+ SocialShare: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
90
+ Success: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
91
+ Twitter: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
92
+ Warning: ({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
93
+ displayName: string;
94
+ };
95
+
96
+ export { Icon as I };
@@ -2,6 +2,7 @@ import * as react from 'react';
2
2
  import { ComponentProps } from 'react';
3
3
  import { CSS } from './lib/stitches.config.js';
4
4
  import * as framer_motion from 'framer-motion';
5
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
6
  import { I as IconProps } from './Icon.types-48a13108.js';
6
7
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
7
8
  import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
@@ -744,7 +745,7 @@ declare const NavigationMenuTrigger: _stitches_react_types_styled_component.Styl
744
745
  backgroundClip: string | number | _stitches_react_types_css_util.WithScaleValue<"backgroundClip">;
745
746
  };
746
747
  }>>;
747
- declare const NavigationMenuCaret: _stitches_react_types_styled_component.StyledComponent<({ label, ...props }: IconProps) => JSX.Element, {}, {
748
+ declare const NavigationMenuCaret: _stitches_react_types_styled_component.StyledComponent<({ label, ...props }: IconProps) => react_jsx_runtime.JSX.Element, {}, {
748
749
  bp1: string;
749
750
  bp2: string;
750
751
  bp3: string;
@@ -1,6 +1,8 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
1
3
  declare const Note: ({ children, label }: {
2
4
  children: any;
3
5
  label?: string;
4
- }) => JSX.Element;
6
+ }) => react_jsx_runtime.JSX.Element;
5
7
 
6
8
  export { Note as N };
@@ -1,13 +1,14 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
1
2
  import { P as ParagraphWeightVariants } from './Paragraph.types-e041945f.js';
2
3
 
3
- declare const SkeletonTitle: () => JSX.Element;
4
- declare const SkeletonDescription: () => JSX.Element;
5
- declare const SkeletonHeading: () => JSX.Element;
4
+ declare const SkeletonTitle: () => react_jsx_runtime.JSX.Element;
5
+ declare const SkeletonDescription: () => react_jsx_runtime.JSX.Element;
6
+ declare const SkeletonHeading: () => react_jsx_runtime.JSX.Element;
6
7
  declare type PageHeadingProps = {
7
8
  title: string;
8
9
  description: string;
9
10
  weight?: ParagraphWeightVariants;
10
11
  };
11
- declare const PageHeading: ({ title, description, weight }: PageHeadingProps) => JSX.Element;
12
+ declare const PageHeading: ({ title, description, weight }: PageHeadingProps) => react_jsx_runtime.JSX.Element;
12
13
 
13
14
  export { PageHeading as P, SkeletonHeading as S, SkeletonTitle as a, SkeletonDescription as b };
@@ -1,12 +1,13 @@
1
1
  import * as react from 'react';
2
2
  import { ComponentProps, ReactNode } from 'react';
3
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
4
  import * as PopoverPrimitive from '@radix-ui/react-popover';
4
5
  import { CSS } from './lib/stitches.config.js';
5
6
 
6
7
  declare type PopoverProps = ComponentProps<typeof PopoverPrimitive.Root> & {
7
8
  children: ReactNode;
8
9
  };
9
- declare function Popover({ children, ...props }: PopoverProps): JSX.Element;
10
+ declare function Popover({ children, ...props }: PopoverProps): react_jsx_runtime.JSX.Element;
10
11
  declare type PopoverContentPrimitiveProps = ComponentProps<typeof PopoverPrimitive.Content>;
11
12
  declare type PopoverContentProps = PopoverContentPrimitiveProps & {
12
13
  css?: CSS;
@@ -0,0 +1,8 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare type ScrollAreaProps = {
4
+ children: any;
5
+ };
6
+ declare const ScrollArea: (props: ScrollAreaProps) => react_jsx_runtime.JSX.Element;
7
+
8
+ export { ScrollArea as S };
@@ -1,5 +1,6 @@
1
1
  import * as react from 'react';
2
2
  import { ComponentProps } from 'react';
3
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
4
  import * as DialogPrimitive from '@radix-ui/react-dialog';
4
5
  import { CSS } from './lib/stitches.config.js';
5
6
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
@@ -798,7 +799,7 @@ declare type SheetContentProps = DialogContentPrimitiveProps & SheetContentVaria
798
799
  css?: CSS;
799
800
  };
800
801
 
801
- declare function Sheet({ children, ...props }: SheetProps): JSX.Element;
802
+ declare function Sheet({ children, ...props }: SheetProps): react_jsx_runtime.JSX.Element;
802
803
  interface SheetContentPropsExtended extends SheetContentProps {
803
804
  handleIsSheetOpen: (k: boolean) => void;
804
805
  }
@@ -0,0 +1,5 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare const Spacer: () => react_jsx_runtime.JSX.Element;
4
+
5
+ export { Spacer as S };
@@ -1,6 +1,7 @@
1
1
  import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
2
2
  import * as _stitches_react_types_config from '@stitches/react/types/config';
3
3
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
4
5
 
5
6
  declare const css_card: {
6
7
  backgroundColor: string;
@@ -3757,9 +3758,9 @@ declare const CardSpotify: ({ base64, children, image, imageLabel, slug, }: {
3757
3758
  image: any;
3758
3759
  imageLabel?: string;
3759
3760
  slug: any;
3760
- }) => JSX.Element;
3761
+ }) => react_jsx_runtime.JSX.Element;
3761
3762
  declare const CardOuter: ({ children }: {
3762
3763
  children: any;
3763
- }) => JSX.Element;
3764
+ }) => react_jsx_runtime.JSX.Element;
3764
3765
 
3765
3766
  export { Card as C, ImageBlur as I, CardContent as a, CardImage as b, css_card as c, CardImageContainer as d, CardLink as e, CardMeta as f, CardTitle as g, CardSpotify as h, CardOuter as i };
@@ -1,3 +1,4 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
1
2
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
2
3
  import { ComponentProps, ReactElement, ReactNode } from 'react';
3
4
 
@@ -7,6 +8,6 @@ declare type TooltipProps = ComponentProps<typeof TooltipPrimitive.Root> & Compo
7
8
  multiline?: boolean;
8
9
  };
9
10
 
10
- declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, multiline, ...props }: TooltipProps): JSX.Element;
11
+ declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, multiline, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
11
12
 
12
13
  export { Tooltip as T };
@@ -1,6 +1,8 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
1
3
  declare const VisuallyHidden: ({ children, ...props }: {
2
4
  [x: string]: any;
3
5
  children: any;
4
- }) => JSX.Element;
6
+ }) => react_jsx_runtime.JSX.Element;
5
7
 
6
8
  export { VisuallyHidden as V };
@@ -1,5 +1,6 @@
1
- export { A as AlertDialog, e as AlertDialogAction, f as AlertDialogCancel, b as AlertDialogContent, g as AlertDialogDemo, d as AlertDialogDescription, c as AlertDialogTitle, a as AlertDialogTrigger } from '../../AlertDialog-ee362b59.js';
1
+ export { A as AlertDialog, e as AlertDialogAction, f as AlertDialogCancel, b as AlertDialogContent, g as AlertDialogDemo, d as AlertDialogDescription, c as AlertDialogTitle, a as AlertDialogTrigger } from '../../AlertDialog-efc39ae4.js';
2
2
  import '@stitches/react/types/styled-component';
3
3
  import '@stitches/react/types/css-util';
4
4
  import 'react';
5
+ import 'react/jsx-runtime';
5
6
  import '@radix-ui/react-alert-dialog';
@@ -1 +1,2 @@
1
- export { A as Announce } from '../../Announce-94b08fcf.js';
1
+ export { A as Announce } from '../../Announce-b311c213.js';
2
+ import 'react/jsx-runtime';
@@ -1,2 +1,3 @@
1
- export { C as Callout, a as CalloutProps } from '../../Callout-a91a41d8.js';
1
+ export { C as Callout, a as CalloutProps } from '../../Callout-c978a8d7.js';
2
+ import 'react/jsx-runtime';
2
3
  import 'react';
@@ -1 +1,2 @@
1
- export { C as Caption } from '../../Caption-5bdd1afc.js';
1
+ export { C as Caption } from '../../Caption-ae1e8b29.js';
2
+ import 'react/jsx-runtime';
@@ -1,4 +1,5 @@
1
- export { C as Carousel, a as CarouselArrowButton, d as CarouselNext, e as CarouselPrevious, c as CarouselSlide, b as CarouselSlideList } from '../../Carousel-f81083b2.js';
1
+ export { C as Carousel, a as CarouselArrowButton, d as CarouselNext, e as CarouselPrevious, c as CarouselSlide, b as CarouselSlideList } from '../../Carousel-f62f305d.js';
2
2
  import '@stitches/react/types/styled-component';
3
3
  import '@stitches/react/types/css-util';
4
4
  import '@stitches/react/types/config';
5
+ import 'react/jsx-runtime';
@@ -1,5 +1,6 @@
1
- export { _ as Command, b as CommandBadge, g as CommandEmpty, f as CommandGroup, C as CommandInput, i as CommandItem, d as CommandList, c as CommandLoader, j as CommandMenu, k as CommandMenuItem, e as CommandSeparator, h as CommandShortCuts, a as CommandTopShine } from '../../CommandMenu-bb0d6311.js';
1
+ export { _ as Command, b as CommandBadge, g as CommandEmpty, f as CommandGroup, C as CommandInput, i as CommandItem, d as CommandList, c as CommandLoader, j as CommandMenu, k as CommandMenuItem, e as CommandSeparator, h as CommandShortCuts, a as CommandTopShine } from '../../CommandMenu-1ae9466e.js';
2
2
  import '@stitches/react/types/styled-component';
3
3
  import '@stitches/react/types/css-util';
4
4
  import '@stitches/react/types/config';
5
5
  import 'react';
6
+ import 'react/jsx-runtime';
@@ -1,3 +1,4 @@
1
- export { D as Dialog, b as DialogClose, d as DialogDescription, c as DialogTitle, a as DialogTrigger } from '../../Dialog-12f5f63b.js';
1
+ export { D as Dialog, b as DialogClose, d as DialogDescription, c as DialogTitle, a as DialogTrigger } from '../../Dialog-761861ae.js';
2
2
  import 'react';
3
+ import 'react/jsx-runtime';
3
4
  import '@radix-ui/react-dialog';
@@ -1,5 +1,6 @@
1
- export { I as Icon } from '../../Icon-464faa80.js';
1
+ export { I as Icon } from '../../Icon-55b276d7.js';
2
2
  export { I as IconProps } from '../../Icon.types-48a13108.js';
3
+ import 'react/jsx-runtime';
3
4
  import 'react';
4
5
  import '../../lib/stitches.config.js';
5
6
  import '@stitches/react/types/theme';
@@ -1,4 +1,4 @@
1
- export { F as Focused, N as NavigationMenu, a as NavigationMenuCaret, b as NavigationMenuContent, c as NavigationMenuIndicator, d as NavigationMenuIndicatorWithArrow, e as NavigationMenuItem, f as NavigationMenuLink, g as NavigationMenuLinkText, h as NavigationMenuLinkTitle, i as NavigationMenuList, j as NavigationMenuListContent, k as NavigationMenuListItem, l as NavigationMenuListItemFocus, m as NavigationMenuListItemLink, n as NavigationMenuListItemSelect, o as NavigationMenuTrigger, p as NavigationMenuTriggerWithCaret, q as NavigationMenuViewport, r as NavigationMenuViewportPosition, S as Selected } from '../../NavigationMenu-900904d7.js';
1
+ export { F as Focused, N as NavigationMenu, a as NavigationMenuCaret, b as NavigationMenuContent, c as NavigationMenuIndicator, d as NavigationMenuIndicatorWithArrow, e as NavigationMenuItem, f as NavigationMenuLink, g as NavigationMenuLinkText, h as NavigationMenuLinkTitle, i as NavigationMenuList, j as NavigationMenuListContent, k as NavigationMenuListItem, l as NavigationMenuListItemFocus, m as NavigationMenuListItemLink, n as NavigationMenuListItemSelect, o as NavigationMenuTrigger, p as NavigationMenuTriggerWithCaret, q as NavigationMenuViewport, r as NavigationMenuViewportPosition, S as Selected } from '../../NavigationMenu-6f7bd705.js';
2
2
  import 'react';
3
3
  import '../../lib/stitches.config.js';
4
4
  import '@stitches/react/types/theme';
@@ -8,6 +8,7 @@ import '@stitches/react/types/css-util';
8
8
  import '@stitches/react/types/config';
9
9
  import '@stitches/react';
10
10
  import 'framer-motion';
11
+ import 'react/jsx-runtime';
11
12
  import '../../Icon.types-48a13108.js';
12
13
  import '@stitches/react/types/styled-component';
13
14
  import '@radix-ui/react-navigation-menu';
@@ -1 +1,2 @@
1
- export { N as Note } from '../../Note-d2764283.js';
1
+ export { N as Note } from '../../Note-afd77418.js';
2
+ import 'react/jsx-runtime';
@@ -1,4 +1,5 @@
1
- export { P as PageHeading, b as SkeletonDescription, S as SkeletonHeading, a as SkeletonTitle } from '../../PageHeading-c0cd9afd.js';
1
+ export { P as PageHeading, b as SkeletonDescription, S as SkeletonHeading, a as SkeletonTitle } from '../../PageHeading-65c4ebd2.js';
2
+ import 'react/jsx-runtime';
2
3
  import '../../Paragraph.types-e041945f.js';
3
4
  import 'react';
4
5
  import '../../lib/stitches.config.js';
@@ -1,5 +1,6 @@
1
- export { P as Popover, a as PopoverContent, b as PopoverTrigger } from '../../Popover-0ed9b61a.js';
1
+ export { P as Popover, a as PopoverContent, b as PopoverTrigger } from '../../Popover-576f9624.js';
2
2
  import 'react';
3
+ import 'react/jsx-runtime';
3
4
  import '@radix-ui/react-popover';
4
5
  import '../../lib/stitches.config.js';
5
6
  import '@stitches/react/types/theme';
@@ -1 +1,2 @@
1
- export { S as ScrollArea } from '../../ScrollArea-14b2feb8.js';
1
+ export { S as ScrollArea } from '../../ScrollArea-956dd2c0.js';
2
+ import 'react/jsx-runtime';
@@ -1,5 +1,6 @@
1
- export { S as Sheet, a as SheetClose, b as SheetContent, c as SheetDescription, d as SheetPortal, e as SheetTitle, f as SheetTrigger, g as StyledCloseButton, h as StyledContent, i as StyledOverlay } from '../../Sheet-772a3ac6.js';
1
+ export { S as Sheet, a as SheetClose, b as SheetContent, c as SheetDescription, d as SheetPortal, e as SheetTitle, f as SheetTrigger, g as StyledCloseButton, h as StyledContent, i as StyledOverlay } from '../../Sheet-9939339d.js';
2
2
  import 'react';
3
+ import 'react/jsx-runtime';
3
4
  import '@radix-ui/react-dialog';
4
5
  import '../../lib/stitches.config.js';
5
6
  import '@stitches/react/types/theme';
@@ -1 +1,2 @@
1
- export { S as Spacer } from '../../Spacer-94122963.js';
1
+ export { S as Spacer } from '../../Spacer-b7b52ac3.js';
2
+ import 'react/jsx-runtime';
@@ -1,3 +1,4 @@
1
- export { T as Tooltip } from '../../Tooltip-0d809b6c.js';
1
+ export { T as Tooltip } from '../../Tooltip-23cab6fc.js';
2
+ import 'react/jsx-runtime';
2
3
  import '@radix-ui/react-tooltip';
3
4
  import 'react';
@@ -1 +1,2 @@
1
- export { V as VisuallyHidden } from '../../VisuallyHidden-25ba8420.js';
1
+ export { V as VisuallyHidden } from '../../VisuallyHidden-6c2e2863.js';
2
+ import 'react/jsx-runtime';
@@ -1,7 +1,7 @@
1
1
  export { A as Accordion, a as AccordionContent, b as AccordionItem, c as AccordionTrigger } from '../Accordion-2fc6cca7.js';
2
2
  export { A as Alert } from '../Alert-d01e69ba.js';
3
- export { A as AlertDialog, e as AlertDialogAction, f as AlertDialogCancel, b as AlertDialogContent, g as AlertDialogDemo, d as AlertDialogDescription, c as AlertDialogTitle, a as AlertDialogTrigger } from '../AlertDialog-ee362b59.js';
4
- export { A as Announce } from '../Announce-94b08fcf.js';
3
+ export { A as AlertDialog, e as AlertDialogAction, f as AlertDialogCancel, b as AlertDialogContent, g as AlertDialogDemo, d as AlertDialogDescription, c as AlertDialogTitle, a as AlertDialogTrigger } from '../AlertDialog-efc39ae4.js';
4
+ export { A as Announce } from '../Announce-b311c213.js';
5
5
  export { A as AppBar } from '../AppBar-70930f32.js';
6
6
  export { A as Avatar } from '../Avatar-df0b8f4a.js';
7
7
  export { B as Badge } from '../Badge-3a6b6459.js';
@@ -11,23 +11,23 @@ export { B as Box } from '../Box-7ec1f514.js';
11
11
  export { B as BoxGrab } from '../BoxGrab-b64a04f7.js';
12
12
  export { B as BoxLink } from '../BoxLink-3c2ff9e5.js';
13
13
  export { B as Button, a as ButtonDemo, b as ButtonIcon, c as ButtonMarketing } from '../ButtonDemo-adaa2802.js';
14
- export { C as Callout } from '../Callout-a91a41d8.js';
15
- export { C as Caption } from '../Caption-5bdd1afc.js';
14
+ export { C as Callout } from '../Callout-c978a8d7.js';
15
+ export { C as Caption } from '../Caption-ae1e8b29.js';
16
16
  export { C as Card } from '../Card-44490af0.js';
17
- export { C as Carousel, a as CarouselArrowButton, d as CarouselNext, e as CarouselPrevious, c as CarouselSlide, b as CarouselSlideList } from '../Carousel-f81083b2.js';
17
+ export { C as Carousel, a as CarouselArrowButton, d as CarouselNext, e as CarouselPrevious, c as CarouselSlide, b as CarouselSlideList } from '../Carousel-f62f305d.js';
18
18
  export { C as Checkbox } from '../Checkbox-2943787d.js';
19
19
  export { C as Code } from '../Code-1425e777.js';
20
- export { _ as Command, b as CommandBadge, g as CommandEmpty, f as CommandGroup, C as CommandInput, i as CommandItem, d as CommandList, c as CommandLoader, j as CommandMenu, k as CommandMenuItem, e as CommandSeparator, h as CommandShortCuts, a as CommandTopShine } from '../CommandMenu-bb0d6311.js';
20
+ export { _ as Command, b as CommandBadge, g as CommandEmpty, f as CommandGroup, C as CommandInput, i as CommandItem, d as CommandList, c as CommandLoader, j as CommandMenu, k as CommandMenuItem, e as CommandSeparator, h as CommandShortCuts, a as CommandTopShine } from '../CommandMenu-1ae9466e.js';
21
21
  export { C as ContextMenu, c as ContextMenuCheckboxItem, b as ContextMenuContent, d as ContextMenuGroup, e as ContextMenuItem, f as ContextMenuLabel, g as ContextMenuRadioGroup, h as ContextMenuRadioItem, i as ContextMenuSeparator, a as ContextMenuTrigger } from '../ContextMenu-6f333c0e.js';
22
22
  export { C as Container } from '../Container-b8b6e81c.js';
23
23
  export { C as ControlGroup } from '../ControlGroup-d06f4b62.js';
24
- export { D as Dialog, b as DialogClose, d as DialogDescription, c as DialogTitle, a as DialogTrigger } from '../Dialog-12f5f63b.js';
24
+ export { D as Dialog, b as DialogClose, d as DialogDescription, c as DialogTitle, a as DialogTrigger } from '../Dialog-761861ae.js';
25
25
  export { D as DropdownMenu, a as DropdownMenuArrow, b as DropdownMenuCheckboxItem, c as DropdownMenuContent, d as DropdownMenuGroup, e as DropdownMenuItem, f as DropdownMenuItemIndicator, g as DropdownMenuLabel, h as DropdownMenuRadioGroup, i as DropdownMenuRadioItem, j as DropdownMenuSeparator, l as DropdownMenuSub, m as DropdownMenuSubContent, n as DropdownMenuSubTrigger, k as DropdownMenuTrigger } from '../DropdownMenu-131b231b.js';
26
26
  export { F as Flex } from '../Flex-497e7617.js';
27
27
  export { F as FocusArea } from '../FocusArea-4cc67786.js';
28
28
  export { G as Grid } from '../Grid-6c8e8ecf.js';
29
29
  export { H as Heading } from '../Heading-31acb2e9.js';
30
- export { I as Icon } from '../Icon-464faa80.js';
30
+ export { I as Icon } from '../Icon-55b276d7.js';
31
31
  export { I as IconButton } from '../IconButton-f8ef5575.js';
32
32
  export { I as Image } from '../Image-cb60725d.js';
33
33
  export { K as Kbd } from '../Kbd-b8d2683e.js';
@@ -35,25 +35,25 @@ export { L as Label } from '../Label-2f40709b.js';
35
35
  export { L as Link } from '../Link-bf26a1c6.js';
36
36
  export { L as LoadingDots } from '../LoadingDots-22b6de1b.js';
37
37
  export { M as Menu, a as MenuCheckboxItem, b as MenuGroup, c as MenuItem, d as MenuLabel, e as MenuRadioGroup, f as MenuRadioItem, g as MenuSeparator } from '../Menu-b6f5de19.js';
38
- export { F as Focused, N as NavigationMenu, a as NavigationMenuCaret, b as NavigationMenuContent, c as NavigationMenuIndicator, d as NavigationMenuIndicatorWithArrow, e as NavigationMenuItem, f as NavigationMenuLink, g as NavigationMenuLinkText, h as NavigationMenuLinkTitle, i as NavigationMenuList, j as NavigationMenuListContent, k as NavigationMenuListItem, l as NavigationMenuListItemFocus, m as NavigationMenuListItemLink, n as NavigationMenuListItemSelect, o as NavigationMenuTrigger, p as NavigationMenuTriggerWithCaret, q as NavigationMenuViewport, r as NavigationMenuViewportPosition, S as Selected } from '../NavigationMenu-900904d7.js';
39
- export { N as Note } from '../Note-d2764283.js';
38
+ export { F as Focused, N as NavigationMenu, a as NavigationMenuCaret, b as NavigationMenuContent, c as NavigationMenuIndicator, d as NavigationMenuIndicatorWithArrow, e as NavigationMenuItem, f as NavigationMenuLink, g as NavigationMenuLinkText, h as NavigationMenuLinkTitle, i as NavigationMenuList, j as NavigationMenuListContent, k as NavigationMenuListItem, l as NavigationMenuListItemFocus, m as NavigationMenuListItemLink, n as NavigationMenuListItemSelect, o as NavigationMenuTrigger, p as NavigationMenuTriggerWithCaret, q as NavigationMenuViewport, r as NavigationMenuViewportPosition, S as Selected } from '../NavigationMenu-6f7bd705.js';
39
+ export { N as Note } from '../Note-afd77418.js';
40
40
  export { O as Overlay, o as overlayStyles } from '../Overlay.styles-6a4dd3e8.js';
41
- export { P as PageHeading, b as SkeletonDescription, S as SkeletonHeading, a as SkeletonTitle } from '../PageHeading-c0cd9afd.js';
41
+ export { P as PageHeading, b as SkeletonDescription, S as SkeletonHeading, a as SkeletonTitle } from '../PageHeading-65c4ebd2.js';
42
42
  export { P as Panel, p as panelStyles } from '../Panel.styles-491728d4.js';
43
43
  export { P as Paragraph } from '../Paragraph-b27206a0.js';
44
- export { P as Popover, a as PopoverContent, b as PopoverTrigger } from '../Popover-0ed9b61a.js';
44
+ export { P as Popover, a as PopoverContent, b as PopoverTrigger } from '../Popover-576f9624.js';
45
45
  export { P as ProgressBar } from '../ProgressBar-be6dbde1.js';
46
46
  export { R as Radio, a as RadioGroup } from '../Radio-0fdc85b9.js';
47
47
  export { R as RadioCard, a as RadioCardGroup } from '../RadioCard-b27e82fd.js';
48
48
  export { a as RadioGrid, R as RadioGridGroup } from '../RadioGrid-0c70db77.js';
49
- export { S as ScrollArea } from '../ScrollArea-14b2feb8.js';
49
+ export { S as ScrollArea } from '../ScrollArea-956dd2c0.js';
50
50
  export { S as Section } from '../Section-67cd986f.js';
51
51
  export { S as Select, d as SelectContent, f as SelectGroup, c as SelectIcon, g as SelectItem, i as SelectItemIndicator, h as SelectItemText, j as SelectLabel, m as SelectScrollDownButton, l as SelectScrollUpButton, k as SelectSeparator, a as SelectTrigger, b as SelectValue, e as SelectViewport } from '../Select-b2d8960c.js';
52
52
  export { S as Separator } from '../Separator-37db30e4.js';
53
- export { S as Sheet, a as SheetClose, b as SheetContent, c as SheetDescription, d as SheetPortal, e as SheetTitle, f as SheetTrigger, g as StyledCloseButton, h as StyledContent, i as StyledOverlay } from '../Sheet-772a3ac6.js';
53
+ export { S as Sheet, a as SheetClose, b as SheetContent, c as SheetDescription, d as SheetPortal, e as SheetTitle, f as SheetTrigger, g as StyledCloseButton, h as StyledContent, i as StyledOverlay } from '../Sheet-9939339d.js';
54
54
  export { S as Skeleton } from '../Skeleton-5eaa4deb.js';
55
55
  export { a as Slider, S as StyledSlider } from '../Slider-f7c0b154.js';
56
- export { S as Spacer } from '../Spacer-94122963.js';
56
+ export { S as Spacer } from '../Spacer-b7b52ac3.js';
57
57
  export { S as Status } from '../Status-ae56d1a8.js';
58
58
  export { S as Sub } from '../Sub-56bbbc86.js';
59
59
  export { S as Sup } from '../Sup-a3e3aed8.js';
@@ -68,15 +68,16 @@ export { T as Toast, a as ToastAction, b as ToastClose, c as ToastDescription, d
68
68
  export { T as Toggle } from '../Toggle-ac0f0a19.js';
69
69
  export { T as ToggleGroup, a as ToggleGroupItem } from '../ToggleGroup-0ae0974e.js';
70
70
  export { T as Toolbar, a as ToolbarButton, c as ToolbarLink, b as ToolbarSeparator, d as ToolbarToggleGroup, e as ToolbarToggleItem } from '../Toolbar-bd80eb25.js';
71
- export { T as Tooltip } from '../Tooltip-0d809b6c.js';
71
+ export { T as Tooltip } from '../Tooltip-23cab6fc.js';
72
72
  export { T as TreeItem } from '../TreeItem-7179ad4b.js';
73
73
  export { V as VerifiedBadge } from '../VerifiedBadge-a5c41f10.js';
74
- export { V as VisuallyHidden } from '../VisuallyHidden-25ba8420.js';
74
+ export { V as VisuallyHidden } from '../VisuallyHidden-6c2e2863.js';
75
75
  import '@stitches/react/types/styled-component';
76
76
  import '@stitches/react/types/css-util';
77
77
  import '@stitches/react/types/config';
78
78
  import 'react';
79
79
  import '@radix-ui/react-accordion';
80
+ import 'react/jsx-runtime';
80
81
  import '@radix-ui/react-alert-dialog';
81
82
  import '@radix-ui/react-avatar';
82
83
  import '../lib/stitches.config.js';
@@ -1,4 +1,5 @@
1
- export { a as CardContent, b as CardImage, d as CardImageContainer, e as CardLink, f as CardMeta, i as CardOuter, C as CardShow, h as CardSpotify, g as CardTitle, I as ImageBlur, c as css_card } from '../../Spotify-c2a68dcf.js';
1
+ export { a as CardContent, b as CardImage, d as CardImageContainer, e as CardLink, f as CardMeta, i as CardOuter, C as CardShow, h as CardSpotify, g as CardTitle, I as ImageBlur, c as css_card } from '../../Spotify-d4dcb0cd.js';
2
2
  import '@stitches/react/types/css-util';
3
3
  import '@stitches/react/types/config';
4
4
  import '@stitches/react/types/styled-component';
5
+ import 'react/jsx-runtime';
@@ -1 +1,2 @@
1
- export { E as Emoji, a as EmojiParser } from '../../EmojiParser-36ff1262.js';
1
+ export { E as Emoji, a as EmojiParser } from '../../EmojiParser-e7bab872.js';
2
+ import 'react/jsx-runtime';
@@ -1,4 +1,6 @@
1
- declare function Empty(): JSX.Element;
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare function Empty(): react_jsx_runtime.JSX.Element;
2
4
 
3
5
  /**
4
6
  * @todo This should _not_ be here, this would be an implementation _of_
@@ -17,10 +19,10 @@ declare function HeroImage({ alt, meta }: {
17
19
  slug: string;
18
20
  url: string;
19
21
  };
20
- }): JSX.Element;
22
+ }): react_jsx_runtime.JSX.Element;
21
23
 
22
- declare function MainHeroDialog(): JSX.Element;
24
+ declare function MainHeroDialog(): react_jsx_runtime.JSX.Element;
23
25
 
24
- declare function MainHeroDropdownMenu(): JSX.Element;
26
+ declare function MainHeroDropdownMenu(): react_jsx_runtime.JSX.Element;
25
27
 
26
28
  export { Empty, HeroImage, MainHeroDialog, MainHeroDropdownMenu };
package/custom/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- export { a as CardContent, b as CardImage, d as CardImageContainer, e as CardLink, f as CardMeta, i as CardOuter, C as CardShow, h as CardSpotify, g as CardTitle, I as ImageBlur, c as css_card } from '../Spotify-c2a68dcf.js';
2
- export { E as Emoji, a as EmojiParser } from '../EmojiParser-36ff1262.js';
1
+ export { a as CardContent, b as CardImage, d as CardImageContainer, e as CardLink, f as CardMeta, i as CardOuter, C as CardShow, h as CardSpotify, g as CardTitle, I as ImageBlur, c as css_card } from '../Spotify-d4dcb0cd.js';
2
+ export { E as Emoji, a as EmojiParser } from '../EmojiParser-e7bab872.js';
3
3
  import '@stitches/react/types/css-util';
4
4
  import '@stitches/react/types/config';
5
5
  import '@stitches/react/types/styled-component';
6
+ import 'react/jsx-runtime';
package/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export { A as Accordion, a as AccordionContent, b as AccordionItem, c as AccordionTrigger } from './Accordion-2fc6cca7.js';
2
2
  export { A as Alert } from './Alert-d01e69ba.js';
3
- export { A as AlertDialog, e as AlertDialogAction, f as AlertDialogCancel, b as AlertDialogContent, g as AlertDialogDemo, d as AlertDialogDescription, c as AlertDialogTitle, a as AlertDialogTrigger } from './AlertDialog-ee362b59.js';
4
- export { A as Announce } from './Announce-94b08fcf.js';
3
+ export { A as AlertDialog, e as AlertDialogAction, f as AlertDialogCancel, b as AlertDialogContent, g as AlertDialogDemo, d as AlertDialogDescription, c as AlertDialogTitle, a as AlertDialogTrigger } from './AlertDialog-efc39ae4.js';
4
+ export { A as Announce } from './Announce-b311c213.js';
5
5
  export { A as AppBar } from './AppBar-70930f32.js';
6
6
  export { A as Avatar } from './Avatar-df0b8f4a.js';
7
7
  export { B as Badge } from './Badge-3a6b6459.js';
@@ -11,23 +11,23 @@ export { B as Box } from './Box-7ec1f514.js';
11
11
  export { B as BoxGrab } from './BoxGrab-b64a04f7.js';
12
12
  export { B as BoxLink } from './BoxLink-3c2ff9e5.js';
13
13
  export { B as Button, a as ButtonDemo, b as ButtonIcon, c as ButtonMarketing } from './ButtonDemo-adaa2802.js';
14
- export { C as Callout } from './Callout-a91a41d8.js';
15
- export { C as Caption } from './Caption-5bdd1afc.js';
14
+ export { C as Callout } from './Callout-c978a8d7.js';
15
+ export { C as Caption } from './Caption-ae1e8b29.js';
16
16
  export { C as Card } from './Card-44490af0.js';
17
- export { C as Carousel, a as CarouselArrowButton, d as CarouselNext, e as CarouselPrevious, c as CarouselSlide, b as CarouselSlideList } from './Carousel-f81083b2.js';
17
+ export { C as Carousel, a as CarouselArrowButton, d as CarouselNext, e as CarouselPrevious, c as CarouselSlide, b as CarouselSlideList } from './Carousel-f62f305d.js';
18
18
  export { C as Checkbox } from './Checkbox-2943787d.js';
19
19
  export { C as Code } from './Code-1425e777.js';
20
- export { _ as Command, b as CommandBadge, g as CommandEmpty, f as CommandGroup, C as CommandInput, i as CommandItem, d as CommandList, c as CommandLoader, j as CommandMenu, k as CommandMenuItem, e as CommandSeparator, h as CommandShortCuts, a as CommandTopShine } from './CommandMenu-bb0d6311.js';
20
+ export { _ as Command, b as CommandBadge, g as CommandEmpty, f as CommandGroup, C as CommandInput, i as CommandItem, d as CommandList, c as CommandLoader, j as CommandMenu, k as CommandMenuItem, e as CommandSeparator, h as CommandShortCuts, a as CommandTopShine } from './CommandMenu-1ae9466e.js';
21
21
  export { C as ContextMenu, c as ContextMenuCheckboxItem, b as ContextMenuContent, d as ContextMenuGroup, e as ContextMenuItem, f as ContextMenuLabel, g as ContextMenuRadioGroup, h as ContextMenuRadioItem, i as ContextMenuSeparator, a as ContextMenuTrigger } from './ContextMenu-6f333c0e.js';
22
22
  export { C as Container } from './Container-b8b6e81c.js';
23
23
  export { C as ControlGroup } from './ControlGroup-d06f4b62.js';
24
- export { D as Dialog, b as DialogClose, d as DialogDescription, c as DialogTitle, a as DialogTrigger } from './Dialog-12f5f63b.js';
24
+ export { D as Dialog, b as DialogClose, d as DialogDescription, c as DialogTitle, a as DialogTrigger } from './Dialog-761861ae.js';
25
25
  export { D as DropdownMenu, a as DropdownMenuArrow, b as DropdownMenuCheckboxItem, c as DropdownMenuContent, d as DropdownMenuGroup, e as DropdownMenuItem, f as DropdownMenuItemIndicator, g as DropdownMenuLabel, h as DropdownMenuRadioGroup, i as DropdownMenuRadioItem, j as DropdownMenuSeparator, l as DropdownMenuSub, m as DropdownMenuSubContent, n as DropdownMenuSubTrigger, k as DropdownMenuTrigger } from './DropdownMenu-131b231b.js';
26
26
  export { F as Flex } from './Flex-497e7617.js';
27
27
  export { F as FocusArea } from './FocusArea-4cc67786.js';
28
28
  export { G as Grid } from './Grid-6c8e8ecf.js';
29
29
  export { H as Heading } from './Heading-31acb2e9.js';
30
- export { I as Icon } from './Icon-464faa80.js';
30
+ export { I as Icon } from './Icon-55b276d7.js';
31
31
  export { CSS, config, createTheme, css, darkTheme, getCssText, globalCss, keyframes, reset, styled, theme } from './lib/stitches.config.js';
32
32
  export { I as IconButton } from './IconButton-f8ef5575.js';
33
33
  export { I as Image } from './Image-cb60725d.js';
@@ -36,25 +36,25 @@ export { L as Label } from './Label-2f40709b.js';
36
36
  export { L as Link } from './Link-bf26a1c6.js';
37
37
  export { L as LoadingDots } from './LoadingDots-22b6de1b.js';
38
38
  export { M as Menu, a as MenuCheckboxItem, b as MenuGroup, c as MenuItem, d as MenuLabel, e as MenuRadioGroup, f as MenuRadioItem, g as MenuSeparator } from './Menu-b6f5de19.js';
39
- export { F as Focused, N as NavigationMenu, a as NavigationMenuCaret, b as NavigationMenuContent, c as NavigationMenuIndicator, d as NavigationMenuIndicatorWithArrow, e as NavigationMenuItem, f as NavigationMenuLink, g as NavigationMenuLinkText, h as NavigationMenuLinkTitle, i as NavigationMenuList, j as NavigationMenuListContent, k as NavigationMenuListItem, l as NavigationMenuListItemFocus, m as NavigationMenuListItemLink, n as NavigationMenuListItemSelect, o as NavigationMenuTrigger, p as NavigationMenuTriggerWithCaret, q as NavigationMenuViewport, r as NavigationMenuViewportPosition, S as Selected } from './NavigationMenu-900904d7.js';
40
- export { N as Note } from './Note-d2764283.js';
39
+ export { F as Focused, N as NavigationMenu, a as NavigationMenuCaret, b as NavigationMenuContent, c as NavigationMenuIndicator, d as NavigationMenuIndicatorWithArrow, e as NavigationMenuItem, f as NavigationMenuLink, g as NavigationMenuLinkText, h as NavigationMenuLinkTitle, i as NavigationMenuList, j as NavigationMenuListContent, k as NavigationMenuListItem, l as NavigationMenuListItemFocus, m as NavigationMenuListItemLink, n as NavigationMenuListItemSelect, o as NavigationMenuTrigger, p as NavigationMenuTriggerWithCaret, q as NavigationMenuViewport, r as NavigationMenuViewportPosition, S as Selected } from './NavigationMenu-6f7bd705.js';
40
+ export { N as Note } from './Note-afd77418.js';
41
41
  export { O as Overlay, o as overlayStyles } from './Overlay.styles-6a4dd3e8.js';
42
- export { P as PageHeading, b as SkeletonDescription, S as SkeletonHeading, a as SkeletonTitle } from './PageHeading-c0cd9afd.js';
42
+ export { P as PageHeading, b as SkeletonDescription, S as SkeletonHeading, a as SkeletonTitle } from './PageHeading-65c4ebd2.js';
43
43
  export { P as Panel, p as panelStyles } from './Panel.styles-491728d4.js';
44
44
  export { P as Paragraph } from './Paragraph-b27206a0.js';
45
- export { P as Popover, a as PopoverContent, b as PopoverTrigger } from './Popover-0ed9b61a.js';
45
+ export { P as Popover, a as PopoverContent, b as PopoverTrigger } from './Popover-576f9624.js';
46
46
  export { P as ProgressBar } from './ProgressBar-be6dbde1.js';
47
47
  export { R as Radio, a as RadioGroup } from './Radio-0fdc85b9.js';
48
48
  export { R as RadioCard, a as RadioCardGroup } from './RadioCard-b27e82fd.js';
49
49
  export { a as RadioGrid, R as RadioGridGroup } from './RadioGrid-0c70db77.js';
50
- export { S as ScrollArea } from './ScrollArea-14b2feb8.js';
50
+ export { S as ScrollArea } from './ScrollArea-956dd2c0.js';
51
51
  export { S as Section } from './Section-67cd986f.js';
52
52
  export { S as Select, d as SelectContent, f as SelectGroup, c as SelectIcon, g as SelectItem, i as SelectItemIndicator, h as SelectItemText, j as SelectLabel, m as SelectScrollDownButton, l as SelectScrollUpButton, k as SelectSeparator, a as SelectTrigger, b as SelectValue, e as SelectViewport } from './Select-b2d8960c.js';
53
53
  export { S as Separator } from './Separator-37db30e4.js';
54
- export { S as Sheet, a as SheetClose, b as SheetContent, c as SheetDescription, d as SheetPortal, e as SheetTitle, f as SheetTrigger, g as StyledCloseButton, h as StyledContent, i as StyledOverlay } from './Sheet-772a3ac6.js';
54
+ export { S as Sheet, a as SheetClose, b as SheetContent, c as SheetDescription, d as SheetPortal, e as SheetTitle, f as SheetTrigger, g as StyledCloseButton, h as StyledContent, i as StyledOverlay } from './Sheet-9939339d.js';
55
55
  export { S as Skeleton } from './Skeleton-5eaa4deb.js';
56
56
  export { a as Slider, S as StyledSlider } from './Slider-f7c0b154.js';
57
- export { S as Spacer } from './Spacer-94122963.js';
57
+ export { S as Spacer } from './Spacer-b7b52ac3.js';
58
58
  export { S as Status } from './Status-ae56d1a8.js';
59
59
  export { S as Sub } from './Sub-56bbbc86.js';
60
60
  export { S as Sup } from './Sup-a3e3aed8.js';
@@ -69,12 +69,12 @@ export { T as Toast, a as ToastAction, b as ToastClose, c as ToastDescription, d
69
69
  export { T as Toggle } from './Toggle-ac0f0a19.js';
70
70
  export { T as ToggleGroup, a as ToggleGroupItem } from './ToggleGroup-0ae0974e.js';
71
71
  export { T as Toolbar, a as ToolbarButton, c as ToolbarLink, b as ToolbarSeparator, d as ToolbarToggleGroup, e as ToolbarToggleItem } from './Toolbar-bd80eb25.js';
72
- export { T as Tooltip } from './Tooltip-0d809b6c.js';
72
+ export { T as Tooltip } from './Tooltip-23cab6fc.js';
73
73
  export { T as TreeItem } from './TreeItem-7179ad4b.js';
74
74
  export { V as VerifiedBadge } from './VerifiedBadge-a5c41f10.js';
75
- export { V as VisuallyHidden } from './VisuallyHidden-25ba8420.js';
76
- export { a as CardContent, b as CardImage, d as CardImageContainer, e as CardLink, f as CardMeta, i as CardOuter, C as CardShow, h as CardSpotify, g as CardTitle, I as ImageBlur, c as css_card } from './Spotify-c2a68dcf.js';
77
- export { E as Emoji, a as EmojiParser } from './EmojiParser-36ff1262.js';
75
+ export { V as VisuallyHidden } from './VisuallyHidden-6c2e2863.js';
76
+ export { a as CardContent, b as CardImage, d as CardImageContainer, e as CardLink, f as CardMeta, i as CardOuter, C as CardShow, h as CardSpotify, g as CardTitle, I as ImageBlur, c as css_card } from './Spotify-d4dcb0cd.js';
77
+ export { E as Emoji, a as EmojiParser } from './EmojiParser-e7bab872.js';
78
78
  import { MutableRefObject } from 'react';
79
79
  import * as swr__internal from 'swr/_internal';
80
80
  import { SWRInfiniteConfiguration } from 'swr/infinite';
@@ -84,6 +84,7 @@ import '@stitches/react/types/styled-component';
84
84
  import '@stitches/react/types/css-util';
85
85
  import '@stitches/react/types/config';
86
86
  import '@radix-ui/react-accordion';
87
+ import 'react/jsx-runtime';
87
88
  import '@radix-ui/react-alert-dialog';
88
89
  import '@radix-ui/react-avatar';
89
90
  import '@radix-ui/react-checkbox';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jeromefitz/design-system",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "type": "module",
5
5
  "description": "Design System for JeromeFitzgerald.com (Radix UI)",
6
6
  "repository": "jeromefitz/packages.git",
@@ -111,30 +111,30 @@
111
111
  "@heroicons/react": "2.0.17",
112
112
  "@radix-ui/colors": "0.1.8",
113
113
  "@radix-ui/react-icons": "1.3.0",
114
- "@storybook/addon-a11y": "7.0.5",
115
- "@storybook/addon-actions": "7.0.5",
116
- "@storybook/addon-docs": "7.0.5",
117
- "@storybook/addon-essentials": "7.0.5",
118
- "@storybook/addon-links": "7.0.5",
119
- "@storybook/addon-storysource": "7.0.5",
120
- "@storybook/addons": "7.0.5",
121
- "@storybook/blocks": "7.0.5",
114
+ "@storybook/addon-a11y": "7.0.9",
115
+ "@storybook/addon-actions": "7.0.9",
116
+ "@storybook/addon-docs": "7.0.9",
117
+ "@storybook/addon-essentials": "7.0.9",
118
+ "@storybook/addon-links": "7.0.9",
119
+ "@storybook/addon-storysource": "7.0.9",
120
+ "@storybook/addons": "7.0.9",
121
+ "@storybook/blocks": "7.0.9",
122
122
  "@storybook/mdx2-csf": "1.0.0",
123
- "@storybook/nextjs": "7.0.5",
124
- "@storybook/react": "7.0.5",
125
- "@storybook/theming": "7.0.5",
123
+ "@storybook/nextjs": "7.0.9",
124
+ "@storybook/react": "7.0.9",
125
+ "@storybook/theming": "7.0.9",
126
126
  "@types/lodash": "4.14.194",
127
- "@types/react": "18.0.35",
128
- "@types/react-dom": "18.0.11",
127
+ "@types/react": "18.2.6",
128
+ "@types/react-dom": "18.2.4",
129
129
  "cmdk": "0.2.0",
130
- "framer-motion": "10.12.2",
130
+ "framer-motion": "10.12.8",
131
131
  "lodash": "4.17.21",
132
- "next": "13.3.0",
132
+ "next": "13.3.3",
133
133
  "react": "18.2.0",
134
134
  "react-dom": "18.2.0",
135
135
  "serve": "14.2.0",
136
- "storybook": "7.0.5",
137
- "swr": "2.1.3",
136
+ "storybook": "7.0.9",
137
+ "swr": "2.1.5",
138
138
  "typescript": "4.8.4"
139
139
  },
140
140
  "publishConfig": {
@@ -1,5 +0,0 @@
1
- declare const Announce: ({ children }: {
2
- children: any;
3
- }) => JSX.Element;
4
-
5
- export { Announce as A };
@@ -1,5 +0,0 @@
1
- declare const Caption: ({ children }: {
2
- children: any;
3
- }) => JSX.Element;
4
-
5
- export { Caption as C };
@@ -1,95 +0,0 @@
1
- import { I as IconProps } from './Icon.types-48a13108.js';
2
-
3
- declare const Icon: {
4
- (): void;
5
- ArrowLeft: ({ label, ...props }: IconProps) => JSX.Element;
6
- ArrowRight: ({ label, ...props }: IconProps) => JSX.Element;
7
- ArrowTopRight: ({ label, ...props }: IconProps) => JSX.Element;
8
- ArrowUturnLeft: ({ css, label, ...props }: IconProps) => JSX.Element;
9
- Bell: ({ label, ...props }: IconProps) => JSX.Element;
10
- Bookmark: ({ label, ...props }: IconProps) => JSX.Element;
11
- BookmarkFilled: ({ label, ...props }: IconProps) => JSX.Element;
12
- BookOpen: ({ css, label, ...props }: IconProps) => JSX.Element;
13
- Calendar: ({ label, ...props }: IconProps) => JSX.Element;
14
- CaretDown: ({ label, ...props }: IconProps) => JSX.Element;
15
- CaretLeft: ({ label, ...props }: IconProps) => JSX.Element;
16
- CaretRight: ({ label, ...props }: IconProps) => JSX.Element;
17
- CaretSort: ({ label, ...props }: IconProps) => JSX.Element;
18
- CaretUp: ({ label, ...props }: IconProps) => JSX.Element;
19
- ChatBubble: ({ label, ...props }: IconProps) => JSX.Element;
20
- Check: ({ label, ...props }: IconProps) => JSX.Element;
21
- CheckCircled: ({ label, ...props }: IconProps) => JSX.Element;
22
- ChevronDown: ({ label, ...props }: IconProps) => JSX.Element;
23
- ChevronLeft: ({ label, ...props }: IconProps) => JSX.Element;
24
- ChevronRight: ({ label, ...props }: IconProps) => JSX.Element;
25
- ChevronUp: ({ label, ...props }: IconProps) => JSX.Element;
26
- Clock: ({ label, ...props }: IconProps) => JSX.Element;
27
- Cross1: ({ label, ...props }: IconProps) => JSX.Element;
28
- Cross2: ({ label, ...props }: IconProps) => JSX.Element;
29
- CrossCircled: ({ label, ...props }: IconProps) => JSX.Element;
30
- Desktop: ({ label, ...props }: IconProps) => JSX.Element;
31
- Enter: ({ label, ...props }: IconProps) => JSX.Element;
32
- EnvelopeOpen: ({ label, ...props }: IconProps) => JSX.Element;
33
- ExclamationTriangle: ({ label, ...props }: IconProps) => JSX.Element;
34
- Exit: ({ label, ...props }: IconProps) => JSX.Element;
35
- ExternalLink: ({ label, ...props }: IconProps) => JSX.Element;
36
- FontBold: ({ label, ...props }: IconProps) => JSX.Element;
37
- FontItalic: ({ label, ...props }: IconProps) => JSX.Element;
38
- Gear: ({ label, ...props }: IconProps) => JSX.Element;
39
- GitHubLogo: ({ label, ...props }: IconProps) => JSX.Element;
40
- HamburgerMenu: ({ label, ...props }: IconProps) => JSX.Element;
41
- Home: ({ label, ...props }: IconProps) => JSX.Element;
42
- IdCard: ({ label, ...props }: IconProps) => JSX.Element;
43
- Image: ({ label, ...props }: IconProps) => JSX.Element;
44
- InfoCircled: ({ label, ...props }: IconProps) => JSX.Element;
45
- InstagramLogo: ({ label, ...props }: IconProps) => JSX.Element;
46
- Link1: ({ label, ...props }: IconProps) => JSX.Element;
47
- LinkedInLogo: ({ label, ...props }: IconProps) => JSX.Element;
48
- ListBullet: ({ label, ...props }: IconProps) => JSX.Element;
49
- LocationMarker: ({ css, label, ...props }: IconProps) => JSX.Element;
50
- MagnifyingGlass: ({ label, ...props }: IconProps) => JSX.Element;
51
- Map: ({ css, label, ...props }: IconProps) => JSX.Element;
52
- Microphone: ({ css, label, ...props }: IconProps) => JSX.Element;
53
- Moon: ({ label, ...props }: IconProps) => JSX.Element;
54
- MusicNote: ({ css, label, ...props }: IconProps) => JSX.Element;
55
- Pencil1: ({ label, ...props }: IconProps) => JSX.Element;
56
- Pencil2: ({ label, ...props }: IconProps) => JSX.Element;
57
- Quote: ({ label, ...props }: IconProps) => JSX.Element;
58
- Return: ({ css, label, ...props }: IconProps) => JSX.Element;
59
- Share1: ({ label, ...props }: IconProps) => JSX.Element;
60
- SpeakerModerate: ({ label, ...props }: IconProps) => JSX.Element;
61
- SpeakerOff: ({ label, ...props }: IconProps) => JSX.Element;
62
- Star: ({ label, ...props }: IconProps) => JSX.Element;
63
- Strikethrough: ({ label, ...props }: IconProps) => JSX.Element;
64
- Sun: ({ label, ...props }: IconProps) => JSX.Element;
65
- Tag: ({ css, label, ...props }: IconProps) => JSX.Element;
66
- TextAlignCenter: ({ label, ...props }: IconProps) => JSX.Element;
67
- TextAlignJustify: ({ label, ...props }: IconProps) => JSX.Element;
68
- TextAlignLeft: ({ label, ...props }: IconProps) => JSX.Element;
69
- TextAlignRight: ({ label, ...props }: IconProps) => JSX.Element;
70
- Ticket: ({ css, label, ...props }: IconProps) => JSX.Element;
71
- TwitterLogo: ({ label, ...props }: IconProps) => JSX.Element;
72
- /**
73
- * Customizations and Shorthand
74
- */
75
- Alert: ({ label, ...props }: IconProps) => JSX.Element;
76
- Book: ({ css, label, ...props }: IconProps) => JSX.Element;
77
- Cross: ({ label, ...props }: IconProps) => JSX.Element;
78
- Error: ({ label, ...props }: IconProps) => JSX.Element;
79
- GitHub: ({ label, ...props }: IconProps) => JSX.Element;
80
- Info: ({ label, ...props }: IconProps) => JSX.Element;
81
- Instagram: ({ label, ...props }: IconProps) => JSX.Element;
82
- Link: ({ label, ...props }: IconProps) => JSX.Element;
83
- LinkedIn: ({ label, ...props }: IconProps) => JSX.Element;
84
- MusicalNote: ({ css, label, ...props }: IconProps) => JSX.Element;
85
- Pencil: ({ label, ...props }: IconProps) => JSX.Element;
86
- PencilWithPaper: ({ label, ...props }: IconProps) => JSX.Element;
87
- Reply: ({ css, label, ...props }: IconProps) => JSX.Element;
88
- SocialShare: ({ label, ...props }: IconProps) => JSX.Element;
89
- Success: ({ label, ...props }: IconProps) => JSX.Element;
90
- Twitter: ({ label, ...props }: IconProps) => JSX.Element;
91
- Warning: ({ label, ...props }: IconProps) => JSX.Element;
92
- displayName: string;
93
- };
94
-
95
- export { Icon as I };
@@ -1,6 +0,0 @@
1
- declare type ScrollAreaProps = {
2
- children: any;
3
- };
4
- declare const ScrollArea: (props: ScrollAreaProps) => JSX.Element;
5
-
6
- export { ScrollArea as S };
@@ -1,3 +0,0 @@
1
- declare const Spacer: () => JSX.Element;
2
-
3
- export { Spacer as S };