mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
feat(react): packages added
This commit is contained in:
parent
6528d86ecf
commit
f7aa7dfe52
@ -14,7 +14,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "turbo dev --filter=!@nextui-org/docs",
|
"dev": "turbo dev --filter=!@nextui-org/docs",
|
||||||
"build": "turbo build --filter=!@nextui-org/docs",
|
"build": "turbo build --filter=!@nextui-org/docs",
|
||||||
"build:fast": "turbo build:fast --filter=!@nextui-org/docs",
|
"build:fast": "turbo build:fast --filter=!@nextui-org/docs ",
|
||||||
"dev:docs": "turbo dev --filter=@nextui-org/docs",
|
"dev:docs": "turbo dev --filter=@nextui-org/docs",
|
||||||
"build:docs": "turbo build --filter=@nextui-org/docs",
|
"build:docs": "turbo build --filter=@nextui-org/docs",
|
||||||
"build:docs-meta": "node ./scripts/update-index-docs.js",
|
"build:docs-meta": "node ./scripts/update-index-docs.js",
|
||||||
@ -139,8 +139,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.x",
|
"node": ">=16.x"
|
||||||
"pnpm": ">=7.x"
|
}
|
||||||
},
|
|
||||||
"packageManager": "pnpm@7.14.2"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -108,7 +108,6 @@ export function useSnippet(originalProps: UseSnippetProps) {
|
|||||||
tooltipProps = {
|
tooltipProps = {
|
||||||
offset: 15,
|
offset: 15,
|
||||||
content: "Copy to clipboard",
|
content: "Copy to clipboard",
|
||||||
size: originalProps?.size as TooltipProps["size"],
|
|
||||||
variant: originalProps?.variant as TooltipProps["variant"],
|
variant: originalProps?.variant as TooltipProps["variant"],
|
||||||
color: originalProps?.color as TooltipProps["color"],
|
color: originalProps?.color as TooltipProps["color"],
|
||||||
isDisabled: disableCopy,
|
isDisabled: disableCopy,
|
||||||
|
|||||||
@ -3,8 +3,9 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"tailwind-variants": ["../../../node_modules/tailwind-variants"]
|
"tailwind-variants": ["../../../node_modules/tailwind-variants"],
|
||||||
},
|
"@react-aria/interactions": ["../../../node_modules/@react-aria/interactions"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"include": ["src", "index.ts"]
|
"include": ["src", "index.ts"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -41,6 +41,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nextui-org/system": "workspace:*",
|
"@nextui-org/system": "workspace:*",
|
||||||
"@nextui-org/theme": "workspace:*",
|
"@nextui-org/theme": "workspace:*",
|
||||||
|
"@nextui-org/accordion": "workspace:*",
|
||||||
"@nextui-org/avatar": "workspace:*",
|
"@nextui-org/avatar": "workspace:*",
|
||||||
"@nextui-org/badge": "workspace:*",
|
"@nextui-org/badge": "workspace:*",
|
||||||
"@nextui-org/button": "workspace:*",
|
"@nextui-org/button": "workspace:*",
|
||||||
@ -49,10 +50,12 @@
|
|||||||
"@nextui-org/code": "workspace:*",
|
"@nextui-org/code": "workspace:*",
|
||||||
"@nextui-org/drip": "workspace:*",
|
"@nextui-org/drip": "workspace:*",
|
||||||
"@nextui-org/link": "workspace:*",
|
"@nextui-org/link": "workspace:*",
|
||||||
"@nextui-org/spinner": "workspace:*",
|
|
||||||
"@nextui-org/pagination": "workspace:*",
|
"@nextui-org/pagination": "workspace:*",
|
||||||
"@nextui-org/radio": "workspace:*",
|
"@nextui-org/radio": "workspace:*",
|
||||||
"@nextui-org/snippet": "workspace:*",
|
"@nextui-org/snippet": "workspace:*",
|
||||||
|
"@nextui-org/spinner": "workspace:*",
|
||||||
|
"@nextui-org/switch": "workspace:*",
|
||||||
|
"@nextui-org/tooltip": "workspace:*",
|
||||||
"@nextui-org/user": "workspace:*"
|
"@nextui-org/user": "workspace:*"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
|||||||
@ -1,7 +1,18 @@
|
|||||||
export * from "@nextui-org/system";
|
export * from "@nextui-org/system";
|
||||||
|
export * from "@nextui-org/theme";
|
||||||
|
export * from "@nextui-org/accordion";
|
||||||
export * from "@nextui-org/avatar";
|
export * from "@nextui-org/avatar";
|
||||||
export * from "@nextui-org/badge";
|
export * from "@nextui-org/badge";
|
||||||
export * from "@nextui-org/link";
|
export * from "@nextui-org/button";
|
||||||
|
export * from "@nextui-org/card";
|
||||||
|
export * from "@nextui-org/checkbox";
|
||||||
export * from "@nextui-org/code";
|
export * from "@nextui-org/code";
|
||||||
|
export * from "@nextui-org/drip";
|
||||||
|
export * from "@nextui-org/link";
|
||||||
export * from "@nextui-org/pagination";
|
export * from "@nextui-org/pagination";
|
||||||
export * from "@nextui-org/radio";
|
export * from "@nextui-org/radio";
|
||||||
|
export * from "@nextui-org/snippet";
|
||||||
|
export * from "@nextui-org/spinner";
|
||||||
|
export * from "@nextui-org/switch";
|
||||||
|
export * from "@nextui-org/tooltip";
|
||||||
|
export * from "@nextui-org/user";
|
||||||
|
|||||||
@ -1,4 +1,25 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../../tsconfig.json",
|
"extends": "../../../tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"@nextui-org/accordion": ["./node_modules/@nextui-org/accordion/dist"],
|
||||||
|
"@nextui-org/avatar": ["./node_modules/@nextui-org/avatar/dist"],
|
||||||
|
"@nextui-org/badge": ["./node_modules/@nextui-org/badge/dist"],
|
||||||
|
"@nextui-org/button": ["./node_modules/@nextui-org/button/dist"],
|
||||||
|
"@nextui-org/card": ["./node_modules/@nextui-org/card/dist"],
|
||||||
|
"@nextui-org/checkbox": ["./node_modules/@nextui-org/checkbox/dist"],
|
||||||
|
"@nextui-org/code": ["./node_modules/@nextui-org/code/dist"],
|
||||||
|
"@nextui-org/drip": ["./node_modules/@nextui-org/drip/dist"],
|
||||||
|
"@nextui-org/link": ["./node_modules/@nextui-org/link/dist"],
|
||||||
|
"@nextui-org/pagination": ["./node_modules/@nextui-org/pagination/dist"],
|
||||||
|
"@nextui-org/radio": ["./node_modules/@nextui-org/radio/dist"],
|
||||||
|
"@nextui-org/snippet": ["./node_modules/@nextui-org/snippet/dist"],
|
||||||
|
"@nextui-org/spinner": ["./node_modules/@nextui-org/spinner/dist"],
|
||||||
|
"@nextui-org/switch": ["./node_modules/@nextui-org/switch/dist"],
|
||||||
|
"@nextui-org/tooltip": ["./node_modules/@nextui-org/tooltip/dist"],
|
||||||
|
"@nextui-org/user": ["./node_modules/@nextui-org/user/dist"]
|
||||||
|
}
|
||||||
|
},
|
||||||
"include": ["src", "index.ts"]
|
"include": ["src", "index.ts"]
|
||||||
}
|
}
|
||||||
|
|||||||
530
pnpm-lock.yaml
generated
530
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user