@steedos-widgets/sortable 1.3.18 → 1.3.20
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/assets.json +5 -5
- package/dist/sortable.cjs.js +3 -0
- package/dist/sortable.cjs.js.map +1 -1
- package/dist/sortable.esm.js +3 -0
- package/dist/sortable.esm.js.map +1 -1
- package/dist/sortable.umd.js +3 -0
- package/package.json +3 -3
package/dist/sortable.esm.js
CHANGED
|
@@ -55346,6 +55346,9 @@ async function getTableColumns(fields, options){
|
|
|
55346
55346
|
const allowEdit = options.permissions?.allowEdit && !options.isLookup && options.enable_inline_edit != false;
|
|
55347
55347
|
|
|
55348
55348
|
for (const field of fields) {
|
|
55349
|
+
if(field.hidden || field.extra){
|
|
55350
|
+
continue;
|
|
55351
|
+
}
|
|
55349
55352
|
//增加quickEdit属性,实现快速编辑
|
|
55350
55353
|
const quickEditSchema = allowEdit ? await getQuickEditSchema(field, options) : allowEdit;
|
|
55351
55354
|
let className = "";
|