ywana-core8 0.0.869 → 0.0.871
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 +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +1 -1
- package/src/html/radio.js +2 -2
package/dist/index.umd.js
CHANGED
@@ -923,7 +923,7 @@
|
|
923
923
|
/**
|
924
924
|
* Radio Button
|
925
925
|
*/
|
926
|
-
var RadioButton
|
926
|
+
var RadioButton = function RadioButton(props) {
|
927
927
|
var id = props.id,
|
928
928
|
name = props.name,
|
929
929
|
label = props.label,
|
@@ -942,7 +942,7 @@
|
|
942
942
|
name: name,
|
943
943
|
type: "radio",
|
944
944
|
placeholder: placeholder,
|
945
|
-
|
945
|
+
checked: value,
|
946
946
|
onClick: change
|
947
947
|
}), /*#__PURE__*/React__default["default"].createElement("span", {
|
948
948
|
"class": "checkmark"
|
@@ -10945,7 +10945,7 @@
|
|
10945
10945
|
exports.PasswordField = PasswordField;
|
10946
10946
|
exports.Planner = Planner;
|
10947
10947
|
exports.Property = Property;
|
10948
|
-
exports.RadioButton = RadioButton
|
10948
|
+
exports.RadioButton = RadioButton;
|
10949
10949
|
exports.ResetPasswordBox = ResetPasswordBox;
|
10950
10950
|
exports.Section = Section;
|
10951
10951
|
exports.Session = Session;
|