Skip to content

Commit

Permalink
Merge pull request #36 from webdevnerdstuff/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
webdevnerdstuff authored Mar 15, 2024
2 parents 19789cc + 297a905 commit 1c9e4ed
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 26 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to the "vuetify-resize-drawer" plugin will be documented in this file.

## v3.1.6
2024-03-14
[main] (@webdevnerdstuff)
* Add another null check

## v3.1.5
2024-03-14
[main] (@webdevnerdstuff)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import o from "./vuetify-resize-drawer.es.js";
/**
* @name @wdns/vuetify-resize-drawer
* @version 3.1.5
* @version 3.1.6
* @description The vuetify-resize-drawer component extends the functionality of the v-navigation-drawer so that it is resizable by the user.
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)
* @copyright Copyright 2024, WebDevNerdStuff
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";/**
* @name @wdns/vuetify-resize-drawer
* @version 3.1.5
* @version 3.1.6
* @description The vuetify-resize-drawer component extends the functionality of the v-navigation-drawer so that it is resizable by the user.
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)
* @copyright Copyright 2024, WebDevNerdStuff
Expand Down
4 changes: 2 additions & 2 deletions dist/vuetify-resize-drawer.cjs.js

Large diffs are not rendered by default.

41 changes: 21 additions & 20 deletions dist/vuetify-resize-drawer.es.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdns/vuetify-resize-drawer",
"version": "3.1.5",
"version": "3.1.6",
"description": "The vuetify-resize-drawer component extends the functionality of the v-navigation-drawer so that it is resizable by the user.",
"private": false,
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/composables/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function checkIfThemeVarColor(color: string) {
}

function checkIfThemeColor(color: string, theme: ThemeInstance) {
const themeColors = theme.global.current.value.colors;
const themeColors = theme.global.current.value?.colors ?? {};

return Object.entries(themeColors).find(([key]) => {
return key === color;
Expand Down

0 comments on commit 1c9e4ed

Please sign in to comment.