ui-kit-ck-consultant 0.5.164 → 0.5.165
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.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -731,7 +731,8 @@ var Th = /*#__PURE__*/function (_React$Component) {
|
|
731
731
|
}, /*#__PURE__*/React__default.createElement("span", {
|
732
732
|
style: !this.props.sort ? {
|
733
733
|
margin: 'auto'
|
734
|
-
} : {}
|
734
|
+
} : {},
|
735
|
+
dangerouslySetInnerHTML: this.props.dangerouslySetInnerHTML
|
735
736
|
}, this.props.children), this.props.sort ? this.getSortButton() : ''));
|
736
737
|
};
|
737
738
|
|
@@ -756,7 +757,8 @@ var Td = /*#__PURE__*/function (_React$Component) {
|
|
756
757
|
rowSpan: this.props.rowSpan,
|
757
758
|
colSpan: this.props.colSpan,
|
758
759
|
className: tdClass,
|
759
|
-
style: this.props.style
|
760
|
+
style: this.props.style,
|
761
|
+
dangerouslySetInnerHTML: this.props.dangerouslySetInnerHTML
|
760
762
|
}, this.props.children);
|
761
763
|
};
|
762
764
|
|