diff --git a/docs/guide/button/button.md b/docs/guide/button/button.md index 468457a..f34201e 100644 --- a/docs/guide/button/button.md +++ b/docs/guide/button/button.md @@ -22,7 +22,7 @@ reference: [https://flowbite.com/docs/components/buttons/](https://flowbite.com/ ## Prop - color ```typescript -type ButtonVariant = 'default' | 'alternative' | 'dark' | 'light' | 'green' | 'red' | 'yellow' | 'purple' +type ButtonVariant = 'default' | 'alternative' | 'dark' | 'light' | 'green' | 'red' | 'yellow' | 'purple' | 'pink' | 'blue' defineProps({ color: { type: String as PropType, diff --git a/docs/guide/button/examples/ButtonColorExample.vue b/docs/guide/button/examples/ButtonColorExample.vue index 3e63035..1e66115 100644 --- a/docs/guide/button/examples/ButtonColorExample.vue +++ b/docs/guide/button/examples/ButtonColorExample.vue @@ -8,6 +8,7 @@ + diff --git a/docs/guide/flowbiteThemable/examples/dropdown/FlowbiteThemableDropdownExample.vue b/docs/guide/flowbiteThemable/examples/dropdown/FlowbiteThemableDropdownExample.vue new file mode 100644 index 0000000..b7691d1 --- /dev/null +++ b/docs/guide/flowbiteThemable/examples/dropdown/FlowbiteThemableDropdownExample.vue @@ -0,0 +1,29 @@ + + diff --git a/docs/guide/flowbiteThemable/flowbiteThemable.md b/docs/guide/flowbiteThemable/flowbiteThemable.md index 1b247ff..34482d3 100644 --- a/docs/guide/flowbiteThemable/flowbiteThemable.md +++ b/docs/guide/flowbiteThemable/flowbiteThemable.md @@ -2,6 +2,8 @@ import FlowbiteThemableTabsPillsExample from './examples/tabs/FlowbiteThemableTabsPillsExample.vue'; import FlowbiteThemableTabsUnderlineExample from './examples/tabs/FlowbiteThemableTabsUnderlineExample.vue'; import FlowbiteThemableTabsDefaultExample from './examples/tabs/FlowbiteThemableTabsDefaultExample.vue'; +import FlowbiteThemableDropdownExample from './examples/dropdown/FlowbiteThemableDropdownExample.vue'; +import FlowbiteThemableButtonExample from './examples/button/FlowbiteThemableButtonExample.vue'; # Flowbite Themable @@ -12,12 +14,12 @@ You can use this wrapper for styling components with no color prop(like tabs, dr ```vue