Skip to content

Commit

Permalink
Merge pull request #72 from webdevnerdstuff/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
webdevnerdstuff committed Mar 13, 2024
2 parents 9273cf4 + b4aed3c commit 25d1cc4
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 81 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
# Change Log
All notable changes to the "vuetify-drilldown-table" plugin will be documented in this file.

## v1.1.5
2024-03-13
[main] (@webdevnerdstuff)
* Fix unexpected side effect in computed function

## v1.1.4
2024-03-13
[main] (@webdevnerdstuff)
Expand Down
@@ -1,7 +1,7 @@
import o from "./vuetify-drilldown-table.es.js";
/**
* @name @wdns/vuetify-drilldown-table
* @version 1.1.4
* @version 1.1.5
* @description The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format.
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
* @copyright Copyright 2024, WebDevNerdStuff
Expand Down
@@ -1,6 +1,6 @@
"use strict";/**
* @name @wdns/vuetify-drilldown-table
* @version 1.1.4
* @version 1.1.5
* @description The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format.
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
* @copyright Copyright 2024, WebDevNerdStuff
Expand Down
6 changes: 3 additions & 3 deletions dist/vuetify-drilldown-table.cjs.js

Large diffs are not rendered by default.

144 changes: 72 additions & 72 deletions dist/vuetify-drilldown-table.es.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@wdns/vuetify-drilldown-table",
"version": "1.1.4",
"version": "1.1.5",
"description": "The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format.",
"private": false,
"publishConfig": {
Expand Down
4 changes: 1 addition & 3 deletions src/plugin/slots/HeadersSlot.vue
Expand Up @@ -132,7 +132,7 @@ const isAllSelected = ref<boolean>(false);
const items = ref(props.items);
const matchColumnWidths = ref<boolean>(props.matchColumnWidths);
const columnWidths = ref<number[]>(props.columnWidths || []);
const sortAscIcon = ref(props.sortAscIcon);
const sortAscIcon = ref(props.sortAscIcon ?? '$sortAsc');
const tableModelValue = computed(() => props.tableModelValue);
const theme = useTheme();
Expand All @@ -149,7 +149,6 @@ watch(() => props.items, (newItems) => {
});
});
// -------------------------------------------------- Header Row //
const headerRowClasses = computed<object>(() => {
return useHeaderRowClasses({ level: props.level });
Expand Down Expand Up @@ -290,7 +289,6 @@ const iconSize = computed(() => {
return 'small';
}
sortAscIcon.value = props?.sortAscIcon ?? '$sortAsc';
return 'default';
});
Expand Down

0 comments on commit 25d1cc4

Please sign in to comment.