Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VSwitch): fix transition in RTL #19495

Merged
merged 2 commits into from
Apr 23, 2024
Merged

Conversation

bluxiv
Copy link
Contributor

@bluxiv bluxiv commented Mar 28, 2024

Description

Reverse thumb direction in RTL mode

How Has This Been Tested?

Visually

Markup:

<template>
  <v-app>
    <v-container>
      <v-row>
        <v-col cols="6">
          <v-locale-provider locale="en">
            <v-card title="ltr locale">
              <v-card-text>
                <v-switch label="Switch" color="primary"></v-switch>
                <v-switch label="Switch" color="primary" inset></v-switch>
              </v-card-text>
            </v-card>
          </v-locale-provider>
        </v-col>
        <v-col cols="6">
          <v-locale-provider locale="ar">
            <v-card title="rtl locale">
              <v-card-text>
                <v-switch label="Switch" color="primary"></v-switch>
                <v-switch label="Switch" color="primary" inset></v-switch>
              </v-card-text>
            </v-card>
          </v-locale-provider>
        </v-col>
      </v-row>
    </v-container>
  </v-app>
</template>

<script setup></script>

@johnleider johnleider self-requested a review March 28, 2024 19:03
@johnleider johnleider added S: stale This issue is untriaged and hasn't seen any activity in at least six months. C: VSwitch VSwitch and removed S: stale This issue is untriaged and hasn't seen any activity in at least six months. labels Mar 28, 2024
@MajesticPotatoe MajesticPotatoe added the T: bug Functionality that does not work as intended/expected label Apr 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VSwitch VSwitch T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants