@stackframe/dashboard-ui-components 2.8.79 → 2.8.80
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.
|
@@ -4,8 +4,8 @@ import React from "react";
|
|
|
4
4
|
|
|
5
5
|
//#region src/components/button.d.ts
|
|
6
6
|
declare const designButtonVariants: (props?: ({
|
|
7
|
-
variant?: "
|
|
8
|
-
size?: "
|
|
7
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "plain" | null | undefined;
|
|
8
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
type DesignOriginalButtonProps = {
|
|
11
11
|
asChild?: boolean;
|
|
@@ -22,8 +22,8 @@ declare const DesignButton: React.FC<{
|
|
|
22
22
|
} & {
|
|
23
23
|
asChild?: boolean;
|
|
24
24
|
} & React.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<(props?: ({
|
|
25
|
-
variant?: "
|
|
26
|
-
size?: "
|
|
25
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "plain" | null | undefined;
|
|
26
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
27
27
|
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
28
28
|
ref?: React.Ref<HTMLButtonElement> | undefined;
|
|
29
29
|
}>;
|
|
@@ -7770,6 +7770,7 @@ attempted value: ${formattedValue}
|
|
|
7770
7770
|
email: yupString().defined().nullable(),
|
|
7771
7771
|
email_verified: yupBoolean().defined(),
|
|
7772
7772
|
selected_team_id: yupString().defined().nullable(),
|
|
7773
|
+
signed_up_at: yupNumber().defined(),
|
|
7773
7774
|
is_anonymous: yupBoolean().defined(),
|
|
7774
7775
|
is_restricted: yupBoolean().defined(),
|
|
7775
7776
|
restricted_reason: restrictedReasonSchema.defined().nullable(),
|