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.cjs
CHANGED
@@ -930,7 +930,7 @@ var Property = function Property(props) {
|
|
930
930
|
/**
|
931
931
|
* Radio Button
|
932
932
|
*/
|
933
|
-
var RadioButton
|
933
|
+
var RadioButton = function RadioButton(props) {
|
934
934
|
var id = props.id,
|
935
935
|
name = props.name,
|
936
936
|
label = props.label,
|
@@ -949,7 +949,7 @@ var RadioButton$1 = function RadioButton(props) {
|
|
949
949
|
name: name,
|
950
950
|
type: "radio",
|
951
951
|
placeholder: placeholder,
|
952
|
-
|
952
|
+
checked: value,
|
953
953
|
onClick: change
|
954
954
|
}), /*#__PURE__*/React__default["default"].createElement("span", {
|
955
955
|
"class": "checkmark"
|
@@ -10952,7 +10952,7 @@ exports.PasswordEditor = PasswordEditor;
|
|
10952
10952
|
exports.PasswordField = PasswordField;
|
10953
10953
|
exports.Planner = Planner;
|
10954
10954
|
exports.Property = Property;
|
10955
|
-
exports.RadioButton = RadioButton
|
10955
|
+
exports.RadioButton = RadioButton;
|
10956
10956
|
exports.ResetPasswordBox = ResetPasswordBox;
|
10957
10957
|
exports.Section = Section;
|
10958
10958
|
exports.Session = Session;
|