Update environment configuration, enhance component functionality, and improve project structure. Added Umami analytics configuration to .env.example and updated astro.config.mjs to use the new site URL. Introduced pagination component in BlogOverview.svelte, refactored image handling in ImageGalleryBlock.svelte, and improved SearchableTextBlock.svelte with tooltip support. Updated package.json with new scripts for Firebase deployment and added new dependencies for Storybook and Firebase. Enhanced styling and layout across various components for better user experience.

This commit is contained in:
Peter Meier
2026-02-27 14:13:38 +01:00
parent bb6ec20d45
commit 1f5454d04e
68 changed files with 3668 additions and 265 deletions
+3 -3
View File
@@ -2543,7 +2543,7 @@ export interface components {
* @enum {string}
*/
alignment: "left" | "center" | "right";
/** @description Markdown/body text content */
/** @description Markdown/body text: either inline or file reference (file:path, e.g. file:slug.content.md) */
content?: string;
/** @description Column width (grid) like CF_ComponentLayout */
layout?: {
@@ -2587,7 +2587,7 @@ export interface components {
* @enum {string}
*/
alignment: "left" | "center" | "right";
/** @description Markdown/body text content */
/** @description Markdown/body text: either inline or file reference (file:path, e.g. file:slug.content.md) */
content?: string;
/** @description Column width (grid) like CF_ComponentLayout */
layout?: {
@@ -10469,7 +10469,7 @@ export interface operations {
fit?: "fill" | "contain" | "cover";
/** @description Output format */
format?: "jpeg" | "png" | "webp" | "avif";
/** @description JPEG quality (1100) */
/** @description Quality 1100 for JPEG and WebP (lossy) */
quality?: number;
};
header?: never;