refactor to UI components

This commit is contained in:
2023-05-26 00:50:19 +02:00
parent b89816ecd5
commit 9ca0bba526
20 changed files with 160 additions and 78 deletions

4
components.d.ts vendored
View File

@@ -31,10 +31,14 @@ declare module '@vue/runtime-core' {
Spinner: typeof import('./src/components/Spinner.vue')['default']
TopBar: typeof import('./src/components/TopBar.vue')['default']
UIAlert: typeof import('./src/components/ui/UIAlert.vue')['default']
UIBadge: typeof import('./src/components/ui/UIBadge.vue')['default']
UIButton: typeof import('./src/components/ui/UIButton.vue')['default']
UIButtonGroup: typeof import('./src/components/ui/UIButtonGroup.vue')['default']
UICard: typeof import('./src/components/ui/UICard.vue')['default']
UIDropdown: typeof import('./src/components/ui/UIDropdown.vue')['default']
UIDropdownItem: typeof import('./src/components/ui/UIDropdownItem.vue')['default']
UIMenu: typeof import('./src/components/ui/UIMenu.vue')['default']
UIMenuItem: typeof import('./src/components/ui/UIMenuItem.vue')['default']
UIModal: typeof import('./src/components/ui/UIModal.vue')['default']
UITable: typeof import('./src/components/ui/UITable.vue')['default']
UITextInput: typeof import('./src/components/ui/UITextInput.vue')['default']