optimized-react-component-library-xyz123 0.26.5 → 0.26.6
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 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -248,8 +248,8 @@ var CheckboxGroup = ({
|
|
|
248
248
|
var _a2;
|
|
249
249
|
const initialValues = ((_a2 = question.options) == null ? void 0 : _a2.filter((option) => {
|
|
250
250
|
var _a3;
|
|
251
|
-
return (_a3 = question.answer) == null ? void 0 : _a3.includes(option.
|
|
252
|
-
}).map((option) => option.
|
|
251
|
+
return (_a3 = question.answer) == null ? void 0 : _a3.includes(option.id);
|
|
252
|
+
}).map((option) => option.id)) || [];
|
|
253
253
|
setCheckedValues(initialValues);
|
|
254
254
|
}, [question.answer, question.options]);
|
|
255
255
|
const handleInputChange = (event, optionValue) => {
|
|
@@ -283,9 +283,9 @@ var CheckboxGroup = ({
|
|
|
283
283
|
type: "checkbox",
|
|
284
284
|
name: `name-${question.id}`,
|
|
285
285
|
id: `${groupId}-option-${index}`,
|
|
286
|
-
value: option.
|
|
287
|
-
checked: checkedValues.includes(option.
|
|
288
|
-
onChange: (e) => handleInputChange(e, option.
|
|
286
|
+
value: option.id,
|
|
287
|
+
checked: checkedValues.includes(option.id),
|
|
288
|
+
onChange: (e) => handleInputChange(e, option.id),
|
|
289
289
|
className: question.hasValidationError ? "pts-root-question-input-error-border" : void 0
|
|
290
290
|
}
|
|
291
291
|
),
|
|
@@ -313,7 +313,7 @@ var PreviewCheckboxGroup = ({
|
|
|
313
313
|
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("dt", { id: `question-${previewId}`, children: (_a = question.previewLabel) != null ? _a : question.questionLabel }),
|
|
314
314
|
question.answer ? question.options && question.options.length === 1 ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("dd", { children: question.options[0].label }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("dd", { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("ul", { className: "pts-preview-answer-list", children: (_b = question.options) == null ? void 0 : _b.filter((option) => {
|
|
315
315
|
var _a2;
|
|
316
|
-
return (_a2 = question.answer) == null ? void 0 : _a2.includes(option.
|
|
316
|
+
return (_a2 = question.answer) == null ? void 0 : _a2.includes(option.id);
|
|
317
317
|
}).map((option, index) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("li", { children: option.label }, index)) }) }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("dd", { className: "no-answer-preview-page", children: activatedLanguage === "en" ? "No Answer" : "Inget svar" }),
|
|
318
318
|
" "
|
|
319
319
|
] });
|