@hanzo/ui 5.5.1 → 5.6.1
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/bin/create-registry.js +0 -0
- package/bin/npx-registry-mcp.js +0 -0
- package/bin/registry-mcp-wrapper.sh +0 -0
- package/bin/registry-mcp.js +0 -0
- package/bin/start-mcp-server.sh +0 -0
- package/bin/test-mcp.sh +0 -0
- package/dist/auth/index.js +3 -0
- package/dist/auth/index.mjs +3 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/primitives/resizable.d.ts +18 -2
- package/dist/primitives/resizable.d.ts.map +1 -1
- package/dist/primitives/resizable.js +1 -1
- package/dist/resizable.js +1 -1
- package/dist/resizable.mjs +1 -1
- package/package.json +84 -83
|
@@ -1,6 +1,22 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PanelGroup, PanelResizeHandle } from 'react-resizable-panels';
|
|
2
2
|
declare const ResizablePanelGroup: ({ className, ...props }: React.ComponentProps<typeof PanelGroup>) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare const ResizablePanel:
|
|
3
|
+
declare const ResizablePanel: import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<HTMLSpanElement | HTMLElement | HTMLObjectElement | HTMLMapElement | HTMLAnchorElement | HTMLButtonElement | HTMLDivElement | HTMLFormElement | HTMLHeadingElement | HTMLImageElement | HTMLInputElement | HTMLLabelElement | HTMLLIElement | HTMLOListElement | HTMLParagraphElement | HTMLSelectElement | HTMLUListElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLLegendElement | HTMLLinkElement | HTMLMetaElement | HTMLMeterElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLPreElement | HTMLProgressElement | HTMLSlotElement | HTMLScriptElement | HTMLSourceElement | HTMLStyleElement | HTMLTableElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTitleElement | HTMLTableRowElement | HTMLTrackElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
|
|
4
|
+
className?: string;
|
|
5
|
+
collapsedSize?: number | undefined;
|
|
6
|
+
collapsible?: boolean | undefined;
|
|
7
|
+
defaultSize?: number | undefined;
|
|
8
|
+
id?: string;
|
|
9
|
+
maxSize?: number | undefined;
|
|
10
|
+
minSize?: number | undefined;
|
|
11
|
+
onCollapse?: import("react-resizable-panels").PanelOnCollapse;
|
|
12
|
+
onExpand?: import("react-resizable-panels").PanelOnExpand;
|
|
13
|
+
onResize?: import("react-resizable-panels").PanelOnResize;
|
|
14
|
+
order?: number;
|
|
15
|
+
style?: object;
|
|
16
|
+
tagName?: keyof HTMLElementTagNameMap | undefined;
|
|
17
|
+
} & {
|
|
18
|
+
children?: import("react").ReactNode | undefined;
|
|
19
|
+
} & import("react").RefAttributes<import("react-resizable-panels").ImperativePanelHandle>>;
|
|
4
20
|
declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps<typeof PanelResizeHandle> & {
|
|
5
21
|
withHandle?: boolean;
|
|
6
22
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resizable.d.ts","sourceRoot":"","sources":["../../primitives/resizable.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"resizable.d.ts","sourceRoot":"","sources":["../../primitives/resizable.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,UAAU,EAEV,iBAAiB,EAClB,MAAM,wBAAwB,CAAC;AAIhC,QAAA,MAAM,mBAAmB,GAAI,yBAG1B,KAAK,CAAC,cAAc,CAAC,OAAO,UAAU,CAAC,4CAQzC,CAAC;AAEF,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;0FAAQ,CAAC;AAE7B,QAAA,MAAM,eAAe,GAAI,qCAItB,KAAK,CAAC,cAAc,CAAC,OAAO,iBAAiB,CAAC,GAAG;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,4CAkBA,CAAC;AAEF,OAAO,EAAE,mBAAmB,EAAE,cAAc,EAAE,eAAe,EAAE,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { GripVertical } from 'lucide-react';
|
|
3
|
-
import {
|
|
3
|
+
import { PanelGroup, Panel, PanelResizeHandle, } from 'react-resizable-panels';
|
|
4
4
|
import { cn } from '../src/utils';
|
|
5
5
|
const ResizablePanelGroup = ({ className, ...props }) => (_jsx(PanelGroup, { className: cn('flex h-full w-full data-[panel-group-direction=vertical]:flex-col', className), ...props }));
|
|
6
6
|
const ResizablePanel = Panel;
|
package/dist/resizable.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
'use strict';var lucideReact=require('lucide-react'),reactResizablePanels=require('react-resizable-panels'),clsx=require('clsx'),tailwindMerge=require('tailwind-merge'),jsxRuntime=require('react/jsx-runtime');var i=Object.defineProperty;var t=(e,a)=>i(e,"name",{value:a,configurable:true});function n(...e){return tailwindMerge.twMerge(clsx.clsx(e))}t(n,"cn");var h=t(({className:e,...a})=>jsxRuntime.jsx(reactResizablePanels.
|
|
2
|
+
'use strict';var lucideReact=require('lucide-react'),reactResizablePanels=require('react-resizable-panels'),clsx=require('clsx'),tailwindMerge=require('tailwind-merge'),jsxRuntime=require('react/jsx-runtime');var i=Object.defineProperty;var t=(e,a)=>i(e,"name",{value:a,configurable:true});function n(...e){return tailwindMerge.twMerge(clsx.clsx(e))}t(n,"cn");var h=t(({className:e,...a})=>jsxRuntime.jsx(reactResizablePanels.PanelGroup,{className:n("flex h-full w-full data-[panel-group-direction=vertical]:flex-col",e),...a}),"ResizablePanelGroup"),w=reactResizablePanels.Panel,z=t(({withHandle:e,className:a,...l})=>jsxRuntime.jsx(reactResizablePanels.PanelResizeHandle,{className:n("focus-visible:ring-ring relative flex w-px items-center justify-center bg-gray-100 after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:outline-hidden","data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:translate-x-0 data-[panel-group-direction=vertical]:after:-translate-y-1/2 [&[data-panel-group-direction=vertical]>div]:rotate-90","data-[resize-handle-state=drag]:after:bg-bg-secondary","data-[resize-handle-state=hover]:after:bg-bg-secondary","after:w-[1px] data-[panel-group-direction=vertical]:after:h-[1px]",a),...l,children:e&&jsxRuntime.jsx("div",{className:"z-10 flex h-4 w-3 items-center justify-center rounded-xs border bg-gray-200",children:jsxRuntime.jsx(lucideReact.GripVertical,{className:"h-2.5 w-2.5"})})}),"ResizableHandle");exports.ResizableHandle=z;exports.ResizablePanel=w;exports.ResizablePanelGroup=h;
|
package/dist/resizable.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {GripVertical}from'lucide-react';import {Panel,
|
|
2
|
+
import {GripVertical}from'lucide-react';import {Panel,PanelGroup,PanelResizeHandle}from'react-resizable-panels';import {clsx}from'clsx';import {twMerge}from'tailwind-merge';import {jsx}from'react/jsx-runtime';var i=Object.defineProperty;var t=(e,a)=>i(e,"name",{value:a,configurable:true});function n(...e){return twMerge(clsx(e))}t(n,"cn");var h=t(({className:e,...a})=>jsx(PanelGroup,{className:n("flex h-full w-full data-[panel-group-direction=vertical]:flex-col",e),...a}),"ResizablePanelGroup"),w=Panel,z=t(({withHandle:e,className:a,...l})=>jsx(PanelResizeHandle,{className:n("focus-visible:ring-ring relative flex w-px items-center justify-center bg-gray-100 after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:outline-hidden","data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:translate-x-0 data-[panel-group-direction=vertical]:after:-translate-y-1/2 [&[data-panel-group-direction=vertical]>div]:rotate-90","data-[resize-handle-state=drag]:after:bg-bg-secondary","data-[resize-handle-state=hover]:after:bg-bg-secondary","after:w-[1px] data-[panel-group-direction=vertical]:after:h-[1px]",a),...l,children:e&&jsx("div",{className:"z-10 flex h-4 w-3 items-center justify-center rounded-xs border bg-gray-200",children:jsx(GripVertical,{className:"h-2.5 w-2.5"})})}),"ResizableHandle");export{z as ResizableHandle,w as ResizablePanel,h as ResizablePanelGroup};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.1",
|
|
4
4
|
"description": "Multi-framework UI library with React, Vue, Svelte, and React Native support. Based on shadcn/ui with comprehensive framework coverage.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -45,6 +45,29 @@
|
|
|
45
45
|
"sdk",
|
|
46
46
|
"ui"
|
|
47
47
|
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"lat": "npm show @hanzo/ui version",
|
|
50
|
+
"pub": "npm publish",
|
|
51
|
+
"tc": "tsc --project tsconfig.build.json",
|
|
52
|
+
"build": "npm run clean && npm run build:minimal && npm run tc",
|
|
53
|
+
"build:minimal": "tsup --config tsup.config.minimal.ts",
|
|
54
|
+
"build:namespaces": "tsup --config tsup.config.namespaces.ts",
|
|
55
|
+
"build:full": "tsup --config tsup.config.production.ts",
|
|
56
|
+
"build:frameworks": "npm run build",
|
|
57
|
+
"build:watch": "tsup --watch",
|
|
58
|
+
"build:check": "tsc --project tsconfig.build.json --noEmit",
|
|
59
|
+
"clean": "rm -rf dist",
|
|
60
|
+
"prepublishOnly": "npm run build",
|
|
61
|
+
"update-registry": "node ./bin/update-registry.js",
|
|
62
|
+
"registry:mcp": "node ./bin/cli.js registry:mcp",
|
|
63
|
+
"registry:mcp:http": "node ./bin/cli.js registry:mcp --http",
|
|
64
|
+
"analyze:frameworks": "node analyze-frameworks.js",
|
|
65
|
+
"test": "vitest",
|
|
66
|
+
"test:ui": "vitest --ui",
|
|
67
|
+
"test:coverage": "vitest --coverage",
|
|
68
|
+
"test:jest": "jest test/multi-framework.test.js",
|
|
69
|
+
"test:frameworks": "jest test/multi-framework.test.js --verbose"
|
|
70
|
+
},
|
|
48
71
|
"bin": {
|
|
49
72
|
"hanzo-ui": "./bin/cli.js"
|
|
50
73
|
},
|
|
@@ -75,15 +98,15 @@
|
|
|
75
98
|
"import": "./dist/registry/*.mjs",
|
|
76
99
|
"require": "./dist/registry/*.js"
|
|
77
100
|
},
|
|
78
|
-
"./primitives/bases/
|
|
79
|
-
"types": "./dist/primitives/bases/
|
|
80
|
-
"import": "./dist/primitives/bases/
|
|
81
|
-
"require": "./dist/primitives/bases/
|
|
101
|
+
"./primitives/bases/gui": {
|
|
102
|
+
"types": "./dist/primitives/bases/gui/index.d.ts",
|
|
103
|
+
"import": "./dist/primitives/bases/gui/index.mjs",
|
|
104
|
+
"require": "./dist/primitives/bases/gui/index.js"
|
|
82
105
|
},
|
|
83
|
-
"./primitives/bases/
|
|
84
|
-
"types": "./dist/primitives/bases/
|
|
85
|
-
"import": "./dist/primitives/bases/
|
|
86
|
-
"require": "./dist/primitives/bases/
|
|
106
|
+
"./primitives/bases/gui/*": {
|
|
107
|
+
"types": "./dist/primitives/bases/gui/*.d.ts",
|
|
108
|
+
"import": "./dist/primitives/bases/gui/*.mjs",
|
|
109
|
+
"require": "./dist/primitives/bases/gui/*.js"
|
|
87
110
|
},
|
|
88
111
|
"./calendar": {
|
|
89
112
|
"types": "./dist/calendar.d.ts",
|
|
@@ -256,18 +279,18 @@
|
|
|
256
279
|
"require": "./dist/drawer.js"
|
|
257
280
|
},
|
|
258
281
|
"./dash": {
|
|
259
|
-
"types": "./dist/dash/index.d.ts",
|
|
282
|
+
"types": "./dist/src/dash/index.d.ts",
|
|
260
283
|
"import": "./dist/dash/index.mjs",
|
|
261
284
|
"require": "./dist/dash/index.js"
|
|
262
285
|
},
|
|
263
286
|
"./dash/tokens.css": "./src/dash/tokens.css",
|
|
264
287
|
"./dash/*": {
|
|
265
|
-
"types": "./dist/dash/*.d.ts",
|
|
288
|
+
"types": "./dist/src/dash/*.d.ts",
|
|
266
289
|
"import": "./dist/dash/*.mjs",
|
|
267
290
|
"require": "./dist/dash/*.js"
|
|
268
291
|
},
|
|
269
292
|
"./billing": {
|
|
270
|
-
"types": "./dist/billing/index.d.ts",
|
|
293
|
+
"types": "./dist/src/billing/index.d.ts",
|
|
271
294
|
"import": "./dist/billing/index.mjs",
|
|
272
295
|
"require": "./dist/billing/index.js"
|
|
273
296
|
},
|
|
@@ -504,22 +527,22 @@
|
|
|
504
527
|
"require": "./dist/pattern/*.js"
|
|
505
528
|
},
|
|
506
529
|
"./auth": {
|
|
507
|
-
"types": "./dist/auth/index.d.ts",
|
|
530
|
+
"types": "./dist/src/auth/index.d.ts",
|
|
508
531
|
"import": "./dist/auth/index.mjs",
|
|
509
532
|
"require": "./dist/auth/index.js"
|
|
510
533
|
},
|
|
511
534
|
"./auth/*": {
|
|
512
|
-
"types": "./dist/auth/*.d.ts",
|
|
535
|
+
"types": "./dist/src/auth/*.d.ts",
|
|
513
536
|
"import": "./dist/auth/*.mjs",
|
|
514
537
|
"require": "./dist/auth/*.js"
|
|
515
538
|
},
|
|
516
539
|
"./navigation": {
|
|
517
|
-
"types": "./dist/navigation/index.d.ts",
|
|
540
|
+
"types": "./dist/src/navigation/index.d.ts",
|
|
518
541
|
"import": "./dist/navigation/index.mjs",
|
|
519
542
|
"require": "./dist/navigation/index.js"
|
|
520
543
|
},
|
|
521
544
|
"./navigation/*": {
|
|
522
|
-
"types": "./dist/navigation/*.d.ts",
|
|
545
|
+
"types": "./dist/src/navigation/*.d.ts",
|
|
523
546
|
"import": "./dist/navigation/*.mjs",
|
|
524
547
|
"require": "./dist/navigation/*.js"
|
|
525
548
|
},
|
|
@@ -638,11 +661,11 @@
|
|
|
638
661
|
}
|
|
639
662
|
},
|
|
640
663
|
"dependencies": {
|
|
641
|
-
"@next/third-parties": "^
|
|
664
|
+
"@next/third-parties": "^16.2.1",
|
|
642
665
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
643
666
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
644
|
-
"@radix-ui/react-aspect-ratio": "^1.1.
|
|
645
|
-
"@radix-ui/react-avatar": "^1.1.
|
|
667
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
668
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
646
669
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
647
670
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
648
671
|
"@radix-ui/react-context-menu": "^2.2.16",
|
|
@@ -650,17 +673,17 @@
|
|
|
650
673
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
651
674
|
"@radix-ui/react-hover-card": "^1.1.15",
|
|
652
675
|
"@radix-ui/react-icons": "^1.3.2",
|
|
653
|
-
"@radix-ui/react-label": "^2.1.
|
|
676
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
654
677
|
"@radix-ui/react-menubar": "1.1.16",
|
|
655
678
|
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
656
679
|
"@radix-ui/react-popover": "^1.1.15",
|
|
657
|
-
"@radix-ui/react-progress": "^1.1.
|
|
680
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
658
681
|
"@radix-ui/react-radio-group": "^1.3.8",
|
|
659
682
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
660
683
|
"@radix-ui/react-select": "^2.2.6",
|
|
661
|
-
"@radix-ui/react-separator": "^1.1.
|
|
684
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
662
685
|
"@radix-ui/react-slider": "^1.3.6",
|
|
663
|
-
"@radix-ui/react-slot": "^1.2.
|
|
686
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
664
687
|
"@radix-ui/react-switch": "^1.2.6",
|
|
665
688
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
666
689
|
"@radix-ui/react-toast": "^1.2.15",
|
|
@@ -673,27 +696,25 @@
|
|
|
673
696
|
"class-variance-authority": "^0.7.1",
|
|
674
697
|
"clsx": "^2.1.1",
|
|
675
698
|
"cmdk": "^1.1.1",
|
|
676
|
-
"commander": "^
|
|
677
|
-
"embla-carousel-react": "^8.
|
|
678
|
-
"input-otp": "^1.2
|
|
679
|
-
"little-date": "^1.
|
|
699
|
+
"commander": "^14.0.3",
|
|
700
|
+
"embla-carousel-react": "^8.6.0",
|
|
701
|
+
"input-otp": "^1.4.2",
|
|
702
|
+
"little-date": "^1.2.1",
|
|
680
703
|
"lodash.castarray": "^4.4.0",
|
|
681
704
|
"lodash.isplainobject": "^4.0.6",
|
|
682
705
|
"lodash.merge": "^4.6.2",
|
|
683
|
-
"postcss-selector-parser": "^7.
|
|
684
|
-
"react-intersection-observer": "^
|
|
685
|
-
"sonner": "^2.0.
|
|
706
|
+
"postcss-selector-parser": "^7.1.1",
|
|
707
|
+
"react-intersection-observer": "^10.0.3",
|
|
708
|
+
"sonner": "^2.0.7",
|
|
686
709
|
"svg-pan-zoom": "^3.6.2",
|
|
687
|
-
"tailwind-merge": "^3.
|
|
710
|
+
"tailwind-merge": "^3.5.0",
|
|
688
711
|
"tailwindcss-animate": "^1.0.7",
|
|
689
712
|
"tailwindcss-interaction-media": "^0.1.0",
|
|
690
713
|
"vaul": "^1.1.2",
|
|
691
714
|
"zod": "^3.25.76",
|
|
692
|
-
"zod-to-json-schema": "^3.
|
|
715
|
+
"zod-to-json-schema": "^3.25.1"
|
|
693
716
|
},
|
|
694
717
|
"peerDependencies": {
|
|
695
|
-
"@rainbow-me/rainbowkit": "^2.0.0",
|
|
696
|
-
"wagmi": "^2.0.0",
|
|
697
718
|
"@dnd-kit/core": "^6.0.0",
|
|
698
719
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
699
720
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -701,6 +722,7 @@
|
|
|
701
722
|
"@hanzo/docs-core": "^16.0.0",
|
|
702
723
|
"@hookform/resolvers": "^3.3.2",
|
|
703
724
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
725
|
+
"@rainbow-me/rainbowkit": "^2.0.0",
|
|
704
726
|
"@tanstack/react-query": "^5.0.0",
|
|
705
727
|
"@tanstack/react-table": "^8.0.0",
|
|
706
728
|
"chrono-node": "^2.0.0",
|
|
@@ -716,11 +738,12 @@
|
|
|
716
738
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
717
739
|
"react-hook-form": "^7.0.0",
|
|
718
740
|
"react-qrcode-logo": "^2.0.0",
|
|
719
|
-
"react-resizable-panels": "^3.0.0
|
|
741
|
+
"react-resizable-panels": "^3.0.0",
|
|
720
742
|
"recharts": "^2.0.0",
|
|
721
743
|
"sql.js": "^1.0.0",
|
|
722
744
|
"styled-components": "^6.0.0",
|
|
723
|
-
"validator": "^13.11.0"
|
|
745
|
+
"validator": "^13.11.0",
|
|
746
|
+
"wagmi": "^2.0.0"
|
|
724
747
|
},
|
|
725
748
|
"peerDependenciesMeta": {
|
|
726
749
|
"styled-components": {
|
|
@@ -806,63 +829,41 @@
|
|
|
806
829
|
}
|
|
807
830
|
},
|
|
808
831
|
"devDependencies": {
|
|
809
|
-
"@mdx-js/loader": "^3.
|
|
810
|
-
"@mdx-js/react": "^3.
|
|
811
|
-
"@radix-ui/react-primitive": "^2.1.
|
|
812
|
-
"@splinetool/react-spline": "^4.
|
|
813
|
-
"@tailwindcss/postcss": "^4.
|
|
832
|
+
"@mdx-js/loader": "^3.1.1",
|
|
833
|
+
"@mdx-js/react": "^3.1.1",
|
|
834
|
+
"@radix-ui/react-primitive": "^2.1.4",
|
|
835
|
+
"@splinetool/react-spline": "^4.1.0",
|
|
836
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
814
837
|
"@testing-library/jest-dom": "^6.9.1",
|
|
815
|
-
"@testing-library/react": "^16.3.
|
|
816
|
-
"@types/facebook-pixel": "^0.0.
|
|
817
|
-
"@types/gtag.js": "^0.0.
|
|
838
|
+
"@testing-library/react": "^16.3.2",
|
|
839
|
+
"@types/facebook-pixel": "^0.0.31",
|
|
840
|
+
"@types/gtag.js": "^0.0.20",
|
|
818
841
|
"@types/lodash.merge": "^4.6.9",
|
|
819
842
|
"@types/mdx": "^2.0.13",
|
|
820
|
-
"@types/node": "
|
|
821
|
-
"@types/react": "
|
|
822
|
-
"@types/react-dom": "
|
|
843
|
+
"@types/node": "25.5.0",
|
|
844
|
+
"@types/react": "19.2.14",
|
|
845
|
+
"@types/react-dom": "19.2.3",
|
|
823
846
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
824
847
|
"@types/styled-components": "^5.1.36",
|
|
825
|
-
"@vitejs/plugin-react": "^
|
|
826
|
-
"@vitest/coverage-v8": "^4.0
|
|
827
|
-
"@vitest/ui": "^4.0
|
|
848
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
849
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
850
|
+
"@vitest/ui": "^4.1.0",
|
|
828
851
|
"embla-carousel": "^8.6.0",
|
|
829
852
|
"filesize": "^11.0.13",
|
|
830
|
-
"glob": "^
|
|
831
|
-
"jest": "^30.
|
|
832
|
-
"jsdom": "^
|
|
833
|
-
"react-dropzone": "^
|
|
853
|
+
"glob": "^13.0.6",
|
|
854
|
+
"jest": "^30.3.0",
|
|
855
|
+
"jsdom": "^29.0.1",
|
|
856
|
+
"react-dropzone": "^15.0.0",
|
|
834
857
|
"react-markdown": "^10.1.0",
|
|
835
|
-
"react-syntax-highlighter": "^
|
|
858
|
+
"react-syntax-highlighter": "^16.1.1",
|
|
836
859
|
"rehype-katex": "^7.0.1",
|
|
837
860
|
"remark-gfm": "^4.0.1",
|
|
838
861
|
"remark-math": "^6.0.0",
|
|
839
|
-
"styled-components": "^6.3.
|
|
840
|
-
"tailwindcss": "^4.
|
|
841
|
-
"tsup": "^8.5.
|
|
842
|
-
"tw-animate-css": "^1.
|
|
862
|
+
"styled-components": "^6.3.12",
|
|
863
|
+
"tailwindcss": "^4.2.2",
|
|
864
|
+
"tsup": "^8.5.1",
|
|
865
|
+
"tw-animate-css": "^1.4.0",
|
|
843
866
|
"typescript": "^5.9.3",
|
|
844
|
-
"vitest": "4.0
|
|
845
|
-
},
|
|
846
|
-
"scripts": {
|
|
847
|
-
"lat": "npm show @hanzo/ui version",
|
|
848
|
-
"pub": "npm publish",
|
|
849
|
-
"tc": "tsc --project tsconfig.build.json",
|
|
850
|
-
"build": "npm run clean && npm run build:minimal && npm run tc",
|
|
851
|
-
"build:minimal": "tsup --config tsup.config.minimal.ts",
|
|
852
|
-
"build:namespaces": "tsup --config tsup.config.namespaces.ts",
|
|
853
|
-
"build:full": "tsup --config tsup.config.production.ts",
|
|
854
|
-
"build:frameworks": "npm run build",
|
|
855
|
-
"build:watch": "tsup --watch",
|
|
856
|
-
"build:check": "tsc --project tsconfig.build.json --noEmit",
|
|
857
|
-
"clean": "rm -rf dist",
|
|
858
|
-
"update-registry": "node ./bin/update-registry.js",
|
|
859
|
-
"registry:mcp": "node ./bin/cli.js registry:mcp",
|
|
860
|
-
"registry:mcp:http": "node ./bin/cli.js registry:mcp --http",
|
|
861
|
-
"analyze:frameworks": "node analyze-frameworks.js",
|
|
862
|
-
"test": "vitest",
|
|
863
|
-
"test:ui": "vitest --ui",
|
|
864
|
-
"test:coverage": "vitest --coverage",
|
|
865
|
-
"test:jest": "jest test/multi-framework.test.js",
|
|
866
|
-
"test:frameworks": "jest test/multi-framework.test.js --verbose"
|
|
867
|
+
"vitest": "4.1.0"
|
|
867
868
|
}
|
|
868
|
-
}
|
|
869
|
+
}
|