ywana-core8 0.0.738 → 0.0.739
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 +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +5 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain2/CollectionFilters.css +5 -0
- package/src/domain2/CollectionFilters.js +2 -2
package/dist/index.umd.js
CHANGED
@@ -10386,7 +10386,9 @@
|
|
10386
10386
|
if (!filters) return null;
|
10387
10387
|
var fields = Object.keys(filters);
|
10388
10388
|
if (!fields.length) return null;
|
10389
|
-
return /*#__PURE__*/React__default["default"].createElement(
|
10389
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
10390
|
+
className: "collection-filters-resume"
|
10391
|
+
}, fields.filter(function (id) {
|
10390
10392
|
return filters[id] !== undefined && filters[id] !== null && filters[id] !== "";
|
10391
10393
|
}).map(function (id) {
|
10392
10394
|
var field = schema[id];
|