@blade-hq/agent-kit 0.5.22 → 0.5.23

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.
@@ -0,0 +1,37 @@
1
+ // src/react/components/ui/collapsible.tsx
2
+ import { Collapsible as CollapsiblePrimitive } from "radix-ui";
3
+ import { jsx } from "react/jsx-runtime";
4
+ function Collapsible({
5
+ ...props
6
+ }) {
7
+ return /* @__PURE__ */ jsx(CollapsiblePrimitive.Root, { "data-slot": "collapsible", ...props });
8
+ }
9
+ function CollapsibleTrigger({
10
+ ...props
11
+ }) {
12
+ return /* @__PURE__ */ jsx(
13
+ CollapsiblePrimitive.CollapsibleTrigger,
14
+ {
15
+ "data-slot": "collapsible-trigger",
16
+ ...props
17
+ }
18
+ );
19
+ }
20
+ function CollapsibleContent({
21
+ ...props
22
+ }) {
23
+ return /* @__PURE__ */ jsx(
24
+ CollapsiblePrimitive.CollapsibleContent,
25
+ {
26
+ "data-slot": "collapsible-content",
27
+ ...props
28
+ }
29
+ );
30
+ }
31
+
32
+ export {
33
+ Collapsible,
34
+ CollapsibleTrigger,
35
+ CollapsibleContent
36
+ };
37
+ //# sourceMappingURL=chunk-H62LH2AG.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/react/components/ui/collapsible.tsx"],"sourcesContent":["import { Collapsible as CollapsiblePrimitive } from \"radix-ui\"\n\nfunction Collapsible({\n ...props\n}: React.ComponentProps<typeof CollapsiblePrimitive.Root>) {\n return <CollapsiblePrimitive.Root data-slot=\"collapsible\" {...props} />\n}\n\nfunction CollapsibleTrigger({\n ...props\n}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>) {\n return (\n <CollapsiblePrimitive.CollapsibleTrigger\n data-slot=\"collapsible-trigger\"\n {...props}\n />\n )\n}\n\nfunction CollapsibleContent({\n ...props\n}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>) {\n return (\n <CollapsiblePrimitive.CollapsibleContent\n data-slot=\"collapsible-content\"\n {...props}\n />\n )\n}\n\nexport { Collapsible, CollapsibleTrigger, CollapsibleContent }\n"],"mappings":";AAAA,SAAS,eAAe,4BAA4B;AAK3C;AAHT,SAAS,YAAY;AAAA,EACnB,GAAG;AACL,GAA2D;AACzD,SAAO,oBAAC,qBAAqB,MAArB,EAA0B,aAAU,eAAe,GAAG,OAAO;AACvE;AAEA,SAAS,mBAAmB;AAAA,EAC1B,GAAG;AACL,GAAyE;AACvE,SACE;AAAA,IAAC,qBAAqB;AAAA,IAArB;AAAA,MACC,aAAU;AAAA,MACT,GAAG;AAAA;AAAA,EACN;AAEJ;AAEA,SAAS,mBAAmB;AAAA,EAC1B,GAAG;AACL,GAAyE;AACvE,SACE;AAAA,IAAC,qBAAqB;AAAA,IAArB;AAAA,MACC,aAAU;AAAA,MACT,GAAG;AAAA;AAAA,EACN;AAEJ;","names":[]}