ywana-core8 0.0.727 → 0.0.729
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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain2/CollectionPage.css +1 -1
- package/src/html/table.js +2 -1
package/dist/index.umd.js
CHANGED
@@ -2113,6 +2113,7 @@
|
|
2113
2113
|
return o.value === value;
|
2114
2114
|
}) : null;
|
2115
2115
|
var text = option ? option.label : value;
|
2116
|
+
var className = option ? option.className : '';
|
2116
2117
|
var locale = window.navigator.userLanguage || window.navigator.language;
|
2117
2118
|
|
2118
2119
|
switch (format) {
|
@@ -2157,7 +2158,7 @@
|
|
2157
2158
|
}
|
2158
2159
|
|
2159
2160
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
2160
|
-
className: "field-editor string-viewer"
|
2161
|
+
className: "field-editor string-viewer " + className
|
2161
2162
|
}, text);
|
2162
2163
|
};
|
2163
2164
|
/**
|