@starter-solutions/inertia-data-table-vue 0.1.4 → 0.1.5
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/README.md +39 -3
- package/package.json +28 -2
package/README.md
CHANGED
|
@@ -1,7 +1,43 @@
|
|
|
1
|
-
# inertia-data-table-vue
|
|
1
|
+
# @starter-solutions/inertia-data-table-vue
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> ⚠️ This is the **Vue 3 frontend companion package** for
|
|
4
|
+
> **starter-solutions/inertia-data-table (Laravel)**.
|
|
5
|
+
>
|
|
6
|
+
> If you are looking for the backend package, visit:
|
|
7
|
+
> 👉 https://github.com/starter-solutions/inertia-data-table-laravel
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 📦 Overview
|
|
12
|
+
|
|
13
|
+
`@starter-solutions/inertia-data-table-vue` provides Vue 3 composables and components for handling:
|
|
14
|
+
|
|
15
|
+
- Server-driven pagination
|
|
16
|
+
- Sorting
|
|
17
|
+
- Query state management
|
|
18
|
+
- Inertia-powered table updates
|
|
19
|
+
|
|
20
|
+
It is designed to work seamlessly with the Laravel package:
|
|
21
|
+
|
|
22
|
+
**Backend (Laravel):**
|
|
23
|
+
https://github.com/starter-solutions/inertia-data-table-laravel
|
|
24
|
+
|
|
25
|
+
Together they provide a clean, consistent way to manage paginated and sortable data tables across your Laravel + Inertia + Vue application.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 🚀 Installation
|
|
4
30
|
|
|
5
31
|
```bash
|
|
6
|
-
npm
|
|
32
|
+
npm install @starter-solutions/inertia-data-table-vue
|
|
7
33
|
```
|
|
34
|
+
|
|
35
|
+
## 🐛 Issues & Support
|
|
36
|
+
|
|
37
|
+
Bug reports and feature requests should be submitted to the main repository:
|
|
38
|
+
|
|
39
|
+
🔗 https://github.com/starter-solutions/inertia-data-table/issues
|
|
40
|
+
|
|
41
|
+
## 📄 License
|
|
42
|
+
|
|
43
|
+
MIT © Starter Solutions
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@starter-solutions/inertia-data-table-vue",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"license": "MIT",
|
|
5
|
+
"description": "Vue 3 + Inertia.js data table utilities with Laravel backend integration.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "./dist/index.cjs",
|
|
7
8
|
"module": "./dist/index.js",
|
|
@@ -16,10 +17,35 @@
|
|
|
16
17
|
"types": "./dist/index.d.ts"
|
|
17
18
|
}
|
|
18
19
|
},
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "Luca Hoffmann",
|
|
22
|
+
"url": "https://github.com/HoffmannLuca"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/starter-solutions/inertia-data-table-vue.git"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/starter-solutions/inertia-data-table#readme",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/starter-solutions/inertia-data-table/issues"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"laravel",
|
|
34
|
+
"inertia",
|
|
35
|
+
"vue",
|
|
36
|
+
"vue3",
|
|
37
|
+
"typescript",
|
|
38
|
+
"data-table",
|
|
39
|
+
"pagination",
|
|
40
|
+
"sorting"
|
|
41
|
+
],
|
|
19
42
|
"scripts": {
|
|
20
43
|
"typecheck": "tsc -p tsconfig.build.json --noEmit",
|
|
21
44
|
"build": "vite build",
|
|
22
|
-
"dev": "vite"
|
|
45
|
+
"dev": "vite",
|
|
46
|
+
"git-patch": "npm version patch && git push --follow-tags",
|
|
47
|
+
"git-minor": "npm version minor && git push --follow-tags",
|
|
48
|
+
"git-major": "npm version major && git push --follow-tags"
|
|
23
49
|
},
|
|
24
50
|
"peerDependencies": {
|
|
25
51
|
"@inertiajs/vue3": "^2.0.0",
|