diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index a4feb66..01780ed 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -30,6 +30,25 @@ function getComponents() { { text: 'Dropdown', link: '/guide/dropdown/dropdown.md' }, { text: 'Spinner', link: '/guide/spinner/spinner.md' }, { text: 'Tabs', link: '/guide/tabs/tabs.md' }, + + { text: 'Accordion', link: 'guide/accordion/accordion.md' }, + { text: 'Avatar', link: 'guide/avatar/avatar.md' }, + { text: 'Badge', link: 'guide/badge/badge.md' }, + { text: 'Breadcrumb', link: 'guide/breadcrumb/breadcrumb.md' }, + { text: 'Card', link: 'guide/card/card.md' }, + { text: 'Carousel', link: 'guide/carousel/carousel.md' }, + { text: 'Footer', link: 'guide/footer/footer.md' }, + { text: 'ListGroup', link: 'guide/listGroup/listGroup.md' }, + { text: 'Modal', link: 'guide/modal/modal.md' }, + { text: 'Navbar', link: 'guide/navbar/navbar.md' }, + { text: 'Pagination', link: 'guide/pagination/pagination.md' }, + { text: 'Progress', link: 'guide/progress/progress.md' }, + { text: 'Rating', link: 'guide/rating/rating.md' }, + { text: 'Sidebar', link: 'guide/sidebar/sidebar.md' }, + { text: 'Table', link: 'guide/table/table.md' }, + { text: 'Timeline', link: 'guide/timeline/timeline.md' }, + { text: 'Toast', link: 'guide/toast/toast.md' }, + { text: 'Tooltip', link: 'guide/tooltip/tooltip.md' }, ] } diff --git a/docs/guide/accordion/accordion.md b/docs/guide/accordion/accordion.md new file mode 100644 index 0000000..63f2650 --- /dev/null +++ b/docs/guide/accordion/accordion.md @@ -0,0 +1,15 @@ + +# Accordion + +```vue + + +``` + + diff --git a/docs/guide/accordion/examples/AccordionExample.vue b/docs/guide/accordion/examples/AccordionExample.vue new file mode 100644 index 0000000..4d214c1 --- /dev/null +++ b/docs/guide/accordion/examples/AccordionExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/avatar/avatar.md b/docs/guide/avatar/avatar.md new file mode 100644 index 0000000..63b1c84 --- /dev/null +++ b/docs/guide/avatar/avatar.md @@ -0,0 +1,15 @@ + +# Avatar + +```vue + + +``` + + diff --git a/docs/guide/avatar/examples/AvatarExample.vue b/docs/guide/avatar/examples/AvatarExample.vue new file mode 100644 index 0000000..316eb82 --- /dev/null +++ b/docs/guide/avatar/examples/AvatarExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/badge/badge.md b/docs/guide/badge/badge.md new file mode 100644 index 0000000..04fab9b --- /dev/null +++ b/docs/guide/badge/badge.md @@ -0,0 +1,15 @@ + +# Badge + +```vue + + +``` + + diff --git a/docs/guide/badge/examples/BadgeExample.vue b/docs/guide/badge/examples/BadgeExample.vue new file mode 100644 index 0000000..bd3201a --- /dev/null +++ b/docs/guide/badge/examples/BadgeExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/breadcrumb/breadcrumb.md b/docs/guide/breadcrumb/breadcrumb.md new file mode 100644 index 0000000..6e293c4 --- /dev/null +++ b/docs/guide/breadcrumb/breadcrumb.md @@ -0,0 +1,15 @@ + +# Breadcrumb + +```vue + + +``` + + diff --git a/docs/guide/breadcrumb/examples/BreadcrumbExample.vue b/docs/guide/breadcrumb/examples/BreadcrumbExample.vue new file mode 100644 index 0000000..058a910 --- /dev/null +++ b/docs/guide/breadcrumb/examples/BreadcrumbExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/card/card.md b/docs/guide/card/card.md new file mode 100644 index 0000000..0bb9b88 --- /dev/null +++ b/docs/guide/card/card.md @@ -0,0 +1,15 @@ + +# Card + +```vue + + +``` + + diff --git a/docs/guide/card/examples/CardExample.vue b/docs/guide/card/examples/CardExample.vue new file mode 100644 index 0000000..58cbc7f --- /dev/null +++ b/docs/guide/card/examples/CardExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/carousel/carousel.md b/docs/guide/carousel/carousel.md new file mode 100644 index 0000000..5e41553 --- /dev/null +++ b/docs/guide/carousel/carousel.md @@ -0,0 +1,15 @@ + +# Carousel + +```vue + + +``` + + diff --git a/docs/guide/carousel/examples/CarouselExample.vue b/docs/guide/carousel/examples/CarouselExample.vue new file mode 100644 index 0000000..8cab2e4 --- /dev/null +++ b/docs/guide/carousel/examples/CarouselExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/footer/examples/FooterExample.vue b/docs/guide/footer/examples/FooterExample.vue new file mode 100644 index 0000000..702a756 --- /dev/null +++ b/docs/guide/footer/examples/FooterExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/footer/footer.md b/docs/guide/footer/footer.md new file mode 100644 index 0000000..5874ef0 --- /dev/null +++ b/docs/guide/footer/footer.md @@ -0,0 +1,15 @@ + +# Footer + +```vue + + +``` + + diff --git a/docs/guide/listGroup/examples/ListGroupExample.vue b/docs/guide/listGroup/examples/ListGroupExample.vue new file mode 100644 index 0000000..d61689b --- /dev/null +++ b/docs/guide/listGroup/examples/ListGroupExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/listGroup/listGroup.md b/docs/guide/listGroup/listGroup.md new file mode 100644 index 0000000..44bc41c --- /dev/null +++ b/docs/guide/listGroup/listGroup.md @@ -0,0 +1,15 @@ + +# ListGroup + +```vue + + +``` + + diff --git a/docs/guide/modal/examples/ModalExample.vue b/docs/guide/modal/examples/ModalExample.vue new file mode 100644 index 0000000..aea1c27 --- /dev/null +++ b/docs/guide/modal/examples/ModalExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/modal/modal.md b/docs/guide/modal/modal.md new file mode 100644 index 0000000..ec6568b --- /dev/null +++ b/docs/guide/modal/modal.md @@ -0,0 +1,15 @@ + +# Modal + +```vue + + +``` + + diff --git a/docs/guide/navbar/examples/NavbarExample.vue b/docs/guide/navbar/examples/NavbarExample.vue new file mode 100644 index 0000000..b4084d5 --- /dev/null +++ b/docs/guide/navbar/examples/NavbarExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/navbar/navbar.md b/docs/guide/navbar/navbar.md new file mode 100644 index 0000000..3a1f9d8 --- /dev/null +++ b/docs/guide/navbar/navbar.md @@ -0,0 +1,15 @@ + +# Navbar + +```vue + + +``` + + diff --git a/docs/guide/pagination/examples/PaginationExample.vue b/docs/guide/pagination/examples/PaginationExample.vue new file mode 100644 index 0000000..548b3f3 --- /dev/null +++ b/docs/guide/pagination/examples/PaginationExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/pagination/pagination.md b/docs/guide/pagination/pagination.md new file mode 100644 index 0000000..b5e59a7 --- /dev/null +++ b/docs/guide/pagination/pagination.md @@ -0,0 +1,15 @@ + +# Pagination + +```vue + + +``` + + diff --git a/docs/guide/progress/examples/ProgressExample.vue b/docs/guide/progress/examples/ProgressExample.vue new file mode 100644 index 0000000..62c6704 --- /dev/null +++ b/docs/guide/progress/examples/ProgressExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/progress/progress.md b/docs/guide/progress/progress.md new file mode 100644 index 0000000..6e766f2 --- /dev/null +++ b/docs/guide/progress/progress.md @@ -0,0 +1,15 @@ + +# Progress + +```vue + + +``` + + diff --git a/docs/guide/rating/examples/RatingExample.vue b/docs/guide/rating/examples/RatingExample.vue new file mode 100644 index 0000000..7da2976 --- /dev/null +++ b/docs/guide/rating/examples/RatingExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/rating/rating.md b/docs/guide/rating/rating.md new file mode 100644 index 0000000..7407794 --- /dev/null +++ b/docs/guide/rating/rating.md @@ -0,0 +1,15 @@ + +# Rating + +```vue + + +``` + + diff --git a/docs/guide/sidebar/examples/SidebarExample.vue b/docs/guide/sidebar/examples/SidebarExample.vue new file mode 100644 index 0000000..b966b77 --- /dev/null +++ b/docs/guide/sidebar/examples/SidebarExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/sidebar/sidebar.md b/docs/guide/sidebar/sidebar.md new file mode 100644 index 0000000..9dfc919 --- /dev/null +++ b/docs/guide/sidebar/sidebar.md @@ -0,0 +1,15 @@ + +# Sidebar + +```vue + + +``` + + diff --git a/docs/guide/table/examples/TableExample.vue b/docs/guide/table/examples/TableExample.vue new file mode 100644 index 0000000..e2c2921 --- /dev/null +++ b/docs/guide/table/examples/TableExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/table/table.md b/docs/guide/table/table.md new file mode 100644 index 0000000..e88f195 --- /dev/null +++ b/docs/guide/table/table.md @@ -0,0 +1,15 @@ + +# Table + +```vue + + +``` + + diff --git a/docs/guide/timeline/examples/TimelineExample.vue b/docs/guide/timeline/examples/TimelineExample.vue new file mode 100644 index 0000000..2661e72 --- /dev/null +++ b/docs/guide/timeline/examples/TimelineExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/timeline/timeline.md b/docs/guide/timeline/timeline.md new file mode 100644 index 0000000..72523a3 --- /dev/null +++ b/docs/guide/timeline/timeline.md @@ -0,0 +1,15 @@ + +# Timeline + +```vue + + +``` + + diff --git a/docs/guide/toast/examples/ToastExample.vue b/docs/guide/toast/examples/ToastExample.vue new file mode 100644 index 0000000..31c80c7 --- /dev/null +++ b/docs/guide/toast/examples/ToastExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/toast/toast.md b/docs/guide/toast/toast.md new file mode 100644 index 0000000..75faac8 --- /dev/null +++ b/docs/guide/toast/toast.md @@ -0,0 +1,15 @@ + +# Toast + +```vue + + +``` + + diff --git a/docs/guide/tooltip/examples/TooltipExample.vue b/docs/guide/tooltip/examples/TooltipExample.vue new file mode 100644 index 0000000..76b75c3 --- /dev/null +++ b/docs/guide/tooltip/examples/TooltipExample.vue @@ -0,0 +1,8 @@ + + diff --git a/docs/guide/tooltip/tooltip.md b/docs/guide/tooltip/tooltip.md new file mode 100644 index 0000000..1666216 --- /dev/null +++ b/docs/guide/tooltip/tooltip.md @@ -0,0 +1,15 @@ + +# Tooltip + +```vue + + +``` + + diff --git a/src/components/Accordion/Accordion.vue b/src/components/Accordion/Accordion.vue new file mode 100644 index 0000000..b6a2780 --- /dev/null +++ b/src/components/Accordion/Accordion.vue @@ -0,0 +1,71 @@ + + diff --git a/src/components/Avatar/Avatar.vue b/src/components/Avatar/Avatar.vue new file mode 100644 index 0000000..c7e766a --- /dev/null +++ b/src/components/Avatar/Avatar.vue @@ -0,0 +1,49 @@ + + diff --git a/src/components/Badge/Badge.vue b/src/components/Badge/Badge.vue new file mode 100644 index 0000000..b5749a0 --- /dev/null +++ b/src/components/Badge/Badge.vue @@ -0,0 +1,33 @@ + + diff --git a/src/components/Breadcrumb/Breadcrumb.vue b/src/components/Breadcrumb/Breadcrumb.vue new file mode 100644 index 0000000..4424076 --- /dev/null +++ b/src/components/Breadcrumb/Breadcrumb.vue @@ -0,0 +1,33 @@ + + diff --git a/src/components/Card/Card.vue b/src/components/Card/Card.vue new file mode 100644 index 0000000..44655b0 --- /dev/null +++ b/src/components/Card/Card.vue @@ -0,0 +1,30 @@ + + diff --git a/src/components/Carousel/Carousel.vue b/src/components/Carousel/Carousel.vue new file mode 100644 index 0000000..14b7522 --- /dev/null +++ b/src/components/Carousel/Carousel.vue @@ -0,0 +1,65 @@ + + diff --git a/src/components/Footer/Footer.vue b/src/components/Footer/Footer.vue new file mode 100644 index 0000000..4faef44 --- /dev/null +++ b/src/components/Footer/Footer.vue @@ -0,0 +1,42 @@ + + diff --git a/src/components/ListGroup/ListGroup.vue b/src/components/ListGroup/ListGroup.vue new file mode 100644 index 0000000..9fd1abb --- /dev/null +++ b/src/components/ListGroup/ListGroup.vue @@ -0,0 +1,17 @@ + + diff --git a/src/components/Modal/Modal.vue b/src/components/Modal/Modal.vue new file mode 100644 index 0000000..ab1866a --- /dev/null +++ b/src/components/Modal/Modal.vue @@ -0,0 +1,68 @@ + + diff --git a/src/components/Navbar/Navbar.vue b/src/components/Navbar/Navbar.vue new file mode 100644 index 0000000..30cee40 --- /dev/null +++ b/src/components/Navbar/Navbar.vue @@ -0,0 +1,68 @@ + + diff --git a/src/components/Pagination/Pagination.vue b/src/components/Pagination/Pagination.vue new file mode 100644 index 0000000..6df6137 --- /dev/null +++ b/src/components/Pagination/Pagination.vue @@ -0,0 +1,51 @@ + + diff --git a/src/components/Progress/Progress.vue b/src/components/Progress/Progress.vue new file mode 100644 index 0000000..378c2d8 --- /dev/null +++ b/src/components/Progress/Progress.vue @@ -0,0 +1,37 @@ + + diff --git a/src/components/Rating/Rating.vue b/src/components/Rating/Rating.vue new file mode 100644 index 0000000..be45f18 --- /dev/null +++ b/src/components/Rating/Rating.vue @@ -0,0 +1,21 @@ + + diff --git a/src/components/Sidebar/Sidebar.vue b/src/components/Sidebar/Sidebar.vue new file mode 100644 index 0000000..aedbbe1 --- /dev/null +++ b/src/components/Sidebar/Sidebar.vue @@ -0,0 +1,74 @@ + + diff --git a/src/components/Table/Table.vue b/src/components/Table/Table.vue new file mode 100644 index 0000000..ff2de14 --- /dev/null +++ b/src/components/Table/Table.vue @@ -0,0 +1,104 @@ + + diff --git a/src/components/Timeline/Timeline.vue b/src/components/Timeline/Timeline.vue new file mode 100644 index 0000000..6f25935 --- /dev/null +++ b/src/components/Timeline/Timeline.vue @@ -0,0 +1,39 @@ + + diff --git a/src/components/Toast/Toast.vue b/src/components/Toast/Toast.vue new file mode 100644 index 0000000..6e23f23 --- /dev/null +++ b/src/components/Toast/Toast.vue @@ -0,0 +1,24 @@ + + diff --git a/src/components/Tooltip/Tooltip.vue b/src/components/Tooltip/Tooltip.vue new file mode 100644 index 0000000..f6c00ed --- /dev/null +++ b/src/components/Tooltip/Tooltip.vue @@ -0,0 +1,40 @@ + + diff --git a/src/index.ts b/src/index.ts index d991174..e9f0e02 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,3 +6,23 @@ export { default as Tabs } from './components/Tabs/Tabs.vue' export { default as Tab } from './components/Tabs/components/Tab/Tab.vue' export { default as Dropdown } from './components/Dropdown/Dropdown.vue' export { default as FlowbiteThemable } from './components/utils/FlowbiteThemable/FlowbiteThemable.vue' + + +export { default as Accordion } from './components/Accordion/Accordion.vue' +export { default as Avatar } from './components/Avatar/Avatar.vue' +export { default as Badge } from './components/Badge/Badge.vue' +export { default as Breadcrumb } from './components/Breadcrumb/Breadcrumb.vue' +export { default as Card } from './components/Card/Card.vue' +export { default as Carousel } from './components/Carousel/Carousel.vue' +export { default as Footer } from './components/Footer/Footer.vue' +export { default as ListGroup } from './components/ListGroup/ListGroup.vue' +export { default as Modal } from './components/Modal/Modal.vue' +export { default as Navbar } from './components/Navbar/Navbar.vue' +export { default as Pagination } from './components/Pagination/Pagination.vue' +export { default as Progress } from './components/Progress/Progress.vue' +export { default as Rating } from './components/Rating/Rating.vue' +export { default as Sidebar } from './components/Sidebar/Sidebar.vue' +export { default as Table } from './components/Table/Table.vue' +export { default as Timeline } from './components/Timeline/Timeline.vue' +export { default as Toast } from './components/Toast/Toast.vue' +export { default as Tooltip } from './components/Tooltip/Tooltip.vue' \ No newline at end of file