v-datatable-plus 1.0.1 → 1.0.2
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.
- package/LICENSE.md +21 -21
- package/package.json +63 -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/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "v-datatable-plus",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
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/
|
|
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.2",
|
|
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 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
|
+
}
|