@tangle-network/sandbox-ui 0.3.12 → 0.4.0
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/README.md +7 -1
- package/dist/auth.js +2 -3
- package/dist/{chat-container-Dn1jWtWo.d.ts → chat-container-Cg-GwyiK.d.ts} +17 -3
- package/dist/chat.d.ts +1 -1
- package/dist/chat.js +1 -1
- package/dist/{chunk-QMKWQF6F.js → chunk-DQYODCBN.js} +102 -30
- package/dist/{chunk-6H3EFUUC.js → chunk-GVUW4VDD.js} +235 -110
- package/dist/chunk-HXEA7L2T.js +1401 -0
- package/dist/{chunk-IAIJUFM6.js → chunk-HYLTXGOI.js} +1 -1
- package/dist/{chunk-MCGKDCOR.js → chunk-IW2JZCOC.js} +55 -14
- package/dist/{chunk-DMYYQXPN.js → chunk-MVYFNPAH.js} +600 -460
- package/dist/{chunk-PCTEG6HR.js → chunk-OHMO7NUX.js} +2 -4
- package/dist/{chunk-CSIXZEKN.js → chunk-SSKVYXCR.js} +94 -1
- package/dist/dashboard.d.ts +1 -1
- package/dist/dashboard.js +40 -6
- package/dist/{document-editor-pane-AVKKXSLG.js → document-editor-pane-5TN2VWGZ.js} +1 -1
- package/dist/{document-editor-pane-Xnl8SmA7.d.ts → document-editor-pane-A70-EhdQ.d.ts} +1 -1
- package/dist/editor.d.ts +2 -2
- package/dist/editor.js +1 -1
- package/dist/files.d.ts +1 -1
- package/dist/files.js +1 -1
- package/dist/{index-BJIPTCKk.d.ts → index-tTfThG0n.d.ts} +131 -26
- package/dist/index.d.ts +6 -4
- package/dist/index.js +76 -16
- package/dist/primitives.d.ts +20 -1
- package/dist/primitives.js +7 -7
- package/dist/workspace.d.ts +8 -2
- package/dist/workspace.js +3 -3
- package/package.json +1 -1
- package/dist/chunk-4HT5J6CE.js +0 -11001
- package/dist/chunk-B26TQ7SA.js +0 -47
package/dist/chunk-B26TQ7SA.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
cn
|
|
3
|
-
} from "./chunk-RQHJBTEU.js";
|
|
4
|
-
|
|
5
|
-
// src/primitives/avatar.tsx
|
|
6
|
-
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
7
|
-
import * as React from "react";
|
|
8
|
-
import { jsx } from "react/jsx-runtime";
|
|
9
|
-
var Avatar = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
10
|
-
AvatarPrimitive.Root,
|
|
11
|
-
{
|
|
12
|
-
ref,
|
|
13
|
-
className: cn(
|
|
14
|
-
"relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
|
|
15
|
-
className
|
|
16
|
-
),
|
|
17
|
-
...props
|
|
18
|
-
}
|
|
19
|
-
));
|
|
20
|
-
Avatar.displayName = AvatarPrimitive.Root.displayName;
|
|
21
|
-
var AvatarImage = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
22
|
-
AvatarPrimitive.Image,
|
|
23
|
-
{
|
|
24
|
-
ref,
|
|
25
|
-
className: cn("aspect-square h-full w-full", className),
|
|
26
|
-
...props
|
|
27
|
-
}
|
|
28
|
-
));
|
|
29
|
-
AvatarImage.displayName = AvatarPrimitive.Image.displayName;
|
|
30
|
-
var AvatarFallback = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
31
|
-
AvatarPrimitive.Fallback,
|
|
32
|
-
{
|
|
33
|
-
ref,
|
|
34
|
-
className: cn(
|
|
35
|
-
"flex h-full w-full items-center justify-center rounded-full bg-muted font-medium text-sm",
|
|
36
|
-
className
|
|
37
|
-
),
|
|
38
|
-
...props
|
|
39
|
-
}
|
|
40
|
-
));
|
|
41
|
-
AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName;
|
|
42
|
-
|
|
43
|
-
export {
|
|
44
|
-
Avatar,
|
|
45
|
-
AvatarImage,
|
|
46
|
-
AvatarFallback
|
|
47
|
-
};
|