unifyedx-storybook-new 0.1.44 → 0.1.45
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.
|
@@ -45047,6 +45047,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
45047
45047
|
border-radius: .5rem;
|
|
45048
45048
|
justify-content: space-between;
|
|
45049
45049
|
align-items: center;
|
|
45050
|
+
margin-bottom: 10px;
|
|
45050
45051
|
padding: 1rem;
|
|
45051
45052
|
transition: border-color .2s, box-shadow .2s;
|
|
45052
45053
|
display: flex;
|
|
@@ -49215,6 +49216,7 @@ body.toast-backdrop #ui-toast-backdrop {
|
|
|
49215
49216
|
background-color: white;
|
|
49216
49217
|
cursor: pointer;
|
|
49217
49218
|
transition: border-color 0.2s, box-shadow 0.2s;
|
|
49219
|
+
margin-bottom: 10px;
|
|
49218
49220
|
}
|
|
49219
49221
|
|
|
49220
49222
|
/* State for keyboard focus or mouse hover */
|
|
@@ -75526,7 +75526,7 @@ function SectionRenderer({ item, data: initialData, updateHandler, validationErr
|
|
|
75526
75526
|
/* @__PURE__ */ jsx(
|
|
75527
75527
|
RadioGroup,
|
|
75528
75528
|
{
|
|
75529
|
-
selectedValue: data[field.key] || "",
|
|
75529
|
+
selectedValue: typeof data[field.key] !== "undefined" ? data[field.key] : field.default || "",
|
|
75530
75530
|
onValueChange: (value) => {
|
|
75531
75531
|
const newData = { ...data, [field.key]: value };
|
|
75532
75532
|
setData(newData);
|
|
@@ -76135,7 +76135,7 @@ function DataTableRenderer({ item, data: initialData, updateHandler, validationE
|
|
|
76135
76135
|
] }),
|
|
76136
76136
|
/* @__PURE__ */ jsx("p", { style: { fontSize: "14px", marginBottom: "10px" }, children: section.description })
|
|
76137
76137
|
] }),
|
|
76138
|
-
/* @__PURE__ */ jsx("div", { className: "overflow-x-auto", children: /* @__PURE__ */ jsxs("table", { className: "min-w-full bg-white border border-gray-300", children: [
|
|
76138
|
+
/* @__PURE__ */ jsx("div", { className: "overflow-x-auto", children: /* @__PURE__ */ jsxs("table", { className: "min-w-full bg-white border border-gray-300", style: { marginBottom: "20px" }, children: [
|
|
76139
76139
|
/* @__PURE__ */ jsx("thead", { children: /* @__PURE__ */ jsxs("tr", { className: "bg-gray-50", children: [
|
|
76140
76140
|
/* @__PURE__ */ jsx("th", { className: "px-4 py-2 w-10" }),
|
|
76141
76141
|
section.fields.map((field, idx) => /* @__PURE__ */ jsx(
|