diff --git a/configurator/src/App.svelte b/configurator/src/App.svelte index 41265ac6..fa63e96a 100644 --- a/configurator/src/App.svelte +++ b/configurator/src/App.svelte @@ -18,9 +18,10 @@ const DOMAIN_LABELS: Record = { home: "Home", colors: "Colors", typography: "Typography", spacing: "Spacing", - layout: "Layout", borders: "Borders", shadows: "Shadows", motion: "Motion", + layout: "Layout", borders: "Shape", shadows: "Shadows", motion: "Motion", effects: "Effects", macros: "Macros", misc: "Misc", components: "Components", - changes: "Changes", themes: "Themes", wcag: "WCAG", setup: "Install", cheatsheet: "Classes", + changes: "Changes", themes: "Presets", wcag: "Accessibility", + setup: "Install & export", cheatsheet: "Reference", }; function overridesByDomain(ov: Record): Record { diff --git a/configurator/src/components/panels/HomePanel.svelte b/configurator/src/components/panels/HomePanel.svelte index 0078d853..846a6419 100644 --- a/configurator/src/components/panels/HomePanel.svelte +++ b/configurator/src/components/panels/HomePanel.svelte @@ -1,7 +1,7 @@ - diff --git a/configurator/tests-e2e/shell.spec.js b/configurator/tests-e2e/shell.spec.js index 0b7e7237..7cd2e8fc 100644 --- a/configurator/tests-e2e/shell.spec.js +++ b/configurator/tests-e2e/shell.spec.js @@ -5,9 +5,9 @@ import { test, expect } from '@playwright/test'; import { watchErrors, gotoClean, navButton } from './helpers.js'; const NAV_LABELS = [ - 'Home', 'Colors', 'Typography', 'Spacing', 'Layout', - 'Borders', 'Shadows', 'Motion', 'Effects', 'Misc', 'Components', - 'Themes', 'WCAG', 'Install', 'Classes', + 'Home', 'Colors', 'Typography', 'Spacing', 'Shape', + 'Layout', 'Shadows', 'Motion', 'Effects', 'Misc', 'Components', + 'Changes', 'Accessibility', 'Presets', 'Install & export', 'Reference', ]; test('loads with the SLASHED Studio branding', async ({ page }) => {