@deque/cauldron-react 5.7.0-canary.f3d7c4d6 → 5.7.0-canary.f86d18ec
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.
|
@@ -5,7 +5,7 @@ interface Props extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
5
5
|
totalItems: number;
|
|
6
6
|
itemsPerPage?: number;
|
|
7
7
|
currentPage?: number;
|
|
8
|
-
statusLabel?:
|
|
8
|
+
statusLabel?: ContentNode;
|
|
9
9
|
firstPageLabel?: ContentNode;
|
|
10
10
|
previousPageLabel?: ContentNode;
|
|
11
11
|
nextPageLabel?: ContentNode;
|
package/lib/index.js
CHANGED
|
@@ -2660,7 +2660,7 @@ var RadioGroup = React.forwardRef(function (_a, ref) {
|
|
|
2660
2660
|
handleChange(radioValue);
|
|
2661
2661
|
onChange(radio, (_a = inputs.current) === null || _a === void 0 ? void 0 : _a[index]);
|
|
2662
2662
|
}, disabled: disabled, checked: isChecked, "aria-describedby": labelDescription ? "".concat(id, "Desc") : undefined }, other)),
|
|
2663
|
-
React__default.createElement("label", { htmlFor: id, className: classNames('Radio__label', {
|
|
2663
|
+
React__default.createElement("label", { htmlFor: id, className: classNames('Field__label Radio__label', {
|
|
2664
2664
|
'Field__label--disabled': disabled
|
|
2665
2665
|
}) }, label),
|
|
2666
2666
|
React__default.createElement(Icon, { className: classNames('Radio__overlay', {
|
|
@@ -2859,7 +2859,7 @@ var Checkbox = React.forwardRef(function (_a, ref) {
|
|
|
2859
2859
|
onChange(e);
|
|
2860
2860
|
}
|
|
2861
2861
|
} }, other)),
|
|
2862
|
-
React__default.createElement("label", { className: classNames('Checkbox__label', {
|
|
2862
|
+
React__default.createElement("label", { className: classNames('Field__label Checkbox__label', {
|
|
2863
2863
|
'Field__label--disabled': disabled
|
|
2864
2864
|
}), htmlFor: id }, label),
|
|
2865
2865
|
React__default.createElement(Icon, { className: classNames('Checkbox__overlay', {
|
package/package.json
CHANGED