@jeromefitz/design-system 4.2.0 → 4.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) 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/chunk-TWJQ2LFH.js +1 -0
  21. package/chunk-ZLAGBCU6.cjs +1 -0
  22. package/components/AlertDialog/index.d.ts +2 -1
  23. package/components/Announce/index.d.ts +2 -1
  24. package/components/Callout/index.d.ts +2 -1
  25. package/components/Caption/index.d.ts +2 -1
  26. package/components/Carousel/index.d.ts +2 -1
  27. package/components/CommandMenu/index.d.ts +2 -1
  28. package/components/Dialog/index.d.ts +2 -1
  29. package/components/Icon/index.d.ts +2 -1
  30. package/components/NavigationMenu/index.d.ts +2 -1
  31. package/components/Note/index.d.ts +2 -1
  32. package/components/PageHeading/index.d.ts +2 -1
  33. package/components/Popover/index.d.ts +2 -1
  34. package/components/ScrollArea/index.d.ts +2 -1
  35. package/components/Sheet/index.d.ts +2 -1
  36. package/components/Spacer/index.d.ts +2 -1
  37. package/components/Tooltip/index.d.ts +2 -1
  38. package/components/VisuallyHidden/index.d.ts +2 -1
  39. package/components/index.d.ts +18 -17
  40. package/custom/Card/index.d.ts +2 -1
  41. package/custom/Emoji/index.cjs +1 -1
  42. package/custom/Emoji/index.d.ts +2 -1
  43. package/custom/Emoji/index.js +1 -1
  44. package/custom/Hero/index.d.ts +6 -4
  45. package/custom/index.cjs +1 -1
  46. package/custom/index.d.ts +3 -2
  47. package/custom/index.js +1 -1
  48. package/index.cjs +1 -1
  49. package/index.d.ts +20 -19
  50. package/index.js +1 -1
  51. package/package.json +22 -21
  52. package/Announce-94b08fcf.d.ts +0 -5
  53. package/Caption-5bdd1afc.d.ts +0 -5
  54. package/Icon-464faa80.d.ts +0 -95
  55. package/ScrollArea-14b2feb8.d.ts +0 -6
  56. package/Spacer-94122963.d.ts +0 -3
  57. package/chunk-HHPJKV62.js +0 -1
  58. package/chunk-NC6E4EWN.cjs +0 -1
@@ -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 };
@@ -0,0 +1 @@
1
+ import{h as x}from"./chunk-PG2YH4JF.js";import{find as k}from"node-emoji";import{jsx as j,jsxs as E}from"react/jsx-runtime";var y=x("div",{boxSizing:"border-box"}),p=({emoji:n,label:e,margin:r})=>E(y,{as:"span","aria-label":e,css:{fontStyle:"normal",mr:r?"$1":"0"},role:"img",style:{WebkitBackgroundClip:"text",WebkitTextFillColor:"inherit"},children:[n," "," "]}),f=({character:n,margin:e=!1})=>{let r=k(n);if(r===void 0)return j(p,{emoji:n,label:"emoji unsupported",margin:e});let{emoji:i,key:s}=r,t=`emoji ${s.replace(/_/gi," ")}`;return j(p,{emoji:i,label:t,margin:e})};import _ from"emoji-regex";import g from"lodash/map";import z from"lodash/orderBy";import c from"lodash/size";import{Fragment as M,jsx as h}from"react/jsx-runtime";var B=({id:n,text:e})=>{if(!e)return null;let r=_(),i={},s=e,t=0;for(let o of e.matchAll(r)){let a=o[0],m=[...a].length,b=m===3?m*1.5:m*2;t===0&&o.index!==0&&(i[0]={index:0,to:o.index,to2:o.index,emoji:!1,text:e.slice(0,o.index)},t++);let d=i[t-1];d&&d.index!==o.to&&(i[t]={index:d.to,to:o.index,to2:o.index,emoji:!1,text:e.slice(d.to,o.index)},t++),i[t]={index:o.index,to:Math.floor(o.index+b),to2:Math.floor(o.index+m),emoji:!0,text:a},t++}let l=[];return c(i)>0&&g(z(i,["index"],["asc"]),(o,a)=>{if(l.push(o.emoji?h(f,{character:o.text.trim(),margin:!0},`${n}--emoji--${a}`):o.text),c(i)===c(l)&&o.to<[...e].length){let m=s.slice(o.to2+1).normalize("NFD").replace(/([\u0300-\u036f]|[^0-9a-zA-Z])/g," ");l.push(m)}}),h(M,{children:c(l)>0?g(l,o=>o):s})};export{f as a,B as b};
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }var _chunkK6WPFYOPcjs = require('./chunk-K6WPFYOP.cjs');var _nodeemoji = require('node-emoji');var _jsxruntime = require('react/jsx-runtime');var y=_chunkK6WPFYOPcjs.h.call(void 0, "div",{boxSizing:"border-box"}),p=({emoji:n,label:e,margin:r})=>_jsxruntime.jsxs.call(void 0, y,{as:"span","aria-label":e,css:{fontStyle:"normal",mr:r?"$1":"0"},role:"img",style:{WebkitBackgroundClip:"text",WebkitTextFillColor:"inherit"},children:[n," "," "]}),f= exports.a =({character:n,margin:e=!1})=>{let r=_nodeemoji.find.call(void 0, n);if(r===void 0)return _jsxruntime.jsx.call(void 0, p,{emoji:n,label:"emoji unsupported",margin:e});let{emoji:i,key:s}=r,t=`emoji ${s.replace(/_/gi," ")}`;return _jsxruntime.jsx.call(void 0, p,{emoji:i,label:t,margin:e})};var _emojiregex = require('emoji-regex'); var _emojiregex2 = _interopRequireDefault(_emojiregex);var _map = require('lodash/map'); var _map2 = _interopRequireDefault(_map);var _orderBy = require('lodash/orderBy'); var _orderBy2 = _interopRequireDefault(_orderBy);var _size = require('lodash/size'); var _size2 = _interopRequireDefault(_size);var B=({id:n,text:e})=>{if(!e)return null;let r=_emojiregex2.default.call(void 0, ),i={},s=e,t=0;for(let o of e.matchAll(r)){let a=o[0],m=[...a].length,b=m===3?m*1.5:m*2;t===0&&o.index!==0&&(i[0]={index:0,to:o.index,to2:o.index,emoji:!1,text:e.slice(0,o.index)},t++);let d=i[t-1];d&&d.index!==o.to&&(i[t]={index:d.to,to:o.index,to2:o.index,emoji:!1,text:e.slice(d.to,o.index)},t++),i[t]={index:o.index,to:Math.floor(o.index+b),to2:Math.floor(o.index+m),emoji:!0,text:a},t++}let l=[];return _size2.default.call(void 0, i)>0&&_map2.default.call(void 0, _orderBy2.default.call(void 0, i,["index"],["asc"]),(o,a)=>{if(l.push(o.emoji?_jsxruntime.jsx.call(void 0, f,{character:o.text.trim(),margin:!0},`${n}--emoji--${a}`):o.text),_size2.default.call(void 0, i)===_size2.default.call(void 0, l)&&o.to<[...e].length){let m=s.slice(o.to2+1).normalize("NFD").replace(/([\u0300-\u036f]|[^0-9a-zA-Z])/g," ");l.push(m)}}),_jsxruntime.jsx.call(void 0, _jsxruntime.Fragment,{children:_size2.default.call(void 0, l)>0?_map2.default.call(void 0, l,o=>o):s})};exports.a = f; exports.b = B;
@@ -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';