kelt-ui-kit-react 1.3.5 → 1.3.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 +3 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/select/Select.tsx +3 -1
- package/src/select/select.css +6 -0
package/dist/index.js
CHANGED
|
@@ -2291,6 +2291,8 @@ const qi = Cn.div`
|
|
|
2291
2291
|
/* @__PURE__ */ o.jsxs(
|
|
2292
2292
|
"select",
|
|
2293
2293
|
{
|
|
2294
|
+
defaultValue: "",
|
|
2295
|
+
required: !0,
|
|
2294
2296
|
disabled: a,
|
|
2295
2297
|
id: `select-${e}`,
|
|
2296
2298
|
className: "select-container-select",
|
|
@@ -2299,7 +2301,7 @@ const qi = Cn.div`
|
|
|
2299
2301
|
multiple: i,
|
|
2300
2302
|
ref: (b) => v.current[e ?? "select"] = b,
|
|
2301
2303
|
children: [
|
|
2302
|
-
f && !s && !i && /* @__PURE__ */ o.jsx("option", { disabled: !0, hidden: !0, value: "", children: f }),
|
|
2304
|
+
f && !s && !i && /* @__PURE__ */ o.jsx("option", { selected: !0, disabled: !0, hidden: !0, value: "", children: f }),
|
|
2303
2305
|
r.map((b, m) => /* @__PURE__ */ o.jsx("option", { value: b.value, children: b.label }, m))
|
|
2304
2306
|
]
|
|
2305
2307
|
}
|