sellmate-design-system-react 0.8.2 → 0.8.3
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/components/SCheckbox/SCheckbox.cjs +1 -1
- package/dist/components/SCheckbox/SCheckbox.cjs.map +1 -1
- package/dist/components/SCheckbox/SCheckbox.js +1 -1
- package/dist/components/SCheckbox/SCheckbox.js.map +1 -1
- package/dist/components/SKeyValueTable/SKeyValueTable.cjs +5 -4
- package/dist/components/SKeyValueTable/SKeyValueTable.cjs.map +1 -1
- package/dist/components/SKeyValueTable/SKeyValueTable.js +5 -4
- package/dist/components/SKeyValueTable/SKeyValueTable.js.map +1 -1
- package/dist/components/SSelect/SSelect.cjs +4 -3
- package/dist/components/SSelect/SSelect.cjs.map +1 -1
- package/dist/components/SSelect/SSelect.js +4 -3
- package/dist/components/SSelect/SSelect.js.map +1 -1
- package/dist/components/STable/STable.cjs +5 -4
- package/dist/components/STable/STable.cjs.map +1 -1
- package/dist/components/STable/STable.js +5 -4
- package/dist/components/STable/STable.js.map +1 -1
- package/dist/index.cjs +5 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -2919,7 +2919,7 @@ function SCheckbox({
|
|
|
2919
2919
|
}
|
|
2920
2920
|
),
|
|
2921
2921
|
label && // 고스트(500) 텍스트로 너비를 고정 → 두께 400↔500 전환 시 레이아웃이 밀리지 않음
|
|
2922
|
-
/* @__PURE__ */ jsxs("span", { className: "grid text-[12px] leading-[20px]", style: { color: labelColor }, children: [
|
|
2922
|
+
/* @__PURE__ */ jsxs("span", { className: "grid text-nowrap text-[12px] leading-[20px]", style: { color: labelColor }, children: [
|
|
2923
2923
|
/* @__PURE__ */ jsx("span", { "aria-hidden": true, className: "invisible font-medium", style: { gridArea: "1 / 1" }, children: label }),
|
|
2924
2924
|
/* @__PURE__ */ jsx("span", { style: { gridArea: "1 / 1", fontWeight: isChecked ? 500 : 400 }, children: label })
|
|
2925
2925
|
] })
|
|
@@ -4294,8 +4294,9 @@ function ItemList({
|
|
|
4294
4294
|
]
|
|
4295
4295
|
}
|
|
4296
4296
|
),
|
|
4297
|
-
items.map((o) => {
|
|
4297
|
+
items.map((o, idx) => {
|
|
4298
4298
|
const padLeft = o.depth === 1 ? 12 : o.depth === 2 ? 20 : 28;
|
|
4299
|
+
const rowKey = `${o.value}-${idx}`;
|
|
4299
4300
|
if (o.isGroup) {
|
|
4300
4301
|
const isDepth1 = o.depth === 1;
|
|
4301
4302
|
return /* @__PURE__ */ jsx(
|
|
@@ -4312,7 +4313,7 @@ function ItemList({
|
|
|
4312
4313
|
style: { paddingLeft: padLeft },
|
|
4313
4314
|
children: o.label
|
|
4314
4315
|
},
|
|
4315
|
-
|
|
4316
|
+
rowKey
|
|
4316
4317
|
);
|
|
4317
4318
|
}
|
|
4318
4319
|
const isSelected = selected.includes(o.value);
|
|
@@ -4369,7 +4370,7 @@ function ItemList({
|
|
|
4369
4370
|
) : /* @__PURE__ */ jsx("span", { className: "flex-1 truncate", children: o.label })
|
|
4370
4371
|
]
|
|
4371
4372
|
},
|
|
4372
|
-
|
|
4373
|
+
rowKey
|
|
4373
4374
|
);
|
|
4374
4375
|
})
|
|
4375
4376
|
] });
|