diff --git a/packages/visual-editor/src/components/layoutBlocks/Grid.test.tsx b/packages/visual-editor/src/components/layoutBlocks/Grid.test.tsx
index 637f1ac64..bd312c469 100644
--- a/packages/visual-editor/src/components/layoutBlocks/Grid.test.tsx
+++ b/packages/visual-editor/src/components/layoutBlocks/Grid.test.tsx
@@ -589,151 +589,6 @@ const tests: ComponentTest[] = [
},
version: 19,
},
- {
- name: "version 19 - various CTAs",
- document: {
- c_cta: { label: "CTA", link: "#" },
- yextDisplayCoordinate: { latitude: 50, longitude: 50 },
- id: "test-id",
- name: "Galaxy Grill",
- },
- props: {
- columns: 2,
- slots: [
- {
- Column: [
- {
- type: "CTAWrapper",
- props: {
- entityField: {
- field: "",
- constantValue: {
- label: "Call to Action",
- link: "#",
- linkType: "URL",
- ctaType: "textAndLink",
- },
- selectedType: "textAndLink",
- },
- variant: "primary",
- id: "CTAWrapper-025363fe-ffa3-4365-b329-f4527728fccd",
- },
- },
- {
- type: "CTAWrapper",
- props: {
- entityField: {
- field: "yextDisplayCoordinate",
- constantValue: {
- label: "Call to Action",
- link: "#",
- linkType: "URL",
- ctaType: "textAndLink",
- },
- selectedType: "getDirections",
- },
- variant: "link",
- id: "CTAWrapper-11a27319-29b5-4255-912d-c538359d051f",
- },
- },
- {
- type: "CTAWrapper",
- props: {
- entityField: {
- field: "c_cta",
- constantValue: {
- label: {
- en: "",
- hasLocalizedValue: "true",
- },
- link: "#",
- linkType: "URL",
- ctaType: "presetImage",
- presetImageType: "app-store",
- },
- selectedType: "presetImage",
- constantValueEnabled: true,
- },
- variant: "primary",
- id: "CTAWrapper-70fad148-36c1-4ef3-ac60-48a1f852f320",
- },
- },
- ],
- },
- {
- Column: [
- {
- type: "CTAGroup",
- props: {
- buttons: [
- {
- entityField: {
- field: "c_cta",
- constantValueEnabled: false,
- constantValue: {
- ctaType: "textAndLink",
- label: "Button",
- link: "#",
- },
- },
- variant: "secondary",
- },
- {
- entityField: {
- field: "",
- constantValueEnabled: true,
- constantValue: {
- ctaType: "getDirections",
- label: {
- en: "",
- hasLocalizedValue: "true",
- },
- link: "#",
- coordinate: {
- latitude: 50,
- longitude: 50,
- },
- },
- },
- variant: "secondary",
- },
- {
- entityField: {
- field: "",
- constantValueEnabled: true,
- constantValue: {
- ctaType: "presetImage",
- label: {
- en: "",
- hasLocalizedValue: "true",
- },
- link: "#",
- presetImageType: "galaxy-store",
- },
- },
- variant: "primary",
- },
- ],
- id: "CTAGroup-db66e810-ed11-47ce-b305-650f6028a01c",
- },
- },
- ],
- },
- {
- Column: [],
- },
- ],
- backgroundColor: {
- bgColor: "bg-white",
- textColor: "text-black",
- },
- liveVisibility: true,
- analytics: {
- scope: "gridSection",
- },
- },
- version: 19,
- },
{
name: "version 29 - various CTAs",
document: {
diff --git a/packages/visual-editor/src/components/pageSections/AboutSection/AboutSection.test.tsx b/packages/visual-editor/src/components/pageSections/AboutSection/AboutSection.test.tsx
index 8b24fe46f..40077d51b 100644
--- a/packages/visual-editor/src/components/pageSections/AboutSection/AboutSection.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/AboutSection/AboutSection.test.tsx
@@ -589,9 +589,9 @@ describe("AboutSection", async () => {
await page.viewport(width, height);
- await expect(`AboutSection/[${viewportName}] ${name}`).toMatchScreenshot({
- useFullPage: true,
- });
+ await expect(
+ `AboutSection/[${viewportName}] ${name}`
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
@@ -599,7 +599,7 @@ describe("AboutSection", async () => {
await interactions(page);
await expect(
`AboutSection/[${viewportName}] ${name} (after interactions)`
- ).toMatchScreenshot({ useFullPage: true });
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
}
diff --git a/packages/visual-editor/src/components/pageSections/Banner.test.tsx b/packages/visual-editor/src/components/pageSections/Banner.test.tsx
index ed051ac60..30a559e13 100644
--- a/packages/visual-editor/src/components/pageSections/Banner.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/Banner.test.tsx
@@ -22,45 +22,6 @@ const tests: ComponentTest[] = [
props: { ...BannerSection.defaultProps },
version: migrationRegistry.length,
},
- {
- name: "version 0 props with entity values",
- document: {
- name: "test",
- },
- props: {
- text: {
- field: "",
- constantValue: "Constant Text",
- constantValueEnabled: true,
- },
- textAlignment: "left",
- backgroundColor: {
- bgColor: "bg-palette-primary-dark",
- textColor: "text-white",
- },
- liveVisibility: true,
- },
- version: 0,
- },
- {
- name: "version 0 props with constant value",
- document: {
- name: "test",
- },
- props: {
- text: {
- field: "name",
- constantValue: "Constant Text",
- },
- textAlignment: "right",
- backgroundColor: {
- bgColor: "bg-palette-secondary-dark",
- textColor: "text-white",
- },
- liveVisibility: true,
- },
- version: 0,
- },
{
name: "version 1 props with entity values",
document: {
diff --git a/packages/visual-editor/src/components/pageSections/Breadcrumbs.test.tsx b/packages/visual-editor/src/components/pageSections/Breadcrumbs.test.tsx
deleted file mode 100644
index 65c2e2775..000000000
--- a/packages/visual-editor/src/components/pageSections/Breadcrumbs.test.tsx
+++ /dev/null
@@ -1,190 +0,0 @@
-import * as React from "react";
-import { describe, it, expect } from "vitest";
-import {
- axe,
- ComponentTest,
- transformTests,
-} from "../testing/componentTests.setup.ts";
-import { render as reactRender } from "@testing-library/react";
-import {
- BreadcrumbsSection,
- migrate,
- migrationRegistry,
- VisualEditorProvider,
-} from "@yext/visual-editor";
-import { Render, Config } from "@measured/puck";
-import { page } from "@vitest/browser/context";
-
-const tests: ComponentTest[] = [
- {
- name: "default props with empty document",
- document: {},
- props: { ...BreadcrumbsSection.defaultProps },
- version: migrationRegistry.length,
- },
- {
- name: "default props with document data",
- document: {
- name: "Galaxy Grill",
- dm_directoryParents_63590_locations: [
- { name: "Locations Directory", slug: "en/index.html" },
- {
- name: "US",
- slug: "en/us",
- dm_addressCountryDisplayName: "United States",
- },
- {
- name: "NY",
- slug: "en/us/ny",
- dm_addressCountryDisplayName: "United States",
- dm_addressRegionDisplayName: "New York",
- },
- {
- name: "Brooklyn",
- slug: "en/us/ny/brooklyn",
- dm_addressCountryDisplayName: "United States",
- dm_addressRegionDisplayName: "New York",
- },
- ],
- },
- props: { ...BreadcrumbsSection.defaultProps },
- version: migrationRegistry.length,
- },
- {
- name: "version 4 props",
- document: {
- name: "Galaxy Grill",
- dm_directoryParents_63590_locations: [
- { name: "Locations Directory", slug: "en/index.html" },
- {
- name: "US",
- slug: "en/us",
- dm_addressCountryDisplayName: "United States",
- },
- {
- name: "NY",
- slug: "en/us/ny",
- dm_addressCountryDisplayName: "United States",
- dm_addressRegionDisplayName: "New York",
- },
- {
- name: "Brooklyn",
- slug: "en/us/ny/brooklyn",
- dm_addressCountryDisplayName: "United States",
- dm_addressRegionDisplayName: "New York",
- },
- ],
- },
- props: {
- data: {
- directoryRoot: "Locations Directory",
- },
- liveVisibility: true,
- },
- version: 4,
- },
- {
- name: "version 8 with non-default props with document data",
- document: {
- name: "Galaxy Grill",
- dm_directoryParents_63590_locations: [
- { name: "Locations Directory", slug: "en/index.html" },
- {
- name: "US",
- slug: "en/us",
- dm_addressCountryDisplayName: "United States",
- },
- {
- name: "NY",
- slug: "en/us/ny",
- dm_addressCountryDisplayName: "United States",
- dm_addressRegionDisplayName: "New York",
- },
- {
- name: "Brooklyn",
- slug: "en/us/ny/brooklyn",
- dm_addressCountryDisplayName: "United States",
- dm_addressRegionDisplayName: "New York",
- },
- ],
- },
- props: {
- data: {
- directoryRoot:
- "Locations Directory with a really really really really long directory root prop - Locations Directory - Locations Directory - Locations Directory - Locations Directory - Locations Directory",
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- },
- liveVisibility: true,
- },
- version: 8,
- },
-];
-
-describe("BreadcrumbsSection", async () => {
- const puckConfig: Config = {
- components: { BreadcrumbsSection },
- root: {
- render: ({ children }: { children: React.ReactNode }) => {
- return <>{children}>;
- },
- },
- };
- it.each(transformTests(tests))(
- "$viewport.name $name",
- async ({
- document,
- name,
- props,
- interactions,
- version,
- viewport: { width, height, name: viewportName },
- }) => {
- const data = migrate(
- {
- root: {
- props: {
- version,
- },
- },
- content: [
- {
- type: "BreadcrumbsSection",
- props: props,
- },
- ],
- },
- migrationRegistry,
- puckConfig,
- document
- );
-
- const { container } = reactRender(
-
-
-
- );
-
- await page.viewport(width, height);
-
- await expect(
- `BreadcrumbsSection/[${viewportName}] ${name}`
- ).toMatchScreenshot();
- const results = await axe(container);
- expect(results).toHaveNoViolations();
-
- if (interactions) {
- await interactions(page);
- await expect(
- `BreadcrumbsSection/[${viewportName}] ${name} (after interactions)`
- ).toMatchScreenshot();
- const results = await axe(container);
- expect(results).toHaveNoViolations();
- }
- }
- );
-});
diff --git a/packages/visual-editor/src/components/pageSections/CoreInfoSection.test.tsx b/packages/visual-editor/src/components/pageSections/CoreInfoSection.test.tsx
index 1b904e399..aadcaafee 100644
--- a/packages/visual-editor/src/components/pageSections/CoreInfoSection.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/CoreInfoSection.test.tsx
@@ -54,170 +54,6 @@ const tests: ComponentTest[] = [
props: { ...CoreInfoSection.defaultProps },
version: migrationRegistry.length,
},
- {
- name: "version 0 props with entity values",
- document: {
- locale: "en",
- address: testAddress,
- mainPhone: "+18005551010",
- emails: ["sumo@yext.com"],
- hours: testHours,
- services: ["Delivery", "Catering"],
- id: "test-id",
- description: "test-description",
- name: "Galaxy Grill",
- },
- props: {
- styles: {
- headingLevel: 3,
- backgroundColor: { bgColor: "bg-white", textColor: "text-black" },
- },
- address: {
- headingText: {
- field: "id",
- constantValue: "Information",
- constantValueEnabled: false,
- constantValueOverride: {},
- },
- address: {
- field: "address",
- constantValue: {
- line1: "",
- city: "",
- postalCode: "",
- countryCode: "",
- },
- },
- showGetDirectionsLink: true,
- },
- phoneNumbers: {
- phoneNumber: [
- { number: { field: "mainPhone", constantValue: "" }, label: "Phone" },
- ],
- phoneFormat: "domestic",
- includePhoneHyperlink: true,
- },
- emails: { emails: { field: "emails", constantValue: [] }, listLength: 1 },
- hours: {
- headingText: {
- field: "name",
- constantValue: "Hours",
- constantValueEnabled: false,
- constantValueOverride: {},
- },
- hours: { field: "hours", constantValue: {} },
- startOfWeek: "today",
- collapseDays: false,
- showAdditionalHoursText: true,
- },
- services: {
- headingText: {
- field: "description",
- constantValue: "Services",
- constantValueEnabled: false,
- constantValueOverride: {},
- },
- servicesList: { field: "services", constantValue: [] },
- },
- },
- version: 0,
- },
- {
- name: "version 0 props with constant value",
- document: {
- locale: "en",
- address: testAddress,
- mainPhone: "+18005551010",
- emails: ["sumo@yext.com"],
- hours: testHours,
- services: ["Delivery", "Catering"],
- id: "test-id",
- description: "test-description",
- name: "Galaxy Grill",
- },
- props: {
- styles: {
- headingLevel: 6,
- backgroundColor: {
- bgColor: "bg-palette-secondary-dark",
- textColor: "text-white",
- },
- },
- address: {
- headingText: {
- field: "id",
- constantValue: "Information",
- constantValueEnabled: true,
- },
- address: {
- field: "address",
- constantValue: {
- line1: "Test",
- city: "Arlington",
- postalCode: "",
- countryCode: "",
- region: "VA",
- },
- constantValueEnabled: true,
- },
- showGetDirectionsLink: false,
- },
- phoneNumbers: {
- phoneNumber: [
- {
- number: {
- field: "mainPhone",
- constantValue: "5555551010",
- constantValueEnabled: true,
- },
- label: "Main",
- },
- {
- number: {
- field: "",
- constantValue: "8888888888",
- constantValueEnabled: true,
- },
- label: "Cell",
- },
- ],
- phoneFormat: "domestic",
- includePhoneHyperlink: false,
- },
- emails: {
- emails: {
- field: "emails",
- constantValue: ["email1@yext.com", "email2@yext.com"],
- constantValueEnabled: true,
- },
- listLength: 2,
- },
- hours: {
- headingText: {
- field: "name",
- constantValue: "Hours",
- constantValueEnabled: true,
- },
- hours: { field: "hours", constantValue: {} },
- startOfWeek: "monday",
- collapseDays: true,
- showAdditionalHoursText: false,
- },
- services: {
- headingText: {
- field: "description",
- constantValue: "Services",
- constantValueEnabled: true,
- },
- servicesList: {
- field: "services",
- constantValue: ["Repair"],
- constantValueEnabled: true,
- },
- },
- },
- version: 0,
- },
{
name: "version 1 props with entity values",
document: {
@@ -590,94 +426,6 @@ const tests: ComponentTest[] = [
},
version: 1,
},
- {
- name: "version 1 props with partial entity values 3",
- document: {
- locale: "en",
- hours: testHours,
- services: ["Delivery", "Catering"],
- id: "test-id",
- description: "test-description",
- name: "Galaxy Grill",
- },
- props: {
- data: {
- hours: {
- headingText: {
- constantValue: "Hours",
- constantValueEnabled: false,
- constantValueOverride: {},
- field: "name",
- },
- hours: {
- constantValue: {},
- field: "hours",
- },
- },
- info: {
- address: {
- constantValue: {
- city: "",
- countryCode: "",
- line1: "",
- postalCode: "",
- },
- field: "address",
- },
- emails: {
- constantValue: [],
- field: "emails",
- },
- headingText: {
- constantValue: "",
- constantValueEnabled: true,
- constantValueOverride: {},
- field: "id",
- },
- phoneNumbers: [
- {
- label: "Phone",
- number: {
- constantValue: "",
- field: "mainPhone",
- },
- },
- ],
- },
- services: {
- headingText: {
- constantValue: "Services",
- constantValueEnabled: false,
- constantValueOverride: {},
- field: "description",
- },
- servicesList: {
- constantValue: [],
- field: "services",
- },
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-white",
- textColor: "text-black",
- },
- headingLevel: 3,
- hours: {
- collapseDays: false,
- showAdditionalHoursText: true,
- startOfWeek: "today",
- },
- info: {
- emailsListLength: 1,
- includePhoneHyperlink: true,
- phoneFormat: "domestic",
- showGetDirectionsLink: true,
- },
- },
- },
- version: 1,
- },
{
name: "version 10 props with partial entity values align right",
document: {
diff --git a/packages/visual-editor/src/components/pageSections/EventSection/EventSection.test.tsx b/packages/visual-editor/src/components/pageSections/EventSection/EventSection.test.tsx
index a2a00e4e3..c89900553 100644
--- a/packages/visual-editor/src/components/pageSections/EventSection/EventSection.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/EventSection/EventSection.test.tsx
@@ -123,224 +123,6 @@ const tests: ComponentTest[] = [
props: { ...EventSection.defaultProps },
version: migrationRegistry.length,
},
- {
- name: "version 0 props with entity values",
- document: { c_events: eventsData, name: "Test Name" },
- props: {
- data: {
- heading: {
- field: "name",
- constantValue: "Upcoming Events",
- constantValueEnabled: false,
- constantValueOverride: {},
- },
- events: {
- field: "c_events",
- constantValue: { events: [{}] },
- constantValueEnabled: false,
- constantValueOverride: {},
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-secondary-dark",
- textColor: "text-white",
- },
- cardBackgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- headingLevel: 5,
- },
- liveVisibility: true,
- },
- version: 0,
- },
- {
- name: "version 0 props with constant value",
- document: { c_events: eventsData },
- props: {
- data: {
- heading: {
- field: "name",
- constantValue: "Upcoming",
- constantValueEnabled: true,
- },
- events: {
- field: "c_exampleEvents",
- constantValue: {
- events: [
- { title: "Event 1" },
- {
- image: { url: "https://placehold.co/600x400" },
- title: "Event 2",
- dateTime: "2020-02-02T10:10",
- description: "Test Description",
- cta: { label: "Test CTA", link: "https://yext.com" },
- },
- ],
- },
- constantValueEnabled: true,
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-secondary-dark",
- textColor: "text-white",
- },
- cardBackgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- headingLevel: 2,
- },
- liveVisibility: true,
- },
- version: 0,
- },
- {
- name: "version 7 props with entity values",
- document: { c_events: eventsData, name: "Test Name" },
- props: {
- data: {
- heading: {
- field: "name",
- constantValue: "Upcoming Events",
- constantValueEnabled: false,
- constantValueOverride: {},
- },
- events: {
- field: "c_events",
- constantValue: { events: [{}] },
- constantValueEnabled: false,
- constantValueOverride: {},
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-secondary-dark",
- textColor: "text-white",
- },
- heading: {
- level: 3,
- align: "left",
- },
- cards: {
- backgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- headingLevel: 4,
- },
- },
- liveVisibility: true,
- },
- version: 7,
- },
- {
- name: "version 7 props with constant value",
- document: { c_events: eventsData },
- props: {
- data: {
- heading: {
- field: "name",
- constantValue: "Upcoming",
- constantValueEnabled: true,
- },
- events: {
- field: "c_exampleEvents",
- constantValue: {
- events: [
- { title: "Event 1" },
- {
- image: { url: "https://placehold.co/600x400" },
- title: "Event 2",
- dateTime: "2020-02-02T10:10",
- description: "Test Description",
- cta: { label: "Test CTA", link: "https://yext.com" },
- },
- ],
- },
- constantValueEnabled: true,
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-secondary-dark",
- textColor: "text-white",
- },
- heading: {
- level: 3,
- align: "left",
- },
- cards: {
- backgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- headingLevel: 4,
- },
- },
- liveVisibility: true,
- },
- version: 7,
- },
- {
- name: "version 15 props with missing ctaType",
- document: { c_events: eventsData },
- props: {
- data: {
- events: {
- field: "c_events",
- constantValue: {
- events: [
- {
- image: { url: "https://placehold.co/600x400" },
- title: "Event 1",
- dateTime: "2020-01-01T10:00",
- description: "Test Description",
- cta: {
- label: "Test CTA",
- // Missing link, linkType, and ctaType - should be added by migration
- },
- },
- {
- image: { url: "https://placehold.co/600x400" },
- title: "Event 2",
- dateTime: "2020-02-02T10:10",
- description: "Test Description",
- cta: {
- label: "Test CTA 2",
- link: "https://yext.com",
- // Missing linkType and ctaType - should be added by migration
- },
- },
- ],
- },
- constantValueEnabled: true,
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-secondary-dark",
- textColor: "text-white",
- },
- heading: {
- level: 3,
- align: "left",
- },
- cards: {
- backgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- headingLevel: 4,
- },
- },
- liveVisibility: true,
- },
- version: 15,
- },
{
name: "version 26 props with constant values",
document: { c_events: eventsData, name: "Galaxy Grill" },
@@ -1167,35 +949,63 @@ const tests: ComponentTest[] = [
version: 26,
},
{
- name: "version 48 props",
- version: 48,
+ name: "version 51 props with constant values",
+ version: 51,
document: {},
props: {
styles: {
backgroundColor: {
- bgColor: "bg-white",
- textColor: "text-black",
+ bgColor: "bg-palette-secondary-dark",
+ textColor: "text-white",
},
},
slots: {
- SectionHeadingSlot: [],
+ SectionHeadingSlot: [
+ {
+ type: "HeadingTextSlot",
+ props: {
+ id: "HeadingTextSlot-78b2b421-b527-44f2-88ac-3bbfc386a312",
+ data: {
+ text: {
+ constantValue: {
+ en: "Upcoming Events",
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ field: "",
+ },
+ },
+ styles: {
+ level: 2,
+ align: "left",
+ },
+ },
+ },
+ ],
CardsWrapperSlot: [
{
type: "EventCardsWrapper",
props: {
- id: "CardsWrapperSlot-v48",
+ id: "EventCardsWrapper-6814ff91-e468-48ae-be8b-2dc117bea46f",
data: {
- constantValue: [{ id: "card-1" }],
- constantValueEnabled: true,
field: "",
+ constantValueEnabled: true,
+ constantValue: [
+ {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1",
+ },
+ {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732",
+ },
+ ],
},
slots: {
CardSlot: [
{
type: "EventCard",
props: {
- id: "CardSlot-v48",
- data: {},
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1",
+ index: 0,
styles: {
backgroundColor: {
bgColor: "bg-white",
@@ -1208,22 +1018,103 @@ const tests: ComponentTest[] = [
{
type: "ImageSlot",
props: {
- id: "ImageSlot-v48",
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-image",
data: {
image: {
+ field: "",
+ constantValue: {
+ url: "https://images.unsplash.com/photo-1502252430442-aac78f397426?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&height=360&width=640&fit=max",
+ width: 640,
+ height: 360,
+ alternateText: "Event Image",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ aspectRatio: 1.78,
+ width: 640,
+ },
+ hideWidthProp: true,
+ className: "max-w-full h-full object-cover",
+ sizes: {
+ base: "calc(100vw - 32px)",
+ lg: "calc(maxWidth * 0.45)",
+ },
+ },
+ },
+ ],
+ TitleSlot: [
+ {
+ type: "HeadingTextSlot",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-title",
+ data: {
+ text: {
+ field: "",
+ constantValue: {
+ en: "Event 1",
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ level: 3,
+ align: "left",
+ semanticLevelOverride: 3,
+ },
+ },
+ },
+ ],
+ DateTimeSlot: [
+ {
+ type: "Timestamp",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-timestamp",
+ data: {
+ date: {
+ field: "",
+ constantValue: "",
+ constantValueEnabled: true,
+ },
+ endDate: {
+ field: "",
+ constantValue: "",
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ includeTime: true,
+ includeRange: false,
+ },
+ },
+ },
+ ],
+ DescriptionSlot: [
+ {
+ type: "BodyTextSlot",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-description",
+ data: {
+ text: {
field: "",
constantValue: {
en: {
- url: "https://placehold.co/640x360",
- height: 360,
- width: 640,
- alternateText: "Image",
+ json: "",
+ html: "",
},
hasLocalizedValue: "true",
},
constantValueEnabled: true,
},
},
+ styles: {
+ variant: "base",
+ },
+ parentStyles: {
+ className: "md:line-clamp-2",
+ },
},
},
],
@@ -1231,78 +1122,831 @@ const tests: ComponentTest[] = [
{
type: "CTASlot",
props: {
- id: "CTASlot-v48",
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-cta",
data: {
entityField: {
field: "",
constantValue: {
label: {
- en: "Learn More",
- hasLocalizedValue: "true",
- },
- link: {
- en: "#",
+ en: "",
hasLocalizedValue: "true",
},
+ link: "#",
linkType: "URL",
ctaType: "textAndLink",
},
constantValueEnabled: true,
},
},
+ styles: {
+ variant: "primary",
+ presetImage: "app-store",
+ },
+ eventName: "cta0",
},
},
],
},
+ conditionalRender: {
+ image: true,
+ title: true,
+ dateTime: true,
+ description: true,
+ cta: true,
+ },
},
},
- ],
- },
- },
- },
- ],
- },
- analytics: { scope: "eventsSection" },
- liveVisibility: true,
- },
- },
-];
-
-describe("EventSection", async () => {
- const puckConfig: Config = {
- components: { EventSection, ...SlotsCategoryComponents },
- root: {
- render: ({ children }: { children: React.ReactNode }) => {
- return <>{children}>;
- },
- },
- };
- it.each(transformTests(tests))(
- "$viewport.name $name",
- async ({
- document,
- name,
- props,
- interactions,
- version,
- viewport: { width, height, name: viewportName },
- }) => {
- let data = migrate(
- {
- root: {
- props: {
- version,
- },
- },
- content: [
- {
- type: "EventSection",
- props: props,
- },
- ],
- },
- migrationRegistry,
- puckConfig,
+ {
+ type: "EventCard",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732",
+ index: 1,
+ styles: {
+ backgroundColor: {
+ bgColor: "bg-white",
+ textColor: "text-black",
+ },
+ truncateDescription: true,
+ },
+ slots: {
+ ImageSlot: [
+ {
+ type: "ImageSlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-image",
+ data: {
+ image: {
+ field: "",
+ constantValue: {
+ url: "https://images.unsplash.com/photo-1755745360285-0633c972b0fd?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&height=360&width=640&fit=max",
+ width: 640,
+ height: 360,
+ alternateText: "Event Image",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ aspectRatio: 1.78,
+ width: 640,
+ },
+ hideWidthProp: true,
+ className: "max-w-full h-full object-cover",
+ sizes: {
+ base: "calc(100vw - 32px)",
+ lg: "calc(maxWidth * 0.45)",
+ },
+ },
+ },
+ ],
+ TitleSlot: [
+ {
+ type: "HeadingTextSlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-title",
+ data: {
+ text: {
+ field: "",
+ constantValue: {
+ en: "Event 2",
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ level: 3,
+ align: "left",
+ semanticLevelOverride: 3,
+ },
+ },
+ },
+ ],
+ DateTimeSlot: [
+ {
+ type: "Timestamp",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-timestamp",
+ data: {
+ date: {
+ field: "",
+ constantValue: "2022-12-12T14:00:00",
+ constantValueEnabled: true,
+ },
+ endDate: {
+ field: "",
+ constantValue: "",
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ includeTime: true,
+ includeRange: false,
+ },
+ },
+ },
+ ],
+ DescriptionSlot: [
+ {
+ type: "BodyTextSlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-description",
+ data: {
+ text: {
+ field: "",
+ constantValue: {
+ en: {
+ json: '{"root":{"children":[{"children":[{"detail":0,"format":0,"mode":"normal","style":"","text":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.","type":"text","version":1}],"direction":"ltr","format":"","indent":0,"type":"paragraph","version":1}],"direction":"ltr","format":"","indent":0,"type":"root","version":1}}',
+ html: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
',
+ },
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ variant: "base",
+ },
+ parentStyles: {
+ className: "md:line-clamp-2",
+ },
+ },
+ },
+ ],
+ CTASlot: [
+ {
+ type: "CTASlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-cta",
+ data: {
+ entityField: {
+ field: "",
+ constantValue: {
+ label: {
+ en: "",
+ hasLocalizedValue: "true",
+ },
+ link: "#",
+ linkType: "URL",
+ ctaType: "presetImage",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ variant: "primary",
+ presetImage: "app-store",
+ },
+ eventName: "cta1",
+ },
+ },
+ ],
+ },
+ conditionalRender: {
+ image: true,
+ title: true,
+ dateTime: true,
+ description: true,
+ cta: true,
+ },
+ },
+ },
+ ],
+ },
+ },
+ },
+ ],
+ },
+ analytics: {
+ scope: "eventsSection",
+ },
+ liveVisibility: true,
+ id: "EventSection-2fb8d8fc-66d5-442b-8d4f-8b50f3a9d8aa",
+ },
+ },
+ {
+ name: "version 51 props with entity values",
+ version: 51,
+ document: { c_exampleEvents: eventsData, name: "Galaxy Grill" },
+ props: {
+ styles: {
+ backgroundColor: {
+ bgColor: "bg-palette-quaternary",
+ textColor: "text-palette-quaternary-contrast",
+ },
+ },
+ slots: {
+ SectionHeadingSlot: [
+ {
+ type: "HeadingTextSlot",
+ props: {
+ id: "HeadingTextSlot-78b2b421-b527-44f2-88ac-3bbfc386a312",
+ data: {
+ text: {
+ constantValue: {
+ en: "Events at [[name]]",
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ field: "name",
+ },
+ },
+ styles: {
+ level: 2,
+ align: "left",
+ },
+ },
+ },
+ ],
+ CardsWrapperSlot: [
+ {
+ type: "EventCardsWrapper",
+ props: {
+ id: "EventCardsWrapper-6814ff91-e468-48ae-be8b-2dc117bea46f",
+ data: {
+ field: "c_exampleEvents",
+ constantValueEnabled: false,
+ constantValue: [
+ {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1",
+ },
+ {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732",
+ },
+ ],
+ },
+ slots: {
+ CardSlot: [
+ {
+ type: "EventCard",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1",
+ styles: {
+ backgroundColor: {
+ bgColor: "bg-white",
+ textColor: "text-black",
+ },
+ truncateDescription: true,
+ },
+ slots: {
+ ImageSlot: [
+ {
+ type: "ImageSlot",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-image",
+ data: {
+ image: {
+ field: "",
+ constantValue: {
+ url: "https://images.unsplash.com/photo-1502252430442-aac78f397426?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&height=360&width=640&fit=max",
+ width: 640,
+ height: 360,
+ alternateText: "Event Image",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ aspectRatio: 1,
+ width: 640,
+ },
+ hideWidthProp: true,
+ className: "max-w-full h-full object-cover",
+ sizes: {
+ base: "calc(100vw - 32px)",
+ lg: "calc(maxWidth * 0.45)",
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ image: {
+ alternateText: "cooking class",
+ height: 1554,
+ thumbnails: [
+ {
+ height: 1554,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/2048x1554.jpg",
+ width: 2048,
+ },
+ {
+ height: 1442,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/1900x1442.jpg",
+ width: 1900,
+ },
+ {
+ height: 470,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/619x470.jpg",
+ width: 619,
+ },
+ {
+ height: 450,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/593x450.jpg",
+ width: 593,
+ },
+ {
+ height: 149,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/196x149.jpg",
+ width: 196,
+ },
+ ],
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/2048x1554.jpg",
+ width: 2048,
+ },
+ },
+ },
+ },
+ ],
+ TitleSlot: [
+ {
+ type: "HeadingTextSlot",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-title",
+ data: {
+ text: {
+ field: "",
+ constantValue: {
+ en: "Event 1",
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ level: 3,
+ align: "left",
+ semanticLevelOverride: 3,
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ text: "Cooking Class",
+ },
+ },
+ },
+ ],
+ DateTimeSlot: [
+ {
+ type: "Timestamp",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-timestamp",
+ data: {
+ date: {
+ field: "",
+ constantValue: "",
+ constantValueEnabled: true,
+ },
+ endDate: {
+ field: "",
+ constantValue: "",
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ includeTime: true,
+ includeRange: false,
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ date: "2025-06-01T10:00",
+ },
+ },
+ },
+ ],
+ DescriptionSlot: [
+ {
+ type: "BodyTextSlot",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-description",
+ data: {
+ text: {
+ field: "",
+ constantValue: {
+ en: {
+ json: "",
+ html: "",
+ },
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ variant: "base",
+ },
+ parentStyles: {
+ className: "md:line-clamp-2",
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ richText: {
+ html: 'Join our hands-on cooking class to learn delicious recipes and unleash your inner chef. Perfect for all levels!
',
+ },
+ },
+ },
+ },
+ ],
+ CTASlot: [
+ {
+ type: "CTASlot",
+ props: {
+ id: "EventCard-697ac4e1-b489-45f2-b502-440afe8c23e1-cta",
+ data: {
+ entityField: {
+ field: "",
+ constantValue: {
+ label: {
+ en: "",
+ hasLocalizedValue: "true",
+ },
+ link: "#",
+ linkType: "URL",
+ ctaType: "textAndLink",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ variant: "primary",
+ presetImage: "app-store",
+ },
+ eventName: "cta0",
+ parentData: {
+ field: "c_exampleEvents",
+ cta: {
+ label: "Learn More",
+ link: "https://yext.com",
+ linkType: "URL",
+ },
+ },
+ },
+ },
+ ],
+ },
+ index: 0,
+ conditionalRender: {
+ image: true,
+ title: true,
+ dateTime: true,
+ description: true,
+ cta: true,
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ event: {
+ cta: {
+ label: "Learn More",
+ link: "https://yext.com",
+ linkType: "URL",
+ },
+ dateTime: "2025-06-01T10:00",
+ description: {
+ html: 'Join our hands-on cooking class to learn delicious recipes and unleash your inner chef. Perfect for all levels!
',
+ },
+ image: {
+ alternateText: "cooking class",
+ height: 1554,
+ thumbnails: [
+ {
+ height: 1554,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/2048x1554.jpg",
+ width: 2048,
+ },
+ {
+ height: 1442,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/1900x1442.jpg",
+ width: 1900,
+ },
+ {
+ height: 470,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/619x470.jpg",
+ width: 619,
+ },
+ {
+ height: 450,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/593x450.jpg",
+ width: 593,
+ },
+ {
+ height: 149,
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/196x149.jpg",
+ width: 196,
+ },
+ ],
+ url: "https://a.mktgcdn.com/p-dev/dORmX57RPQoHMVzY6eP8hBvzQit-XuqHI4LWatzrQLM/2048x1554.jpg",
+ width: 2048,
+ },
+ title: "Cooking Class",
+ },
+ },
+ },
+ },
+ {
+ type: "EventCard",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732",
+ index: 1,
+ styles: {
+ backgroundColor: {
+ bgColor: "bg-white",
+ textColor: "text-black",
+ },
+ truncateDescription: true,
+ },
+ slots: {
+ ImageSlot: [
+ {
+ type: "ImageSlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-image",
+ data: {
+ image: {
+ field: "",
+ constantValue: {
+ url: "https://images.unsplash.com/photo-1755745360285-0633c972b0fd?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&height=360&width=640&fit=max",
+ width: 640,
+ height: 360,
+ alternateText: "Event Image",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ aspectRatio: 1,
+ width: 640,
+ },
+ hideWidthProp: true,
+ className: "max-w-full h-full object-cover",
+ sizes: {
+ base: "calc(100vw - 32px)",
+ lg: "calc(maxWidth * 0.45)",
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ image: {
+ height: 2048,
+ thumbnails: [
+ {
+ height: 2048,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/2048x2048.jpg",
+ width: 2048,
+ },
+ {
+ height: 1900,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/1900x1900.jpg",
+ width: 1900,
+ },
+ {
+ height: 619,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/619x619.jpg",
+ width: 619,
+ },
+ {
+ height: 450,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/450x450.jpg",
+ width: 450,
+ },
+ {
+ height: 196,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/196x196.jpg",
+ width: 196,
+ },
+ ],
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/2048x2048.jpg",
+ width: 2048,
+ },
+ },
+ },
+ },
+ ],
+ TitleSlot: [
+ {
+ type: "HeadingTextSlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-title",
+ data: {
+ text: {
+ field: "",
+ constantValue: {
+ en: "Event 2",
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ level: 3,
+ align: "left",
+ semanticLevelOverride: 3,
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ text: "Hike",
+ },
+ },
+ },
+ ],
+ DateTimeSlot: [
+ {
+ type: "Timestamp",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-timestamp",
+ data: {
+ date: {
+ field: "",
+ constantValue: "2022-12-12T14:00:00",
+ constantValueEnabled: true,
+ },
+ endDate: {
+ field: "",
+ constantValue: "",
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ includeTime: true,
+ includeRange: false,
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ date: "2026-06-30T08:00",
+ },
+ },
+ },
+ ],
+ DescriptionSlot: [
+ {
+ type: "BodyTextSlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-description",
+ data: {
+ text: {
+ field: "",
+ constantValue: {
+ en: {
+ json: '{"root":{"children":[{"children":[{"detail":0,"format":0,"mode":"normal","style":"","text":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.","type":"text","version":1}],"direction":"ltr","format":"","indent":0,"type":"paragraph","version":1}],"direction":"ltr","format":"","indent":0,"type":"root","version":1}}',
+ html: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
',
+ },
+ hasLocalizedValue: "true",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ variant: "base",
+ },
+ parentStyles: {
+ className: "md:line-clamp-2",
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ richText: {
+ html: 'Join our group for a refreshing hike on local trails! Enjoy:
- nature
- good company
- fresh air together
',
+ },
+ },
+ },
+ },
+ ],
+ CTASlot: [
+ {
+ type: "CTASlot",
+ props: {
+ id: "EventCard-e8f62460-d459-43c9-8c88-3a2afefa1732-cta",
+ data: {
+ entityField: {
+ field: "",
+ constantValue: {
+ label: {
+ en: "",
+ hasLocalizedValue: "true",
+ },
+ link: "#",
+ linkType: "URL",
+ ctaType: "presetImage",
+ },
+ constantValueEnabled: true,
+ },
+ },
+ styles: {
+ variant: "primary",
+ presetImage: "app-store",
+ },
+ eventName: "cta1",
+ parentData: {
+ field: "c_exampleEvents",
+ cta: {
+ label: "Sign Up",
+ link: "sumo@yext.com",
+ linkType: "EMAIL",
+ },
+ },
+ },
+ },
+ ],
+ },
+ conditionalRender: {
+ image: true,
+ title: true,
+ dateTime: true,
+ description: true,
+ cta: true,
+ },
+ parentData: {
+ field: "c_exampleEvents",
+ event: {
+ cta: {
+ label: "Sign Up",
+ link: "sumo@yext.com",
+ linkType: "EMAIL",
+ },
+ dateTime: "2026-06-30T08:00",
+ description: {
+ html: 'Join our group for a refreshing hike on local trails! Enjoy:
- nature
- good company
- fresh air together
',
+ },
+ image: {
+ height: 2048,
+ thumbnails: [
+ {
+ height: 2048,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/2048x2048.jpg",
+ width: 2048,
+ },
+ {
+ height: 1900,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/1900x1900.jpg",
+ width: 1900,
+ },
+ {
+ height: 619,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/619x619.jpg",
+ width: 619,
+ },
+ {
+ height: 450,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/450x450.jpg",
+ width: 450,
+ },
+ {
+ height: 196,
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/196x196.jpg",
+ width: 196,
+ },
+ ],
+ url: "https://a.mktgcdn.com/p-dev/IBubx9o_JTORQF4dzMm51g2VlMAn4_dGfUXrVkUdNXo/2048x2048.jpg",
+ width: 2048,
+ },
+ title: "Hike",
+ },
+ },
+ },
+ },
+ ],
+ },
+ },
+ },
+ ],
+ },
+ analytics: {
+ scope: "eventsSection",
+ },
+ liveVisibility: true,
+ id: "EventSection-2fb8d8fc-66d5-442b-8d4f-8b50f3a9d8aa",
+ },
+ },
+];
+
+describe("EventSection", async () => {
+ const puckConfig: Config = {
+ components: { EventSection, ...SlotsCategoryComponents },
+ root: {
+ render: ({ children }: { children: React.ReactNode }) => {
+ return <>{children}>;
+ },
+ },
+ };
+ it.each(transformTests(tests))(
+ "$viewport.name $name",
+ async ({
+ document,
+ name,
+ props,
+ interactions,
+ version,
+ viewport: { width, height, name: viewportName },
+ }) => {
+ let data = migrate(
+ {
+ root: {
+ props: {
+ version,
+ },
+ },
+ content: [
+ {
+ type: "EventSection",
+ props: props,
+ },
+ ],
+ },
+ migrationRegistry,
+ puckConfig,
document
);
data = await resolveAllData(data, puckConfig, {
@@ -1320,9 +1964,9 @@ describe("EventSection", async () => {
expect(images.every((i) => i.complete)).toBe(true);
});
- await expect(`EventSection/[${viewportName}] ${name}`).toMatchScreenshot({
- useFullPage: true,
- });
+ await expect(
+ `EventSection/[${viewportName}] ${name}`
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
@@ -1330,7 +1974,7 @@ describe("EventSection", async () => {
await interactions(page);
await expect(
`EventSection/[${viewportName}] ${name} (after interactions)`
- ).toMatchScreenshot({ useFullPage: true });
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
}
diff --git a/packages/visual-editor/src/components/pageSections/FAQsSection/FAQsSection.test.tsx b/packages/visual-editor/src/components/pageSections/FAQsSection/FAQsSection.test.tsx
index 8ad04da3a..51ac25147 100644
--- a/packages/visual-editor/src/components/pageSections/FAQsSection/FAQsSection.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/FAQsSection/FAQsSection.test.tsx
@@ -37,19 +37,6 @@ const faqData = {
],
};
-const version10DefaultFAQ = {
- question: {
- en: getDefaultRTF("Question Lorem ipsum dolor sit amet?"),
- hasLocalizedValue: "true",
- },
- answer: {
- en: getDefaultRTF(
- "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
- ),
- hasLocalizedValue: "true",
- },
-};
-
const version35FaqData = {
faqs: [
{
@@ -90,245 +77,6 @@ const tests: ComponentTest[] = [
props: { ...FAQSection.defaultProps },
version: migrationRegistry.length,
},
- {
- name: "version 10 props with entity values",
- document: { locale: "en", c_faq: faqData, name: "test name" },
- props: {
- data: {
- heading: {
- field: "name",
- constantValue: {},
- },
- faqs: {
- field: "c_faq",
- constantValue: {},
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- heading: {
- level: 2,
- align: "left",
- },
- },
- liveVisibility: true,
- analytics: {
- scope: "faqsSection",
- },
- },
- version: 10,
- interactions: async (page) => {
- const q1 = page.getByText("What services do you offer?");
- const q2 = page.getByText("Do you have parking available?");
- await act(async () => {
- await q1.click();
- await q2.click();
- await delay(interactionsDelay);
- });
- },
- },
- {
- name: "version 10 props with constant value",
- document: { locale: "en", c_faq: faqData },
- props: {
- data: {
- heading: {
- field: "",
- constantValue: {
- en: "Frequently Asked Questions",
- hasLocalizedValue: "true",
- },
- constantValueEnabled: true,
- },
- faqs: {
- field: "",
- constantValue: {
- faqs: [
- version10DefaultFAQ,
- version10DefaultFAQ,
- version10DefaultFAQ,
- ],
- },
- constantValueEnabled: true,
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-primary-dark",
- textColor: "text-white",
- },
- heading: {
- level: 4,
- align: "right",
- },
- },
- liveVisibility: true,
- analytics: {
- scope: "faqsSection",
- },
- },
- version: 10,
- interactions: async (page) => {
- const q1 = page.getByText("Question Lorem ipsum dolor sit amet?").nth(0);
- const q2 = page.getByText("Question Lorem ipsum dolor sit amet?").nth(1);
- await act(async () => {
- await q1.click();
- await q2.click();
- await delay(interactionsDelay);
- });
- },
- },
- {
- name: "version 10 props with no data",
- document: { locale: "en" },
- props: {
- data: {
- heading: {
- field: "",
- constantValue: {
- en: "",
- hasLocalizedValue: "true",
- },
- constantValueEnabled: true,
- },
- faqs: {
- field: "",
- constantValue: {
- faqs: [],
- },
- constantValueEnabled: true,
- },
- },
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-primary-light",
- textColor: "text-black",
- },
- heading: {
- level: 2,
- align: "left",
- },
- },
- liveVisibility: true,
- analytics: {
- scope: "faqsSection",
- },
- },
- version: 10,
- },
- {
- name: "version 35 with constant values",
- document: { locale: "en" },
- props: {
- styles: {
- backgroundColor: {
- bgColor: "bg-palette-tertiary-light",
- textColor: "text-black",
- },
- },
- slots: {
- HeadingSlot: [
- {
- type: "HeadingTextSlot",
- props: {
- data: {
- text: {
- constantValue: {
- en: "FAQs Heading Slot",
- hasLocalizedValue: "true",
- },
- constantValueEnabled: true,
- field: "",
- },
- },
- styles: { level: 2, align: "left" },
- },
- },
- ],
- FAQsWrapperSlot: [
- {
- type: "FAQsWrapperSlot",
- props: {
- data: {
- field: "",
- constantValueEnabled: true,
- constantValue: [{ id: "faq-1" }],
- },
- slots: {
- CardSlot: [
- {
- type: "FAQSlot",
- props: {
- id: "faq-1",
- slots: {
- QuestionSlot: [
- {
- type: "BodyTextSlot",
- props: {
- id: "faq-1-question",
- data: {
- text: {
- field: "",
- constantValue: {
- en: getDefaultRTF(
- "What is your return policy?"
- ),
- hasLocalizedValue: "true",
- },
- constantValueEnabled: true,
- },
- },
- styles: {
- variant: "base",
- },
- },
- },
- ],
- AnswerSlot: [
- {
- type: "BodyTextSlot",
- props: {
- id: "faq-1-answer",
- data: {
- text: {
- field: "",
- constantValue: {
- en: getDefaultRTF(
- "You can return any item within 30 days of purchase."
- ),
- hasLocalizedValue: "true",
- },
- constantValueEnabled: true,
- },
- },
- styles: {
- variant: "base",
- },
- },
- },
- ],
- },
- },
- },
- ],
- },
- },
- },
- ],
- },
- },
- interactions: async (page) => {
- const q1 = page.getByText("What is your return policy?");
- await act(async () => {
- await q1.click();
- await delay(interactionsDelay);
- });
- },
- version: 35,
- },
{
name: "version 35 with entity value for FAQs and Heading",
document: {
@@ -769,7 +517,6 @@ describe("FAQSection", async () => {
await expect(`FAQsSection/[${viewportName}] ${name}`).toMatchScreenshot({
ignoreExact: ignoredScreenshotDifferences,
customThreshold: screenshotThreshold,
- useFullPage: true,
});
const results = await axe(container);
expect(results).toHaveNoViolations();
diff --git a/packages/visual-editor/src/components/pageSections/InsightSection/InsightSection.test.tsx b/packages/visual-editor/src/components/pageSections/InsightSection/InsightSection.test.tsx
index 99c7ef0db..c1010a067 100644
--- a/packages/visual-editor/src/components/pageSections/InsightSection/InsightSection.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/InsightSection/InsightSection.test.tsx
@@ -1132,7 +1132,7 @@ describe("InsightSection", async () => {
await expect(
`InsightSection/[${viewportName}] ${name}`
- ).toMatchScreenshot({ useFullPage: true });
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
@@ -1140,7 +1140,7 @@ describe("InsightSection", async () => {
await interactions(page);
await expect(
`InsightSection/[${viewportName}] ${name} (after interactions)`
- ).toMatchScreenshot({ useFullPage: true });
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
}
diff --git a/packages/visual-editor/src/components/pageSections/ProductSection/ProductSection.test.tsx b/packages/visual-editor/src/components/pageSections/ProductSection/ProductSection.test.tsx
index b515bd7b0..8e8e3327d 100644
--- a/packages/visual-editor/src/components/pageSections/ProductSection/ProductSection.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/ProductSection/ProductSection.test.tsx
@@ -1231,7 +1231,7 @@ describe("ProductSection", async () => {
await expect(
`ProductSection/[${viewportName}] ${name}`
- ).toMatchScreenshot({ useFullPage: true, customThreshold: 10 });
+ ).toMatchScreenshot({ customThreshold: 10 });
const results = await axe(container);
expect(results).toHaveNoViolations();
@@ -1239,7 +1239,7 @@ describe("ProductSection", async () => {
await interactions(page);
await expect(
`ProductSection/[${viewportName}] ${name} (after interactions)`
- ).toMatchScreenshot({ useFullPage: true, customThreshold: 10 });
+ ).toMatchScreenshot({ customThreshold: 10 });
const results = await axe(container);
expect(results).toHaveNoViolations();
}
diff --git a/packages/visual-editor/src/components/pageSections/ReviewsSection/ReviewsSection.test.tsx b/packages/visual-editor/src/components/pageSections/ReviewsSection/ReviewsSection.test.tsx
index a462bab26..09ba339e2 100644
--- a/packages/visual-editor/src/components/pageSections/ReviewsSection/ReviewsSection.test.tsx
+++ b/packages/visual-editor/src/components/pageSections/ReviewsSection/ReviewsSection.test.tsx
@@ -347,7 +347,7 @@ describe("ReviewsSection", async () => {
await expect(
`ReviewsSection/[${viewportName}] ${name}`
- ).toMatchScreenshot({ useFullPage: true });
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
@@ -355,7 +355,7 @@ describe("ReviewsSection", async () => {
await interactions(page);
await expect(
`ReviewsSection/[${viewportName}] ${name} (after interactions)`
- ).toMatchScreenshot({ useFullPage: true });
+ ).toMatchScreenshot();
const results = await axe(container);
expect(results).toHaveNoViolations();
}
diff --git a/packages/visual-editor/src/components/testing/componentTests.d.ts b/packages/visual-editor/src/components/testing/componentTests.d.ts
index 38a950541..fc585c7da 100644
--- a/packages/visual-editor/src/components/testing/componentTests.d.ts
+++ b/packages/visual-editor/src/components/testing/componentTests.d.ts
@@ -10,11 +10,6 @@ interface CustomMatchers {
* Useful for ignoring common flaky rendering issues.
*/
ignoreExact?: number[];
-
- /**
- * Whether to use full page screenshots. Defaults to false.
- */
- useFullPage?: boolean;
}) => Promise;
}
diff --git a/packages/visual-editor/src/components/testing/componentTests.setup.ts b/packages/visual-editor/src/components/testing/componentTests.setup.ts
index 446483a73..3cf4ef805 100644
--- a/packages/visual-editor/src/components/testing/componentTests.setup.ts
+++ b/packages/visual-editor/src/components/testing/componentTests.setup.ts
@@ -41,16 +41,13 @@ expect.extend({
options?: {
customThreshold?: number;
ignoreExact?: number[];
- useFullPage?: boolean;
}
) {
const updatedScreenshotData = await act(async () => {
- if (options?.useFullPage) {
- // Workaround for vitest not allowing fullPage mobile screenshots
- // See https://github.com/vitest-dev/vitest/discussions/7749
- (window.frameElement as HTMLIFrameElement).style.height =
- `${document.body.offsetHeight}px`;
- }
+ // Workaround for vitest not allowing fullPage mobile screenshots
+ // See https://github.com/vitest-dev/vitest/discussions/7749
+ (window.frameElement as HTMLIFrameElement).style.height =
+ `${document.body.offsetHeight}px`;
return page.screenshot({
save: false,
diff --git a/packages/visual-editor/src/components/testing/screenshots/AboutSection/[tablet] version 50 props with details column.png b/packages/visual-editor/src/components/testing/screenshots/AboutSection/[tablet] version 50 props with details column.png
index a9da5e5fe..9e31cf146 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/AboutSection/[tablet] version 50 props with details column.png and b/packages/visual-editor/src/components/testing/screenshots/AboutSection/[tablet] version 50 props with details column.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[desktop] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[desktop] version 0 props with constant value.png
deleted file mode 100644
index bdb23e625..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[desktop] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[desktop] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[desktop] version 0 props with entity values.png
deleted file mode 100644
index 1decc0ab9..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[desktop] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] default props with empty document.png
index a869bd9e1..659db3e59 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 0 props with constant value.png
deleted file mode 100644
index 3818e5813..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 0 props with entity values.png
deleted file mode 100644
index 3d3e4113b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with blank value.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with blank value.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with blank value.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with blank value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with constant value.png
index 3818e5813..cda2e725b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with entity values.png
index 3d3e4113b..c53650c8a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[mobile] version 1 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] default props with empty document.png
index ca8a24be6..3e2cb217f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 0 props with constant value.png
deleted file mode 100644
index 268e10f0e..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 0 props with entity values.png
deleted file mode 100644
index dff0f6a72..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with blank value.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with blank value.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with blank value.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with blank value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with constant value.png
index 268e10f0e..ac8d50b1b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with entity values.png
index dff0f6a72..25786a213 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/BannerSection/[tablet] version 1 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[desktop] version 4 props.png b/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[desktop] version 4 props.png
deleted file mode 100644
index cb13bcf58..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[desktop] version 4 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[mobile] version 4 props.png b/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[mobile] version 4 props.png
deleted file mode 100644
index 11c5ba290..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[mobile] version 4 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[tablet] version 4 props.png b/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[tablet] version 4 props.png
deleted file mode 100644
index a04a652d7..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/BreadcrumbsSection/[tablet] version 4 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 0 props with constant value.png
deleted file mode 100644
index 792de6edd..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 0 props with entity values.png
deleted file mode 100644
index 928975ff8..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 1 props with partial entity values 3.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 1 props with partial entity values 3.png
deleted file mode 100644
index be16ca309..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[desktop] version 1 props with partial entity values 3.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with document data.png
index ac2b596a0..456b05692 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with no additional document data.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with no additional document data.png
index e4eee67eb..9bc8697f8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with no additional document data.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] default props with no additional document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 0 props with constant value.png
deleted file mode 100644
index fca5defaf..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 0 props with entity values.png
deleted file mode 100644
index 082a9ac72..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with constant value.png
index fca5defaf..43e9de7ed 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with entity values.png
index 082a9ac72..d304de328 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 1.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 1.png
index 9e4b8175a..a77bfafe1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 1.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 1.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 2.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 2.png
index c3303416d..8a9e46455 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 2.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 2.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 3.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 3.png
deleted file mode 100644
index 360a95d42..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 1 props with partial entity values 3.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 10 props with partial entity values align right.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 10 props with partial entity values align right.png
index 5a5734a19..8f270bf9f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 10 props with partial entity values align right.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 10 props with partial entity values align right.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 27 props with mixed values.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 27 props with mixed values.png
index f1f63054d..8954cff6e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 27 props with mixed values.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[mobile] version 27 props with mixed values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with document data.png
index 76aaf0c5c..89d4c4f8e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with no additional document data.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with no additional document data.png
index 4008c41ad..6b245a144 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with no additional document data.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] default props with no additional document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 0 props with constant value.png
deleted file mode 100644
index 92f6d5d23..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 0 props with entity values.png
deleted file mode 100644
index 6acd33f74..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with constant value.png
index 92f6d5d23..fa2313b6d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with entity values.png
index 6acd33f74..a224254c3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 1.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 1.png
index fb07ea2b8..552c91300 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 1.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 1.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 2.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 2.png
index d85084549..f7484ac07 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 2.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 2.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 3.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 3.png
deleted file mode 100644
index b0d898c18..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 1 props with partial entity values 3.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 10 props with partial entity values align right.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 10 props with partial entity values align right.png
index fccf443cf..7247662db 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 10 props with partial entity values align right.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 10 props with partial entity values align right.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 27 props with mixed values.png b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 27 props with mixed values.png
index 180552bdc..74744f239 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 27 props with mixed values.png and b/packages/visual-editor/src/components/testing/screenshots/CoreInfoSection/[tablet] version 27 props with mixed values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 11 with default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 11 with default props.png
deleted file mode 100644
index 9ff24a84c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 11 with default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 14 with cityDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 14 with cityDocument and default props.png
deleted file mode 100644
index 1f583871f..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 14 with cityDocument and default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 18 with cityDocument and siteName field.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 18 with cityDocument and siteName field.png
index ba476b20e..0990aee2f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 18 with cityDocument and siteName field.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 18 with cityDocument and siteName field.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory cards - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory cards - default props.png
deleted file mode 100644
index 12563f20b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory cards - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory list - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory list - default props.png
deleted file mode 100644
index 5a292aa7b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory list - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory list - non-default props.png
deleted file mode 100644
index 6faeb9db6..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 4 - directory list - non-default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with cityDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with cityDocument and non-default props.png
similarity index 84%
rename from packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with cityDocument and default props.png
rename to packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with cityDocument and non-default props.png
index aa570daac..7f6f6ffd3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with cityDocument and default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with cityDocument and non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with countryDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with countryDocument and non-default props.png
similarity index 85%
rename from packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with countryDocument and default props.png
rename to packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with countryDocument and non-default props.png
index 517736cf7..20092f671 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with countryDocument and default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 40 with countryDocument and non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory cards - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory cards - default props.png
deleted file mode 100644
index 45e5f1e95..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory cards - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory list - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory list - default props.png
deleted file mode 100644
index 5a292aa7b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory list - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory list - non-default props.png
deleted file mode 100644
index 6faeb9db6..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 7 - directory list - non-default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - city - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - city - default props.png
index 58e411d9a..93e8c61f4 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - city - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - city - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - country - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - country - default props.png
index cf4546ec5..afcbd3b12 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - country - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - country - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory card - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory card - non-default props.png
index 99496231f..f6fa4eb27 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory card - non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory card - non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory list - non-default props.png
index 2c5881309..95fcc3403 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory list - non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - directory list - non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - region - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - region - default props.png
index cf4546ec5..7dd4f6066 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - region - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - region - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - root - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - root - default props.png
index 8843f7e9a..095186494 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - root - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[desktop] version 8 - root - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - city list - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - city list - document data.png
index 2468c1baf..fbdc18655 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - city list - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - city list - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - country - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - country - document data.png
index f730f720f..a9fe6d4d8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - country - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - country - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - no document.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - no document.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - no document.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - no document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - region - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - region - document data.png
index 68f5ee46c..a1677f24c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - region - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - region - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - root - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - root - document data.png
index bc07531a9..a805ee6f8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - root - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] default props - root - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 11 with default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 11 with default props.png
deleted file mode 100644
index 437a2826c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 11 with default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 14 with cityDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 14 with cityDocument and default props.png
deleted file mode 100644
index 6ed87c909..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 14 with cityDocument and default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 18 with cityDocument and siteName field.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 18 with cityDocument and siteName field.png
index 3dfd5b7f4..04c74e12c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 18 with cityDocument and siteName field.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 18 with cityDocument and siteName field.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory cards - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory cards - default props.png
deleted file mode 100644
index 2468c1baf..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory cards - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory list - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory list - default props.png
deleted file mode 100644
index 68f5ee46c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory list - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory list - non-default props.png
deleted file mode 100644
index f287fb68e..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 4 - directory list - non-default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with cityDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with cityDocument and default props.png
deleted file mode 100644
index 5e367656a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with cityDocument and default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with cityDocument and non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with cityDocument and non-default props.png
new file mode 100644
index 000000000..1392019d3
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with cityDocument and non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with countryDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with countryDocument and non-default props.png
similarity index 86%
rename from packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with countryDocument and default props.png
rename to packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with countryDocument and non-default props.png
index c203e4bb6..9a9607b22 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with countryDocument and default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 40 with countryDocument and non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory cards - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory cards - default props.png
deleted file mode 100644
index 8751f10bd..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory cards - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory list - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory list - default props.png
deleted file mode 100644
index 68f5ee46c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory list - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory list - non-default props.png
deleted file mode 100644
index f287fb68e..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 7 - directory list - non-default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - city - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - city - default props.png
index 697a2f88d..6e19f9372 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - city - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - city - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - country - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - country - default props.png
index 1566c0599..9ac735ff6 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - country - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - country - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory card - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory card - non-default props.png
index 238ce9d24..39c5b5433 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory card - non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory card - non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory list - non-default props.png
index 5b85f2cb9..c0546311d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory list - non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - directory list - non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - region - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - region - default props.png
index 1566c0599..411a6bf57 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - region - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - region - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - root - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - root - default props.png
index 870cf4463..4a4f4410b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - root - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[mobile] version 8 - root - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - city list - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - city list - document data.png
index bef04e71f..0365ce6ab 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - city list - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - city list - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - country - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - country - document data.png
index d327fe249..a09b0754c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - country - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - country - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - no document.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - no document.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - no document.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - no document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - region - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - region - document data.png
index d89d8975d..aaa757e4e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - region - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - region - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - root - document data.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - root - document data.png
index 2ddf68f6c..5ddd0229e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - root - document data.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] default props - root - document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 11 with default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 11 with default props.png
deleted file mode 100644
index dd827d57a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 11 with default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 14 with cityDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 14 with cityDocument and default props.png
deleted file mode 100644
index f202a3dde..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 14 with cityDocument and default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 18 with cityDocument and siteName field.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 18 with cityDocument and siteName field.png
index 871ab6920..6bdbd96a7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 18 with cityDocument and siteName field.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 18 with cityDocument and siteName field.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory cards - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory cards - default props.png
deleted file mode 100644
index bef04e71f..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory cards - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory list - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory list - default props.png
deleted file mode 100644
index d89d8975d..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory list - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory list - non-default props.png
deleted file mode 100644
index 9cf20310a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 4 - directory list - non-default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with cityDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with cityDocument and non-default props.png
similarity index 99%
rename from packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with cityDocument and default props.png
rename to packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with cityDocument and non-default props.png
index a8ea00db9..c1f079152 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with cityDocument and default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with cityDocument and non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with countryDocument and default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with countryDocument and non-default props.png
similarity index 97%
rename from packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with countryDocument and default props.png
rename to packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with countryDocument and non-default props.png
index 244d60a9b..f47089d8c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with countryDocument and default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 40 with countryDocument and non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory cards - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory cards - default props.png
deleted file mode 100644
index f61220558..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory cards - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory list - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory list - default props.png
deleted file mode 100644
index d89d8975d..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory list - default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory list - non-default props.png
deleted file mode 100644
index 9cf20310a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 7 - directory list - non-default props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - city - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - city - default props.png
index a899b3c48..8c7d7af3a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - city - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - city - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - country - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - country - default props.png
index 3bf847ebc..38f592c51 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - country - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - country - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory card - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory card - non-default props.png
index 3b7b0f237..3a2e78067 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory card - non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory card - non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory list - non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory list - non-default props.png
index a472ae0ab..02f7cf309 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory list - non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - directory list - non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - region - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - region - default props.png
index 3bf847ebc..f3a376136 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - region - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - region - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - root - default props.png b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - root - default props.png
index 57a76c914..0b53f3914 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - root - default props.png and b/packages/visual-editor/src/components/testing/screenshots/Directory/[tablet] version 8 - root - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 0 props with constant value.png
deleted file mode 100644
index 1b94f29f6..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 0 props with entity values.png
deleted file mode 100644
index 03c2b7a61..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 15 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 15 props with missing ctaType.png
deleted file mode 100644
index 78c913a1d..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 15 props with missing ctaType.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 48 props.png
deleted file mode 100644
index 71777b6b1..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 48 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 51 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 51 props with constant values.png
new file mode 100644
index 000000000..35d043625
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 51 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 51 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 51 props with entity values.png
new file mode 100644
index 000000000..cabe2254d
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 51 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 7 props with constant value.png
deleted file mode 100644
index a4be2ff9e..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 7 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 7 props with entity values.png
deleted file mode 100644
index 75136608c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[desktop] version 7 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 0 props with constant value.png
deleted file mode 100644
index 61aa38581..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 0 props with entity values.png
deleted file mode 100644
index 88b00d2a4..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 15 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 15 props with missing ctaType.png
deleted file mode 100644
index 724b6c054..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 15 props with missing ctaType.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 48 props.png
deleted file mode 100644
index d982c4a38..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 48 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 51 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 51 props with constant values.png
new file mode 100644
index 000000000..046338d4b
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 51 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 51 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 51 props with entity values.png
new file mode 100644
index 000000000..64ec9fad9
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 51 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 7 props with constant value.png
deleted file mode 100644
index f44f2fa62..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 7 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 7 props with entity values.png
deleted file mode 100644
index 9802dd707..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[mobile] version 7 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 0 props with constant value.png
deleted file mode 100644
index d53dc2002..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 0 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 0 props with entity values.png
deleted file mode 100644
index dba15276a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 0 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 15 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 15 props with missing ctaType.png
deleted file mode 100644
index bf939b6fa..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 15 props with missing ctaType.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 48 props.png
deleted file mode 100644
index 2044e9efa..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 48 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 51 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 51 props with constant values.png
new file mode 100644
index 000000000..5d01636d1
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 51 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 51 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 51 props with entity values.png
new file mode 100644
index 000000000..2977a3485
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 51 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 7 props with constant value.png
deleted file mode 100644
index ec3f7e851..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 7 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 7 props with entity values.png
deleted file mode 100644
index f6b1187c7..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/EventSection/[tablet] version 7 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props - expanded.png
deleted file mode 100644
index b7ca0c89c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props - expanded.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props.png
deleted file mode 100644
index 3ab28812c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 19 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 19 props - expanded.png
deleted file mode 100644
index 815e9f242..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 19 props - expanded.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 20 props - expanded full width.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 20 props - expanded full width.png
new file mode 100644
index 000000000..be8074b91
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 20 props - expanded full width.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 20 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 20 props - expanded.png
index c841221e8..1c0e54490 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 20 props - expanded.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 20 props - expanded.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - basic.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - basic.png
index 4d9dd9e25..438b61e26 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - basic.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - basic.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - expanded with all data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - expanded with all data.png
index 93b9e31fd..de4987f3f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - expanded with all data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - expanded with all data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - no data.png
index c0fffaba5..bec80f7b2 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - no data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 42 props - no data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 48 props.png
index 91b70d5e6..fe3235c29 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links - Dark BG.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links - Dark BG.png
index 10131dc41..7b7efa450 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links - Dark BG.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links - Dark BG.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links.png
index 763baff04..d4be48a5e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 51 - with external links, centered secondary links.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props - expanded.png
deleted file mode 100644
index 8458a8ab4..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props - expanded.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props.png
deleted file mode 100644
index 8edc3bd8f..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 19 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 19 props - expanded.png
deleted file mode 100644
index 2ba6cbc81..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 19 props - expanded.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 20 props - expanded full width.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 20 props - expanded full width.png
new file mode 100644
index 000000000..d5441462c
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 20 props - expanded full width.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 20 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 20 props - expanded.png
index da79287fa..d5441462c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 20 props - expanded.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 20 props - expanded.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - basic.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - basic.png
index a966741a7..8a60e248c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - basic.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - basic.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - expanded with all data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - expanded with all data.png
index d876ff8ea..39e445e47 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - expanded with all data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - expanded with all data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - no data.png
index 65b5fc3be..14ff64b32 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - no data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 42 props - no data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 48 props.png
index 54604daa7..b9a0321b7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links - Dark BG.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links - Dark BG.png
index f80c1c9cf..b3214bef7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links - Dark BG.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links - Dark BG.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links.png
index 0a024341a..048793005 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 51 - with external links, centered secondary links.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props - expanded.png
deleted file mode 100644
index 9d07b04fe..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props - expanded.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props - no data.png
deleted file mode 100644
index 14b79b451..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props - no data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props.png
deleted file mode 100644
index c31208d97..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 10 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 19 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 19 props - expanded.png
deleted file mode 100644
index 5b6bb669a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 19 props - expanded.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 20 props - expanded full width.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 20 props - expanded full width.png
new file mode 100644
index 000000000..ad1214f97
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 20 props - expanded full width.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 20 props - expanded.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 20 props - expanded.png
index f2119d7b4..d899d02c2 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 20 props - expanded.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 20 props - expanded.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - basic.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - basic.png
index 22bf5452d..f6d9a9f9f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - basic.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - basic.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - expanded with all data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - expanded with all data.png
index 5553b275e..82b161cc4 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - expanded with all data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - expanded with all data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - no data.png
index 7c5106815..8b4891c4d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - no data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 42 props - no data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 48 props.png
index 03a18e2f5..62aaa6d3b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links - Dark BG.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links - Dark BG.png
index a7523e69c..9f339ece3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links - Dark BG.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links - Dark BG.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links.png
index 52a85cb2b..862b309a3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[tablet] version 51 - with external links, centered secondary links.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props - no data.png
deleted file mode 100644
index 4db850872..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props - no data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props - secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props - secondary header.png
deleted file mode 100644
index 09257c49a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props - secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props.png
deleted file mode 100644
index 92f48a470..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 10 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 11 props - secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 11 props - secondary header.png
deleted file mode 100644
index 09257c49a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 11 props - secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 15 props - fixed header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 15 props - fixed header.png
deleted file mode 100644
index 67c178643..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 15 props - fixed header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 15 props - sticky header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 15 props - sticky header.png
deleted file mode 100644
index f747b356e..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 15 props - sticky header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 20 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 20 props.png
deleted file mode 100644
index 67c178643..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 20 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 41 props - no secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 41 props - no secondary header.png
deleted file mode 100644
index 2a003a84a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 41 props - no secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 41 props - with secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 41 props - with secondary header.png
deleted file mode 100644
index 99327af6c..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 41 props - with secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 48 props.png
deleted file mode 100644
index 5a434f446..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 48 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 49 props - no logo.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 49 props - no logo.png
deleted file mode 100644
index 1a6ac0297..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 49 props - no logo.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - default props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - default props.png
new file mode 100644
index 000000000..3aab04ee0
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - full width fixed.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - full width fixed.png
new file mode 100644
index 000000000..eb99f1128
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - full width fixed.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - missing content.png
similarity index 72%
rename from packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props - no data.png
rename to packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - missing content.png
index 21670f5a4..c167a860b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[desktop] version 10 props - no data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - missing content.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - primary header only.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - primary header only.png
new file mode 100644
index 000000000..cd348e71d
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - primary header only.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - desktop overflow.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - desktop overflow.png
new file mode 100644
index 000000000..01555da8a
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 - desktop overflow.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 props - with external links.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 props - with external links.png
deleted file mode 100644
index 6147848ba..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[desktop] version 51 props - with external links.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props (after interactions).png
index 9c733ae49..09cf572c9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props (after interactions).png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props (after interactions).png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props.png
index 47ed237ec..bfc7c4322 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props (after interactions).png
deleted file mode 100644
index 5ee6f5819..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - no data.png
deleted file mode 100644
index 374429234..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - no data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - secondary header (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - secondary header (after interactions).png
deleted file mode 100644
index b8780eeb0..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - secondary header (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - secondary header.png
deleted file mode 100644
index 07b97f676..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props - secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props.png
deleted file mode 100644
index b27561c1b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 10 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 11 props - secondary header (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 11 props - secondary header (after interactions).png
deleted file mode 100644
index b8780eeb0..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 11 props - secondary header (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 11 props - secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 11 props - secondary header.png
deleted file mode 100644
index 07b97f676..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 11 props - secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - fixed header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - fixed header.png
deleted file mode 100644
index 0a463d5af..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - fixed header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - sticky header (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - sticky header (after interactions).png
deleted file mode 100644
index b8780eeb0..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - sticky header (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - sticky header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - sticky header.png
deleted file mode 100644
index 07b97f676..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 15 props - sticky header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 20 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 20 props.png
deleted file mode 100644
index 0a463d5af..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 20 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 41 props - no secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 41 props - no secondary header.png
deleted file mode 100644
index 28e10ce66..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 41 props - no secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 41 props - with secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 41 props - with secondary header.png
deleted file mode 100644
index 28e10ce66..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 41 props - with secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 48 props.png
deleted file mode 100644
index d6777c946..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 48 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 49 props - no logo.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 49 props - no logo.png
deleted file mode 100644
index 0e16fe9cd..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 49 props - no logo.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - default props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - default props.png
new file mode 100644
index 000000000..bfc7c4322
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - full width fixed.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - full width fixed.png
new file mode 100644
index 000000000..cd9ddb632
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - full width fixed.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - missing content.png
similarity index 70%
rename from packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props - no data.png
rename to packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - missing content.png
index c8f4603f5..ef7449896 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedFooter/[mobile] version 10 props - no data.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - missing content.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - primary header only.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - primary header only.png
new file mode 100644
index 000000000..124fe20b4
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - primary header only.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - desktop overflow.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - desktop overflow.png
new file mode 100644
index 000000000..bfc7c4322
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 - desktop overflow.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 props - with external links (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 props - with external links (after interactions).png
deleted file mode 100644
index 5ad8881f8..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 props - with external links (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 props - with external links.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 props - with external links.png
deleted file mode 100644
index 28e10ce66..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[mobile] version 51 props - with external links.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[narrow] version 10 props - narrow viewport.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[narrow] version 10 props - narrow viewport.png
deleted file mode 100644
index e279c8a75..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[narrow] version 10 props - narrow viewport.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] default props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] default props.png
index d96d4bb05..1ebd03c11 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] default props.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props - no data.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props - no data.png
deleted file mode 100644
index e69d5698d..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props - no data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props - secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props - secondary header.png
deleted file mode 100644
index 9c1326954..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props - secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props.png
deleted file mode 100644
index fb04e4cf1..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 10 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 11 props - secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 11 props - secondary header.png
deleted file mode 100644
index 9c1326954..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 11 props - secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 15 props - fixed header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 15 props - fixed header.png
deleted file mode 100644
index 8c1266be6..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 15 props - fixed header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 15 props - sticky header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 15 props - sticky header.png
deleted file mode 100644
index 9c1326954..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 15 props - sticky header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 20 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 20 props.png
deleted file mode 100644
index 8c1266be6..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 20 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 41 props - no secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 41 props - no secondary header.png
deleted file mode 100644
index 0fe24bda0..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 41 props - no secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 41 props - with secondary header.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 41 props - with secondary header.png
deleted file mode 100644
index a42d0d8f1..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 41 props - with secondary header.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 48 props.png
deleted file mode 100644
index 5eb70ddd6..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 48 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 49 props - no logo.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 49 props - no logo.png
deleted file mode 100644
index 6da46d84a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 49 props - no logo.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - default props.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - default props.png
new file mode 100644
index 000000000..ef9235dcf
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - full width fixed.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - full width fixed.png
new file mode 100644
index 000000000..6c9923572
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - full width fixed.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - missing content.png
similarity index 63%
rename from packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] default props with empty document.png
rename to packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - missing content.png
index 0aa8c0781..4472a34cc 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - missing content.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - primary header only.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - primary header only.png
new file mode 100644
index 000000000..b43d9dff4
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - primary header only.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - desktop overflow.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - desktop overflow.png
new file mode 100644
index 000000000..ce9d01a7b
Binary files /dev/null and b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 - desktop overflow.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 props - with external links.png b/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 props - with external links.png
deleted file mode 100644
index df58eb696..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/ExpandedHeader/[tablet] version 51 props - with external links.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with constant value (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with constant value (after interactions).png
deleted file mode 100644
index 35c10499f..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with constant value (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with constant value.png
deleted file mode 100644
index 38f0fef66..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with entity values (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with entity values (after interactions).png
deleted file mode 100644
index 79d37aa32..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with entity values (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with entity values.png
deleted file mode 100644
index ce4fbb2a8..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 10 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 35 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 35 with constant values.png
deleted file mode 100644
index c4f1a3bb5..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[desktop] version 35 with constant values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with constant value (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with constant value (after interactions).png
deleted file mode 100644
index 641e43549..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with constant value (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with constant value.png
deleted file mode 100644
index 215de58b6..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with entity values (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with entity values (after interactions).png
deleted file mode 100644
index b26f5c4e8..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with entity values (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with entity values.png
deleted file mode 100644
index 50458dd12..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 10 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 35 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 35 with constant values.png
deleted file mode 100644
index b91317e3d..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[mobile] version 35 with constant values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with constant value (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with constant value (after interactions).png
deleted file mode 100644
index 0591df08d..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with constant value (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with constant value.png
deleted file mode 100644
index a74b1909a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with constant value.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with entity values (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with entity values (after interactions).png
deleted file mode 100644
index a4987c760..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with entity values (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with entity values.png
deleted file mode 100644
index 8790dfb85..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 10 props with entity values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 35 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 35 with constant values.png
deleted file mode 100644
index af719ad2b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/FAQsSection/[tablet] version 35 with constant values.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] default props with document data.png
deleted file mode 100644
index 92ee8f474..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] default props with document data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] default props with empty document.png
deleted file mode 100644
index 31ac40a7a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] default props with empty document.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] version 0 props.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] version 0 props.png
deleted file mode 100644
index 92ee8f474..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[desktop] version 0 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] default props with document data.png
deleted file mode 100644
index ee192a965..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] default props with document data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] default props with empty document.png
deleted file mode 100644
index 212a4f36f..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] default props with empty document.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] version 0 props.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] version 0 props.png
deleted file mode 100644
index ee192a965..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[mobile] version 0 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] default props with document data.png
deleted file mode 100644
index 2c23f4529..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] default props with document data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] version 0 props.png b/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] version 0 props.png
deleted file mode 100644
index 2c23f4529..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Footer/[tablet] version 0 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[desktop] version 19 - various CTAs.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[desktop] version 19 - various CTAs.png
deleted file mode 100644
index e17b3703a..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[desktop] version 19 - various CTAs.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a CoreInfoSection.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a CoreInfoSection.png
index 5bac43eb6..29aca4117 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a CoreInfoSection.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a CoreInfoSection.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a HeroSection.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a HeroSection.png
index b61fd7ef4..4151c9655 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a HeroSection.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 18 - atoms used to make a HeroSection.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - single grid.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - single grid.png
index 4f3a839a4..0db01c8de 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - single grid.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - single grid.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - various CTAs.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - various CTAs.png
deleted file mode 100644
index 772d40571..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - various CTAs.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - various atoms.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - various atoms.png
index 07a1f084c..249c7bfbc 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - various atoms.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 19 - various atoms.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 29 - various CTAs.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 29 - various CTAs.png
index e3bdf22af..fb8476b8e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 29 - various CTAs.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 29 - various CTAs.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with Dark background.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with Dark background.png
index c2990d6e8..f45f04dba 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with Dark background.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with Dark background.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with different site colors.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with different site colors.png
index d69fbc496..71a92acd1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with different site colors.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 45 - CTAs with different site colors.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 47 - delivery service CTAs.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 47 - delivery service CTAs.png
index cfa55fb16..76e302b41 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 47 - delivery service CTAs.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 47 - delivery service CTAs.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - base variant.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - base variant.png
index 9a4071c17..a6114692b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - base variant.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - base variant.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - large variant.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - large variant.png
index 101655f7c..4ebc4c467 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - large variant.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - large variant.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - small variant.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - small variant.png
index 636aa6f2f..26fa01dae 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - small variant.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 49 - Body text - small variant.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on dark background.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on dark background.png
index 859548056..949641909 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on dark background.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on dark background.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on light background.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on light background.png
index dfb2d876b..cf74ed064 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on light background.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 50 - HeadingText on light background.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 51 - Link variant with Vertical Padding.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 51 - Link variant with Vertical Padding.png
index 077cae609..1b1776729 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 51 - Link variant with Vertical Padding.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[mobile] version 51 - Link variant with Vertical Padding.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a CoreInfoSection.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a CoreInfoSection.png
index e450c081e..bbf677a67 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a CoreInfoSection.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a CoreInfoSection.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a HeroSection.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a HeroSection.png
index 2acc58646..649cba06c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a HeroSection.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 18 - atoms used to make a HeroSection.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - single grid.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - single grid.png
index 6ae32a291..48f0c0e35 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - single grid.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - single grid.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - various CTAs.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - various CTAs.png
deleted file mode 100644
index d6654bf05..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - various CTAs.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - various atoms.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - various atoms.png
index 4bb905c6f..be363e53e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - various atoms.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 19 - various atoms.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 29 - various CTAs.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 29 - various CTAs.png
index 23f40b226..d94630ec7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 29 - various CTAs.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 29 - various CTAs.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with Dark background.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with Dark background.png
index d49231480..a10a910d9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with Dark background.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with Dark background.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with different site colors.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with different site colors.png
index f09cb2616..4e643758e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with different site colors.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 45 - CTAs with different site colors.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 47 - delivery service CTAs.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 47 - delivery service CTAs.png
index 0aba86b1b..f0de9a591 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 47 - delivery service CTAs.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 47 - delivery service CTAs.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - base variant.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - base variant.png
index 63e2f58ce..d36cf1566 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - base variant.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - base variant.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - large variant.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - large variant.png
index f3e0da68c..4cafdb3bf 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - large variant.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - large variant.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - small variant.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - small variant.png
index f5c65599e..55676732d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - small variant.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 49 - Body text - small variant.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on dark background.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on dark background.png
index 1b3123260..58420745a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on dark background.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on dark background.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on light background.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on light background.png
index dca0643ac..148b18d17 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on light background.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 50 - HeadingText on light background.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 51 - Link variant with Vertical Padding.png b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 51 - Link variant with Vertical Padding.png
index 71a0c8b1d..edafc687a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 51 - Link variant with Vertical Padding.png and b/packages/visual-editor/src/components/testing/screenshots/Grid/[tablet] version 51 - Link variant with Vertical Padding.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] default props with document data.png
deleted file mode 100644
index 3ed4bb99b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] default props with document data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] default props with empty document.png
deleted file mode 100644
index f78e0ef15..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] default props with empty document.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] version 2 props.png b/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] version 2 props.png
deleted file mode 100644
index 3ed4bb99b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[desktop] version 2 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with document data (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with document data (after interactions).png
deleted file mode 100644
index d054a1bc4..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with document data (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with document data.png
deleted file mode 100644
index e6a7962fd..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with document data.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with empty document.png
deleted file mode 100644
index 877184b7b..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] default props with empty document.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] version 2 props (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] version 2 props (after interactions).png
deleted file mode 100644
index d054a1bc4..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] version 2 props (after interactions).png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] version 2 props.png b/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] version 2 props.png
deleted file mode 100644
index e6a7962fd..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[mobile] version 2 props.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Header/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/Header/[tablet] default props with empty document.png
deleted file mode 100644
index 32d618c34..000000000
Binary files a/packages/visual-editor/src/components/testing/screenshots/Header/[tablet] default props with empty document.png and /dev/null differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using constant values.png
index eb5859c81..a8e235440 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using entity values.png
index bd68deacf..482f6a041 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 17 props using entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with constant values.png
index 3d25e0fd6..0ca3addb8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with entity values.png
index 051910b0c..e8bc6c7b1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [classic] version 31 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 17 props using constant values.png
index ae884ed3c..21af92bc1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with constant values.png
index 673331166..8159937f8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with entity values.png
index 20972a95c..bc0ff93fa 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [compact] version 31 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 17 props using constant values.png
index 4cfc8e787..7a63547db 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using constant values.png
index e40ff7518..4837f0fb9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using entity values.png
index 88697888b..9c8e4240f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [immersive] version 31 props using entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 17 props using constant values.png
index b44a17975..ecae606ca 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with constant values.png
index 46649f818..38c38585b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with entity values.png
index f999a36d3..41ddb5eed 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] [spotlight] version 31 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with data.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with data.png
index c17658415..2480a2f08 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with data.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with no data.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with no data.png
index d232ee8cb..98cfc2b1a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with no data.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] default props with no data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using constant values.png
index 8793ab31d..8c66ab534 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using entity values.png
index afc0e01f9..da6e9037d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 0 props using entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props using entity values with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props using entity values with old CTA structure.png
index 519117cb4..e006b067f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props using entity values with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props using entity values with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with missing ctaType.png
index 92c7d8983..7bb1d9f54 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with missing ctaType.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with missing ctaType.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with old CTA structure.png
index 92c7d8983..7bb1d9f54 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 16 props with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 48 props.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 9 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 9 props using constant values.png
index 92c7d8983..7bb1d9f54 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 9 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[mobile] version 9 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using constant values.png
index 71a76440d..a288f64ae 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using entity values.png
index cd6b77772..39d5173db 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 17 props using entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with constant values.png
index 94195624d..d874ece93 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with entity values.png
index e9dfc624f..3e48978a3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [classic] version 31 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 17 props using constant values.png
index 9e258f96a..500051a1b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with constant values.png
index b940d8cec..966565665 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with entity values.png
index 07ff3c7ca..4e4cc009e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [compact] version 31 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 17 props using constant values.png
index d98c87645..c4808c085 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using constant values.png
index 4a9b01c55..643700789 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using entity values.png
index 5294d1391..cff500252 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [immersive] version 31 props using entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 17 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 17 props using constant values.png
index a24d00a48..dc4594ce2 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 17 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 17 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with constant values.png
index 59fece433..19cb0c47d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with entity values.png
index 3ba45b38b..125f93e73 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] [spotlight] version 31 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with data.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with data.png
index 9114a796c..6eb3be8ef 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with data.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with no data.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with no data.png
index bbbd2da3d..0cd63e7b8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with no data.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] default props with no data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using constant values.png
index db243677b..b3e0ed9a3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using entity values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using entity values.png
index 032cac550..ab55b2fb9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using entity values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 0 props using entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props using entity values with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props using entity values with old CTA structure.png
index 84be740b3..ecec859d2 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props using entity values with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props using entity values with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with missing ctaType.png
index a8cb35ec2..4fb9f81d3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with missing ctaType.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with missing ctaType.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with old CTA structure.png
index a8cb35ec2..4fb9f81d3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 16 props with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 48 props.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 9 props using constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 9 props using constant values.png
index a8cb35ec2..4fb9f81d3 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 9 props using constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[tablet] version 9 props using constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[xl] [compact] version 31 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[xl] [compact] version 31 props with constant values.png
index 2ae477d66..5a2939b95 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/HeroSection/[xl] [compact] version 31 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/HeroSection/[xl] [compact] version 31 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props with empty document.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props.png
index e5f4e2ce0..bf9df3fe6 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version non-default props.png
index 5aa8d4968..814f5c018 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] latest version non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 default props.png
index 42d424d8b..e7f6afe9b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 non-default props.png
index 42d424d8b..e7f6afe9b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 10 non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 default props.png
index 42d424d8b..d58dd2f70 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 non-default props.png
index a20111519..4b3c76336 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 21 non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 default props.png
index 42d424d8b..e7f6afe9b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 non-default props.png
index a20111519..4b3c76336 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 22 non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 24 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 24 default props.png
index 95c750871..e07dae1f8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 24 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[mobile] version 24 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props with empty document.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props.png
index dde9dfcea..b5461786e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version non-default props.png
index 3efe29419..75cc704dd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] latest version non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 default props.png
index 651495ace..caf2df3e9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 non-default props.png
index 0813233bb..f1c40bc34 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 10 non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 default props.png
index 0813233bb..67a9f96f7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 non-default props.png
index 41a5fbbe0..eabfb6b9e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 21 non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 default props.png
index 99df95fd0..67a9f96f7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 non-default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 non-default props.png
index 354c9bff2..eabfb6b9e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 non-default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 22 non-default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 24 default props.png b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 24 default props.png
index aa58cec85..68401ea42 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 24 default props.png and b/packages/visual-editor/src/components/testing/screenshots/Locator/[tablet] version 24 default props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with empty document.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with multiple nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with multiple nearby locations.png
index 7d4c6e72f..174246d82 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with multiple nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with multiple nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations (after interactions).png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations (after interactions).png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations (after interactions).png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations.png
index 08afe16c1..af5806053 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] default props with no nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with multiple nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with multiple nearby locations.png
index 88747ef18..8e1c69e26 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with multiple nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with multiple nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations (after interactions).png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations (after interactions).png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations (after interactions).png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations.png
index 809bdd3e2..618027854 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 10 with no nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with multiple nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with multiple nearby locations.png
index 56df066b6..ab87df874 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with multiple nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with multiple nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations (after interactions).png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations (after interactions).png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations (after interactions).png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations.png
index d50017e4c..17851fc87 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[mobile] version 36 with no nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with empty document.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with multiple nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with multiple nearby locations.png
index 6ef9c3b6c..955b4d27c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with multiple nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with multiple nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations (after interactions).png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations (after interactions).png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations (after interactions).png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations.png
index 0d0c9fa3a..fe94726aa 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] default props with no nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with multiple nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with multiple nearby locations.png
index e41575079..06c68b383 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with multiple nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with multiple nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations (after interactions).png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations (after interactions).png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations (after interactions).png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations.png
index 1466ef200..784af5c75 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 10 with no nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with multiple nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with multiple nearby locations.png
index 7ee1fc743..865ac47f5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with multiple nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with multiple nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations (after interactions).png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations (after interactions).png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations (after interactions).png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations (after interactions).png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations.png b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations.png
index 27d91c732..23b0d9ae8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations.png and b/packages/visual-editor/src/components/testing/screenshots/NearbyLocationsSection/[tablet] version 36 with no nearby locations.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with constant value.png
index 3bf6d7ce5..b02e70975 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with entity values.png
index ab9c11b48..d58a8b4bb 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with constant value.png
index 3bf6d7ce5..b02e70975 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with entity values.png
index ab9c11b48..d58a8b4bb 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 1 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with constant value.png
index f6d7bff25..effe5f545 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with entity values.png
index ab9c11b48..d58a8b4bb 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 38 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 50 props with localized constant values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 50 props with localized constant values.png
index cb4519f61..c907c245e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 50 props with localized constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[desktop] version 50 props with localized constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with document data.png
index 1c25e10f2..38e2960ae 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with empty document.png
index 1c25e10f2..38e2960ae 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with constant value.png
index ac60ec55b..c983f2de9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with entity values.png
index 9ce4b4173..535e3a6c7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with constant value.png
index ac60ec55b..c983f2de9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with entity values.png
index 9ce4b4173..535e3a6c7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 1 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with constant value.png
index 1500448e6..2f359c09b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with entity values.png
index 9ce4b4173..535e3a6c7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 38 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 50 props with localized constant values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 50 props with localized constant values.png
index 72d3e45bf..4026ea2be 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 50 props with localized constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[mobile] version 50 props with localized constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with document data.png
index 8c3b05e00..a7d971753 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with empty document.png
index 8c3b05e00..a7d971753 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with constant value.png
index bf73d5814..fb9dfb874 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with entity values.png
index 3857fa2b0..f80e5b85d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with constant value.png
index bf73d5814..fb9dfb874 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with entity values.png
index 3857fa2b0..f80e5b85d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 1 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with constant value.png
index 79eb040c9..5e7d64968 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with entity values.png
index 3857fa2b0..f80e5b85d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 38 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 50 props with localized constant values.png b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 50 props with localized constant values.png
index ef3b715e8..cf2696d0a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 50 props with localized constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PhotoGallerySection/[tablet] version 50 props with localized constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and image.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and image.png
index 192e65daf..00ff135ff 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and image.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and image.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and video.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and video.png
index 641654aaf..f7b68356e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and video.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with constant values and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with entity values.png
index fda3d5ccd..792d4e201 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [compact] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with constant values.png
index 4f9ee2ddf..1d38fc8de 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with entity values.png
index 09d4dfcda..de8914cf8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [immersive] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with constant values.png
index 03c31ad97..95e30bef5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with entity values.png
index 3465ab9e2..f1eb8861e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[desktop] [spotlight] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 props with constant values and image.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 props with constant values and image.png
index ede5436ba..e0068e1e5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 props with constant values and image.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 props with constant values and image.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with constant values and video.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with constant values and video.png
index b47ba4ce9..450fc850d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with constant values and video.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with constant values and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with entity values.png
index 2900b7f15..4a2a1c0c5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [classic] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and image.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and image.png
index 8fa23a2d6..e5282c9c7 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and image.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and image.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and video.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and video.png
index 5e74a8fa0..e54d66ea8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and video.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with constant values and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with entity values.png
index 8747bfa2b..06b3649f1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [compact] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with constant values.png
index d95961feb..de9e46031 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with entity values.png
index 79ab34681..1339db7fd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [immersive] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with constant values.png
index e2c4543a8..f5f1f9008 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with entity values.png
index bb23d8179..bd5b4bf96 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] [spotlight] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with document data.png
index b0171dbba..5e24763f8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with empty document.png
index b0171dbba..5e24763f8 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with constant value.png
index c6e39fb8d..34a7284cc 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with entity values.png
index 51c1a132b..230bf723c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props using entity values with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props using entity values with old CTA structure.png
index ebf6c4d94..f53ea81ff 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props using entity values with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props using entity values with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with missing ctaType.png
index a39c44edb..58e78f32d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with missing ctaType.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with missing ctaType.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with old CTA structure.png
index a39c44edb..58e78f32d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 16 props with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 24 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 24 with constant values.png
index e8b759c67..5c1ea9175 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 24 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 24 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with entity values.png
index 12c48b7d7..37ff13bb1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with mixed values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with mixed values.png
index 26e899ef1..9c4397c2b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with mixed values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 30 props with mixed values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 48 props with translatable image and CTA.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 48 props with translatable image and CTA.png
index c84a689ff..096a00010 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 48 props with translatable image and CTA.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 48 props with translatable image and CTA.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 5 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 5 props with constant value.png
index 24ab1fae1..9e13b554b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 5 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[mobile] version 5 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 props with constant values and image.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 props with constant values and image.png
index 5c511022e..609bf52ee 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 props with constant values and image.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 props with constant values and image.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with constant values and video.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with constant values and video.png
index f36d63b14..0ea3c1aea 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with constant values and video.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with constant values and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with entity values.png
index b36c47fc4..15793e990 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [classic] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and image.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and image.png
index 2a9549494..a84c7f151 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and image.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and image.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and video.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and video.png
index e12d88c8f..8bff58661 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and video.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with constant values and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with entity values.png
index 4612b8142..94decad37 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [compact] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with constant values.png
index 3290ceb15..ab57d0d90 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with entity values.png
index d11c53d8a..055ce7f8c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [immersive] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with constant values.png
index 6b999064f..869aec482 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with entity values.png
index 89a7a5ba0..2fb046357 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] [spotlight] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with document data.png
index 0ede420a2..e665b3b40 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with empty document.png
index 0ede420a2..e665b3b40 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with constant value.png
index 8e4358d3e..bd47cf921 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with entity values.png
index 22dddf116..6ebc7df85 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props using entity values with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props using entity values with old CTA structure.png
index 53c8b1287..4f4b8a933 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props using entity values with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props using entity values with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with missing ctaType.png
index 3e3848bb6..44c250e13 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with missing ctaType.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with missing ctaType.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with old CTA structure.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with old CTA structure.png
index 3e3848bb6..44c250e13 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with old CTA structure.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 16 props with old CTA structure.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 24 with constant values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 24 with constant values.png
index abf83791c..0aff5c050 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 24 with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 24 with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with entity values.png
index f34755204..5db70b0ce 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with mixed values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with mixed values.png
index 5973348d7..11e45bf5b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with mixed values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 30 props with mixed values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 48 props with translatable image and CTA.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 48 props with translatable image and CTA.png
index 74caff37e..001e7baf1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 48 props with translatable image and CTA.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 48 props with translatable image and CTA.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 5 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 5 props with constant value.png
index 91c42bf88..be2cfea5b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 5 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[tablet] version 5 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[xl] [compact] version 50 with entity values.png b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[xl] [compact] version 50 with entity values.png
index e41ef9f5f..1012ba05e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/PromoSection/[xl] [compact] version 50 with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/PromoSection/[xl] [compact] version 50 with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - no api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - no api key.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - no api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - no api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - with api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - with api key.png
index 615de3cda..ddea0b0ef 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - with api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with coordinate - with api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with no coordinate.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with no coordinate.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with no coordinate.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] default props with no coordinate.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - no api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - no api key.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - no api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - no api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - with api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - with api key.png
index 7a70d51c0..83d20ee2c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - with api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with coordinate - with api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with no coordinate.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with no coordinate.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with no coordinate.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[mobile] version 10 props with no coordinate.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - no api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - no api key.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - no api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - no api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - with api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - with api key.png
index de702b5bd..5f52daf46 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - with api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with coordinate - with api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with no coordinate.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with no coordinate.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with no coordinate.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] default props with no coordinate.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - no api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - no api key.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - no api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - no api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - with api key.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - with api key.png
index 726e2dba5..3dbcd10e6 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - with api key.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with coordinate - with api key.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with no coordinate.png b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with no coordinate.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with no coordinate.png and b/packages/visual-editor/src/components/testing/screenshots/StaticMapSection/[tablet] version 10 props with no coordinate.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] default props with document data.png
index 58b7f4d91..cf6856f63 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with constant value.png
index bd17c221c..0d5350011 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with entity values.png
index 7251ea3d4..7c023e46d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 15 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 15 props with missing ctaType.png
index 64178d44a..58d1c45c6 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 15 props with missing ctaType.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 15 props with missing ctaType.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with constant values.png
index e23a97d9b..cd11a11a0 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with entity values.png
index 4f27c8e10..7ee075c8a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 34 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 48 props.png
index 9a9403f70..b0861cb4f 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with constant value.png
index bd17c221c..0d5350011 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with entity values.png
index 79fcfb1d0..914e69fcc 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[desktop] version 7 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with document data.png
index 07e71cbb2..d2758427b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with empty document.png
index 07e71cbb2..d2758427b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with constant value.png
index 4b5643e72..3cc0e4304 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with entity values.png
index 917e85d82..499850b22 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 15 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 15 props with missing ctaType.png
index fdac614ae..55a2366b1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 15 props with missing ctaType.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 15 props with missing ctaType.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with constant values.png
index 6739c6526..72c3104aa 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with entity values.png
index aa3ef29da..e69ae5c3e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 34 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 48 props.png
index 4f5252c61..d1415d6bb 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with constant value.png
index 4b5643e72..3cc0e4304 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with entity values.png
index 3524bd36e..92eaf50f5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[mobile] version 7 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with document data.png
index 683aba0b1..67bdd13e1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with empty document.png
index 683aba0b1..8c65a2ed6 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with constant value.png
index 4e941ee18..e633f2482 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with entity values.png
index d95a80751..de09faaa9 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 15 props with missing ctaType.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 15 props with missing ctaType.png
index d570045dd..cd2e13615 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 15 props with missing ctaType.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 15 props with missing ctaType.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with constant values.png
index f54908101..21696ab3c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with entity values.png
index 3110eafd1..d7de27449 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 34 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 48 props.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 48 props.png
index 1d1460f88..133b3f611 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 48 props.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 48 props.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with constant value.png
index 4e941ee18..e633f2482 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with entity values.png
index 329549cfe..488aa7b33 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TeamSection/[tablet] version 7 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] default props with document data.png
index f74c80383..bb2c95e56 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with constant value.png
index bc79c0a1a..63a8542d5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with entity values.png
index c1c859895..a0610ac39 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 1 props with constant value.png
index bc79c0a1a..63a8542d5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with constant values.png
index 5ccf80b59..258ca3874 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with entity values.png
index 37e73668d..7288d6892 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 37 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with constant value.png
index bc79c0a1a..63a8542d5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with entity values.png
index 9fe1ba0a7..b8012ea81 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[desktop] version 7 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with document data.png
index 66e11eeac..0414e970b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with empty document.png
index 66e11eeac..0414e970b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with constant value.png
index dc33acae6..3453895b1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with entity values.png
index 604968880..eeab085a2 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 1 props with constant value.png
index dc33acae6..3453895b1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with constant values.png
index d17aac586..1ce3b1f3c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with entity values.png
index 22711ed76..3cec7a413 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 37 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with constant value.png
index dc33acae6..3453895b1 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with entity values.png
index 44628a568..ccef2e533 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[mobile] version 7 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with document data.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with document data.png
index b3f4a2a5d..ccc976b5c 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with document data.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with document data.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with empty document.png
index b3f4a2a5d..e1c4e5bb4 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with constant value.png
index 787641192..09fb1bc92 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with entity values.png
index 6ba949fdf..5b1e0183b 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 0 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 1 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 1 props with constant value.png
index 787641192..09fb1bc92 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 1 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 1 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with constant values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with constant values.png
index 35093445a..08b78213e 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with constant values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with constant values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with entity values.png
index 04c2c49b8..d2277895a 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 37 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with constant value.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with constant value.png
index 787641192..09fb1bc92 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with constant value.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with constant value.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with entity values.png b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with entity values.png
index 9eb2954db..227bd6235 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with entity values.png and b/packages/visual-editor/src/components/testing/screenshots/TestimonialSection/[tablet] version 7 props with entity values.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] default props with empty document.png
index 212a4f36f..ebc04b6cd 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with constant heading text and video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with constant heading text and video.png
index 986babffd..bea42adbb 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with constant heading text and video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with constant heading text and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with entity heading text and no video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with entity heading text and no video.png
index c39cb7289..a1f6ff6f2 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with entity heading text and no video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 23 props with entity heading text and no video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with constant heading text and video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with constant heading text and video.png
index 7b4065211..5cc543480 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with constant heading text and video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with constant heading text and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with entity heading text and no video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with entity heading text and no video.png
index 6eba189cd..20f9007db 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with entity heading text and no video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[mobile] version 28 props with entity heading text and no video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] default props with empty document.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] default props with empty document.png
index 0aa8c0781..9ba94a302 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] default props with empty document.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] default props with empty document.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with constant heading text and video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with constant heading text and video.png
index 999adf4fc..49021fbf2 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with constant heading text and video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with constant heading text and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with entity heading text and no video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with entity heading text and no video.png
index ebf726b3f..16bf38e0d 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with entity heading text and no video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 23 props with entity heading text and no video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with constant heading text and video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with constant heading text and video.png
index aed9b3ab1..6559ba392 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with constant heading text and video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with constant heading text and video.png differ
diff --git a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with entity heading text and no video.png b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with entity heading text and no video.png
index 712df5914..b417252c5 100644
Binary files a/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with entity heading text and no video.png and b/packages/visual-editor/src/components/testing/screenshots/VideoSection/[tablet] version 28 props with entity heading text and no video.png differ
diff --git a/packages/visual-editor/src/docs/components.md b/packages/visual-editor/src/docs/components.md
index 0d2516b78..e1572e015 100644
--- a/packages/visual-editor/src/docs/components.md
+++ b/packages/visual-editor/src/docs/components.md
@@ -308,8 +308,6 @@ This object contains properties for customizing the component's appearance.
The Footer appears at the bottom of the page. It serves as a container for secondary navigation, social media links, legal disclaimers, and copyright information. See [Expanded Footer](#expanded-footer) for the newest footer component. Available on Directory and Locator templates.
-
-
### Props
#### Other Props
@@ -401,8 +399,6 @@ The background color for the entire footer section.
The Header component appears at the top of pages. It serves as the primary navigation and branding element, containing the site logo and optionally a language selector. See [Expanded Header](#expanded-header) for the newest header component. Available on Directory and Locator templates.
-
-
### Props
#### Other Props