Skip to content

Commit

Permalink
update registry
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianGonz97 committed Mar 14, 2024
1 parent 5791548 commit 10b34f1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions apps/www/src/__registry__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export const Index = {
"combobox-dropdown-menu": {
name: "combobox-dropdown-menu",
type: "components:example",
registryDependencies: ["command", "dropdown-menu", "button"],
registryDependencies: ["button", "command", "dropdown-menu"],
component: () =>
import("../lib/registry/default/example/combobox-dropdown-menu.svelte").then(
(m) => m.default
Expand All @@ -431,7 +431,7 @@ export const Index = {
"combobox-popover": {
name: "combobox-popover",
type: "components:example",
registryDependencies: ["command", "popover", "button"],
registryDependencies: ["button", "command", "popover"],
component: () =>
import("../lib/registry/default/example/combobox-popover.svelte").then(
(m) => m.default
Expand Down Expand Up @@ -1649,7 +1649,7 @@ export const Index = {
"combobox-dropdown-menu": {
name: "combobox-dropdown-menu",
type: "components:example",
registryDependencies: ["command", "dropdown-menu", "button"],
registryDependencies: ["button", "command", "dropdown-menu"],
component: () =>
import("../lib/registry/new-york/example/combobox-dropdown-menu.svelte").then(
(m) => m.default
Expand All @@ -1669,7 +1669,7 @@ export const Index = {
"combobox-popover": {
name: "combobox-popover",
type: "components:example",
registryDependencies: ["command", "popover", "button"],
registryDependencies: ["button", "command", "popover"],
component: () =>
import("../lib/registry/new-york/example/combobox-popover.svelte").then(
(m) => m.default
Expand Down
2 changes: 1 addition & 1 deletion apps/www/static/registry/styles/default-js/breadcrumb.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"files": [
{
"name": "breadcrumb-ellipsis.svelte",
"content": "<script>\n\timport MoreHorizontal from \"lucide-svelte/icons/more-horizontal\";\n\timport { cn } from \"$lib/utils.js\";\n\texport let el = undefined;\n\tlet className = undefined;\n\texport { className as class };\n</script>\n\n<span\n\tbind:this={el}\n\trole=\"presentation\"\n\taria-hidden=\"true\"\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<MoreHorizontal class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More</span>\n</span>\n"
"content": "<script>\n\timport { cn } from \"$lib/utils.js\";\n\timport Ellipsis from \"lucide-svelte/icons/ellipsis\";\n\texport let el = undefined;\n\tlet className = undefined;\n\texport { className as class };\n</script>\n\n<span\n\tbind:this={el}\n\trole=\"presentation\"\n\taria-hidden=\"true\"\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<Ellipsis class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More</span>\n</span>\n"
},
{
"name": "breadcrumb-item.svelte",
Expand Down
2 changes: 1 addition & 1 deletion apps/www/static/registry/styles/default-js/pagination.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
{
"name": "pagination-ellipsis.svelte",
"content": "<script>\n\timport MoreHorizontal from \"lucide-svelte/icons/more-horizontal\";\n\timport { cn } from \"$lib/utils.js\";\n\tlet className = undefined;\n\texport { className as class };\n</script>\n\n<span\n\taria-hidden\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<MoreHorizontal class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More pages</span>\n</span>\n"
"content": "<script>\n\timport { cn } from \"$lib/utils.js\";\n\timport Ellipsis from \"lucide-svelte/icons/ellipsis\";\n\tlet className = undefined;\n\texport { className as class };\n</script>\n\n<span\n\taria-hidden\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<Ellipsis class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More pages</span>\n</span>\n"
},
{
"name": "pagination-item.svelte",
Expand Down
2 changes: 1 addition & 1 deletion apps/www/static/registry/styles/default/breadcrumb.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"files": [
{
"name": "breadcrumb-ellipsis.svelte",
"content": "<script lang=\"ts\">\n\timport type { HTMLAttributes } from \"svelte/elements\";\n\timport MoreHorizontal from \"lucide-svelte/icons/more-horizontal\";\n\timport { cn } from \"$lib/utils.js\";\n\n\ttype $$Props = HTMLAttributes<HTMLSpanElement> & {\n\t\tel?: HTMLSpanElement;\n\t};\n\n\texport let el: $$Props[\"el\"] = undefined;\n\tlet className: $$Props[\"class\"] = undefined;\n\texport { className as class };\n</script>\n\n<span\n\tbind:this={el}\n\trole=\"presentation\"\n\taria-hidden=\"true\"\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<MoreHorizontal class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More</span>\n</span>\n"
"content": "<script lang=\"ts\">\n\timport { cn } from \"$lib/utils.js\";\n\timport Ellipsis from \"lucide-svelte/icons/ellipsis\";\n\timport type { HTMLAttributes } from \"svelte/elements\";\n\n\ttype $$Props = HTMLAttributes<HTMLSpanElement> & {\n\t\tel?: HTMLSpanElement;\n\t};\n\n\texport let el: $$Props[\"el\"] = undefined;\n\tlet className: $$Props[\"class\"] = undefined;\n\texport { className as class };\n</script>\n\n<span\n\tbind:this={el}\n\trole=\"presentation\"\n\taria-hidden=\"true\"\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<Ellipsis class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More</span>\n</span>\n"
},
{
"name": "breadcrumb-item.svelte",
Expand Down
2 changes: 1 addition & 1 deletion apps/www/static/registry/styles/default/pagination.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
{
"name": "pagination-ellipsis.svelte",
"content": "<script lang=\"ts\">\n\timport MoreHorizontal from \"lucide-svelte/icons/more-horizontal\";\n\timport { cn } from \"$lib/utils.js\";\n\timport type { HTMLAttributes } from \"svelte/elements\";\n\n\ttype $$Props = HTMLAttributes<HTMLSpanElement>;\n\n\tlet className: $$Props[\"class\"] = undefined;\n\texport { className as class };\n</script>\n\n<span\n\taria-hidden\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<MoreHorizontal class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More pages</span>\n</span>\n"
"content": "<script lang=\"ts\">\n\timport { cn } from \"$lib/utils.js\";\n\timport Ellipsis from \"lucide-svelte/icons/ellipsis\";\n\timport type { HTMLAttributes } from \"svelte/elements\";\n\n\ttype $$Props = HTMLAttributes<HTMLSpanElement>;\n\n\tlet className: $$Props[\"class\"] = undefined;\n\texport { className as class };\n</script>\n\n<span\n\taria-hidden\n\tclass={cn(\"flex h-9 w-9 items-center justify-center\", className)}\n\t{...$$restProps}\n>\n\t<Ellipsis class=\"h-4 w-4\" />\n\t<span class=\"sr-only\">More pages</span>\n</span>\n"
},
{
"name": "pagination-item.svelte",
Expand Down

0 comments on commit 10b34f1

Please sign in to comment.