@firecms/ui 3.3.0-canary.451aa49 → 3.3.0-canary.5906216
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/components/Autocomplete.d.ts +1 -1
- package/dist/components/BooleanSwitchWithLabel.d.ts +1 -1
- package/dist/components/Card.d.ts +2 -3
- package/dist/components/Checkbox.d.ts +2 -1
- package/dist/components/Chip.d.ts +5 -1
- package/dist/components/CircularProgress.d.ts +2 -1
- package/dist/components/Collapse.d.ts +1 -1
- package/dist/components/ColorPicker.d.ts +2 -1
- package/dist/components/DebouncedTextField.d.ts +2 -1
- package/dist/components/Dialog.d.ts +2 -1
- package/dist/components/DialogActions.d.ts +1 -1
- package/dist/components/DialogContent.d.ts +1 -1
- package/dist/components/DialogTitle.d.ts +1 -1
- package/dist/components/ExpandablePanel.d.ts +1 -1
- package/dist/components/FileUpload.d.ts +1 -1
- package/dist/components/FilterChip.d.ts +34 -0
- package/dist/components/IconButton.d.ts +1 -0
- package/dist/components/InfoLabel.d.ts +1 -1
- package/dist/components/LoadingButton.d.ts +1 -1
- package/dist/components/Menu.d.ts +1 -1
- package/dist/components/Menubar.d.ts +16 -16
- package/dist/components/MultiSelect.d.ts +1 -1
- package/dist/components/Paper.d.ts +1 -1
- package/dist/components/Popover.d.ts +3 -1
- package/dist/components/ResizablePanels.d.ts +1 -1
- package/dist/components/SearchBar.d.ts +1 -1
- package/dist/components/Select.d.ts +2 -2
- package/dist/components/Separator.d.ts +1 -1
- package/dist/components/Skeleton.d.ts +2 -1
- package/dist/components/Table.d.ts +5 -5
- package/dist/components/Tabs.d.ts +2 -2
- package/dist/components/TextField.d.ts +2 -2
- package/dist/components/ToggleButtonGroup.d.ts +1 -1
- package/dist/components/Typography.d.ts +1 -1
- package/dist/components/common/SelectInputLabel.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/hooks/PortalContainerContext.d.ts +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useDebounceCallback.d.ts +13 -0
- package/dist/icons/FirestoreIcon.d.ts +2 -1
- package/dist/icons/GitHubIcon.d.ts +2 -1
- package/dist/icons/HandleIcon.d.ts +1 -1
- package/dist/index.css +43 -32
- package/dist/index.es.js +988 -530
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +987 -529
- package/dist/index.umd.js.map +1 -1
- package/dist/styles.d.ts +1 -1
- package/package.json +8 -8
- package/src/components/Alert.tsx +7 -7
- package/src/components/Avatar.tsx +1 -1
- package/src/components/BooleanSwitch.tsx +6 -3
- package/src/components/Button.tsx +17 -13
- package/src/components/Card.tsx +3 -1
- package/src/components/CenteredView.tsx +1 -1
- package/src/components/Checkbox.tsx +10 -4
- package/src/components/Chip.tsx +70 -11
- package/src/components/Collapse.tsx +2 -0
- package/src/components/Dialog.tsx +8 -5
- package/src/components/ExpandablePanel.tsx +3 -2
- package/src/components/FilterChip.tsx +79 -0
- package/src/components/IconButton.tsx +11 -6
- package/src/components/InfoLabel.tsx +1 -1
- package/src/components/InputLabel.tsx +2 -2
- package/src/components/Label.tsx +1 -1
- package/src/components/LoadingButton.tsx +1 -1
- package/src/components/Menu.tsx +2 -0
- package/src/components/Popover.tsx +9 -3
- package/src/components/RadioGroup.tsx +1 -1
- package/src/components/Select.tsx +8 -6
- package/src/components/Separator.tsx +2 -2
- package/src/components/Skeleton.tsx +25 -8
- package/src/components/TextField.tsx +27 -13
- package/src/components/TextareaAutosize.tsx +10 -0
- package/src/components/ToggleButtonGroup.tsx +4 -2
- package/src/components/index.tsx +1 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useDebounceCallback.tsx +47 -0
- package/src/index.css +43 -32
- package/src/styles.ts +1 -1
|
@@ -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):
|
|
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) =>
|
|
18
|
+
export declare const BooleanSwitchWithLabel: ({ value, position, size, invisible, onValueChange, error, label, autoFocus, disabled, className, fullWidth, inputClassName, switchAdornment, ...props }: BooleanSwitchWithLabelProps) => React.JSX.Element;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
|
|
2
|
+
declare const Card: React.ForwardRefExoticComponent<{
|
|
3
3
|
children: React.ReactNode;
|
|
4
4
|
style?: React.CSSProperties;
|
|
5
5
|
onClick?: (e?: React.MouseEvent) => void;
|
|
6
6
|
className?: string;
|
|
7
|
-
}
|
|
8
|
-
declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
|
|
7
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
9
8
|
export { Card };
|
|
@@ -8,5 +8,6 @@ export interface CheckboxProps {
|
|
|
8
8
|
padding?: boolean;
|
|
9
9
|
size?: "smallest" | "small" | "medium" | "large";
|
|
10
10
|
color?: "primary" | "secondary";
|
|
11
|
+
"aria-label"?: string;
|
|
11
12
|
}
|
|
12
|
-
export declare const Checkbox: React.MemoExoticComponent<({ id, checked, indeterminate, padding, disabled, size, onCheckedChange, color }: CheckboxProps) =>
|
|
13
|
+
export declare const Checkbox: React.MemoExoticComponent<({ id, checked, indeterminate, padding, disabled, size, onCheckedChange, color, "aria-label": ariaLabel }: CheckboxProps) => React.JSX.Element>;
|
|
@@ -3,12 +3,16 @@ import { CHIP_COLORS } from "../util";
|
|
|
3
3
|
export type ChipColorScheme = {
|
|
4
4
|
color: string;
|
|
5
5
|
text: string;
|
|
6
|
+
/** Background color override for dark mode. Falls back to `color`. */
|
|
7
|
+
darkColor?: string;
|
|
8
|
+
/** Text color override for dark mode. Falls back to `text`. */
|
|
9
|
+
darkText?: string;
|
|
6
10
|
};
|
|
7
11
|
export type ChipColorKey = keyof typeof CHIP_COLORS;
|
|
8
12
|
export interface ChipProps {
|
|
9
13
|
className?: string;
|
|
10
14
|
children: React.ReactNode;
|
|
11
|
-
size?: "small" | "medium" | "large";
|
|
15
|
+
size?: "smallest" | "small" | "medium" | "large";
|
|
12
16
|
colorScheme?: ChipColorScheme | ChipColorKey;
|
|
13
17
|
error?: boolean;
|
|
14
18
|
outlined?: boolean;
|
|
@@ -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):
|
|
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) =>
|
|
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):
|
|
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>):
|
|
3
|
+
export declare function DebouncedTextField<T extends string | number>(props: TextFieldProps<T>): React.JSX.Element;
|
|
@@ -20,6 +20,7 @@ export type DialogProps = {
|
|
|
20
20
|
*/
|
|
21
21
|
disableInitialFocus?: boolean;
|
|
22
22
|
portalContainer?: HTMLElement | null;
|
|
23
|
+
"aria-describedby"?: string;
|
|
23
24
|
};
|
|
24
25
|
declare const widthClasses: {
|
|
25
26
|
xs: string;
|
|
@@ -35,5 +36,5 @@ declare const widthClasses: {
|
|
|
35
36
|
"7xl": string;
|
|
36
37
|
full: string;
|
|
37
38
|
};
|
|
38
|
-
export declare const Dialog: ({ open, onOpenChange, children, className, containerClassName, fullWidth, fullHeight, fullScreen, scrollable, maxWidth, modal, onOpenAutoFocus, onEscapeKeyDown, onPointerDownOutside, onInteractOutside, disableInitialFocus, portalContainer }: DialogProps) =>
|
|
39
|
+
export declare const Dialog: ({ open, onOpenChange, children, className, containerClassName, fullWidth, fullHeight, fullScreen, scrollable, maxWidth, modal, onOpenAutoFocus, onEscapeKeyDown, onPointerDownOutside, onInteractOutside, disableInitialFocus, portalContainer, "aria-describedby": ariaDescribedby }: DialogProps) => React.JSX.Element;
|
|
39
40
|
export {};
|
|
@@ -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):
|
|
10
|
+
export declare function DialogTitle({ children, hidden, className, variant, gutterBottom, includeMargin, ...props }: DialogContentProps): 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>):
|
|
23
|
+
export declare function FileUpload({ accept, onFilesAdded, onFilesRejected, maxSize, disabled, maxFiles, title, uploadDescription, children, preventDropOnDocument, size }: React.PropsWithChildren<FileUploadProps>): React.JSX.Element;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface FilterChipProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
|
|
3
|
+
/**
|
|
4
|
+
* The text label displayed on the chip.
|
|
5
|
+
*/
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* Whether the chip is currently in an active/selected state.
|
|
9
|
+
*/
|
|
10
|
+
active?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Optional icon rendered before the label.
|
|
13
|
+
*/
|
|
14
|
+
icon?: React.ReactNode;
|
|
15
|
+
/**
|
|
16
|
+
* Size variant.
|
|
17
|
+
* @default "medium"
|
|
18
|
+
*/
|
|
19
|
+
size?: "small" | "medium";
|
|
20
|
+
/**
|
|
21
|
+
* Whether the chip is disabled.
|
|
22
|
+
*/
|
|
23
|
+
disabled?: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* A toggle chip used for filter presets and similar multi-select controls.
|
|
27
|
+
*
|
|
28
|
+
* Uses an inset box-shadow for the active ring instead of `border` so the
|
|
29
|
+
* chip size stays stable across states and the ring cannot be clipped by
|
|
30
|
+
* parent `overflow-hidden` containers.
|
|
31
|
+
*
|
|
32
|
+
* @group Interactive components
|
|
33
|
+
*/
|
|
34
|
+
export declare const FilterChip: React.ForwardRefExoticComponent<FilterChipProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -7,5 +7,6 @@ export type IconButtonProps<C extends React.ElementType> = Omit<(C extends "butt
|
|
|
7
7
|
toggled?: boolean;
|
|
8
8
|
component?: C;
|
|
9
9
|
onClick?: React.MouseEventHandler<any>;
|
|
10
|
+
"aria-label"?: string;
|
|
10
11
|
};
|
|
11
12
|
export declare const IconButton: React.ComponentType<IconButtonProps<any>>;
|
|
@@ -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>):
|
|
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) =>
|
|
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
|
-
}):
|
|
6
|
+
}): React.JSX.Element;
|
|
7
7
|
export declare function MenubarMenu({ children, }: {
|
|
8
8
|
children: React.ReactNode;
|
|
9
|
-
}):
|
|
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
|
-
}):
|
|
14
|
+
}): React.JSX.Element;
|
|
15
15
|
export declare function MenubarPortal({ children, portalContainer, }: {
|
|
16
16
|
children: React.ReactNode;
|
|
17
17
|
portalContainer?: HTMLElement | null;
|
|
18
|
-
}):
|
|
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
|
-
}):
|
|
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
|
-
}):
|
|
33
|
+
}): React.JSX.Element;
|
|
34
34
|
export declare function MenubarSeparator({ children, className, ...rest }: {
|
|
35
35
|
children?: React.ReactNode;
|
|
36
36
|
className?: string;
|
|
37
|
-
}):
|
|
37
|
+
}): React.JSX.Element;
|
|
38
38
|
export declare function MenubarSub({ children, ...rest }: {
|
|
39
39
|
children?: React.ReactNode;
|
|
40
|
-
}):
|
|
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
|
-
}):
|
|
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
|
-
}):
|
|
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
|
-
}):
|
|
58
|
+
}): React.JSX.Element;
|
|
59
59
|
export declare function MenubarItemIndicator({ children, className, ...rest }: {
|
|
60
60
|
children?: React.ReactNode;
|
|
61
61
|
className?: string;
|
|
62
|
-
}):
|
|
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
|
-
}):
|
|
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
|
-
}):
|
|
75
|
+
}): React.JSX.Element;
|
|
76
76
|
export declare function MenubarShortcut({ children, className, ...rest }: {
|
|
77
77
|
children?: React.ReactNode;
|
|
78
78
|
className?: string;
|
|
79
|
-
}):
|
|
80
|
-
export declare function MenubarSubTriggerIndicator():
|
|
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>) =>
|
|
47
|
+
export declare const MultiSelectItem: React.MemoExoticComponent<(<T extends MultiSelectValue = string>({ children, value, className }: MultiSelectItemProps<T>) => React.JSX.Element)>;
|
|
48
48
|
export {};
|
|
@@ -18,5 +18,7 @@ export interface PopoverProps {
|
|
|
18
18
|
modal?: boolean;
|
|
19
19
|
className?: string;
|
|
20
20
|
portalContainer?: HTMLElement | null;
|
|
21
|
+
onMouseEnter?: React.MouseEventHandler<HTMLDivElement>;
|
|
22
|
+
onMouseLeave?: React.MouseEventHandler<HTMLDivElement>;
|
|
21
23
|
}
|
|
22
|
-
export declare function Popover({ trigger, children, open, onOpenChange, side, sideOffset, align, alignOffset, arrowPadding, sticky, hideWhenDetached, avoidCollisions, enabled, modal, portalContainer, className }: PopoverProps):
|
|
24
|
+
export declare function Popover({ trigger, children, open, onOpenChange, side, sideOffset, align, alignOffset, arrowPadding, sticky, hideWhenDetached, avoidCollisions, enabled, modal, portalContainer, className, onMouseEnter, onMouseLeave }: 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):
|
|
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):
|
|
25
|
+
export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, large, innerClassName, className, autoFocus, disabled, loading, inputRef }: SearchBarProps): React.JSX.Element;
|
|
26
26
|
export {};
|
|
@@ -20,7 +20,7 @@ export type SelectProps<T extends SelectValue = string> = {
|
|
|
20
20
|
error?: boolean;
|
|
21
21
|
position?: "item-aligned" | "popper";
|
|
22
22
|
endAdornment?: React.ReactNode;
|
|
23
|
-
inputRef?: React.
|
|
23
|
+
inputRef?: React.Ref<HTMLButtonElement>;
|
|
24
24
|
padding?: boolean;
|
|
25
25
|
invisible?: boolean;
|
|
26
26
|
children?: React.ReactNode;
|
|
@@ -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>) =>
|
|
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;
|
|
@@ -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):
|
|
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) =>
|
|
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) =>
|
|
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) =>
|
|
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) =>
|
|
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) =>
|
|
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):
|
|
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):
|
|
23
|
+
export declare function Tab({ value, className, innerClassName, children, disabled }: TabProps): React.JSX.Element;
|
|
24
24
|
export {};
|
|
@@ -27,7 +27,7 @@ export type TextFieldProps<T extends string | number> = {
|
|
|
27
27
|
* @default 1
|
|
28
28
|
*/
|
|
29
29
|
minRows?: number | string;
|
|
30
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "size">;
|
|
30
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "value">;
|
|
31
31
|
export declare const TextField: React.ForwardRefExoticComponent<{
|
|
32
32
|
type?: InputType;
|
|
33
33
|
value?: string | number | undefined;
|
|
@@ -55,4 +55,4 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
55
55
|
* @default 1
|
|
56
56
|
*/
|
|
57
57
|
minRows?: number | string;
|
|
58
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> & React.RefAttributes<HTMLDivElement>>;
|
|
58
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "size"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -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>):
|
|
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>):
|
|
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 {};
|
|
@@ -21,7 +21,7 @@ export interface PortalContainerProviderProps {
|
|
|
21
21
|
* </div>
|
|
22
22
|
* ```
|
|
23
23
|
*/
|
|
24
|
-
export declare function PortalContainerProvider({ container, children }: PortalContainerProviderProps):
|
|
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.
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Returns a debounced version of the provided callback. The returned function
|
|
3
|
+
* keeps the same signature as the input callback; each invocation resets the
|
|
4
|
+
* timer, so the wrapped callback only runs once calls stop for `delay` ms.
|
|
5
|
+
*
|
|
6
|
+
* Unlike {@link useDebounceValue}, which debounces a *value*, this debounces a
|
|
7
|
+
* *function call* — useful for search inputs, autosave, resize handlers, etc.
|
|
8
|
+
*
|
|
9
|
+
* @param callback the function to debounce. May be undefined.
|
|
10
|
+
* @param delay debounce delay in milliseconds. Defaults to 200ms.
|
|
11
|
+
* @group Hooks
|
|
12
|
+
*/
|
|
13
|
+
export declare function useDebounceCallback<T extends (...args: any[]) => unknown>(callback?: T, delay?: number): T;
|
|
@@ -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):
|
|
7
|
+
export declare function FirestoreIcon(props: IconProps): React.JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function HandleIcon(): import("react
|
|
1
|
+
export declare function HandleIcon(): import("react").JSX.Element;
|