@dcodegroup-au/dsg-vue 0.0.27 → 0.0.28
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/dist/components/Table/DsgTableActions.vue.d.ts +2 -0
- package/dist/dsg-vue.css +1 -1
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +218 -213
- package/dist/table.d.ts +10 -0
- package/package.json +1 -1
|
@@ -535,11 +535,13 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableActionsProp
|
|
|
535
535
|
"dsg-table:action-edit": (ev: Event, rowData: Record<string, any>) => any;
|
|
536
536
|
"dsg-table:action-view": (ev: Event, rowData: Record<string, any>) => any;
|
|
537
537
|
"dsg-table:action-delete": (ev: Event, rowData: Record<string, any>) => any;
|
|
538
|
+
"dsg-table:action-archive": (ev: Event, rowData: Record<string, any>) => any;
|
|
538
539
|
"dsg-table:link-clicked": (ev: Event, actionId: string | number, rowData: Record<string, any>) => any;
|
|
539
540
|
}, string, import('vue').PublicProps, Readonly<DsgTableActionsProps> & Readonly<{
|
|
540
541
|
"onDsg-table:action-edit"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
541
542
|
"onDsg-table:action-view"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
542
543
|
"onDsg-table:action-delete"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
544
|
+
"onDsg-table:action-archive"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
543
545
|
"onDsg-table:link-clicked"?: ((ev: Event, actionId: string | number, rowData: Record<string, any>) => any) | undefined;
|
|
544
546
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
545
547
|
dsgTableActions: HTMLDivElement;
|