v-datatable-plus 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,4 +1,19 @@
1
1
  ## Vuetify Datatable Plus
2
+ <p align="center">
3
+ <a href="https://www.npmjs.com/package/v-datatable-plus">
4
+ <img alt="NPM Downloads" src="https://img.shields.io/npm/d18m/v-datatable-plus">
5
+ </a>
6
+ <a href="https://www.npmjs.com/package/v-datatable-plus">
7
+ <img alt="NPM Downloads" src="https://img.shields.io/npm/dm/v-datatable-plus">
8
+ </a>
9
+ <br>
10
+ <a href="https://github.com/vuetifyjs/vuetify/blob/master/LICENSE.md">
11
+ <img src="https://img.shields.io/npm/l/vuetify.svg" alt="License">
12
+ </a>
13
+ <a href="https://www.npmjs.com/package/v-datatable-plus">
14
+ <img alt="NPM Version" src="https://img.shields.io/npm/v/v-datatable-plus">
15
+ </a>
16
+ </p>
2
17
 
3
18
  VDatatablePlus is a an wrapper component for Vuetify VDataTable and VDataTableServer component, it gives you Header row filter functionlity like other advance data tables. It also utlilize VueDraggable Vue 3 library for columns drag n drop and show/hide functiionality.
4
19
  <br/>
@@ -6,6 +21,8 @@ It also have other feature due to modification of based VDataTable/VDataTableSer
6
21
  <br/><br/>
7
22
  This repository also expose a ResizeableSplitter component which is useful for split horizontal contents with or without user interaction.
8
23
 
24
+ ## [Documentation](https://ansaripro.github.io/v-datatable-plus/)
25
+
9
26
  ## License
10
27
 
11
28
  Copyright (c) 2024 AnsariPro
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "v-datatable-plus",
3
3
  "private": false,
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "description": "This is a derived component which enahaced features of Vuetify VDataTable and VDataTableServer. It's also expose a ResizeableSplitter component which is useful for split horizontal contents with or without user interaction.",
6
6
  "type": "module",
7
7
  "keywords": [
@@ -40,9 +40,9 @@
40
40
  "dev": "vite",
41
41
  "build": "vite build",
42
42
  "preview": "vite preview",
43
- "docs:dev": "vitepress dev docs",
44
- "docs:build": "vitepress build docs",
45
- "docs:serve": "vitepress serve docs"
43
+ "docs:dev": "vitepress dev documentation",
44
+ "docs:build": "vitepress build documentation",
45
+ "docs:serve": "vitepress serve documentation"
46
46
  },
47
47
  "dependencies": {
48
48
  "vue": "^3.3.11",
@@ -57,6 +57,7 @@
57
57
  "devDependencies": {
58
58
  "vitepress": "^1.2.2",
59
59
  "@vitejs/plugin-vue": "^5.0.4",
60
+ "postcss": "^8.4.38",
60
61
  "vite": "^5.2.11",
61
62
  "vite-plugin-vuetify": "^2.0.1"
62
63
  }