@omnitend/dashboard-for-laravel 0.4.8 → 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.
@@ -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>>;