@reeverdev/ui 0.1.13 → 0.1.15

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
@@ -123,7 +123,7 @@ interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaEleme
123
123
  declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
124
124
 
125
125
  declare const skeletonVariants: (props?: ({
126
- variant?: "pulse" | "wave" | "shimmer" | "static" | null | undefined;
126
+ variant?: "static" | "pulse" | "wave" | "shimmer" | null | undefined;
127
127
  } & class_variance_authority_types.ClassProp) | undefined) => string;
128
128
  interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof skeletonVariants> {
129
129
  }
@@ -196,7 +196,7 @@ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dial
196
196
  declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
197
197
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
198
198
  declare const sheetVariants: (props?: ({
199
- side?: "top" | "right" | "bottom" | "left" | null | undefined;
199
+ side?: "left" | "right" | "bottom" | "top" | null | undefined;
200
200
  } & class_variance_authority_types.ClassProp) | undefined) => string;
201
201
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
202
202
  }
@@ -986,7 +986,7 @@ interface ListItemTextProps extends React$1.HTMLAttributes<HTMLDivElement> {
986
986
  declare const ListItemText: React$1.ForwardRefExoticComponent<ListItemTextProps & React$1.RefAttributes<HTMLDivElement>>;
987
987
 
988
988
  declare const timelineVariants: (props?: ({
989
- position?: "right" | "left" | "alternate" | null | undefined;
989
+ position?: "alternate" | "left" | "right" | null | undefined;
990
990
  } & class_variance_authority_types.ClassProp) | undefined) => string;
991
991
  interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineVariants> {
992
992
  }
@@ -1032,7 +1032,7 @@ interface SegmentedControlItemProps extends React$1.ComponentPropsWithoutRef<typ
1032
1032
  declare const SegmentedControlItem: React$1.ForwardRefExoticComponent<SegmentedControlItemProps & React$1.RefAttributes<HTMLButtonElement>>;
1033
1033
 
1034
1034
  declare const fileUploadVariants: (props?: ({
1035
- variant?: "default" | "error" | "active" | null | undefined;
1035
+ variant?: "default" | "active" | "error" | null | undefined;
1036
1036
  size?: "sm" | "md" | "lg" | null | undefined;
1037
1037
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1038
1038
  interface UploadedFile {
@@ -1792,7 +1792,7 @@ interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "c
1792
1792
  declare const NProgress: React$1.ForwardRefExoticComponent<NProgressProps & React$1.RefAttributes<HTMLDivElement>>;
1793
1793
 
1794
1794
  declare const loadingVariants: (props?: ({
1795
- variant?: "pulse" | "spinner" | "dots" | "skeleton" | null | undefined;
1795
+ variant?: "spinner" | "pulse" | "dots" | "skeleton" | null | undefined;
1796
1796
  size?: "sm" | "md" | "lg" | null | undefined;
1797
1797
  fullScreen?: boolean | null | undefined;
1798
1798
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2812,7 +2812,7 @@ interface InlineAlertProps extends React$1.HTMLAttributes<HTMLDivElement>, Varia
2812
2812
  declare const InlineAlert: React$1.ForwardRefExoticComponent<InlineAlertProps & React$1.RefAttributes<HTMLDivElement>>;
2813
2813
 
2814
2814
  declare const actionBarVariants: (props?: ({
2815
- position?: "top" | "bottom" | "bottom-right" | "bottom-left" | null | undefined;
2815
+ position?: "bottom" | "top" | "bottom-right" | "bottom-left" | null | undefined;
2816
2816
  size?: "sm" | "md" | "lg" | null | undefined;
2817
2817
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2818
2818
  interface ActionBarProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof actionBarVariants> {
@@ -3086,7 +3086,7 @@ declare const BatteryMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps, "
3086
3086
 
3087
3087
  declare const colorSwatchVariants: (props?: ({
3088
3088
  size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
3089
- shape?: "circle" | "square" | null | undefined;
3089
+ shape?: "square" | "circle" | null | undefined;
3090
3090
  interactive?: boolean | null | undefined;
3091
3091
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3092
3092
  interface ColorSwatchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "onSelect">, VariantProps<typeof colorSwatchVariants> {
@@ -3215,9 +3215,9 @@ declare const ColorWheel: React$1.ForwardRefExoticComponent<ColorWheelProps & Re
3215
3215
 
3216
3216
  declare const flexVariants: (props?: ({
3217
3217
  direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
3218
- align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
3219
- justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | null | undefined;
3220
- wrap?: "wrap" | "nowrap" | "wrap-reverse" | null | undefined;
3218
+ align?: "stretch" | "center" | "end" | "start" | "baseline" | null | undefined;
3219
+ justify?: "center" | "end" | "start" | "between" | "around" | "evenly" | null | undefined;
3220
+ wrap?: "nowrap" | "wrap" | "wrap-reverse" | null | undefined;
3221
3221
  gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3222
3222
  inline?: boolean | null | undefined;
3223
3223
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -3228,7 +3228,7 @@ interface FlexProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
3228
3228
  declare const Flex: React$1.ForwardRefExoticComponent<FlexProps & React$1.RefAttributes<HTMLDivElement>>;
3229
3229
  declare const HStack: React$1.ForwardRefExoticComponent<Omit<FlexProps, "direction"> & React$1.RefAttributes<HTMLDivElement>>;
3230
3230
  declare const VStack: React$1.ForwardRefExoticComponent<Omit<FlexProps, "direction"> & React$1.RefAttributes<HTMLDivElement>>;
3231
- declare const Center: React$1.ForwardRefExoticComponent<Omit<FlexProps, "align" | "justify"> & React$1.RefAttributes<HTMLDivElement>>;
3231
+ declare const Center: React$1.ForwardRefExoticComponent<Omit<FlexProps, "justify" | "align"> & React$1.RefAttributes<HTMLDivElement>>;
3232
3232
 
3233
3233
  declare const gridVariants: (props?: ({
3234
3234
  columns?: 1 | "none" | "auto" | 2 | 4 | 3 | 5 | 6 | 7 | 10 | 12 | 8 | 9 | 11 | null | undefined;
@@ -3236,10 +3236,10 @@ declare const gridVariants: (props?: ({
3236
3236
  gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3237
3237
  gapX?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3238
3238
  gapY?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3239
- flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
3240
- align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
3241
- justify?: "end" | "center" | "start" | "stretch" | null | undefined;
3242
- placeItems?: "end" | "center" | "start" | "stretch" | null | undefined;
3239
+ flow?: "row" | "dense" | "col" | "row-dense" | "col-dense" | null | undefined;
3240
+ align?: "stretch" | "center" | "end" | "start" | "baseline" | null | undefined;
3241
+ justify?: "stretch" | "center" | "end" | "start" | null | undefined;
3242
+ placeItems?: "stretch" | "center" | "end" | "start" | null | undefined;
3243
3243
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3244
3244
  interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
3245
3245
  /** Element to render as */
@@ -3284,7 +3284,7 @@ declare const Well: React$1.ForwardRefExoticComponent<WellProps & React$1.RefAtt
3284
3284
  declare const labeledValueVariants: (props?: ({
3285
3285
  orientation?: "horizontal" | "vertical" | null | undefined;
3286
3286
  size?: "sm" | "md" | "lg" | null | undefined;
3287
- align?: "end" | "center" | "start" | null | undefined;
3287
+ align?: "center" | "end" | "start" | null | undefined;
3288
3288
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3289
3289
  interface LabeledValueProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof labeledValueVariants> {
3290
3290
  /** Label text */
package/dist/index.d.ts CHANGED
@@ -123,7 +123,7 @@ interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaEleme
123
123
  declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
124
124
 
125
125
  declare const skeletonVariants: (props?: ({
126
- variant?: "pulse" | "wave" | "shimmer" | "static" | null | undefined;
126
+ variant?: "static" | "pulse" | "wave" | "shimmer" | null | undefined;
127
127
  } & class_variance_authority_types.ClassProp) | undefined) => string;
128
128
  interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof skeletonVariants> {
129
129
  }
@@ -196,7 +196,7 @@ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dial
196
196
  declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
197
197
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
198
198
  declare const sheetVariants: (props?: ({
199
- side?: "top" | "right" | "bottom" | "left" | null | undefined;
199
+ side?: "left" | "right" | "bottom" | "top" | null | undefined;
200
200
  } & class_variance_authority_types.ClassProp) | undefined) => string;
201
201
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
202
202
  }
@@ -986,7 +986,7 @@ interface ListItemTextProps extends React$1.HTMLAttributes<HTMLDivElement> {
986
986
  declare const ListItemText: React$1.ForwardRefExoticComponent<ListItemTextProps & React$1.RefAttributes<HTMLDivElement>>;
987
987
 
988
988
  declare const timelineVariants: (props?: ({
989
- position?: "right" | "left" | "alternate" | null | undefined;
989
+ position?: "alternate" | "left" | "right" | null | undefined;
990
990
  } & class_variance_authority_types.ClassProp) | undefined) => string;
991
991
  interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineVariants> {
992
992
  }
@@ -1032,7 +1032,7 @@ interface SegmentedControlItemProps extends React$1.ComponentPropsWithoutRef<typ
1032
1032
  declare const SegmentedControlItem: React$1.ForwardRefExoticComponent<SegmentedControlItemProps & React$1.RefAttributes<HTMLButtonElement>>;
1033
1033
 
1034
1034
  declare const fileUploadVariants: (props?: ({
1035
- variant?: "default" | "error" | "active" | null | undefined;
1035
+ variant?: "default" | "active" | "error" | null | undefined;
1036
1036
  size?: "sm" | "md" | "lg" | null | undefined;
1037
1037
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1038
1038
  interface UploadedFile {
@@ -1792,7 +1792,7 @@ interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "c
1792
1792
  declare const NProgress: React$1.ForwardRefExoticComponent<NProgressProps & React$1.RefAttributes<HTMLDivElement>>;
1793
1793
 
1794
1794
  declare const loadingVariants: (props?: ({
1795
- variant?: "pulse" | "spinner" | "dots" | "skeleton" | null | undefined;
1795
+ variant?: "spinner" | "pulse" | "dots" | "skeleton" | null | undefined;
1796
1796
  size?: "sm" | "md" | "lg" | null | undefined;
1797
1797
  fullScreen?: boolean | null | undefined;
1798
1798
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2812,7 +2812,7 @@ interface InlineAlertProps extends React$1.HTMLAttributes<HTMLDivElement>, Varia
2812
2812
  declare const InlineAlert: React$1.ForwardRefExoticComponent<InlineAlertProps & React$1.RefAttributes<HTMLDivElement>>;
2813
2813
 
2814
2814
  declare const actionBarVariants: (props?: ({
2815
- position?: "top" | "bottom" | "bottom-right" | "bottom-left" | null | undefined;
2815
+ position?: "bottom" | "top" | "bottom-right" | "bottom-left" | null | undefined;
2816
2816
  size?: "sm" | "md" | "lg" | null | undefined;
2817
2817
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2818
2818
  interface ActionBarProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof actionBarVariants> {
@@ -3086,7 +3086,7 @@ declare const BatteryMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps, "
3086
3086
 
3087
3087
  declare const colorSwatchVariants: (props?: ({
3088
3088
  size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
3089
- shape?: "circle" | "square" | null | undefined;
3089
+ shape?: "square" | "circle" | null | undefined;
3090
3090
  interactive?: boolean | null | undefined;
3091
3091
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3092
3092
  interface ColorSwatchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "onSelect">, VariantProps<typeof colorSwatchVariants> {
@@ -3215,9 +3215,9 @@ declare const ColorWheel: React$1.ForwardRefExoticComponent<ColorWheelProps & Re
3215
3215
 
3216
3216
  declare const flexVariants: (props?: ({
3217
3217
  direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
3218
- align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
3219
- justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | null | undefined;
3220
- wrap?: "wrap" | "nowrap" | "wrap-reverse" | null | undefined;
3218
+ align?: "stretch" | "center" | "end" | "start" | "baseline" | null | undefined;
3219
+ justify?: "center" | "end" | "start" | "between" | "around" | "evenly" | null | undefined;
3220
+ wrap?: "nowrap" | "wrap" | "wrap-reverse" | null | undefined;
3221
3221
  gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3222
3222
  inline?: boolean | null | undefined;
3223
3223
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -3228,7 +3228,7 @@ interface FlexProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
3228
3228
  declare const Flex: React$1.ForwardRefExoticComponent<FlexProps & React$1.RefAttributes<HTMLDivElement>>;
3229
3229
  declare const HStack: React$1.ForwardRefExoticComponent<Omit<FlexProps, "direction"> & React$1.RefAttributes<HTMLDivElement>>;
3230
3230
  declare const VStack: React$1.ForwardRefExoticComponent<Omit<FlexProps, "direction"> & React$1.RefAttributes<HTMLDivElement>>;
3231
- declare const Center: React$1.ForwardRefExoticComponent<Omit<FlexProps, "align" | "justify"> & React$1.RefAttributes<HTMLDivElement>>;
3231
+ declare const Center: React$1.ForwardRefExoticComponent<Omit<FlexProps, "justify" | "align"> & React$1.RefAttributes<HTMLDivElement>>;
3232
3232
 
3233
3233
  declare const gridVariants: (props?: ({
3234
3234
  columns?: 1 | "none" | "auto" | 2 | 4 | 3 | 5 | 6 | 7 | 10 | 12 | 8 | 9 | 11 | null | undefined;
@@ -3236,10 +3236,10 @@ declare const gridVariants: (props?: ({
3236
3236
  gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3237
3237
  gapX?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3238
3238
  gapY?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
3239
- flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
3240
- align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
3241
- justify?: "end" | "center" | "start" | "stretch" | null | undefined;
3242
- placeItems?: "end" | "center" | "start" | "stretch" | null | undefined;
3239
+ flow?: "row" | "dense" | "col" | "row-dense" | "col-dense" | null | undefined;
3240
+ align?: "stretch" | "center" | "end" | "start" | "baseline" | null | undefined;
3241
+ justify?: "stretch" | "center" | "end" | "start" | null | undefined;
3242
+ placeItems?: "stretch" | "center" | "end" | "start" | null | undefined;
3243
3243
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3244
3244
  interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
3245
3245
  /** Element to render as */
@@ -3284,7 +3284,7 @@ declare const Well: React$1.ForwardRefExoticComponent<WellProps & React$1.RefAtt
3284
3284
  declare const labeledValueVariants: (props?: ({
3285
3285
  orientation?: "horizontal" | "vertical" | null | undefined;
3286
3286
  size?: "sm" | "md" | "lg" | null | undefined;
3287
- align?: "end" | "center" | "start" | null | undefined;
3287
+ align?: "center" | "end" | "start" | null | undefined;
3288
3288
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3289
3289
  interface LabeledValueProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof labeledValueVariants> {
3290
3290
  /** Label text */