ywana-core8 0.0.406 → 0.0.409
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 +4 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -6
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -6
- 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/ContentEditor.js +1 -1
- package/src/domain/ContentEditor.test.js +9 -5
- 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" : "";
|
@@ -4150,7 +4150,7 @@
|
|
4150
4150
|
label: label,
|
4151
4151
|
onChange: change,
|
4152
4152
|
readOnly: !editable,
|
4153
|
-
options:
|
4153
|
+
options: buildOptions()
|
4154
4154
|
});
|
4155
4155
|
|
4156
4156
|
default:
|
@@ -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]);
|