@sanity/ui 3.4.2 → 3.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/_chunks/refractor.cjs +18 -0
  2. package/dist/_chunks/refractor.cjs.map +1 -0
  3. package/dist/_chunks/refractor.js +9 -7
  4. package/dist/_chunks/refractor.js.map +1 -1
  5. package/dist/_chunks/{tabList.mjs → tabList.cjs} +988 -599
  6. package/dist/_chunks/tabList.cjs.map +1 -0
  7. package/dist/_chunks/tabList.js +537 -1047
  8. package/dist/_chunks/tabList.js.map +1 -1
  9. package/dist/_chunks/{theme.mjs → theme.cjs} +266 -11
  10. package/dist/_chunks/theme.cjs.map +1 -0
  11. package/dist/_chunks/{theme.d.mts → theme.d.cts} +11 -11
  12. package/dist/_chunks/{theme.d.mts.map → theme.d.cts.map} +1 -1
  13. package/dist/_chunks/theme.d.ts +10 -10
  14. package/dist/_chunks/theme.js +10 -265
  15. package/dist/_chunks/theme.js.map +1 -1
  16. package/dist/_chunks/{useTheme.d.mts → useTheme.d.cts} +26 -41
  17. package/dist/_chunks/useTheme.d.cts.map +1 -0
  18. package/dist/_chunks/useTheme.d.ts +24 -39
  19. package/dist/_chunks/useTheme.d.ts.map +1 -1
  20. package/dist/_visual-editing.cjs +3 -0
  21. package/dist/{_visual-editing.d.mts → _visual-editing.d.cts} +1 -1
  22. package/dist/_visual-editing.js +2 -3
  23. package/dist/{index.mjs → index.cjs} +570 -664
  24. package/dist/index.cjs.map +1 -0
  25. package/dist/{index.d.mts → index.d.cts} +12 -33
  26. package/dist/index.d.cts.map +1 -0
  27. package/dist/index.d.ts +9 -30
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +578 -653
  30. package/dist/index.js.map +1 -1
  31. package/dist/theme.cjs +3 -0
  32. package/dist/{theme.d.mts → theme.d.cts} +1 -1
  33. package/dist/theme.js +2 -3
  34. package/package.json +22 -22
  35. package/dist/_chunks/refractor.mjs +0 -21
  36. package/dist/_chunks/refractor.mjs.map +0 -1
  37. package/dist/_chunks/tabList.mjs.map +0 -1
  38. package/dist/_chunks/theme.mjs.map +0 -1
  39. package/dist/_chunks/useTheme.d.mts.map +0 -1
  40. package/dist/_visual-editing.mjs +0 -2
  41. package/dist/index.d.mts.map +0 -1
  42. package/dist/index.mjs.map +0 -1
  43. package/dist/theme.mjs +0 -2
@@ -1,4 +1,4 @@
1
- import { Ct as BaseTheme$1, Dt as Theme_v2, Et as Theme$1, Hn as ThemeColorSchemeKey$1, In as ThemeColorAvatarColorKey, Qt as ThemeColorToneKey, Rn as ThemeColorButtonModeKey$1, St as createColorTheme$1, Wn as ThemeColorStateToneKey, c as parseColor$1, cn as ThemeFontSize$1, d as rgbToHex$1, dn as ThemeFonts$1, f as rgbToHsl$1, g as multiply$1, gn as ThemeColorSyntax$1, h as screen$1, in as ThemeLayer$1, l as hexToRgb$1, ln as ThemeFontWeight$1, nn as ThemeBoxShadow, on as ThemeFont$1, rn as ThemeShadow$1, s as rgba$1, sn as ThemeFontKey$1, tn as ThemeStyles, u as hslToRgb$1, un as ThemeFontWeightKey$1, v as HSL$1, wt as RootTheme$1, y as RGB$1, zn as ThemeColorCardToneKey } from "./theme.mjs";
1
+ import { Ct as BaseTheme$1, Dt as Theme_v2, Et as Theme$1, Hn as ThemeColorSchemeKey$1, In as ThemeColorAvatarColorKey, Qt as ThemeColorToneKey, Rn as ThemeColorButtonModeKey$1, St as createColorTheme$1, Wn as ThemeColorStateToneKey, c as parseColor$1, cn as ThemeFontSize$1, d as rgbToHex$1, dn as ThemeFonts$1, f as rgbToHsl$1, g as multiply$1, gn as ThemeColorSyntax$1, h as screen$1, in as ThemeLayer$1, l as hexToRgb$1, ln as ThemeFontWeight$1, nn as ThemeBoxShadow, on as ThemeFont$1, rn as ThemeShadow$1, s as rgba$1, sn as ThemeFontKey$1, tn as ThemeStyles, u as hslToRgb$1, un as ThemeFontWeightKey$1, v as HSL$1, wt as RootTheme$1, y as RGB$1, zn as ThemeColorCardToneKey } from "./theme.cjs";
2
2
  import { Component, HTMLProps, PropsWithChildren, Ref } from "react";
3
3
  /**
4
4
  * @public
@@ -493,7 +493,7 @@ interface MenuProps extends ResponsivePaddingProps {
493
493
  *
494
494
  * @public
495
495
  */
496
- declare const Menu: import("react").ForwardRefExoticComponent<Omit<MenuProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "height" | "tabIndex" | "role">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
496
+ declare const Menu: import("react").ForwardRefExoticComponent<Omit<MenuProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "height" | "role" | "tabIndex">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
497
497
  /**
498
498
  * @public
499
499
  */
@@ -501,7 +501,7 @@ type MenuDividerProps<E extends ElementType$1 = 'hr'> = Props<EmptyProps, E>;
501
501
  /**
502
502
  * @public
503
503
  */
504
- declare const MenuDivider: <E extends ElementType$1 = "hr">(props: MenuDividerProps<E>) => React.JSX.Element;
504
+ declare const MenuDivider: <E extends ElementType$1 = 'hr'>(props: MenuDividerProps<E>) => React.JSX.Element;
505
505
  /**
506
506
  * @public
507
507
  */
@@ -531,7 +531,7 @@ type AvatarProps<E extends ElementType$1 = 'div'> = Props<AvatarOwnProps, E>;
531
531
  *
532
532
  * @public
533
533
  */
534
- declare const Avatar: <E extends ElementType$1 = "div">(props: AvatarProps<E>) => React.JSX.Element;
534
+ declare const Avatar: <E extends ElementType$1 = 'div'>(props: AvatarProps<E>) => React.JSX.Element;
535
535
  /**
536
536
  * @public
537
537
  */
@@ -589,7 +589,7 @@ type BoxProps<E extends ElementType$1 = 'div'> = Props<BoxOwnProps, E>;
589
589
  *
590
590
  * @public
591
591
  */
592
- declare const Box: <E extends ElementType$1 = "div">(props: BoxProps<E>) => React.JSX.Element;
592
+ declare const Box: <E extends ElementType$1 = 'div'>(props: BoxProps<E>) => React.JSX.Element;
593
593
  /**
594
594
  * @public
595
595
  */
@@ -608,7 +608,7 @@ type BadgeProps<E extends ElementType$1 = 'div'> = Props<BadgeOwnProps, E>;
608
608
  *
609
609
  * @public
610
610
  */
611
- declare const Badge: <E extends ElementType$1 = "div">(props: BadgeProps<E>) => React.JSX.Element;
611
+ declare const Badge: <E extends ElementType$1 = 'div'>(props: BadgeProps<E>) => React.JSX.Element;
612
612
  /**
613
613
  * @public
614
614
  */
@@ -643,7 +643,7 @@ type ButtonProps<E extends ElementType$1 = 'button'> = Props<ButtonOwnProps, E>;
643
643
  /**
644
644
  * @public
645
645
  */
646
- declare const Button: <E extends ElementType$1 = "button">(props: ButtonProps<E>) => React.JSX.Element;
646
+ declare const Button: <E extends ElementType$1 = 'button'>(props: ButtonProps<E>) => React.JSX.Element;
647
647
  /**
648
648
  * @public
649
649
  */
@@ -675,7 +675,7 @@ type CardProps<E extends ElementType$1 = 'div'> = Props<CardOwnProps, E>;
675
675
  *
676
676
  * @public
677
677
  */
678
- declare const Card: <E extends ElementType$1 = "div">(props: CardProps<E>) => React.JSX.Element;
678
+ declare const Card: <E extends ElementType$1 = 'div'>(props: CardProps<E>) => React.JSX.Element;
679
679
  /**
680
680
  * @internal
681
681
  */
@@ -701,7 +701,7 @@ type CodeProps<E extends ElementType$1 = 'pre'> = Props<CodeOwnProps, E>;
701
701
  /**
702
702
  * @public
703
703
  */
704
- declare const Code: <E extends ElementType$1 = "pre">(props: CodeProps<E>) => React.JSX.Element;
704
+ declare const Code: <E extends ElementType$1 = 'pre'>(props: CodeProps<E>) => React.JSX.Element;
705
705
  /**
706
706
  * @public
707
707
  */
@@ -715,7 +715,7 @@ type ContainerProps<E extends ElementType$1 = 'div'> = Props<ContainerOwnProps,
715
715
  *
716
716
  * @public
717
717
  */
718
- declare const Container: <E extends ElementType$1 = "div">(props: ContainerProps<E>) => React.JSX.Element;
718
+ declare const Container: <E extends ElementType$1 = 'div'>(props: ContainerProps<E>) => React.JSX.Element;
719
719
  /**
720
720
  * @public
721
721
  */
@@ -731,7 +731,7 @@ type FlexProps<E extends ElementType$1 = 'div'> = Props<FlexOwnProps, E>;
731
731
  *
732
732
  * @public
733
733
  */
734
- declare const Flex: <E extends ElementType$1 = "div">(props: FlexProps<E>) => React.JSX.Element;
734
+ declare const Flex: <E extends ElementType$1 = 'div'>(props: FlexProps<E>) => React.JSX.Element;
735
735
  /**
736
736
  * @public
737
737
  */
@@ -745,7 +745,7 @@ type GridProps<E extends ElementType$1 = 'div'> = Props<GridOwnProps, E>;
745
745
  *
746
746
  * @public
747
747
  */
748
- declare const Grid: <E extends ElementType$1 = "div">(props: GridProps<E>) => React.JSX.Element;
748
+ declare const Grid: <E extends ElementType$1 = 'div'>(props: GridProps<E>) => React.JSX.Element;
749
749
  /**
750
750
  * @public
751
751
  */
@@ -771,7 +771,7 @@ type HeadingProps<E extends ElementType$1 = 'div'> = Props<HeadingOwnProps, E>;
771
771
  *
772
772
  * @public
773
773
  */
774
- declare const Heading: <E extends ElementType$1 = "div">(props: HeadingProps<E>) => React.JSX.Element;
774
+ declare const Heading: <E extends ElementType$1 = 'div'>(props: HeadingProps<E>) => React.JSX.Element;
775
775
  /**
776
776
  * @public
777
777
  */
@@ -793,7 +793,7 @@ type InlineProps<E extends ElementType$1 = 'div'> = Props<InlineOwnProps, E>;
793
793
  *
794
794
  * @public
795
795
  */
796
- declare const Inline: <E extends ElementType$1 = "div">(props: InlineProps<E>) => React.JSX.Element;
796
+ declare const Inline: <E extends ElementType$1 = 'div'>(props: InlineProps<E>) => React.JSX.Element;
797
797
  /**
798
798
  * @public
799
799
  */
@@ -811,7 +811,7 @@ type KBDProps<E extends ElementType$1 = 'kbd'> = Props<KBDOwnProps, E>;
811
811
  *
812
812
  * @public
813
813
  */
814
- declare const KBD: <E extends ElementType$1 = "kbd">(props: KBDProps<E>) => React.JSX.Element;
814
+ declare const KBD: <E extends ElementType$1 = 'kbd'>(props: KBDProps<E>) => React.JSX.Element;
815
815
  /**
816
816
  * @public
817
817
  */
@@ -837,7 +837,7 @@ type LabelProps<E extends ElementType$1 = 'div'> = Props<LabelOwnProps, E>;
837
837
  *
838
838
  * @public
839
839
  */
840
- declare const Label: <E extends ElementType$1 = "div">(props: LabelProps<E>) => React.JSX.Element;
840
+ declare const Label: <E extends ElementType$1 = 'div'>(props: LabelProps<E>) => React.JSX.Element;
841
841
  /** @internal */
842
842
  declare const Arrow: import("react").ForwardRefExoticComponent<Omit<{
843
843
  width: number;
@@ -897,9 +897,6 @@ interface LayerProviderProps {
897
897
  * @public
898
898
  */
899
899
  declare function LayerProvider(props: LayerProviderProps): React.JSX.Element;
900
- declare namespace LayerProvider {
901
- var displayName: string;
902
- }
903
900
  /**
904
901
  * @public
905
902
  */
@@ -914,9 +911,6 @@ interface PortalProps {
914
911
  * @public
915
912
  */
916
913
  declare function Portal(props: PortalProps): React.ReactPortal | null;
917
- declare namespace Portal {
918
- var displayName: string;
919
- }
920
914
  /**
921
915
  * @public
922
916
  */
@@ -936,9 +930,6 @@ interface PortalProviderProps {
936
930
  * @public
937
931
  */
938
932
  declare function PortalProvider(props: PortalProviderProps): React.JSX.Element;
939
- declare namespace PortalProvider {
940
- var displayName: string;
941
- }
942
933
  /**
943
934
  * @beta
944
935
  */
@@ -964,7 +955,7 @@ interface VirtualListProps<Item = any> {
964
955
  /**
965
956
  * @beta
966
957
  */
967
- declare const VirtualList: import("react").ForwardRefExoticComponent<VirtualListProps<any> & StackOwnProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "ref" | "children" | "onChange"> & import("react").RefAttributes<HTMLDivElement>>;
958
+ declare const VirtualList: import("react").ForwardRefExoticComponent<VirtualListProps<any> & StackOwnProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "children" | "onChange" | "ref"> & import("react").RefAttributes<HTMLDivElement>>;
968
959
  /** @beta */
969
960
  type PopoverUpdateCallback = () => void;
970
961
  /** @public */
@@ -1050,7 +1041,7 @@ interface PopoverProps extends Omit<LayerProps, 'as'>, ResponsiveRadiusProps, Re
1050
1041
  *
1051
1042
  * @public
1052
1043
  */
1053
- declare const Popover: import("react").ForwardRefExoticComponent<Omit<PopoverProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "width" | "content" | "children">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1044
+ declare const Popover: import("react").ForwardRefExoticComponent<Omit<PopoverProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "children" | "content" | "width">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1054
1045
  /**
1055
1046
  * @public
1056
1047
  */
@@ -1103,7 +1094,7 @@ type StackProps<E extends ElementType$1 = 'div'> = Props<StackOwnProps, E>;
1103
1094
  *
1104
1095
  * @public
1105
1096
  */
1106
- declare const Stack: <E extends ElementType$1 = "div">(props: StackProps<E>) => React.JSX.Element;
1097
+ declare const Stack: <E extends ElementType$1 = 'div'>(props: StackProps<E>) => React.JSX.Element;
1107
1098
  /**
1108
1099
  * @public
1109
1100
  */
@@ -1130,7 +1121,7 @@ type TextProps<E extends ElementType$1 = 'div'> = Props<TextOwnProps, E>;
1130
1121
  *
1131
1122
  * @public
1132
1123
  */
1133
- declare const Text: <E extends ElementType$1 = "div">(props: TextProps<E>) => React.JSX.Element;
1124
+ declare const Text: <E extends ElementType$1 = 'div'>(props: TextProps<E>) => React.JSX.Element;
1134
1125
  /**
1135
1126
  * @public
1136
1127
  */
@@ -1197,7 +1188,7 @@ interface TextInputProps {
1197
1188
  *
1198
1189
  * @public
1199
1190
  */
1200
- declare const TextInput: import("react").ForwardRefExoticComponent<Omit<TextInputProps & Omit<import("react").HTMLProps<HTMLInputElement>, "as" | "type" | "prefix">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
1191
+ declare const TextInput: import("react").ForwardRefExoticComponent<Omit<TextInputProps & Omit<import("react").HTMLProps<HTMLInputElement>, "as" | "prefix" | "type">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
1201
1192
  /**
1202
1193
  * @public
1203
1194
  */
@@ -1241,7 +1232,7 @@ interface TooltipProps extends Omit<LayerProps, 'as'> {
1241
1232
  *
1242
1233
  * @public
1243
1234
  */
1244
- declare const Tooltip: import("react").ForwardRefExoticComponent<Omit<TooltipProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "content" | "children">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1235
+ declare const Tooltip: import("react").ForwardRefExoticComponent<Omit<TooltipProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "children" | "content">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1245
1236
  /**
1246
1237
  * @public
1247
1238
  * */
@@ -1264,9 +1255,6 @@ interface TooltipDelayGroupProviderProps {
1264
1255
  * which temporarily becomes 1 ms after the first floating element of the group opens.
1265
1256
  */
1266
1257
  declare function TooltipDelayGroupProvider(props: TooltipDelayGroupProviderProps): React.JSX.Element;
1267
- declare namespace TooltipDelayGroupProvider {
1268
- var displayName: string;
1269
- }
1270
1258
  /**
1271
1259
  * @public
1272
1260
  */
@@ -1292,7 +1280,7 @@ type MenuGroupProps<E extends ElementType$1 = 'button'> = Props<MenuGroupOwnProp
1292
1280
  /**
1293
1281
  * @public
1294
1282
  */
1295
- declare const MenuGroup: <E extends ElementType$1 = "button">(props: MenuGroupProps<E>) => React.JSX.Element;
1283
+ declare const MenuGroup: <E extends ElementType$1 = 'button'>(props: MenuGroupProps<E>) => React.JSX.Element;
1296
1284
  /**
1297
1285
  * @public
1298
1286
  */
@@ -1318,7 +1306,7 @@ type MenuItemProps<E extends ElementType$1 = 'button'> = Props<MenuItemOwnProps,
1318
1306
  /**
1319
1307
  * @public
1320
1308
  */
1321
- declare const MenuItem: <E extends ElementType$1 = "button">(props: MenuItemProps<E>) => React.JSX.Element;
1309
+ declare const MenuItem: <E extends ElementType$1 = 'button'>(props: MenuItemProps<E>) => React.JSX.Element;
1322
1310
  /**
1323
1311
  * @public
1324
1312
  */
@@ -1339,7 +1327,7 @@ interface TabProps {
1339
1327
  /**
1340
1328
  * @public
1341
1329
  */
1342
- declare const Tab: import("react").ForwardRefExoticComponent<Omit<TabProps & Omit<import("react").HTMLProps<HTMLButtonElement>, "as" | "label" | "type" | "width" | "id" | "aria-controls">, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
1330
+ declare const Tab: import("react").ForwardRefExoticComponent<Omit<TabProps & Omit<import("react").HTMLProps<HTMLButtonElement>, "aria-controls" | "as" | "id" | "label" | "type" | "width">, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
1343
1331
  /**
1344
1332
  * @public
1345
1333
  */
@@ -1407,9 +1395,6 @@ interface ThemeProviderProps {
1407
1395
  * @public
1408
1396
  */
1409
1397
  declare function ThemeProvider(props: ThemeProviderProps): React.JSX.Element;
1410
- declare namespace ThemeProvider {
1411
- var displayName: string;
1412
- }
1413
1398
  /**
1414
1399
  * @public
1415
1400
  */
@@ -1419,4 +1404,4 @@ declare function useTheme(): Theme$1;
1419
1404
  */
1420
1405
  declare function useTheme_v2(): Theme_v2;
1421
1406
  export { Portal as $, BadgeMode as $n, AvatarOwnProps as $t, TextInputProps as A, GridAutoCols as An, screen as Ar, Code as At, Spinner as B, ElementType$1 as Bn, Badge as Bt, MenuGroupProps as C, Placement as Cn, hexToRgb as Cr, GridProps as Ct, TooltipProps as D, GridItemRow as Dn, rgbToHex as Dr, Container as Dt, Tooltip as E, GridItemColumnStart as En, parseColor as Er, FlexProps as Et, TextOwnProps as F, FlexJustify as Fn, CardOwnProps as Ft, PopoverProps as G, ButtonMode as Gn, BoxProps as Gt, Select as H, Props as Hn, BadgeProps as Ht, TextProps as I, FlexValue as In, CardProps as It, VirtualList as J, ButtonWidth as Jn, AvatarStack as Jt, PopoverUpdateCallback as K, ButtonTextAlign as Kn, AvatarRootStyleProps as Kt, Stack as L, FlexWrap as Ln, Button as Lt, TextArea as M, GridAutoRows as Mn, CodeProps as Mt, TextAreaProps as N, FlexAlign as Nn, CardStyleProps as Nt, TextInput as O, GridItemRowEnd as On, rgbToHsl as Or, ContainerOwnProps as Ot, Text as P, FlexDirection as Pn, Card as Pt, PortalProviderProps as Q, BoxSizing as Qn, Avatar as Qt, StackOwnProps as R, Assign as Rn, ButtonOwnProps as Rt, MenuGroupOwnProps as S, PopoverMargins as Sn, createColorTheme as Sr, GridOwnProps as St, TooltipDelayGroupProviderProps as T, GridItemColumnEnd as Tn, multiply as Tr, FlexOwnProps as Tt, SelectProps as U, TagType as Un, Box as Ut, SpinnerProps as V, EmptyProps as Vn, BadgeOwnProps as Vt, Popover as W, CardTone as Wn, BoxOwnProps as Wt, VirtualListProps as X, BoxHeight as Xn, AvatarCounter as Xt, VirtualListChangeOpts as Y, BoxDisplay as Yn, AvatarStackProps as Yt, PortalProvider as Z, BoxOverflow as Zn, AvatarCounterProps as Zt, TabProps as _, Hotkeys as _n, ThemeFontWeight as _r, InlineProps as _t, usePrefersDark as a, Delay as an, BoxShadow as ar, ErrorBoundary as at, MenuItemProps as b, SelectableTone as bn, ThemeLayer as br, HeadingProps as bt, isHTMLAnchorElement as c, ResponsiveFlexItemProps as cn, RootTheme as cr, Arrow as ct, isHTMLInputElement as d, ResponsiveGridProps as dn, ThemeColorButtonModeKey as dr, LabelProps as dt, AvatarProps as en, BadgeTone as er, PortalProps as et, isHTMLSelectElement as f, ResponsiveMarginProps as fn, ThemeColorSchemeKey as fr, KBD as ft, Tab as g, ResponsiveWidthProps as gn, ThemeFontSize as gr, InlineOwnProps as gt, TabListProps as h, ResponsiveShadowProps as hn, ThemeFontKey as hr, Inline as ht, ThemeProviderProps as i, MenuProps as in, BaseTheme as ir, LayerProps as it, TextInputType as j, GridAutoFlow as jn, studioTheme as jr, CodeOwnProps as jt, TextInputClearButtonProps as k, GridItemRowStart as kn, rgba as kr, ContainerProps as kt, isHTMLButtonElement as l, ResponsiveFlexProps as ln, Styles as lr, Label as lt, TabList as m, ResponsiveRadiusProps as mn, ThemeFont as mr, KBDProps as mt, useTheme_v2 as n, MenuDividerProps as nn, AvatarSize as nr, LayerProviderProps as nt, _isEnterToClickElement as o, ResponsiveBorderProps as on, HSL as or, ErrorBoundaryProps as ot, isHTMLTextAreaElement as p, ResponsivePaddingProps as pn, ThemeColorSyntax as pr, KBDOwnProps as pt, PopoverWidth as q, ButtonTone as qn, ResponsiveAvatarSizeStyleProps as qt, ThemeProvider as r, Menu as rn, AvatarStatus as rr, Layer as rt, containsOrEqualsElement as s, ResponsiveBoxProps as sn, RGB as sr, ErrorBoundaryState as st, useTheme as t, MenuDivider as tn, AvatarPosition as tr, LayerProvider as tt, isHTMLElement as u, ResponsiveGridItemProps as un, Theme as ur, LabelOwnProps as ut, MenuItem as v, HotkeysProps as vn, ThemeFontWeightKey as vr, Heading as vt, TooltipDelayGroupProvider as w, GridItemColumn as wn, hslToRgb as wr, Flex as wt, MenuGroup as x, Radius as xn, ThemeShadow as xr, Grid as xt, MenuItemOwnProps as y, TextAlign as yn, ThemeFonts as yr, HeadingOwnProps as yt, StackProps as z, ComponentType as zn, ButtonProps as zt };
1422
- //# sourceMappingURL=useTheme.d.mts.map
1407
+ //# sourceMappingURL=useTheme.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useTheme.d.cts","names":[],"sources":["../../src/core/_compat.ts","../../src/core/types/avatar.ts","../../src/core/types/badge.ts","../../src/core/types/box.ts","../../src/core/types/button.ts","../../src/core/types/card.ts","../../src/core/types/component.ts","../../src/core/types/flex.ts","../../src/core/types/grid.ts","../../src/core/types/gridItem.ts","../../src/core/types/placement.ts","../../src/core/types/popover.ts","../../src/core/types/radius.ts","../../src/core/types/selectable.ts","../../src/core/types/text.ts","../../src/core/components/hotkeys/hotkeys.tsx","../../src/core/primitives/types.ts","../../src/core/components/menu/menu.tsx","../../src/core/components/menu/menuDivider.ts","../../src/core/primitives/avatar/avatar.tsx","../../src/core/primitives/avatar/avatarCounter.tsx","../../src/core/primitives/avatar/avatarStack.tsx","../../src/core/primitives/avatar/types.ts","../../src/core/primitives/box/box.tsx","../../src/core/primitives/badge/badge.tsx","../../src/core/primitives/button/button.tsx","../../src/core/primitives/card/card.tsx","../../src/core/primitives/card/types.ts","../../src/core/primitives/code/code.tsx","../../src/core/primitives/container/container.tsx","../../src/core/primitives/flex/flex.tsx","../../src/core/primitives/grid/grid.tsx","../../src/core/primitives/heading/heading.tsx","../../src/core/primitives/inline/inline.tsx","../../src/core/primitives/kbd/kbd.tsx","../../src/core/primitives/label/label.tsx","../../src/core/utils/arrow/arrow.tsx","../../src/core/utils/errorBoundary.tsx","../../src/core/utils/layer/layer.tsx","../../src/core/utils/layer/layerProvider.tsx","../../src/core/utils/portal/portal.ts","../../src/core/utils/portal/portalProvider.tsx","../../src/core/utils/virtualList/virtualList.tsx","../../src/core/primitives/popover/types.ts","../../src/core/primitives/popover/popover.tsx","../../src/core/primitives/select/select.tsx","../../src/core/primitives/spinner/spinner.tsx","../../src/core/primitives/stack/stack.tsx","../../src/core/primitives/text/text.tsx","../../src/core/primitives/textArea/textArea.tsx","../../src/core/primitives/textInput/textInput.tsx","../../src/core/primitives/tooltip/tooltip.tsx","../../src/core/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx","../../src/core/components/menu/menuGroup.tsx","../../src/core/components/menu/menuItem.tsx","../../src/core/components/tab/tab.tsx","../../src/core/components/tab/tabList.tsx","../../src/core/helpers/element.ts","../../src/core/hooks/usePrefersDark.ts","../../src/core/theme/themeProvider.tsx","../../src/core/theme/useTheme.ts"],"mappings":"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"}
@@ -493,7 +493,7 @@ interface MenuProps extends ResponsivePaddingProps {
493
493
  *
494
494
  * @public
495
495
  */
496
- declare const Menu: import("react").ForwardRefExoticComponent<Omit<MenuProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "height" | "tabIndex" | "role">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
496
+ declare const Menu: import("react").ForwardRefExoticComponent<Omit<MenuProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "height" | "role" | "tabIndex">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
497
497
  /**
498
498
  * @public
499
499
  */
@@ -501,7 +501,7 @@ type MenuDividerProps<E extends ElementType$1 = 'hr'> = Props<EmptyProps, E>;
501
501
  /**
502
502
  * @public
503
503
  */
504
- declare const MenuDivider: <E extends ElementType$1 = "hr">(props: MenuDividerProps<E>) => React.JSX.Element;
504
+ declare const MenuDivider: <E extends ElementType$1 = 'hr'>(props: MenuDividerProps<E>) => React.JSX.Element;
505
505
  /**
506
506
  * @public
507
507
  */
@@ -531,7 +531,7 @@ type AvatarProps<E extends ElementType$1 = 'div'> = Props<AvatarOwnProps, E>;
531
531
  *
532
532
  * @public
533
533
  */
534
- declare const Avatar: <E extends ElementType$1 = "div">(props: AvatarProps<E>) => React.JSX.Element;
534
+ declare const Avatar: <E extends ElementType$1 = 'div'>(props: AvatarProps<E>) => React.JSX.Element;
535
535
  /**
536
536
  * @public
537
537
  */
@@ -589,7 +589,7 @@ type BoxProps<E extends ElementType$1 = 'div'> = Props<BoxOwnProps, E>;
589
589
  *
590
590
  * @public
591
591
  */
592
- declare const Box: <E extends ElementType$1 = "div">(props: BoxProps<E>) => React.JSX.Element;
592
+ declare const Box: <E extends ElementType$1 = 'div'>(props: BoxProps<E>) => React.JSX.Element;
593
593
  /**
594
594
  * @public
595
595
  */
@@ -608,7 +608,7 @@ type BadgeProps<E extends ElementType$1 = 'div'> = Props<BadgeOwnProps, E>;
608
608
  *
609
609
  * @public
610
610
  */
611
- declare const Badge: <E extends ElementType$1 = "div">(props: BadgeProps<E>) => React.JSX.Element;
611
+ declare const Badge: <E extends ElementType$1 = 'div'>(props: BadgeProps<E>) => React.JSX.Element;
612
612
  /**
613
613
  * @public
614
614
  */
@@ -643,7 +643,7 @@ type ButtonProps<E extends ElementType$1 = 'button'> = Props<ButtonOwnProps, E>;
643
643
  /**
644
644
  * @public
645
645
  */
646
- declare const Button: <E extends ElementType$1 = "button">(props: ButtonProps<E>) => React.JSX.Element;
646
+ declare const Button: <E extends ElementType$1 = 'button'>(props: ButtonProps<E>) => React.JSX.Element;
647
647
  /**
648
648
  * @public
649
649
  */
@@ -675,7 +675,7 @@ type CardProps<E extends ElementType$1 = 'div'> = Props<CardOwnProps, E>;
675
675
  *
676
676
  * @public
677
677
  */
678
- declare const Card: <E extends ElementType$1 = "div">(props: CardProps<E>) => React.JSX.Element;
678
+ declare const Card: <E extends ElementType$1 = 'div'>(props: CardProps<E>) => React.JSX.Element;
679
679
  /**
680
680
  * @internal
681
681
  */
@@ -701,7 +701,7 @@ type CodeProps<E extends ElementType$1 = 'pre'> = Props<CodeOwnProps, E>;
701
701
  /**
702
702
  * @public
703
703
  */
704
- declare const Code: <E extends ElementType$1 = "pre">(props: CodeProps<E>) => React.JSX.Element;
704
+ declare const Code: <E extends ElementType$1 = 'pre'>(props: CodeProps<E>) => React.JSX.Element;
705
705
  /**
706
706
  * @public
707
707
  */
@@ -715,7 +715,7 @@ type ContainerProps<E extends ElementType$1 = 'div'> = Props<ContainerOwnProps,
715
715
  *
716
716
  * @public
717
717
  */
718
- declare const Container: <E extends ElementType$1 = "div">(props: ContainerProps<E>) => React.JSX.Element;
718
+ declare const Container: <E extends ElementType$1 = 'div'>(props: ContainerProps<E>) => React.JSX.Element;
719
719
  /**
720
720
  * @public
721
721
  */
@@ -731,7 +731,7 @@ type FlexProps<E extends ElementType$1 = 'div'> = Props<FlexOwnProps, E>;
731
731
  *
732
732
  * @public
733
733
  */
734
- declare const Flex: <E extends ElementType$1 = "div">(props: FlexProps<E>) => React.JSX.Element;
734
+ declare const Flex: <E extends ElementType$1 = 'div'>(props: FlexProps<E>) => React.JSX.Element;
735
735
  /**
736
736
  * @public
737
737
  */
@@ -745,7 +745,7 @@ type GridProps<E extends ElementType$1 = 'div'> = Props<GridOwnProps, E>;
745
745
  *
746
746
  * @public
747
747
  */
748
- declare const Grid: <E extends ElementType$1 = "div">(props: GridProps<E>) => React.JSX.Element;
748
+ declare const Grid: <E extends ElementType$1 = 'div'>(props: GridProps<E>) => React.JSX.Element;
749
749
  /**
750
750
  * @public
751
751
  */
@@ -771,7 +771,7 @@ type HeadingProps<E extends ElementType$1 = 'div'> = Props<HeadingOwnProps, E>;
771
771
  *
772
772
  * @public
773
773
  */
774
- declare const Heading: <E extends ElementType$1 = "div">(props: HeadingProps<E>) => React.JSX.Element;
774
+ declare const Heading: <E extends ElementType$1 = 'div'>(props: HeadingProps<E>) => React.JSX.Element;
775
775
  /**
776
776
  * @public
777
777
  */
@@ -793,7 +793,7 @@ type InlineProps<E extends ElementType$1 = 'div'> = Props<InlineOwnProps, E>;
793
793
  *
794
794
  * @public
795
795
  */
796
- declare const Inline: <E extends ElementType$1 = "div">(props: InlineProps<E>) => React.JSX.Element;
796
+ declare const Inline: <E extends ElementType$1 = 'div'>(props: InlineProps<E>) => React.JSX.Element;
797
797
  /**
798
798
  * @public
799
799
  */
@@ -811,7 +811,7 @@ type KBDProps<E extends ElementType$1 = 'kbd'> = Props<KBDOwnProps, E>;
811
811
  *
812
812
  * @public
813
813
  */
814
- declare const KBD: <E extends ElementType$1 = "kbd">(props: KBDProps<E>) => React.JSX.Element;
814
+ declare const KBD: <E extends ElementType$1 = 'kbd'>(props: KBDProps<E>) => React.JSX.Element;
815
815
  /**
816
816
  * @public
817
817
  */
@@ -837,7 +837,7 @@ type LabelProps<E extends ElementType$1 = 'div'> = Props<LabelOwnProps, E>;
837
837
  *
838
838
  * @public
839
839
  */
840
- declare const Label: <E extends ElementType$1 = "div">(props: LabelProps<E>) => React.JSX.Element;
840
+ declare const Label: <E extends ElementType$1 = 'div'>(props: LabelProps<E>) => React.JSX.Element;
841
841
  /** @internal */
842
842
  declare const Arrow: import("react").ForwardRefExoticComponent<Omit<{
843
843
  width: number;
@@ -897,9 +897,6 @@ interface LayerProviderProps {
897
897
  * @public
898
898
  */
899
899
  declare function LayerProvider(props: LayerProviderProps): React.JSX.Element;
900
- declare namespace LayerProvider {
901
- var displayName: string;
902
- }
903
900
  /**
904
901
  * @public
905
902
  */
@@ -914,9 +911,6 @@ interface PortalProps {
914
911
  * @public
915
912
  */
916
913
  declare function Portal(props: PortalProps): React.ReactPortal | null;
917
- declare namespace Portal {
918
- var displayName: string;
919
- }
920
914
  /**
921
915
  * @public
922
916
  */
@@ -936,9 +930,6 @@ interface PortalProviderProps {
936
930
  * @public
937
931
  */
938
932
  declare function PortalProvider(props: PortalProviderProps): React.JSX.Element;
939
- declare namespace PortalProvider {
940
- var displayName: string;
941
- }
942
933
  /**
943
934
  * @beta
944
935
  */
@@ -964,7 +955,7 @@ interface VirtualListProps<Item = any> {
964
955
  /**
965
956
  * @beta
966
957
  */
967
- declare const VirtualList: import("react").ForwardRefExoticComponent<VirtualListProps<any> & StackOwnProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "ref" | "children" | "onChange"> & import("react").RefAttributes<HTMLDivElement>>;
958
+ declare const VirtualList: import("react").ForwardRefExoticComponent<VirtualListProps<any> & StackOwnProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "children" | "onChange" | "ref"> & import("react").RefAttributes<HTMLDivElement>>;
968
959
  /** @beta */
969
960
  type PopoverUpdateCallback = () => void;
970
961
  /** @public */
@@ -1050,7 +1041,7 @@ interface PopoverProps extends Omit<LayerProps, 'as'>, ResponsiveRadiusProps, Re
1050
1041
  *
1051
1042
  * @public
1052
1043
  */
1053
- declare const Popover: import("react").ForwardRefExoticComponent<Omit<PopoverProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "width" | "content" | "children">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1044
+ declare const Popover: import("react").ForwardRefExoticComponent<Omit<PopoverProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "children" | "content" | "width">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1054
1045
  /**
1055
1046
  * @public
1056
1047
  */
@@ -1103,7 +1094,7 @@ type StackProps<E extends ElementType$1 = 'div'> = Props<StackOwnProps, E>;
1103
1094
  *
1104
1095
  * @public
1105
1096
  */
1106
- declare const Stack: <E extends ElementType$1 = "div">(props: StackProps<E>) => React.JSX.Element;
1097
+ declare const Stack: <E extends ElementType$1 = 'div'>(props: StackProps<E>) => React.JSX.Element;
1107
1098
  /**
1108
1099
  * @public
1109
1100
  */
@@ -1130,7 +1121,7 @@ type TextProps<E extends ElementType$1 = 'div'> = Props<TextOwnProps, E>;
1130
1121
  *
1131
1122
  * @public
1132
1123
  */
1133
- declare const Text: <E extends ElementType$1 = "div">(props: TextProps<E>) => React.JSX.Element;
1124
+ declare const Text: <E extends ElementType$1 = 'div'>(props: TextProps<E>) => React.JSX.Element;
1134
1125
  /**
1135
1126
  * @public
1136
1127
  */
@@ -1197,7 +1188,7 @@ interface TextInputProps {
1197
1188
  *
1198
1189
  * @public
1199
1190
  */
1200
- declare const TextInput: import("react").ForwardRefExoticComponent<Omit<TextInputProps & Omit<import("react").HTMLProps<HTMLInputElement>, "as" | "type" | "prefix">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
1191
+ declare const TextInput: import("react").ForwardRefExoticComponent<Omit<TextInputProps & Omit<import("react").HTMLProps<HTMLInputElement>, "as" | "prefix" | "type">, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
1201
1192
  /**
1202
1193
  * @public
1203
1194
  */
@@ -1241,7 +1232,7 @@ interface TooltipProps extends Omit<LayerProps, 'as'> {
1241
1232
  *
1242
1233
  * @public
1243
1234
  */
1244
- declare const Tooltip: import("react").ForwardRefExoticComponent<Omit<TooltipProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "content" | "children">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1235
+ declare const Tooltip: import("react").ForwardRefExoticComponent<Omit<TooltipProps & Omit<import("react").HTMLProps<HTMLDivElement>, "as" | "children" | "content">, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
1245
1236
  /**
1246
1237
  * @public
1247
1238
  * */
@@ -1264,9 +1255,6 @@ interface TooltipDelayGroupProviderProps {
1264
1255
  * which temporarily becomes 1 ms after the first floating element of the group opens.
1265
1256
  */
1266
1257
  declare function TooltipDelayGroupProvider(props: TooltipDelayGroupProviderProps): React.JSX.Element;
1267
- declare namespace TooltipDelayGroupProvider {
1268
- var displayName: string;
1269
- }
1270
1258
  /**
1271
1259
  * @public
1272
1260
  */
@@ -1292,7 +1280,7 @@ type MenuGroupProps<E extends ElementType$1 = 'button'> = Props<MenuGroupOwnProp
1292
1280
  /**
1293
1281
  * @public
1294
1282
  */
1295
- declare const MenuGroup: <E extends ElementType$1 = "button">(props: MenuGroupProps<E>) => React.JSX.Element;
1283
+ declare const MenuGroup: <E extends ElementType$1 = 'button'>(props: MenuGroupProps<E>) => React.JSX.Element;
1296
1284
  /**
1297
1285
  * @public
1298
1286
  */
@@ -1318,7 +1306,7 @@ type MenuItemProps<E extends ElementType$1 = 'button'> = Props<MenuItemOwnProps,
1318
1306
  /**
1319
1307
  * @public
1320
1308
  */
1321
- declare const MenuItem: <E extends ElementType$1 = "button">(props: MenuItemProps<E>) => React.JSX.Element;
1309
+ declare const MenuItem: <E extends ElementType$1 = 'button'>(props: MenuItemProps<E>) => React.JSX.Element;
1322
1310
  /**
1323
1311
  * @public
1324
1312
  */
@@ -1339,7 +1327,7 @@ interface TabProps {
1339
1327
  /**
1340
1328
  * @public
1341
1329
  */
1342
- declare const Tab: import("react").ForwardRefExoticComponent<Omit<TabProps & Omit<import("react").HTMLProps<HTMLButtonElement>, "as" | "label" | "type" | "width" | "id" | "aria-controls">, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
1330
+ declare const Tab: import("react").ForwardRefExoticComponent<Omit<TabProps & Omit<import("react").HTMLProps<HTMLButtonElement>, "aria-controls" | "as" | "id" | "label" | "type" | "width">, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
1343
1331
  /**
1344
1332
  * @public
1345
1333
  */
@@ -1407,9 +1395,6 @@ interface ThemeProviderProps {
1407
1395
  * @public
1408
1396
  */
1409
1397
  declare function ThemeProvider(props: ThemeProviderProps): React.JSX.Element;
1410
- declare namespace ThemeProvider {
1411
- var displayName: string;
1412
- }
1413
1398
  /**
1414
1399
  * @public
1415
1400
  */
@@ -1 +1 @@
1
- {"version":3,"file":"useTheme.d.ts","names":[],"sources":["../../src/core/_compat.ts","../../src/core/types/avatar.ts","../../src/core/types/badge.ts","../../src/core/types/box.ts","../../src/core/types/button.ts","../../src/core/types/card.ts","../../src/core/types/component.ts","../../src/core/types/flex.ts","../../src/core/types/grid.ts","../../src/core/types/gridItem.ts","../../src/core/types/placement.ts","../../src/core/types/popover.ts","../../src/core/types/radius.ts","../../src/core/types/selectable.ts","../../src/core/types/text.ts","../../src/core/components/hotkeys/hotkeys.tsx","../../src/core/primitives/types.ts","../../src/core/components/menu/menu.tsx","../../src/core/components/menu/menuDivider.ts","../../src/core/primitives/avatar/avatar.tsx","../../src/core/primitives/avatar/avatarCounter.tsx","../../src/core/primitives/avatar/avatarStack.tsx","../../src/core/primitives/avatar/types.ts","../../src/core/primitives/box/box.tsx","../../src/core/primitives/badge/badge.tsx","../../src/core/primitives/button/button.tsx","../../src/core/primitives/card/card.tsx","../../src/core/primitives/card/types.ts","../../src/core/primitives/code/code.tsx","../../src/core/primitives/container/container.tsx","../../src/core/primitives/flex/flex.tsx","../../src/core/primitives/grid/grid.tsx","../../src/core/primitives/heading/heading.tsx","../../src/core/primitives/inline/inline.tsx","../../src/core/primitives/kbd/kbd.tsx","../../src/core/primitives/label/label.tsx","../../src/core/utils/arrow/arrow.tsx","../../src/core/utils/errorBoundary.tsx","../../src/core/utils/layer/layer.tsx","../../src/core/utils/layer/layerProvider.tsx","../../src/core/utils/portal/portal.ts","../../src/core/utils/portal/portalProvider.tsx","../../src/core/utils/virtualList/virtualList.tsx","../../src/core/primitives/popover/types.ts","../../src/core/primitives/popover/popover.tsx","../../src/core/primitives/select/select.tsx","../../src/core/primitives/spinner/spinner.tsx","../../src/core/primitives/stack/stack.tsx","../../src/core/primitives/text/text.tsx","../../src/core/primitives/textArea/textArea.tsx","../../src/core/primitives/textInput/textInput.tsx","../../src/core/primitives/tooltip/tooltip.tsx","../../src/core/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx","../../src/core/components/menu/menuGroup.tsx","../../src/core/components/menu/menuItem.tsx","../../src/core/components/tab/tab.tsx","../../src/core/components/tab/tabList.tsx","../../src/core/helpers/element.ts","../../src/core/hooks/usePrefersDark.ts","../../src/core/theme/themeProvider.tsx","../../src/core/theme/useTheme.ts"],"mappings":"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"}
1
+ {"version":3,"file":"useTheme.d.ts","names":[],"sources":["../../src/core/_compat.ts","../../src/core/types/avatar.ts","../../src/core/types/badge.ts","../../src/core/types/box.ts","../../src/core/types/button.ts","../../src/core/types/card.ts","../../src/core/types/component.ts","../../src/core/types/flex.ts","../../src/core/types/grid.ts","../../src/core/types/gridItem.ts","../../src/core/types/placement.ts","../../src/core/types/popover.ts","../../src/core/types/radius.ts","../../src/core/types/selectable.ts","../../src/core/types/text.ts","../../src/core/components/hotkeys/hotkeys.tsx","../../src/core/primitives/types.ts","../../src/core/components/menu/menu.tsx","../../src/core/components/menu/menuDivider.ts","../../src/core/primitives/avatar/avatar.tsx","../../src/core/primitives/avatar/avatarCounter.tsx","../../src/core/primitives/avatar/avatarStack.tsx","../../src/core/primitives/avatar/types.ts","../../src/core/primitives/box/box.tsx","../../src/core/primitives/badge/badge.tsx","../../src/core/primitives/button/button.tsx","../../src/core/primitives/card/card.tsx","../../src/core/primitives/card/types.ts","../../src/core/primitives/code/code.tsx","../../src/core/primitives/container/container.tsx","../../src/core/primitives/flex/flex.tsx","../../src/core/primitives/grid/grid.tsx","../../src/core/primitives/heading/heading.tsx","../../src/core/primitives/inline/inline.tsx","../../src/core/primitives/kbd/kbd.tsx","../../src/core/primitives/label/label.tsx","../../src/core/utils/arrow/arrow.tsx","../../src/core/utils/errorBoundary.tsx","../../src/core/utils/layer/layer.tsx","../../src/core/utils/layer/layerProvider.tsx","../../src/core/utils/portal/portal.ts","../../src/core/utils/portal/portalProvider.tsx","../../src/core/utils/virtualList/virtualList.tsx","../../src/core/primitives/popover/types.ts","../../src/core/primitives/popover/popover.tsx","../../src/core/primitives/select/select.tsx","../../src/core/primitives/spinner/spinner.tsx","../../src/core/primitives/stack/stack.tsx","../../src/core/primitives/text/text.tsx","../../src/core/primitives/textArea/textArea.tsx","../../src/core/primitives/textInput/textInput.tsx","../../src/core/primitives/tooltip/tooltip.tsx","../../src/core/primitives/tooltip/tooltipDelayGroup/tooltipDelayGroupProvider.tsx","../../src/core/components/menu/menuGroup.tsx","../../src/core/components/menu/menuItem.tsx","../../src/core/components/tab/tab.tsx","../../src/core/components/tab/tabList.tsx","../../src/core/helpers/element.ts","../../src/core/hooks/usePrefersDark.ts","../../src/core/theme/themeProvider.tsx","../../src/core/theme/useTheme.ts"],"mappings":";;;;;;KAyDY,YAAY;;;;;KAMZ,YAAY;;;;;KAMZ,MAAM;;;;;KAMN,MAAM;;;;;KAMN,YAAY;;;;;KAMZ,SAAS;;;;;KAMT,QAAQ;;;;;KAMR,0BAA0B;;;;;KAM1B,sBAAsB;;;;;KAMtB,mBAAmB;;;;;KAMnB,YAAY;;;;;KAMZ,eAAe;;;;;KAMf,gBAAgB;;;;;KAMhB,kBAAkB;;;;;KAMlB,qBAAqB;;;;;KAMrB,aAAa;;;;;KAMb,aAAa;;;;;KAMb,cAAc;;;;;cAgFb,yBAAgB;;;;;cAMhB,iBAAQ;;;;;cAMR,iBAAQ;;;;;cAMR,iBAAQ;;;;;cAMR,mBAAU;;;;;cAMV,iBAAQ;;;;;cAMR,iBAAQ;;;;;cAMR,aAAI;;;;;cAMJ,eAAM;;;;;cAMN,aAAW;;;;KClSZ;;;;KAKA;;;;KAKA;;;;;KCPA;;;;KAKA,YAAY;;;;KCRZ;;;;KAKA;;;;KAKA;;;;KAKA;;;;KCbA,aAAa;;;;KAKb;;;;KAKA,aAAa;;;;KAKb;;;;KCfA,WAAW;;;;;;KCAX,OAAO,kBAAkB,oBAAoB,KAAK,SAAS,KAAK;;KAGhE;;KAGA,gBAAgB,MAAM,IAAI;;KAG1B,cAAc,WACtB,MAAM,kBAAkB,KACxB,MAAM,eAAe,KACrB,MAAM,gBAAgB;;KAGd,cAAY,WAAW,UAAU,cAAc;;;;;;;KAQ/C,MAAM,UAAU,YAAY,UAAU,cAAY,MAAM,OAClE,UAAU,UAAU,MAAM,IAAI,kBAAkB,KAAK,MAAM,eAAe,IAC1E;EAAK,KAAK;;;;;KC3BA;;;;KAKA;;;;KAKA;;;;KAWA;;;;KAKA;;;;KC1BA;;;;KAKA;;;;KAKA;;;;KCVA;;;;KAKA;;;;KAKA;;;;KAKA;;;;KAKA;;;;KAKA;;;;;;KCvBA;;;;KCFA;;;;KCAA;;;;KCEA,iBAAiB;;;;KCFjB;;;;UCOK;EACf;EACA;EACA;EACA,SAAS,SAAS;;;;EAIlB;EACA;;;;;;;cAuBW,yBAAO,0BAAA,eAAA,qBAAA,UAAA,uDAAA,cAAA;;;;UCjBH;EACf;EACA;EACA;EACA;EACA;;;;;UAMe;EACf,UAAU,aAAa;EACvB,SAAS,YAAY;EACrB,WAAW,cAAc;EACzB,SAAS,YAAY;;;;;UAMN;EACf,QAAQ,YAAY;EACpB,YAAY,gBAAgB;EAC5B,UAAU,cAAc;EACxB,OAAO,WAAW;;;;;UAMH;;EAEf,OAAO,YAAY;;;;;UAMJ;EACf,WAAW,eAAe;EAC1B,WAAW,eAAe;EAC1B,WAAW,eAAe;;;;EAK1B;EACA;EACA;EACA;EACA;;;;EAIA;EACA;;;;;UAMe;EACf,aAAa,iBAAiB;;;;EAI9B,SAAS,iBAAiB;EAC1B,kBAAkB,sBAAsB;;;;EAIxC,cAAc,sBAAsB;EACpC,gBAAgB,oBAAoB;;;;EAIpC,YAAY,oBAAoB;EAChC,UAAU,cAAc;;;;EAIxB,MAAM,cAAc;EACpB,eAAe,mBAAmB;;;;EAIlC,WAAW,mBAAmB;EAC9B,aAAa,iBAAiB;;;;EAI9B,SAAS,iBAAiB;;;;;UAMX;;EAEf;;EAEA;;EAEA;EACA;EACA;EACA;EACA;;;;;UAMe;EACf;EACA;EACA;EACA;EACA;EACA;EACA;;;;;UAMe;EACf,SAAS,SAAS;;;;;UAMH;EACf;;;;;UAMe;EACf;;;;;KAMU,iBAER;EACE;EACA;;;;;UCpKW,kBAAkB;;;;EAIjC;;;;EAIA;EACA,oBAAoB,OAAO;EAC3B;EACA;EACA,kBAAkB;EAClB,kBAAkB;EAClB,qBAAqB,IAAI;EACzB;EACA;;;;EAIA;EACA;EACA,mBAAmB,OAAO;;;;;;;cAaf,sBAAI,0BAAA,KAAA,YAAA,qBAAA,UAAA,kFAAA,cAAA;;;;KCzCL,iBAAiB,UAAU,wBAAsB,MAAM,YAAY;;;;cAMlE,cAKI,UAAU,sBAAoB,OAAO,iBAAiB,OAAO,MAAM,IAAI;;;;UCJvE;;EAEf;EACA,mBAAmB;EACnB,gBAAgB;EAChB,QAAQ;EACR;EACA,oBAAoB,OAAO;EAC3B,OAAO,aAAa;EACpB;;;;;EAKA,SAAS;EACT;;;;;KAMU,YAAY,UAAU,yBAAuB,MAAM,gBAAgB;;;;;;cAiKlE,SAAwC,UAAU,uBAC7D,OAAO,YAAY,OAChB,MAAM,IAAI;;;;UC/IE;EACf;EACA,OAAO,aAAa;;EAEpB;;;;;cAMW,+BAAa,0BAAA,qCAAA,cAAA;;;;UChBT;EACf,UAAU,MAAM;EAChB;EACA,OAAO,aAAa;;EAEpB;;;;;cAMW,6BAAW,0BAAA,mBAAA,qBAAA,UAAA,iDAAA,cAAA;;;;UCrDP;EACf,QAAQ;;;;;UAMO;EACf,OAAO;;;;;;;UCgBQ,oBAEb,yBACA,oBACA,yBACA,uBACA;EACF,cAAc;;;;;KAMJ,SAAS,UAAU,yBAAuB,MAAM,aAAa;;;;;;;cAkH5D,MAAkC,UAAU,uBACvD,OAAO,SAAS,OACb,MAAM,IAAI;;;;UCjJE,sBAAsB,aAAa;EAClD;;EAGA,OAAO;EACP,OAAO;;;;;KAMG,WAAW,UAAU,yBAAuB,MAAM,eAAe;;;;;;cA0ChE,QAAsC,UAAU,uBAC3D,OAAO,WAAW,OACf,MAAM,IAAI;;;;UC3CE,uBAAuB,wBAAwB;EAC9D;EACA,OAAO;EAEP,OAAO,MAAM,cAAc,MAAM;EAEjC,YAAY,MAAM,cAAc,MAAM;EACtC,UAAU,cAAc;;;;EAIxB;EACA;;;;EAIA;EACA;EACA;EACA,OAAO,MAAM;EACb,YAAY;EACZ,aAAa;EACb,OAAO;EACP;EACA,QAAQ;;;;;KAME,YAAY,UAAU,4BAA0B,MAAM,gBAAgB;;;;cAwJrE,SAAwC,UAAU,0BAC7D,OAAO,YAAY,OAChB,MAAM,IAAI;;;;UC3LE,qBACP,aAAa,uBAAuB,uBAAuB;;;;;EAKnE;;;;;EAKA;EACA;EACA;EACA;EACA,SAAS;EACT;EACA,OAAO;;;;;KAMG,UAAU,UAAU,yBAAuB,MAAM,cAAc;;;;;;;cA0E9D,OAAoC,UAAU,uBACzD,OAAO,UAAU,OACd,MAAM,IAAI;;;;UCtHE;EACf;EACA;EACA;EAEA,OAAO;;;;;UCQQ;;EAEf;EACA;EACA;;;;;KAMU,UAAU,UAAU,yBAAuB,MAAM,cAAc;;;;cAiC9D,OAAoC,UAAU,uBACzD,OAAO,UAAU,OACd,MAAM,IAAI;;;;UClDE,0BAA0B,aAAa;;;;KAK5C,eAAe,UAAU,yBAAuB,MAAM,mBAAmB;;;;;;cAiCxE,YAA8C,UAAU,uBACnE,OAAO,eAAe,OACnB,MAAM,IAAI;;;;UCpCE,qBACP,KAAK,yBAAyB,qBAAqB;EAC3D;;;;;KAMU,UAAU,UAAU,yBAAuB,MAAM,cAAc;;;;;;cAkC9D,OAAoC,UAAU,uBACzD,OAAO,UAAU,OACd,MAAM,IAAI;;;;UCjDE,qBAAqB,KAAK,yBAAyB;;;;KAKxD,UAAU,UAAU,yBAAuB,MAAM,cAAc;;;;;;cAwD9D,OAAoC,UAAU,uBACzD,OAAO,UAAU,OACd,MAAM,IAAI;;;;UCxDE;EACf;EACA,QAAQ,YAAY;EACpB;EACA;;;;;;EAMA;EACA,SAAS;;;;;KAMC,aAAa,UAAU,yBAAuB,MAAM,iBAAiB;;;;;;cAoDpE,UAA0C,UAAU,uBAC/D,OAAO,aAAa,OACjB,MAAM,IAAI;;;;UC9EE,uBAAuB,KAAK;;;;;EAK3C;;EAEA;;;;;KAMU,YAAY,UAAU,yBAAuB,MAAM,gBAAgB;;;;;;cAqClE,SAAwC,UAAU,uBAC7D,OAAO,YAAY,OAChB,MAAM,IAAI;;;;UCpDE;EACf;EACA;EACA,SAAS,SAAS;;;;;KAMR,SAAS,UAAU,yBAAuB,MAAM,aAAa;;;;;;cAgD5D,MAAkC,UAAU,uBACvD,OAAO,SAAS,OACb,MAAM,IAAI;;;;UC1DE;EACf;EACA,QAAQ,YAAY;EACpB;EACA;;;;;;EAMA;EACA,SAAS;;;;;KAMC,WAAW,UAAU,yBAAuB,MAAM,eAAe;;;;;;cAuDhE,QAAsC,UAAU,uBAC3D,OAAO,WAAW,OACf,MAAM,IAAI;;cCtBF,uBAAK,0BAAA;EACD;EAAgB;EAAiB;IAwDhD,KAAA,UAAA,+DAAA,cAAA;;;;;KClHU,qBAAqB;EAC/B,UAAU;IAAS,OAAO;IAAO,MAAM,MAAM;;;;;;;UAO9B;EACf,OAAO;;;;;;cAOI,sBAAsB,UAAU,oBAAoB;EAC/D,OAAO;SAEA,yBAAyB,OAAO,QAAQ;EAK/C,kBAAkB,OAAO,OAAO,MAAM,MAAM;EAI5C,UAAU,MAAM;;;;;UCzBD;EACf,KAAK,MAAM,oBAAoB,MAAM,IAAI;;EAEzC,cAAc;IAAQ,eAAe;;EACrC;;;;;cAqEW,uBAAK,0BAAA,KAAA,aAAA,qBAAA,UAAA,iDAAA,cAAA;;;;UCzED;EACf,WAAW,MAAM;EACjB;;;;;iBAMc,cAAc,OAAO,qBAAqB,MAAM,IAAI;;;;UCZnD;EACf,UAAU,MAAM;;;;EAIhB;;;;;iBAMc,OAAO,OAAO,cAAc,MAAM;;;;UCVjC;;;;EAIf,kBAAkB;EAClB,UAAU,MAAM;EAChB,UAAU;;;;EAIV,sBAAsB,eAAe;;;;;iBAMvB,eAAe,OAAO,sBAAsB,MAAM,IAAI;;;;UCbrD;EACf;EACA;EACA;EACA;EACA;EACA;;;;;UAMe,iBAAiB;EAChC,KAAK,MAAM,oBAAoB,MAAM,IAAI;EACzC;EACA,cAAc,MAAM,MAAM;EAC1B,QAAQ;EACR,YAAY,MAAM;EAClB,cAAc,MAAM,SAAS,MAAM;;;;;cAgBxB,6BAAW,0BAAA,wBAAA,gBAAA,qBAAA,UAAA,2EAAA,cAAA;;KC5CZ;;KAIA;;UCyCK,qBACP,KAAK,mBAAmB,uBAAuB;;EAEvD,qBAAqB;;;;;;;EAOrB;EACA;;EAEA,kBAAkB;EAClB,WAAW,MAAM,IAAI;;;;;;;;;;;;EAYrB;EACA,UAAU,MAAM;EAChB;EACA,qBAAqB;EACrB,mBAAmB;;;;;;;;;EASnB;;;;;;;EAOA;EACA;EACA,WAAW;EACX;EACA,YAAY;;;;;;;;;;EAUZ;;EAEA;EACA;EACA,oBAAoB;;;;;EAKpB,mBAAmB;EACnB,SAAS;EACT,OAAO;;EAEP,YAAY,IAAI;EAChB,QAAQ,eAAe;;;;;;;cAcZ,yBAAO,0BAAA,KAAA,eAAA,qBAAA,UAAA,oFAAA,cAAA;;;;UCxHH;EACf;EACA;EACA;EACA,SAAS,SAAS;;;;EAIlB;EACA;;;;;;;cAmBW,wBAAM,0BAAA,KAAA,cAAA,qBAAA,UAAA,oDAAA,cAAA;;;;UCjCF;EACf;EACA;;;;;;;cAwBW,yBAAO,0BAAA,KAAA,eAAA,qBAAA,UAAA,0DAAA,cAAA;;;;UCxBH,sBAAsB;EACrC;;;;EAIA;;;;;KAMU,WAAW,UAAU,yBAAuB,MAAM,eAAe;;;;;;cAiChE,QAAsC,UAAU,uBAC3D,OAAO,WAAW,OACf,MAAM,IAAI;;;;UCxCE;EACf;EACA,QAAQ,YAAY;;EAEpB;EACA;;;;;;EAMA;EACA,SAAS;;;;;KAMC,UAAU,UAAU,yBAAuB,MAAM,cAAc;;;;;;cAmD9D,OAAoC,UAAU,uBACzD,OAAO,UAAU,OACd,MAAM,IAAI;;;;UChEE,sBAAsB;;;;EAIrC;EACA;EACA;EACA;EACA;EACA,SAAS;;;;;;;cA6BE,0BAAQ,0BAAA,KAAA,gBAAA,qBAAA,UAAA,sDAAA,cAAA;;;;KC/BT,4BAA4B,iBACtC,KAAK,MAAM,UAAU;;;;KAKX;;;;UAkBK;;;;EAIf;EACA;;;;EAIA,wBAAwB;EACxB;EACA;EAEA,OAAO,MAAM,cAAc,MAAM;EAEjC,YAAY,MAAM,cAAc,MAAM;;;;EAItC;EACA;EACA,SAAS,MAAM;EACf,SAAS,SAAS;;;;EAIlB;EACA;EACA,SAAS,MAAM;EACf,OAAO;EACP,SAAS;;;;;;;cA2EE,2BAAS,0BAAA,KAAA,iBAAA,qBAAA,UAAA,uEAAA,cAAA;;;;UCjHL,qBAAqB,KAAK;;EAEzC,wBAAwB;EACxB;EACA,kBAAkB;EAClB,WAAW,MAAM,IAAI;EACrB,UAAU,MAAM;EAChB;EACA,qBAAqB;EACrB;EACA,YAAY;;EAEZ;EACA;EACA,SAAS;EACT;;;;;;;;;;;EAWA,QAAQ;;;;;;;EAOR;;;;;;;cAYW,yBAAO,0BAAA,KAAA,eAAA,qBAAA,UAAA,0EAAA,cAAA;;;;UClFH;EACf,WAAW,MAAM;;;;;;;;;;EAUjB,OAAO;;;;;;;iBAQO,0BACd,OAAO,iCACN,MAAM,IAAI;;;;UChBI;EACf;EAEA,OAAO,MAAM,cAAc,MAAM;EACjC,OAAO,KACL;EAUF;EACA,UAAU,KAAK;EACf,SAAS,SAAS;EAClB;;;;EAIA;EACA,MAAM,MAAM;EACZ,OAAO;;;;;KAMG,eAAe,UAAU,4BAA0B,MAAM,mBAAmB;;;;cA2L3E,YAA8C,UAAU,0BACnE,OAAO,eAAe,OACnB,MAAM,IAAI;;;;UCjNE,yBAAyB,wBAAwB;EAChE;EACA;EAEA,OAAO,MAAM,cAAc,MAAM;EAEjC,YAAY,MAAM,cAAc,MAAM;EACtC;EACA;EACA;;;;EAIA;EACA,OAAO,MAAM;EACb,OAAO;;;;;KAMG,cAAc,UAAU,4BAA0B,MAAM,kBAAkB;;;;cAuJzE,WAA4C,UAAU,0BACjE,OAAO,cAAc,OAClB,MAAM,IAAI;;;;UC9LE;;;;EAIf;EACA;EAEA,SAAS,MAAM,cAAc,MAAM;EACnC;EACA;EACA,UAAU,MAAM;EAChB;EACA;EACA,SAAS;;;;;cAUE,qBAAG,0BAAA,KAAA,WAAA,qBAAA,UAAA,0GAAA,cAAA;;;;UCxBC,qBAAqB,KAAK;EACzC,UAAU,MAAM,MAAM,IAAI;;;;;cAgBf,yBAAO,0BAAA,KAAA,eAAA,qBAAA,UAAA,4DAAA;;;;iBCtBJ,uBAAuB,SAAS;;;;iBAOhC,cAAc,gBAAgB,QAAQ;;;;iBAOtC,oBAAoB,mBAAmB,WAAW;;;;iBAOlD,mBAAmB,mBAAmB,WAAW;;;;iBAOjD,oBAAoB,mBAAmB,WAAW;;;;iBAOlD,oBAAoB,mBAAmB,WAAW;;;;iBAOlD,sBAAsB,mBAAmB,WAAW;;;;iBAOpD,wBAAwB,SAAS,aAAa,MAAM;;;;;;;;;;;;iBCvCpD,eAAe;;;;UCGd;EACf,WAAW,MAAM;EACjB,SAAS;EACT,QAAQ;EACR,OAAO;;;;;iBAMO,cAAc,OAAO,qBAAqB,MAAM,IAAI;;;;iBCpBpD,YAAY;;;;iBAQZ,eAAe"}
@@ -0,0 +1,3 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_tabList = require("./_chunks/tabList.cjs");
3
+ exports.Box = require_tabList.W, exports.Button = require_tabList.z, exports.Card = require_tabList.R, exports.Flex = require_tabList.H, exports.Grid = require_tabList.D, exports.Hotkeys = require_tabList.s, exports.LayerProvider = require_tabList.b, exports.Menu = require_tabList.o, exports.MenuDivider = require_tabList.a, exports.MenuGroup = require_tabList.i, exports.MenuItem = require_tabList.r, exports.Popover = require_tabList.m, exports.Portal = require_tabList.g, exports.PortalProvider = require_tabList.h, exports.Spinner = require_tabList.V, exports.Stack = require_tabList.p, exports.Tab = require_tabList.n, exports.TabList = require_tabList.t, exports.Text = require_tabList.U, exports.TextInput = require_tabList.f, exports.ThemeProvider = require_tabList.ot, exports.Tooltip = require_tabList.c, exports.isHTMLAnchorElement = require_tabList.vt, exports.isHTMLElement = require_tabList.bt, exports.studioTheme = require_tabList.Ft, exports.usePrefersDark = require_tabList.k, exports.useTheme_v2 = require_tabList.rt;
@@ -1,2 +1,2 @@
1
- import { $ as Portal, B as Spinner, E as Tooltip, L as Stack, Lt as Button, O as TextInput, P as Text, Pt as Card, Sn as PopoverMargins, Ut as Box, W as Popover, Z as PortalProvider, _n as Hotkeys, a as usePrefersDark, b as MenuItemProps, c as isHTMLAnchorElement, g as Tab, jr as studioTheme, m as TabList, n as useTheme_v2, r as ThemeProvider, rn as Menu, tn as MenuDivider, tt as LayerProvider, u as isHTMLElement, v as MenuItem, wt as Flex, x as MenuGroup, xt as Grid } from "./_chunks/useTheme.mjs";
1
+ import { $ as Portal, B as Spinner, E as Tooltip, L as Stack, Lt as Button, O as TextInput, P as Text, Pt as Card, Sn as PopoverMargins, Ut as Box, W as Popover, Z as PortalProvider, _n as Hotkeys, a as usePrefersDark, b as MenuItemProps, c as isHTMLAnchorElement, g as Tab, jr as studioTheme, m as TabList, n as useTheme_v2, r as ThemeProvider, rn as Menu, tn as MenuDivider, tt as LayerProvider, u as isHTMLElement, v as MenuItem, wt as Flex, x as MenuGroup, xt as Grid } from "./_chunks/useTheme.cjs";
2
2
  export { Box, Button, Card, Flex, Grid, Hotkeys, LayerProvider, Menu, MenuDivider, MenuGroup, MenuItem, type MenuItemProps, Popover, type PopoverMargins, Portal, PortalProvider, Spinner, Stack, Tab, TabList, Text, TextInput, ThemeProvider, Tooltip, isHTMLAnchorElement, isHTMLElement, studioTheme, usePrefersDark, useTheme_v2 };