@alextheman/components 6.23.1 → 6.24.0

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/dist/index.d.cts CHANGED
@@ -6,7 +6,6 @@ import { CSSProperties, ComponentProps, ComponentPropsWithRef, ComponentPropsWit
6
6
  import { LinkProps } from "@mui/material/Link";
7
7
  import { CreateEnumType, OptionalOnCondition } from "@alextheman/utility";
8
8
  import Button$1, { ButtonOwnProps, ButtonProps } from "@mui/material/Button";
9
- import { AlertColor } from "@mui/material/Alert";
10
9
  import { LiveProvider } from "react-live";
11
10
  import { CommonProps, OverridableComponent } from "@mui/material/OverridableComponent";
12
11
  import { SwitchProps } from "@mui/material/Switch";
@@ -15,6 +14,7 @@ import { MenuItemOwnProps } from "@mui/material/MenuItem";
15
14
  import { SvgIconTypeMap } from "@mui/material/SvgIcon";
16
15
  import { ListItemButtonProps } from "@mui/material/ListItemButton";
17
16
  import { TypographyProps } from "@mui/material/Typography";
17
+ import { AlertColor } from "@mui/material/Alert";
18
18
 
19
19
  //#region src/components/Artwork.d.ts
20
20
  /** The artwork associated with the package's theme song, _An Interface For You And I_. */
@@ -168,78 +168,7 @@ declare function Page({
168
168
  disablePadding
169
169
  }: PageProps): _$react_jsx_runtime0.JSX.Element;
170
170
  //#endregion
171
- //#region src/types/ContextHookOptions.d.ts
172
- interface ContextHookOptions<Strict extends boolean = true> {
173
- /** Error if the context is missing if this is set to true. */
174
- strict?: Strict;
175
- }
176
- //#endregion
177
- //#region src/providers/ModeProvider.d.ts
178
- interface ModeContextValue {
179
- toggleMode: () => void;
180
- mode: PaletteMode;
181
- }
182
- /** Access the mode context directly. */
183
- declare function useMode<Strict extends boolean = true>({
184
- strict
185
- }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, ModeContextValue>;
186
- interface ModeProviderProps {
187
- /** The children that will have access to the current mode. */
188
- children: ReactNode;
189
- /** The initial mode. */
190
- mode?: PaletteMode;
191
- }
192
- /** Provides information about the current theme mode to its children components. */
193
- declare function ModeProvider({
194
- children,
195
- mode: modeProp
196
- }: ModeProviderProps): _$react_jsx_runtime0.JSX.Element;
197
- //#endregion
198
- //#region src/providers/QueryBoundaryProvider/QueryBoundaryProvider.d.ts
199
- interface QueryBoundaryProviderBaseProps<DataType> {
200
- /** The current loading status (true if loading, false if not) */
201
- isLoading?: boolean;
202
- /** The data being loaded. */
203
- data?: DataType | null | undefined;
204
- /** A parser for the data. */
205
- dataParser?: (data: unknown) => NonNullable<DataType>;
206
- /** The component to show when the data is being fetched. */
207
- loadingComponent?: ReactNode;
208
- }
209
- interface QueryBoundaryProviderPropsWithNoError<DataType> extends QueryBoundaryProviderBaseProps<DataType> {
210
- error?: never;
211
- errorComponent?: never;
212
- logError?: never;
213
- }
214
- interface QueryBoundaryProviderPropsWithError<DataType> extends QueryBoundaryProviderBaseProps<DataType> {
215
- /** The error given if the request gave an error. */
216
- error: unknown;
217
- /** The component to show if an error has been thrown. Note that this may not be provided unless the error prop has also been provided. */
218
- errorComponent?: ReactNode | ((error: unknown) => ReactNode);
219
- /** Whether you want to log the error to the console or not. */
220
- logError?: boolean;
221
- }
222
- type QueryBoundaryContextValue<DataType> = QueryBoundaryProviderPropsWithNoError<DataType> | QueryBoundaryProviderPropsWithError<DataType>;
223
- type QueryBoundaryProviderProps<DataType> = QueryBoundaryContextValue<DataType> & {
224
- children: ReactNode;
225
- };
226
- /** Access the QueryBoundary context directly. */
227
- declare function useQueryBoundary<DataType, Strict extends boolean = true>({
228
- strict
229
- }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, QueryBoundaryContextValue<DataType>>;
230
- /**
231
- * A provider for a context that deals with state management when fetching data from an API.
232
- * This may be used over QueryBoundary if you require more control over the placement of the error message and data display.
233
- *
234
- * @template DataType - The type of data being loaded.
235
- */
236
- declare function QueryBoundaryProvider<DataType>({
237
- children,
238
- loadingComponent,
239
- ...contextProps
240
- }: QueryBoundaryProviderProps<DataType>): _$react_jsx_runtime0.JSX.Element;
241
- //#endregion
242
- //#region src/providers/QueryBoundaryProvider/QueryBoundaryData.d.ts
171
+ //#region src/groups/QueryBoundary/QueryBoundaryData.d.ts
243
172
  interface QueryBoundaryDataProps<DataType> {
244
173
  /**
245
174
  * The elements to show after data has been loaded.
@@ -262,7 +191,7 @@ declare function QueryBoundaryData<DataType>({
262
191
  loadingComponent
263
192
  }: QueryBoundaryDataProps<DataType>): _$react_jsx_runtime0.JSX.Element | null;
264
193
  //#endregion
265
- //#region src/providers/QueryBoundaryProvider/QueryBoundaryDataMap.d.ts
194
+ //#region src/groups/QueryBoundary/QueryBoundaryDataMap.d.ts
266
195
  interface QueryBoundaryDataMapBaseProps<ItemType> {
267
196
  /**
268
197
  * The elements to show after data has been loaded.
@@ -317,7 +246,7 @@ declare function QueryBoundaryDataMap<ItemType>({
317
246
  strictlyRequireArray
318
247
  }: QueryBoundaryDataMapProps<ItemType>): _$react_jsx_runtime0.JSX.Element | null;
319
248
  //#endregion
320
- //#region src/providers/QueryBoundaryProvider/QueryBoundaryError.d.ts
249
+ //#region src/groups/QueryBoundary/QueryBoundaryError.d.ts
321
250
  interface QueryBoundaryErrorProps {
322
251
  /** The component to show if an error has been thrown. */
323
252
  children?: ReactNode | ((error: unknown) => ReactNode);
@@ -332,7 +261,7 @@ declare function QueryBoundaryError({
332
261
  logError: propsLogError
333
262
  }: QueryBoundaryErrorProps): string | number | bigint | boolean | _$react_jsx_runtime0.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | _$react.ReactPortal | _$react.ReactElement<unknown, string | _$react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
334
263
  //#endregion
335
- //#region src/providers/QueryBoundaryProvider/QueryBoundaryNullable.d.ts
264
+ //#region src/groups/QueryBoundary/QueryBoundaryNullable.d.ts
336
265
  interface QueryBoundaryNullablePropsWithUndefinedOrNull {
337
266
  /** The component to show if no error was thrown but data is undefined */
338
267
  undefinedComponent?: ReactNode;
@@ -354,7 +283,7 @@ declare function QueryBoundaryNullable({
354
283
  nullableComponent
355
284
  }: QueryBoundaryNullableProps): _$react_jsx_runtime0.JSX.Element | null;
356
285
  //#endregion
357
- //#region src/providers/QueryBoundaryProvider/QueryBoundaryFallback.d.ts
286
+ //#region src/groups/QueryBoundary/QueryBoundaryFallback.d.ts
358
287
  type QueryBoundaryFallbackProps = Omit<QueryBoundaryErrorProps, "children"> & {
359
288
  /** The component to show if an error has been thrown. */errorComponent?: ReactNode | ((error: unknown) => ReactNode);
360
289
  } & QueryBoundaryNullableProps;
@@ -367,54 +296,95 @@ declare function QueryBoundaryFallback({
367
296
  ...queryBoundaryNullableProps
368
297
  }: QueryBoundaryFallbackProps): _$react_jsx_runtime0.JSX.Element;
369
298
  //#endregion
370
- //#region src/providers/ScreenSizeProvider.d.ts
371
- interface ScreenSizeProps {
372
- /** The children that will be receiving the ScreenSizeContext. */
373
- children: ReactNode;
374
- /** The minimum screen width in pixels required to be considered a large screen. */
375
- largeScreenWidth?: number;
376
- /** The minimum screen height in pixels required to be considered a large screen. */
377
- largeScreenHeight?: number;
299
+ //#region src/groups/QueryBoundary/index.d.ts
300
+ interface QueryBase {
301
+ /** The current loading status (true if loading, false if not) */
302
+ isLoading?: boolean;
303
+ /** The error given if the response gave an error. */
304
+ error?: unknown;
378
305
  }
379
- interface ScreenSizeContextValue {
380
- /** Whether the screen is a large screen or not. */
381
- isLargeScreen: boolean;
382
- /** The current window width. */
383
- windowWidth: number;
384
- /** The current window height. */
385
- windowHeight: number;
306
+ interface QuerySingle<DataType> extends QueryBase {
307
+ /** The data being loaded. */
308
+ data: DataType | null | undefined;
309
+ dataCollection?: never;
386
310
  }
387
- /** Access the screen size context directly. */
388
- declare function useScreenSize<Strict extends boolean = true>({
389
- strict
390
- }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, ScreenSizeContextValue>;
391
- /** Provides context about the current screen size. */
392
- declare function ScreenSizeProvider({
393
- children,
394
- largeScreenWidth,
395
- largeScreenHeight
396
- }: ScreenSizeProps): _$react_jsx_runtime0.JSX.Element;
311
+ interface QueryMultiple<ItemType> extends QueryBase {
312
+ /** An array of data items being loaded. */
313
+ dataCollection: Array<ItemType> | null | undefined;
314
+ data?: never;
315
+ }
316
+ type Query<DataType> = QuerySingle<DataType> | QueryMultiple<DataType>;
317
+ interface CreateQueryBoundaryParameters<DataType> {
318
+ query: Query<DataType>;
319
+ }
320
+ interface DefaultQueryBoundaryComponents<DataType> {
321
+ Context: (props: {
322
+ children: ReactNode;
323
+ }) => JSX.Element;
324
+ Error: typeof QueryBoundaryError;
325
+ Data: typeof QueryBoundaryData<DataType>;
326
+ DataMap: typeof QueryBoundaryDataMap<DataType>;
327
+ Fallback: typeof QueryBoundaryFallback;
328
+ Nullable: typeof QueryBoundaryNullable;
329
+ }
330
+ /**
331
+ * A creator function to create a system of QueryBoundary components with the data fully typed throughout.
332
+ *
333
+ * @deprecated Please use either `createBaseQueryBoundary`, `createItemQueryBoundary`, or `createListQueryBoundary` from `@alextheman/components/v7` instead.
334
+ */
335
+ declare function createQueryBoundary<DataType>({
336
+ query
337
+ }: CreateQueryBoundaryParameters<DataType>): DefaultQueryBoundaryComponents<DataType>;
397
338
  //#endregion
398
- //#region src/providers/SnackbarProvider.d.ts
399
- interface SnackbarProviderProps {
400
- /** The children that will have access to the snackbar context. */
401
- children: ReactNode;
402
- /** The amount of seconds to wait before hiding the snackbar. */
403
- autoHideDuration?: number;
339
+ //#region src/types/ContextHookOptions.d.ts
340
+ interface ContextHookOptions<Strict extends boolean = true> {
341
+ /** Error if the context is missing if this is set to true. */
342
+ strict?: Strict;
404
343
  }
405
- interface SnackbarContextValue {
406
- /** A function that adds the snackbar to the page. */
407
- addSnackbar: (message: string, severity?: AlertColor, duration?: number) => void;
344
+ //#endregion
345
+ //#region src/groups/QueryBoundary/QueryBoundaryProvider.d.ts
346
+ interface QueryBoundaryProviderBaseProps<DataType> {
347
+ /** The current loading status (true if loading, false if not) */
348
+ isLoading?: boolean;
349
+ /** The data being loaded. */
350
+ data?: DataType | null | undefined;
351
+ /** A parser for the data. */
352
+ dataParser?: (data: unknown) => NonNullable<DataType>;
353
+ /** The component to show when the data is being fetched. */
354
+ loadingComponent?: ReactNode;
408
355
  }
409
- /** Access the snackbar context directly. */
410
- declare function useSnackbar<Strict extends boolean = true>({
356
+ interface QueryBoundaryProviderPropsWithNoError<DataType> extends QueryBoundaryProviderBaseProps<DataType> {
357
+ error?: never;
358
+ errorComponent?: never;
359
+ logError?: never;
360
+ }
361
+ interface QueryBoundaryProviderPropsWithError<DataType> extends QueryBoundaryProviderBaseProps<DataType> {
362
+ /** The error given if the request gave an error. */
363
+ error: unknown;
364
+ /** The component to show if an error has been thrown. Note that this may not be provided unless the error prop has also been provided. */
365
+ errorComponent?: ReactNode | ((error: unknown) => ReactNode);
366
+ /** Whether you want to log the error to the console or not. */
367
+ logError?: boolean;
368
+ }
369
+ type QueryBoundaryContextValue<DataType> = QueryBoundaryProviderPropsWithNoError<DataType> | QueryBoundaryProviderPropsWithError<DataType>;
370
+ type QueryBoundaryProviderProps<DataType> = QueryBoundaryContextValue<DataType> & {
371
+ children: ReactNode;
372
+ };
373
+ /** Access the QueryBoundary context directly. */
374
+ declare function useQueryBoundary<DataType, Strict extends boolean = true>({
411
375
  strict
412
- }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, SnackbarContextValue>;
413
- /** Controls the display of the snackbars on the page. */
414
- declare function SnackbarProvider({
376
+ }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, QueryBoundaryContextValue<DataType>>;
377
+ /**
378
+ * A provider for a context that deals with state management when fetching data from an API.
379
+ * This may be used over QueryBoundary if you require more control over the placement of the error message and data display.
380
+ *
381
+ * @template DataType - The type of data being loaded.
382
+ */
383
+ declare function QueryBoundaryProvider<DataType>({
415
384
  children,
416
- autoHideDuration
417
- }: SnackbarProviderProps): _$react_jsx_runtime0.JSX.Element;
385
+ loadingComponent,
386
+ ...contextProps
387
+ }: QueryBoundaryProviderProps<DataType>): _$react_jsx_runtime0.JSX.Element;
418
388
  //#endregion
419
389
  //#region src/components/QueryBoundaryMap.d.ts
420
390
  type QueryBoundaryMapProps<ItemType> = Omit<QueryBoundaryProviderProps<Array<ItemType>>, "children" | "logError"> & Omit<QueryBoundaryFallbackProps, "errorComponent"> & QueryBoundaryDataMapProps<ItemType>;
@@ -855,42 +825,6 @@ declare function SubmitButton({
855
825
  ...buttonProps
856
826
  }: SubmitButtonProps): _$react_jsx_runtime0.JSX.Element;
857
827
  //#endregion
858
- //#region src/hooks/createQueryBoundary.d.ts
859
- interface QueryBase {
860
- /** The current loading status (true if loading, false if not) */
861
- isLoading?: boolean;
862
- /** The error given if the response gave an error. */
863
- error?: unknown;
864
- }
865
- interface QuerySingle<DataType> extends QueryBase {
866
- /** The data being loaded. */
867
- data: DataType | null | undefined;
868
- dataCollection?: never;
869
- }
870
- interface QueryMultiple<ItemType> extends QueryBase {
871
- /** An array of data items being loaded. */
872
- dataCollection: Array<ItemType> | null | undefined;
873
- data?: never;
874
- }
875
- type Query<DataType> = QuerySingle<DataType> | QueryMultiple<DataType>;
876
- interface CreateQueryBoundaryParameters<DataType> {
877
- query: Query<DataType>;
878
- }
879
- interface DefaultQueryBoundaryComponents<DataType> {
880
- Context: (props: {
881
- children: ReactNode;
882
- }) => JSX.Element;
883
- Error: typeof QueryBoundaryError;
884
- Data: typeof QueryBoundaryData<DataType>;
885
- DataMap: typeof QueryBoundaryDataMap<DataType>;
886
- Fallback: typeof QueryBoundaryFallback;
887
- Nullable: typeof QueryBoundaryNullable;
888
- }
889
- /** A creator function to create a system of QueryBoundary components with the data fully typed throughout. */
890
- declare function createQueryBoundary<DataType>({
891
- query
892
- }: CreateQueryBoundaryParameters<DataType>): DefaultQueryBoundaryComponents<DataType>;
893
- //#endregion
894
828
  //#region src/hooks/useDebounce.d.ts
895
829
  /**
896
830
  * Assign a variable a given value after a given amount of milliseconds.
@@ -916,5 +850,75 @@ declare function useDebounce<ValueType>(value: ValueType, delay?: number): Value
916
850
  */
917
851
  declare function useHash<StateType extends string>(initialHash: StateType | undefined): [StateType, Dispatch<SetStateAction<StateType>>];
918
852
  //#endregion
919
- export { Artwork, CollapsableItem, type CollapsableItemProps, ContextHookOptions, type CreateQueryBoundaryParameters, DarkModeToggle, type DefaultQueryBoundaryComponents, 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 Query, 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 QueryMultiple, type QuerySingle, ReactPlayground, type ReactPlaygroundProps, type ScreenSizeContextValue, type ScreenSizeProps, ScreenSizeProvider, SkeletonRow, type SkeletonRowProps, SnackbarProvider, type SnackbarProviderProps, SubmitButton, type SubmitButtonProps, SwitchWithIcons, type SwitchWithIconsProps, createQueryBoundary, useDebounce, useDropdownMenu, useHash, useMode, useQueryBoundary, useScreenSize, useSnackbar };
853
+ //#region src/providers/ModeProvider.d.ts
854
+ interface ModeContextValue {
855
+ toggleMode: () => void;
856
+ mode: PaletteMode;
857
+ }
858
+ /** Access the mode context directly. */
859
+ declare function useMode<Strict extends boolean = true>({
860
+ strict
861
+ }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, ModeContextValue>;
862
+ interface ModeProviderProps {
863
+ /** The children that will have access to the current mode. */
864
+ children: ReactNode;
865
+ /** The initial mode. */
866
+ mode?: PaletteMode;
867
+ }
868
+ /** Provides information about the current theme mode to its children components. */
869
+ declare function ModeProvider({
870
+ children,
871
+ mode: modeProp
872
+ }: ModeProviderProps): _$react_jsx_runtime0.JSX.Element;
873
+ //#endregion
874
+ //#region src/providers/ScreenSizeProvider.d.ts
875
+ interface ScreenSizeProps {
876
+ /** The children that will be receiving the ScreenSizeContext. */
877
+ children: ReactNode;
878
+ /** The minimum screen width in pixels required to be considered a large screen. */
879
+ largeScreenWidth?: number;
880
+ /** The minimum screen height in pixels required to be considered a large screen. */
881
+ largeScreenHeight?: number;
882
+ }
883
+ interface ScreenSizeContextValue {
884
+ /** Whether the screen is a large screen or not. */
885
+ isLargeScreen: boolean;
886
+ /** The current window width. */
887
+ windowWidth: number;
888
+ /** The current window height. */
889
+ windowHeight: number;
890
+ }
891
+ /** Access the screen size context directly. */
892
+ declare function useScreenSize<Strict extends boolean = true>({
893
+ strict
894
+ }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, ScreenSizeContextValue>;
895
+ /** Provides context about the current screen size. */
896
+ declare function ScreenSizeProvider({
897
+ children,
898
+ largeScreenWidth,
899
+ largeScreenHeight
900
+ }: ScreenSizeProps): _$react_jsx_runtime0.JSX.Element;
901
+ //#endregion
902
+ //#region src/providers/SnackbarProvider.d.ts
903
+ interface SnackbarProviderProps {
904
+ /** The children that will have access to the snackbar context. */
905
+ children: ReactNode;
906
+ /** The amount of seconds to wait before hiding the snackbar. */
907
+ autoHideDuration?: number;
908
+ }
909
+ interface SnackbarContextValue {
910
+ /** A function that adds the snackbar to the page. */
911
+ addSnackbar: (message: string, severity?: AlertColor, duration?: number) => void;
912
+ }
913
+ /** Access the snackbar context directly. */
914
+ declare function useSnackbar<Strict extends boolean = true>({
915
+ strict
916
+ }?: ContextHookOptions<Strict>): OptionalOnCondition<Strict, SnackbarContextValue>;
917
+ /** Controls the display of the snackbars on the page. */
918
+ declare function SnackbarProvider({
919
+ children,
920
+ autoHideDuration
921
+ }: SnackbarProviderProps): _$react_jsx_runtime0.JSX.Element;
922
+ //#endregion
923
+ export { Artwork, CollapsableItem, type CollapsableItemProps, ContextHookOptions, type CreateQueryBoundaryParameters, DarkModeToggle, type DefaultQueryBoundaryComponents, 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 QueryMultiple, type QuerySingle, ReactPlayground, type ReactPlaygroundProps, type ScreenSizeContextValue, type ScreenSizeProps, ScreenSizeProvider, SkeletonRow, type SkeletonRowProps, SnackbarProvider, type SnackbarProviderProps, SubmitButton, type SubmitButtonProps, SwitchWithIcons, type SwitchWithIconsProps, createQueryBoundary, useDebounce, useDropdownMenu, useHash, useMode, useQueryBoundary, useScreenSize, useSnackbar };
920
924
  //# sourceMappingURL=index.d.cts.map