@fewangsit/wangsvue-fats 1.0.1-alpha.22 → 1.0.1-alpha.23
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/backgroundimagecropper/index.es.js +2 -2
- package/datatable/index.d.ts +8 -1
- package/datatable/index.es.js +367 -363
- package/dialogprintqr/index.es.js +2 -2
- package/package.json +1 -1
- package/stats.html +1 -1
- package/style.css +1 -1
- package/wangsvue-fats.esm.browser.js +318 -314
- package/wangsvue-fats.system.js +29 -29
|
@@ -50,8 +50,8 @@ const I = (i, s) => {
|
|
|
50
50
|
_: 3
|
|
51
51
|
}, 8, ["mouse-move", "touch-move", "touch-resize", "wheel-resize"]));
|
|
52
52
|
}
|
|
53
|
-
}),
|
|
53
|
+
}), S = /* @__PURE__ */ I(R, [["__scopeId", "data-v-9031c32d"]]);
|
|
54
54
|
export {
|
|
55
|
-
|
|
55
|
+
S as B,
|
|
56
56
|
I as _
|
|
57
57
|
};
|
package/datatable/index.d.ts
CHANGED
|
@@ -733,6 +733,13 @@ export type TreeTableEmits = BaseDataTableEmits & {
|
|
|
733
733
|
|
|
734
734
|
export type DataTableEmits = TreeTableEmits;
|
|
735
735
|
|
|
736
|
+
export type DataTableSlots = {
|
|
737
|
+
/**
|
|
738
|
+
* Slot for rendering sub content below a table row.
|
|
739
|
+
*/
|
|
740
|
+
'row-subcontent': (props: { item: Data }) => any;
|
|
741
|
+
};
|
|
742
|
+
|
|
736
743
|
/**
|
|
737
744
|
* **WangsVue - DataTable**
|
|
738
745
|
*
|
|
@@ -746,7 +753,7 @@ export type DataTableEmits = TreeTableEmits;
|
|
|
746
753
|
*/
|
|
747
754
|
declare class DataTable extends ClassComponent<
|
|
748
755
|
DataTableProps,
|
|
749
|
-
|
|
756
|
+
DataTableSlots,
|
|
750
757
|
DataTableEmits
|
|
751
758
|
> {}
|
|
752
759
|
|