@hexclave/dashboard-ui-components 1.0.54 → 1.0.55
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.
|
@@ -3,8 +3,8 @@ import { VariantProps } from "class-variance-authority";
|
|
|
3
3
|
|
|
4
4
|
//#region src/components/button.d.ts
|
|
5
5
|
declare const designButtonVariants: (props?: ({
|
|
6
|
-
variant?: "
|
|
7
|
-
size?: "
|
|
6
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "plain" | null | undefined;
|
|
7
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
8
8
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
9
9
|
type DesignOriginalButtonProps = {
|
|
10
10
|
asChild?: boolean;
|
|
@@ -35,8 +35,8 @@ declare const DesignButton: React.FC<{
|
|
|
35
35
|
} & {
|
|
36
36
|
asChild?: boolean;
|
|
37
37
|
} & React.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<(props?: ({
|
|
38
|
-
variant?: "
|
|
39
|
-
size?: "
|
|
38
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "plain" | null | undefined;
|
|
39
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
40
40
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
|
|
41
41
|
ref?: React.Ref<HTMLButtonElement> | undefined;
|
|
42
42
|
}>;
|
|
@@ -4543,6 +4543,14 @@ This is likely an error in Hexclave. Please make sure you are running the newest
|
|
|
4543
4543
|
return getEnvVarWithHexclaveFallback(name);
|
|
4544
4544
|
}
|
|
4545
4545
|
|
|
4546
|
+
// ../shared/dist/esm/utils/bytes.js
|
|
4547
|
+
function decodeBase64(input) {
|
|
4548
|
+
return new Uint8Array(atob(input).split("").map((char) => char.charCodeAt(0)));
|
|
4549
|
+
}
|
|
4550
|
+
function isBase64(input) {
|
|
4551
|
+
return /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(input);
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4546
4554
|
// ../shared/dist/esm/utils/results.js
|
|
4547
4555
|
var Result = {
|
|
4548
4556
|
fromThrowing,
|
|
@@ -4665,14 +4673,6 @@ This is likely an error in Hexclave. Please make sure you are running the newest
|
|
|
4665
4673
|
return Object.assign(Result.error(new RetryError(errors)), { attempts: totalAttempts });
|
|
4666
4674
|
}
|
|
4667
4675
|
|
|
4668
|
-
// ../shared/dist/esm/utils/bytes.js
|
|
4669
|
-
function decodeBase64(input) {
|
|
4670
|
-
return new Uint8Array(atob(input).split("").map((char) => char.charCodeAt(0)));
|
|
4671
|
-
}
|
|
4672
|
-
function isBase64(input) {
|
|
4673
|
-
return /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(input);
|
|
4674
|
-
}
|
|
4675
|
-
|
|
4676
4676
|
// ../shared/dist/esm/utils/urls.js
|
|
4677
4677
|
function createUrlIfValid(...args) {
|
|
4678
4678
|
try {
|