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.modern.js
CHANGED
@@ -2111,6 +2111,7 @@ var StringCellViewer = function StringCellViewer(_ref7) {
|
|
2111
2111
|
return o.value === value;
|
2112
2112
|
}) : null;
|
2113
2113
|
var text = option ? option.label : value;
|
2114
|
+
var className = option ? option.className : '';
|
2114
2115
|
var locale = window.navigator.userLanguage || window.navigator.language;
|
2115
2116
|
|
2116
2117
|
switch (format) {
|
@@ -2155,7 +2156,7 @@ var StringCellViewer = function StringCellViewer(_ref7) {
|
|
2155
2156
|
}
|
2156
2157
|
|
2157
2158
|
return /*#__PURE__*/React.createElement("div", {
|
2158
|
-
className: "field-editor string-viewer"
|
2159
|
+
className: "field-editor string-viewer " + className
|
2159
2160
|
}, text);
|
2160
2161
|
};
|
2161
2162
|
/**
|