@hzab/list-render 1.9.14 → 1.9.15
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/table-render/index.jsx +10 -6
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -350,13 +350,17 @@ function TableRender(props) {
|
|
|
350
350
|
expandable={config.expandable}
|
|
351
351
|
loading={props.loading}
|
|
352
352
|
onRow={config?.onRow}
|
|
353
|
+
components={
|
|
354
|
+
isDargTable
|
|
355
|
+
? {
|
|
356
|
+
body: {
|
|
357
|
+
wrapper: DraggableContainer,
|
|
358
|
+
row: DraggableBodyRow,
|
|
359
|
+
},
|
|
360
|
+
}
|
|
361
|
+
: undefined
|
|
362
|
+
}
|
|
353
363
|
{...props.tableProps}
|
|
354
|
-
components={{
|
|
355
|
-
body: {
|
|
356
|
-
wrapper: DraggableContainer,
|
|
357
|
-
row: DraggableBodyRow,
|
|
358
|
-
},
|
|
359
|
-
}}
|
|
360
364
|
/>
|
|
361
365
|
<FormilyField
|
|
362
366
|
schema={props.schema}
|