@reeverdev/ui 0.2.169 → 0.2.171
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.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -60,7 +60,7 @@ declare const TextBadge: React$1.ForwardRefExoticComponent<TextBadgeProps & Reac
|
|
|
60
60
|
declare const buttonVariants: (props?: ({
|
|
61
61
|
variant?: "solid" | "bordered" | "flat" | "light" | "ghost" | null | undefined;
|
|
62
62
|
color?: "default" | "success" | "warning" | "danger" | "info" | null | undefined;
|
|
63
|
-
size?: "sm" | "md" | "lg" |
|
|
63
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
64
64
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
65
65
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
66
66
|
interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color">, VariantProps<typeof buttonVariants> {
|
|
@@ -894,9 +894,10 @@ declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.
|
|
|
894
894
|
declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
895
895
|
type PaginationLinkProps = {
|
|
896
896
|
isActive?: boolean;
|
|
897
|
+
isIconOnly?: boolean;
|
|
897
898
|
} & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
|
|
898
899
|
declare const PaginationLink: {
|
|
899
|
-
({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
900
|
+
({ className, isActive, size, isIconOnly, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
900
901
|
displayName: string;
|
|
901
902
|
};
|
|
902
903
|
declare const PaginationPrevious: {
|
package/dist/index.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ declare const TextBadge: React$1.ForwardRefExoticComponent<TextBadgeProps & Reac
|
|
|
60
60
|
declare const buttonVariants: (props?: ({
|
|
61
61
|
variant?: "solid" | "bordered" | "flat" | "light" | "ghost" | null | undefined;
|
|
62
62
|
color?: "default" | "success" | "warning" | "danger" | "info" | null | undefined;
|
|
63
|
-
size?: "sm" | "md" | "lg" |
|
|
63
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
64
64
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
65
65
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
66
66
|
interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color">, VariantProps<typeof buttonVariants> {
|
|
@@ -894,9 +894,10 @@ declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.
|
|
|
894
894
|
declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
895
895
|
type PaginationLinkProps = {
|
|
896
896
|
isActive?: boolean;
|
|
897
|
+
isIconOnly?: boolean;
|
|
897
898
|
} & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
|
|
898
899
|
declare const PaginationLink: {
|
|
899
|
-
({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
900
|
+
({ className, isActive, size, isIconOnly, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
900
901
|
displayName: string;
|
|
901
902
|
};
|
|
902
903
|
declare const PaginationPrevious: {
|