@alextheman/components 6.25.1 → 6.25.2
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.
- package/README.md +2 -3
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +36 -38
- package/dist/index.d.ts +36 -38
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/v7/index.cjs +1 -1
- package/dist/v7/index.d.cts +15 -18
- package/dist/v7/index.d.ts +15 -18
- package/package.json +20 -17
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
1
|
import { CollapseProps } from "@mui/material/Collapse";
|
|
3
2
|
import { PaletteMode, SxProps, Theme } from "@mui/material/styles";
|
|
4
|
-
import * as _$react from "react";
|
|
5
3
|
import { CSSProperties, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, ComponentType, Dispatch, ElementType, JSX, Key, MouseEventHandler, ReactNode, Ref, SetStateAction } from "react";
|
|
6
4
|
import { LinkProps } from "@mui/material/Link";
|
|
7
5
|
import { CreateEnumType, OptionalOnCondition } from "@alextheman/utility";
|
|
@@ -18,7 +16,7 @@ import { AlertColor } from "@mui/material/Alert";
|
|
|
18
16
|
|
|
19
17
|
//#region src/components/Artwork.d.ts
|
|
20
18
|
/** The artwork associated with the package's theme song, _An Interface For You And I_. */
|
|
21
|
-
declare function Artwork():
|
|
19
|
+
declare function Artwork(): import("react/jsx-runtime").JSX.Element;
|
|
22
20
|
//#endregion
|
|
23
21
|
//#region src/components/CollapsableItem.d.ts
|
|
24
22
|
interface CollapsableItemProps {
|
|
@@ -65,7 +63,7 @@ declare function CollapsableItem({
|
|
|
65
63
|
openIcon,
|
|
66
64
|
closedIcon,
|
|
67
65
|
useDefaultStyling
|
|
68
|
-
}: CollapsableItemProps):
|
|
66
|
+
}: CollapsableItemProps): import("react/jsx-runtime").JSX.Element;
|
|
69
67
|
//#endregion
|
|
70
68
|
//#region src/components/ExternalLink.d.ts
|
|
71
69
|
interface ExternalLinkProps extends Omit<LinkProps, "to" | "target" | "rel"> {
|
|
@@ -87,7 +85,7 @@ declare function ExternalLink({
|
|
|
87
85
|
children,
|
|
88
86
|
ref,
|
|
89
87
|
...linkProps
|
|
90
|
-
}: ExternalLinkProps):
|
|
88
|
+
}: ExternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
91
89
|
//#endregion
|
|
92
90
|
//#region src/components/FileInput.d.ts
|
|
93
91
|
declare const FileType: {
|
|
@@ -122,7 +120,7 @@ declare function FileInput({
|
|
|
122
120
|
accept,
|
|
123
121
|
useDropzone,
|
|
124
122
|
...buttonProps
|
|
125
|
-
}: FileInputProps):
|
|
123
|
+
}: FileInputProps): import("react/jsx-runtime").JSX.Element;
|
|
126
124
|
//#endregion
|
|
127
125
|
//#region src/components/FileInputList.d.ts
|
|
128
126
|
interface FileInputListProps extends Omit<FileInputProps, "onFileInput"> {
|
|
@@ -137,11 +135,11 @@ declare function FileInputList({
|
|
|
137
135
|
setFiles,
|
|
138
136
|
multiple,
|
|
139
137
|
...fileInputProps
|
|
140
|
-
}: FileInputListProps):
|
|
138
|
+
}: FileInputListProps): import("react/jsx-runtime").JSX.Element;
|
|
141
139
|
//#endregion
|
|
142
140
|
//#region src/components/ModeToggle.d.ts
|
|
143
141
|
/** A toggle to switch between dark mode and light mode. Must be used in a `ModeProvider`. */
|
|
144
|
-
declare function ModeToggle():
|
|
142
|
+
declare function ModeToggle(): import("react/jsx-runtime").JSX.Element;
|
|
145
143
|
//#endregion
|
|
146
144
|
//#region src/components/Page.d.ts
|
|
147
145
|
interface PageProps {
|
|
@@ -166,7 +164,7 @@ declare function Page({
|
|
|
166
164
|
children,
|
|
167
165
|
tabs,
|
|
168
166
|
disablePadding
|
|
169
|
-
}: PageProps):
|
|
167
|
+
}: PageProps): import("react/jsx-runtime").JSX.Element;
|
|
170
168
|
//#endregion
|
|
171
169
|
//#region src/groups/QueryBoundary/QueryBoundaryData.d.ts
|
|
172
170
|
interface QueryBoundaryDataProps<DataType> {
|
|
@@ -189,7 +187,7 @@ declare function QueryBoundaryData<DataType>({
|
|
|
189
187
|
children,
|
|
190
188
|
dataParser: propDataParser,
|
|
191
189
|
loadingComponent
|
|
192
|
-
}: QueryBoundaryDataProps<DataType>):
|
|
190
|
+
}: QueryBoundaryDataProps<DataType>): import("react/jsx-runtime").JSX.Element | null;
|
|
193
191
|
//#endregion
|
|
194
192
|
//#region src/groups/QueryBoundary/QueryBoundaryDataMap.d.ts
|
|
195
193
|
interface QueryBoundaryDataMapBaseProps<ItemType> {
|
|
@@ -244,7 +242,7 @@ declare function QueryBoundaryDataMap<ItemType>({
|
|
|
244
242
|
dataParser: propDataParser,
|
|
245
243
|
emptyComponent,
|
|
246
244
|
strictlyRequireArray
|
|
247
|
-
}: QueryBoundaryDataMapProps<ItemType>):
|
|
245
|
+
}: QueryBoundaryDataMapProps<ItemType>): import("react/jsx-runtime").JSX.Element | null;
|
|
248
246
|
//#endregion
|
|
249
247
|
//#region src/groups/QueryBoundary/QueryBoundaryError.d.ts
|
|
250
248
|
interface QueryBoundaryErrorProps {
|
|
@@ -259,7 +257,7 @@ interface QueryBoundaryErrorProps {
|
|
|
259
257
|
declare function QueryBoundaryError({
|
|
260
258
|
children,
|
|
261
259
|
logError: propsLogError
|
|
262
|
-
}: QueryBoundaryErrorProps): string | number | bigint | boolean |
|
|
260
|
+
}: QueryBoundaryErrorProps): string | number | bigint | boolean | import("react/jsx-runtime").JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
|
|
263
261
|
//#endregion
|
|
264
262
|
//#region src/groups/QueryBoundary/QueryBoundaryNullable.d.ts
|
|
265
263
|
interface QueryBoundaryNullablePropsWithUndefinedOrNull {
|
|
@@ -281,7 +279,7 @@ declare function QueryBoundaryNullable({
|
|
|
281
279
|
undefinedComponent,
|
|
282
280
|
nullComponent,
|
|
283
281
|
nullableComponent
|
|
284
|
-
}: QueryBoundaryNullableProps):
|
|
282
|
+
}: QueryBoundaryNullableProps): import("react/jsx-runtime").JSX.Element | null;
|
|
285
283
|
//#endregion
|
|
286
284
|
//#region src/groups/QueryBoundary/QueryBoundaryFallback.d.ts
|
|
287
285
|
type QueryBoundaryFallbackProps = Omit<QueryBoundaryErrorProps, "children"> & {
|
|
@@ -294,7 +292,7 @@ declare function QueryBoundaryFallback({
|
|
|
294
292
|
errorComponent,
|
|
295
293
|
logError,
|
|
296
294
|
...queryBoundaryNullableProps
|
|
297
|
-
}: QueryBoundaryFallbackProps):
|
|
295
|
+
}: QueryBoundaryFallbackProps): import("react/jsx-runtime").JSX.Element;
|
|
298
296
|
//#endregion
|
|
299
297
|
//#region src/groups/QueryBoundary/index.d.ts
|
|
300
298
|
interface QueryBase {
|
|
@@ -384,7 +382,7 @@ declare function QueryBoundaryProvider<DataType>({
|
|
|
384
382
|
children,
|
|
385
383
|
loadingComponent,
|
|
386
384
|
...contextProps
|
|
387
|
-
}: QueryBoundaryProviderProps<DataType>):
|
|
385
|
+
}: QueryBoundaryProviderProps<DataType>): import("react/jsx-runtime").JSX.Element;
|
|
388
386
|
//#endregion
|
|
389
387
|
//#region src/groups/QueryBoundary/creators/createBaseQueryBoundary.d.ts
|
|
390
388
|
interface QueryBase$1<DataType> {
|
|
@@ -466,7 +464,7 @@ declare function QueryBoundaryMap<ItemType>({
|
|
|
466
464
|
dataParser,
|
|
467
465
|
itemParser,
|
|
468
466
|
itemKey
|
|
469
|
-
}: QueryBoundaryMapProps<ItemType>):
|
|
467
|
+
}: QueryBoundaryMapProps<ItemType>): import("react/jsx-runtime").JSX.Element;
|
|
470
468
|
//#endregion
|
|
471
469
|
//#region src/components/QueryBoundaryWrapper.d.ts
|
|
472
470
|
type QueryBoundaryWrapperProps<DataType> = Omit<QueryBoundaryProviderProps<DataType>, "children" | "logError"> & Omit<QueryBoundaryFallbackProps, "errorComponent"> & Omit<QueryBoundaryDataProps<DataType>, "showOnError" | "onUndefined" | "onNull" | "onNullable">;
|
|
@@ -488,7 +486,7 @@ declare function QueryBoundaryWrapper<DataType>({
|
|
|
488
486
|
error,
|
|
489
487
|
data,
|
|
490
488
|
dataParser
|
|
491
|
-
}: QueryBoundaryWrapperProps<DataType>):
|
|
489
|
+
}: QueryBoundaryWrapperProps<DataType>): import("react/jsx-runtime").JSX.Element;
|
|
492
490
|
//#endregion
|
|
493
491
|
//#region src/components/ReactPlayground.d.ts
|
|
494
492
|
interface ReactPlaygroundProps extends ComponentProps<typeof LiveProvider> {
|
|
@@ -500,7 +498,7 @@ declare function ReactPlayground({
|
|
|
500
498
|
code,
|
|
501
499
|
previewStyles,
|
|
502
500
|
...liveProviderProps
|
|
503
|
-
}: ReactPlaygroundProps):
|
|
501
|
+
}: ReactPlaygroundProps): import("react/jsx-runtime").JSX.Element;
|
|
504
502
|
//#endregion
|
|
505
503
|
//#region src/components/SkeletonRow.d.ts
|
|
506
504
|
interface SkeletonRowProps {
|
|
@@ -510,7 +508,7 @@ interface SkeletonRowProps {
|
|
|
510
508
|
/** Renders the skeleton of a table row. Often helpful to represent the loading state of the data in your table. */
|
|
511
509
|
declare function SkeletonRow({
|
|
512
510
|
columns
|
|
513
|
-
}: SkeletonRowProps):
|
|
511
|
+
}: SkeletonRowProps): import("react/jsx-runtime").JSX.Element;
|
|
514
512
|
//#endregion
|
|
515
513
|
//#region src/components/SwitchWithIcons.d.ts
|
|
516
514
|
interface SwitchWithIconsProps extends Omit<SwitchProps, "icon" | "checkedIcon"> {
|
|
@@ -534,7 +532,7 @@ declare function SwitchWithIcons({
|
|
|
534
532
|
uncheckedIcon: UncheckedIcon,
|
|
535
533
|
uncheckedIconStyles,
|
|
536
534
|
...switchProps
|
|
537
|
-
}: SwitchWithIconsProps):
|
|
535
|
+
}: SwitchWithIconsProps): import("react/jsx-runtime").JSX.Element;
|
|
538
536
|
//#endregion
|
|
539
537
|
//#region src/deprecated/DropdownMenu.d.ts
|
|
540
538
|
interface DropdownMenuProps {
|
|
@@ -559,7 +557,7 @@ declare function DropdownMenu({
|
|
|
559
557
|
isClosedIcon,
|
|
560
558
|
onOpen,
|
|
561
559
|
onClose
|
|
562
|
-
}: DropdownMenuProps):
|
|
560
|
+
}: DropdownMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
563
561
|
//#endregion
|
|
564
562
|
//#region src/deprecated/DarkModeToggle.d.ts
|
|
565
563
|
/** @deprecated This component has been renamed to `ModeToggle`. */
|
|
@@ -579,7 +577,7 @@ declare function DropdownMenu$1({
|
|
|
579
577
|
children,
|
|
580
578
|
onClose,
|
|
581
579
|
...menuProps
|
|
582
|
-
}: DropdownMenuProps$1):
|
|
580
|
+
}: DropdownMenuProps$1): import("react/jsx-runtime").JSX.Element;
|
|
583
581
|
//#endregion
|
|
584
582
|
//#region src/v7/components/DropdownMenu/DropdownMenuItem.d.ts
|
|
585
583
|
type DropdownMenuItemProps$1<RootComponent extends ElementType = typeof Button$1> = {
|
|
@@ -603,7 +601,7 @@ declare function DropdownMenuItem$1<RootComponent extends ElementType = typeof B
|
|
|
603
601
|
ref,
|
|
604
602
|
onClick,
|
|
605
603
|
...menuItemProps
|
|
606
|
-
}: DropdownMenuItemProps$1<RootComponent>):
|
|
604
|
+
}: DropdownMenuItemProps$1<RootComponent>): import("react/jsx-runtime").JSX.Element;
|
|
607
605
|
//#endregion
|
|
608
606
|
//#region src/v7/components/DropdownMenu/DropdownMenuProvider.d.ts
|
|
609
607
|
interface DropdownMenuContextValue {
|
|
@@ -652,7 +650,7 @@ declare function DropdownMenuExternalLink({
|
|
|
652
650
|
children,
|
|
653
651
|
onClick,
|
|
654
652
|
...menuItemProps
|
|
655
|
-
}: DropdownMenuExternalLinkProps):
|
|
653
|
+
}: DropdownMenuExternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
656
654
|
//#endregion
|
|
657
655
|
//#region src/deprecated/InternalLink.d.ts
|
|
658
656
|
interface InternalLinkProps extends Omit<LinkProps, "href" | "component"> {
|
|
@@ -688,7 +686,7 @@ declare function InternalLink({
|
|
|
688
686
|
children,
|
|
689
687
|
ref,
|
|
690
688
|
...linkProps
|
|
691
|
-
}: InternalLinkProps):
|
|
689
|
+
}: InternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
692
690
|
//#endregion
|
|
693
691
|
//#region src/deprecated/DropdownMenuInternalLink.d.ts
|
|
694
692
|
interface DropdownMenuInternalLinkProps extends MenuItemOwnProps {
|
|
@@ -704,7 +702,7 @@ declare function DropdownMenuInternalLink({
|
|
|
704
702
|
children,
|
|
705
703
|
onClick,
|
|
706
704
|
...menuItemProps
|
|
707
|
-
}: DropdownMenuInternalLinkProps):
|
|
705
|
+
}: DropdownMenuInternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
708
706
|
//#endregion
|
|
709
707
|
//#region src/deprecated/IconWithPopover.d.ts
|
|
710
708
|
interface IconWithPopoverProps {
|
|
@@ -732,7 +730,7 @@ declare function IconWithPopover({
|
|
|
732
730
|
onClose,
|
|
733
731
|
iconProps,
|
|
734
732
|
children
|
|
735
|
-
}: IconWithPopoverProps):
|
|
733
|
+
}: IconWithPopoverProps): import("react/jsx-runtime").JSX.Element;
|
|
736
734
|
//#endregion
|
|
737
735
|
//#region src/deprecated/ListItemInternalLink.d.ts
|
|
738
736
|
interface ListItemInternalLinkProps extends Omit<ListItemButtonProps, "href"> {
|
|
@@ -743,7 +741,7 @@ interface ListItemInternalLinkProps extends Omit<ListItemButtonProps, "href"> {
|
|
|
743
741
|
declare function ListItemInternalLink({
|
|
744
742
|
children,
|
|
745
743
|
...listItemButtonProps
|
|
746
|
-
}: ListItemInternalLinkProps):
|
|
744
|
+
}: ListItemInternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
747
745
|
//#endregion
|
|
748
746
|
//#region src/deprecated/Loader.d.ts
|
|
749
747
|
/** @deprecated This component has been renamed to QueryBoundary */
|
|
@@ -806,7 +804,7 @@ interface NavigationBottomProps {
|
|
|
806
804
|
declare function NavigationBottom({
|
|
807
805
|
children,
|
|
808
806
|
navItems
|
|
809
|
-
}: NavigationBottomProps):
|
|
807
|
+
}: NavigationBottomProps): import("react/jsx-runtime").JSX.Element;
|
|
810
808
|
//#endregion
|
|
811
809
|
//#region src/deprecated/NavigationDrawer.d.ts
|
|
812
810
|
interface NavMenuItemOptions {
|
|
@@ -843,7 +841,7 @@ declare function NavigationDrawer({
|
|
|
843
841
|
navItems,
|
|
844
842
|
children,
|
|
845
843
|
headerElements
|
|
846
|
-
}: NavigationDrawerProps):
|
|
844
|
+
}: NavigationDrawerProps): import("react/jsx-runtime").JSX.Element;
|
|
847
845
|
//#endregion
|
|
848
846
|
//#region src/deprecated/PopoverText.d.ts
|
|
849
847
|
interface PopoverTextProps extends TypographyProps {
|
|
@@ -856,7 +854,7 @@ declare function PopoverText({
|
|
|
856
854
|
text,
|
|
857
855
|
sx,
|
|
858
856
|
...typographyProps
|
|
859
|
-
}: PopoverTextProps):
|
|
857
|
+
}: PopoverTextProps): import("react/jsx-runtime").JSX.Element;
|
|
860
858
|
//#endregion
|
|
861
859
|
//#region src/deprecated/QueryBoundary.d.ts
|
|
862
860
|
/** @deprecated This type has been renamed to `QueryBoundaryWrapperProps`. */
|
|
@@ -880,7 +878,7 @@ declare function SubmitButton({
|
|
|
880
878
|
disableClean,
|
|
881
879
|
label,
|
|
882
880
|
...buttonProps
|
|
883
|
-
}: SubmitButtonProps):
|
|
881
|
+
}: SubmitButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
884
882
|
//#endregion
|
|
885
883
|
//#region src/hooks/useDebounce.d.ts
|
|
886
884
|
/**
|
|
@@ -930,11 +928,11 @@ declare function useAudioContext<Strict extends boolean = true>({
|
|
|
930
928
|
declare function AudioProvider({
|
|
931
929
|
tracks,
|
|
932
930
|
children
|
|
933
|
-
}: AudioProviderProps):
|
|
931
|
+
}: AudioProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
934
932
|
//#endregion
|
|
935
933
|
//#region src/providers/AudioProvider/AudioControls.d.ts
|
|
936
934
|
/** Controls the tracks provided by the AudioProvider. */
|
|
937
|
-
declare function AudioControls():
|
|
935
|
+
declare function AudioControls(): import("react/jsx-runtime").JSX.Element;
|
|
938
936
|
//#endregion
|
|
939
937
|
//#region src/providers/ModeProvider.d.ts
|
|
940
938
|
interface ModeContextValue {
|
|
@@ -955,7 +953,7 @@ interface ModeProviderProps {
|
|
|
955
953
|
declare function ModeProvider({
|
|
956
954
|
children,
|
|
957
955
|
mode: modeProp
|
|
958
|
-
}: ModeProviderProps):
|
|
956
|
+
}: ModeProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
959
957
|
//#endregion
|
|
960
958
|
//#region src/providers/ScreenSizeProvider.d.ts
|
|
961
959
|
interface ScreenSizeProps {
|
|
@@ -983,7 +981,7 @@ declare function ScreenSizeProvider({
|
|
|
983
981
|
children,
|
|
984
982
|
largeScreenWidth,
|
|
985
983
|
largeScreenHeight
|
|
986
|
-
}: ScreenSizeProps):
|
|
984
|
+
}: ScreenSizeProps): import("react/jsx-runtime").JSX.Element;
|
|
987
985
|
//#endregion
|
|
988
986
|
//#region src/providers/SnackbarProvider.d.ts
|
|
989
987
|
interface SnackbarProviderProps {
|
|
@@ -1004,7 +1002,7 @@ declare function useSnackbar<Strict extends boolean = true>({
|
|
|
1004
1002
|
declare function SnackbarProvider({
|
|
1005
1003
|
children,
|
|
1006
1004
|
autoHideDuration
|
|
1007
|
-
}: SnackbarProviderProps):
|
|
1005
|
+
}: SnackbarProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
1008
1006
|
//#endregion
|
|
1009
|
-
export { Artwork, type AudioContextValue, AudioControls, AudioProvider, type AudioProviderProps, CollapsableItem, type CollapsableItemProps, ContextHookOptions, type CreateBaseQueryBoundaryParameters, type CreateItemQueryBoundaryParameters, type CreateListQueryBoundaryParameters, type CreateQueryBoundaryParameters, DarkModeToggle, type DefaultQueryBoundaryComponents, type DefaultQueryBoundaryComponentsBase, type DefaultQueryBoundaryItemComponents, type DefaultQueryBoundaryListComponents, DropdownMenu, DropdownMenu2, type DropdownMenu2Props, DropdownMenuExternalLink, DropdownMenuInternalLink, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ExternalLink, type ExternalLinkProps, FileInput, FileInputList, type FileInputListProps, type FileInputProps, FileType, IconWithPopover, type IconWithPopoverProps, InternalLink, type InternalLinkProps, ListItemInternalLink, Loader, type LoaderContextValue, LoaderData, type LoaderDataProps, LoaderError, type LoaderErrorBaseProps, type LoaderErrorProps, type LoaderErrorPropsWithNullable, type LoaderErrorPropsWithUndefinedOrNull, LoaderProvider, type LoaderProviderBaseProps, type LoaderProviderProps, type LoaderProviderPropsWithError, type LoaderProviderPropsWithNoError, ModeProvider, type ModeProviderProps, ModeToggle, type NavItemBottom, type NavMenuItem, NavigationBottom, type NavigationBottomProps, NavigationDrawer, type NavigationDrawerProps, Page, PopoverText, type PopoverTextProps, type QueryBase, QueryBoundary, QueryBoundaryData, QueryBoundaryDataMap, type QueryBoundaryDataMapBaseProps, type QueryBoundaryDataMapProps, type QueryBoundaryDataMapPropsWithDataParser, type QueryBoundaryDataMapPropsWithItemParser, type QueryBoundaryDataMapPropsWithNoParser, type QueryBoundaryDataProps, QueryBoundaryError, type QueryBoundaryErrorProps, QueryBoundaryFallback, type QueryBoundaryFallbackProps, QueryBoundaryMap, type QueryBoundaryMapProps, QueryBoundaryNullable, type QueryBoundaryNullableProps, type QueryBoundaryNullablePropsWithNullable, type QueryBoundaryNullablePropsWithUndefinedOrNull, type QueryBoundaryProps, QueryBoundaryProvider, type QueryBoundaryProviderBaseProps, type QueryBoundaryProviderProps, type QueryBoundaryProviderPropsWithError, type QueryBoundaryProviderPropsWithNoError, QueryBoundaryWrapper, type QueryBoundaryWrapperProps, type QueryItem, type QueryList, type QueryMultiple, type QuerySingle, ReactPlayground, type ReactPlaygroundProps, type ScreenSizeContextValue, type ScreenSizeProps, ScreenSizeProvider, SkeletonRow, type SkeletonRowProps, SnackbarProvider, type SnackbarProviderProps, SubmitButton, type SubmitButtonProps, SwitchWithIcons, type SwitchWithIconsProps, type TrackData, createBaseQueryBoundary, createItemQueryBoundary, createListQueryBoundary, createQueryBoundary, useAudioContext, useDebounce, useDropdownMenu, useHash, useMode, useQueryBoundary, useScreenSize, useSnackbar };
|
|
1007
|
+
export { Artwork, type AudioContextValue, AudioControls, AudioProvider, type AudioProviderProps, CollapsableItem, type CollapsableItemProps, type ContextHookOptions, type CreateBaseQueryBoundaryParameters, type CreateItemQueryBoundaryParameters, type CreateListQueryBoundaryParameters, type CreateQueryBoundaryParameters, DarkModeToggle, type DefaultQueryBoundaryComponents, type DefaultQueryBoundaryComponentsBase, type DefaultQueryBoundaryItemComponents, type DefaultQueryBoundaryListComponents, DropdownMenu, DropdownMenu2, type DropdownMenu2Props, DropdownMenuExternalLink, DropdownMenuInternalLink, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ExternalLink, type ExternalLinkProps, FileInput, FileInputList, type FileInputListProps, type FileInputProps, FileType, IconWithPopover, type IconWithPopoverProps, InternalLink, type InternalLinkProps, ListItemInternalLink, Loader, type LoaderContextValue, LoaderData, type LoaderDataProps, LoaderError, type LoaderErrorBaseProps, type LoaderErrorProps, type LoaderErrorPropsWithNullable, type LoaderErrorPropsWithUndefinedOrNull, LoaderProvider, type LoaderProviderBaseProps, type LoaderProviderProps, type LoaderProviderPropsWithError, type LoaderProviderPropsWithNoError, ModeProvider, type ModeProviderProps, ModeToggle, type NavItemBottom, type NavMenuItem, NavigationBottom, type NavigationBottomProps, NavigationDrawer, type NavigationDrawerProps, Page, PopoverText, type PopoverTextProps, type QueryBase, QueryBoundary, QueryBoundaryData, QueryBoundaryDataMap, type QueryBoundaryDataMapBaseProps, type QueryBoundaryDataMapProps, type QueryBoundaryDataMapPropsWithDataParser, type QueryBoundaryDataMapPropsWithItemParser, type QueryBoundaryDataMapPropsWithNoParser, type QueryBoundaryDataProps, QueryBoundaryError, type QueryBoundaryErrorProps, QueryBoundaryFallback, type QueryBoundaryFallbackProps, QueryBoundaryMap, type QueryBoundaryMapProps, QueryBoundaryNullable, type QueryBoundaryNullableProps, type QueryBoundaryNullablePropsWithNullable, type QueryBoundaryNullablePropsWithUndefinedOrNull, type QueryBoundaryProps, QueryBoundaryProvider, type QueryBoundaryProviderBaseProps, type QueryBoundaryProviderProps, type QueryBoundaryProviderPropsWithError, type QueryBoundaryProviderPropsWithNoError, QueryBoundaryWrapper, type QueryBoundaryWrapperProps, type QueryItem, type QueryList, type QueryMultiple, type QuerySingle, ReactPlayground, type ReactPlaygroundProps, type ScreenSizeContextValue, type ScreenSizeProps, ScreenSizeProvider, SkeletonRow, type SkeletonRowProps, SnackbarProvider, type SnackbarProviderProps, SubmitButton, type SubmitButtonProps, SwitchWithIcons, type SwitchWithIconsProps, type TrackData, createBaseQueryBoundary, createItemQueryBoundary, createListQueryBoundary, createQueryBoundary, useAudioContext, useDebounce, useDropdownMenu, useHash, useMode, useQueryBoundary, useScreenSize, useSnackbar };
|
|
1010
1008
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { TypographyProps } from "@mui/material/Typography";
|
|
2
|
-
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
2
|
import { CollapseProps } from "@mui/material/Collapse";
|
|
4
|
-
import * as _$react from "react";
|
|
5
3
|
import { CSSProperties, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, ComponentType, Dispatch, ElementType, JSX, Key, MouseEventHandler, ReactNode, Ref, SetStateAction } from "react";
|
|
6
4
|
import { LinkProps } from "@mui/material/Link";
|
|
7
5
|
import Button$1, { ButtonOwnProps, ButtonProps } from "@mui/material/Button";
|
|
@@ -18,7 +16,7 @@ import { SvgIconTypeMap } from "@mui/material/SvgIcon";
|
|
|
18
16
|
|
|
19
17
|
//#region src/components/Artwork.d.ts
|
|
20
18
|
/** The artwork associated with the package's theme song, _An Interface For You And I_. */
|
|
21
|
-
declare function Artwork():
|
|
19
|
+
declare function Artwork(): import("react/jsx-runtime").JSX.Element;
|
|
22
20
|
//#endregion
|
|
23
21
|
//#region src/components/CollapsableItem.d.ts
|
|
24
22
|
interface CollapsableItemProps {
|
|
@@ -65,7 +63,7 @@ declare function CollapsableItem({
|
|
|
65
63
|
openIcon,
|
|
66
64
|
closedIcon,
|
|
67
65
|
useDefaultStyling
|
|
68
|
-
}: CollapsableItemProps):
|
|
66
|
+
}: CollapsableItemProps): import("react/jsx-runtime").JSX.Element;
|
|
69
67
|
//#endregion
|
|
70
68
|
//#region src/components/ExternalLink.d.ts
|
|
71
69
|
interface ExternalLinkProps extends Omit<LinkProps, "to" | "target" | "rel"> {
|
|
@@ -87,7 +85,7 @@ declare function ExternalLink({
|
|
|
87
85
|
children,
|
|
88
86
|
ref,
|
|
89
87
|
...linkProps
|
|
90
|
-
}: ExternalLinkProps):
|
|
88
|
+
}: ExternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
91
89
|
//#endregion
|
|
92
90
|
//#region src/components/FileInput.d.ts
|
|
93
91
|
declare const FileType: {
|
|
@@ -122,7 +120,7 @@ declare function FileInput({
|
|
|
122
120
|
accept,
|
|
123
121
|
useDropzone,
|
|
124
122
|
...buttonProps
|
|
125
|
-
}: FileInputProps):
|
|
123
|
+
}: FileInputProps): import("react/jsx-runtime").JSX.Element;
|
|
126
124
|
//#endregion
|
|
127
125
|
//#region src/components/FileInputList.d.ts
|
|
128
126
|
interface FileInputListProps extends Omit<FileInputProps, "onFileInput"> {
|
|
@@ -137,11 +135,11 @@ declare function FileInputList({
|
|
|
137
135
|
setFiles,
|
|
138
136
|
multiple,
|
|
139
137
|
...fileInputProps
|
|
140
|
-
}: FileInputListProps):
|
|
138
|
+
}: FileInputListProps): import("react/jsx-runtime").JSX.Element;
|
|
141
139
|
//#endregion
|
|
142
140
|
//#region src/components/ModeToggle.d.ts
|
|
143
141
|
/** A toggle to switch between dark mode and light mode. Must be used in a `ModeProvider`. */
|
|
144
|
-
declare function ModeToggle():
|
|
142
|
+
declare function ModeToggle(): import("react/jsx-runtime").JSX.Element;
|
|
145
143
|
//#endregion
|
|
146
144
|
//#region src/components/Page.d.ts
|
|
147
145
|
interface PageProps {
|
|
@@ -166,7 +164,7 @@ declare function Page({
|
|
|
166
164
|
children,
|
|
167
165
|
tabs,
|
|
168
166
|
disablePadding
|
|
169
|
-
}: PageProps):
|
|
167
|
+
}: PageProps): import("react/jsx-runtime").JSX.Element;
|
|
170
168
|
//#endregion
|
|
171
169
|
//#region src/groups/QueryBoundary/QueryBoundaryData.d.ts
|
|
172
170
|
interface QueryBoundaryDataProps<DataType> {
|
|
@@ -189,7 +187,7 @@ declare function QueryBoundaryData<DataType>({
|
|
|
189
187
|
children,
|
|
190
188
|
dataParser: propDataParser,
|
|
191
189
|
loadingComponent
|
|
192
|
-
}: QueryBoundaryDataProps<DataType>):
|
|
190
|
+
}: QueryBoundaryDataProps<DataType>): import("react/jsx-runtime").JSX.Element | null;
|
|
193
191
|
//#endregion
|
|
194
192
|
//#region src/groups/QueryBoundary/QueryBoundaryDataMap.d.ts
|
|
195
193
|
interface QueryBoundaryDataMapBaseProps<ItemType> {
|
|
@@ -244,7 +242,7 @@ declare function QueryBoundaryDataMap<ItemType>({
|
|
|
244
242
|
dataParser: propDataParser,
|
|
245
243
|
emptyComponent,
|
|
246
244
|
strictlyRequireArray
|
|
247
|
-
}: QueryBoundaryDataMapProps<ItemType>):
|
|
245
|
+
}: QueryBoundaryDataMapProps<ItemType>): import("react/jsx-runtime").JSX.Element | null;
|
|
248
246
|
//#endregion
|
|
249
247
|
//#region src/groups/QueryBoundary/QueryBoundaryError.d.ts
|
|
250
248
|
interface QueryBoundaryErrorProps {
|
|
@@ -259,7 +257,7 @@ interface QueryBoundaryErrorProps {
|
|
|
259
257
|
declare function QueryBoundaryError({
|
|
260
258
|
children,
|
|
261
259
|
logError: propsLogError
|
|
262
|
-
}: QueryBoundaryErrorProps): string | number | bigint | boolean |
|
|
260
|
+
}: QueryBoundaryErrorProps): string | number | bigint | boolean | import("react/jsx-runtime").JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
|
|
263
261
|
//#endregion
|
|
264
262
|
//#region src/groups/QueryBoundary/QueryBoundaryNullable.d.ts
|
|
265
263
|
interface QueryBoundaryNullablePropsWithUndefinedOrNull {
|
|
@@ -281,7 +279,7 @@ declare function QueryBoundaryNullable({
|
|
|
281
279
|
undefinedComponent,
|
|
282
280
|
nullComponent,
|
|
283
281
|
nullableComponent
|
|
284
|
-
}: QueryBoundaryNullableProps):
|
|
282
|
+
}: QueryBoundaryNullableProps): import("react/jsx-runtime").JSX.Element | null;
|
|
285
283
|
//#endregion
|
|
286
284
|
//#region src/groups/QueryBoundary/QueryBoundaryFallback.d.ts
|
|
287
285
|
type QueryBoundaryFallbackProps = Omit<QueryBoundaryErrorProps, "children"> & {
|
|
@@ -294,7 +292,7 @@ declare function QueryBoundaryFallback({
|
|
|
294
292
|
errorComponent,
|
|
295
293
|
logError,
|
|
296
294
|
...queryBoundaryNullableProps
|
|
297
|
-
}: QueryBoundaryFallbackProps):
|
|
295
|
+
}: QueryBoundaryFallbackProps): import("react/jsx-runtime").JSX.Element;
|
|
298
296
|
//#endregion
|
|
299
297
|
//#region src/groups/QueryBoundary/index.d.ts
|
|
300
298
|
interface QueryBase {
|
|
@@ -384,7 +382,7 @@ declare function QueryBoundaryProvider<DataType>({
|
|
|
384
382
|
children,
|
|
385
383
|
loadingComponent,
|
|
386
384
|
...contextProps
|
|
387
|
-
}: QueryBoundaryProviderProps<DataType>):
|
|
385
|
+
}: QueryBoundaryProviderProps<DataType>): import("react/jsx-runtime").JSX.Element;
|
|
388
386
|
//#endregion
|
|
389
387
|
//#region src/groups/QueryBoundary/creators/createBaseQueryBoundary.d.ts
|
|
390
388
|
interface QueryBase$1<DataType> {
|
|
@@ -466,7 +464,7 @@ declare function QueryBoundaryMap<ItemType>({
|
|
|
466
464
|
dataParser,
|
|
467
465
|
itemParser,
|
|
468
466
|
itemKey
|
|
469
|
-
}: QueryBoundaryMapProps<ItemType>):
|
|
467
|
+
}: QueryBoundaryMapProps<ItemType>): import("react/jsx-runtime").JSX.Element;
|
|
470
468
|
//#endregion
|
|
471
469
|
//#region src/components/QueryBoundaryWrapper.d.ts
|
|
472
470
|
type QueryBoundaryWrapperProps<DataType> = Omit<QueryBoundaryProviderProps<DataType>, "children" | "logError"> & Omit<QueryBoundaryFallbackProps, "errorComponent"> & Omit<QueryBoundaryDataProps<DataType>, "showOnError" | "onUndefined" | "onNull" | "onNullable">;
|
|
@@ -488,7 +486,7 @@ declare function QueryBoundaryWrapper<DataType>({
|
|
|
488
486
|
error,
|
|
489
487
|
data,
|
|
490
488
|
dataParser
|
|
491
|
-
}: QueryBoundaryWrapperProps<DataType>):
|
|
489
|
+
}: QueryBoundaryWrapperProps<DataType>): import("react/jsx-runtime").JSX.Element;
|
|
492
490
|
//#endregion
|
|
493
491
|
//#region src/components/ReactPlayground.d.ts
|
|
494
492
|
interface ReactPlaygroundProps extends ComponentProps<typeof LiveProvider> {
|
|
@@ -500,7 +498,7 @@ declare function ReactPlayground({
|
|
|
500
498
|
code,
|
|
501
499
|
previewStyles,
|
|
502
500
|
...liveProviderProps
|
|
503
|
-
}: ReactPlaygroundProps):
|
|
501
|
+
}: ReactPlaygroundProps): import("react/jsx-runtime").JSX.Element;
|
|
504
502
|
//#endregion
|
|
505
503
|
//#region src/components/SkeletonRow.d.ts
|
|
506
504
|
interface SkeletonRowProps {
|
|
@@ -510,7 +508,7 @@ interface SkeletonRowProps {
|
|
|
510
508
|
/** Renders the skeleton of a table row. Often helpful to represent the loading state of the data in your table. */
|
|
511
509
|
declare function SkeletonRow({
|
|
512
510
|
columns
|
|
513
|
-
}: SkeletonRowProps):
|
|
511
|
+
}: SkeletonRowProps): import("react/jsx-runtime").JSX.Element;
|
|
514
512
|
//#endregion
|
|
515
513
|
//#region src/components/SwitchWithIcons.d.ts
|
|
516
514
|
interface SwitchWithIconsProps extends Omit<SwitchProps, "icon" | "checkedIcon"> {
|
|
@@ -534,7 +532,7 @@ declare function SwitchWithIcons({
|
|
|
534
532
|
uncheckedIcon: UncheckedIcon,
|
|
535
533
|
uncheckedIconStyles,
|
|
536
534
|
...switchProps
|
|
537
|
-
}: SwitchWithIconsProps):
|
|
535
|
+
}: SwitchWithIconsProps): import("react/jsx-runtime").JSX.Element;
|
|
538
536
|
//#endregion
|
|
539
537
|
//#region src/deprecated/DropdownMenu.d.ts
|
|
540
538
|
interface DropdownMenuProps {
|
|
@@ -559,7 +557,7 @@ declare function DropdownMenu({
|
|
|
559
557
|
isClosedIcon,
|
|
560
558
|
onOpen,
|
|
561
559
|
onClose
|
|
562
|
-
}: DropdownMenuProps):
|
|
560
|
+
}: DropdownMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
563
561
|
//#endregion
|
|
564
562
|
//#region src/deprecated/DarkModeToggle.d.ts
|
|
565
563
|
/** @deprecated This component has been renamed to `ModeToggle`. */
|
|
@@ -579,7 +577,7 @@ declare function DropdownMenu$1({
|
|
|
579
577
|
children,
|
|
580
578
|
onClose,
|
|
581
579
|
...menuProps
|
|
582
|
-
}: DropdownMenuProps$1):
|
|
580
|
+
}: DropdownMenuProps$1): import("react/jsx-runtime").JSX.Element;
|
|
583
581
|
//#endregion
|
|
584
582
|
//#region src/v7/components/DropdownMenu/DropdownMenuItem.d.ts
|
|
585
583
|
type DropdownMenuItemProps$1<RootComponent extends ElementType = typeof Button$1> = {
|
|
@@ -603,7 +601,7 @@ declare function DropdownMenuItem$1<RootComponent extends ElementType = typeof B
|
|
|
603
601
|
ref,
|
|
604
602
|
onClick,
|
|
605
603
|
...menuItemProps
|
|
606
|
-
}: DropdownMenuItemProps$1<RootComponent>):
|
|
604
|
+
}: DropdownMenuItemProps$1<RootComponent>): import("react/jsx-runtime").JSX.Element;
|
|
607
605
|
//#endregion
|
|
608
606
|
//#region src/v7/components/DropdownMenu/DropdownMenuProvider.d.ts
|
|
609
607
|
interface DropdownMenuContextValue {
|
|
@@ -652,7 +650,7 @@ declare function DropdownMenuExternalLink({
|
|
|
652
650
|
children,
|
|
653
651
|
onClick,
|
|
654
652
|
...menuItemProps
|
|
655
|
-
}: DropdownMenuExternalLinkProps):
|
|
653
|
+
}: DropdownMenuExternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
656
654
|
//#endregion
|
|
657
655
|
//#region src/deprecated/InternalLink.d.ts
|
|
658
656
|
interface InternalLinkProps extends Omit<LinkProps, "href" | "component"> {
|
|
@@ -688,7 +686,7 @@ declare function InternalLink({
|
|
|
688
686
|
children,
|
|
689
687
|
ref,
|
|
690
688
|
...linkProps
|
|
691
|
-
}: InternalLinkProps):
|
|
689
|
+
}: InternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
692
690
|
//#endregion
|
|
693
691
|
//#region src/deprecated/DropdownMenuInternalLink.d.ts
|
|
694
692
|
interface DropdownMenuInternalLinkProps extends MenuItemOwnProps {
|
|
@@ -704,7 +702,7 @@ declare function DropdownMenuInternalLink({
|
|
|
704
702
|
children,
|
|
705
703
|
onClick,
|
|
706
704
|
...menuItemProps
|
|
707
|
-
}: DropdownMenuInternalLinkProps):
|
|
705
|
+
}: DropdownMenuInternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
708
706
|
//#endregion
|
|
709
707
|
//#region src/deprecated/IconWithPopover.d.ts
|
|
710
708
|
interface IconWithPopoverProps {
|
|
@@ -732,7 +730,7 @@ declare function IconWithPopover({
|
|
|
732
730
|
onClose,
|
|
733
731
|
iconProps,
|
|
734
732
|
children
|
|
735
|
-
}: IconWithPopoverProps):
|
|
733
|
+
}: IconWithPopoverProps): import("react/jsx-runtime").JSX.Element;
|
|
736
734
|
//#endregion
|
|
737
735
|
//#region src/deprecated/ListItemInternalLink.d.ts
|
|
738
736
|
interface ListItemInternalLinkProps extends Omit<ListItemButtonProps, "href"> {
|
|
@@ -743,7 +741,7 @@ interface ListItemInternalLinkProps extends Omit<ListItemButtonProps, "href"> {
|
|
|
743
741
|
declare function ListItemInternalLink({
|
|
744
742
|
children,
|
|
745
743
|
...listItemButtonProps
|
|
746
|
-
}: ListItemInternalLinkProps):
|
|
744
|
+
}: ListItemInternalLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
747
745
|
//#endregion
|
|
748
746
|
//#region src/deprecated/Loader.d.ts
|
|
749
747
|
/** @deprecated This component has been renamed to QueryBoundary */
|
|
@@ -806,7 +804,7 @@ interface NavigationBottomProps {
|
|
|
806
804
|
declare function NavigationBottom({
|
|
807
805
|
children,
|
|
808
806
|
navItems
|
|
809
|
-
}: NavigationBottomProps):
|
|
807
|
+
}: NavigationBottomProps): import("react/jsx-runtime").JSX.Element;
|
|
810
808
|
//#endregion
|
|
811
809
|
//#region src/deprecated/NavigationDrawer.d.ts
|
|
812
810
|
interface NavMenuItemOptions {
|
|
@@ -843,7 +841,7 @@ declare function NavigationDrawer({
|
|
|
843
841
|
navItems,
|
|
844
842
|
children,
|
|
845
843
|
headerElements
|
|
846
|
-
}: NavigationDrawerProps):
|
|
844
|
+
}: NavigationDrawerProps): import("react/jsx-runtime").JSX.Element;
|
|
847
845
|
//#endregion
|
|
848
846
|
//#region src/deprecated/PopoverText.d.ts
|
|
849
847
|
interface PopoverTextProps extends TypographyProps {
|
|
@@ -856,7 +854,7 @@ declare function PopoverText({
|
|
|
856
854
|
text,
|
|
857
855
|
sx,
|
|
858
856
|
...typographyProps
|
|
859
|
-
}: PopoverTextProps):
|
|
857
|
+
}: PopoverTextProps): import("react/jsx-runtime").JSX.Element;
|
|
860
858
|
//#endregion
|
|
861
859
|
//#region src/deprecated/QueryBoundary.d.ts
|
|
862
860
|
/** @deprecated This type has been renamed to `QueryBoundaryWrapperProps`. */
|
|
@@ -880,7 +878,7 @@ declare function SubmitButton({
|
|
|
880
878
|
disableClean,
|
|
881
879
|
label,
|
|
882
880
|
...buttonProps
|
|
883
|
-
}: SubmitButtonProps):
|
|
881
|
+
}: SubmitButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
884
882
|
//#endregion
|
|
885
883
|
//#region src/hooks/useDebounce.d.ts
|
|
886
884
|
/**
|
|
@@ -930,11 +928,11 @@ declare function useAudioContext<Strict extends boolean = true>({
|
|
|
930
928
|
declare function AudioProvider({
|
|
931
929
|
tracks,
|
|
932
930
|
children
|
|
933
|
-
}: AudioProviderProps):
|
|
931
|
+
}: AudioProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
934
932
|
//#endregion
|
|
935
933
|
//#region src/providers/AudioProvider/AudioControls.d.ts
|
|
936
934
|
/** Controls the tracks provided by the AudioProvider. */
|
|
937
|
-
declare function AudioControls():
|
|
935
|
+
declare function AudioControls(): import("react/jsx-runtime").JSX.Element;
|
|
938
936
|
//#endregion
|
|
939
937
|
//#region src/providers/ModeProvider.d.ts
|
|
940
938
|
interface ModeContextValue {
|
|
@@ -955,7 +953,7 @@ interface ModeProviderProps {
|
|
|
955
953
|
declare function ModeProvider({
|
|
956
954
|
children,
|
|
957
955
|
mode: modeProp
|
|
958
|
-
}: ModeProviderProps):
|
|
956
|
+
}: ModeProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
959
957
|
//#endregion
|
|
960
958
|
//#region src/providers/ScreenSizeProvider.d.ts
|
|
961
959
|
interface ScreenSizeProps {
|
|
@@ -983,7 +981,7 @@ declare function ScreenSizeProvider({
|
|
|
983
981
|
children,
|
|
984
982
|
largeScreenWidth,
|
|
985
983
|
largeScreenHeight
|
|
986
|
-
}: ScreenSizeProps):
|
|
984
|
+
}: ScreenSizeProps): import("react/jsx-runtime").JSX.Element;
|
|
987
985
|
//#endregion
|
|
988
986
|
//#region src/providers/SnackbarProvider.d.ts
|
|
989
987
|
interface SnackbarProviderProps {
|
|
@@ -1004,7 +1002,7 @@ declare function useSnackbar<Strict extends boolean = true>({
|
|
|
1004
1002
|
declare function SnackbarProvider({
|
|
1005
1003
|
children,
|
|
1006
1004
|
autoHideDuration
|
|
1007
|
-
}: SnackbarProviderProps):
|
|
1005
|
+
}: SnackbarProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
1008
1006
|
//#endregion
|
|
1009
|
-
export { Artwork, type AudioContextValue, AudioControls, AudioProvider, type AudioProviderProps, CollapsableItem, type CollapsableItemProps, ContextHookOptions, type CreateBaseQueryBoundaryParameters, type CreateItemQueryBoundaryParameters, type CreateListQueryBoundaryParameters, type CreateQueryBoundaryParameters, DarkModeToggle, type DefaultQueryBoundaryComponents, type DefaultQueryBoundaryComponentsBase, type DefaultQueryBoundaryItemComponents, type DefaultQueryBoundaryListComponents, DropdownMenu, DropdownMenu2, type DropdownMenu2Props, DropdownMenuExternalLink, DropdownMenuInternalLink, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ExternalLink, type ExternalLinkProps, FileInput, FileInputList, type FileInputListProps, type FileInputProps, FileType, IconWithPopover, type IconWithPopoverProps, InternalLink, type InternalLinkProps, ListItemInternalLink, Loader, type LoaderContextValue, LoaderData, type LoaderDataProps, LoaderError, type LoaderErrorBaseProps, type LoaderErrorProps, type LoaderErrorPropsWithNullable, type LoaderErrorPropsWithUndefinedOrNull, LoaderProvider, type LoaderProviderBaseProps, type LoaderProviderProps, type LoaderProviderPropsWithError, type LoaderProviderPropsWithNoError, ModeProvider, type ModeProviderProps, ModeToggle, type NavItemBottom, type NavMenuItem, NavigationBottom, type NavigationBottomProps, NavigationDrawer, type NavigationDrawerProps, Page, PopoverText, type PopoverTextProps, type QueryBase, QueryBoundary, QueryBoundaryData, QueryBoundaryDataMap, type QueryBoundaryDataMapBaseProps, type QueryBoundaryDataMapProps, type QueryBoundaryDataMapPropsWithDataParser, type QueryBoundaryDataMapPropsWithItemParser, type QueryBoundaryDataMapPropsWithNoParser, type QueryBoundaryDataProps, QueryBoundaryError, type QueryBoundaryErrorProps, QueryBoundaryFallback, type QueryBoundaryFallbackProps, QueryBoundaryMap, type QueryBoundaryMapProps, QueryBoundaryNullable, type QueryBoundaryNullableProps, type QueryBoundaryNullablePropsWithNullable, type QueryBoundaryNullablePropsWithUndefinedOrNull, type QueryBoundaryProps, QueryBoundaryProvider, type QueryBoundaryProviderBaseProps, type QueryBoundaryProviderProps, type QueryBoundaryProviderPropsWithError, type QueryBoundaryProviderPropsWithNoError, QueryBoundaryWrapper, type QueryBoundaryWrapperProps, type QueryItem, type QueryList, type QueryMultiple, type QuerySingle, ReactPlayground, type ReactPlaygroundProps, type ScreenSizeContextValue, type ScreenSizeProps, ScreenSizeProvider, SkeletonRow, type SkeletonRowProps, SnackbarProvider, type SnackbarProviderProps, SubmitButton, type SubmitButtonProps, SwitchWithIcons, type SwitchWithIconsProps, type TrackData, createBaseQueryBoundary, createItemQueryBoundary, createListQueryBoundary, createQueryBoundary, useAudioContext, useDebounce, useDropdownMenu, useHash, useMode, useQueryBoundary, useScreenSize, useSnackbar };
|
|
1007
|
+
export { Artwork, type AudioContextValue, AudioControls, AudioProvider, type AudioProviderProps, CollapsableItem, type CollapsableItemProps, type ContextHookOptions, type CreateBaseQueryBoundaryParameters, type CreateItemQueryBoundaryParameters, type CreateListQueryBoundaryParameters, type CreateQueryBoundaryParameters, DarkModeToggle, type DefaultQueryBoundaryComponents, type DefaultQueryBoundaryComponentsBase, type DefaultQueryBoundaryItemComponents, type DefaultQueryBoundaryListComponents, DropdownMenu, DropdownMenu2, type DropdownMenu2Props, DropdownMenuExternalLink, DropdownMenuInternalLink, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ExternalLink, type ExternalLinkProps, FileInput, FileInputList, type FileInputListProps, type FileInputProps, FileType, IconWithPopover, type IconWithPopoverProps, InternalLink, type InternalLinkProps, ListItemInternalLink, Loader, type LoaderContextValue, LoaderData, type LoaderDataProps, LoaderError, type LoaderErrorBaseProps, type LoaderErrorProps, type LoaderErrorPropsWithNullable, type LoaderErrorPropsWithUndefinedOrNull, LoaderProvider, type LoaderProviderBaseProps, type LoaderProviderProps, type LoaderProviderPropsWithError, type LoaderProviderPropsWithNoError, ModeProvider, type ModeProviderProps, ModeToggle, type NavItemBottom, type NavMenuItem, NavigationBottom, type NavigationBottomProps, NavigationDrawer, type NavigationDrawerProps, Page, PopoverText, type PopoverTextProps, type QueryBase, QueryBoundary, QueryBoundaryData, QueryBoundaryDataMap, type QueryBoundaryDataMapBaseProps, type QueryBoundaryDataMapProps, type QueryBoundaryDataMapPropsWithDataParser, type QueryBoundaryDataMapPropsWithItemParser, type QueryBoundaryDataMapPropsWithNoParser, type QueryBoundaryDataProps, QueryBoundaryError, type QueryBoundaryErrorProps, QueryBoundaryFallback, type QueryBoundaryFallbackProps, QueryBoundaryMap, type QueryBoundaryMapProps, QueryBoundaryNullable, type QueryBoundaryNullableProps, type QueryBoundaryNullablePropsWithNullable, type QueryBoundaryNullablePropsWithUndefinedOrNull, type QueryBoundaryProps, QueryBoundaryProvider, type QueryBoundaryProviderBaseProps, type QueryBoundaryProviderProps, type QueryBoundaryProviderPropsWithError, type QueryBoundaryProviderPropsWithNoError, QueryBoundaryWrapper, type QueryBoundaryWrapperProps, type QueryItem, type QueryList, type QueryMultiple, type QuerySingle, ReactPlayground, type ReactPlaygroundProps, type ScreenSizeContextValue, type ScreenSizeProps, ScreenSizeProvider, SkeletonRow, type SkeletonRowProps, SnackbarProvider, type SnackbarProviderProps, SubmitButton, type SubmitButtonProps, SwitchWithIcons, type SwitchWithIconsProps, type TrackData, createBaseQueryBoundary, createItemQueryBoundary, createListQueryBoundary, createQueryBoundary, useAudioContext, useDebounce, useDropdownMenu, useHash, useMode, useQueryBoundary, useScreenSize, useSnackbar };
|
|
1010
1008
|
//# sourceMappingURL=index.d.ts.map
|