@inseefr/lunatic 0.4.12-v2 → 0.4.13-v2
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/lib/components/checkbox/checkbox-group/checkbox-group.js +7 -5
- package/lib/components/checkbox/checkbox-group/checkbox.scss +3 -0
- package/lib/components/commons/icons/lunatic-icon.scss +1 -1
- package/lib/components/index.scss +1 -3
- package/lib/components/radio/radio-group.js +5 -5
- package/lib/components/radio/radio.scss +4 -0
- package/package.json +1 -1
|
@@ -11,6 +11,8 @@ var _commons = require("../../commons");
|
|
|
11
11
|
|
|
12
12
|
var _commons2 = require("../commons");
|
|
13
13
|
|
|
14
|
+
require("./checkbox.scss");
|
|
15
|
+
|
|
14
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
15
17
|
|
|
16
18
|
function onClick() {}
|
|
@@ -70,10 +72,7 @@ function CheckboxGroup(_ref3) {
|
|
|
70
72
|
var labelId = "lunatic-checkbox-label-".concat(id, "-").concat(name);
|
|
71
73
|
return /*#__PURE__*/_react["default"].createElement(CheckboxGroupContainer, {
|
|
72
74
|
key: checkboxId
|
|
73
|
-
}, /*#__PURE__*/_react["default"].createElement(
|
|
74
|
-
id: labelId,
|
|
75
|
-
htmlFor: checkboxId
|
|
76
|
-
}, label), /*#__PURE__*/_react["default"].createElement(CheckBoxOptionWrapper, {
|
|
75
|
+
}, /*#__PURE__*/_react["default"].createElement(CheckBoxOptionWrapper, {
|
|
77
76
|
checkboxId: checkboxId,
|
|
78
77
|
labelId: labelId,
|
|
79
78
|
checked: optionValue,
|
|
@@ -81,7 +80,10 @@ function CheckboxGroup(_ref3) {
|
|
|
81
80
|
onKeyDown: onClick,
|
|
82
81
|
response: response,
|
|
83
82
|
handleChange: handleChange
|
|
84
|
-
})
|
|
83
|
+
}), /*#__PURE__*/_react["default"].createElement(_commons.Label, {
|
|
84
|
+
id: labelId,
|
|
85
|
+
htmlFor: checkboxId
|
|
86
|
+
}, label));
|
|
85
87
|
}
|
|
86
88
|
}
|
|
87
89
|
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
padding: 0;
|
|
62
62
|
font-size: 0.75rem;
|
|
63
63
|
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
|
|
64
|
-
line-height: 0.75rem;
|
|
64
|
+
// line-height: 0.75rem;
|
|
65
65
|
font-weight: bold;
|
|
66
66
|
margin-bottom: 0.375rem;
|
|
67
67
|
}
|
|
@@ -121,13 +121,11 @@
|
|
|
121
121
|
display: inline;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
|
|
125
124
|
.field {
|
|
126
125
|
width: 100%;
|
|
127
126
|
position: relative;
|
|
128
127
|
}
|
|
129
128
|
|
|
130
|
-
|
|
131
129
|
.link-md .field-md {
|
|
132
130
|
border-bottom: dashed 0.1em var(--color-primary-dark);
|
|
133
131
|
&:hover {
|
|
@@ -29,10 +29,7 @@ function Radio(_ref) {
|
|
|
29
29
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
30
30
|
key: radioId,
|
|
31
31
|
className: "lunatic-radio-group-option"
|
|
32
|
-
}, /*#__PURE__*/_react["default"].createElement(
|
|
33
|
-
id: labelId,
|
|
34
|
-
htmlFor: radioId
|
|
35
|
-
}, label), /*#__PURE__*/_react["default"].createElement(_radioOption["default"], {
|
|
32
|
+
}, /*#__PURE__*/_react["default"].createElement(_radioOption["default"], {
|
|
36
33
|
id: radioId,
|
|
37
34
|
labelledBy: labelId,
|
|
38
35
|
index: index,
|
|
@@ -41,7 +38,10 @@ function Radio(_ref) {
|
|
|
41
38
|
value: valueOption,
|
|
42
39
|
onKeyDown: onKeyDown,
|
|
43
40
|
checkboxStyle: checkboxStyle
|
|
44
|
-
})
|
|
41
|
+
}), /*#__PURE__*/_react["default"].createElement(_commons.Label, {
|
|
42
|
+
id: labelId,
|
|
43
|
+
htmlFor: radioId
|
|
44
|
+
}, label));
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
47
|
|