@reeverdev/ui 0.2.216 → 0.2.217

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
@@ -911,7 +911,8 @@ declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.Det
911
911
  type PaginationLinkProps = {
912
912
  isActive?: boolean;
913
913
  isIconOnly?: boolean;
914
- } & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
914
+ size?: "sm" | "md" | "lg";
915
+ } & React$1.ComponentProps<"a">;
915
916
  declare const PaginationLink: {
916
917
  ({ className, isActive, size, isIconOnly, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
917
918
  displayName: string;
@@ -924,8 +925,11 @@ declare const PaginationNext: {
924
925
  ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
925
926
  displayName: string;
926
927
  };
928
+ type PaginationEllipsisProps = {
929
+ size?: "sm" | "md" | "lg";
930
+ } & React$1.ComponentProps<"span">;
927
931
  declare const PaginationEllipsis: {
928
- ({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
932
+ ({ className, size, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
929
933
  displayName: string;
930
934
  };
931
935
 
package/dist/index.d.ts CHANGED
@@ -911,7 +911,8 @@ declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.Det
911
911
  type PaginationLinkProps = {
912
912
  isActive?: boolean;
913
913
  isIconOnly?: boolean;
914
- } & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
914
+ size?: "sm" | "md" | "lg";
915
+ } & React$1.ComponentProps<"a">;
915
916
  declare const PaginationLink: {
916
917
  ({ className, isActive, size, isIconOnly, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
917
918
  displayName: string;
@@ -924,8 +925,11 @@ declare const PaginationNext: {
924
925
  ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
925
926
  displayName: string;
926
927
  };
928
+ type PaginationEllipsisProps = {
929
+ size?: "sm" | "md" | "lg";
930
+ } & React$1.ComponentProps<"span">;
927
931
  declare const PaginationEllipsis: {
928
- ({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
932
+ ({ className, size, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
929
933
  displayName: string;
930
934
  };
931
935