vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

feat(VTimePicker): update to v3

Open blalan05 opened this issue 2 years ago • 6 comments

<template>
  <v-app>
    <v-main>
      <v-container>
        <v-row>
          {{ thisDate }}
          <v-col>
            <v-switch v-model="format24" label="24hr" false-value="ampm" true-value="24hr" color="primary" />
          </v-col>
          <v-col>
            <v-switch v-model="seconds" label="Seconds" />
          </v-col>
          <v-col>
            <v-switch v-model="actions" label="No Actions" />
          </v-col>
        </v-row>
        <v-row>
          <v-col cols="12">
            <v-time-picker v-model="thisDate" :format="format24" :use-seconds="seconds" :hide-actions="actions" />
          </v-col>
        </v-row>
        <v-row>
          <v-col>
            <v-date-picker />
          </v-col>
        </v-row>
      </v-container>
    </v-main>
  </v-app>
</template>
<script setup>
  import { ref } from 'vue'

  const thisDate = ref(new Date())

  const format24 = ref('24hr')
  const seconds = ref(false)

  const actions = ref(false)
</script>

blalan05 avatar Aug 26 '23 22:08 blalan05

I think this needs to be rebased? Seems like a lot of unrelated commits have snuck in

nekosaur avatar Oct 28 '23 08:10 nekosaur

I think this needs to be rebased? Seems like a lot of unrelated commits have snuck in

Done.

blalan05 avatar Oct 28 '23 13:10 blalan05

So is there any plan to make this production ready in the near future?

AngeloACR avatar Dec 04 '23 02:12 AngeloACR

What do you think?

johnleider avatar Dec 04 '23 02:12 johnleider

What do you think?

@johnleider Personally, I'm not sure what the plan for this is, and I think that's also why @AngeloACR was asking. I see the comment at https://github.com/vuetifyjs/vuetify/issues/13516#issuecomment-1681308398, but at the same time I don't see anything about this component on the roadmap, nor on the labs schedule. The issue is still in the 3.x.x milestone.

Is there any work left to do on this PR? Are community contributions needed? We'd love to know if there's anything we can do to help out on this.

ascott18 avatar Jan 22 '24 19:01 ascott18

2024 roadmap at the end of this week.

johnleider avatar Jan 23 '24 00:01 johnleider

any news for this one, it's really needed!

simonbuehler avatar Mar 12 '24 09:03 simonbuehler

any news for this one, it's really needed!

https://vuetifyjs.com/en/introduction/roadmap/#section-2024-component-roadmap

johnleider avatar Mar 12 '24 13:03 johnleider