@sciol/xyzen 0.3.6 → 0.3.8
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/dist/app/AppFullscreen.d.ts +1 -1
- package/dist/app/explore/AgentExploreContent.d.ts +3 -0
- package/dist/app/explore/AgentExploreTab.d.ts +2 -0
- package/dist/app/explore/McpExploreContent.d.ts +3 -0
- package/dist/app/explore/McpExploreTab.d.ts +2 -0
- package/dist/components/animate-ui/components/buttons/button.d.ts +1 -1
- package/dist/components/animate-ui/components/buttons/github-stars.d.ts +10 -0
- package/dist/components/animate-ui/components/headless/checkbox.d.ts +11 -0
- package/dist/components/animate-ui/components/radix/dropdown-menu.d.ts +37 -0
- package/dist/components/animate-ui/components/radix/tooltip.d.ts +10 -0
- package/dist/components/animate-ui/primitives/animate/github-stars.d.ts +40 -0
- package/dist/components/animate-ui/primitives/effects/highlight.d.ts +1 -1
- package/dist/components/animate-ui/primitives/effects/particles.d.ts +25 -0
- package/dist/components/animate-ui/primitives/headless/checkbox.d.ts +16 -0
- package/dist/components/animate-ui/primitives/radix/dropdown-menu.d.ts +57 -0
- package/dist/components/animate-ui/primitives/radix/tooltip.d.ts +21 -0
- package/dist/components/animate-ui/primitives/texts/sliding-number.d.ts +16 -0
- package/dist/components/base/Badge.d.ts +1 -1
- package/dist/components/features/ExploreMcpCard.d.ts +6 -0
- package/dist/components/features/ExploreMcpListItem.d.ts +6 -0
- package/dist/components/layouts/XyzenAgent.d.ts +3 -1
- package/dist/components/ui/3d-card.d.ts +23 -0
- package/dist/components/ui/3d-pin.d.ts +12 -0
- package/dist/components/ui/background-boxes.d.ts +7 -0
- package/dist/components/ui/background-gradient-animation.d.ts +16 -0
- package/dist/components/ui/bento-grid.d.ts +11 -0
- package/dist/components/ui/button.d.ts +10 -0
- package/dist/components/ui/layout-text-flip.d.ts +5 -0
- package/dist/components/ui/pagination.d.ts +13 -0
- package/dist/components/ui/shooting-stars.d.ts +14 -0
- package/dist/components/ui/spotlight-new.d.ts +13 -0
- package/dist/hooks/use-data-state.d.ts +4 -0
- package/dist/hooks/use-is-in-view.d.ts +12 -0
- package/dist/lib/animations.d.ts +48 -0
- package/dist/marketplace/components/McpActivationProgress.d.ts +10 -0
- package/dist/marketplace/components/McpServerCard.d.ts +9 -0
- package/dist/marketplace/components/McpServerDetail.d.ts +7 -0
- package/dist/marketplace/components/UnifiedMcpMarketList.d.ts +8 -0
- package/dist/marketplace/hooks/useBohriumMcp.d.ts +61 -0
- package/dist/marketplace/index.d.ts +12 -0
- package/dist/marketplace/services/bohriumService.d.ts +34 -0
- package/dist/marketplace/types/bohrium.d.ts +129 -0
- package/dist/marketplace/utils/starredApps.d.ts +37 -0
- package/dist/service/mcpService.d.ts +2 -2
- package/dist/store/slices/agentSlice.d.ts +9 -0
- package/dist/store/slices/mcpSlice.d.ts +3 -3
- package/dist/types/mcp.d.ts +42 -2
- package/dist/utils/mcpConverters.d.ts +32 -0
- package/dist/xyzen.css +1 -1
- package/dist/xyzen.es.js +36809 -29620
- package/dist/xyzen.umd.js +179 -94
- package/package.json +17 -3
- /package/dist/{components/layouts/Explorer.d.ts → app/explore/page.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sciol/xyzen",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"packageManager": "yarn@4.9.2",
|
|
5
|
-
"version": "0.3.
|
|
5
|
+
"version": "0.3.8",
|
|
6
6
|
"description": "A modern, lightweight, and extensible chat component for React.",
|
|
7
7
|
"author": "Haohui <harveyque@outlook.com>",
|
|
8
8
|
"license": "GPL-3.0-only",
|
|
@@ -33,6 +33,16 @@
|
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
38
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
39
|
+
"vite": "^5.2.0 || ^6.0.0 || ^7.0.0"
|
|
40
|
+
},
|
|
41
|
+
"peerDependenciesMeta": {
|
|
42
|
+
"vite": {
|
|
43
|
+
"optional": true
|
|
44
|
+
}
|
|
45
|
+
},
|
|
36
46
|
"scripts": {
|
|
37
47
|
"dev": "vite --host 0.0.0.0 --port 32233 --strictPort",
|
|
38
48
|
"build": "rimraf site && tsc -b && vite build",
|
|
@@ -52,6 +62,8 @@
|
|
|
52
62
|
"@emotion/is-prop-valid": "^1.3.1",
|
|
53
63
|
"@headlessui/react": "^2.2.9",
|
|
54
64
|
"@heroicons/react": "^2.2.0",
|
|
65
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
66
|
+
"@tabler/icons-react": "^3.35.0",
|
|
55
67
|
"@tailwindcss/vite": "^4.1.11",
|
|
56
68
|
"@tanstack/react-query": "^5.83.0",
|
|
57
69
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
@@ -65,12 +77,12 @@
|
|
|
65
77
|
"immer": "^10.1.1",
|
|
66
78
|
"katex": "^0.16.22",
|
|
67
79
|
"lucide-react": "^0.552.0",
|
|
80
|
+
"mini-svg-data-uri": "^1.4.4",
|
|
68
81
|
"motion": "^12.23.24",
|
|
69
82
|
"radix-ui": "^1.4.3",
|
|
70
|
-
"react": "^19.1.0",
|
|
71
|
-
"react-dom": "^19.1.0",
|
|
72
83
|
"react-markdown": "^10.1.0",
|
|
73
84
|
"react-syntax-highlighter": "^15.6.1",
|
|
85
|
+
"react-use-measure": "^2.1.7",
|
|
74
86
|
"react-use-websocket": "^4.13.0",
|
|
75
87
|
"rehype-highlight": "^7.0.2",
|
|
76
88
|
"rehype-katex": "^7.0.1",
|
|
@@ -96,6 +108,8 @@
|
|
|
96
108
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
97
109
|
"globals": "^16.3.0",
|
|
98
110
|
"prettier": "^3.6.2",
|
|
111
|
+
"react": "^19.1.0",
|
|
112
|
+
"react-dom": "^19.1.0",
|
|
99
113
|
"rimraf": "^6.0.1",
|
|
100
114
|
"tw-animate-css": "^1.4.0",
|
|
101
115
|
"typescript": "~5.8.3",
|
|
File without changes
|