ywana-core8 0.0.405 → 0.0.408
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/{__reactpreview__ → __previewjs__}/Wrapper.tsx +0 -0
- package/dist/index.cjs +3 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -5
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/preview.config.cjs +35 -0
- package/src/desktop/dektop.test.js +11 -0
- package/src/desktop/desktop.css +6 -0
- package/src/desktop/desktop.js +13 -0
- package/src/desktop/window.css +58 -0
- package/src/desktop/window.js +27 -0
- package/src/domain/TablePage.js +1 -1
- package/src/html/icon.js +1 -1
- package/reactpreview.config.js +0 -37
package/dist/index.umd.js
CHANGED
@@ -168,7 +168,7 @@
|
|
168
168
|
event.preventDefault();
|
169
169
|
}
|
170
170
|
|
171
|
-
if (action) action(event);
|
171
|
+
if (action && !disabled) action(event);
|
172
172
|
}
|
173
173
|
|
174
174
|
var style = disabled ? "disabled" : clickable ? "clickable" : "";
|
@@ -5763,11 +5763,9 @@
|
|
5763
5763
|
if (fs[key].filter === false) delete fs[key];
|
5764
5764
|
}
|
5765
5765
|
}
|
5766
|
-
}
|
5766
|
+
} //Object.values(filterSchema).forEach(field => field.section = null)
|
5767
|
+
|
5767
5768
|
|
5768
|
-
Object.values(filterSchema).forEach(function (field) {
|
5769
|
-
return field.section = null;
|
5770
|
-
});
|
5771
5769
|
delete filterSchema.flows;
|
5772
5770
|
return filterSchema;
|
5773
5771
|
}, [schema]);
|