Move avatar initials, fallback styling, and loading/loading-state UI into ProfilePicture and update components to use it. Export ProfilePicture from the lib index.
33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
// Reusable UI Components
|
|
export { default as Input } from './components/Input.svelte';
|
|
export { default as Button } from './components/Button.svelte';
|
|
export { default as ErrorMessage } from './components/ErrorMessage.svelte';
|
|
export { default as ProfilePanel } from './components/ProfilePanel.svelte';
|
|
export { default as ProfilePicture } from './components/ProfilePicture.svelte';
|
|
export { default as ProfilePictureSheet } from './components/ProfilePictureSheet.svelte';
|
|
export { default as Header } from './components/Header.svelte';
|
|
export { default as Modal } from './components/Modal.svelte';
|
|
export { default as Map } from './components/Map.svelte';
|
|
export { default as LocationButton } from './components/LocationButton.svelte';
|
|
export { default as LocationManager } from './components/LocationManager.svelte';
|
|
export { default as FindCard } from './components/FindCard.svelte';
|
|
export { default as FindsList } from './components/FindsList.svelte';
|
|
|
|
// Skeleton Loading Components
|
|
export { Skeleton, SkeletonVariants } from './components/skeleton';
|
|
|
|
// Location utilities and stores
|
|
export { geolocationService } from './utils/geolocation';
|
|
export {
|
|
locationActions,
|
|
locationStore,
|
|
coordinates,
|
|
locationStatus,
|
|
locationError,
|
|
isLocationLoading,
|
|
hasLocationAccess,
|
|
isWatching,
|
|
getMapCenter,
|
|
getMapZoom
|
|
} from './stores/location';
|