@dcodegroup-au/dsg-vue 0.1.11 → 0.1.13

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.
@@ -8,13 +8,13 @@ type __VLS_Props = {
8
8
  onScan: (result: DsgBarcodeScannerResult) => void;
9
9
  };
10
10
  export type DsgBarcodeScannerResult = {
11
- type: 'scanned';
11
+ type: "scanned";
12
12
  value: string;
13
13
  } | {
14
- type: 'manual';
14
+ type: "manual";
15
15
  value: string;
16
16
  } | {
17
- type: 'cancelled';
17
+ type: "cancelled";
18
18
  };
19
19
  declare function scan(options: DsgScanOptions): void;
20
20
  declare function close(): void;
@@ -632,8 +632,7 @@ declare function __VLS_template(): {
632
632
  };
633
633
  $forceUpdate: () => void;
634
634
  $nextTick: typeof import('vue').nextTick;
635
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (
636
- /** @type { [typeof DsgAvatar, ] } */ ...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
635
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
637
636
  } & Readonly<{}> & Omit<Readonly<import('./DsgAvatar.vue').DsgAvatarProps> & Readonly<{
638
637
  "onAvatar-clicked"?: ((clickEvent: Event) => any) | undefined;
639
638
  "onBefore-change-status"?: ((oldStatus: boolean, newStatus: boolean) => any) | undefined;
@@ -708,8 +707,7 @@ declare function __VLS_template(): {
708
707
  };
709
708
  $forceUpdate: () => void;
710
709
  $nextTick: typeof import('vue').nextTick;
711
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (
712
- /** @type { [typeof DsgAvatar, ] } */ ...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
710
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
713
711
  } & Readonly<{}> & Omit<Readonly<import('./DsgButton.vue').DsgButtonProps> & Readonly<{
714
712
  "onButton-clicked"?: ((clickEvent: Event) => any) | undefined;
715
713
  }>, "focusButton"> & import('vue').ShallowUnwrapRef<{
@@ -1308,8 +1306,7 @@ declare const __VLS_component: import('vue').DefineComponent<DsgDropdownProps, {
1308
1306
  };
1309
1307
  $forceUpdate: () => void;
1310
1308
  $nextTick: typeof import('vue').nextTick;
1311
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (
1312
- /** @type { [typeof DsgAvatar, ] } */ ...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1309
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1313
1310
  } & Readonly<{}> & Omit<Readonly<import('./DsgAvatar.vue').DsgAvatarProps> & Readonly<{
1314
1311
  "onAvatar-clicked"?: ((clickEvent: Event) => any) | undefined;
1315
1312
  "onBefore-change-status"?: ((oldStatus: boolean, newStatus: boolean) => any) | undefined;
@@ -1384,8 +1381,7 @@ declare const __VLS_component: import('vue').DefineComponent<DsgDropdownProps, {
1384
1381
  };
1385
1382
  $forceUpdate: () => void;
1386
1383
  $nextTick: typeof import('vue').nextTick;
1387
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (
1388
- /** @type { [typeof DsgAvatar, ] } */ ...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1384
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1389
1385
  } & Readonly<{}> & Omit<Readonly<import('./DsgButton.vue').DsgButtonProps> & Readonly<{
1390
1386
  "onButton-clicked"?: ((clickEvent: Event) => any) | undefined;
1391
1387
  }>, "focusButton"> & import('vue').ShallowUnwrapRef<{
@@ -1,3 +1,4 @@
1
+ import { nextTick } from 'vue';
1
2
  import { DsgTableSearchFacet } from './DsgTableFilter.vue';
2
3
  /**
3
4
  * ------------------------------------------------
@@ -29,6 +30,13 @@ export interface DsgTableProps {
29
30
  css?: {
30
31
  [key: string]: string;
31
32
  };
33
+ /**
34
+ * Row class - can be a string of CSS classes or a function that returns classes based on row data
35
+ * Function signature: (rowData: any, rowIndex: number) => string | string[] | Record<string, boolean>
36
+ */
37
+ rowClass?: string | Function;
38
+ /** API mode - when false, uses local data instead of fetching from API */
39
+ apiMode?: boolean;
32
40
  }
33
41
  declare function __VLS_template(): {
34
42
  attrs: Partial<{}>;
@@ -153,8 +161,8 @@ declare function __VLS_template(): {
153
161
  readonly selectable?: boolean | undefined;
154
162
  readonly "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
155
163
  readonly "onDsg-table:loaded"?: (() => any) | undefined;
156
- readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
157
- readonly "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
164
+ readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
165
+ readonly "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
158
166
  readonly "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
159
167
  readonly "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
160
168
  readonly "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
@@ -177,7 +185,7 @@ declare function __VLS_template(): {
177
185
  $root: import('vue').ComponentPublicInstance | null;
178
186
  $parent: import('vue').ComponentPublicInstance | null;
179
187
  $host: Element | null;
180
- $emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "dsg-table:row-clicked", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-hover", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-dblclick", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
188
+ $emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any, {}>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any, {}>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "dsg-table:row-clicked", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-hover", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-dblclick", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
181
189
  $el: HTMLDivElement;
182
190
  $options: import('vue').ComponentOptionsBase<Readonly<{
183
191
  filterParams?: any;
@@ -185,8 +193,8 @@ declare function __VLS_template(): {
185
193
  } & import('./DsgTableComponent.vue').DsgTableComponentProp> & Readonly<{
186
194
  "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
187
195
  "onDsg-table:loaded"?: (() => any) | undefined;
188
- "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
189
- "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
196
+ "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
197
+ "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
190
198
  "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
191
199
  "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
192
200
  "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
@@ -206,8 +214,8 @@ declare function __VLS_template(): {
206
214
  } & {
207
215
  "dsg-table:loading": (loading: boolean) => any;
208
216
  "dsg-table:loaded": () => any;
209
- "dsg-table:load-success": (response: import('axios').AxiosResponse<any, any>) => any;
210
- "dsg-table:load-error": (response: import('axios').AxiosResponse<any, any>) => any;
217
+ "dsg-table:load-success": (response: import('axios').AxiosResponse<any, any, {}>) => any;
218
+ "dsg-table:load-error": (response: import('axios').AxiosResponse<any, any, {}>) => any;
211
219
  "dsg-table:pagination-data": (paginationData: any) => any;
212
220
  "dsg-table:rows-selected": (rows: any) => any;
213
221
  "dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
@@ -231,7 +239,7 @@ declare function __VLS_template(): {
231
239
  errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
232
240
  };
233
241
  $forceUpdate: () => void;
234
- $nextTick: typeof import('vue').nextTick;
242
+ $nextTick: typeof nextTick;
235
243
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
236
244
  } & Readonly<{}> & Omit<Readonly<{
237
245
  filterParams?: any;
@@ -239,8 +247,8 @@ declare function __VLS_template(): {
239
247
  } & import('./DsgTableComponent.vue').DsgTableComponentProp> & Readonly<{
240
248
  "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
241
249
  "onDsg-table:loaded"?: (() => any) | undefined;
242
- "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
243
- "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
250
+ "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
251
+ "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
244
252
  "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
245
253
  "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
246
254
  "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
@@ -410,8 +418,8 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
410
418
  readonly selectable?: boolean | undefined;
411
419
  readonly "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
412
420
  readonly "onDsg-table:loaded"?: (() => any) | undefined;
413
- readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
414
- readonly "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
421
+ readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
422
+ readonly "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
415
423
  readonly "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
416
424
  readonly "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
417
425
  readonly "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
@@ -434,7 +442,7 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
434
442
  $root: import('vue').ComponentPublicInstance | null;
435
443
  $parent: import('vue').ComponentPublicInstance | null;
436
444
  $host: Element | null;
437
- $emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "dsg-table:row-clicked", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-hover", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-dblclick", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
445
+ $emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any, {}>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any, {}>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "dsg-table:row-clicked", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-hover", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-dblclick", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
438
446
  $el: HTMLDivElement;
439
447
  $options: import('vue').ComponentOptionsBase<Readonly<{
440
448
  filterParams?: any;
@@ -442,8 +450,8 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
442
450
  } & import('./DsgTableComponent.vue').DsgTableComponentProp> & Readonly<{
443
451
  "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
444
452
  "onDsg-table:loaded"?: (() => any) | undefined;
445
- "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
446
- "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
453
+ "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
454
+ "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
447
455
  "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
448
456
  "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
449
457
  "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
@@ -463,8 +471,8 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
463
471
  } & {
464
472
  "dsg-table:loading": (loading: boolean) => any;
465
473
  "dsg-table:loaded": () => any;
466
- "dsg-table:load-success": (response: import('axios').AxiosResponse<any, any>) => any;
467
- "dsg-table:load-error": (response: import('axios').AxiosResponse<any, any>) => any;
474
+ "dsg-table:load-success": (response: import('axios').AxiosResponse<any, any, {}>) => any;
475
+ "dsg-table:load-error": (response: import('axios').AxiosResponse<any, any, {}>) => any;
468
476
  "dsg-table:pagination-data": (paginationData: any) => any;
469
477
  "dsg-table:rows-selected": (rows: any) => any;
470
478
  "dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
@@ -488,7 +496,7 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
488
496
  errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
489
497
  };
490
498
  $forceUpdate: () => void;
491
- $nextTick: typeof import('vue').nextTick;
499
+ $nextTick: typeof nextTick;
492
500
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
493
501
  } & Readonly<{}> & Omit<Readonly<{
494
502
  filterParams?: any;
@@ -496,8 +504,8 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
496
504
  } & import('./DsgTableComponent.vue').DsgTableComponentProp> & Readonly<{
497
505
  "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
498
506
  "onDsg-table:loaded"?: (() => any) | undefined;
499
- "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
500
- "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
507
+ "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
508
+ "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
501
509
  "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
502
510
  "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
503
511
  "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
@@ -63,6 +63,14 @@ export interface DsgTableComponentProp {
63
63
  multiSort?: boolean;
64
64
  tableHeight?: string | null;
65
65
  multiSortKey?: string;
66
+ /**
67
+ * Row class - can be a string of CSS classes or a function that returns classes based on row data
68
+ * Function signature: (rowData: any, rowIndex: number) => string | string[] | Record<string, boolean>
69
+ * Examples:
70
+ * - String: "my-class another-class"
71
+ * - Function: (rowData, index) => rowData.held ? 'held-row' : 'normal-row'
72
+ * - Function: (rowData, index) => ({ 'held-row': rowData.held, 'urgent': rowData.priority === 'high' })
73
+ */
66
74
  rowClass?: string | Function;
67
75
  detailRowComponent?: string | Object;
68
76
  detailRowTransition?: string;
@@ -125,8 +133,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
125
133
  } & {
126
134
  "dsg-table:loading": (loading: boolean) => any;
127
135
  "dsg-table:loaded": () => any;
128
- "dsg-table:load-success": (response: AxiosResponse<any, any>) => any;
129
- "dsg-table:load-error": (response: AxiosResponse<any, any>) => any;
136
+ "dsg-table:load-success": (response: AxiosResponse<any, any, {}>) => any;
137
+ "dsg-table:load-error": (response: AxiosResponse<any, any, {}>) => any;
130
138
  "dsg-table:pagination-data": (paginationData: any) => any;
131
139
  "dsg-table:rows-selected": (rows: any) => any;
132
140
  "dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
@@ -135,8 +143,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
135
143
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
136
144
  "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
137
145
  "onDsg-table:loaded"?: (() => any) | undefined;
138
- "onDsg-table:load-success"?: ((response: AxiosResponse<any, any>) => any) | undefined;
139
- "onDsg-table:load-error"?: ((response: AxiosResponse<any, any>) => any) | undefined;
146
+ "onDsg-table:load-success"?: ((response: AxiosResponse<any, any, {}>) => any) | undefined;
147
+ "onDsg-table:load-error"?: ((response: AxiosResponse<any, any, {}>) => any) | undefined;
140
148
  "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
141
149
  "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
142
150
  "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
@@ -13,6 +13,7 @@ export interface DsgTableSearchProps {
13
13
  hidden?: boolean;
14
14
  extraClasses?: Record<string, string> | any;
15
15
  eventName?: string;
16
+ replaceState?: boolean;
16
17
  }
17
18
  declare const _default: import('vue').DefineComponent<DsgTableSearchProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
18
19
  "dsg-table:term-changed": (term: string | null) => any;