ywana-core8 0.0.907 → 0.0.908
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/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +4 -1
- package/src/widgets/image/ImageComparator.js +80 -0
package/dist/index.cjs
CHANGED
@@ -8353,7 +8353,10 @@ var TableEditor$2 = function TableEditor(props) {
|
|
8353
8353
|
item: field.item ? field.item : [],
|
8354
8354
|
onChange: field.id === "checked" ? checkOne : field.editable ? change : null,
|
8355
8355
|
/* checked has it´s own handler */
|
8356
|
-
options: options
|
8356
|
+
options: options,
|
8357
|
+
sortable: field.sortable || false,
|
8358
|
+
filterable: field.filterable || false,
|
8359
|
+
resizable: field.resizable || false
|
8357
8360
|
};
|
8358
8361
|
}),
|
8359
8362
|
rows: groups[groupName].map(function (item) {
|