diff --git a/.changeset/calm-insects-boil.md b/.changeset/calm-insects-boil.md new file mode 100644 index 00000000000..1aba232fec9 --- /dev/null +++ b/.changeset/calm-insects-boil.md @@ -0,0 +1,5 @@ +--- +"@primer/react": patch +--- + +Update NavList to use the new ActionList.GroupHeading API and Add an "as" prop to specify the heading level as default h3. (No changes expected in the rendered HTML) diff --git a/.changeset/cold-starfishes-shout.md b/.changeset/cold-starfishes-shout.md deleted file mode 100644 index ce8c32e1b71..00000000000 --- a/.changeset/cold-starfishes-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/react': minor ---- - -Update Banner to use an explicit aria-label instead of being labelled by Banner title diff --git a/.changeset/grumpy-coats-worry.md b/.changeset/grumpy-coats-worry.md deleted file mode 100644 index 584f41f81a0..00000000000 --- a/.changeset/grumpy-coats-worry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/react': minor ---- - -Broaden feature flag type for experimental FeatureFlags to accept undefined diff --git a/.changeset/long-doors-bow.md b/.changeset/long-doors-bow.md new file mode 100644 index 00000000000..aad7df261a4 --- /dev/null +++ b/.changeset/long-doors-bow.md @@ -0,0 +1,5 @@ +--- +'@primer/react': patch +--- + +Update the Stack component so that the `justify` prop correctly updates the layout of items diff --git a/.changeset/rich-pans-press.md b/.changeset/rich-pans-press.md new file mode 100644 index 00000000000..15ab412aa26 --- /dev/null +++ b/.changeset/rich-pans-press.md @@ -0,0 +1,5 @@ +--- +"@primer/react": patch +--- + +TreeView: Always align expand/collapse chevron icon, leading visual, and trailing visual to top of item diff --git a/.changeset/short-geese-itch.md b/.changeset/short-geese-itch.md new file mode 100644 index 00000000000..306e6e00976 --- /dev/null +++ b/.changeset/short-geese-itch.md @@ -0,0 +1,5 @@ +--- +'@primer/react': patch +--- + +Update @github/tab-container-element to latest diff --git a/.changeset/tall-forks-bathe.md b/.changeset/tall-forks-bathe.md deleted file mode 100644 index 4998b637e00..00000000000 --- a/.changeset/tall-forks-bathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/react': patch ---- - -Dialog: Use dynamic view height/width. This allows available visible space to be properly computed on iOS devices. diff --git a/.changeset/tame-nails-live.md b/.changeset/tame-nails-live.md new file mode 100644 index 00000000000..5c39b099be4 --- /dev/null +++ b/.changeset/tame-nails-live.md @@ -0,0 +1,5 @@ +--- +"@primer/react": minor +--- + +TreeView: Add support for `TreeView.LeadingAction` diff --git a/.changeset/thin-ligers-turn.md b/.changeset/thin-ligers-turn.md deleted file mode 100644 index 75d28e96077..00000000000 --- a/.changeset/thin-ligers-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/react': patch ---- - -BranchName: Fixing text color when rendered as span diff --git a/.changeset/wild-students-bow.md b/.changeset/wild-students-bow.md deleted file mode 100644 index 111e2d290e9..00000000000 --- a/.changeset/wild-students-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/react": minor ---- - -Adds support for nested submenus to `ActionMenu` diff --git a/.github/workflows/assign_release_conductor.yml b/.github/workflows/assign_release_conductor.yml index e976de684e2..8cbc24e21c0 100644 --- a/.github/workflows/assign_release_conductor.yml +++ b/.github/workflows/assign_release_conductor.yml @@ -66,15 +66,6 @@ jobs: return user.login === PREV_RELEASE_CONDUCTOR; }); - if (hasPreviousReviewer) { - await github.rest.pulls.removeRequestedReviewers({ - owner: context.repo.owner, - repo: context.repo.repo, - pull_number: PR_NUMBER, - reviewers: [PREV_RELEASE_CONDUCTOR], - }); - } - // Add the current release conductor as an assignee if they are not currently assigned const hasAssignee = pull.assignees.find((assignee) => { return assignee.login === RELEASE_CONDUCTOR; @@ -101,3 +92,12 @@ jobs: reviewers: [RELEASE_CONDUCTOR] }) } + + if (hasPreviousReviewer) { + await github.rest.pulls.removeRequestedReviewers({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: PR_NUMBER, + reviewers: [PREV_RELEASE_CONDUCTOR], + }); + } diff --git a/.github/workflows/release_tracking.yml b/.github/workflows/release_tracking.yml new file mode 100644 index 00000000000..7b509d8fa93 --- /dev/null +++ b/.github/workflows/release_tracking.yml @@ -0,0 +1,19 @@ +name: Release Event Tracking +# Measure a datadog event every time a release occurs + +on: + pull_request: + types: + - closed + - opened + - reopened + + release: + types: [published] + +jobs: + release-tracking: + name: Release Tracking + uses: primer/.github/.github/workflows/release_tracking.yml@create_release_tracking_workflow + secrets: + datadog_api_key: ${{ secrets.DATADOG_API_KEY }} diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-baseline-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-center-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-end-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-start-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-horizontal-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-none-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-center-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-end-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-none-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-center-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-center-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-around-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-end-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-end-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-around-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-space-evenly-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-none-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-space-evenly-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-none-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-start-wrap-nowrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-normal-wrap-nowrap--linux.png diff --git a/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png b/.playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png similarity index 100% rename from .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-padding-normal-spread-start-wrap-wrap--linux.png rename to .playwright/snapshots/components/Stack.test.ts-snapshots/Stack-align-stretch-direction-vertical-gap-normal-justify-start-padding-normal-wrap-wrap--linux.png diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-colorblind-linux.png index ed6f16df207..12ae1ab1f97 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-dimmed-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-dimmed-linux.png index ef42d025bd5..81054b17e8c 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-dimmed-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-dimmed-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-high-contrast-linux.png index c5062ec59ae..1c7a86a9322 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-linux.png index dedbc822f62..dc81c874410 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-tritanopia-linux.png index ed6f16df207..12ae1ab1f97 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-dark-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-colorblind-linux.png index 08d8ef916f5..2b309d634e2 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-high-contrast-linux.png index 8af3a348812..3144d63bad8 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-linux.png index 9f91e25873a..4a6a6bdd442 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-tritanopia-linux.png index 08d8ef916f5..2b309d634e2 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Default-light-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-colorblind-linux.png index 7ca932492eb..a9945c7c97a 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-dimmed-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-dimmed-linux.png index 59a37b63042..93984a22924 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-dimmed-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-dimmed-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-high-contrast-linux.png index e3ed04d0efb..670514a8f52 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-linux.png index b4c57664484..087d3050920 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-tritanopia-linux.png index 7ca932492eb..a9945c7c97a 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-dark-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-colorblind-linux.png index ef36f92c843..d2755f7b7f1 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-high-contrast-linux.png index a5ae1bfd8d8..54ebef0641e 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-linux.png index ef36f92c843..d2755f7b7f1 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-tritanopia-linux.png index ef36f92c843..d2755f7b7f1 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Empty-Directories-light-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-colorblind-linux.png index 03e3ba3ce8c..0ddff78f691 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-dimmed-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-dimmed-linux.png index f602939aec3..894a7f69c06 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-dimmed-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-dimmed-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-high-contrast-linux.png index 231e8f689f9..b087f858cbf 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-linux.png index ba7b1f165e8..cb584be7e9f 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-tritanopia-linux.png index b73b01b5cc6..b93a601acdc 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-dark-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-colorblind-linux.png index a4dd033689c..bbc93d13a8b 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-high-contrast-linux.png index 01022ab1e7e..8fce680c221 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-linux.png index 909abe8f4cb..0946c66e7e2 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-tritanopia-linux.png index 58d265e8b5a..b806f4525c7 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-Changed-light-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-colorblind-linux.png index c5ffd924341..6a7610277a2 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-dimmed-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-dimmed-linux.png index a887d62a0b1..274c0dabde8 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-dimmed-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-dimmed-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-high-contrast-linux.png index f8e8601b827..263fa1dfd03 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-linux.png index bd3badf0037..0b3c5d491ce 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-tritanopia-linux.png index c5ffd924341..6a7610277a2 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-dark-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-colorblind-linux.png index 5791a678f0e..9c680127141 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-colorblind-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-high-contrast-linux.png index 089f7a48b8b..9fb921a3328 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-high-contrast-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-linux.png index 5791a678f0e..9c680127141 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-tritanopia-linux.png index 5791a678f0e..9c680127141 100644 Binary files a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-tritanopia-linux.png and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Files-light-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-colorblind-linux.png new file mode 100644 index 00000000000..0cd4881456d Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-dimmed-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-dimmed-linux.png new file mode 100644 index 00000000000..6826d686203 Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-dimmed-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-high-contrast-linux.png new file mode 100644 index 00000000000..4957de17f9d Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-linux.png new file mode 100644 index 00000000000..f25f67fd3ce Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-tritanopia-linux.png new file mode 100644 index 00000000000..80f4f0ad69b Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-dark-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-colorblind-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-colorblind-linux.png new file mode 100644 index 00000000000..c308d50dbe3 Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-high-contrast-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-high-contrast-linux.png new file mode 100644 index 00000000000..9c2e939e65d Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-linux.png new file mode 100644 index 00000000000..a9cc60d52b3 Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-linux.png differ diff --git a/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-tritanopia-linux.png b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-tritanopia-linux.png new file mode 100644 index 00000000000..febee9c17e5 Binary files /dev/null and b/.playwright/snapshots/components/TreeView.test.ts-snapshots/TreeView-Leading-Action-light-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-colorblind-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-colorblind-linux.png new file mode 100644 index 00000000000..4a72d6fa66f Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-dimmed-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-dimmed-linux.png new file mode 100644 index 00000000000..f2773d1d698 Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-dimmed-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-high-contrast-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-high-contrast-linux.png new file mode 100644 index 00000000000..ce5416737d1 Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-linux.png new file mode 100644 index 00000000000..4a72d6fa66f Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-tritanopia-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-tritanopia-linux.png new file mode 100644 index 00000000000..4a72d6fa66f Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-dark-tritanopia-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-colorblind-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-colorblind-linux.png new file mode 100644 index 00000000000..ee281093c96 Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-colorblind-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-high-contrast-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-high-contrast-linux.png new file mode 100644 index 00000000000..b5ea113e4b1 Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-high-contrast-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-linux.png new file mode 100644 index 00000000000..ee281093c96 Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-linux.png differ diff --git a/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-tritanopia-linux.png b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-tritanopia-linux.png new file mode 100644 index 00000000000..ee281093c96 Binary files /dev/null and b/.playwright/snapshots/components/drafts/ActionBar.test.ts-snapshots/drafts-ActionBar-CommentBox-light-tritanopia-linux.png differ diff --git a/docs/content/getting-started.md b/docs/content/getting-started.md index 554ae0fa075..80a6d219d73 100644 --- a/docs/content/getting-started.md +++ b/docs/content/getting-started.md @@ -4,7 +4,7 @@ title: Getting started import DeprecationBanner from '../components/DeprecationBanner' - + ## Installation diff --git a/docs/package.json b/docs/package.json index 5305b4fc1c3..051039346b7 100644 --- a/docs/package.json +++ b/docs/package.json @@ -38,7 +38,7 @@ "eslint": "8.56.0", "eslint-config-react-app": "7.0.1", "globby": "^11.0.4", - "minipass": "^2.9.0", + "minipass": "^7.1.1", "path-browserify": "^1.0.1", "webpack": "5.40.0" } diff --git a/e2e/components/Stack.test.ts b/e2e/components/Stack.test.ts index 81c88acc2d6..132cdd4346c 100644 --- a/e2e/components/Stack.test.ts +++ b/e2e/components/Stack.test.ts @@ -4,11 +4,11 @@ import {matrix, serialize} from '../test-helpers/matrix' const scenarios = matrix({ align: ['stretch', 'start', 'center', 'end', 'baseline'], - spread: ['start', 'center', 'end', 'space-around', 'space-evenly'], direction: ['horizontal', 'vertical'], - wrap: ['wrap', 'nowrap'], - padding: ['none', 'normal'], gap: ['none', 'normal'], + justify: ['start', 'center', 'end', 'space-around', 'space-evenly'], + padding: ['none', 'normal'], + wrap: ['wrap', 'nowrap'], }) test.describe('Stack', () => { diff --git a/e2e/components/TreeView.test.ts b/e2e/components/TreeView.test.ts index 1f665117e85..62d3d4ab11b 100644 --- a/e2e/components/TreeView.test.ts +++ b/e2e/components/TreeView.test.ts @@ -138,4 +138,37 @@ test.describe('TreeView', () => { }) } }) + + test.describe('Leading Action', () => { + for (const theme of themes) { + test.describe(theme, () => { + test('default @vrt', async ({page}) => { + await visit(page, { + id: 'components-treeview-features--leading-action', + globals: { + colorScheme: theme, + }, + }) + + expect(await page.screenshot()).toMatchSnapshot(`TreeView.Leading Action.${theme}.png`) + }) + + test('axe @aat', async ({page}) => { + await visit(page, { + id: 'components-treeview-features--leading-action', + globals: { + colorScheme: theme, + }, + }) + await expect(page).toHaveNoViolations({ + rules: { + 'color-contrast': { + enabled: theme !== 'dark_dimmed', + }, + }, + }) + }) + }) + } + }) }) diff --git a/e2e/components/drafts/ActionBar.test.ts b/e2e/components/drafts/ActionBar.test.ts new file mode 100644 index 00000000000..f7c74f0f750 --- /dev/null +++ b/e2e/components/drafts/ActionBar.test.ts @@ -0,0 +1,54 @@ +import {test, expect} from '@playwright/test' +import {visit} from '../../test-helpers/storybook' +import {themes} from '../../test-helpers/themes' +import {viewports} from '../../test-helpers/viewports' + +test.describe('ActionBar', () => { + test.describe('Default state', () => { + for (const theme of themes) { + test.describe(theme, () => { + test('default @vrt', async ({page}) => { + await visit(page, { + id: 'drafts-components-actionbar--comment-box', + globals: { + colorScheme: theme, + }, + }) + expect(await page.screenshot()).toMatchSnapshot(`drafts.ActionBar.CommentBox.${theme}.png`) + }) + + test('axe @aat', async ({page}) => { + await visit(page, { + id: 'drafts-components-actionbar--comment-box', + globals: { + colorScheme: theme, + }, + }) + await expect(page).toHaveNoViolations() + }) + }) + } + }) + + test.describe('ActionBar Interactions', () => { + for (const theme of themes) { + test.describe(theme, () => { + test('Overflow interaction @vrt', async ({page}) => { + await visit(page, { + id: 'drafts-components-actionbar--comment-box', + globals: { + colorScheme: theme, + }, + }) + const toolbarButtonSelector = `button[data-component="IconButton"]` + await expect(page.locator(toolbarButtonSelector)).toHaveCount(10) + await page.setViewportSize({width: viewports['primer.breakpoint.xs'], height: 768}) + await expect(page.locator(toolbarButtonSelector)).toHaveCount(6) + const moreButtonSelector = `button[aria-label="More Comment box toolbar items"]` + await page.locator(moreButtonSelector).click() + await expect(page.locator('ul[role="menu"]>li')).toHaveCount(5) + }) + }) + } + }) +}) diff --git a/e2e/matchers/toHaveNoViolations.ts b/e2e/matchers/toHaveNoViolations.ts index d46f406c78b..7f9df6a242b 100644 --- a/e2e/matchers/toHaveNoViolations.ts +++ b/e2e/matchers/toHaveNoViolations.ts @@ -45,123 +45,16 @@ expect.extend({ await page.evaluate(source) + const configSrc = fs.readFileSync(require.resolve('@github/axe-github/configure-browser'), 'utf8') + + page.evaluate(configSrc => { + window.eval(configSrc) + }, configSrc) + const result: AxeResults = await page.evaluate(runConfig => { // @ts-ignore `axe` is a global variable defined by page.evaluate() above const axe = window.axe - const interactiveElements = ['a[href]', 'button', 'summary', 'select', 'input:not([type=hidden])', 'textarea'] - const focusableElements = interactiveElements.concat(['[tabindex]']) - - axe.configure({ - rules: [ - { - id: 'menuitem-should-be-interactive', - excludeHidden: true, - selector: - 'div[role="menuitem"], span[role="menuitem"], div[role="menuitemradio"], span[role="menuitemradio"], div[role="menuitemcheckbox"], span[role="menuitemcheckbox"]', - all: ['menuitem-should-be-interactive_0'], - any: [], - metadata: { - help: 'Menu items must be focusable. Use ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/ConfirmationDialog/ConfirmationDialog.test.tsx b/packages/react/src/ConfirmationDialog/ConfirmationDialog.test.tsx index 37792d8153c..f623b0d8708 100644 --- a/packages/react/src/ConfirmationDialog/ConfirmationDialog.test.tsx +++ b/packages/react/src/ConfirmationDialog/ConfirmationDialog.test.tsx @@ -1,5 +1,5 @@ import {render as HTMLRender, fireEvent} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import React, {useCallback, useRef, useState} from 'react' import {ActionMenu} from '../deprecated/ActionMenu' @@ -88,7 +88,7 @@ describe('ConfirmationDialog', () => { const spy = jest.spyOn(console, 'warn').mockImplementation() const {container} = HTMLRender() spy.mockRestore() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/CounterLabel/CounterLabel.test.tsx b/packages/react/src/CounterLabel/CounterLabel.test.tsx index 300c7623f63..78ae5497bbe 100644 --- a/packages/react/src/CounterLabel/CounterLabel.test.tsx +++ b/packages/react/src/CounterLabel/CounterLabel.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {CounterLabel} from '..' import {behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('CounterLabel', () => { behavesAsComponent({Component: CounterLabel, options: {skipAs: true, skipSx: true}}) @@ -28,7 +28,7 @@ describe('CounterLabel', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/Details/__tests__/Details.test.tsx b/packages/react/src/Details/__tests__/Details.test.tsx index 91646150052..493cc4b6e4c 100644 --- a/packages/react/src/Details/__tests__/Details.test.tsx +++ b/packages/react/src/Details/__tests__/Details.test.tsx @@ -5,7 +5,7 @@ import {Details, useDetails, Box} from '../..' import {Button, ButtonPrimary} from '../../deprecated' import type {ButtonProps} from '../../deprecated/Button/Button' import {behavesAsComponent, checkExports} from '../../utils/testing' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Details', () => { behavesAsComponent({Component: Details}) @@ -16,7 +16,7 @@ describe('Details', () => { it('should have no axe violations', async () => { const {container} = render(
) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/Dialog/Dialog.test.tsx b/packages/react/src/Dialog/Dialog.test.tsx index 3c8088542e2..8dcfbe31160 100644 --- a/packages/react/src/Dialog/Dialog.test.tsx +++ b/packages/react/src/Dialog/Dialog.test.tsx @@ -4,7 +4,7 @@ import userEvent from '@testing-library/user-event' import {Dialog} from './Dialog' import MatchMediaMock from 'jest-matchmedia-mock' import {behavesAsComponent, checkExports} from '../utils/testing' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {Button} from '../Button' let matchMedia: MatchMediaMock @@ -101,7 +101,7 @@ describe('Dialog', () => { it('should have no axe violations', async () => { const {container} = render( {}}>Pay attention to me) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/Flash/__tests__/Flash.test.tsx b/packages/react/src/Flash/__tests__/Flash.test.tsx index dbfb01bc77b..d6a118f8823 100644 --- a/packages/react/src/Flash/__tests__/Flash.test.tsx +++ b/packages/react/src/Flash/__tests__/Flash.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import Flash from '..' import {render, behavesAsComponent, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Flash', () => { behavesAsComponent({Component: Flash}) @@ -13,7 +13,7 @@ describe('Flash', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/Heading/__tests__/Heading.test.tsx b/packages/react/src/Heading/__tests__/Heading.test.tsx index 370b314f489..1be9598a654 100644 --- a/packages/react/src/Heading/__tests__/Heading.test.tsx +++ b/packages/react/src/Heading/__tests__/Heading.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {Heading} from '../..' import {render, behavesAsComponent, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import ThemeProvider from '../../ThemeProvider' const theme = { @@ -41,7 +41,7 @@ describe('Heading', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(Hello) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/Link/__tests__/Link.test.tsx b/packages/react/src/Link/__tests__/Link.test.tsx index 1506aca38f1..fb5e59f2b32 100644 --- a/packages/react/src/Link/__tests__/Link.test.tsx +++ b/packages/react/src/Link/__tests__/Link.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import Link from '..' import {render, behavesAsComponent, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Link', () => { behavesAsComponent({Component: Link}) @@ -13,7 +13,7 @@ describe('Link', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(GitHub) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/NavList/NavList.tsx b/packages/react/src/NavList/NavList.tsx index 3d75cb700c6..2da5b8bcef2 100644 --- a/packages/react/src/NavList/NavList.tsx +++ b/packages/react/src/NavList/NavList.tsx @@ -259,7 +259,9 @@ const Group: React.FC = ({title, children, sx: sxProp = defau <> {/* Hide divider if the group is the first item in the list */} - + + {/* Setting up the default value for the heading level. TODO: API update to give flexibility to NavList.Group title's heading level */} + {title} {children} diff --git a/packages/react/src/Overlay/Overlay.test.tsx b/packages/react/src/Overlay/Overlay.test.tsx index 2808aeb0f9e..e83cabfb014 100644 --- a/packages/react/src/Overlay/Overlay.test.tsx +++ b/packages/react/src/Overlay/Overlay.test.tsx @@ -3,7 +3,7 @@ import {Overlay, Box, Text} from '..' import {ButtonDanger, Button} from '../deprecated' import {render, waitFor, fireEvent} from '@testing-library/react' import userEvent from '@testing-library/user-event' -import {axe} from 'jest-axe' +import axe from 'axe-core' import theme from '../theme' import BaseStyles from '../BaseStyles' import {ThemeProvider} from '../ThemeProvider' @@ -59,7 +59,7 @@ const TestComponent = ({initialFocus, callback}: TestComponentSettings) => { describe('Overlay', () => { it('should have no axe violations', async () => { const {container} = render() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/RelativeTime/RelativeTime.tsx b/packages/react/src/RelativeTime/RelativeTime.tsx index 12eb1776669..b33e8d79a45 100644 --- a/packages/react/src/RelativeTime/RelativeTime.tsx +++ b/packages/react/src/RelativeTime/RelativeTime.tsx @@ -1,7 +1,7 @@ import React from 'react' import {RelativeTimeElement} from '@github/relative-time-element' import type {ComponentProps} from '../utils/types' -import {createComponent} from '../utils/custom-element' +import {createComponent} from '../utils/create-component' const RelativeTimeComponent = createComponent(RelativeTimeElement, 'relative-time') diff --git a/packages/react/src/SelectPanel/SelectPanel.test.tsx b/packages/react/src/SelectPanel/SelectPanel.test.tsx index 3f5b953010b..fa9b8771dfb 100644 --- a/packages/react/src/SelectPanel/SelectPanel.test.tsx +++ b/packages/react/src/SelectPanel/SelectPanel.test.tsx @@ -1,5 +1,5 @@ import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import React from 'react' import theme from '../theme' import {SelectPanel} from '../SelectPanel' @@ -53,7 +53,7 @@ describe('SelectPanel', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/Stack/Stack.tsx b/packages/react/src/Stack/Stack.tsx index f423ce4fce1..273112d3c3a 100644 --- a/packages/react/src/Stack/Stack.tsx +++ b/packages/react/src/Stack/Stack.tsx @@ -81,28 +81,28 @@ const StyledStack = styled.div` align-items: baseline; } - &[data-spread='start'], - &[data-spread-narrow='start'] { + &[data-justify='start'], + &[data-justify-narrow='start'] { justify-content: flex-start; } - &[data-spread='center'], - &[data-spread-narrow='center'] { + &[data-justify='center'], + &[data-justify-narrow='center'] { justify-content: center; } - &[data-spread='end'], - &[data-spread-narrow='end'] { + &[data-justify='end'], + &[data-justify-narrow='end'] { justify-content: flex-end; } - &[data-spread='space-between'], - &[data-spread-narrow='space-between'] { + &[data-justify='space-between'], + &[data-justify-narrow='space-between'] { justify-content: space-between; } - &[data-spread='space-evenly'], - &[data-spread-narrow='space-evenly'] { + &[data-justify='space-evenly'], + &[data-justify-narrow='space-evenly'] { justify-content: space-evenly; } @@ -174,23 +174,23 @@ const StyledStack = styled.div` align-items: baseline; } - &[data-spread-regular='start'] { + &[data-justify-regular='start'] { justify-content: flex-start; } - &[data-spread-regular='center'] { + &[data-justify-regular='center'] { justify-content: center; } - &[data-spread-regular='end'] { + &[data-justify-regular='end'] { justify-content: flex-end; } - &[data-spread-regular='space-between'] { + &[data-justify-regular='space-between'] { justify-content: space-between; } - &[data-spread-regular='space-evenly'] { + &[data-justify-regular='space-evenly'] { justify-content: space-evenly; } @@ -263,23 +263,23 @@ const StyledStack = styled.div` align-items: baseline; } - &[data-spread-wide='start'] { + &[data-justify-wide='start'] { justify-content: flex-start; } - &[data-spread-wide='center'] { + &[data-justify-wide='center'] { justify-content: center; } - &[data-spread-wide='end'] { + &[data-justify-wide='end'] { justify-content: flex-end; } - &[data-spread-wide='space-between'] { + &[data-justify-wide='space-between'] { justify-content: space-between; } - &[data-spread-wide='space-evenly'] { + &[data-justify-wide='space-evenly'] { justify-content: space-evenly; } } diff --git a/packages/react/src/StateLabel/__tests__/StateLabel.test.tsx b/packages/react/src/StateLabel/__tests__/StateLabel.test.tsx index 4fec26dbfb1..f7a492b1d6a 100644 --- a/packages/react/src/StateLabel/__tests__/StateLabel.test.tsx +++ b/packages/react/src/StateLabel/__tests__/StateLabel.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import StateLabel from '../StateLabel' import {render, behavesAsComponent, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('StateLabel', () => { behavesAsComponent({ @@ -23,7 +23,7 @@ describe('StateLabel', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/TabNav/__tests__/TabNav.test.tsx b/packages/react/src/TabNav/__tests__/TabNav.test.tsx index 621ca55157a..9dc5b59c807 100644 --- a/packages/react/src/TabNav/__tests__/TabNav.test.tsx +++ b/packages/react/src/TabNav/__tests__/TabNav.test.tsx @@ -3,7 +3,7 @@ import TabNav from '..' import {behavesAsComponent, checkExports} from '../../utils/testing' import {fireEvent, render as HTMLRender} from '@testing-library/react' import userEvent from '@testing-library/user-event' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {Button} from '../../Button' import Box from '../../Box' @@ -38,7 +38,7 @@ describe('TabNav', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/Text/Text.test.tsx b/packages/react/src/Text/Text.test.tsx index a3ac00fcae3..190690d0c34 100644 --- a/packages/react/src/Text/Text.test.tsx +++ b/packages/react/src/Text/Text.test.tsx @@ -3,7 +3,7 @@ import {Text} from '..' import theme from '../theme' import {px, render, renderStyles, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Text', () => { behavesAsComponent({Component: Text}) @@ -18,7 +18,7 @@ describe('Text', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(hello) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/Timeline/__tests__/Timeline.test.tsx b/packages/react/src/Timeline/__tests__/Timeline.test.tsx index 004d9381c60..c02faab4135 100644 --- a/packages/react/src/Timeline/__tests__/Timeline.test.tsx +++ b/packages/react/src/Timeline/__tests__/Timeline.test.tsx @@ -1,5 +1,5 @@ import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {render, rendersClass, behavesAsComponent, checkExports} from '../../utils/testing' import React from 'react' @@ -14,7 +14,7 @@ describe('Timeline', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) @@ -28,7 +28,7 @@ describe('Timeline.Item', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) @@ -46,7 +46,7 @@ describe('Timeline.Badge', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/Token/__tests__/Token.test.tsx b/packages/react/src/Token/__tests__/Token.test.tsx index 6e4e91a6625..45274a3d937 100644 --- a/packages/react/src/Token/__tests__/Token.test.tsx +++ b/packages/react/src/Token/__tests__/Token.test.tsx @@ -3,7 +3,7 @@ import userEvent from '@testing-library/user-event' import React from 'react' import Token from '../Token' import {render, behavesAsComponent} from '../../utils/testing' -import {axe} from 'jest-axe' +import axe from 'axe-core' import type {TokenSizeKeys} from '../TokenBase' import {tokenSizes} from '../TokenBase' import {IssueLabelToken, AvatarToken} from '..' @@ -79,7 +79,7 @@ const testTokenComponent = (Component: React.ComponentType { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) } diff --git a/packages/react/src/Tooltip/Tooltip.test.tsx b/packages/react/src/Tooltip/Tooltip.test.tsx index 61bb185d818..9ef51b883aa 100644 --- a/packages/react/src/Tooltip/Tooltip.test.tsx +++ b/packages/react/src/Tooltip/Tooltip.test.tsx @@ -3,7 +3,7 @@ import type {TooltipProps} from './Tooltip' import Tooltip from './Tooltip' import {render, renderClasses, rendersClass, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender, screen} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {CodeIcon} from '@primer/octicons-react' /* Tooltip v1 */ @@ -17,7 +17,7 @@ describe('Tooltip', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/TreeView/TreeView.docs.json b/packages/react/src/TreeView/TreeView.docs.json index 5f820b0b02a..fb8d83893ef 100644 --- a/packages/react/src/TreeView/TreeView.docs.json +++ b/packages/react/src/TreeView/TreeView.docs.json @@ -105,6 +105,16 @@ } ] }, + { + "name": "TreeView.LeadingAction", + "props": [ + { + "name": "children", + "required": true, + "type": "React.ReactNode" + } + ] + }, { "name": "TreeView.DirectoryIcon", "props": [] diff --git a/packages/react/src/TreeView/TreeView.examples.stories.tsx b/packages/react/src/TreeView/TreeView.examples.stories.tsx new file mode 100644 index 00000000000..47e2b1f291d --- /dev/null +++ b/packages/react/src/TreeView/TreeView.examples.stories.tsx @@ -0,0 +1,76 @@ +import {GrabberIcon} from '@primer/octicons-react' +import type {Meta, Story} from '@storybook/react' +import React from 'react' +import Box from '../Box' +import {TreeView} from './TreeView' +import {IconButton} from '../Button' + +const meta: Meta = { + title: 'Components/TreeView/Examples', + component: TreeView, + decorators: [ + Story => { + return ( + // Prevent TreeView from expanding to the full width of the screen + + + + ) + }, + ], +} + +export const DraggableListItem: Story = () => { + return ( + + + Item 1 + + Item 2 + + sub task 1 + sub task 2 + + + Item 3 + + + ) +} + +const ControlledDraggableItem: React.FC<{id: string; children: React.ReactNode}> = ({id, children}) => { + const [expanded, setExpanded] = React.useState(false) + + return ( + <> + + + { + setExpanded(false) + // other drag logic to follow + }} + /> + + {children} + + + ) +} + +export default meta diff --git a/packages/react/src/TreeView/TreeView.features.stories.tsx b/packages/react/src/TreeView/TreeView.features.stories.tsx index 9470ad91730..639fd6602e7 100644 --- a/packages/react/src/TreeView/TreeView.features.stories.tsx +++ b/packages/react/src/TreeView/TreeView.features.stories.tsx @@ -4,7 +4,10 @@ import { DiffRemovedIcon, DiffRenamedIcon, FileIcon, + GrabberIcon, KebabHorizontalIcon, + IssueClosedIcon, + IssueOpenedIcon, } from '@primer/octicons-react' import type {Meta, Story} from '@storybook/react' import React from 'react' @@ -989,4 +992,136 @@ export const WithoutIndentation: Story = () => ( ) +export const LeadingAction: Story = () => { + return ( + + + + + + + + + Item 1 + + + + + + + + + Item 2 + + + + + + sub task 1 + + + + + + sub task 2 + + + + + + + + + + + Item 3 + + + ) +} + +export const MultilineItems: Story = () => ( + +) + export default meta diff --git a/packages/react/src/TreeView/TreeView.test.tsx b/packages/react/src/TreeView/TreeView.test.tsx index 00f076da368..ff48cbde3b6 100644 --- a/packages/react/src/TreeView/TreeView.test.tsx +++ b/packages/react/src/TreeView/TreeView.test.tsx @@ -981,6 +981,102 @@ describe('Keyboard interactions', () => { }) }) + describe('Space', () => { + it('calls onSelect function if provided and checks if the item has been selected', () => { + const onSelect = jest.fn() + const {getByRole} = renderWithTheme( + + + Parent 1 + + + Child 1 + + + + + Parent 2 + + + Child2 + + + + + Parent 3 + + + Child 3 + + + + , + ) + const itemChild = getByRole('treeitem', {name: 'Child2'}) + + act(() => { + // Focus first item + itemChild.focus() + }) + + // Press Enter + fireEvent.keyDown(document.activeElement || document.body, {key: ' '}) + + // onSelect should have been called + expect(onSelect).toHaveBeenCalledTimes(1) + + onSelect.mockClear() + + // Press middle click + fireEvent.click(document.activeElement?.firstChild || document.body, {button: 1}) + + // onSelect should have been called + expect(onSelect).toHaveBeenCalledTimes(1) + }) + + it('toggles expanded state if no onSelect function is provided', () => { + const {getByRole, queryByRole} = renderWithTheme( + + + Parent + + Child 1 + Child 2 + + + , + ) + + const parent = getByRole('treeitem', {name: 'Parent'}) + + act(() => { + // Focus first item + parent.focus() + }) + + // aria-expanded should be false + expect(parent).toHaveAttribute('aria-expanded', 'false') + + // Press Enter + fireEvent.keyDown(document.activeElement || document.body, {key: 'Enter'}) + + // aria-expanded should now be true + expect(parent).toHaveAttribute('aria-expanded', 'true') + + // Subtree should be visible + expect(queryByRole('group')).toBeVisible() + + // Press Enter + fireEvent.keyDown(document.activeElement || document.body, {key: 'Enter'}) + + // aria-expanded should now be false + expect(parent).toHaveAttribute('aria-expanded', 'false') + + // Subtree should no longer be visible + expect(queryByRole('group')).not.toBeInTheDocument() + }) + }) + describe('Typeahead', () => { it('moves focus to the next item that matches the typed character', () => { const {getByRole} = renderWithTheme( diff --git a/packages/react/src/TreeView/TreeView.tsx b/packages/react/src/TreeView/TreeView.tsx index 234a8115da3..06aa13321c6 100644 --- a/packages/react/src/TreeView/TreeView.tsx +++ b/packages/react/src/TreeView/TreeView.tsx @@ -67,6 +67,9 @@ export type TreeViewProps = { className?: string } +/* Size of toggle icon in pixels. */ +const TOGGLE_ICON_SIZE = 12 + const UlBox = styled.ul` list-style: none; padding: 0; @@ -97,17 +100,22 @@ const UlBox = styled.ul` outline-offset: -2; } } + &[data-has-leading-action] { + --has-leading-action: 1; + } } .PRIVATE_TreeView-item-container { --level: 1; /* default level */ --toggle-width: 1rem; /* 16px */ + --min-item-height: 2rem; /* 32px */ position: relative; display: grid; - grid-template-columns: calc(calc(var(--level) - 1) * (var(--toggle-width) / 2)) var(--toggle-width) 1fr; - grid-template-areas: 'spacer toggle content'; + --leading-action-width: calc(var(--has-leading-action, 0) * 1.5rem); + --spacer-width: calc(calc(var(--level) - 1) * (var(--toggle-width) / 2)); + grid-template-columns: var(--spacer-width) var(--leading-action-width) var(--toggle-width) 1fr; + grid-template-areas: 'spacer leadingAction toggle content'; width: 100%; - min-height: 2rem; /* 32px */ font-size: ${get('fontSizes.1')}; color: ${get('colors.fg.default')}; border-radius: ${get('radii.2')}; @@ -124,7 +132,7 @@ const UlBox = styled.ul` @media (pointer: coarse) { --toggle-width: 1.5rem; /* 24px */ - min-height: 2.75rem; /* 44px */ + --min-item-height: 2.75rem; /* 44px */ } &:has(.PRIVATE_TreeView-item-skeleton):hover { @@ -138,7 +146,7 @@ const UlBox = styled.ul` } &[data-omit-spacer='true'] .PRIVATE_TreeView-item-container { - grid-template-columns: 0 0 1fr; + grid-template-columns: 0 0 0 1fr; } .PRIVATE_TreeView-item[aria-current='true'] > .PRIVATE_TreeView-item-container { @@ -164,8 +172,11 @@ const UlBox = styled.ul` .PRIVATE_TreeView-item-toggle { grid-area: toggle; display: flex; - align-items: center; justify-content: center; + align-items: flex-start; + /* The toggle should appear vertically centered for single-line items, but remain at the top for items that wrap + across more lines. */ + padding-top: calc(var(--min-item-height) / 2 - ${TOGGLE_ICON_SIZE}px / 2); height: 100%; color: ${get('colors.fg.muted')}; } @@ -182,10 +193,13 @@ const UlBox = styled.ul` .PRIVATE_TreeView-item-content { grid-area: content; display: flex; - align-items: center; height: 100%; padding: 0 ${get('space.2')}; gap: ${get('space.2')}; + line-height: var(--custom-line-height, var(--text-body-lineHeight-medium, 1.4285)); + /* The dynamic top and bottom padding to maintain the minimum item height for single line items */ + padding-top: calc((var(--min-item-height) - var(--custom-line-height, 1.3rem)) / 2); + padding-bottom: calc((var(--min-item-height) - var(--custom-line-height, 1.3rem)) / 2); } .PRIVATE_TreeView-item-content-text { @@ -199,7 +213,17 @@ const UlBox = styled.ul` .PRIVATE_TreeView-item-visual { display: flex; + align-items: center; color: ${get('colors.fg.muted')}; + /* The visual icons should appear vertically centered for single-line items, but remain at the top for items that wrap + across more lines. */ + height: var(--custom-line-height, 1.3rem); + } + + .PRIVATE_TreeView-item-leading-action { + display: flex; + color: ${get('colors.fg.muted')}; + grid-area: leadingAction; } .PRIVATE_TreeView-item-level-line { @@ -354,11 +378,16 @@ const Item = React.forwardRef( }, ref, ) => { - const [slots, rest] = useSlots(children, {leadingVisual: LeadingVisual, trailingVisual: TrailingVisual}) + const [slots, rest] = useSlots(children, { + leadingAction: LeadingAction, + leadingVisual: LeadingVisual, + trailingVisual: TrailingVisual, + }) const {expandedStateCache} = React.useContext(RootContext) const labelId = useId() const leadingVisualId = useId() const trailingVisualId = useId() + const [isExpanded, setIsExpanded] = useControllableState({ name: itemId, // If the item was previously mounted, it's expanded state might be cached. @@ -396,7 +425,7 @@ const Item = React.forwardRef( (event: React.KeyboardEvent) => { switch (event.key) { case 'Enter': - case 'Space': + case ' ': if (onSelect) { onSelect(event) } else { @@ -449,6 +478,7 @@ const Item = React.forwardRef( aria-expanded={isSubTreeEmpty ? undefined : isExpanded} aria-current={isCurrentItem ? 'true' : undefined} aria-selected={isFocused ? 'true' : 'false'} + data-has-leading-action={slots.leadingAction ? true : undefined} onKeyDown={handleKeyDown} onFocus={event => { // Scroll the first child into view when the item receives focus @@ -488,6 +518,7 @@ const Item = React.forwardRef(
+ {slots.leadingAction} {hasSubTree ? ( // This lint rule is disabled due to the guidelines in the `TreeView` api docs. // https://github.com/github/primer/blob/main/apis/tree-view-api.md#the-expandcollapse-chevron-toggle @@ -506,7 +537,11 @@ const Item = React.forwardRef( } }} > - {isExpanded ? : } + {isExpanded ? ( + + ) : ( + + )} ) : null}
@@ -829,6 +864,25 @@ const TrailingVisual: React.FC = props => { TrailingVisual.displayName = 'TreeView.TrailingVisual' +// ---------------------------------------------------------------------------- +// TreeView.LeadingAction + +const LeadingAction: React.FC = props => { + const {isExpanded} = React.useContext(ItemContext) + const children = typeof props.children === 'function' ? props.children({isExpanded}) : props.children + return ( + <> +
+ {props.label} +
+
+ {children} +
+ + ) +} + +LeadingAction.displayName = 'TreeView.LeadingAction' // ---------------------------------------------------------------------------- // TreeView.DirectoryIcon @@ -898,6 +952,7 @@ ErrorDialog.displayName = 'TreeView.ErrorDialog' export const TreeView = Object.assign(Root, { Item, SubTree, + LeadingAction, LeadingVisual, TrailingVisual, DirectoryIcon, diff --git a/packages/react/src/TreeView/useTypeahead.ts b/packages/react/src/TreeView/useTypeahead.ts index fe430c597a3..cfd5f35f6d4 100644 --- a/packages/react/src/TreeView/useTypeahead.ts +++ b/packages/react/src/TreeView/useTypeahead.ts @@ -63,7 +63,7 @@ export function useTypeahead({containerRef, onFocusChange}: TypeaheadOptions) { function onKeyDown(event: KeyboardEvent) { // Ignore key presses that don't produce a character value - if (!event.key || event.key.length > 1) return + if (!event.key || event.key.length > 1 || event.key === ' ') return // Ignore key presses that occur with a modifier if (event.ctrlKey || event.altKey || event.metaKey) return diff --git a/packages/react/src/Truncate/Truncate.test.tsx b/packages/react/src/Truncate/Truncate.test.tsx index 070e509a6ad..e58aa78807a 100644 --- a/packages/react/src/Truncate/Truncate.test.tsx +++ b/packages/react/src/Truncate/Truncate.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {Truncate} from '..' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Truncate', () => { behavesAsComponent({ @@ -20,7 +20,7 @@ describe('Truncate', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(a-long-branch-name) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/ActionMenu.test.tsx b/packages/react/src/__tests__/ActionMenu.test.tsx index 0c6c9ace83a..91533a83b3a 100644 --- a/packages/react/src/__tests__/ActionMenu.test.tsx +++ b/packages/react/src/__tests__/ActionMenu.test.tsx @@ -1,6 +1,6 @@ import {render as HTMLRender, waitFor, act, within} from '@testing-library/react' import userEvent from '@testing-library/user-event' -import {axe} from 'jest-axe' +import axe from 'axe-core' import React from 'react' import theme from '../theme' import {ActionMenu, ActionList, BaseStyles, ThemeProvider, SSRProvider, Tooltip, Button, IconButton} from '..' @@ -336,7 +336,7 @@ describe('ActionMenu', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/AnchoredOverlay.test.tsx b/packages/react/src/__tests__/AnchoredOverlay.test.tsx index df29f2b39ee..e8e4e904640 100644 --- a/packages/react/src/__tests__/AnchoredOverlay.test.tsx +++ b/packages/react/src/__tests__/AnchoredOverlay.test.tsx @@ -2,7 +2,7 @@ import React, {useCallback, useState} from 'react' import {AnchoredOverlay} from '../AnchoredOverlay' import {behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender, fireEvent} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {SSRProvider} from '../index' import {Button} from '../deprecated' import theme from '../theme' @@ -67,13 +67,13 @@ describe('AnchoredOverlay', () => { it('should have no axe violations when open', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) it('should have no axe violations when closed', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Avatar.test.tsx b/packages/react/src/__tests__/Avatar.test.tsx index 18ed0af8758..10b902fea2a 100644 --- a/packages/react/src/__tests__/Avatar.test.tsx +++ b/packages/react/src/__tests__/Avatar.test.tsx @@ -3,7 +3,7 @@ import {Avatar} from '..' import theme from '../theme' import {px, render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Avatar', () => { behavesAsComponent({Component: Avatar}) @@ -14,7 +14,7 @@ describe('Avatar', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/AvatarStack.test.tsx b/packages/react/src/__tests__/AvatarStack.test.tsx index a1ab1a3c122..c04aa672470 100644 --- a/packages/react/src/__tests__/AvatarStack.test.tsx +++ b/packages/react/src/__tests__/AvatarStack.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {AvatarStack} from '..' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' const avatarComp = ( @@ -35,7 +35,7 @@ describe('Avatar', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(avatarComp) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Box.test.tsx b/packages/react/src/__tests__/Box.test.tsx index 16ab4f3d863..edaf2fda5ab 100644 --- a/packages/react/src/__tests__/Box.test.tsx +++ b/packages/react/src/__tests__/Box.test.tsx @@ -1,5 +1,5 @@ import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import React from 'react' import {Box} from '..' import theme from '../theme' @@ -14,7 +14,7 @@ describe('Box', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Caret.test.tsx b/packages/react/src/__tests__/Caret.test.tsx index 8a21beca194..63831986da0 100644 --- a/packages/react/src/__tests__/Caret.test.tsx +++ b/packages/react/src/__tests__/Caret.test.tsx @@ -3,7 +3,7 @@ import type {CaretProps} from '../Caret' import Caret from '../Caret' import {render, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Caret', () => { it('renders ', () => { @@ -16,7 +16,7 @@ describe('Caret', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/CircleBadge.test.tsx b/packages/react/src/__tests__/CircleBadge.test.tsx index 2a77f05fc1b..149e2e2aa0a 100644 --- a/packages/react/src/__tests__/CircleBadge.test.tsx +++ b/packages/react/src/__tests__/CircleBadge.test.tsx @@ -3,7 +3,7 @@ import {CircleBadge} from '..' import {CheckIcon} from '@primer/octicons-react' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' const imgInput = @@ -26,7 +26,7 @@ describe('CircleBadge', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/CircleOcticon.test.tsx b/packages/react/src/__tests__/CircleOcticon.test.tsx index fa999f1d39c..dcc861222af 100644 --- a/packages/react/src/__tests__/CircleOcticon.test.tsx +++ b/packages/react/src/__tests__/CircleOcticon.test.tsx @@ -3,7 +3,7 @@ import {CheckIcon} from '@primer/octicons-react' import {CircleOcticon} from '..' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('CircleOcticon', () => { behavesAsComponent({ @@ -23,7 +23,7 @@ describe('CircleOcticon', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Dialog.test.tsx b/packages/react/src/__tests__/Dialog.test.tsx index 0224219d297..497a2148021 100644 --- a/packages/react/src/__tests__/Dialog.test.tsx +++ b/packages/react/src/__tests__/Dialog.test.tsx @@ -2,7 +2,7 @@ import React, {useState, useRef} from 'react' import {Dialog, Box, Text} from '..' import {Button} from '../deprecated' import {render as HTMLRender, fireEvent} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {behavesAsComponent, checkExports} from '../utils/testing' /* Dialog Version 2 */ @@ -91,7 +91,7 @@ describe('Dialog', () => { const spy = jest.spyOn(console, 'warn').mockImplementation() const {container} = HTMLRender(comp) spy.mockRestore() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/FormControl.test.tsx b/packages/react/src/__tests__/FormControl.test.tsx index 76becb22e90..f178ef57e2e 100644 --- a/packages/react/src/__tests__/FormControl.test.tsx +++ b/packages/react/src/__tests__/FormControl.test.tsx @@ -1,7 +1,7 @@ import React from 'react' import {render} from '@testing-library/react' import {renderHook} from '@testing-library/react-hooks' -import {axe} from 'jest-axe' +import axe from 'axe-core' import { Autocomplete, Checkbox, @@ -381,7 +381,7 @@ describe('FormControl', () => { , ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) @@ -451,7 +451,7 @@ describe('FormControl', () => { , ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/__tests__/Header.test.tsx b/packages/react/src/__tests__/Header.test.tsx index a16f80785fb..c4af28bc8ac 100644 --- a/packages/react/src/__tests__/Header.test.tsx +++ b/packages/react/src/__tests__/Header.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {Header} from '..' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Header', () => { behavesAsComponent({Component: Header}) @@ -31,7 +31,7 @@ describe('Header', () => { Three , ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Label.test.tsx b/packages/react/src/__tests__/Label.test.tsx index 331bf2e4980..940726e534d 100644 --- a/packages/react/src/__tests__/Label.test.tsx +++ b/packages/react/src/__tests__/Label.test.tsx @@ -1,6 +1,6 @@ import React from 'react' import {render} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import type {LabelColorOptions} from '../Label' import Label, {variants} from '../Label' import {renderStyles} from '../utils/testing' @@ -31,7 +31,7 @@ describe('Label', () => { it('should have no axe violations', async () => { for (const variant in variants) { const {container} = render() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() } }) diff --git a/packages/react/src/__tests__/LabelGroup.test.tsx b/packages/react/src/__tests__/LabelGroup.test.tsx index fcaa79dd83b..b2e8f6192f5 100644 --- a/packages/react/src/__tests__/LabelGroup.test.tsx +++ b/packages/react/src/__tests__/LabelGroup.test.tsx @@ -1,6 +1,6 @@ import React from 'react' import {render as HTMLRender, waitFor} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {LabelGroup, Label, ThemeProvider, BaseStyles} from '..' import {behavesAsComponent, checkExports} from '../utils/testing' import theme from '../theme' @@ -58,7 +58,7 @@ describe('LabelGroup', () => { , ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Octicon.test.tsx b/packages/react/src/__tests__/Octicon.test.tsx index 0d191eedae6..282ee99416b 100644 --- a/packages/react/src/__tests__/Octicon.test.tsx +++ b/packages/react/src/__tests__/Octicon.test.tsx @@ -3,7 +3,7 @@ import {XIcon} from '@primer/octicons-react' import {Octicon} from '..' import {behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Octicon', () => { behavesAsComponent({ @@ -17,7 +17,7 @@ describe('Octicon', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/__tests__/Pagehead.test.tsx b/packages/react/src/__tests__/Pagehead.test.tsx index d628ac28dd1..40a487afe3c 100644 --- a/packages/react/src/__tests__/Pagehead.test.tsx +++ b/packages/react/src/__tests__/Pagehead.test.tsx @@ -3,7 +3,7 @@ import {Pagehead} from '..' import theme from '../theme' import {behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Pagehead', () => { behavesAsComponent({Component: Pagehead}) @@ -14,7 +14,7 @@ describe('Pagehead', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(Pagehead) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/__tests__/Pagination/Pagination.test.tsx b/packages/react/src/__tests__/Pagination/Pagination.test.tsx index 204850efd78..8511cf6e29e 100644 --- a/packages/react/src/__tests__/Pagination/Pagination.test.tsx +++ b/packages/react/src/__tests__/Pagination/Pagination.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import Pagination from '../../Pagination' import {behavesAsComponent} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' const reqProps = {pageCount: 10, currentPage: 1} const comp = @@ -12,7 +12,7 @@ describe('Pagination', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(comp) - const results = await axe(container, { + const results = await axe.run(container, { rules: { // The skip-link rule has to do with entire documents // and is not relevant to this component. diff --git a/packages/react/src/__tests__/PointerBox.test.tsx b/packages/react/src/__tests__/PointerBox.test.tsx index ae81a947897..f665247dbb7 100644 --- a/packages/react/src/__tests__/PointerBox.test.tsx +++ b/packages/react/src/__tests__/PointerBox.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {PointerBox} from '..' import {render, behavesAsComponent, checkExports, renderStyles} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('PointerBox', () => { behavesAsComponent({Component: PointerBox}) @@ -17,7 +17,7 @@ describe('PointerBox', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Popover.test.tsx b/packages/react/src/__tests__/Popover.test.tsx index 160ae46003c..bb1265b25ca 100644 --- a/packages/react/src/__tests__/Popover.test.tsx +++ b/packages/react/src/__tests__/Popover.test.tsx @@ -3,7 +3,7 @@ import type {PopoverProps} from '../Popover' import Popover from '../Popover' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' const comp = ( @@ -28,7 +28,7 @@ describe('Popover', () => { Hello! , ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/ProgressBar.test.tsx b/packages/react/src/__tests__/ProgressBar.test.tsx index 48a76b75674..be373f9feb2 100644 --- a/packages/react/src/__tests__/ProgressBar.test.tsx +++ b/packages/react/src/__tests__/ProgressBar.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {ProgressBar} from '..' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('ProgressBar', () => { behavesAsComponent({Component: ProgressBar}) @@ -14,7 +14,7 @@ describe('ProgressBar', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/RelativeTime.test.tsx b/packages/react/src/__tests__/RelativeTime.test.tsx index 9511663773a..bf279a73b47 100644 --- a/packages/react/src/__tests__/RelativeTime.test.tsx +++ b/packages/react/src/__tests__/RelativeTime.test.tsx @@ -1,7 +1,7 @@ import React from 'react' import {RelativeTime} from '..' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import {render, behavesAsComponent, checkExports} from '../utils/testing' describe('RelativeTime', () => { @@ -13,7 +13,7 @@ describe('RelativeTime', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/SideNav.test.tsx b/packages/react/src/__tests__/SideNav.test.tsx index f5acd31229b..f646a9c9c5e 100644 --- a/packages/react/src/__tests__/SideNav.test.tsx +++ b/packages/react/src/__tests__/SideNav.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {SideNav} from '..' import {render, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('SideNav', () => { behavesAsComponent({Component: SideNav}) @@ -24,7 +24,7 @@ describe('SideNav', () => { , ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/Spinner.test.tsx b/packages/react/src/__tests__/Spinner.test.tsx index bf74380f1e1..8284b670ee1 100644 --- a/packages/react/src/__tests__/Spinner.test.tsx +++ b/packages/react/src/__tests__/Spinner.test.tsx @@ -3,7 +3,7 @@ import type {SpinnerProps} from '..' import {Spinner} from '..' import {behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('Spinner', () => { behavesAsComponent({ @@ -16,7 +16,7 @@ describe('Spinner', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/SubNav.test.tsx b/packages/react/src/__tests__/SubNav.test.tsx index 7464f78c1bc..d1eb196efc7 100644 --- a/packages/react/src/__tests__/SubNav.test.tsx +++ b/packages/react/src/__tests__/SubNav.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {SubNav} from '..' import {render, rendersClass, behavesAsComponent, checkExports} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('SubNav', () => { behavesAsComponent({Component: SubNav}) @@ -13,7 +13,7 @@ describe('SubNav', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/SubNavLink.test.tsx b/packages/react/src/__tests__/SubNavLink.test.tsx index d9055ecf8ae..0aa9577dd6a 100644 --- a/packages/react/src/__tests__/SubNavLink.test.tsx +++ b/packages/react/src/__tests__/SubNavLink.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {SubNav} from '..' import {render, behavesAsComponent} from '../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('SubNav.Link', () => { behavesAsComponent({Component: SubNav.Link}) @@ -13,7 +13,7 @@ describe('SubNav.Link', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/TextInput.test.tsx b/packages/react/src/__tests__/TextInput.test.tsx index 78d18969e73..866e00cb09f 100644 --- a/packages/react/src/__tests__/TextInput.test.tsx +++ b/packages/react/src/__tests__/TextInput.test.tsx @@ -1,7 +1,7 @@ import {SearchIcon} from '@primer/octicons-react' import userEvent from '@testing-library/user-event' import {render as HTMLRender, fireEvent, screen} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import React from 'react' import {TextInput} from '..' import {render, behavesAsComponent, checkExports} from '../utils/testing' @@ -15,7 +15,7 @@ describe('TextInput', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/TextInputWithTokens.test.tsx b/packages/react/src/__tests__/TextInputWithTokens.test.tsx index 3fe10b34588..d70ec90d97d 100644 --- a/packages/react/src/__tests__/TextInputWithTokens.test.tsx +++ b/packages/react/src/__tests__/TextInputWithTokens.test.tsx @@ -1,7 +1,7 @@ import React from 'react' import {render} from '../utils/testing' import {render as HTMLRender, fireEvent, act} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import type {TokenSizeKeys} from '../Token/TokenBase' import {tokenSizes} from '../Token/TokenBase' import {IssueLabelToken} from '../Token' @@ -551,7 +551,7 @@ describe('TextInputWithTokens', () => { it('should have no axe violations', async () => { const onRemoveMock = jest.fn() const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/__tests__/__snapshots__/exports.test.ts.snap b/packages/react/src/__tests__/__snapshots__/exports.test.ts.snap index c29dc006f94..4dbaf3f35d0 100644 --- a/packages/react/src/__tests__/__snapshots__/exports.test.ts.snap +++ b/packages/react/src/__tests__/__snapshots__/exports.test.ts.snap @@ -58,6 +58,7 @@ exports[`@primer/react should not update exports without a semver change 1`] = ` "type ConfirmationDialogProps", "CounterLabel", "type CounterLabelProps", + "createComponent", "Details", "type DetailsProps", "Dialog", diff --git a/packages/react/src/__tests__/deprecated/ActionList.test.tsx b/packages/react/src/__tests__/deprecated/ActionList.test.tsx index b5e21b4e8ae..ec4c6c4955f 100644 --- a/packages/react/src/__tests__/deprecated/ActionList.test.tsx +++ b/packages/react/src/__tests__/deprecated/ActionList.test.tsx @@ -1,5 +1,5 @@ import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import React from 'react' import theme from '../../theme' import {ActionList} from '../../deprecated/ActionList' @@ -38,7 +38,7 @@ describe('ActionList', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/__tests__/deprecated/ActionMenu.test.tsx b/packages/react/src/__tests__/deprecated/ActionMenu.test.tsx index e2d93e006a1..7a74aac00a8 100644 --- a/packages/react/src/__tests__/deprecated/ActionMenu.test.tsx +++ b/packages/react/src/__tests__/deprecated/ActionMenu.test.tsx @@ -1,5 +1,5 @@ import {render as HTMLRender, fireEvent} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' import React from 'react' import theme from '../../theme' import {ActionMenu} from '../../deprecated' @@ -52,7 +52,7 @@ describe('ActionMenu', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/deprecated/Button.test.tsx b/packages/react/src/__tests__/deprecated/Button.test.tsx index e6d2bac9003..14b12d2e34d 100644 --- a/packages/react/src/__tests__/deprecated/Button.test.tsx +++ b/packages/react/src/__tests__/deprecated/Button.test.tsx @@ -11,7 +11,7 @@ import { import {ButtonGroup} from '../..' import {render, behavesAsComponent, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' function noop() {} @@ -37,7 +37,7 @@ describe('Button', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/deprecated/FilterList.test.tsx b/packages/react/src/__tests__/deprecated/FilterList.test.tsx index c8016f33f0a..ab369022b4e 100644 --- a/packages/react/src/__tests__/deprecated/FilterList.test.tsx +++ b/packages/react/src/__tests__/deprecated/FilterList.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {FilterList} from '../../deprecated' import {render, behavesAsComponent, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('FilterList', () => { behavesAsComponent({Component: FilterList}) @@ -13,7 +13,7 @@ describe('FilterList', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(Hello) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/deprecated/FilterListItem.test.tsx b/packages/react/src/__tests__/deprecated/FilterListItem.test.tsx index 7877e639996..37b462bbe83 100644 --- a/packages/react/src/__tests__/deprecated/FilterListItem.test.tsx +++ b/packages/react/src/__tests__/deprecated/FilterListItem.test.tsx @@ -2,14 +2,14 @@ import React from 'react' import {FilterList} from '../../deprecated' import {render, behavesAsComponent} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('FilterList.Item', () => { behavesAsComponent({Component: FilterList.Item}) it('should have no axe violations', async () => { const {container} = HTMLRender(stuff) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/__tests__/deprecated/FilteredSearch.test.tsx b/packages/react/src/__tests__/deprecated/FilteredSearch.test.tsx index eecaec0869d..e86a14679a1 100644 --- a/packages/react/src/__tests__/deprecated/FilteredSearch.test.tsx +++ b/packages/react/src/__tests__/deprecated/FilteredSearch.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {FilteredSearch} from '../../deprecated' import {render, behavesAsComponent, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('FilteredSearch', () => { behavesAsComponent({Component: FilteredSearch}) @@ -13,7 +13,7 @@ describe('FilteredSearch', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(Hello) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/deprecated/UnderlineNav/UnderlineNav.test.tsx b/packages/react/src/deprecated/UnderlineNav/UnderlineNav.test.tsx index 0fa5c8708ae..a6264577242 100644 --- a/packages/react/src/deprecated/UnderlineNav/UnderlineNav.test.tsx +++ b/packages/react/src/deprecated/UnderlineNav/UnderlineNav.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {UnderlineNav} from '../../deprecated' import {render, rendersClass, checkExports} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('UnderlineNav', () => { checkExports('deprecated/UnderlineNav', { @@ -11,7 +11,7 @@ describe('UnderlineNav', () => { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) diff --git a/packages/react/src/deprecated/UnderlineNav/UnderlineNavLink.test.tsx b/packages/react/src/deprecated/UnderlineNav/UnderlineNavLink.test.tsx index 41db2d468fb..d0bf810fb7f 100644 --- a/packages/react/src/deprecated/UnderlineNav/UnderlineNavLink.test.tsx +++ b/packages/react/src/deprecated/UnderlineNav/UnderlineNavLink.test.tsx @@ -2,7 +2,7 @@ import React from 'react' import {UnderlineNav} from '../../deprecated' import {render} from '../../utils/testing' import {render as HTMLRender} from '@testing-library/react' -import {axe} from 'jest-axe' +import axe from 'axe-core' describe('UnderlineNav.Link', () => { it('renders an
by default', () => { @@ -11,7 +11,7 @@ describe('UnderlineNav.Link', () => { it('should have no axe violations', async () => { const {container} = HTMLRender(Go to GitHub) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/drafts/ActionBar/ActionBar.stories.tsx b/packages/react/src/drafts/ActionBar/ActionBar.stories.tsx index 27d5ce0173e..f2dd0563a0a 100644 --- a/packages/react/src/drafts/ActionBar/ActionBar.stories.tsx +++ b/packages/react/src/drafts/ActionBar/ActionBar.stories.tsx @@ -68,7 +68,7 @@ export const CommentBox = (props: CommentBoxProps) => { const [value, setValue] = React.useState('') const [isOpen, setIsOpen] = React.useState(false) const buttonRef = React.useRef(null) - const toolBarLabel = `${ariaLabel} toolbar` + const toolBarLabel = `${ariaLabel ? ariaLabel : 'Comment box'} toolbar` return ( { it('should have no axe violations', async () => { const {container} = HTMLRender() - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) }) diff --git a/packages/react/src/drafts/ActionBar/ActionBar.tsx b/packages/react/src/drafts/ActionBar/ActionBar.tsx index 4f4daa6b697..e3f5b3b9879 100644 --- a/packages/react/src/drafts/ActionBar/ActionBar.tsx +++ b/packages/react/src/drafts/ActionBar/ActionBar.tsx @@ -299,7 +299,7 @@ export const ActionBarIconButton = forwardRef((props: ActionBarIconButtonProps, const domRect = (ref as MutableRefObject).current.getBoundingClientRect() setChildrenWidth({text, width: domRect.width}) }, [ref, setChildrenWidth]) - return + return }) const sizeToHeight = { diff --git a/packages/react/src/drafts/SelectPanel2/__tests__/SelectPanelLoading.test.tsx b/packages/react/src/drafts/SelectPanel2/__tests__/SelectPanelLoading.test.tsx index 5391f464f0d..f8cfefc44a3 100644 --- a/packages/react/src/drafts/SelectPanel2/__tests__/SelectPanelLoading.test.tsx +++ b/packages/react/src/drafts/SelectPanel2/__tests__/SelectPanelLoading.test.tsx @@ -2,11 +2,14 @@ import {render} from '@testing-library/react' import React from 'react' import {SelectPanel} from '../' +jest.useFakeTimers() + describe('SelectPanel.Loading', () => { it('should announce children as a polite message', () => { render(test) const liveRegion = document.querySelector('live-region')! + jest.runAllTimers() expect(liveRegion.getMessage('polite')).toBe('test') }) @@ -14,6 +17,7 @@ describe('SelectPanel.Loading', () => { render() const liveRegion = document.querySelector('live-region')! + jest.runAllTimers() expect(liveRegion.getMessage('polite')).toBe('Fetching items...') }) }) diff --git a/packages/react/src/drafts/TabPanels/TabPanels.tsx b/packages/react/src/drafts/TabPanels/TabPanels.tsx index 85bd5de263b..ba73e72783b 100644 --- a/packages/react/src/drafts/TabPanels/TabPanels.tsx +++ b/packages/react/src/drafts/TabPanels/TabPanels.tsx @@ -4,7 +4,7 @@ import React from 'react' import styled from 'styled-components' import {get} from '../../constants' import {TabContainerElement} from '@github/tab-container-element' -import {createComponent} from '../../utils/custom-element' +import {createComponent} from '../../utils/create-component' import sx, {type SxProp} from '../../sx' import type {ComponentProps} from '../../utils/types' import getGlobalFocusStyles from '../../internal/utils/getGlobalFocusStyles' diff --git a/packages/react/src/index.ts b/packages/react/src/index.ts index 16c9d5c7e86..e3148feb8f4 100644 --- a/packages/react/src/index.ts +++ b/packages/react/src/index.ts @@ -45,6 +45,9 @@ export {useRefObjectAsForwardedRef} from './hooks/useRefObjectAsForwardedRef' export {useResizeObserver} from './hooks/useResizeObserver' export {useResponsiveValue} from './hooks/useResponsiveValue' +// Utils +export {createComponent} from './utils/create-component' + // Components export {default as Radio} from './Radio' export type {RadioProps} from './Radio' diff --git a/packages/react/src/utils/custom-element.ts b/packages/react/src/utils/create-component.ts similarity index 100% rename from packages/react/src/utils/custom-element.ts rename to packages/react/src/utils/create-component.ts diff --git a/packages/react/src/utils/test-helpers.tsx b/packages/react/src/utils/test-helpers.tsx index 056c4c17e76..52525c44008 100644 --- a/packages/react/src/utils/test-helpers.tsx +++ b/packages/react/src/utils/test-helpers.tsx @@ -36,6 +36,9 @@ if (typeof document !== 'undefined') { // eslint-disable-next-line no-invalid-this this.open = false }) + + // Add a fallback for getContext if it does not exist in the test, used for axe + global.HTMLCanvasElement.prototype.getContext = jest.fn() } // Add a fallback for scrollIntoView if it does not exist in the test diff --git a/packages/react/src/utils/test-matchers.tsx b/packages/react/src/utils/test-matchers.tsx index b61e093518e..b08a9bc54de 100644 --- a/packages/react/src/utils/test-matchers.tsx +++ b/packages/react/src/utils/test-matchers.tsx @@ -5,6 +5,7 @@ import failOnConsole from 'jest-fail-on-console' import React from 'react' import type {ReactTestRendererJSON, ReactTestRendererNode} from 'react-test-renderer' import {getClasses, getComputedStyles, render} from './testing' +import type axe from 'axe-core' expect.addSnapshotSerializer(styleSheetSerializer) @@ -99,6 +100,27 @@ expect.extend({ message: () => '', } }, + + toHaveNoViolations(results: axe.AxeResults) { + return { + pass: results.violations.length === 0, + message: () => { + return results.violations + .map(err => { + return `Expected the HTML found in the document to have no violations, but received: + \n${err.help} + \n${err.nodes + .map( + (node, index) => `${index + 1}. ${node.html} + \n${node.failureSummary}\n`, + ) + .join('\n')}\nMore information can be found at: ${err.helpUrl}\n${'─'.repeat(20)} + ` + }) + .join('\n') + }, + } + }, }) const failOnAllConsoleMessages = process.env.CI === 'true' diff --git a/packages/react/src/utils/testing.tsx b/packages/react/src/utils/testing.tsx index 8fed67b79e8..5f013cd9624 100644 --- a/packages/react/src/utils/testing.tsx +++ b/packages/react/src/utils/testing.tsx @@ -2,8 +2,9 @@ import React from 'react' import {promisify} from 'util' import renderer from 'react-test-renderer' import {render as HTMLRender} from '@testing-library/react' -import {axe, toHaveNoViolations} from 'jest-axe' import type {StoryFn} from '@storybook/react' +import axe from 'axe-core' +import customRules from '@github/axe-github' import {ThemeProvider} from '..' import {default as defaultTheme} from '../theme' @@ -21,6 +22,7 @@ declare global { interface Matchers { toImplementSxBehavior: () => boolean toSetExports: (exports: Record) => boolean + toHaveNoViolations: () => boolean } } } @@ -232,7 +234,8 @@ export function checkExports(path: string, exports: Record): void { }) } -expect.extend(toHaveNoViolations) +axe.configure(customRules) + export function checkStoriesForAxeViolations(name: string, storyDir?: string) { // eslint-disable-next-line @typescript-eslint/no-var-requires const stories = require(`${storyDir || '../stories/'}${name}.stories`) @@ -262,7 +265,7 @@ export function checkStoriesForAxeViolations(name: string, storyDir?: string) { , ) - const results = await axe(container) + const results = await axe.run(container) expect(results).toHaveNoViolations() }) })