@manik02/vue3-timepicker 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,13 @@
1
- # Vue Timepicker
1
+ # Vue3 Timepicker
2
2
 
3
3
  A flexible, customisable timepicker component for Vue 3 with TypeScript support.
4
4
 
5
+ | Demo | Default | Dark |
6
+ | ---------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
7
+ | ![Demo](https://raw.githubusercontent.com/manos02/vue3-time-picker/main/assets/demo.gif) | ![Default](https://raw.githubusercontent.com/manos02/vue3-time-picker/main/assets/screenshot-default.png) | ![Dark](https://raw.githubusercontent.com/manos02/vue3-time-picker/main/assets/screenshot-dark.png) |
8
+
9
+ ![All themes](https://raw.githubusercontent.com/manos02/vue3-time-picker/main/assets/screenshot-all.png)
10
+
5
11
  - Single and range time selection
6
12
  - Multiple hour formats: 24-hour (`HH`/`H`), 12-hour (`hh`/`h` with AM/PM), 1-24 (`kk`/`k`)
7
13
  - Optional seconds
@@ -81,8 +87,10 @@ When `range` is `true`, `modelValue` must be a `[string, string]` array.
81
87
  ## 12-hour format
82
88
 
83
89
  ```vue
84
- <TimePicker v-model="time" format="hh:mm A" /> // AM/PM
85
- <TimePicker v-model="time" format="hh:mm a" /> // am/pm
90
+ <TimePicker v-model="time" format="hh:mm A" />
91
+ // AM/PM
92
+ <TimePicker v-model="time" format="hh:mm a" />
93
+ // am/pm
86
94
  ```
87
95
 
88
96
  Press `a` or `p` while focused to toggle between AM and PM.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manik02/vue3-timepicker",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A flexible Vue 3 timepicker component with multiple format support, range selection, and fully customisable styling",
5
5
  "license": "MIT",
6
6
  "author": "Manos Savvides",