pallote-react 0.15.14 → 0.15.15
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 +6 -4
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1740,9 +1740,10 @@ const Checkbox = ({
|
|
|
1740
1740
|
checked: checked,
|
|
1741
1741
|
"aria-checked": checked,
|
|
1742
1742
|
disabled: disabled,
|
|
1743
|
-
required: !(disabled || optional)
|
|
1743
|
+
required: !(disabled || optional)
|
|
1744
|
+
}, props, {
|
|
1744
1745
|
onChange: onChange
|
|
1745
|
-
}
|
|
1746
|
+
})), /*#__PURE__*/React__default.createElement("label", {
|
|
1746
1747
|
className: classnames('checkbox_label'),
|
|
1747
1748
|
htmlFor: id
|
|
1748
1749
|
}, label));
|
|
@@ -2319,9 +2320,10 @@ const Radio = ({
|
|
|
2319
2320
|
checked: checked,
|
|
2320
2321
|
"aria-checked": checked,
|
|
2321
2322
|
disabled: disabled,
|
|
2322
|
-
required: !(disabled || optional)
|
|
2323
|
+
required: !(disabled || optional)
|
|
2324
|
+
}, props, {
|
|
2323
2325
|
onChange: onChange
|
|
2324
|
-
}
|
|
2326
|
+
})), /*#__PURE__*/React__default.createElement("label", {
|
|
2325
2327
|
className: classnames('radio_label'),
|
|
2326
2328
|
htmlFor: id
|
|
2327
2329
|
}, label));
|
package/dist/package.json
CHANGED