Skip to content

Commit 25d1cc4

Browse files
Merge pull request #72 from webdevnerdstuff/dev
Dev
2 parents 9273cf4 + b4aed3c commit 25d1cc4

7 files changed

+84
-81
lines changed

CHANGELOG.md

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

4+
## v1.1.5
5+
2024-03-13
6+
[main] (@webdevnerdstuff)
7+
* Fix unexpected side effect in computed function
8+
49
## v1.1.4
510
2024-03-13
611
[main] (@webdevnerdstuff)

dist/VDrilldownTable-BA2hnfOR.mjs dist/VDrilldownTable-C0KQjzja.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import o from "./vuetify-drilldown-table.es.js";
22
/**
33
* @name @wdns/vuetify-drilldown-table
4-
* @version 1.1.4
4+
* @version 1.1.5
55
* @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.
66
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)
77
* @copyright Copyright 2024, WebDevNerdStuff

dist/VDrilldownTable-CB1KOdXg.js dist/VDrilldownTable-CIBieV35.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";/**
22
* @name @wdns/vuetify-drilldown-table
3-
* @version 1.1.4
3+
* @version 1.1.5
44
* @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.
55
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)
66
* @copyright Copyright 2024, WebDevNerdStuff

dist/vuetify-drilldown-table.cjs.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuetify-drilldown-table.es.js

+72-72
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdns/vuetify-drilldown-table",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"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.",
55
"private": false,
66
"publishConfig": {

src/plugin/slots/HeadersSlot.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ const isAllSelected = ref<boolean>(false);
132132
const items = ref(props.items);
133133
const matchColumnWidths = ref<boolean>(props.matchColumnWidths);
134134
const columnWidths = ref<number[]>(props.columnWidths || []);
135-
const sortAscIcon = ref(props.sortAscIcon);
135+
const sortAscIcon = ref(props.sortAscIcon ?? '$sortAsc');
136136
const tableModelValue = computed(() => props.tableModelValue);
137137
const theme = useTheme();
138138
@@ -149,7 +149,6 @@ watch(() => props.items, (newItems) => {
149149
});
150150
});
151151
152-
153152
// -------------------------------------------------- Header Row //
154153
const headerRowClasses = computed<object>(() => {
155154
return useHeaderRowClasses({ level: props.level });
@@ -290,7 +289,6 @@ const iconSize = computed(() => {
290289
return 'small';
291290
}
292291
293-
sortAscIcon.value = props?.sortAscIcon ?? '$sortAsc';
294292
return 'default';
295293
});
296294

0 commit comments

Comments
 (0)