@reeverdev/ui 0.2.96 → 0.2.98
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 +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -455,7 +455,7 @@ interface SheetOverlayProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
455
455
|
}
|
|
456
456
|
declare const SheetOverlay: React$1.ForwardRefExoticComponent<SheetOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
457
457
|
declare const sheetVariants: (props?: ({
|
|
458
|
-
side?: "left" | "right" | "
|
|
458
|
+
side?: "left" | "right" | "top" | "bottom" | null | undefined;
|
|
459
459
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
460
460
|
interface SheetContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof sheetVariants> {
|
|
461
461
|
hideCloseButton?: boolean;
|
|
@@ -910,8 +910,8 @@ declare const DataTable: <T>(props: DataTableProps<T> & {
|
|
|
910
910
|
}) => React$1.ReactElement;
|
|
911
911
|
|
|
912
912
|
declare const spinnerVariants: (props?: ({
|
|
913
|
-
size?: "sm" | "md" | "lg" |
|
|
914
|
-
color?: "default" | "success" | "warning" | "danger" | "
|
|
913
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
914
|
+
color?: "default" | "success" | "warning" | "danger" | "primary" | "muted" | "white" | null | undefined;
|
|
915
915
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
916
916
|
interface SpinnerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof spinnerVariants> {
|
|
917
917
|
/** Accessibility label for screen readers */
|
|
@@ -1441,7 +1441,7 @@ interface ListItemTextProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1441
1441
|
declare const ListItemText: React$1.ForwardRefExoticComponent<ListItemTextProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1442
1442
|
|
|
1443
1443
|
declare const timelineVariants: (props?: ({
|
|
1444
|
-
position?: "
|
|
1444
|
+
position?: "left" | "right" | "alternate" | null | undefined;
|
|
1445
1445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1446
1446
|
interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineVariants> {
|
|
1447
1447
|
}
|
|
@@ -3458,7 +3458,7 @@ interface InlineAlertProps extends React$1.HTMLAttributes<HTMLDivElement>, Varia
|
|
|
3458
3458
|
declare const InlineAlert: React$1.ForwardRefExoticComponent<InlineAlertProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3459
3459
|
|
|
3460
3460
|
declare const actionBarVariants: (props?: ({
|
|
3461
|
-
position?: "bottom-right" | "bottom-left" | "
|
|
3461
|
+
position?: "bottom-right" | "bottom-left" | "top" | "bottom" | null | undefined;
|
|
3462
3462
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3463
3463
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3464
3464
|
interface ActionBarProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof actionBarVariants> {
|
|
@@ -3730,7 +3730,7 @@ declare const BatteryMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps, "
|
|
|
3730
3730
|
|
|
3731
3731
|
declare const colorSwatchVariants: (props?: ({
|
|
3732
3732
|
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
3733
|
-
shape?: "
|
|
3733
|
+
shape?: "circle" | "square" | null | undefined;
|
|
3734
3734
|
interactive?: boolean | null | undefined;
|
|
3735
3735
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3736
3736
|
interface ColorSwatchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "onSelect">, VariantProps<typeof colorSwatchVariants> {
|
package/dist/index.d.ts
CHANGED
|
@@ -455,7 +455,7 @@ interface SheetOverlayProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
455
455
|
}
|
|
456
456
|
declare const SheetOverlay: React$1.ForwardRefExoticComponent<SheetOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
457
457
|
declare const sheetVariants: (props?: ({
|
|
458
|
-
side?: "left" | "right" | "
|
|
458
|
+
side?: "left" | "right" | "top" | "bottom" | null | undefined;
|
|
459
459
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
460
460
|
interface SheetContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof sheetVariants> {
|
|
461
461
|
hideCloseButton?: boolean;
|
|
@@ -910,8 +910,8 @@ declare const DataTable: <T>(props: DataTableProps<T> & {
|
|
|
910
910
|
}) => React$1.ReactElement;
|
|
911
911
|
|
|
912
912
|
declare const spinnerVariants: (props?: ({
|
|
913
|
-
size?: "sm" | "md" | "lg" |
|
|
914
|
-
color?: "default" | "success" | "warning" | "danger" | "
|
|
913
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
914
|
+
color?: "default" | "success" | "warning" | "danger" | "primary" | "muted" | "white" | null | undefined;
|
|
915
915
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
916
916
|
interface SpinnerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof spinnerVariants> {
|
|
917
917
|
/** Accessibility label for screen readers */
|
|
@@ -1441,7 +1441,7 @@ interface ListItemTextProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1441
1441
|
declare const ListItemText: React$1.ForwardRefExoticComponent<ListItemTextProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1442
1442
|
|
|
1443
1443
|
declare const timelineVariants: (props?: ({
|
|
1444
|
-
position?: "
|
|
1444
|
+
position?: "left" | "right" | "alternate" | null | undefined;
|
|
1445
1445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1446
1446
|
interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineVariants> {
|
|
1447
1447
|
}
|
|
@@ -3458,7 +3458,7 @@ interface InlineAlertProps extends React$1.HTMLAttributes<HTMLDivElement>, Varia
|
|
|
3458
3458
|
declare const InlineAlert: React$1.ForwardRefExoticComponent<InlineAlertProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3459
3459
|
|
|
3460
3460
|
declare const actionBarVariants: (props?: ({
|
|
3461
|
-
position?: "bottom-right" | "bottom-left" | "
|
|
3461
|
+
position?: "bottom-right" | "bottom-left" | "top" | "bottom" | null | undefined;
|
|
3462
3462
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3463
3463
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3464
3464
|
interface ActionBarProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof actionBarVariants> {
|
|
@@ -3730,7 +3730,7 @@ declare const BatteryMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps, "
|
|
|
3730
3730
|
|
|
3731
3731
|
declare const colorSwatchVariants: (props?: ({
|
|
3732
3732
|
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
3733
|
-
shape?: "
|
|
3733
|
+
shape?: "circle" | "square" | null | undefined;
|
|
3734
3734
|
interactive?: boolean | null | undefined;
|
|
3735
3735
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3736
3736
|
interface ColorSwatchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "onSelect">, VariantProps<typeof colorSwatchVariants> {
|