@dcodegroup-au/dsg-vue 1.0.1-next.1 → 1.0.3-next
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 +11 -56
- package/dist/dsg-vue.cjs +13 -13
- package/dist/dsg-vue.css +1 -1
- package/dist/dsg-vue.esm.js +1900 -1894
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +496 -489
- package/package.json +1 -1
|
@@ -6,6 +6,9 @@ import { Placement as FloatingVuePlacement } from 'floating-vue';
|
|
|
6
6
|
*/
|
|
7
7
|
export interface DsgTableActionsProps {
|
|
8
8
|
placement?: FloatingVuePlacement;
|
|
9
|
+
data?: {
|
|
10
|
+
rowData?: Record<string, any>;
|
|
11
|
+
};
|
|
9
12
|
}
|
|
10
13
|
declare function __VLS_template(): {
|
|
11
14
|
attrs: Partial<{}>;
|
|
@@ -193,34 +196,10 @@ declare function __VLS_template(): {
|
|
|
193
196
|
};
|
|
194
197
|
} | {
|
|
195
198
|
methods: {
|
|
196
|
-
show(
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
* ------------------------------------------------
|
|
201
|
-
*/
|
|
202
|
-
...args: any[]): any;
|
|
203
|
-
hide(
|
|
204
|
-
/**
|
|
205
|
-
* ------------------------------------------------
|
|
206
|
-
* # Import: Dependencies
|
|
207
|
-
* ------------------------------------------------
|
|
208
|
-
*/
|
|
209
|
-
...args: any[]): any;
|
|
210
|
-
dispose(
|
|
211
|
-
/**
|
|
212
|
-
* ------------------------------------------------
|
|
213
|
-
* # Import: Dependencies
|
|
214
|
-
* ------------------------------------------------
|
|
215
|
-
*/
|
|
216
|
-
...args: any[]): any;
|
|
217
|
-
onResize(
|
|
218
|
-
/**
|
|
219
|
-
* ------------------------------------------------
|
|
220
|
-
* # Import: Dependencies
|
|
221
|
-
* ------------------------------------------------
|
|
222
|
-
*/
|
|
223
|
-
...args: any[]): any;
|
|
199
|
+
show(...args: any[]): any;
|
|
200
|
+
hide(...args: any[]): any;
|
|
201
|
+
dispose(...args: any[]): any;
|
|
202
|
+
onResize(...args: any[]): any;
|
|
224
203
|
};
|
|
225
204
|
}, import('vue').ComponentOptionsMixin, {
|
|
226
205
|
show: () => true;
|
|
@@ -724,34 +703,10 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableActionsProp
|
|
|
724
703
|
};
|
|
725
704
|
} | {
|
|
726
705
|
methods: {
|
|
727
|
-
show(
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
* ------------------------------------------------
|
|
732
|
-
*/
|
|
733
|
-
...args: any[]): any;
|
|
734
|
-
hide(
|
|
735
|
-
/**
|
|
736
|
-
* ------------------------------------------------
|
|
737
|
-
* # Import: Dependencies
|
|
738
|
-
* ------------------------------------------------
|
|
739
|
-
*/
|
|
740
|
-
...args: any[]): any;
|
|
741
|
-
dispose(
|
|
742
|
-
/**
|
|
743
|
-
* ------------------------------------------------
|
|
744
|
-
* # Import: Dependencies
|
|
745
|
-
* ------------------------------------------------
|
|
746
|
-
*/
|
|
747
|
-
...args: any[]): any;
|
|
748
|
-
onResize(
|
|
749
|
-
/**
|
|
750
|
-
* ------------------------------------------------
|
|
751
|
-
* # Import: Dependencies
|
|
752
|
-
* ------------------------------------------------
|
|
753
|
-
*/
|
|
754
|
-
...args: any[]): any;
|
|
706
|
+
show(...args: any[]): any;
|
|
707
|
+
hide(...args: any[]): any;
|
|
708
|
+
dispose(...args: any[]): any;
|
|
709
|
+
onResize(...args: any[]): any;
|
|
755
710
|
};
|
|
756
711
|
}, import('vue').ComponentOptionsMixin, {
|
|
757
712
|
show: () => true;
|