Skip to content

Commit 5de35bf

Browse files
Update changelog, package version, and added new props to docs
1 parent 16928da commit 5de35bf

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

Diff for: CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Change Log
22
All notable changes to the "vuetify-resize-drawer" plugin will be documented in this file.
33

4+
## v3.2.0
5+
2024-10-14
6+
[main] (@webdevnerdstuff)
7+
* Adding `bottom` and `top` location support
8+
* Fix issue with handle mouse position
9+
* Change `width-snap-back` prop to `snap-back` (`width-snap-back` is backwards compatible)
10+
* Add `max-height` and `min-height` props
11+
* Update packages
12+
413
## v3.1.6
514
2024-03-14
615
[main] (@webdevnerdstuff)

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdns/vuetify-resize-drawer",
3-
"version": "3.1.6",
3+
"version": "3.2.0",
44
"description": "The vuetify-resize-drawer component extends the functionality of the v-navigation-drawer so that it is resizable by the user.",
55
"private": false,
66
"publishConfig": {

Diff for: src/documentation/sections/PropsSection.vue

+12
Original file line numberDiff line numberDiff line change
@@ -445,12 +445,24 @@ const propsSupported = reactive({
445445
name: 'location',
446446
type: "'bottom' | 'end' | 'start' | 'left' | 'right' | 'top' | undefined",
447447
},
448+
{
449+
default: '100%',
450+
desc: 'The maximum height of the navigation drawer. Accepts: number, px, or %',
451+
name: 'max-height',
452+
type: 'string',
453+
},
448454
{
449455
default: '100%',
450456
desc: 'The maximum width of the navigation drawer. Accepts: number, px, or %',
451457
name: 'max-width',
452458
type: 'string',
453459
},
460+
{
461+
default: '56',
462+
desc: 'The minimum height of the navigation drawer. Accepts: number, px, or %',
463+
name: 'min-height',
464+
type: 'string',
465+
},
454466
{
455467
default: '56',
456468
desc: 'The minimum width of the navigation drawer. Accepts: number, px, or %',

0 commit comments

Comments
 (0)