Components renaming (#225)

* refactor: eslint config adjusted for better diff's

* refactor: stricter linting
 + dependencies updated

* refactoring: paragraph component
 - component
 - docs

* refactoring: heading component
 - component
 - docs

* Update docs/components/heading.md

Co-authored-by: Ilya Artamonov <ilya.sosidka@gmail.com>

* refactoring: link component
 - component
 - docs

* refactoring: image component
 - component
 - docs

* refactoring: alert component
 - component
 - docs

* refactoring: avatar component
 - component
 - docs

* refactoring: removed unnecessary code
    - component names come from the file name

* refactoring: breadcrumb component
 - component
 - docs

* refactoring: accordion component
 - component
 - docs

* refactoring: buttom component
 - component
 - docs

* refactoring: badge component
 - component
 - docs

* refactoring: card component
 - component
 - docs

* refactoring: order of components in docs updated

* refactoring: unnecessary semicolons removed

* refactoring: button group component
 - component
 - docs

* refactoring: carousel component
 - component
 - docs

* refactoring: dropdown component
 - component
 - docs

* refactoring: footer component
 - component
 - docs

* refactoring:list-group component
 - component
 - docs

* refactoring: modal component
 - component
 - docs

* refactoring: navbar component
 - component
 - docs

* refactoring: pagination component
 - component
 - docs

* refactoring: progress component
 - component
 - docs

* refactoring: rating component
 - component
 - docs

* refactoring: spinner component
 - component
 - docs

* refactoring: table component
 - component
 - docs

* refactoring: tabs component
 - component
 - docs

* feat: Updated pagination examples

* lint: Lister fixes

* feat: Sidebar component and some fixes

* feat: Input component

* feat: Some fixes

* feat: Some fixes

* chore: update deps

* refactor: removed old Modal component

* refactor: radio component and some fixes

* fix: fixed path error

* refactor: Range component

* refactoring: timeline component
 - component
 - docs

* refactor: Select component

* refactoring: toast component
 - component
 - docs

* refactoring: tooltip component
 - component
 - docs

* refactoring: sidebar component
 - component
 - docs

* refactoring: input component
 - component
 - docs

* refactoring: fileInput component
 - component
 - docs

* refactoring: select component
 - component
 - docs

* refactoring: textarea component
 - component
 - docs

* refactoring: checkbox component
 - component
 - docs

* refactoring: radio component
 - component
 - docs

* refactoring: toggle component
 - component
 - docs

* refactoring: range component
 - component
 - docs

* local configs linted

* documentation quick start updated

* flowbite-themable refactored to fit new linters and style guide

* random linter fixes

* refactoring: toast-provider component
 - component
 - docs

* final linter fixes

* lint: Linter fixes

* fix: Fixed types

* fix: Fixed card component

* docs: Updated card examples

* fix: Fixed tabs

* refactor: Heading component refactoring

* Fwb rename - few fixes after component review (#237)

* fix: button documentation

* fix: model type in range examples

* chore: Toast marked as WIP

---------

Co-authored-by: Sqrcz <naorniakowski@slashlab.pl>
Co-authored-by: Sqrcz <naorniakowski@gmail.com>
This commit is contained in:
Ilya Artamonov
2023-10-23 18:23:14 +03:00
committed by GitHub
parent ea6fcf1a4c
commit d316cf3a12
600 changed files with 16349 additions and 10239 deletions

View File

@@ -0,0 +1,62 @@
<template>
<div class="vp-raw">
<fwb-table>
<fwb-table-head>
<fwb-table-head-cell>Product name</fwb-table-head-cell>
<fwb-table-head-cell>Color</fwb-table-head-cell>
<fwb-table-head-cell>Category</fwb-table-head-cell>
<fwb-table-head-cell>Price</fwb-table-head-cell>
<fwb-table-head-cell>
<span class="sr-only">Edit</span>
</fwb-table-head-cell>
</fwb-table-head>
<fwb-table-body>
<fwb-table-row>
<fwb-table-cell>Apple MacBook Pro 17"</fwb-table-cell>
<fwb-table-cell>Sliver</fwb-table-cell>
<fwb-table-cell>Laptop</fwb-table-cell>
<fwb-table-cell>$2999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Microsoft Surface Pro</fwb-table-cell>
<fwb-table-cell>White</fwb-table-cell>
<fwb-table-cell>Laptop PC</fwb-table-cell>
<fwb-table-cell>$1999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Magic Mouse 2</fwb-table-cell>
<fwb-table-cell>Black</fwb-table-cell>
<fwb-table-cell>Accessories</fwb-table-cell>
<fwb-table-cell>$99</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
</fwb-table-body>
</fwb-table>
</div>
</template>
<script setup>
import {
FwbA,
FwbTable,
FwbTableBody,
FwbTableCell,
FwbTableHead,
FwbTableHeadCell,
FwbTableRow,
} from '../../../../src/index'
</script>

View File

@@ -0,0 +1,62 @@
<template>
<div class="vp-raw">
<fwb-table hoverable>
<fwb-table-head>
<fwb-table-head-cell>Product name</fwb-table-head-cell>
<fwb-table-head-cell>Color</fwb-table-head-cell>
<fwb-table-head-cell>Category</fwb-table-head-cell>
<fwb-table-head-cell>Price</fwb-table-head-cell>
<fwb-table-head-cell>
<span class="sr-only">Edit</span>
</fwb-table-head-cell>
</fwb-table-head>
<fwb-table-body>
<fwb-table-row>
<fwb-table-cell>Apple MacBook Pro 17"</fwb-table-cell>
<fwb-table-cell>Sliver</fwb-table-cell>
<fwb-table-cell>Laptop</fwb-table-cell>
<fwb-table-cell>$2999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Microsoft Surface Pro</fwb-table-cell>
<fwb-table-cell>White</fwb-table-cell>
<fwb-table-cell>Laptop PC</fwb-table-cell>
<fwb-table-cell>$1999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Magic Mouse 2</fwb-table-cell>
<fwb-table-cell>Black</fwb-table-cell>
<fwb-table-cell>Accessories</fwb-table-cell>
<fwb-table-cell>$99</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
</fwb-table-body>
</fwb-table>
</div>
</template>
<script setup>
import {
FwbA,
FwbTable,
FwbTableBody,
FwbTableCell,
FwbTableHead,
FwbTableHeadCell,
FwbTableRow,
} from '../../../../src/index'
</script>

View File

@@ -0,0 +1,62 @@
<template>
<div class="vp-raw">
<fwb-table striped>
<fwb-table-head>
<fwb-table-head-cell>Product name</fwb-table-head-cell>
<fwb-table-head-cell>Color</fwb-table-head-cell>
<fwb-table-head-cell>Category</fwb-table-head-cell>
<fwb-table-head-cell>Price</fwb-table-head-cell>
<fwb-table-head-cell>
<span class="sr-only">Edit</span>
</fwb-table-head-cell>
</fwb-table-head>
<fwb-table-body>
<fwb-table-row>
<fwb-table-cell>Apple MacBook Pro 17"</fwb-table-cell>
<fwb-table-cell>Sliver</fwb-table-cell>
<fwb-table-cell>Laptop</fwb-table-cell>
<fwb-table-cell>$2999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Microsoft Surface Pro</fwb-table-cell>
<fwb-table-cell>White</fwb-table-cell>
<fwb-table-cell>Laptop PC</fwb-table-cell>
<fwb-table-cell>$1999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Magic Mouse 2</fwb-table-cell>
<fwb-table-cell>Black</fwb-table-cell>
<fwb-table-cell>Accessories</fwb-table-cell>
<fwb-table-cell>$99</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
</fwb-table-body>
</fwb-table>
</div>
</template>
<script setup>
import {
FwbA,
FwbTable,
FwbTableBody,
FwbTableCell,
FwbTableHead,
FwbTableHeadCell,
FwbTableRow,
} from '../../../../src/index'
</script>

View File

@@ -0,0 +1,60 @@
<template>
<div class="vp-raw">
<fwb-table striped-columns>
<fwb-table-head>
<fwb-table-head-cell>Product name</fwb-table-head-cell>
<fwb-table-head-cell>Color</fwb-table-head-cell>
<fwb-table-head-cell>Category</fwb-table-head-cell>
<fwb-table-head-cell>Price</fwb-table-head-cell>
<fwb-table-head-cell><span class="sr-only">Edit</span></fwb-table-head-cell>
</fwb-table-head>
<fwb-table-body>
<fwb-table-row>
<fwb-table-cell>Apple MacBook Pro 17"</fwb-table-cell>
<fwb-table-cell>Sliver</fwb-table-cell>
<fwb-table-cell>Laptop</fwb-table-cell>
<fwb-table-cell>$2999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Microsoft Surface Pro</fwb-table-cell>
<fwb-table-cell>White</fwb-table-cell>
<fwb-table-cell>Laptop PC</fwb-table-cell>
<fwb-table-cell>$1999</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
<fwb-table-row>
<fwb-table-cell>Magic Mouse 2</fwb-table-cell>
<fwb-table-cell>Black</fwb-table-cell>
<fwb-table-cell>Accessories</fwb-table-cell>
<fwb-table-cell>$99</fwb-table-cell>
<fwb-table-cell>
<fwb-a href="#">
Edit
</fwb-a>
</fwb-table-cell>
</fwb-table-row>
</fwb-table-body>
</fwb-table>
</div>
</template>
<script setup>
import {
FwbA,
FwbTable,
FwbTableBody,
FwbTableCell,
FwbTableHead,
FwbTableHeadCell,
FwbTableRow,
} from '../../../../src/index'
</script>

View File

@@ -1,43 +0,0 @@
<template>
<Table>
<table-head>
<table-head-cell>Product name</table-head-cell>
<table-head-cell>Color</table-head-cell>
<table-head-cell>Category</table-head-cell>
<table-head-cell>Price</table-head-cell>
<table-head-cell><span class="sr-only">Edit</span></table-head-cell>
</table-head>
<table-body>
<table-row>
<table-cell>Apple MacBook Pro 17"</table-cell>
<table-cell>Sliver</table-cell>
<table-cell>Laptop</table-cell>
<table-cell>$2999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Microsoft Surface Pro</table-cell>
<table-cell>White</table-cell>
<table-cell>Laptop PC</table-cell>
<table-cell>$1999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Magic Mouse 2</table-cell>
<table-cell>Black</table-cell>
<table-cell>Accessories</table-cell>
<table-cell>$99</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
</table-body>
</Table>
</template>
<script setup>
import { Table, TableHead, TableBody, TableHeadCell, TableRow, TableCell } from '../../../../src/index'
</script>

View File

@@ -1,43 +0,0 @@
<template>
<Table hoverable>
<table-head>
<table-head-cell>Product name</table-head-cell>
<table-head-cell>Color</table-head-cell>
<table-head-cell>Category</table-head-cell>
<table-head-cell>Price</table-head-cell>
<table-head-cell><span class="sr-only">Edit</span></table-head-cell>
</table-head>
<table-body>
<table-row>
<table-cell>Apple MacBook Pro 17"</table-cell>
<table-cell>Sliver</table-cell>
<table-cell>Laptop</table-cell>
<table-cell>$2999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Microsoft Surface Pro</table-cell>
<table-cell>White</table-cell>
<table-cell>Laptop PC</table-cell>
<table-cell>$1999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Magic Mouse 2</table-cell>
<table-cell>Black</table-cell>
<table-cell>Accessories</table-cell>
<table-cell>$99</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
</table-body>
</Table>
</template>
<script setup>
import { Table, TableHead, TableBody, TableHeadCell, TableRow, TableCell } from '../../../../src/index'
</script>

View File

@@ -1,43 +0,0 @@
<template>
<Table striped-columns>
<table-head>
<table-head-cell>Product name</table-head-cell>
<table-head-cell>Color</table-head-cell>
<table-head-cell>Category</table-head-cell>
<table-head-cell>Price</table-head-cell>
<table-head-cell><span class="sr-only">Edit</span></table-head-cell>
</table-head>
<table-body>
<table-row>
<table-cell>Apple MacBook Pro 17"</table-cell>
<table-cell>Sliver</table-cell>
<table-cell>Laptop</table-cell>
<table-cell>$2999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Microsoft Surface Pro</table-cell>
<table-cell>White</table-cell>
<table-cell>Laptop PC</table-cell>
<table-cell>$1999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Magic Mouse 2</table-cell>
<table-cell>Black</table-cell>
<table-cell>Accessories</table-cell>
<table-cell>$99</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
</table-body>
</Table>
</template>
<script setup>
import { Table, TableHead, TableBody, TableHeadCell, TableRow, TableCell } from '../../../../src/index'
</script>

View File

@@ -1,43 +0,0 @@
<template>
<Table striped>
<table-head>
<table-head-cell>Product name</table-head-cell>
<table-head-cell>Color</table-head-cell>
<table-head-cell>Category</table-head-cell>
<table-head-cell>Price</table-head-cell>
<table-head-cell><span class="sr-only">Edit</span></table-head-cell>
</table-head>
<table-body>
<table-row>
<table-cell>Apple MacBook Pro 17"</table-cell>
<table-cell>Sliver</table-cell>
<table-cell>Laptop</table-cell>
<table-cell>$2999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Microsoft Surface Pro</table-cell>
<table-cell>White</table-cell>
<table-cell>Laptop PC</table-cell>
<table-cell>$1999</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
<table-row>
<table-cell>Magic Mouse 2</table-cell>
<table-cell>Black</table-cell>
<table-cell>Accessories</table-cell>
<table-cell>$99</table-cell>
<table-cell>
<a href="#" class="font-medium text-blue-600 dark:text-blue-500 hover:underline">Edit</a>
</table-cell>
</table-row>
</table-body>
</Table>
</template>
<script setup>
import { Table, TableHead, TableBody, TableHeadCell, TableRow, TableCell } from '../../../../src/index'
</script>