Skip to content

Dev #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 13, 2024
Merged

Dev #72

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-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
Original file line number Diff line number Diff line change
@@ -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! <[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-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! <[email protected]> (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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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