@omnitend/dashboard-for-laravel 0.4.7 → 0.4.9
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 +9 -9
- package/dist/components/extended/DXTable.vue.d.ts +4 -0
- package/dist/dashboard-for-laravel.js +5094 -4901
- package/dist/dashboard-for-laravel.js.map +1 -1
- package/dist/dashboard-for-laravel.umd.cjs +5 -5
- package/dist/dashboard-for-laravel.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/docs/public/api-reference.json +2 -2
- package/docs/public/docs-map.md +17 -6
- package/docs/public/llms.txt +2 -0
- package/package.json +1 -1
- package/resources/js/components/extended/DXTable.vue +304 -3
package/README.md
CHANGED
|
@@ -9,15 +9,15 @@ A full-stack package for building Laravel dashboards with Vue 3, Inertia.js, and
|
|
|
9
9
|
|
|
10
10
|
## Documentation
|
|
11
11
|
|
|
12
|
-
📚 **[Browse Components](https://github.
|
|
13
|
-
|
|
14
|
-
- [Getting Started Guide](https://github.
|
|
15
|
-
- [Installation Guide](https://github.
|
|
16
|
-
- [Component API Reference](https://github.
|
|
17
|
-
- [Form System Guide](https://github.
|
|
18
|
-
- [Theming Guide](https://github.
|
|
19
|
-
- [TypeScript Guide](https://github.
|
|
20
|
-
- [Examples & Patterns](https://github.
|
|
12
|
+
📚 **[Browse Components](https://omnitend.github.io/dashboard-for-laravel/components)** | 📦 **[NPM Package](https://www.npmjs.com/package/@omnitend/dashboard-for-laravel)**
|
|
13
|
+
|
|
14
|
+
- [Getting Started Guide](https://omnitend.github.io/dashboard-for-laravel/guide/getting-started)
|
|
15
|
+
- [Installation Guide](https://omnitend.github.io/dashboard-for-laravel/guide/installation)
|
|
16
|
+
- [Component API Reference](https://omnitend.github.io/dashboard-for-laravel/components)
|
|
17
|
+
- [Form System Guide](https://omnitend.github.io/dashboard-for-laravel/guide/forms)
|
|
18
|
+
- [Theming Guide](https://omnitend.github.io/dashboard-for-laravel/guide/theming)
|
|
19
|
+
- [TypeScript Guide](https://omnitend.github.io/dashboard-for-laravel/guide/typescript)
|
|
20
|
+
- [Examples & Patterns](https://omnitend.github.io/dashboard-for-laravel/examples/common-patterns)
|
|
21
21
|
|
|
22
22
|
## Features
|
|
23
23
|
|
|
@@ -110,6 +110,8 @@ export interface Props<TItem = any> {
|
|
|
110
110
|
editUrl?: string;
|
|
111
111
|
/** API endpoint pattern for deletions (e.g., "/api/products/:id") */
|
|
112
112
|
deleteUrl?: string;
|
|
113
|
+
/** Enable client-side filtering, sorting, and pagination on items array */
|
|
114
|
+
clientSide?: boolean;
|
|
113
115
|
}
|
|
114
116
|
declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
115
117
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
@@ -138,6 +140,8 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
|
|
|
138
140
|
[x: string]: ((props: any) => any) | undefined;
|
|
139
141
|
} & {
|
|
140
142
|
[x: string]: ((props: any) => any) | undefined;
|
|
143
|
+
} & {
|
|
144
|
+
[x: string]: ((props: any) => any) | undefined;
|
|
141
145
|
} & {
|
|
142
146
|
[x: `tab-content(${string})`]: ((props: {
|
|
143
147
|
item: import("@vue/reactivity").DistributeRef<[T | null] extends [import("vue").Ref<any, any>] ? import("@vue/shared").IfAny<import("vue").Ref<any, any> & T, import("vue").Ref<import("vue").Ref<any, any> & T, import("vue").Ref<any, any> & T>, import("vue").Ref<any, any> & T> : import("vue").Ref<import("vue").UnwrapRef<T> | null, T | import("vue").UnwrapRef<T> | null>>;
|