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.modern.js
CHANGED
@@ -8344,7 +8344,10 @@ var TableEditor$2 = function TableEditor(props) {
|
|
8344
8344
|
item: field.item ? field.item : [],
|
8345
8345
|
onChange: field.id === "checked" ? checkOne : field.editable ? change : null,
|
8346
8346
|
/* checked has it´s own handler */
|
8347
|
-
options: options
|
8347
|
+
options: options,
|
8348
|
+
sortable: field.sortable || false,
|
8349
|
+
filterable: field.filterable || false,
|
8350
|
+
resizable: field.resizable || false
|
8348
8351
|
};
|
8349
8352
|
}),
|
8350
8353
|
rows: groups[groupName].map(function (item) {
|