@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 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.com/omnitend/dashboard-for-laravel/tree/main/docs/src/pages/components)** | 📦 **[NPM Package](https://www.npmjs.com/package/@omnitend/dashboard-for-laravel)**
13
-
14
- - [Getting Started Guide](https://github.com/omnitend/dashboard-for-laravel/blob/main/docs/src/pages/guide/getting-started.md)
15
- - [Installation Guide](https://github.com/omnitend/dashboard-for-laravel/blob/main/docs/src/pages/guide/installation.md)
16
- - [Component API Reference](https://github.com/omnitend/dashboard-for-laravel/tree/main/docs/src/pages/components)
17
- - [Form System Guide](https://github.com/omnitend/dashboard-for-laravel/blob/main/docs/src/pages/guide/forms.md)
18
- - [Theming Guide](https://github.com/omnitend/dashboard-for-laravel/blob/main/docs/src/pages/guide/theming.md)
19
- - [TypeScript Guide](https://github.com/omnitend/dashboard-for-laravel/blob/main/docs/src/pages/guide/typescript.md)
20
- - [Examples & Patterns](https://github.com/omnitend/dashboard-for-laravel/blob/main/docs/src/pages/examples/common-patterns.md)
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>>;