Skip to content

Dev #60

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 8 commits into from
Nov 9, 2023
Merged

Dev #60

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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Change Log
All notable changes to the "vuetify-drilldown-table" plugin will be documented in this file.

## v1.0.0
11-09-23
[main] (@webdevnerdstuff)
* Update lab components to regular components due to Vuetify official releases
* Update packages
* Update Vuetify to v^3.4.0
* Update docs

## v1.0.0-beta-14
11-01-23
[main] (@webdevnerdstuff)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>

<p>
<h1 align="center">Vuetify Drilldown Table (beta)</h1>
<h1 align="center">Vuetify Drilldown Table</h1>
</p>

<p align="center">
Expand Down
14 changes: 7 additions & 7 deletions dist/plugin/VDrilldownTable.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
sortBy: () => never[];
tableType: () => {};
}>>> & {
"onClick:row"?: ((...args: any[]) => any) | undefined;
"onUpdate:sortBy"?: ((...args: any[]) => any) | undefined;
"onUpdate:expanded"?: ((...args: any[]) => any) | undefined;
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
"onUpdate:itemsPerPage"?: ((...args: any[]) => any) | undefined;
"onUpdate:options"?: ((...args: any[]) => any) | undefined;
"onClick:row"?: ((...args: any[]) => any) | undefined;
"onClick:row:checkbox"?: ((...args: any[]) => any) | undefined;
"onUpdate:sortBy"?: ((...args: any[]) => any) | undefined;
"onUpdate:search"?: ((...args: any[]) => any) | undefined;
"onUpdate:drilldown"?: ((...args: any[]) => any) | undefined;
"onUpdate:options"?: ((...args: any[]) => any) | undefined;
"onUpdate:itemsPerPage"?: ((...args: any[]) => any) | undefined;
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
}, {
filterKeys: string | string[];
noFilter: boolean;
Expand All @@ -214,8 +214,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
showSelect: boolean;
selectStrategy: "page" | "all" | "single";
items: any[];
itemValue: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
itemSelectable: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
itemSelectable: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
returnObject: boolean;
expandOnClick: boolean;
showExpand: boolean;
Expand Down
2 changes: 1 addition & 1 deletion dist/plugin/slots/ItemSlot.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
"click:row": (...args: any[]) => void;
"click:row:checkbox": (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ItemSlotProps>, {}>>> & {
"onClick:row"?: ((...args: any[]) => any) | undefined;
"onUpdate:expanded"?: ((...args: any[]) => any) | undefined;
"onClick:row"?: ((...args: any[]) => any) | undefined;
"onClick:row:checkbox"?: ((...args: any[]) => any) | undefined;
}, {}, {}>, Readonly<Record<string, any>>>;
export default _default;
Expand Down
2 changes: 1 addition & 1 deletion dist/plugin/slots/TheadSlot.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<THeadSlotProps>, {
showSelect: boolean;
}>>> & {
"onClick:selectAll"?: ((...args: any[]) => any) | undefined;
"onUpdate:sortBy"?: ((...args: any[]) => any) | undefined;
"onClick:selectAll"?: ((...args: any[]) => any) | undefined;
}, {
showSelect: boolean;
}, {}>;
Expand Down
3 changes: 1 addition & 2 deletions dist/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { CSSProperties, JSXComponent, StyleValue, MaybeRef } from 'vue';
import { IconOptions, ThemeInstance } from 'vuetify';
import type { EventBusKey } from '@vueuse/core';
import type { VProgressCircular, VProgressLinear } from 'vuetify/components';
import type { VDataTable, VDataTableServer, VDataTableRow, VSkeletonLoader } from 'vuetify/labs/components';
import type { VDataTable, VDataTableRow, VDataTableServer, VProgressCircular, VProgressLinear, VSkeletonLoader } from 'vuetify/components';
export type Density = 'default' | 'comfortable' | 'compact';
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
type SelectItemKey = boolean | string | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
Expand Down
6 changes: 3 additions & 3 deletions dist/vuetify-drilldown-table.cjs.js

Large diffs are not rendered by default.

5,230 changes: 2,717 additions & 2,513 deletions dist/vuetify-drilldown-table.es.js

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdns/vuetify-drilldown-table",
"version": "1.0.0-beta-14",
"version": "1.0.0",
"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 Expand Up @@ -68,36 +68,36 @@
"wdns"
],
"dependencies": {
"vue": "^3.3.7",
"vuetify": "^3.3.23"
"vue": "^3.3.8",
"vuetify": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@faker-js/faker": "^8.2.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@fortawesome/vue-fontawesome": "^3.0.5",
"@mdi/font": "^7.3.67",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-vue": "^4.4.0",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-vue": "^4.4.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.3.7",
"@vue/compiler-sfc": "^3.3.8",
"@vue/eslint-config-typescript": "^12.0.0",
"@vueuse/core": "^10.5.0",
"autoprefixer": "^10.4.16",
"core-js": "^3.33.2",
"eslint": "^8.52.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
Expand All @@ -122,7 +122,7 @@
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.3.0",
"stylelint-scss": "^5.3.1",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.7",
"vite": "^4.5.0",
Expand Down
Loading