@fewangsit/wangsvue-fats 1.0.1-alpha.22 → 1.0.1-alpha.24

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.
@@ -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
- Record<string, unknown>,
756
+ DataTableSlots,
750
757
  DataTableEmits
751
758
  > {}
752
759