From 46f7ffb65a9d34cc0b7ce39ee8bec960e8235131 Mon Sep 17 00:00:00 2001 From: Lucas Bois <44686060+LucasBois1@users.noreply.github.com> Date: Mon, 1 Apr 2024 07:23:44 -0300 Subject: [PATCH 01/10] chore: update Dashboard03.vue (#446) Fix mismatch header lines in Block - Dashboard03 component. --- apps/www/src/lib/registry/default/block/Dashboard03.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/lib/registry/default/block/Dashboard03.vue b/apps/www/src/lib/registry/default/block/Dashboard03.vue index bcbf1be2..3b60b282 100644 --- a/apps/www/src/lib/registry/default/block/Dashboard03.vue +++ b/apps/www/src/lib/registry/default/block/Dashboard03.vue @@ -136,7 +136,7 @@ import { Tooltip, TooltipContent, TooltipTrigger } from '@/lib/registry/default/
-
+

Playground

From f55633ab8a7768cedd831d7c2694150c13df0375 Mon Sep 17 00:00:00 2001 From: Mike Ovyan Date: Mon, 1 Apr 2024 22:39:51 +0300 Subject: [PATCH 02/10] chore: fix wrong class at `Authentication03.vue` block example (#449) used grid gap-2 instead of space-y-2 --- apps/www/src/lib/registry/default/block/Authentication03.vue | 2 +- apps/www/src/lib/registry/new-york/block/Authentication03.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/www/src/lib/registry/default/block/Authentication03.vue b/apps/www/src/lib/registry/default/block/Authentication03.vue index a3d976ec..15dc0241 100644 --- a/apps/www/src/lib/registry/default/block/Authentication03.vue +++ b/apps/www/src/lib/registry/default/block/Authentication03.vue @@ -25,7 +25,7 @@ import { Label } from '@/lib/registry/default/ui/label'
-
+
diff --git a/apps/www/src/lib/registry/new-york/block/Authentication03.vue b/apps/www/src/lib/registry/new-york/block/Authentication03.vue index 7f16bee2..e6e8d730 100644 --- a/apps/www/src/lib/registry/new-york/block/Authentication03.vue +++ b/apps/www/src/lib/registry/new-york/block/Authentication03.vue @@ -25,7 +25,7 @@ import { Label } from '@/lib/registry/new-york/ui/label'
-
+
From f91cfe9add70b9002cd0c13b87a6b53d51aeb8da Mon Sep 17 00:00:00 2001 From: Lucas Bois <44686060+LucasBois1@users.noreply.github.com> Date: Mon, 1 Apr 2024 16:52:14 -0300 Subject: [PATCH 03/10] chore: add missing Separator import to `Announcement.vue` badge (#450) --- apps/www/.vitepress/theme/components/Announcement.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/www/.vitepress/theme/components/Announcement.vue b/apps/www/.vitepress/theme/components/Announcement.vue index 83e1412e..bcf63a66 100644 --- a/apps/www/.vitepress/theme/components/Announcement.vue +++ b/apps/www/.vitepress/theme/components/Announcement.vue @@ -1,5 +1,6 @@ From 81a75156170cb399e69c37a11553765ff4f46f02 Mon Sep 17 00:00:00 2001 From: Lucas Bois <44686060+LucasBois1@users.noreply.github.com> Date: Wed, 3 Apr 2024 11:52:59 -0300 Subject: [PATCH 04/10] feat(Blocks): create Dashboards 05, 06 and 07 (#452) * Create Dashboard05.vue * chore: update index.ts Add Dashboard05 to index.ts * chore: create Dashboard05.vue new-york Create Dashboard05 new-york version * build: build registry * chore: add Dashboard06 and Dashboard07 * fix: update `html-for` to `for` --- apps/www/__registry__/index.ts | 42 + .../registry/default/block/Dashboard05.vue | 706 ++++++++++++++++ .../registry/default/block/Dashboard06.vue | 627 ++++++++++++++ .../registry/default/block/Dashboard07.vue | 629 ++++++++++++++ .../registry/new-york/block/Dashboard05.vue | 772 ++++++++++++++++++ .../registry/new-york/block/Dashboard06.vue | 627 ++++++++++++++ .../registry/new-york/block/Dashboard07.vue | 629 ++++++++++++++ 7 files changed, 4032 insertions(+) create mode 100644 apps/www/src/lib/registry/default/block/Dashboard05.vue create mode 100644 apps/www/src/lib/registry/default/block/Dashboard06.vue create mode 100644 apps/www/src/lib/registry/default/block/Dashboard07.vue create mode 100644 apps/www/src/lib/registry/new-york/block/Dashboard05.vue create mode 100644 apps/www/src/lib/registry/new-york/block/Dashboard06.vue create mode 100644 apps/www/src/lib/registry/new-york/block/Dashboard07.vue diff --git a/apps/www/__registry__/index.ts b/apps/www/__registry__/index.ts index 09777068..265902db 100644 --- a/apps/www/__registry__/index.ts +++ b/apps/www/__registry__/index.ts @@ -1158,6 +1158,27 @@ export const Index = { component: () => import("../src/lib/registry/default/block/Dashboard04.vue").then((m) => m.default), files: ["../src/lib/registry/default/block/Dashboard04.vue"], }, + "Dashboard05": { + name: "Dashboard05", + type: "components:block", + registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","pagination","progress","separator","table","tabs","tooltip","checkbox"], + component: () => import("../src/lib/registry/default/block/Dashboard05.vue").then((m) => m.default), + files: ["../src/lib/registry/default/block/Dashboard05.vue"], + }, + "Dashboard06": { + name: "Dashboard06", + type: "components:block", + registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","table","tabs","tooltip"], + component: () => import("../src/lib/registry/default/block/Dashboard06.vue").then((m) => m.default), + files: ["../src/lib/registry/default/block/Dashboard06.vue"], + }, + "Dashboard07": { + name: "Dashboard07", + type: "components:block", + registryDependencies: ["badge","button","card","dropdown-menu","input","textarea","label","toggle-group","breadcrumb","sheet","table","select","tooltip"], + component: () => import("../src/lib/registry/default/block/Dashboard07.vue").then((m) => m.default), + files: ["../src/lib/registry/default/block/Dashboard07.vue"], + }, }, "new-york": { "AccordionDemo": { name: "AccordionDemo", @@ -2314,5 +2335,26 @@ export const Index = { component: () => import("../src/lib/registry/new-york/block/Dashboard04.vue").then((m) => m.default), files: ["../src/lib/registry/new-york/block/Dashboard04.vue"], }, + "Dashboard05": { + name: "Dashboard05", + type: "components:block", + registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","pagination","progress","separator","table","tabs","tooltip","checkbox"], + component: () => import("../src/lib/registry/new-york/block/Dashboard05.vue").then((m) => m.default), + files: ["../src/lib/registry/new-york/block/Dashboard05.vue"], + }, + "Dashboard06": { + name: "Dashboard06", + type: "components:block", + registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","table","tabs","tooltip"], + component: () => import("../src/lib/registry/new-york/block/Dashboard06.vue").then((m) => m.default), + files: ["../src/lib/registry/new-york/block/Dashboard06.vue"], + }, + "Dashboard07": { + name: "Dashboard07", + type: "components:block", + registryDependencies: ["badge","button","card","dropdown-menu","input","textarea","label","toggle-group","breadcrumb","sheet","table","select","tooltip"], + component: () => import("../src/lib/registry/new-york/block/Dashboard07.vue").then((m) => m.default), + files: ["../src/lib/registry/new-york/block/Dashboard07.vue"], + }, }, } diff --git a/apps/www/src/lib/registry/default/block/Dashboard05.vue b/apps/www/src/lib/registry/default/block/Dashboard05.vue new file mode 100644 index 00000000..73b8e8a8 --- /dev/null +++ b/apps/www/src/lib/registry/default/block/Dashboard05.vue @@ -0,0 +1,706 @@ + + + + + diff --git a/apps/www/src/lib/registry/default/block/Dashboard06.vue b/apps/www/src/lib/registry/default/block/Dashboard06.vue new file mode 100644 index 00000000..010fb60c --- /dev/null +++ b/apps/www/src/lib/registry/default/block/Dashboard06.vue @@ -0,0 +1,627 @@ + + + + + diff --git a/apps/www/src/lib/registry/default/block/Dashboard07.vue b/apps/www/src/lib/registry/default/block/Dashboard07.vue new file mode 100644 index 00000000..1b01e5aa --- /dev/null +++ b/apps/www/src/lib/registry/default/block/Dashboard07.vue @@ -0,0 +1,629 @@ + + + + +