v-datatable-plus 0.1.2 → 1.0.0
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 -0
- package/README.md +15 -6
- package/package.json +63 -59
- package/dist/style.css +0 -1
- package/dist/v-datatable-plus.cjs +0 -16
- package/dist/v-datatable-plus.js +0 -12052
- package/dist/v-datatable-plus.umd.cjs +0 -16
package/LICENSE.md
ADDED
|
@@ -0,0 +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.
|
package/README.md
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
## Vuetify Datatable Plus
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
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
|
+
<br/>
|
|
5
|
+
It also have other feature due to modification of based VDataTable/VDataTableServer components so you you can utilized them as per your need.
|
|
6
|
+
<br/><br/>
|
|
7
|
+
This repository also expose a ResizeableSplitter component which is useful for split horizontal contents with or without user interaction.
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
## License
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2024 AnsariPro
|
|
12
|
+
Licensed under the [MIT license](https://github.com/ansaripro/v-datatable-plus/blob/main/LICENSE.md).
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Legal
|
|
16
|
+
|
|
17
|
+
Vuetify and the Vuetify logo are trademarks of Vuetify. This component was not created or endorsed by Vuetify.
|
|
8
18
|
|
|
9
|
-
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). -->
|
package/package.json
CHANGED
|
@@ -1,59 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "v-datatable-plus",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "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/VDataTablePlus.git"
|
|
38
|
-
},
|
|
39
|
-
"scripts": {
|
|
40
|
-
"dev": "vite",
|
|
41
|
-
"build": "vite build",
|
|
42
|
-
"preview": "vite preview"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "v-datatable-plus",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.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/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
|
+
}
|
package/dist/style.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.rs-parent-box{display:flex;position:relative;height:100%}.rs-border{border:1px solid rgba(0,0,0,.12)}.rs-splitter-base{position:absolute;top:0;height:100%;width:4px;background:#0000001f;transform:translate(-2px);z-index:1}.dt-header-border{border-right:solid 1px rgba(0,0,0,.12)}.dt-row-highlight{background:#0000000f!important}
|