@coreui/react 4.2.0 → 4.2.1
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/README.md +1 -1
- package/dist/components/card/CCardImage.d.ts +2 -2
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/card/CCardImage.tsx +2 -2
- package/src/components/form/CFormTextarea.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -6134,7 +6134,7 @@ var CFormTextarea = React.forwardRef(function (_a, ref) {
|
|
|
6134
6134
|
'is-valid': valid,
|
|
6135
6135
|
}, className);
|
|
6136
6136
|
return (React__default["default"].createElement(CFormControlWrapper, { describedby: rest['aria-describedby'], feedback: feedback, feedbackInvalid: feedbackInvalid, feedbackValid: feedbackValid, floatingLabel: floatingLabel, id: id, invalid: invalid, label: label, text: text, tooltipFeedback: tooltipFeedback, valid: valid },
|
|
6137
|
-
React__default["default"].createElement("textarea", __assign({ className: _className }, rest, { ref: ref }), children)));
|
|
6137
|
+
React__default["default"].createElement("textarea", __assign({ className: _className, id: id }, rest, { ref: ref }), children)));
|
|
6138
6138
|
});
|
|
6139
6139
|
CFormTextarea.propTypes = __assign({ className: PropTypes.string, id: PropTypes.string, plainText: PropTypes.bool }, CFormControlWrapper.propTypes);
|
|
6140
6140
|
CFormTextarea.displayName = 'CFormTextarea';
|