v-datatable-plus 1.0.1 → 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 (3) hide show
  1. package/LICENSE.md +21 -21
  2. package/README.md +17 -0
  3. package/package.json +64 -63
package/LICENSE.md CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) [2024] [Adnan Ahmed Ansari (ansaripro)]
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) [2024] [Adnan Ahmed Ansari (ansaripro)]
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
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,63 +1,64 @@
1
- {
2
- "name": "v-datatable-plus",
3
- "private": false,
4
- "version": "1.0.1",
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
- "type": "module",
7
- "keywords": [
8
- "datatable",
9
- "plus",
10
- "rich",
11
- "pro",
12
- "vuetify",
13
- "vue3",
14
- "vue",
15
- "vuejs"
16
- ],
17
- "files": [
18
- "dist"
19
- ],
20
- "publishConfig": {
21
- "access": "public"
22
- },
23
- "main": "./dist/v-datatable-plus.umd.cjs",
24
- "module": "./dist/v-datatable-plus.js",
25
- "exports": {
26
- ".": {
27
- "import": "./dist/v-datatable-plus.js",
28
- "require": "./dist/v-datatable-plus.umd.cjs"
29
- },
30
- "./dist/style.css": {
31
- "import": "./dist/style.css",
32
- "require": "./dist/style.css"
33
- }
34
- },
35
- "repository": {
36
- "type": "git",
37
- "url": "https://github.com/ansaripro/VDataTablePlus.git"
38
- },
39
- "scripts": {
40
- "dev": "vite",
41
- "build": "vite build",
42
- "preview": "vite preview",
43
- "docs:dev": "vitepress dev docs",
44
- "docs:build": "vitepress build docs",
45
- "docs:serve": "vitepress serve docs"
46
- },
47
- "dependencies": {
48
- "vue": "^3.3.11",
49
- "vuedraggable": "^4.1.0",
50
- "vuetify": "^3.6.7"
51
- },
52
- "peerDependencies": {
53
- "vue": "^3.3.11",
54
- "vuedraggable": "^4.1.0",
55
- "vuetify": "^3.6.7"
56
- },
57
- "devDependencies": {
58
- "vitepress": "^1.2.2",
59
- "@vitejs/plugin-vue": "^5.0.4",
60
- "vite": "^5.2.11",
61
- "vite-plugin-vuetify": "^2.0.1"
62
- }
63
- }
1
+ {
2
+ "name": "v-datatable-plus",
3
+ "private": false,
4
+ "version": "1.0.3",
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
+ "type": "module",
7
+ "keywords": [
8
+ "datatable",
9
+ "plus",
10
+ "rich",
11
+ "pro",
12
+ "vuetify",
13
+ "vue3",
14
+ "vue",
15
+ "vuejs"
16
+ ],
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "main": "./dist/v-datatable-plus.umd.cjs",
24
+ "module": "./dist/v-datatable-plus.js",
25
+ "exports": {
26
+ ".": {
27
+ "import": "./dist/v-datatable-plus.js",
28
+ "require": "./dist/v-datatable-plus.umd.cjs"
29
+ },
30
+ "./dist/style.css": {
31
+ "import": "./dist/style.css",
32
+ "require": "./dist/style.css"
33
+ }
34
+ },
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/ansaripro/v-datatable-plus.git"
38
+ },
39
+ "scripts": {
40
+ "dev": "vite",
41
+ "build": "vite build",
42
+ "preview": "vite preview",
43
+ "docs:dev": "vitepress dev documentation",
44
+ "docs:build": "vitepress build documentation",
45
+ "docs:serve": "vitepress serve documentation"
46
+ },
47
+ "dependencies": {
48
+ "vue": "^3.3.11",
49
+ "vuedraggable": "^4.1.0",
50
+ "vuetify": "^3.6.7"
51
+ },
52
+ "peerDependencies": {
53
+ "vue": "^3.3.11",
54
+ "vuedraggable": "^4.1.0",
55
+ "vuetify": "^3.6.7"
56
+ },
57
+ "devDependencies": {
58
+ "vitepress": "^1.2.2",
59
+ "@vitejs/plugin-vue": "^5.0.4",
60
+ "postcss": "^8.4.38",
61
+ "vite": "^5.2.11",
62
+ "vite-plugin-vuetify": "^2.0.1"
63
+ }
64
+ }