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