diff --git a/src/migrations/index.ts b/src/migrations/index.ts index f2a0b42..042a6d4 100644 --- a/src/migrations/index.ts +++ b/src/migrations/index.ts @@ -4,6 +4,7 @@ import * as migration_20260226_095439 from './20260226_095439'; import * as migration_20260302_145030 from './20260302_145030'; import * as migration_20260304_194657 from './20260304_194657'; import * as migration_20260304_203759 from './20260304_203759'; +import * as migration_20260313_081702 from './20260313_081702'; export const migrations = [ { @@ -34,6 +35,11 @@ export const migrations = [ { up: migration_20260304_203759.up, down: migration_20260304_203759.down, - name: '20260304_203759' + name: '20260304_203759', + }, + { + up: migration_20260313_081702.up, + down: migration_20260313_081702.down, + name: '20260313_081702' }, ]; diff --git a/src/payload-types.ts b/src/payload-types.ts index b909ce8..86c36e7 100644 --- a/src/payload-types.ts +++ b/src/payload-types.ts @@ -559,6 +559,9 @@ export interface FDUspChecklistBlock { }[] | null; image?: (number | null) | Media; + imageOverlay?: + | ('none' | 'navyLight' | 'navyMedium' | 'yellowLight' | 'yellowMedium' | 'sepia' | 'blackLight' | 'blackMedium') + | null; imagePosition?: ('right' | 'left') | null; checkColor?: ('navy' | 'yellow' | 'gray') | null; sectionBackground?: ('white' | 'gray' | 'navy') | null; @@ -581,6 +584,9 @@ export interface FDWideCardBlock { ctaText?: string | null; ctaLink?: string | null; image?: (number | null) | Media; + imageOverlay?: + | ('none' | 'navyLight' | 'navyMedium' | 'yellowLight' | 'yellowMedium' | 'sepia' | 'blackLight' | 'blackMedium') + | null; cardBackground?: ('navy' | 'yellow' | 'gray' | 'white') | null; buttonColor?: ('yellow' | 'navy' | 'white') | null; sectionBackground?: ('white' | 'gray' | 'navy') | null; @@ -942,6 +948,9 @@ export interface FDAlternateHeroBlock { */ image?: (number | null) | Media; imageCaption?: string | null; + imageOverlay?: + | ('none' | 'navyLight' | 'navyMedium' | 'yellowLight' | 'yellowMedium' | 'sepia' | 'blackLight' | 'blackMedium') + | null; sectionBackground?: ('white' | 'navy' | 'gray') | null; /** * Valfritt. Används för att länka direkt till denna sektion, t.ex. "priser" ger /sida#priser. Använd bara små bokstäver, siffror och bindestreck. @@ -2282,6 +2291,7 @@ export interface FDUspChecklistBlockSelect { id?: T; }; image?: T; + imageOverlay?: T; imagePosition?: T; checkColor?: T; sectionBackground?: T; @@ -2300,6 +2310,7 @@ export interface FDWideCardBlockSelect { ctaText?: T; ctaLink?: T; image?: T; + imageOverlay?: T; cardBackground?: T; buttonColor?: T; sectionBackground?: T; @@ -2425,6 +2436,7 @@ export interface FDAlternateHeroBlockSelect { secondaryCtaLink?: T; image?: T; imageCaption?: T; + imageOverlay?: T; sectionBackground?: T; anchorId?: T; id?: T;