@100mslive/roomkit-react 0.1.8 → 0.1.9-alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. package/dist/{HLSView-DDGPZHA2.js → HLSView-U53QN3AC.js} +3 -3
  2. package/dist/Modal/Dialog.d.ts +402 -1706
  3. package/dist/Prebuilt/App.d.ts +5 -0
  4. package/dist/Prebuilt/AppContext.d.ts +1 -0
  5. package/dist/Prebuilt/AppStateContext.d.ts +16 -0
  6. package/dist/Prebuilt/components/ConferenceScreen.d.ts +2 -0
  7. package/dist/Prebuilt/components/Footer/PollsToggle.d.ts +2 -0
  8. package/dist/Prebuilt/components/LeaveScreen.d.ts +2 -0
  9. package/dist/Prebuilt/components/MwebLandscapePrompt.d.ts +2 -0
  10. package/dist/Prebuilt/components/Notifications/AutoplayBlockedModal.d.ts +2 -0
  11. package/dist/Prebuilt/components/Notifications/HLSFailureModal.d.ts +2 -0
  12. package/dist/Prebuilt/components/Notifications/InitErrorModal.d.ts +2 -0
  13. package/dist/Prebuilt/components/Notifications/Notifications.d.ts +2 -0
  14. package/dist/Prebuilt/components/Notifications/PeerNotifications.d.ts +1 -0
  15. package/dist/Prebuilt/components/Notifications/PermissionErrorModal.d.ts +2 -0
  16. package/dist/Prebuilt/components/Notifications/ReconnectNotifications.d.ts +2 -0
  17. package/dist/Prebuilt/components/Notifications/TrackBulkUnmuteModal.d.ts +2 -0
  18. package/dist/Prebuilt/components/Notifications/TrackNotifications.d.ts +1 -0
  19. package/dist/Prebuilt/components/Notifications/TrackUnmuteModal.d.ts +2 -0
  20. package/dist/Prebuilt/components/Polls/Polls.d.ts +2 -0
  21. package/dist/Prebuilt/components/Preview/PreviewJoin.d.ts +1 -2
  22. package/dist/Prebuilt/components/Preview/PreviewScreen.d.ts +2 -0
  23. package/dist/Prebuilt/components/hooks/useRedirectToLeave.d.ts +1 -1
  24. package/dist/{VirtualBackground-UVZJVOA2.js → VirtualBackground-PMLQPJB6.js} +3 -5
  25. package/dist/{VirtualBackground-UVZJVOA2.js.map → VirtualBackground-PMLQPJB6.js.map} +1 -1
  26. package/dist/chunk-ANQRGVIX.js +14441 -0
  27. package/dist/chunk-ANQRGVIX.js.map +7 -0
  28. package/dist/{chunk-6SQTFOK6.js → chunk-XQ2NRKIW.js} +66 -3
  29. package/dist/{chunk-6SQTFOK6.js.map → chunk-XQ2NRKIW.js.map} +4 -4
  30. package/dist/context/DialogContext.d.ts +6 -0
  31. package/dist/hooks/useDialogContainerSelector.d.ts +1 -0
  32. package/dist/index.cjs.js +10944 -9974
  33. package/dist/index.cjs.js.map +4 -4
  34. package/dist/index.d.ts +1 -0
  35. package/dist/index.js +6 -2
  36. package/dist/meta.cjs.json +3871 -3188
  37. package/dist/meta.esbuild.json +4303 -3728
  38. package/dist/utils/animations.d.ts +11 -0
  39. package/package.json +6 -7
  40. package/src/Modal/Dialog.tsx +31 -3
  41. package/src/Prebuilt/App.tsx +46 -99
  42. package/src/Prebuilt/AppContext.tsx +4 -0
  43. package/src/Prebuilt/AppStateContext.tsx +71 -0
  44. package/src/Prebuilt/common/constants.js +35 -0
  45. package/src/Prebuilt/common/utils.js +47 -0
  46. package/src/Prebuilt/components/AppData/AppData.jsx +5 -0
  47. package/src/Prebuilt/components/AppData/useSidepane.js +23 -1
  48. package/src/Prebuilt/components/AppData/useUISettings.js +48 -4
  49. package/src/Prebuilt/components/{conference.jsx → ConferenceScreen.tsx} +30 -43
  50. package/src/Prebuilt/components/Footer/Footer.tsx +5 -0
  51. package/src/Prebuilt/components/Footer/PaginatedParticipants.tsx +63 -32
  52. package/src/Prebuilt/components/Footer/ParticipantList.jsx +2 -1
  53. package/src/Prebuilt/components/Footer/PollsToggle.tsx +22 -0
  54. package/src/Prebuilt/components/Footer/RoleAccordion.tsx +2 -2
  55. package/src/Prebuilt/components/Header/StreamActions.tsx +5 -3
  56. package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +4 -5
  57. package/src/Prebuilt/components/Leave/LeaveRoom.tsx +0 -4
  58. package/src/Prebuilt/components/{PostLeave.jsx → LeaveScreen.tsx} +6 -13
  59. package/src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx +2 -3
  60. package/src/Prebuilt/components/MoreSettings/EmbedUrl.jsx +2 -3
  61. package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx +18 -1
  62. package/src/Prebuilt/components/{MwebLandscapePrompt.jsx → MwebLandscapePrompt.tsx} +10 -11
  63. package/src/Prebuilt/components/Notifications/{AutoplayBlockedModal.jsx → AutoplayBlockedModal.tsx} +2 -1
  64. package/src/Prebuilt/components/Notifications/{HLSFailureModal.jsx → HLSFailureModal.tsx} +10 -8
  65. package/src/Prebuilt/components/Notifications/{InitErrorModal.jsx → InitErrorModal.tsx} +5 -2
  66. package/src/Prebuilt/components/Notifications/{Notifications.jsx → Notifications.tsx} +41 -27
  67. package/src/Prebuilt/components/Notifications/{PeerNotifications.jsx → PeerNotifications.tsx} +3 -0
  68. package/src/Prebuilt/components/Notifications/{PermissionErrorModal.jsx → PermissionErrorModal.tsx} +6 -4
  69. package/src/Prebuilt/components/Notifications/{ReconnectNotifications.jsx → ReconnectNotifications.tsx} +11 -6
  70. package/src/Prebuilt/components/Notifications/{TrackBulkUnmuteModal.jsx → TrackBulkUnmuteModal.tsx} +9 -3
  71. package/src/Prebuilt/components/Notifications/{TrackUnmuteModal.jsx → TrackUnmuteModal.tsx} +9 -3
  72. package/src/Prebuilt/components/Notifications/index.tsx +1 -0
  73. package/src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx +229 -0
  74. package/src/Prebuilt/components/Polls/CreatePollQuiz/Timer.jsx +71 -0
  75. package/src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx +132 -0
  76. package/src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx +66 -0
  77. package/src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx +251 -0
  78. package/src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx +57 -0
  79. package/src/Prebuilt/components/Polls/Polls.tsx +28 -0
  80. package/src/Prebuilt/components/Polls/Voting/PollResultSummary.jsx +125 -0
  81. package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +249 -0
  82. package/src/Prebuilt/components/Polls/Voting/StandardVoting.jsx +40 -0
  83. package/src/Prebuilt/components/Polls/Voting/TimedVoting.jsx +36 -0
  84. package/src/Prebuilt/components/Polls/Voting/Voting.jsx +99 -0
  85. package/src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx +101 -0
  86. package/src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx +25 -0
  87. package/src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx +125 -0
  88. package/src/Prebuilt/components/Polls/common/StatusIndicator.jsx +47 -0
  89. package/src/Prebuilt/components/Polls/common/VoteCount.jsx +28 -0
  90. package/src/Prebuilt/components/Polls/common/VoteProgress.jsx +17 -0
  91. package/src/Prebuilt/components/Polls/common/VoterList.jsx +22 -0
  92. package/src/Prebuilt/components/Polls/common/Votes.jsx +72 -0
  93. package/src/Prebuilt/components/Preview/PreviewForm.tsx +3 -2
  94. package/src/Prebuilt/components/Preview/PreviewJoin.tsx +32 -27
  95. package/src/Prebuilt/components/Preview/{PreviewContainer.tsx → PreviewScreen.tsx} +2 -19
  96. package/src/Prebuilt/components/RaiseHand.jsx +1 -1
  97. package/src/Prebuilt/components/RoleChangeModal.jsx +2 -3
  98. package/src/Prebuilt/components/RoleChangeRequest/RequestPrompt.tsx +2 -3
  99. package/src/Prebuilt/components/Settings/SettingsModal.jsx +2 -3
  100. package/src/Prebuilt/components/Settings/StartRecording.jsx +15 -4
  101. package/src/Prebuilt/components/SidePaneTabs.tsx +1 -1
  102. package/src/Prebuilt/components/StatsForNerds.jsx +2 -3
  103. package/src/Prebuilt/components/Streaming/Common.jsx +31 -21
  104. package/src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx +8 -9
  105. package/src/Prebuilt/components/VideoTile.jsx +37 -33
  106. package/src/Prebuilt/components/hooks/useAutoStartStreaming.tsx +3 -3
  107. package/src/Prebuilt/components/hooks/useRedirectToLeave.tsx +9 -17
  108. package/src/Prebuilt/components/pdfAnnotator/pdfFileOptions.jsx +2 -3
  109. package/src/Prebuilt/components/pdfAnnotator/submitPdf.jsx +1 -1
  110. package/src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx +2 -3
  111. package/src/Prebuilt/layouts/EmbedView.jsx +47 -60
  112. package/src/Prebuilt/layouts/PDFView.jsx +49 -99
  113. package/src/Prebuilt/layouts/SidePane.tsx +8 -4
  114. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +2 -2
  115. package/src/Prebuilt/primitives/DialogContent.jsx +4 -5
  116. package/src/context/DialogContext.tsx +13 -0
  117. package/src/hooks/useDialogContainerSelector.tsx +7 -0
  118. package/src/index.ts +1 -0
  119. package/src/utils/animations.ts +6 -0
  120. package/dist/Prebuilt/components/Notifications/HeadlessEndRoomListener.d.ts +0 -2
  121. package/dist/Prebuilt/components/PrebuiltDialogPortal.d.ts +0 -4
  122. package/dist/Prebuilt/components/PrebuiltTileElements.d.ts +0 -2198
  123. package/dist/Prebuilt/components/Preview/PreviewContainer.d.ts +0 -3
  124. package/dist/chunk-HUMNPIYI.js +0 -70
  125. package/dist/chunk-HUMNPIYI.js.map +0 -7
  126. package/dist/chunk-PRM33R4R.js +0 -7160
  127. package/dist/chunk-PRM33R4R.js.map +0 -7
  128. package/dist/conference-N7S47TDK.js +0 -6602
  129. package/dist/conference-N7S47TDK.js.map +0 -7
  130. package/src/Prebuilt/components/GoLiveButton.jsx +0 -42
  131. package/src/Prebuilt/components/Notifications/HeadlessEndRoomListener.tsx +0 -23
  132. package/src/Prebuilt/components/PrebuiltDialogPortal.tsx +0 -6
  133. package/src/Prebuilt/components/PrebuiltTileElements.tsx +0 -5
  134. package/src/Prebuilt/components/Streaming/HLSStreaming.jsx +0 -220
  135. package/src/Prebuilt/components/Streaming/RTMPStreaming.jsx +0 -334
  136. package/src/Prebuilt/components/Streaming/StreamingLanding.jsx +0 -76
  137. /package/dist/{HLSView-DDGPZHA2.js.map → HLSView-U53QN3AC.js.map} +0 -0
  138. /package/{src/Prebuilt/components/Notifications/index.jsx → dist/Prebuilt/components/Notifications/index.d.ts} +0 -0
  139. /package/src/Prebuilt/components/Notifications/{TrackNotifications.jsx → TrackNotifications.tsx} +0 -0
@@ -1,7 +1,8 @@
1
- /// <reference types="react" />
1
+ import React, { ReactNode } from 'react';
2
+ import { CSS } from '../Theme';
2
3
  export declare const Dialog: {
3
- Root: import("@stitches/react/types/styled-component").StyledComponent<import("react").FC<import("@radix-ui/react-dialog").DialogProps>, {}, {}, import("@stitches/react/types/css-util").CSS<{}, {}, {}, {}>>;
4
- Trigger: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogTriggerProps & import("react").RefAttributes<HTMLButtonElement>>, {}, {
4
+ Root: import("@stitches/react/types/styled-component").StyledComponent<React.FC<import("@radix-ui/react-dialog").DialogProps>, {}, {}, import("@stitches/react/types/css-util").CSS<{}, {}, {}, {}>>;
5
+ Trigger: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>, {}, {
5
6
  allowMotion: string;
6
7
  sm: string;
7
8
  md: string;
@@ -440,7 +441,15 @@ export declare const Dialog: {
440
441
  };
441
442
  };
442
443
  }>>;
443
- Overlay: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogOverlayProps & import("react").RefAttributes<HTMLDivElement>>, {}, {
444
+ Overlay: ({ css }: {
445
+ css?: CSS | undefined;
446
+ }) => React.JSX.Element;
447
+ Content: ({ children, props, css }: {
448
+ children: ReactNode;
449
+ props?: any;
450
+ css?: CSS | undefined;
451
+ }) => React.JSX.Element;
452
+ Title: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>, {}, {
444
453
  allowMotion: string;
445
454
  sm: string;
446
455
  md: string;
@@ -879,7 +888,7 @@ export declare const Dialog: {
879
888
  };
880
889
  };
881
890
  }>>;
882
- Content: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogContentProps & import("react").RefAttributes<HTMLDivElement>>, {}, {
891
+ Description: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>, {}, {
883
892
  allowMotion: string;
884
893
  sm: string;
885
894
  md: string;
@@ -1318,7 +1327,7 @@ export declare const Dialog: {
1318
1327
  };
1319
1328
  };
1320
1329
  }>>;
1321
- Title: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogTitleProps & import("react").RefAttributes<HTMLHeadingElement>>, {}, {
1330
+ Close: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogCloseProps & React.RefAttributes<HTMLButtonElement>>, {}, {
1322
1331
  allowMotion: string;
1323
1332
  sm: string;
1324
1333
  md: string;
@@ -1757,15 +1766,11 @@ export declare const Dialog: {
1757
1766
  };
1758
1767
  };
1759
1768
  }>>;
1760
- Description: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogDescriptionProps & import("react").RefAttributes<HTMLParagraphElement>>, {}, {
1761
- allowMotion: string;
1762
- sm: string;
1763
- md: string;
1764
- lg: string;
1765
- xl: string;
1766
- '2xl': string;
1767
- ls: string;
1768
- }, import("@stitches/react/types/css-util").CSS<{
1769
+ DefaultClose: (props: Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
1770
+ ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
1771
+ }, "css" | "active"> & import("@stitches/react/types/styled-component").TransformProps<{
1772
+ active?: boolean | "true" | "false" | undefined;
1773
+ }, {
1769
1774
  allowMotion: string;
1770
1775
  sm: string;
1771
1776
  md: string;
@@ -1773,1750 +1778,441 @@ export declare const Dialog: {
1773
1778
  xl: string;
1774
1779
  '2xl': string;
1775
1780
  ls: string;
1776
- }, {
1777
- colors: {
1778
- primary_default: string;
1779
- primary_bright: string;
1780
- primary_dim: string;
1781
- primary_disabled: string;
1782
- on_primary_high: string;
1783
- on_primary_medium: string;
1784
- on_primary_low: string;
1785
- secondary_default: string;
1786
- secondary_bright: string;
1787
- secondary_dim: string;
1788
- secondary_disabled: string;
1789
- on_secondary_high: string;
1790
- on_secondary_medium: string;
1791
- on_secondary_low: string;
1792
- background_default: string;
1793
- background_dim: string;
1794
- surface_default: string;
1795
- surface_bright: string;
1796
- surface_brighter: string;
1797
- surface_dim: string;
1798
- on_surface_high: string;
1799
- on_surface_medium: string;
1800
- on_surface_low: string;
1801
- border_default: string;
1802
- border_bright: string;
1803
- alert_success: string;
1804
- alert_warning: string;
1805
- alert_error_default: string;
1806
- alert_error_bright: string;
1807
- alert_error_brighter: string;
1808
- alert_error_dim: string;
1809
- };
1810
- shadows: {
1811
- sm: string;
1812
- md: string;
1813
- };
1814
- fonts: {
1815
- sans: string;
1816
- };
1817
- fontSizes: {
1818
- h1: string;
1819
- h2: string;
1820
- h3: string;
1821
- h4: string;
1822
- h5: string;
1823
- h6: string;
1824
- tiny: string;
1825
- xs: string;
1826
- sm: string;
1827
- md: string;
1828
- lg: string;
1829
- };
1830
- fontWeights: {
1831
- semiBold: number;
1832
- medium: number;
1833
- regular: number;
1834
- };
1835
- lineHeights: {
1836
- h1: string;
1837
- h2: string;
1838
- h3: string;
1839
- h4: string;
1840
- h5: string;
1841
- h6: string;
1842
- tiny: string;
1843
- xs: string;
1844
- sm: string;
1845
- md: string;
1846
- };
1847
- radii: {
1848
- '0': string;
1849
- '1': string;
1850
- '2': string;
1851
- '3': string;
1852
- '4': string;
1853
- round: string;
1854
- };
1855
- space: {
1856
- 0: string;
1857
- xs: string;
1781
+ }> & {
1782
+ css?: import("@stitches/react/types/css-util").CSS<{
1783
+ allowMotion: string;
1858
1784
  sm: string;
1859
1785
  md: string;
1860
1786
  lg: string;
1861
1787
  xl: string;
1862
- px: string;
1863
- 1: string;
1864
- 2: string;
1865
- 3: string;
1866
- 4: string;
1867
- 5: string;
1868
- 6: string;
1869
- 7: string;
1870
- 8: string;
1871
- 9: string;
1872
- 10: string;
1873
- 11: string;
1874
- 12: string;
1875
- 13: string;
1876
- 14: string;
1877
- 15: string;
1878
- 16: string;
1879
- 17: string;
1880
- 18: string;
1881
- 19: string;
1882
- 20: string;
1883
- 24: string;
1884
- 28: string;
1885
- 32: string;
1886
- 36: string;
1887
- 40: string;
1888
- 44: string;
1889
- 48: string;
1890
- 52: string;
1891
- 56: string;
1892
- 60: string;
1893
- 64: string;
1894
- 72: string;
1895
- 80: string;
1896
- 96: string;
1897
- 100: string;
1898
- };
1899
- borderWidths: {
1900
- light: string;
1901
- normal: string;
1902
- bold: string;
1903
- extrabold: string;
1904
- black: string;
1905
- };
1906
- }, {
1907
- width: string;
1908
- height: string;
1909
- minWidth: string;
1910
- maxWidth: string;
1911
- minHeight: string;
1912
- maxHeight: string;
1913
- flexBasis: string;
1914
- gridTemplateColumns: string;
1915
- gridTemplateRows: string;
1916
- blockSize: string;
1917
- minBlockSize: string;
1918
- maxBlockSize: string;
1919
- inlineSize: string;
1920
- minInlineSize: string;
1921
- maxInlineSize: string;
1922
- gap: "space";
1923
- gridGap: "space";
1924
- columnGap: "space";
1925
- gridColumnGap: "space";
1926
- rowGap: "space";
1927
- gridRowGap: "space";
1928
- inset: "space";
1929
- insetBlock: "space";
1930
- insetBlockEnd: "space";
1931
- insetBlockStart: "space";
1932
- insetInline: "space";
1933
- insetInlineEnd: "space";
1934
- insetInlineStart: "space";
1935
- margin: "space";
1936
- marginTop: "space";
1937
- marginRight: "space";
1938
- marginBottom: "space";
1939
- marginLeft: "space";
1940
- marginBlock: "space";
1941
- marginBlockEnd: "space";
1942
- marginBlockStart: "space";
1943
- marginInline: "space";
1944
- marginInlineEnd: "space";
1945
- marginInlineStart: "space";
1946
- padding: "space";
1947
- paddingTop: "space";
1948
- paddingRight: "space";
1949
- paddingBottom: "space";
1950
- paddingLeft: "space";
1951
- paddingBlock: "space";
1952
- paddingBlockEnd: "space";
1953
- paddingBlockStart: "space";
1954
- paddingInline: "space";
1955
- paddingInlineEnd: "space";
1956
- paddingInlineStart: "space";
1957
- scrollMargin: "space";
1958
- scrollMarginTop: "space";
1959
- scrollMarginRight: "space";
1960
- scrollMarginBottom: "space";
1961
- scrollMarginLeft: "space";
1962
- scrollMarginBlock: "space";
1963
- scrollMarginBlockEnd: "space";
1964
- scrollMarginBlockStart: "space";
1965
- scrollMarginInline: "space";
1966
- scrollMarginInlineEnd: "space";
1967
- scrollMarginInlineStart: "space";
1968
- scrollPadding: "space";
1969
- scrollPaddingTop: "space";
1970
- scrollPaddingRight: "space";
1971
- scrollPaddingBottom: "space";
1972
- scrollPaddingLeft: "space";
1973
- scrollPaddingBlock: "space";
1974
- scrollPaddingBlockEnd: "space";
1975
- scrollPaddingBlockStart: "space";
1976
- scrollPaddingInline: "space";
1977
- scrollPaddingInlineEnd: "space";
1978
- scrollPaddingInlineStart: "space";
1979
- top: "space";
1980
- right: "space";
1981
- bottom: "space";
1982
- left: "space";
1983
- fontSize: "fontSizes";
1984
- background: "colors";
1985
- backgroundColor: "colors";
1986
- backgroundImage: "colors";
1987
- borderImage: "colors";
1988
- border: "colors";
1989
- borderBlock: "colors";
1990
- borderBlockEnd: "colors";
1991
- borderBlockStart: "colors";
1992
- borderBottom: "colors";
1993
- borderBottomColor: "colors";
1994
- borderColor: "colors";
1995
- borderInline: "colors";
1996
- borderInlineEnd: "colors";
1997
- borderInlineStart: "colors";
1998
- borderLeft: "colors";
1999
- borderLeftColor: "colors";
2000
- borderRight: "colors";
2001
- borderRightColor: "colors";
2002
- borderTop: "colors";
2003
- borderTopColor: "colors";
2004
- caretColor: "colors";
2005
- color: "colors";
2006
- columnRuleColor: "colors";
2007
- outline: "colors";
2008
- outlineColor: "colors";
2009
- fill: "colors";
2010
- stroke: "colors";
2011
- textDecorationColor: "colors";
2012
- fontFamily: "fonts";
2013
- fontWeight: "fontWeights";
2014
- lineHeight: "lineHeights";
2015
- letterSpacing: "letterSpacings";
2016
- borderWidth: "borderWidths";
2017
- borderTopWidth: "borderWidths";
2018
- borderLeftWidth: "borderWidths";
2019
- borderRightWidth: "borderWidths";
2020
- borderBottomWidth: "borderWidths";
2021
- borderStyle: "borderStyles";
2022
- borderTopStyle: "borderStyles";
2023
- borderLeftStyle: "borderStyles";
2024
- borderRightStyle: "borderStyles";
2025
- borderBottomStyle: "borderStyles";
2026
- borderRadius: "radii";
2027
- borderTopLeftRadius: "radii";
2028
- borderTopRightRadius: "radii";
2029
- borderBottomRightRadius: "radii";
2030
- borderBottomLeftRadius: "radii";
2031
- boxShadow: "shadows";
2032
- textShadow: "shadows";
2033
- transition: "transitions";
2034
- zIndex: "zIndices";
2035
- }, {
2036
- bg: (value: {
2037
- readonly [$$PropertyValue]: "backgroundColor";
2038
- }) => {
2039
- backgroundColor: {
2040
- readonly [$$PropertyValue]: "backgroundColor";
2041
- };
2042
- };
2043
- c: (value: {
2044
- readonly [$$PropertyValue]: "color";
2045
- }) => {
2046
- color: {
2047
- readonly [$$PropertyValue]: "color";
2048
- };
2049
- };
2050
- r: (value: {
2051
- readonly [$$ScaleValue]: "radii";
2052
- }) => {
2053
- borderRadius: {
2054
- readonly [$$ScaleValue]: "radii";
2055
- };
2056
- };
2057
- fs: (value: string | number | {
2058
- readonly [$$PropertyValue]: "fontSize";
2059
- }) => {
2060
- fontSize: string | number | {
2061
- readonly [$$PropertyValue]: "fontSize";
2062
- };
2063
- };
2064
- size: (value: string | number | {
2065
- readonly [$$ScaleValue]: "space";
2066
- }) => {
2067
- height: string | number | {
2068
- readonly [$$ScaleValue]: "space";
2069
- };
2070
- width: string | number | {
2071
- readonly [$$ScaleValue]: "space";
2072
- };
2073
- };
2074
- w: (value: string | number | {
2075
- readonly [$$ScaleValue]: "space";
2076
- }) => {
2077
- width: string | number | {
2078
- readonly [$$ScaleValue]: "space";
2079
- };
2080
- };
2081
- h: (value: string | number | {
2082
- readonly [$$ScaleValue]: "space";
2083
- }) => {
2084
- height: string | number | {
2085
- readonly [$$ScaleValue]: "space";
2086
- };
2087
- };
2088
- p: (value: string | number | {
2089
- readonly [$$ScaleValue]: "space";
2090
- }) => {
2091
- padding: string | number | {
2092
- readonly [$$ScaleValue]: "space";
2093
- };
2094
- };
2095
- pt: (value: string | number | {
2096
- readonly [$$ScaleValue]: "space";
2097
- }) => {
2098
- paddingTop: string | number | {
2099
- readonly [$$ScaleValue]: "space";
2100
- };
2101
- };
2102
- pr: (value: string | number | {
2103
- readonly [$$ScaleValue]: "space";
2104
- }) => {
2105
- paddingRight: string | number | {
2106
- readonly [$$ScaleValue]: "space";
2107
- };
2108
- };
2109
- pb: (value: string | number | {
2110
- readonly [$$ScaleValue]: "space";
2111
- }) => {
2112
- paddingBottom: string | number | {
2113
- readonly [$$ScaleValue]: "space";
1788
+ '2xl': string;
1789
+ ls: string;
1790
+ }, {
1791
+ colors: {
1792
+ primary_default: string;
1793
+ primary_bright: string;
1794
+ primary_dim: string;
1795
+ primary_disabled: string;
1796
+ on_primary_high: string;
1797
+ on_primary_medium: string;
1798
+ on_primary_low: string;
1799
+ secondary_default: string;
1800
+ secondary_bright: string;
1801
+ secondary_dim: string;
1802
+ secondary_disabled: string;
1803
+ on_secondary_high: string;
1804
+ on_secondary_medium: string;
1805
+ on_secondary_low: string;
1806
+ background_default: string;
1807
+ background_dim: string;
1808
+ surface_default: string;
1809
+ surface_bright: string;
1810
+ surface_brighter: string;
1811
+ surface_dim: string;
1812
+ on_surface_high: string;
1813
+ on_surface_medium: string;
1814
+ on_surface_low: string;
1815
+ border_default: string;
1816
+ border_bright: string;
1817
+ alert_success: string;
1818
+ alert_warning: string;
1819
+ alert_error_default: string;
1820
+ alert_error_bright: string;
1821
+ alert_error_brighter: string;
1822
+ alert_error_dim: string;
2114
1823
  };
2115
- };
2116
- pl: (value: string | number | {
2117
- readonly [$$ScaleValue]: "space";
2118
- }) => {
2119
- paddingLeft: string | number | {
2120
- readonly [$$ScaleValue]: "space";
1824
+ shadows: {
1825
+ sm: string;
1826
+ md: string;
2121
1827
  };
2122
- };
2123
- px: (value: string | number | {
2124
- readonly [$$ScaleValue]: "space";
2125
- }) => {
2126
- paddingLeft: string | number | {
2127
- readonly [$$ScaleValue]: "space";
1828
+ fonts: {
1829
+ sans: string;
2128
1830
  };
2129
- paddingRight: string | number | {
2130
- readonly [$$ScaleValue]: "space";
1831
+ fontSizes: {
1832
+ h1: string;
1833
+ h2: string;
1834
+ h3: string;
1835
+ h4: string;
1836
+ h5: string;
1837
+ h6: string;
1838
+ tiny: string;
1839
+ xs: string;
1840
+ sm: string;
1841
+ md: string;
1842
+ lg: string;
2131
1843
  };
2132
- };
2133
- py: (value: string | number | {
2134
- readonly [$$ScaleValue]: "space";
2135
- }) => {
2136
- paddingTop: string | number | {
2137
- readonly [$$ScaleValue]: "space";
1844
+ fontWeights: {
1845
+ semiBold: number;
1846
+ medium: number;
1847
+ regular: number;
2138
1848
  };
2139
- paddingBottom: string | number | {
2140
- readonly [$$ScaleValue]: "space";
1849
+ lineHeights: {
1850
+ h1: string;
1851
+ h2: string;
1852
+ h3: string;
1853
+ h4: string;
1854
+ h5: string;
1855
+ h6: string;
1856
+ tiny: string;
1857
+ xs: string;
1858
+ sm: string;
1859
+ md: string;
2141
1860
  };
2142
- };
2143
- m: (value: string | number | {
2144
- readonly [$$ScaleValue]: "space";
2145
- }) => {
2146
- margin: string | number | {
2147
- readonly [$$ScaleValue]: "space";
1861
+ radii: {
1862
+ '0': string;
1863
+ '1': string;
1864
+ '2': string;
1865
+ '3': string;
1866
+ '4': string;
1867
+ round: string;
2148
1868
  };
2149
- };
2150
- mt: (value: string | number | {
2151
- readonly [$$ScaleValue]: "space";
2152
- }) => {
2153
- marginTop: string | number | {
2154
- readonly [$$ScaleValue]: "space";
1869
+ space: {
1870
+ 0: string;
1871
+ xs: string;
1872
+ sm: string;
1873
+ md: string;
1874
+ lg: string;
1875
+ xl: string;
1876
+ px: string;
1877
+ 1: string;
1878
+ 2: string;
1879
+ 3: string;
1880
+ 4: string;
1881
+ 5: string;
1882
+ 6: string;
1883
+ 7: string;
1884
+ 8: string;
1885
+ 9: string;
1886
+ 10: string;
1887
+ 11: string;
1888
+ 12: string;
1889
+ 13: string;
1890
+ 14: string;
1891
+ 15: string;
1892
+ 16: string;
1893
+ 17: string;
1894
+ 18: string;
1895
+ 19: string;
1896
+ 20: string;
1897
+ 24: string;
1898
+ 28: string;
1899
+ 32: string;
1900
+ 36: string;
1901
+ 40: string;
1902
+ 44: string;
1903
+ 48: string;
1904
+ 52: string;
1905
+ 56: string;
1906
+ 60: string;
1907
+ 64: string;
1908
+ 72: string;
1909
+ 80: string;
1910
+ 96: string;
1911
+ 100: string;
2155
1912
  };
2156
- };
2157
- mr: (value: string | number | {
2158
- readonly [$$ScaleValue]: "space";
2159
- }) => {
2160
- marginRight: string | number | {
2161
- readonly [$$ScaleValue]: "space";
1913
+ borderWidths: {
1914
+ light: string;
1915
+ normal: string;
1916
+ bold: string;
1917
+ extrabold: string;
1918
+ black: string;
2162
1919
  };
2163
- };
2164
- mb: (value: string | number | {
2165
- readonly [$$ScaleValue]: "space";
2166
- }) => {
2167
- marginBottom: string | number | {
2168
- readonly [$$ScaleValue]: "space";
2169
- };
2170
- };
2171
- ml: (value: string | number | {
2172
- readonly [$$ScaleValue]: "space";
2173
- }) => {
2174
- marginLeft: string | number | {
2175
- readonly [$$ScaleValue]: "space";
2176
- };
2177
- };
2178
- mx: (value: string | number | {
2179
- readonly [$$ScaleValue]: "space";
2180
- }) => {
2181
- marginLeft: string | number | {
2182
- readonly [$$ScaleValue]: "space";
2183
- };
2184
- marginRight: string | number | {
2185
- readonly [$$ScaleValue]: "space";
2186
- };
2187
- };
2188
- my: (value: string | number | {
2189
- readonly [$$ScaleValue]: "space";
2190
- }) => {
2191
- marginTop: string | number | {
2192
- readonly [$$ScaleValue]: "space";
2193
- };
2194
- marginBottom: string | number | {
2195
- readonly [$$ScaleValue]: "space";
2196
- };
2197
- };
2198
- }>>;
2199
- Close: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogCloseProps & import("react").RefAttributes<HTMLButtonElement>>, {}, {
2200
- allowMotion: string;
2201
- sm: string;
2202
- md: string;
2203
- lg: string;
2204
- xl: string;
2205
- '2xl': string;
2206
- ls: string;
2207
- }, import("@stitches/react/types/css-util").CSS<{
2208
- allowMotion: string;
2209
- sm: string;
2210
- md: string;
2211
- lg: string;
2212
- xl: string;
2213
- '2xl': string;
2214
- ls: string;
2215
- }, {
2216
- colors: {
2217
- primary_default: string;
2218
- primary_bright: string;
2219
- primary_dim: string;
2220
- primary_disabled: string;
2221
- on_primary_high: string;
2222
- on_primary_medium: string;
2223
- on_primary_low: string;
2224
- secondary_default: string;
2225
- secondary_bright: string;
2226
- secondary_dim: string;
2227
- secondary_disabled: string;
2228
- on_secondary_high: string;
2229
- on_secondary_medium: string;
2230
- on_secondary_low: string;
2231
- background_default: string;
2232
- background_dim: string;
2233
- surface_default: string;
2234
- surface_bright: string;
2235
- surface_brighter: string;
2236
- surface_dim: string;
2237
- on_surface_high: string;
2238
- on_surface_medium: string;
2239
- on_surface_low: string;
2240
- border_default: string;
2241
- border_bright: string;
2242
- alert_success: string;
2243
- alert_warning: string;
2244
- alert_error_default: string;
2245
- alert_error_bright: string;
2246
- alert_error_brighter: string;
2247
- alert_error_dim: string;
2248
- };
2249
- shadows: {
2250
- sm: string;
2251
- md: string;
2252
- };
2253
- fonts: {
2254
- sans: string;
2255
- };
2256
- fontSizes: {
2257
- h1: string;
2258
- h2: string;
2259
- h3: string;
2260
- h4: string;
2261
- h5: string;
2262
- h6: string;
2263
- tiny: string;
2264
- xs: string;
2265
- sm: string;
2266
- md: string;
2267
- lg: string;
2268
- };
2269
- fontWeights: {
2270
- semiBold: number;
2271
- medium: number;
2272
- regular: number;
2273
- };
2274
- lineHeights: {
2275
- h1: string;
2276
- h2: string;
2277
- h3: string;
2278
- h4: string;
2279
- h5: string;
2280
- h6: string;
2281
- tiny: string;
2282
- xs: string;
2283
- sm: string;
2284
- md: string;
2285
- };
2286
- radii: {
2287
- '0': string;
2288
- '1': string;
2289
- '2': string;
2290
- '3': string;
2291
- '4': string;
2292
- round: string;
2293
- };
2294
- space: {
2295
- 0: string;
2296
- xs: string;
2297
- sm: string;
2298
- md: string;
2299
- lg: string;
2300
- xl: string;
2301
- px: string;
2302
- 1: string;
2303
- 2: string;
2304
- 3: string;
2305
- 4: string;
2306
- 5: string;
2307
- 6: string;
2308
- 7: string;
2309
- 8: string;
2310
- 9: string;
2311
- 10: string;
2312
- 11: string;
2313
- 12: string;
2314
- 13: string;
2315
- 14: string;
2316
- 15: string;
2317
- 16: string;
2318
- 17: string;
2319
- 18: string;
2320
- 19: string;
2321
- 20: string;
2322
- 24: string;
2323
- 28: string;
2324
- 32: string;
2325
- 36: string;
2326
- 40: string;
2327
- 44: string;
2328
- 48: string;
2329
- 52: string;
2330
- 56: string;
2331
- 60: string;
2332
- 64: string;
2333
- 72: string;
2334
- 80: string;
2335
- 96: string;
2336
- 100: string;
2337
- };
2338
- borderWidths: {
2339
- light: string;
2340
- normal: string;
2341
- bold: string;
2342
- extrabold: string;
2343
- black: string;
2344
- };
2345
- }, {
2346
- width: string;
2347
- height: string;
2348
- minWidth: string;
2349
- maxWidth: string;
2350
- minHeight: string;
2351
- maxHeight: string;
2352
- flexBasis: string;
2353
- gridTemplateColumns: string;
2354
- gridTemplateRows: string;
2355
- blockSize: string;
2356
- minBlockSize: string;
2357
- maxBlockSize: string;
2358
- inlineSize: string;
2359
- minInlineSize: string;
2360
- maxInlineSize: string;
2361
- gap: "space";
2362
- gridGap: "space";
2363
- columnGap: "space";
2364
- gridColumnGap: "space";
2365
- rowGap: "space";
2366
- gridRowGap: "space";
2367
- inset: "space";
2368
- insetBlock: "space";
2369
- insetBlockEnd: "space";
2370
- insetBlockStart: "space";
2371
- insetInline: "space";
2372
- insetInlineEnd: "space";
2373
- insetInlineStart: "space";
2374
- margin: "space";
2375
- marginTop: "space";
2376
- marginRight: "space";
2377
- marginBottom: "space";
2378
- marginLeft: "space";
2379
- marginBlock: "space";
2380
- marginBlockEnd: "space";
2381
- marginBlockStart: "space";
2382
- marginInline: "space";
2383
- marginInlineEnd: "space";
2384
- marginInlineStart: "space";
2385
- padding: "space";
2386
- paddingTop: "space";
2387
- paddingRight: "space";
2388
- paddingBottom: "space";
2389
- paddingLeft: "space";
2390
- paddingBlock: "space";
2391
- paddingBlockEnd: "space";
2392
- paddingBlockStart: "space";
2393
- paddingInline: "space";
2394
- paddingInlineEnd: "space";
2395
- paddingInlineStart: "space";
2396
- scrollMargin: "space";
2397
- scrollMarginTop: "space";
2398
- scrollMarginRight: "space";
2399
- scrollMarginBottom: "space";
2400
- scrollMarginLeft: "space";
2401
- scrollMarginBlock: "space";
2402
- scrollMarginBlockEnd: "space";
2403
- scrollMarginBlockStart: "space";
2404
- scrollMarginInline: "space";
2405
- scrollMarginInlineEnd: "space";
2406
- scrollMarginInlineStart: "space";
2407
- scrollPadding: "space";
2408
- scrollPaddingTop: "space";
2409
- scrollPaddingRight: "space";
2410
- scrollPaddingBottom: "space";
2411
- scrollPaddingLeft: "space";
2412
- scrollPaddingBlock: "space";
2413
- scrollPaddingBlockEnd: "space";
2414
- scrollPaddingBlockStart: "space";
2415
- scrollPaddingInline: "space";
2416
- scrollPaddingInlineEnd: "space";
2417
- scrollPaddingInlineStart: "space";
2418
- top: "space";
2419
- right: "space";
2420
- bottom: "space";
2421
- left: "space";
2422
- fontSize: "fontSizes";
2423
- background: "colors";
2424
- backgroundColor: "colors";
2425
- backgroundImage: "colors";
2426
- borderImage: "colors";
2427
- border: "colors";
2428
- borderBlock: "colors";
2429
- borderBlockEnd: "colors";
2430
- borderBlockStart: "colors";
2431
- borderBottom: "colors";
2432
- borderBottomColor: "colors";
2433
- borderColor: "colors";
2434
- borderInline: "colors";
2435
- borderInlineEnd: "colors";
2436
- borderInlineStart: "colors";
2437
- borderLeft: "colors";
2438
- borderLeftColor: "colors";
2439
- borderRight: "colors";
2440
- borderRightColor: "colors";
2441
- borderTop: "colors";
2442
- borderTopColor: "colors";
2443
- caretColor: "colors";
2444
- color: "colors";
2445
- columnRuleColor: "colors";
2446
- outline: "colors";
2447
- outlineColor: "colors";
2448
- fill: "colors";
2449
- stroke: "colors";
2450
- textDecorationColor: "colors";
2451
- fontFamily: "fonts";
2452
- fontWeight: "fontWeights";
2453
- lineHeight: "lineHeights";
2454
- letterSpacing: "letterSpacings";
2455
- borderWidth: "borderWidths";
2456
- borderTopWidth: "borderWidths";
2457
- borderLeftWidth: "borderWidths";
2458
- borderRightWidth: "borderWidths";
2459
- borderBottomWidth: "borderWidths";
2460
- borderStyle: "borderStyles";
2461
- borderTopStyle: "borderStyles";
2462
- borderLeftStyle: "borderStyles";
2463
- borderRightStyle: "borderStyles";
2464
- borderBottomStyle: "borderStyles";
2465
- borderRadius: "radii";
2466
- borderTopLeftRadius: "radii";
2467
- borderTopRightRadius: "radii";
2468
- borderBottomRightRadius: "radii";
2469
- borderBottomLeftRadius: "radii";
2470
- boxShadow: "shadows";
2471
- textShadow: "shadows";
2472
- transition: "transitions";
2473
- zIndex: "zIndices";
2474
- }, {
2475
- bg: (value: {
2476
- readonly [$$PropertyValue]: "backgroundColor";
2477
- }) => {
2478
- backgroundColor: {
2479
- readonly [$$PropertyValue]: "backgroundColor";
2480
- };
2481
- };
2482
- c: (value: {
2483
- readonly [$$PropertyValue]: "color";
2484
- }) => {
2485
- color: {
2486
- readonly [$$PropertyValue]: "color";
2487
- };
2488
- };
2489
- r: (value: {
2490
- readonly [$$ScaleValue]: "radii";
2491
- }) => {
2492
- borderRadius: {
2493
- readonly [$$ScaleValue]: "radii";
2494
- };
2495
- };
2496
- fs: (value: string | number | {
2497
- readonly [$$PropertyValue]: "fontSize";
2498
- }) => {
2499
- fontSize: string | number | {
2500
- readonly [$$PropertyValue]: "fontSize";
2501
- };
2502
- };
2503
- size: (value: string | number | {
2504
- readonly [$$ScaleValue]: "space";
2505
- }) => {
2506
- height: string | number | {
2507
- readonly [$$ScaleValue]: "space";
2508
- };
2509
- width: string | number | {
2510
- readonly [$$ScaleValue]: "space";
2511
- };
2512
- };
2513
- w: (value: string | number | {
2514
- readonly [$$ScaleValue]: "space";
2515
- }) => {
2516
- width: string | number | {
2517
- readonly [$$ScaleValue]: "space";
2518
- };
2519
- };
2520
- h: (value: string | number | {
2521
- readonly [$$ScaleValue]: "space";
2522
- }) => {
2523
- height: string | number | {
2524
- readonly [$$ScaleValue]: "space";
2525
- };
2526
- };
2527
- p: (value: string | number | {
2528
- readonly [$$ScaleValue]: "space";
2529
- }) => {
2530
- padding: string | number | {
2531
- readonly [$$ScaleValue]: "space";
2532
- };
2533
- };
2534
- pt: (value: string | number | {
2535
- readonly [$$ScaleValue]: "space";
2536
- }) => {
2537
- paddingTop: string | number | {
2538
- readonly [$$ScaleValue]: "space";
2539
- };
2540
- };
2541
- pr: (value: string | number | {
2542
- readonly [$$ScaleValue]: "space";
2543
- }) => {
2544
- paddingRight: string | number | {
2545
- readonly [$$ScaleValue]: "space";
2546
- };
2547
- };
2548
- pb: (value: string | number | {
2549
- readonly [$$ScaleValue]: "space";
2550
- }) => {
2551
- paddingBottom: string | number | {
2552
- readonly [$$ScaleValue]: "space";
2553
- };
2554
- };
2555
- pl: (value: string | number | {
2556
- readonly [$$ScaleValue]: "space";
2557
- }) => {
2558
- paddingLeft: string | number | {
2559
- readonly [$$ScaleValue]: "space";
2560
- };
2561
- };
2562
- px: (value: string | number | {
2563
- readonly [$$ScaleValue]: "space";
2564
- }) => {
2565
- paddingLeft: string | number | {
2566
- readonly [$$ScaleValue]: "space";
2567
- };
2568
- paddingRight: string | number | {
2569
- readonly [$$ScaleValue]: "space";
2570
- };
2571
- };
2572
- py: (value: string | number | {
2573
- readonly [$$ScaleValue]: "space";
2574
- }) => {
2575
- paddingTop: string | number | {
2576
- readonly [$$ScaleValue]: "space";
2577
- };
2578
- paddingBottom: string | number | {
2579
- readonly [$$ScaleValue]: "space";
2580
- };
2581
- };
2582
- m: (value: string | number | {
2583
- readonly [$$ScaleValue]: "space";
2584
- }) => {
2585
- margin: string | number | {
2586
- readonly [$$ScaleValue]: "space";
2587
- };
2588
- };
2589
- mt: (value: string | number | {
2590
- readonly [$$ScaleValue]: "space";
2591
- }) => {
2592
- marginTop: string | number | {
2593
- readonly [$$ScaleValue]: "space";
2594
- };
2595
- };
2596
- mr: (value: string | number | {
2597
- readonly [$$ScaleValue]: "space";
2598
- }) => {
2599
- marginRight: string | number | {
2600
- readonly [$$ScaleValue]: "space";
2601
- };
2602
- };
2603
- mb: (value: string | number | {
2604
- readonly [$$ScaleValue]: "space";
2605
- }) => {
2606
- marginBottom: string | number | {
2607
- readonly [$$ScaleValue]: "space";
2608
- };
2609
- };
2610
- ml: (value: string | number | {
2611
- readonly [$$ScaleValue]: "space";
2612
- }) => {
2613
- marginLeft: string | number | {
2614
- readonly [$$ScaleValue]: "space";
2615
- };
2616
- };
2617
- mx: (value: string | number | {
2618
- readonly [$$ScaleValue]: "space";
2619
- }) => {
2620
- marginLeft: string | number | {
2621
- readonly [$$ScaleValue]: "space";
2622
- };
2623
- marginRight: string | number | {
2624
- readonly [$$ScaleValue]: "space";
2625
- };
2626
- };
2627
- my: (value: string | number | {
2628
- readonly [$$ScaleValue]: "space";
2629
- }) => {
2630
- marginTop: string | number | {
2631
- readonly [$$ScaleValue]: "space";
2632
- };
2633
- marginBottom: string | number | {
2634
- readonly [$$ScaleValue]: "space";
2635
- };
2636
- };
2637
- }>>;
2638
- DefaultClose: (props: Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
2639
- ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
2640
- }, "css" | "active"> & import("@stitches/react/types/styled-component").TransformProps<{
2641
- active?: boolean | "true" | "false" | undefined;
2642
- }, {
2643
- allowMotion: string;
2644
- sm: string;
2645
- md: string;
2646
- lg: string;
2647
- xl: string;
2648
- '2xl': string;
2649
- ls: string;
2650
- }> & {
2651
- css?: import("@stitches/react/types/css-util").CSS<{
2652
- allowMotion: string;
2653
- sm: string;
2654
- md: string;
2655
- lg: string;
2656
- xl: string;
2657
- '2xl': string;
2658
- ls: string;
2659
- }, {
2660
- colors: {
2661
- primary_default: string;
2662
- primary_bright: string;
2663
- primary_dim: string;
2664
- primary_disabled: string;
2665
- on_primary_high: string;
2666
- on_primary_medium: string;
2667
- on_primary_low: string;
2668
- secondary_default: string;
2669
- secondary_bright: string;
2670
- secondary_dim: string;
2671
- secondary_disabled: string;
2672
- on_secondary_high: string;
2673
- on_secondary_medium: string;
2674
- on_secondary_low: string;
2675
- background_default: string;
2676
- background_dim: string;
2677
- surface_default: string;
2678
- surface_bright: string;
2679
- surface_brighter: string;
2680
- surface_dim: string;
2681
- on_surface_high: string;
2682
- on_surface_medium: string;
2683
- on_surface_low: string;
2684
- border_default: string;
2685
- border_bright: string;
2686
- alert_success: string;
2687
- alert_warning: string;
2688
- alert_error_default: string;
2689
- alert_error_bright: string;
2690
- alert_error_brighter: string;
2691
- alert_error_dim: string;
2692
- };
2693
- shadows: {
2694
- sm: string;
2695
- md: string;
2696
- };
2697
- fonts: {
2698
- sans: string;
2699
- };
2700
- fontSizes: {
2701
- h1: string;
2702
- h2: string;
2703
- h3: string;
2704
- h4: string;
2705
- h5: string;
2706
- h6: string;
2707
- tiny: string;
2708
- xs: string;
2709
- sm: string;
2710
- md: string;
2711
- lg: string;
2712
- };
2713
- fontWeights: {
2714
- semiBold: number;
2715
- medium: number;
2716
- regular: number;
2717
- };
2718
- lineHeights: {
2719
- h1: string;
2720
- h2: string;
2721
- h3: string;
2722
- h4: string;
2723
- h5: string;
2724
- h6: string;
2725
- tiny: string;
2726
- xs: string;
2727
- sm: string;
2728
- md: string;
2729
- };
2730
- radii: {
2731
- '0': string;
2732
- '1': string;
2733
- '2': string;
2734
- '3': string;
2735
- '4': string;
2736
- round: string;
2737
- };
2738
- space: {
2739
- 0: string;
2740
- xs: string;
2741
- sm: string;
2742
- md: string;
2743
- lg: string;
2744
- xl: string;
2745
- px: string;
2746
- 1: string;
2747
- 2: string;
2748
- 3: string;
2749
- 4: string;
2750
- 5: string;
2751
- 6: string;
2752
- 7: string;
2753
- 8: string;
2754
- 9: string;
2755
- 10: string;
2756
- 11: string;
2757
- 12: string;
2758
- 13: string;
2759
- 14: string;
2760
- 15: string;
2761
- 16: string;
2762
- 17: string;
2763
- 18: string;
2764
- 19: string;
2765
- 20: string;
2766
- 24: string;
2767
- 28: string;
2768
- 32: string;
2769
- 36: string;
2770
- 40: string;
2771
- 44: string;
2772
- 48: string;
2773
- 52: string;
2774
- 56: string;
2775
- 60: string;
2776
- 64: string;
2777
- 72: string;
2778
- 80: string;
2779
- 96: string;
2780
- 100: string;
2781
- };
2782
- borderWidths: {
2783
- light: string;
2784
- normal: string;
2785
- bold: string;
2786
- extrabold: string;
2787
- black: string;
2788
- };
2789
- }, {
2790
- width: string;
2791
- height: string;
2792
- minWidth: string;
2793
- maxWidth: string;
2794
- minHeight: string;
2795
- maxHeight: string;
2796
- flexBasis: string;
2797
- gridTemplateColumns: string;
2798
- gridTemplateRows: string;
2799
- blockSize: string;
2800
- minBlockSize: string;
2801
- maxBlockSize: string;
2802
- inlineSize: string;
2803
- minInlineSize: string;
2804
- maxInlineSize: string;
2805
- gap: "space";
2806
- gridGap: "space";
2807
- columnGap: "space";
2808
- gridColumnGap: "space";
2809
- rowGap: "space";
2810
- gridRowGap: "space";
2811
- inset: "space";
2812
- insetBlock: "space";
2813
- insetBlockEnd: "space";
2814
- insetBlockStart: "space";
2815
- insetInline: "space";
2816
- insetInlineEnd: "space";
2817
- insetInlineStart: "space";
2818
- margin: "space";
2819
- marginTop: "space";
2820
- marginRight: "space";
2821
- marginBottom: "space";
2822
- marginLeft: "space";
2823
- marginBlock: "space";
2824
- marginBlockEnd: "space";
2825
- marginBlockStart: "space";
2826
- marginInline: "space";
2827
- marginInlineEnd: "space";
2828
- marginInlineStart: "space";
2829
- padding: "space";
2830
- paddingTop: "space";
2831
- paddingRight: "space";
2832
- paddingBottom: "space";
2833
- paddingLeft: "space";
2834
- paddingBlock: "space";
2835
- paddingBlockEnd: "space";
2836
- paddingBlockStart: "space";
2837
- paddingInline: "space";
2838
- paddingInlineEnd: "space";
2839
- paddingInlineStart: "space";
2840
- scrollMargin: "space";
2841
- scrollMarginTop: "space";
2842
- scrollMarginRight: "space";
2843
- scrollMarginBottom: "space";
2844
- scrollMarginLeft: "space";
2845
- scrollMarginBlock: "space";
2846
- scrollMarginBlockEnd: "space";
2847
- scrollMarginBlockStart: "space";
2848
- scrollMarginInline: "space";
2849
- scrollMarginInlineEnd: "space";
2850
- scrollMarginInlineStart: "space";
2851
- scrollPadding: "space";
2852
- scrollPaddingTop: "space";
2853
- scrollPaddingRight: "space";
2854
- scrollPaddingBottom: "space";
2855
- scrollPaddingLeft: "space";
2856
- scrollPaddingBlock: "space";
2857
- scrollPaddingBlockEnd: "space";
2858
- scrollPaddingBlockStart: "space";
2859
- scrollPaddingInline: "space";
2860
- scrollPaddingInlineEnd: "space";
2861
- scrollPaddingInlineStart: "space";
2862
- top: "space";
2863
- right: "space";
2864
- bottom: "space";
2865
- left: "space";
2866
- fontSize: "fontSizes";
2867
- background: "colors";
2868
- backgroundColor: "colors";
2869
- backgroundImage: "colors";
2870
- borderImage: "colors";
2871
- border: "colors";
2872
- borderBlock: "colors";
2873
- borderBlockEnd: "colors";
2874
- borderBlockStart: "colors";
2875
- borderBottom: "colors";
2876
- borderBottomColor: "colors";
2877
- borderColor: "colors";
2878
- borderInline: "colors";
2879
- borderInlineEnd: "colors";
2880
- borderInlineStart: "colors";
2881
- borderLeft: "colors";
2882
- borderLeftColor: "colors";
2883
- borderRight: "colors";
2884
- borderRightColor: "colors";
2885
- borderTop: "colors";
2886
- borderTopColor: "colors";
2887
- caretColor: "colors";
2888
- color: "colors";
2889
- columnRuleColor: "colors";
2890
- outline: "colors";
2891
- outlineColor: "colors";
2892
- fill: "colors";
2893
- stroke: "colors";
2894
- textDecorationColor: "colors";
2895
- fontFamily: "fonts";
2896
- fontWeight: "fontWeights";
2897
- lineHeight: "lineHeights";
2898
- letterSpacing: "letterSpacings";
2899
- borderWidth: "borderWidths";
2900
- borderTopWidth: "borderWidths";
2901
- borderLeftWidth: "borderWidths";
2902
- borderRightWidth: "borderWidths";
2903
- borderBottomWidth: "borderWidths";
2904
- borderStyle: "borderStyles";
2905
- borderTopStyle: "borderStyles";
2906
- borderLeftStyle: "borderStyles";
2907
- borderRightStyle: "borderStyles";
2908
- borderBottomStyle: "borderStyles";
2909
- borderRadius: "radii";
2910
- borderTopLeftRadius: "radii";
2911
- borderTopRightRadius: "radii";
2912
- borderBottomRightRadius: "radii";
2913
- borderBottomLeftRadius: "radii";
2914
- boxShadow: "shadows";
2915
- textShadow: "shadows";
2916
- transition: "transitions";
2917
- zIndex: "zIndices";
2918
- }, {
2919
- bg: (value: {
2920
- readonly [$$PropertyValue]: "backgroundColor";
2921
- }) => {
2922
- backgroundColor: {
2923
- readonly [$$PropertyValue]: "backgroundColor";
2924
- };
2925
- };
2926
- c: (value: {
2927
- readonly [$$PropertyValue]: "color";
2928
- }) => {
2929
- color: {
2930
- readonly [$$PropertyValue]: "color";
2931
- };
2932
- };
2933
- r: (value: {
2934
- readonly [$$ScaleValue]: "radii";
2935
- }) => {
2936
- borderRadius: {
2937
- readonly [$$ScaleValue]: "radii";
2938
- };
2939
- };
2940
- fs: (value: string | number | {
2941
- readonly [$$PropertyValue]: "fontSize";
2942
- }) => {
2943
- fontSize: string | number | {
2944
- readonly [$$PropertyValue]: "fontSize";
2945
- };
2946
- };
2947
- size: (value: string | number | {
2948
- readonly [$$ScaleValue]: "space";
2949
- }) => {
2950
- height: string | number | {
2951
- readonly [$$ScaleValue]: "space";
2952
- };
2953
- width: string | number | {
2954
- readonly [$$ScaleValue]: "space";
2955
- };
2956
- };
2957
- w: (value: string | number | {
2958
- readonly [$$ScaleValue]: "space";
2959
- }) => {
2960
- width: string | number | {
2961
- readonly [$$ScaleValue]: "space";
2962
- };
2963
- };
2964
- h: (value: string | number | {
2965
- readonly [$$ScaleValue]: "space";
2966
- }) => {
2967
- height: string | number | {
2968
- readonly [$$ScaleValue]: "space";
2969
- };
2970
- };
2971
- p: (value: string | number | {
2972
- readonly [$$ScaleValue]: "space";
2973
- }) => {
2974
- padding: string | number | {
2975
- readonly [$$ScaleValue]: "space";
2976
- };
2977
- };
2978
- pt: (value: string | number | {
2979
- readonly [$$ScaleValue]: "space";
2980
- }) => {
2981
- paddingTop: string | number | {
2982
- readonly [$$ScaleValue]: "space";
2983
- };
2984
- };
2985
- pr: (value: string | number | {
2986
- readonly [$$ScaleValue]: "space";
2987
- }) => {
2988
- paddingRight: string | number | {
2989
- readonly [$$ScaleValue]: "space";
2990
- };
2991
- };
2992
- pb: (value: string | number | {
2993
- readonly [$$ScaleValue]: "space";
2994
- }) => {
2995
- paddingBottom: string | number | {
2996
- readonly [$$ScaleValue]: "space";
2997
- };
2998
- };
2999
- pl: (value: string | number | {
3000
- readonly [$$ScaleValue]: "space";
3001
- }) => {
3002
- paddingLeft: string | number | {
3003
- readonly [$$ScaleValue]: "space";
3004
- };
3005
- };
3006
- px: (value: string | number | {
3007
- readonly [$$ScaleValue]: "space";
3008
- }) => {
3009
- paddingLeft: string | number | {
3010
- readonly [$$ScaleValue]: "space";
3011
- };
3012
- paddingRight: string | number | {
3013
- readonly [$$ScaleValue]: "space";
3014
- };
3015
- };
3016
- py: (value: string | number | {
3017
- readonly [$$ScaleValue]: "space";
3018
- }) => {
3019
- paddingTop: string | number | {
3020
- readonly [$$ScaleValue]: "space";
3021
- };
3022
- paddingBottom: string | number | {
3023
- readonly [$$ScaleValue]: "space";
3024
- };
3025
- };
3026
- m: (value: string | number | {
3027
- readonly [$$ScaleValue]: "space";
3028
- }) => {
3029
- margin: string | number | {
3030
- readonly [$$ScaleValue]: "space";
3031
- };
3032
- };
3033
- mt: (value: string | number | {
3034
- readonly [$$ScaleValue]: "space";
3035
- }) => {
3036
- marginTop: string | number | {
3037
- readonly [$$ScaleValue]: "space";
3038
- };
3039
- };
3040
- mr: (value: string | number | {
3041
- readonly [$$ScaleValue]: "space";
3042
- }) => {
3043
- marginRight: string | number | {
3044
- readonly [$$ScaleValue]: "space";
3045
- };
3046
- };
3047
- mb: (value: string | number | {
3048
- readonly [$$ScaleValue]: "space";
3049
- }) => {
3050
- marginBottom: string | number | {
3051
- readonly [$$ScaleValue]: "space";
3052
- };
3053
- };
3054
- ml: (value: string | number | {
3055
- readonly [$$ScaleValue]: "space";
3056
- }) => {
3057
- marginLeft: string | number | {
3058
- readonly [$$ScaleValue]: "space";
3059
- };
3060
- };
3061
- mx: (value: string | number | {
3062
- readonly [$$ScaleValue]: "space";
3063
- }) => {
3064
- marginLeft: string | number | {
3065
- readonly [$$ScaleValue]: "space";
3066
- };
3067
- marginRight: string | number | {
3068
- readonly [$$ScaleValue]: "space";
3069
- };
3070
- };
3071
- my: (value: string | number | {
3072
- readonly [$$ScaleValue]: "space";
3073
- }) => {
3074
- marginTop: string | number | {
3075
- readonly [$$ScaleValue]: "space";
3076
- };
3077
- marginBottom: string | number | {
3078
- readonly [$$ScaleValue]: "space";
3079
- };
3080
- };
3081
- }> | undefined;
3082
- }) => import("react").JSX.Element;
3083
- Portal: import("@stitches/react/types/styled-component").StyledComponent<import("react").FC<import("@radix-ui/react-dialog").DialogPortalProps>, {}, {
3084
- allowMotion: string;
3085
- sm: string;
3086
- md: string;
3087
- lg: string;
3088
- xl: string;
3089
- '2xl': string;
3090
- ls: string;
3091
- }, import("@stitches/react/types/css-util").CSS<{
3092
- allowMotion: string;
3093
- sm: string;
3094
- md: string;
3095
- lg: string;
3096
- xl: string;
3097
- '2xl': string;
3098
- ls: string;
3099
- }, {
3100
- colors: {
3101
- primary_default: string;
3102
- primary_bright: string;
3103
- primary_dim: string;
3104
- primary_disabled: string;
3105
- on_primary_high: string;
3106
- on_primary_medium: string;
3107
- on_primary_low: string;
3108
- secondary_default: string;
3109
- secondary_bright: string;
3110
- secondary_dim: string;
3111
- secondary_disabled: string;
3112
- on_secondary_high: string;
3113
- on_secondary_medium: string;
3114
- on_secondary_low: string;
3115
- background_default: string;
3116
- background_dim: string;
3117
- surface_default: string;
3118
- surface_bright: string;
3119
- surface_brighter: string;
3120
- surface_dim: string;
3121
- on_surface_high: string;
3122
- on_surface_medium: string;
3123
- on_surface_low: string;
3124
- border_default: string;
3125
- border_bright: string;
3126
- alert_success: string;
3127
- alert_warning: string;
3128
- alert_error_default: string;
3129
- alert_error_bright: string;
3130
- alert_error_brighter: string;
3131
- alert_error_dim: string;
3132
- };
3133
- shadows: {
3134
- sm: string;
3135
- md: string;
3136
- };
3137
- fonts: {
3138
- sans: string;
3139
- };
3140
- fontSizes: {
3141
- h1: string;
3142
- h2: string;
3143
- h3: string;
3144
- h4: string;
3145
- h5: string;
3146
- h6: string;
3147
- tiny: string;
3148
- xs: string;
3149
- sm: string;
3150
- md: string;
3151
- lg: string;
3152
- };
3153
- fontWeights: {
3154
- semiBold: number;
3155
- medium: number;
3156
- regular: number;
3157
- };
3158
- lineHeights: {
3159
- h1: string;
3160
- h2: string;
3161
- h3: string;
3162
- h4: string;
3163
- h5: string;
3164
- h6: string;
3165
- tiny: string;
3166
- xs: string;
3167
- sm: string;
3168
- md: string;
3169
- };
3170
- radii: {
3171
- '0': string;
3172
- '1': string;
3173
- '2': string;
3174
- '3': string;
3175
- '4': string;
3176
- round: string;
3177
- };
3178
- space: {
3179
- 0: string;
3180
- xs: string;
3181
- sm: string;
3182
- md: string;
3183
- lg: string;
3184
- xl: string;
3185
- px: string;
3186
- 1: string;
3187
- 2: string;
3188
- 3: string;
3189
- 4: string;
3190
- 5: string;
3191
- 6: string;
3192
- 7: string;
3193
- 8: string;
3194
- 9: string;
3195
- 10: string;
3196
- 11: string;
3197
- 12: string;
3198
- 13: string;
3199
- 14: string;
3200
- 15: string;
3201
- 16: string;
3202
- 17: string;
3203
- 18: string;
3204
- 19: string;
3205
- 20: string;
3206
- 24: string;
3207
- 28: string;
3208
- 32: string;
3209
- 36: string;
3210
- 40: string;
3211
- 44: string;
3212
- 48: string;
3213
- 52: string;
3214
- 56: string;
3215
- 60: string;
3216
- 64: string;
3217
- 72: string;
3218
- 80: string;
3219
- 96: string;
3220
- 100: string;
3221
- };
3222
- borderWidths: {
3223
- light: string;
3224
- normal: string;
3225
- bold: string;
3226
- extrabold: string;
3227
- black: string;
3228
- };
3229
- }, {
3230
- width: string;
3231
- height: string;
3232
- minWidth: string;
3233
- maxWidth: string;
3234
- minHeight: string;
3235
- maxHeight: string;
3236
- flexBasis: string;
3237
- gridTemplateColumns: string;
3238
- gridTemplateRows: string;
3239
- blockSize: string;
3240
- minBlockSize: string;
3241
- maxBlockSize: string;
3242
- inlineSize: string;
3243
- minInlineSize: string;
3244
- maxInlineSize: string;
3245
- gap: "space";
3246
- gridGap: "space";
3247
- columnGap: "space";
3248
- gridColumnGap: "space";
3249
- rowGap: "space";
3250
- gridRowGap: "space";
3251
- inset: "space";
3252
- insetBlock: "space";
3253
- insetBlockEnd: "space";
3254
- insetBlockStart: "space";
3255
- insetInline: "space";
3256
- insetInlineEnd: "space";
3257
- insetInlineStart: "space";
3258
- margin: "space";
3259
- marginTop: "space";
3260
- marginRight: "space";
3261
- marginBottom: "space";
3262
- marginLeft: "space";
3263
- marginBlock: "space";
3264
- marginBlockEnd: "space";
3265
- marginBlockStart: "space";
3266
- marginInline: "space";
3267
- marginInlineEnd: "space";
3268
- marginInlineStart: "space";
3269
- padding: "space";
3270
- paddingTop: "space";
3271
- paddingRight: "space";
3272
- paddingBottom: "space";
3273
- paddingLeft: "space";
3274
- paddingBlock: "space";
3275
- paddingBlockEnd: "space";
3276
- paddingBlockStart: "space";
3277
- paddingInline: "space";
3278
- paddingInlineEnd: "space";
3279
- paddingInlineStart: "space";
3280
- scrollMargin: "space";
3281
- scrollMarginTop: "space";
3282
- scrollMarginRight: "space";
3283
- scrollMarginBottom: "space";
3284
- scrollMarginLeft: "space";
3285
- scrollMarginBlock: "space";
3286
- scrollMarginBlockEnd: "space";
3287
- scrollMarginBlockStart: "space";
3288
- scrollMarginInline: "space";
3289
- scrollMarginInlineEnd: "space";
3290
- scrollMarginInlineStart: "space";
3291
- scrollPadding: "space";
3292
- scrollPaddingTop: "space";
3293
- scrollPaddingRight: "space";
3294
- scrollPaddingBottom: "space";
3295
- scrollPaddingLeft: "space";
3296
- scrollPaddingBlock: "space";
3297
- scrollPaddingBlockEnd: "space";
3298
- scrollPaddingBlockStart: "space";
3299
- scrollPaddingInline: "space";
3300
- scrollPaddingInlineEnd: "space";
3301
- scrollPaddingInlineStart: "space";
3302
- top: "space";
3303
- right: "space";
3304
- bottom: "space";
3305
- left: "space";
3306
- fontSize: "fontSizes";
3307
- background: "colors";
3308
- backgroundColor: "colors";
3309
- backgroundImage: "colors";
3310
- borderImage: "colors";
3311
- border: "colors";
3312
- borderBlock: "colors";
3313
- borderBlockEnd: "colors";
3314
- borderBlockStart: "colors";
3315
- borderBottom: "colors";
3316
- borderBottomColor: "colors";
3317
- borderColor: "colors";
3318
- borderInline: "colors";
3319
- borderInlineEnd: "colors";
3320
- borderInlineStart: "colors";
3321
- borderLeft: "colors";
3322
- borderLeftColor: "colors";
3323
- borderRight: "colors";
3324
- borderRightColor: "colors";
3325
- borderTop: "colors";
3326
- borderTopColor: "colors";
3327
- caretColor: "colors";
3328
- color: "colors";
3329
- columnRuleColor: "colors";
3330
- outline: "colors";
3331
- outlineColor: "colors";
3332
- fill: "colors";
3333
- stroke: "colors";
3334
- textDecorationColor: "colors";
3335
- fontFamily: "fonts";
3336
- fontWeight: "fontWeights";
3337
- lineHeight: "lineHeights";
3338
- letterSpacing: "letterSpacings";
3339
- borderWidth: "borderWidths";
3340
- borderTopWidth: "borderWidths";
3341
- borderLeftWidth: "borderWidths";
3342
- borderRightWidth: "borderWidths";
3343
- borderBottomWidth: "borderWidths";
3344
- borderStyle: "borderStyles";
3345
- borderTopStyle: "borderStyles";
3346
- borderLeftStyle: "borderStyles";
3347
- borderRightStyle: "borderStyles";
3348
- borderBottomStyle: "borderStyles";
3349
- borderRadius: "radii";
3350
- borderTopLeftRadius: "radii";
3351
- borderTopRightRadius: "radii";
3352
- borderBottomRightRadius: "radii";
3353
- borderBottomLeftRadius: "radii";
3354
- boxShadow: "shadows";
3355
- textShadow: "shadows";
3356
- transition: "transitions";
3357
- zIndex: "zIndices";
3358
- }, {
3359
- bg: (value: {
3360
- readonly [$$PropertyValue]: "backgroundColor";
3361
- }) => {
3362
- backgroundColor: {
1920
+ }, {
1921
+ width: string;
1922
+ height: string;
1923
+ minWidth: string;
1924
+ maxWidth: string;
1925
+ minHeight: string;
1926
+ maxHeight: string;
1927
+ flexBasis: string;
1928
+ gridTemplateColumns: string;
1929
+ gridTemplateRows: string;
1930
+ blockSize: string;
1931
+ minBlockSize: string;
1932
+ maxBlockSize: string;
1933
+ inlineSize: string;
1934
+ minInlineSize: string;
1935
+ maxInlineSize: string;
1936
+ gap: "space";
1937
+ gridGap: "space";
1938
+ columnGap: "space";
1939
+ gridColumnGap: "space";
1940
+ rowGap: "space";
1941
+ gridRowGap: "space";
1942
+ inset: "space";
1943
+ insetBlock: "space";
1944
+ insetBlockEnd: "space";
1945
+ insetBlockStart: "space";
1946
+ insetInline: "space";
1947
+ insetInlineEnd: "space";
1948
+ insetInlineStart: "space";
1949
+ margin: "space";
1950
+ marginTop: "space";
1951
+ marginRight: "space";
1952
+ marginBottom: "space";
1953
+ marginLeft: "space";
1954
+ marginBlock: "space";
1955
+ marginBlockEnd: "space";
1956
+ marginBlockStart: "space";
1957
+ marginInline: "space";
1958
+ marginInlineEnd: "space";
1959
+ marginInlineStart: "space";
1960
+ padding: "space";
1961
+ paddingTop: "space";
1962
+ paddingRight: "space";
1963
+ paddingBottom: "space";
1964
+ paddingLeft: "space";
1965
+ paddingBlock: "space";
1966
+ paddingBlockEnd: "space";
1967
+ paddingBlockStart: "space";
1968
+ paddingInline: "space";
1969
+ paddingInlineEnd: "space";
1970
+ paddingInlineStart: "space";
1971
+ scrollMargin: "space";
1972
+ scrollMarginTop: "space";
1973
+ scrollMarginRight: "space";
1974
+ scrollMarginBottom: "space";
1975
+ scrollMarginLeft: "space";
1976
+ scrollMarginBlock: "space";
1977
+ scrollMarginBlockEnd: "space";
1978
+ scrollMarginBlockStart: "space";
1979
+ scrollMarginInline: "space";
1980
+ scrollMarginInlineEnd: "space";
1981
+ scrollMarginInlineStart: "space";
1982
+ scrollPadding: "space";
1983
+ scrollPaddingTop: "space";
1984
+ scrollPaddingRight: "space";
1985
+ scrollPaddingBottom: "space";
1986
+ scrollPaddingLeft: "space";
1987
+ scrollPaddingBlock: "space";
1988
+ scrollPaddingBlockEnd: "space";
1989
+ scrollPaddingBlockStart: "space";
1990
+ scrollPaddingInline: "space";
1991
+ scrollPaddingInlineEnd: "space";
1992
+ scrollPaddingInlineStart: "space";
1993
+ top: "space";
1994
+ right: "space";
1995
+ bottom: "space";
1996
+ left: "space";
1997
+ fontSize: "fontSizes";
1998
+ background: "colors";
1999
+ backgroundColor: "colors";
2000
+ backgroundImage: "colors";
2001
+ borderImage: "colors";
2002
+ border: "colors";
2003
+ borderBlock: "colors";
2004
+ borderBlockEnd: "colors";
2005
+ borderBlockStart: "colors";
2006
+ borderBottom: "colors";
2007
+ borderBottomColor: "colors";
2008
+ borderColor: "colors";
2009
+ borderInline: "colors";
2010
+ borderInlineEnd: "colors";
2011
+ borderInlineStart: "colors";
2012
+ borderLeft: "colors";
2013
+ borderLeftColor: "colors";
2014
+ borderRight: "colors";
2015
+ borderRightColor: "colors";
2016
+ borderTop: "colors";
2017
+ borderTopColor: "colors";
2018
+ caretColor: "colors";
2019
+ color: "colors";
2020
+ columnRuleColor: "colors";
2021
+ outline: "colors";
2022
+ outlineColor: "colors";
2023
+ fill: "colors";
2024
+ stroke: "colors";
2025
+ textDecorationColor: "colors";
2026
+ fontFamily: "fonts";
2027
+ fontWeight: "fontWeights";
2028
+ lineHeight: "lineHeights";
2029
+ letterSpacing: "letterSpacings";
2030
+ borderWidth: "borderWidths";
2031
+ borderTopWidth: "borderWidths";
2032
+ borderLeftWidth: "borderWidths";
2033
+ borderRightWidth: "borderWidths";
2034
+ borderBottomWidth: "borderWidths";
2035
+ borderStyle: "borderStyles";
2036
+ borderTopStyle: "borderStyles";
2037
+ borderLeftStyle: "borderStyles";
2038
+ borderRightStyle: "borderStyles";
2039
+ borderBottomStyle: "borderStyles";
2040
+ borderRadius: "radii";
2041
+ borderTopLeftRadius: "radii";
2042
+ borderTopRightRadius: "radii";
2043
+ borderBottomRightRadius: "radii";
2044
+ borderBottomLeftRadius: "radii";
2045
+ boxShadow: "shadows";
2046
+ textShadow: "shadows";
2047
+ transition: "transitions";
2048
+ zIndex: "zIndices";
2049
+ }, {
2050
+ bg: (value: {
3363
2051
  readonly [$$PropertyValue]: "backgroundColor";
2052
+ }) => {
2053
+ backgroundColor: {
2054
+ readonly [$$PropertyValue]: "backgroundColor";
2055
+ };
3364
2056
  };
3365
- };
3366
- c: (value: {
3367
- readonly [$$PropertyValue]: "color";
3368
- }) => {
3369
- color: {
2057
+ c: (value: {
3370
2058
  readonly [$$PropertyValue]: "color";
2059
+ }) => {
2060
+ color: {
2061
+ readonly [$$PropertyValue]: "color";
2062
+ };
3371
2063
  };
3372
- };
3373
- r: (value: {
3374
- readonly [$$ScaleValue]: "radii";
3375
- }) => {
3376
- borderRadius: {
2064
+ r: (value: {
3377
2065
  readonly [$$ScaleValue]: "radii";
2066
+ }) => {
2067
+ borderRadius: {
2068
+ readonly [$$ScaleValue]: "radii";
2069
+ };
3378
2070
  };
3379
- };
3380
- fs: (value: string | number | {
3381
- readonly [$$PropertyValue]: "fontSize";
3382
- }) => {
3383
- fontSize: string | number | {
2071
+ fs: (value: string | number | {
3384
2072
  readonly [$$PropertyValue]: "fontSize";
2073
+ }) => {
2074
+ fontSize: string | number | {
2075
+ readonly [$$PropertyValue]: "fontSize";
2076
+ };
3385
2077
  };
3386
- };
3387
- size: (value: string | number | {
3388
- readonly [$$ScaleValue]: "space";
3389
- }) => {
3390
- height: string | number | {
3391
- readonly [$$ScaleValue]: "space";
3392
- };
3393
- width: string | number | {
3394
- readonly [$$ScaleValue]: "space";
3395
- };
3396
- };
3397
- w: (value: string | number | {
3398
- readonly [$$ScaleValue]: "space";
3399
- }) => {
3400
- width: string | number | {
3401
- readonly [$$ScaleValue]: "space";
3402
- };
3403
- };
3404
- h: (value: string | number | {
3405
- readonly [$$ScaleValue]: "space";
3406
- }) => {
3407
- height: string | number | {
3408
- readonly [$$ScaleValue]: "space";
3409
- };
3410
- };
3411
- p: (value: string | number | {
3412
- readonly [$$ScaleValue]: "space";
3413
- }) => {
3414
- padding: string | number | {
3415
- readonly [$$ScaleValue]: "space";
3416
- };
3417
- };
3418
- pt: (value: string | number | {
3419
- readonly [$$ScaleValue]: "space";
3420
- }) => {
3421
- paddingTop: string | number | {
2078
+ size: (value: string | number | {
3422
2079
  readonly [$$ScaleValue]: "space";
2080
+ }) => {
2081
+ height: string | number | {
2082
+ readonly [$$ScaleValue]: "space";
2083
+ };
2084
+ width: string | number | {
2085
+ readonly [$$ScaleValue]: "space";
2086
+ };
3423
2087
  };
3424
- };
3425
- pr: (value: string | number | {
3426
- readonly [$$ScaleValue]: "space";
3427
- }) => {
3428
- paddingRight: string | number | {
2088
+ w: (value: string | number | {
3429
2089
  readonly [$$ScaleValue]: "space";
2090
+ }) => {
2091
+ width: string | number | {
2092
+ readonly [$$ScaleValue]: "space";
2093
+ };
3430
2094
  };
3431
- };
3432
- pb: (value: string | number | {
3433
- readonly [$$ScaleValue]: "space";
3434
- }) => {
3435
- paddingBottom: string | number | {
2095
+ h: (value: string | number | {
3436
2096
  readonly [$$ScaleValue]: "space";
2097
+ }) => {
2098
+ height: string | number | {
2099
+ readonly [$$ScaleValue]: "space";
2100
+ };
3437
2101
  };
3438
- };
3439
- pl: (value: string | number | {
3440
- readonly [$$ScaleValue]: "space";
3441
- }) => {
3442
- paddingLeft: string | number | {
2102
+ p: (value: string | number | {
3443
2103
  readonly [$$ScaleValue]: "space";
2104
+ }) => {
2105
+ padding: string | number | {
2106
+ readonly [$$ScaleValue]: "space";
2107
+ };
3444
2108
  };
3445
- };
3446
- px: (value: string | number | {
3447
- readonly [$$ScaleValue]: "space";
3448
- }) => {
3449
- paddingLeft: string | number | {
2109
+ pt: (value: string | number | {
3450
2110
  readonly [$$ScaleValue]: "space";
2111
+ }) => {
2112
+ paddingTop: string | number | {
2113
+ readonly [$$ScaleValue]: "space";
2114
+ };
3451
2115
  };
3452
- paddingRight: string | number | {
2116
+ pr: (value: string | number | {
3453
2117
  readonly [$$ScaleValue]: "space";
2118
+ }) => {
2119
+ paddingRight: string | number | {
2120
+ readonly [$$ScaleValue]: "space";
2121
+ };
3454
2122
  };
3455
- };
3456
- py: (value: string | number | {
3457
- readonly [$$ScaleValue]: "space";
3458
- }) => {
3459
- paddingTop: string | number | {
2123
+ pb: (value: string | number | {
3460
2124
  readonly [$$ScaleValue]: "space";
2125
+ }) => {
2126
+ paddingBottom: string | number | {
2127
+ readonly [$$ScaleValue]: "space";
2128
+ };
3461
2129
  };
3462
- paddingBottom: string | number | {
2130
+ pl: (value: string | number | {
3463
2131
  readonly [$$ScaleValue]: "space";
2132
+ }) => {
2133
+ paddingLeft: string | number | {
2134
+ readonly [$$ScaleValue]: "space";
2135
+ };
3464
2136
  };
3465
- };
3466
- m: (value: string | number | {
3467
- readonly [$$ScaleValue]: "space";
3468
- }) => {
3469
- margin: string | number | {
2137
+ px: (value: string | number | {
3470
2138
  readonly [$$ScaleValue]: "space";
2139
+ }) => {
2140
+ paddingLeft: string | number | {
2141
+ readonly [$$ScaleValue]: "space";
2142
+ };
2143
+ paddingRight: string | number | {
2144
+ readonly [$$ScaleValue]: "space";
2145
+ };
3471
2146
  };
3472
- };
3473
- mt: (value: string | number | {
3474
- readonly [$$ScaleValue]: "space";
3475
- }) => {
3476
- marginTop: string | number | {
2147
+ py: (value: string | number | {
3477
2148
  readonly [$$ScaleValue]: "space";
2149
+ }) => {
2150
+ paddingTop: string | number | {
2151
+ readonly [$$ScaleValue]: "space";
2152
+ };
2153
+ paddingBottom: string | number | {
2154
+ readonly [$$ScaleValue]: "space";
2155
+ };
3478
2156
  };
3479
- };
3480
- mr: (value: string | number | {
3481
- readonly [$$ScaleValue]: "space";
3482
- }) => {
3483
- marginRight: string | number | {
2157
+ m: (value: string | number | {
3484
2158
  readonly [$$ScaleValue]: "space";
2159
+ }) => {
2160
+ margin: string | number | {
2161
+ readonly [$$ScaleValue]: "space";
2162
+ };
3485
2163
  };
3486
- };
3487
- mb: (value: string | number | {
3488
- readonly [$$ScaleValue]: "space";
3489
- }) => {
3490
- marginBottom: string | number | {
2164
+ mt: (value: string | number | {
3491
2165
  readonly [$$ScaleValue]: "space";
2166
+ }) => {
2167
+ marginTop: string | number | {
2168
+ readonly [$$ScaleValue]: "space";
2169
+ };
3492
2170
  };
3493
- };
3494
- ml: (value: string | number | {
3495
- readonly [$$ScaleValue]: "space";
3496
- }) => {
3497
- marginLeft: string | number | {
2171
+ mr: (value: string | number | {
3498
2172
  readonly [$$ScaleValue]: "space";
2173
+ }) => {
2174
+ marginRight: string | number | {
2175
+ readonly [$$ScaleValue]: "space";
2176
+ };
3499
2177
  };
3500
- };
3501
- mx: (value: string | number | {
3502
- readonly [$$ScaleValue]: "space";
3503
- }) => {
3504
- marginLeft: string | number | {
2178
+ mb: (value: string | number | {
3505
2179
  readonly [$$ScaleValue]: "space";
2180
+ }) => {
2181
+ marginBottom: string | number | {
2182
+ readonly [$$ScaleValue]: "space";
2183
+ };
3506
2184
  };
3507
- marginRight: string | number | {
2185
+ ml: (value: string | number | {
3508
2186
  readonly [$$ScaleValue]: "space";
2187
+ }) => {
2188
+ marginLeft: string | number | {
2189
+ readonly [$$ScaleValue]: "space";
2190
+ };
3509
2191
  };
3510
- };
3511
- my: (value: string | number | {
3512
- readonly [$$ScaleValue]: "space";
3513
- }) => {
3514
- marginTop: string | number | {
2192
+ mx: (value: string | number | {
3515
2193
  readonly [$$ScaleValue]: "space";
2194
+ }) => {
2195
+ marginLeft: string | number | {
2196
+ readonly [$$ScaleValue]: "space";
2197
+ };
2198
+ marginRight: string | number | {
2199
+ readonly [$$ScaleValue]: "space";
2200
+ };
3516
2201
  };
3517
- marginBottom: string | number | {
2202
+ my: (value: string | number | {
3518
2203
  readonly [$$ScaleValue]: "space";
2204
+ }) => {
2205
+ marginTop: string | number | {
2206
+ readonly [$$ScaleValue]: "space";
2207
+ };
2208
+ marginBottom: string | number | {
2209
+ readonly [$$ScaleValue]: "space";
2210
+ };
3519
2211
  };
3520
- };
3521
- }>>;
2212
+ }> | undefined;
2213
+ }) => React.JSX.Element;
2214
+ Portal: ({ children, container }: {
2215
+ children: ReactNode;
2216
+ container?: HTMLElement | null | undefined;
2217
+ }) => React.JSX.Element;
3522
2218
  };