ywana-core8 0.0.727 → 0.0.728
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.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/html/table.js +2 -1
package/dist/index.cjs
CHANGED
@@ -2119,6 +2119,7 @@ var StringCellViewer = function StringCellViewer(_ref7) {
|
|
2119
2119
|
return o.value === value;
|
2120
2120
|
}) : null;
|
2121
2121
|
var text = option ? option.label : value;
|
2122
|
+
var className = option ? option.className : '';
|
2122
2123
|
var locale = window.navigator.userLanguage || window.navigator.language;
|
2123
2124
|
|
2124
2125
|
switch (format) {
|
@@ -2163,7 +2164,7 @@ var StringCellViewer = function StringCellViewer(_ref7) {
|
|
2163
2164
|
}
|
2164
2165
|
|
2165
2166
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
2166
|
-
className: "field-editor string-viewer"
|
2167
|
+
className: "field-editor string-viewer " + className
|
2167
2168
|
}, text);
|
2168
2169
|
};
|
2169
2170
|
/**
|