@rebasepro/ui 0.5.0 → 0.6.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/components/Autocomplete.d.ts +2 -2
- package/dist/components/BooleanSwitchWithLabel.d.ts +1 -1
- package/dist/components/Checkbox.d.ts +1 -1
- package/dist/components/Chip.d.ts +1 -1
- package/dist/components/CircularProgress.d.ts +2 -1
- package/dist/components/CircularProgressCenter.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/ErrorBoundary.d.ts +1 -1
- package/dist/components/ExpandablePanel.d.ts +1 -1
- package/dist/components/FileUpload.d.ts +1 -1
- 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 +1 -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/Tooltip.d.ts +1 -1
- package/dist/components/Typography.d.ts +1 -1
- package/dist/components/VirtualTable/VirtualTableHeaderRow.d.ts +2 -1
- package/dist/components/common/SelectInputLabel.d.ts +1 -1
- package/dist/hooks/PortalContainerContext.d.ts +1 -1
- package/dist/icons/GitHubIcon.d.ts +2 -1
- package/dist/icons/HandleIcon.d.ts +1 -1
- package/dist/icons/index.d.ts +1 -1
- package/dist/index.es.js +5678 -8796
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6796 -9399
- package/dist/index.umd.js.map +1 -1
- package/dist/src/index.css +126 -0
- package/package.json +36 -35
- package/src/components/Dialog.tsx +6 -3
- package/src/components/ErrorBoundary.tsx +4 -2
- package/src/components/Table.tsx +21 -13
- package/src/components/TextField.tsx +3 -3
- package/src/components/Tooltip.tsx +2 -1
- package/src/components/VirtualTable/VirtualTable.performance.test.tsx +1 -1
- package/src/components/VirtualTable/VirtualTable.tsx +1 -2
- package/src/components/VirtualTable/VirtualTableHeader.tsx +34 -21
- package/src/hooks/useDebounceCallback.tsx +1 -1
- package/src/icons/Icon.tsx +1 -1
- package/src/icons/icon_keys.ts +1 -1
- package/src/icons/index.ts +1 -1
- package/src/scripts/fixIconSizes.cjs +7 -7
- package/src/scripts/fixIconSizesToConst.cjs +2 -2
- package/src/scripts/generateIconKeys.ts +7 -7
- package/src/scripts/saveIconFiles.ts +1 -1
- package/src/util/debounce.ts +2 -3
|
@@ -12,10 +12,10 @@ 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;
|
|
19
19
|
className?: string;
|
|
20
20
|
};
|
|
21
|
-
export declare const AutocompleteItem: React.
|
|
21
|
+
export declare const AutocompleteItem: React.MemoExoticComponent<({ children, onClick, className }: AutocompleteItemProps) => React.JSX.Element>;
|
|
@@ -14,4 +14,4 @@ export type BooleanSwitchWithLabelProps = BooleanSwitchProps & {
|
|
|
14
14
|
* Simple boolean switch.
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
|
-
export declare const BooleanSwitchWithLabel: ({ value, position, size, invisible, onValueChange, error, label, autoFocus, disabled, className, fullWidth, inputClassName, ...props }: BooleanSwitchWithLabelProps) =>
|
|
17
|
+
export declare const BooleanSwitchWithLabel: ({ value, position, size, invisible, onValueChange, error, label, autoFocus, disabled, className, fullWidth, inputClassName, ...props }: BooleanSwitchWithLabelProps) => React.JSX.Element;
|
|
@@ -10,4 +10,4 @@ export interface CheckboxProps {
|
|
|
10
10
|
color?: "primary" | "secondary";
|
|
11
11
|
"aria-label"?: string;
|
|
12
12
|
}
|
|
13
|
-
export declare const Checkbox: React.MemoExoticComponent<({ id, checked, indeterminate, padding, disabled, size, onCheckedChange, color, "aria-label": ariaLabel }: CheckboxProps) =>
|
|
13
|
+
export declare const Checkbox: React.MemoExoticComponent<({ id, checked, indeterminate, padding, disabled, size, onCheckedChange, color, "aria-label": ariaLabel }: CheckboxProps) => React.JSX.Element>;
|
|
@@ -23,4 +23,4 @@ export interface ChipProps {
|
|
|
23
23
|
/**
|
|
24
24
|
* @group Preview components
|
|
25
25
|
*/
|
|
26
|
-
export declare function Chip({ children, colorScheme, error, outlined, onClick, icon, size, className, style }: ChipProps):
|
|
26
|
+
export declare function Chip({ children, colorScheme, error, outlined, onClick, icon, size, className, style }: ChipProps): 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):
|
|
6
|
+
export declare function CircularProgress({ size, className }: CircularProgressProps): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
import { CircularProgressProps } from "./CircularProgress";
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
@@ -8,4 +9,4 @@ import { CircularProgressProps } from "./CircularProgress";
|
|
|
8
9
|
*/
|
|
9
10
|
export declare function CircularProgressCenter({ text, ...props }: CircularProgressProps & {
|
|
10
11
|
text?: string;
|
|
11
|
-
}):
|
|
12
|
+
}): 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;
|
|
@@ -26,7 +26,7 @@ export declare class ErrorBoundary extends React.Component<PropsWithChildren<Err
|
|
|
26
26
|
private handleReset;
|
|
27
27
|
private handleReload;
|
|
28
28
|
private toggleDetails;
|
|
29
|
-
render(): string | number | bigint | boolean | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> |
|
|
29
|
+
render(): string | number | bigint | boolean | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | React.JSX.Element | null | undefined;
|
|
30
30
|
private renderInline;
|
|
31
31
|
private renderFullPage;
|
|
32
32
|
}
|
|
@@ -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;
|
|
@@ -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 {};
|
|
@@ -21,4 +21,4 @@ export interface PopoverProps {
|
|
|
21
21
|
onMouseEnter?: React.MouseEventHandler<HTMLDivElement>;
|
|
22
22
|
onMouseLeave?: React.MouseEventHandler<HTMLDivElement>;
|
|
23
23
|
}
|
|
24
|
-
export declare function Popover({ trigger, children, open, onOpenChange, side, sideOffset, align, alignOffset, arrowPadding, sticky, hideWhenDetached, avoidCollisions, enabled, modal, portalContainer, className, onMouseEnter, onMouseLeave }: 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;
|
|
@@ -15,4 +15,4 @@ export type ResizablePanelsProps = {
|
|
|
15
15
|
className?: string;
|
|
16
16
|
stacked?: boolean;
|
|
17
17
|
};
|
|
18
|
-
export declare function ResizablePanels({ firstPanel, secondPanel, showFirstPanel, showSecondPanel, panelSizePercent, onPanelSizeChange, minPanelSizePx, orientation, animateLayout, className, stacked }: ResizablePanelsProps):
|
|
18
|
+
export declare function ResizablePanels({ firstPanel, secondPanel, showFirstPanel, showSecondPanel, panelSizePercent, onPanelSizeChange, minPanelSizePx, orientation, animateLayout, className, stacked }: ResizablePanelsProps): React.JSX.Element;
|
|
@@ -22,5 +22,5 @@ interface SearchBarProps {
|
|
|
22
22
|
*/
|
|
23
23
|
initialValue?: string;
|
|
24
24
|
}
|
|
25
|
-
export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, innerClassName, className, autoFocus, disabled, loading, inputRef, initialValue }: SearchBarProps):
|
|
25
|
+
export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, innerClassName, className, autoFocus, disabled, loading, inputRef, initialValue }: SearchBarProps): React.JSX.Element;
|
|
26
26
|
export {};
|
|
@@ -34,10 +34,10 @@ 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;
|
|
41
41
|
className?: string;
|
|
42
42
|
};
|
|
43
|
-
export declare const SelectGroup: React.
|
|
43
|
+
export declare const SelectGroup: React.MemoExoticComponent<({ label, children, className }: SelectGroupProps) => 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):
|
|
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>;
|
|
@@ -8,7 +8,7 @@ export type TabsProps = {
|
|
|
8
8
|
variant?: TabVariant;
|
|
9
9
|
onValueChange: (value: string) => void;
|
|
10
10
|
};
|
|
11
|
-
export declare function Tabs({ value, onValueChange, className, innerClassName, variant, children }: TabsProps):
|
|
11
|
+
export declare function Tabs({ value, onValueChange, className, innerClassName, variant, children }: TabsProps): React.JSX.Element;
|
|
12
12
|
export type TabProps = {
|
|
13
13
|
value: string;
|
|
14
14
|
className?: string;
|
|
@@ -16,4 +16,4 @@ export type TabProps = {
|
|
|
16
16
|
children: React.ReactNode;
|
|
17
17
|
disabled?: boolean;
|
|
18
18
|
};
|
|
19
|
-
export declare function Tab({ value, className, innerClassName, children, disabled }: TabProps):
|
|
19
|
+
export declare function Tab({ value, className, innerClassName, children, disabled }: TabProps): React.JSX.Element;
|
|
@@ -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;
|
|
@@ -16,4 +16,4 @@ export type TooltipProps = {
|
|
|
16
16
|
container?: HTMLElement;
|
|
17
17
|
style?: React.CSSProperties;
|
|
18
18
|
};
|
|
19
|
-
export declare const Tooltip: ({ open, defaultOpen, side, delayDuration, sideOffset, align, onOpenChange, title, tooltipClassName, tooltipStyle, children, asChild, container, className, style }: TooltipProps) =>
|
|
19
|
+
export declare const Tooltip: ({ open, defaultOpen, side, delayDuration, sideOffset, align, onOpenChange, title, tooltipClassName, tooltipStyle, children, asChild, container, className, style }: TooltipProps) => 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 {};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
import { VirtualTableContextProps } from "./types";
|
|
2
|
-
export declare const VirtualTableHeaderRow: ({ columns, currentSort, onColumnSort, onFilterUpdate, sortByProperty, filter, onColumnResize, onColumnResizeEnd, createFilterField, AddColumnComponent, onColumnsOrderChange, data, cellRenderer: CellRenderer, rowHeight, draggingColumnId, headerHeight }: VirtualTableContextProps<Record<string, unknown>>) =>
|
|
3
|
+
export declare const VirtualTableHeaderRow: ({ columns, currentSort, onColumnSort, onFilterUpdate, sortByProperty, filter, onColumnResize, onColumnResizeEnd, createFilterField, AddColumnComponent, onColumnsOrderChange, data, cellRenderer: CellRenderer, rowHeight, draggingColumnId, headerHeight }: VirtualTableContextProps<Record<string, unknown>>) => 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):
|
|
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 +1 @@
|
|
|
1
|
-
export declare function HandleIcon(): import("react
|
|
1
|
+
export declare function HandleIcon(): import("react").JSX.Element;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export * from "./GitHubIcon";
|
|
|
5
5
|
export * from "./HandleIcon";
|
|
6
6
|
export type { LucideProps, LucideIcon } from "lucide-react";
|
|
7
7
|
export { icons as lucideIcons } from "lucide-react";
|
|
8
|
-
export { AlertCircleIcon, AlertTriangleIcon, AlignLeftIcon, AppWindow, ArrowDownToLineIcon, ArrowLeftIcon, ArrowRightFromLineIcon, ArrowRightIcon, ArrowRightToLineIcon, ArrowUpToLineIcon, BoldIcon, BookOpenIcon, CalendarIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpDownIcon, CircleIcon, CircleUserIcon, CodeIcon, ColumnsIcon, CopyIcon, DatabaseIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileSearchIcon, FileTextIcon, FilterIcon, FilterXIcon, FlagIcon, FolderIcon, FolderPlusIcon, FolderUpIcon, FunctionSquareIcon, GitBranchIcon, GlobeIcon, HashIcon, Heading1Icon, Heading2Icon, Heading3Icon, HelpCircleIcon, HistoryIcon, HomeIcon, ImageIcon, ImageOffIcon, InfoIcon, ItalicIcon, KanbanIcon, KeyIcon, KeyRoundIcon, LanguagesIcon, LayoutGridIcon, LinkIcon, ListIcon, ListOrderedIcon, LoaderIcon, LogOutIcon, MailIcon, Maximize2Icon, MenuIcon, MinusCircleIcon, MinusIcon, MoonIcon, MoreVerticalIcon, Music2Icon, PanelLeftIcon, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, QuoteIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, Rows3Icon, SaveIcon, SearchIcon, SendIcon, SettingsIcon, ShieldIcon, ShoppingCartIcon, SlidersHorizontalIcon, SquareIcon, StarIcon, StrikethroughIcon, SunIcon, SunMoonIcon, TableIcon, TagIcon, TerminalIcon, TextIcon, Trash2Icon, TypeIcon, UnderlineIcon, UndoIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, VideoIcon, VoteIcon, Wand2Icon, XCircleIcon, XIcon
|
|
8
|
+
export { AlertCircleIcon, AlertTriangleIcon, AlignLeftIcon, AppWindow, ArrowDownToLineIcon, ArrowLeftIcon, ArrowRightFromLineIcon, ArrowRightIcon, ArrowRightToLineIcon, ArrowUpToLineIcon, BoldIcon, BookOpenIcon, CalendarIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpDownIcon, CircleIcon, CircleUserIcon, CodeIcon, ColumnsIcon, CopyIcon, DatabaseIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileSearchIcon, FileTextIcon, FilterIcon, FilterXIcon, FlagIcon, FolderIcon, FolderPlusIcon, FolderUpIcon, FunctionSquareIcon, GitBranchIcon, GlobeIcon, HashIcon, Heading1Icon, Heading2Icon, Heading3Icon, HelpCircleIcon, HistoryIcon, HomeIcon, ImageIcon, ImageOffIcon, InfoIcon, ItalicIcon, KanbanIcon, KeyIcon, KeyRoundIcon, LanguagesIcon, LayoutGridIcon, LinkIcon, ListIcon, ListOrderedIcon, LoaderIcon, LogOutIcon, MailIcon, Maximize2Icon, MenuIcon, MinusCircleIcon, MinusIcon, MoonIcon, MoreVerticalIcon, Music2Icon, PanelLeftIcon, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, QuoteIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, Rows3Icon, SaveIcon, SearchIcon, SendIcon, SettingsIcon, ShieldIcon, ShoppingCartIcon, SlidersHorizontalIcon, SquareIcon, StarIcon, StrikethroughIcon, SunIcon, SunMoonIcon, TableIcon, TagIcon, TerminalIcon, TextIcon, Trash2Icon, TypeIcon, UnderlineIcon, UndoIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, VideoIcon, VoteIcon, Wand2Icon, XCircleIcon, XIcon } from "lucide-react";
|