@firecms/ui 3.3.0-canary.451aa49 → 3.3.0-canary.69e5ab1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/components/Autocomplete.d.ts +1 -1
  2. package/dist/components/BooleanSwitchWithLabel.d.ts +1 -1
  3. package/dist/components/Checkbox.d.ts +1 -1
  4. package/dist/components/CircularProgress.d.ts +2 -1
  5. package/dist/components/Collapse.d.ts +1 -1
  6. package/dist/components/ColorPicker.d.ts +2 -1
  7. package/dist/components/DebouncedTextField.d.ts +2 -1
  8. package/dist/components/Dialog.d.ts +1 -1
  9. package/dist/components/DialogActions.d.ts +1 -1
  10. package/dist/components/DialogContent.d.ts +1 -1
  11. package/dist/components/DialogTitle.d.ts +1 -1
  12. package/dist/components/ExpandablePanel.d.ts +1 -1
  13. package/dist/components/FileUpload.d.ts +1 -1
  14. package/dist/components/InfoLabel.d.ts +1 -1
  15. package/dist/components/LoadingButton.d.ts +1 -1
  16. package/dist/components/Menu.d.ts +1 -1
  17. package/dist/components/Menubar.d.ts +16 -16
  18. package/dist/components/MultiSelect.d.ts +1 -1
  19. package/dist/components/Paper.d.ts +1 -1
  20. package/dist/components/Popover.d.ts +1 -1
  21. package/dist/components/ResizablePanels.d.ts +1 -1
  22. package/dist/components/SearchBar.d.ts +1 -1
  23. package/dist/components/Select.d.ts +1 -1
  24. package/dist/components/Separator.d.ts +1 -1
  25. package/dist/components/Skeleton.d.ts +2 -1
  26. package/dist/components/Table.d.ts +5 -5
  27. package/dist/components/Tabs.d.ts +2 -2
  28. package/dist/components/ToggleButtonGroup.d.ts +1 -1
  29. package/dist/components/Typography.d.ts +1 -1
  30. package/dist/components/common/SelectInputLabel.d.ts +1 -1
  31. package/dist/hooks/PortalContainerContext.d.ts +1 -1
  32. package/dist/icons/FirestoreIcon.d.ts +2 -1
  33. package/dist/icons/GitHubIcon.d.ts +2 -1
  34. package/dist/icons/HandleIcon.d.ts +1 -1
  35. package/dist/index.es.js +6 -0
  36. package/dist/index.es.js.map +1 -1
  37. package/dist/index.umd.js +6 -0
  38. package/dist/index.umd.js.map +1 -1
  39. package/package.json +3 -3
  40. package/src/components/TextareaAutosize.tsx +10 -0
@@ -12,7 +12,7 @@ export declare const useAutoComplete: ({ ref }: {
12
12
  autoCompleteOpen: boolean;
13
13
  setAutoCompleteOpen: React.Dispatch<React.SetStateAction<boolean>>;
14
14
  };
15
- export declare function Autocomplete({ children, open, setOpen, className }: AutocompleteProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function Autocomplete({ children, open, setOpen, className }: AutocompleteProps): React.JSX.Element;
16
16
  export type AutocompleteItemProps = {
17
17
  children: React.ReactNode;
18
18
  onClick?: () => void;
@@ -15,4 +15,4 @@ export type BooleanSwitchWithLabelProps = BooleanSwitchProps & {
15
15
  * Simple boolean switch.
16
16
  *
17
17
  */
18
- export declare const BooleanSwitchWithLabel: ({ value, position, size, invisible, onValueChange, error, label, autoFocus, disabled, className, fullWidth, inputClassName, switchAdornment, ...props }: BooleanSwitchWithLabelProps) => import("react/jsx-runtime").JSX.Element;
18
+ export declare const BooleanSwitchWithLabel: ({ value, position, size, invisible, onValueChange, error, label, autoFocus, disabled, className, fullWidth, inputClassName, switchAdornment, ...props }: BooleanSwitchWithLabelProps) => React.JSX.Element;
@@ -9,4 +9,4 @@ export interface CheckboxProps {
9
9
  size?: "smallest" | "small" | "medium" | "large";
10
10
  color?: "primary" | "secondary";
11
11
  }
12
- export declare const Checkbox: React.MemoExoticComponent<({ id, checked, indeterminate, padding, disabled, size, onCheckedChange, color }: CheckboxProps) => import("react/jsx-runtime").JSX.Element>;
12
+ export declare const Checkbox: React.MemoExoticComponent<({ id, checked, indeterminate, padding, disabled, size, onCheckedChange, color }: CheckboxProps) => React.JSX.Element>;
@@ -1,5 +1,6 @@
1
+ import React from "react";
1
2
  export type CircularProgressProps = {
2
3
  size?: "smallest" | "small" | "medium" | "large";
3
4
  className?: string;
4
5
  };
5
- export declare function CircularProgress({ size, className }: CircularProgressProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function CircularProgress({ size, className }: CircularProgressProps): React.JSX.Element;
@@ -5,5 +5,5 @@ interface CollapseProps {
5
5
  in?: boolean;
6
6
  duration?: number;
7
7
  }
8
- export declare const Collapse: React.MemoExoticComponent<({ children, className, in: isOpen, duration }: CollapseProps) => import("react/jsx-runtime").JSX.Element>;
8
+ export declare const Collapse: React.MemoExoticComponent<({ children, className, in: isOpen, duration }: CollapseProps) => React.JSX.Element>;
9
9
  export {};
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import { ChipColorKey } from "./Chip";
2
3
  export interface ColorPickerProps {
3
4
  /**
@@ -27,4 +28,4 @@ export interface ColorPickerProps {
27
28
  *
28
29
  * @group Form components
29
30
  */
30
- export declare function ColorPicker({ value, onChange, size, allowClear, disabled }: ColorPickerProps): import("react/jsx-runtime").JSX.Element;
31
+ export declare function ColorPicker({ value, onChange, size, allowClear, disabled }: ColorPickerProps): React.JSX.Element;
@@ -1,2 +1,3 @@
1
+ import React from "react";
1
2
  import { TextFieldProps } from "./index";
2
- export declare function DebouncedTextField<T extends string | number>(props: TextFieldProps<T>): import("react/jsx-runtime").JSX.Element;
3
+ export declare function DebouncedTextField<T extends string | number>(props: TextFieldProps<T>): React.JSX.Element;
@@ -35,5 +35,5 @@ declare const widthClasses: {
35
35
  "7xl": string;
36
36
  full: string;
37
37
  };
38
- export declare const Dialog: ({ open, onOpenChange, children, className, containerClassName, fullWidth, fullHeight, fullScreen, scrollable, maxWidth, modal, onOpenAutoFocus, onEscapeKeyDown, onPointerDownOutside, onInteractOutside, disableInitialFocus, portalContainer }: DialogProps) => import("react/jsx-runtime").JSX.Element;
38
+ export declare const Dialog: ({ open, onOpenChange, children, className, containerClassName, fullWidth, fullHeight, fullScreen, scrollable, maxWidth, modal, onOpenAutoFocus, onEscapeKeyDown, onPointerDownOutside, onInteractOutside, disableInitialFocus, portalContainer }: DialogProps) => React.JSX.Element;
39
39
  export {};
@@ -4,4 +4,4 @@ export declare function DialogActions({ children, position, translucent, classNa
4
4
  position?: "sticky" | "absolute";
5
5
  translucent?: boolean;
6
6
  className?: string;
7
- }): import("react/jsx-runtime").JSX.Element;
7
+ }): React.JSX.Element;
@@ -4,4 +4,4 @@ export declare function DialogContent({ children, className, fullHeight, include
4
4
  includeMargin?: boolean;
5
5
  fullHeight?: boolean;
6
6
  className?: string;
7
- }): import("react/jsx-runtime").JSX.Element;
7
+ }): React.JSX.Element;
@@ -7,4 +7,4 @@ export type DialogContentProps = TypographyProps & {
7
7
  includeMargin?: boolean;
8
8
  variant?: TypographyVariant;
9
9
  };
10
- export declare function DialogTitle({ children, hidden, className, variant, gutterBottom, includeMargin, ...props }: DialogContentProps): import("react/jsx-runtime").JSX.Element;
10
+ export declare function DialogTitle({ children, hidden, className, variant, gutterBottom, includeMargin, ...props }: DialogContentProps): React.JSX.Element;
@@ -9,4 +9,4 @@ export declare function ExpandablePanel({ title, children, invisible, expanded,
9
9
  asField?: boolean;
10
10
  className?: string;
11
11
  innerClassName?: string;
12
- }>): import("react/jsx-runtime").JSX.Element;
12
+ }>): React.JSX.Element;
@@ -20,4 +20,4 @@ export type FileUploadProps = {
20
20
  preventDropOnDocument?: boolean;
21
21
  size?: "small" | "medium" | "large";
22
22
  };
23
- export declare function FileUpload({ accept, onFilesAdded, onFilesRejected, maxSize, disabled, maxFiles, title, uploadDescription, children, preventDropOnDocument, size }: React.PropsWithChildren<FileUploadProps>): import("react/jsx-runtime").JSX.Element;
23
+ export declare function FileUpload({ accept, onFilesAdded, onFilesRejected, maxSize, disabled, maxFiles, title, uploadDescription, children, preventDropOnDocument, size }: React.PropsWithChildren<FileUploadProps>): React.JSX.Element;
@@ -2,4 +2,4 @@ import React from "react";
2
2
  export declare function InfoLabel({ children, mode }: {
3
3
  children: React.ReactNode;
4
4
  mode?: "info" | "warn";
5
- }): import("react/jsx-runtime").JSX.Element;
5
+ }): React.JSX.Element;
@@ -4,4 +4,4 @@ export type LoadingButtonProps<P extends React.ElementType> = ButtonProps<P> & {
4
4
  startIcon?: React.ReactNode;
5
5
  loading?: boolean;
6
6
  };
7
- export declare function LoadingButton<P extends React.ElementType = "button">({ children, loading, disabled, onClick, startIcon, ...props }: LoadingButtonProps<P>): import("react/jsx-runtime").JSX.Element;
7
+ export declare function LoadingButton<P extends React.ElementType = "button">({ children, loading, disabled, onClick, startIcon, ...props }: LoadingButtonProps<P>): React.JSX.Element;
@@ -20,4 +20,4 @@ export type MenuItemProps = {
20
20
  onClick?: (event: React.MouseEvent) => void;
21
21
  className?: string;
22
22
  };
23
- export declare const MenuItem: React.MemoExoticComponent<({ children, dense, disabled, onClick, className }: MenuItemProps) => import("react/jsx-runtime").JSX.Element>;
23
+ export declare const MenuItem: React.MemoExoticComponent<({ children, dense, disabled, onClick, className }: MenuItemProps) => React.JSX.Element>;
@@ -3,19 +3,19 @@ export declare function Menubar({ children, onSelect, className }: {
3
3
  children: React.ReactNode;
4
4
  onSelect?: (event: React.SyntheticEvent) => void;
5
5
  className?: string;
6
- }): import("react/jsx-runtime").JSX.Element;
6
+ }): React.JSX.Element;
7
7
  export declare function MenubarMenu({ children, }: {
8
8
  children: React.ReactNode;
9
- }): import("react/jsx-runtime").JSX.Element;
9
+ }): React.JSX.Element;
10
10
  export declare function MenubarTrigger({ children, onSelect, className }: {
11
11
  children: React.ReactNode;
12
12
  onSelect?: (event: React.SyntheticEvent) => void;
13
13
  className?: string;
14
- }): import("react/jsx-runtime").JSX.Element;
14
+ }): React.JSX.Element;
15
15
  export declare function MenubarPortal({ children, portalContainer, }: {
16
16
  children: React.ReactNode;
17
17
  portalContainer?: HTMLElement | null;
18
- }): import("react/jsx-runtime").JSX.Element;
18
+ }): React.JSX.Element;
19
19
  export declare function MenubarContent({ children, className, align, sideOffset, alignOffset, onSelect, ...rest }: {
20
20
  children: React.ReactNode;
21
21
  className?: string;
@@ -23,58 +23,58 @@ export declare function MenubarContent({ children, className, align, sideOffset,
23
23
  align?: "start" | "center" | "end";
24
24
  sideOffset?: number;
25
25
  alignOffset?: number;
26
- }): import("react/jsx-runtime").JSX.Element;
26
+ }): React.JSX.Element;
27
27
  export declare function MenubarItem({ children, leftPadding, className, disabled, onSelect, ...rest }: {
28
28
  children: React.ReactNode;
29
29
  onSelect?: (event: Event) => void;
30
30
  leftPadding?: boolean;
31
31
  className?: string;
32
32
  disabled?: boolean;
33
- }): import("react/jsx-runtime").JSX.Element;
33
+ }): React.JSX.Element;
34
34
  export declare function MenubarSeparator({ children, className, ...rest }: {
35
35
  children?: React.ReactNode;
36
36
  className?: string;
37
- }): import("react/jsx-runtime").JSX.Element;
37
+ }): React.JSX.Element;
38
38
  export declare function MenubarSub({ children, ...rest }: {
39
39
  children?: React.ReactNode;
40
- }): import("react/jsx-runtime").JSX.Element;
40
+ }): React.JSX.Element;
41
41
  export declare function MenubarSubTrigger({ children, className, onSelect, ...rest }: {
42
42
  children?: React.ReactNode;
43
43
  onSelect?: (event: React.SyntheticEvent) => void;
44
44
  className?: string;
45
- }): import("react/jsx-runtime").JSX.Element;
45
+ }): React.JSX.Element;
46
46
  export declare function MenubarSubContent({ children, alignOffset, className, onSelect, ...rest }: {
47
47
  children?: React.ReactNode;
48
48
  onSelect?: (event: React.SyntheticEvent) => void;
49
49
  alignOffset?: number;
50
50
  className?: string;
51
- }): import("react/jsx-runtime").JSX.Element;
51
+ }): React.JSX.Element;
52
52
  export declare function MenubarCheckboxItem({ children, checked, onCheckedChange, className, onSelect, ...rest }: {
53
53
  children?: React.ReactNode;
54
54
  onSelect?: (event: Event) => void;
55
55
  checked?: boolean;
56
56
  onCheckedChange?: () => void;
57
57
  className?: string;
58
- }): import("react/jsx-runtime").JSX.Element;
58
+ }): React.JSX.Element;
59
59
  export declare function MenubarItemIndicator({ children, className, ...rest }: {
60
60
  children?: React.ReactNode;
61
61
  className?: string;
62
- }): import("react/jsx-runtime").JSX.Element;
62
+ }): React.JSX.Element;
63
63
  export declare function MenubarRadioGroup({ children, className, value, onValueChange, onSelect, ...rest }: {
64
64
  children?: React.ReactNode;
65
65
  onSelect?: (event: React.SyntheticEvent) => void;
66
66
  value?: string;
67
67
  onValueChange?: (value: string) => void;
68
68
  className?: string;
69
- }): import("react/jsx-runtime").JSX.Element;
69
+ }): React.JSX.Element;
70
70
  export declare function MenubarRadioItem({ children, className, value, onSelect, ...rest }: {
71
71
  children?: React.ReactNode;
72
72
  onSelect?: (event: Event) => void;
73
73
  value: string;
74
74
  className?: string;
75
- }): import("react/jsx-runtime").JSX.Element;
75
+ }): React.JSX.Element;
76
76
  export declare function MenubarShortcut({ children, className, ...rest }: {
77
77
  children?: React.ReactNode;
78
78
  className?: string;
79
- }): import("react/jsx-runtime").JSX.Element;
80
- export declare function MenubarSubTriggerIndicator(): import("react/jsx-runtime").JSX.Element;
79
+ }): React.JSX.Element;
80
+ export declare function MenubarSubTriggerIndicator(): React.JSX.Element;
@@ -44,5 +44,5 @@ export interface MultiSelectItemProps<T extends MultiSelectValue = string> {
44
44
  children?: React.ReactNode;
45
45
  className?: string;
46
46
  }
47
- export declare const MultiSelectItem: React.MemoExoticComponent<(<T extends MultiSelectValue = string>({ children, value, className }: MultiSelectItemProps<T>) => import("react/jsx-runtime").JSX.Element)>;
47
+ export declare const MultiSelectItem: React.MemoExoticComponent<(<T extends MultiSelectValue = string>({ children, value, className }: MultiSelectItemProps<T>) => React.JSX.Element)>;
48
48
  export {};
@@ -3,4 +3,4 @@ export declare function Paper({ children, style, className, }: {
3
3
  children: React.ReactNode;
4
4
  style?: React.CSSProperties;
5
5
  className?: string;
6
- }): import("react/jsx-runtime").JSX.Element;
6
+ }): React.JSX.Element;
@@ -19,4 +19,4 @@ export interface PopoverProps {
19
19
  className?: string;
20
20
  portalContainer?: HTMLElement | null;
21
21
  }
22
- export declare function Popover({ trigger, children, open, onOpenChange, side, sideOffset, align, alignOffset, arrowPadding, sticky, hideWhenDetached, avoidCollisions, enabled, modal, portalContainer, className }: PopoverProps): import("react/jsx-runtime").JSX.Element;
22
+ export declare function Popover({ trigger, children, open, onOpenChange, side, sideOffset, align, alignOffset, arrowPadding, sticky, hideWhenDetached, avoidCollisions, enabled, modal, portalContainer, className }: PopoverProps): React.JSX.Element;
@@ -13,4 +13,4 @@ export type ResizablePanelsProps = {
13
13
  orientation?: 'horizontal' | 'vertical';
14
14
  className?: string;
15
15
  };
16
- export declare function ResizablePanels({ firstPanel, secondPanel, showFirstPanel, showSecondPanel, panelSizePercent, onPanelSizeChange, minPanelSizePx, orientation, className }: ResizablePanelsProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare function ResizablePanels({ firstPanel, secondPanel, showFirstPanel, showSecondPanel, panelSizePercent, onPanelSizeChange, minPanelSizePx, orientation, className }: ResizablePanelsProps): React.JSX.Element;
@@ -22,5 +22,5 @@ interface SearchBarProps {
22
22
  loading?: boolean;
23
23
  inputRef?: React.Ref<HTMLInputElement>;
24
24
  }
25
- export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, large, innerClassName, className, autoFocus, disabled, loading, inputRef }: SearchBarProps): import("react/jsx-runtime").JSX.Element;
25
+ export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, large, innerClassName, className, autoFocus, disabled, loading, inputRef }: SearchBarProps): React.JSX.Element;
26
26
  export {};
@@ -34,7 +34,7 @@ export type SelectItemProps<T extends SelectValue = string> = {
34
34
  disabled?: boolean;
35
35
  className?: string;
36
36
  };
37
- export declare const SelectItem: React.MemoExoticComponent<(<T extends SelectValue = string>({ value, children, disabled, className }: SelectItemProps<T>) => import("react/jsx-runtime").JSX.Element)>;
37
+ export declare const SelectItem: React.MemoExoticComponent<(<T extends SelectValue = string>({ value, children, disabled, className }: SelectItemProps<T>) => React.JSX.Element)>;
38
38
  export type SelectGroupProps = {
39
39
  label: React.ReactNode;
40
40
  children: React.ReactNode;
@@ -2,4 +2,4 @@ export declare function Separator({ orientation, decorative, className }: {
2
2
  orientation: "horizontal" | "vertical";
3
3
  decorative?: boolean;
4
4
  className?: string;
5
- }): import("react/jsx-runtime").JSX.Element;
5
+ }): import("react").JSX.Element;
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  export type SkeletonProps = {
2
3
  width?: number;
3
4
  height?: number;
4
5
  className?: string;
5
6
  };
6
- export declare function Skeleton({ width, height, className }: SkeletonProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function Skeleton({ width, height, className }: SkeletonProps): React.JSX.Element;
@@ -4,24 +4,24 @@ export type TableProps = {
4
4
  className?: string;
5
5
  style?: React.CSSProperties;
6
6
  } & React.TableHTMLAttributes<HTMLTableElement>;
7
- export declare const Table: React.MemoExoticComponent<({ children, className, style, ...rest }: TableProps) => import("react/jsx-runtime").JSX.Element>;
7
+ export declare const Table: React.MemoExoticComponent<({ children, className, style, ...rest }: TableProps) => React.JSX.Element>;
8
8
  export type TableBodyProps = {
9
9
  children?: React.ReactNode;
10
10
  className?: string;
11
11
  } & React.HTMLAttributes<HTMLTableSectionElement>;
12
- export declare const TableBody: React.MemoExoticComponent<({ children, className, ...rest }: TableBodyProps) => import("react/jsx-runtime").JSX.Element>;
12
+ export declare const TableBody: React.MemoExoticComponent<({ children, className, ...rest }: TableBodyProps) => React.JSX.Element>;
13
13
  export type TableHeaderProps = {
14
14
  children?: React.ReactNode;
15
15
  className?: string;
16
16
  } & React.HTMLAttributes<HTMLTableSectionElement>;
17
- export declare const TableHeader: React.MemoExoticComponent<({ children, className, ...rest }: TableHeaderProps) => import("react/jsx-runtime").JSX.Element>;
17
+ export declare const TableHeader: React.MemoExoticComponent<({ children, className, ...rest }: TableHeaderProps) => React.JSX.Element>;
18
18
  export type TableRowProps = {
19
19
  children?: React.ReactNode;
20
20
  className?: string;
21
21
  onClick?: React.MouseEventHandler<any>;
22
22
  style?: React.CSSProperties;
23
23
  } & React.HTMLAttributes<HTMLTableRowElement>;
24
- export declare const TableRow: React.MemoExoticComponent<({ children, className, onClick, style, ...rest }: TableRowProps) => import("react/jsx-runtime").JSX.Element>;
24
+ export declare const TableRow: React.MemoExoticComponent<({ children, className, onClick, style, ...rest }: TableRowProps) => React.JSX.Element>;
25
25
  export type TableCellProps = {
26
26
  children?: React.ReactNode;
27
27
  header?: boolean;
@@ -31,4 +31,4 @@ export type TableCellProps = {
31
31
  align?: "left" | "center" | "right";
32
32
  colspan?: number;
33
33
  } & React.HTMLAttributes<HTMLTableCellElement>;
34
- export declare const TableCell: React.MemoExoticComponent<({ children, header, scope, align, className, style, colspan, ...rest }: TableCellProps) => import("react/jsx-runtime").JSX.Element>;
34
+ export declare const TableCell: React.MemoExoticComponent<({ children, header, scope, align, className, style, colspan, ...rest }: TableCellProps) => React.JSX.Element>;
@@ -12,7 +12,7 @@ export type TabsProps = {
12
12
  */
13
13
  mode?: TabsMode;
14
14
  };
15
- export declare function Tabs({ value, onValueChange, className, innerClassName, children, mode }: TabsProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function Tabs({ value, onValueChange, className, innerClassName, children, mode }: TabsProps): React.JSX.Element;
16
16
  export type TabProps = {
17
17
  value: string;
18
18
  className?: string;
@@ -20,5 +20,5 @@ export type TabProps = {
20
20
  children: React.ReactNode;
21
21
  disabled?: boolean;
22
22
  };
23
- export declare function Tab({ value, className, innerClassName, children, disabled }: TabProps): import("react/jsx-runtime").JSX.Element;
23
+ export declare function Tab({ value, className, innerClassName, children, disabled }: TabProps): React.JSX.Element;
24
24
  export {};
@@ -27,4 +27,4 @@ export type ToggleButtonGroupProps<T extends string = string> = {
27
27
  * A toggle button group component for selecting one option from a set.
28
28
  * Displays options as buttons in a horizontal row with active state styling.
29
29
  */
30
- export declare function ToggleButtonGroup<T extends string = string>({ value, onValueChange, options, className }: ToggleButtonGroupProps<T>): import("react/jsx-runtime").JSX.Element;
30
+ export declare function ToggleButtonGroup<T extends string = string>({ value, onValueChange, options, className }: ToggleButtonGroupProps<T>): React.JSX.Element;
@@ -32,5 +32,5 @@ declare const typographyVariants: {
32
32
  caption: string;
33
33
  button: string;
34
34
  };
35
- export declare function Typography<C extends React.ElementType = "span">({ align, color, children, className, component, gutterBottom, noWrap, paragraph, variant, variantMapping, style, onClick, ...other }: TypographyProps<C>): import("react/jsx-runtime").JSX.Element;
35
+ export declare function Typography<C extends React.ElementType = "span">({ align, color, children, className, component, gutterBottom, noWrap, paragraph, variant, variantMapping, style, onClick, ...other }: TypographyProps<C>): React.JSX.Element;
36
36
  export {};
@@ -2,4 +2,4 @@ import React from "react";
2
2
  export declare function SelectInputLabel({ children, error }: {
3
3
  children: React.ReactNode;
4
4
  error?: boolean;
5
- }): import("react/jsx-runtime").JSX.Element;
5
+ }): React.JSX.Element;
@@ -21,7 +21,7 @@ export interface PortalContainerProviderProps {
21
21
  * </div>
22
22
  * ```
23
23
  */
24
- export declare function PortalContainerProvider({ container, children }: PortalContainerProviderProps): import("react/jsx-runtime").JSX.Element;
24
+ export declare function PortalContainerProvider({ container, children }: PortalContainerProviderProps): React.JSX.Element;
25
25
  /**
26
26
  * Hook to access the portal container from context.
27
27
  * Returns null if no provider is found in the tree.
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  import { IconProps } from "./Icon";
2
3
  /**
3
4
  * Firebase Firestore flame icon (monochrome, uses currentColor).
4
5
  * @group Icons
5
6
  */
6
- export declare function FirestoreIcon(props: IconProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function FirestoreIcon(props: IconProps): React.JSX.Element;
@@ -1,2 +1,3 @@
1
+ import React from "react";
1
2
  import { IconProps } from "./Icon";
2
- export declare function GitHubIcon(props: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ export declare function GitHubIcon(props: IconProps): React.JSX.Element;
@@ -1 +1 @@
1
- export declare function HandleIcon(): import("react/jsx-runtime").JSX.Element;
1
+ export declare function HandleIcon(): import("react").JSX.Element;
package/dist/index.es.js CHANGED
@@ -37648,12 +37648,18 @@ const TextareaAutosize = React.forwardRef(function TextareaAutosize2(props, ref)
37648
37648
  el.style.overflowY = "hidden";
37649
37649
  el.style.height = "0px";
37650
37650
  const scrollH = el.scrollHeight;
37651
+ const selStart = el.selectionStart;
37652
+ const selEnd = el.selectionEnd;
37651
37653
  const prevValue = el.value;
37652
37654
  el.value = "x";
37653
37655
  const singleRowScrollH = el.scrollHeight;
37654
37656
  el.value = prevValue;
37655
37657
  el.style.height = prevHeight;
37656
37658
  el.style.overflowY = prevOverflow;
37659
+ if (document.activeElement === el) {
37660
+ el.selectionStart = selStart;
37661
+ el.selectionEnd = selEnd;
37662
+ }
37657
37663
  const lineHeight = singleRowScrollH - paddingY;
37658
37664
  let targetHeight = scrollH;
37659
37665
  if (minRows) {