@fewangsit/wangsvue-fats 1.0.0-alpha.50 → 1.0.0-alpha.52
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/components/datatable/DataTable.vue.d.ts +6 -0
- package/package.json +1 -1
- package/stats.html +1 -1
- package/style.css +1 -1
- package/utils/index.d.ts +1 -0
- package/wangsvue-fats.js +6102 -6085
- package/wangsvue-fats.system.js +57 -57
|
@@ -155,6 +155,12 @@ export type TableCellComponent = {
|
|
|
155
155
|
events?: any;
|
|
156
156
|
onChange?: (itemData: any) => void;
|
|
157
157
|
disabled?: boolean;
|
|
158
|
+
/**
|
|
159
|
+
* To tell DataTable component whether this component should stop propagation or not
|
|
160
|
+
*
|
|
161
|
+
* @default true - since old logic was automatically stop event click from bodyComponent
|
|
162
|
+
*/
|
|
163
|
+
stop?: boolean;
|
|
158
164
|
};
|
|
159
165
|
|
|
160
166
|
export type TogglePresetConfirmDialogProps = Omit<
|