@hexclave/dashboard-ui-components 1.0.55 → 1.0.57
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?: "link" | "plain" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
7
|
+
size?: "icon" | "sm" | "lg" | "default" | 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?: "link" | "plain" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
39
|
+
size?: "icon" | "sm" | "lg" | "default" | null | undefined;
|
|
40
40
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
|
|
41
41
|
ref?: React.Ref<HTMLButtonElement> | undefined;
|
|
42
42
|
}>;
|
|
@@ -4543,14 +4543,6 @@ 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
|
-
|
|
4554
4546
|
// ../shared/dist/esm/utils/results.js
|
|
4555
4547
|
var Result = {
|
|
4556
4548
|
fromThrowing,
|
|
@@ -4673,6 +4665,14 @@ This is likely an error in Hexclave. Please make sure you are running the newest
|
|
|
4673
4665
|
return Object.assign(Result.error(new RetryError(errors)), { attempts: totalAttempts });
|
|
4674
4666
|
}
|
|
4675
4667
|
|
|
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 {
|