Skip to content
This repository has been archived by the owner on Mar 14, 2021. It is now read-only.

Latest commit

 

History

History
71 lines (58 loc) · 1.56 KB

CHANGELOG.md

File metadata and controls

71 lines (58 loc) · 1.56 KB

CHANGELOG

All changes when a new version is released are documented here.

0.0.1

  • First commit

0.0.2

  • Fix minor bug

1.0.0

  • Major update
  • Change all props to easy usage

1.0.1

  • Support dark mode

1.0.3

  • Fix closable when selected picker

1.1.0

  • Major update
  • Change props :class-name to :theme
  • Fix style when purge Tailwind CSS is enable
  • Add new props auto-close
  • Fix reset picker when away

1.1.1

  • Move dayjs to peerDependencies

1.1.2

1.1.3

  • Fix bug can't select previous year
  • Add new props :start-from-monday default is false

1.1.4

  • 🎉 Tailwind CSS Datepicker SSR support now
  • Support empty initial value
<template>
    <VueTailWindPicker
        :init="false"
        @change="(v) => value = v">
        <input v-model="value" placeholder="Example initial value">
    </VueTailWindPicker>
</template>
// ... 
<script >
    export default {
        components: { VueTailWindPicker: () => import('vue-tailwind-picker'), },
        data(){
            return {
                value: ''
            }
        },
        // ...
    }
</script>
  • Add new props init, default true, if true set initial value with start-date, else set value with default value from v-model of input.

1.1.5

  • Add selected props to props

1.1.6

  • Fix issues format date

2.0.0

  • Added support for Tailwind CSS 2.0.0