Skip to content

Commit

Permalink
Generated changes [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
teovillanueva authored and github-actions[bot] committed Jan 30, 2023
1 parent 5fbb433 commit 26c063f
Show file tree
Hide file tree
Showing 37 changed files with 9,532 additions and 218 deletions.
9,159 changes: 9,159 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@teovilla/shadcn-ui-react-root",
"version": "0.4.0",
"version": "0.5.0",
"private": true,
"scripts": {
"publish-packages": "yarn turbo run publish-package"
Expand Down
4 changes: 2 additions & 2 deletions packages/accordion/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-accordion",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-accordion": "^1.1.0",
"lucide-react": "0.105.0-alpha.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/alert-dialog/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-alert-dialog",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-alert-dialog": "^1.0.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/aspect-ratio/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-aspect-ratio",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"@radix-ui/react-aspect-ratio": "^1.0.1"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/avatar/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-avatar",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-avatar": "^1.0.1"
},
Expand Down
26 changes: 13 additions & 13 deletions packages/avatar/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
"use client"

import * as React from "react"
import * as AvatarPrimivite from "@radix-ui/react-avatar"
import * as AvatarPrimitive from "@radix-ui/react-avatar"

import { cn } from "@teovilla/shadcn-ui-react-lib"

const Avatar = React.forwardRef<
React.ElementRef<typeof AvatarPrimivite.Root>,
React.ComponentPropsWithoutRef<typeof AvatarPrimivite.Root>
React.ElementRef<typeof AvatarPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>
>(({ className, ...props }, ref) => (
<AvatarPrimivite.Root
<AvatarPrimitive.Root
ref={ref}
className={cn(
"relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
Expand All @@ -18,25 +18,25 @@ const Avatar = React.forwardRef<
{...props}
/>
))
Avatar.displayName = AvatarPrimivite.Root.displayName
Avatar.displayName = AvatarPrimitive.Root.displayName

const AvatarImage = React.forwardRef<
React.ElementRef<typeof AvatarPrimivite.Image>,
React.ComponentPropsWithoutRef<typeof AvatarPrimivite.Image>
React.ElementRef<typeof AvatarPrimitive.Image>,
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Image>
>(({ className, ...props }, ref) => (
<AvatarPrimivite.Image
<AvatarPrimitive.Image
ref={ref}
className={cn("aspect-square h-full w-full", className)}
{...props}
/>
))
AvatarImage.displayName = AvatarPrimivite.Image.displayName
AvatarImage.displayName = AvatarPrimitive.Image.displayName

const AvatarFallback = React.forwardRef<
React.ElementRef<typeof AvatarPrimivite.Fallback>,
React.ComponentPropsWithoutRef<typeof AvatarPrimivite.Fallback>
React.ElementRef<typeof AvatarPrimitive.Fallback>,
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Fallback>
>(({ className, ...props }, ref) => (
<AvatarPrimivite.Fallback
<AvatarPrimitive.Fallback
ref={ref}
className={cn(
"flex h-full w-full items-center justify-center rounded-full bg-slate-100 dark:bg-slate-700",
Expand All @@ -45,6 +45,6 @@ const AvatarFallback = React.forwardRef<
{...props}
/>
))
AvatarFallback.displayName = AvatarPrimivite.Fallback.displayName
AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName

export { Avatar, AvatarImage, AvatarFallback }
4 changes: 2 additions & 2 deletions packages/button/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-button",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"class-variance-authority": "^0.4.0"
},
Expand Down
4 changes: 3 additions & 1 deletion packages/button/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ const buttonVariants = cva(
variants: {
variant: {
default:
"bg-slate-900 text-white hover:bg-slate-700 dark:bg-slate-300 dark:text-slate-900",
"bg-slate-900 text-white hover:bg-slate-700 dark:bg-slate-50 dark:text-slate-900",
destructive:
"bg-red-500 text-white hover:bg-red-600 dark:hover:bg-red-600",
outline:
"bg-transparent border border-slate-200 hover:bg-slate-100 dark:border-slate-700 dark:text-slate-100",
subtle:
Expand Down
4 changes: 2 additions & 2 deletions packages/checkbox/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-checkbox",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-checkbox": "^1.0.1",
"lucide-react": "0.105.0-alpha.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/collapsible/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-collapsible",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"@radix-ui/react-collapsible": "^1.0.1"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/context-menu/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-context-menu",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-context-menu": "^2.1.1",
"lucide-react": "0.105.0-alpha.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/dialog/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-dialog",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-dialog": "^1.0.2",
"lucide-react": "0.105.0-alpha.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/dropdown-menu/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-dropdown-menu",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"lucide-react": "0.105.0-alpha.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/hover-card/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-hover-card",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-hover-card": "^1.0.3"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/input/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-input",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/label/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-label",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-label": "^2.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@teovilla/shadcn-ui-react-lib",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.ts",
"scripts": {
"publish-package": "npm publish --access public"
Expand Down
4 changes: 2 additions & 2 deletions packages/menubar/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@teovilla/shadcn-ui-react-menubar",
"version": "0.4.0",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.4.0",
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-menubar": "^1.0.0",
"lucide-react": "0.105.0-alpha.4"
Expand Down
25 changes: 25 additions & 0 deletions packages/navigation-menu/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "@teovilla/shadcn-ui-react-navigation-menu",
"version": "0.5.0",
"main": "src/index.tsx",
"scripts": {
"publish-package": "npm publish --access public"
},
"dependencies": {
"@teovilla/shadcn-ui-react-lib": "0.5.0",
"react": "^18.2.0",
"@radix-ui/react-navigation-menu": "^1.1.1",
"class-variance-authority": "^0.4.0",
"lucide-react": "0.105.0-alpha.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": "https://github.com/teovillanueva/shadcn-ui-react",
"author": "Teodoro Villanueva <[email protected]> (https://github.com/teovillanueva)",
"bugs": {
"url": "https://github.com/teovillanueva/shadcn-ui-react/issues"
},
"homepage": "https://github.com/teovillanueva/shadcn-ui-react#readme"
}
Loading

0 comments on commit 26c063f

Please sign in to comment.