- Added a custom light theme in app.css to match the dark theme's palette. - Introduced AdminBreadcrumbs component for improved navigation in admin pages. - Implemented Skeleton component for loading states in various views. - Added ToastContainer for displaying notifications and alerts. - Enhanced MapView with loading indicators and improved marker handling. - Updated MapCoordsDisplay to allow copying of shareable links. - Refactored MapControls and MapContextMenu for better usability. - Improved user experience in profile and admin pages with loading states and search functionality.
11 lines
195 B
Vue
11 lines
195 B
Vue
<template>
|
|
<div
|
|
class="animate-pulse rounded-md bg-base-300"
|
|
:class="$attrs.class"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineOptions({ inheritAttrs: false })
|
|
</script>
|