Skip to content

Commit

Permalink
try to fix lockfile (#354)
Browse files Browse the repository at this point in the history
Co-authored-by: AdrianGonz97 <[email protected]>
  • Loading branch information
huntabyte and AdrianGonz97 authored Oct 18, 2023
1 parent 91bce55 commit 20c7a91
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "./patches/[email protected]"
"[email protected]": "patches/[email protected]"
}
}
}
9 changes: 8 additions & 1 deletion apps/www/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/www/static/registry/styles/new-york/checkbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"files": [
{
"name": "checkbox.svelte",
"content": "<script lang=\"ts\">\n\timport { Checkbox as CheckboxPrimitive } from \"bits-ui\";\n\timport { Check, Minus } from \"radix-icons-svelte\";\n\timport { cn } from \"$lib/utils\";\n\n\ttype $$Props = CheckboxPrimitive.Props;\n\ttype $$Events = CheckboxPrimitive.Events;\n\n\tlet className: $$Props[\"class\"] = undefined;\n\texport let checked: $$Props[\"checked\"] = false;\n\texport { className as class };\n</script>\n\n<CheckboxPrimitive.Root\n\tclass={cn(\n\t\t\"peer h-4 w-4 shrink-0 rounded-sm border border-primary shadow focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground data-[disabled=true]:cursor-not-allowed data-[disabled=true]:opacity-50\",\n\t\tclassName\n\t)}\n\tbind:checked\n\ton:click\n\t{...$$restProps}\n>\n\t<CheckboxPrimitive.Indicator\n\t\tclass={cn(\"flex items-center justify-center text-current h-4 w-4\")}\n\t\tlet:isChecked\n\t\tlet:isIndeterminate\n\t>\n\t\t{#if isIndeterminate}\n\t\t\t<Minus class=\"h-4 w-4\" />\n\t\t{:else}\n\t\t\t<Check class={cn(\"h-4 w-4\", !isChecked && \"text-transparent\")} />\n\t\t{/if}\n\t</CheckboxPrimitive.Indicator>\n</CheckboxPrimitive.Root>\n"
"content": "<script lang=\"ts\">\n\timport { Checkbox as CheckboxPrimitive } from \"bits-ui\";\n\timport { Check, Minus } from \"radix-icons-svelte\";\n\timport { cn } from \"$lib/utils\";\n\n\ttype $$Props = CheckboxPrimitive.Props;\n\ttype $$Events = CheckboxPrimitive.Events;\n\n\tlet className: $$Props[\"class\"] = undefined;\n\texport let checked: $$Props[\"checked\"] = false;\n\texport { className as class };\n</script>\n\n<CheckboxPrimitive.Root\n\tclass={cn(\n\t\t\"box-content peer h-4 w-4 shrink-0 rounded-sm border border-primary shadow focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground data-[disabled=true]:cursor-not-allowed data-[disabled=true]:opacity-50\",\n\t\tclassName\n\t)}\n\tbind:checked\n\ton:click\n\t{...$$restProps}\n>\n\t<CheckboxPrimitive.Indicator\n\t\tclass={cn(\"flex items-center justify-center text-current h-4 w-4\")}\n\t\tlet:isChecked\n\t\tlet:isIndeterminate\n\t>\n\t\t{#if isIndeterminate}\n\t\t\t<Minus class=\"h-3.5 w-3.5\" />\n\t\t{:else}\n\t\t\t<Check\n\t\t\t\tclass={cn(\"h-3.5 w-3.5\", !isChecked && \"text-transparent\")}\n\t\t\t/>\n\t\t{/if}\n\t</CheckboxPrimitive.Indicator>\n</CheckboxPrimitive.Root>\n"
},
{
"name": "index.ts",
Expand Down

1 comment on commit 20c7a91

@vercel
Copy link

@vercel vercel bot commented on 20c7a91 Oct 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.