@codeandfunction/callaloo 3.2.4 → 3.2.5
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 -2
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3239,7 +3239,7 @@ const p0 = /* @__PURE__ */ bs(fs, [["render", ms]]), yt = ({ escHandler: e, trig
|
|
|
3239
3239
|
_: 1
|
|
3240
3240
|
}));
|
|
3241
3241
|
}
|
|
3242
|
-
}), zs = ["data-testid"], Ts = ["for"], Hs = ["id", "aria-label", "disabled", "name", "placeholder", "form", "required"], _s = ["value", "selected"], te = "clll-select", g0 = /* @__PURE__ */ W({
|
|
3242
|
+
}), zs = ["data-testid"], Ts = ["for"], Hs = ["id", "aria-label", "disabled", "name", "placeholder", "form", "required"], _s = ["value", "selected", "disabled"], te = "clll-select", g0 = /* @__PURE__ */ W({
|
|
3243
3243
|
name: "CLSelect",
|
|
3244
3244
|
__name: "CLSelect",
|
|
3245
3245
|
props: /* @__PURE__ */ lo({
|
|
@@ -3348,7 +3348,8 @@ const p0 = /* @__PURE__ */ bs(fs, [["render", ms]]), yt = ({ escHandler: e, trig
|
|
|
3348
3348
|
i.options ? (m(!0), $(Le, { key: 0 }, Oo(i.options, (u, h) => (m(), $("option", {
|
|
3349
3349
|
key: `${i.id}-option-${h}`,
|
|
3350
3350
|
value: u.value,
|
|
3351
|
-
selected: u.value === t.value
|
|
3351
|
+
selected: u.value === t.value,
|
|
3352
|
+
disabled: u.disabled
|
|
3352
3353
|
}, P(u.label), 9, _s))), 128)) : M("", !0)
|
|
3353
3354
|
], 42, Hs), [
|
|
3354
3355
|
[Dl, t.value]
|
package/dist/types.d.ts
CHANGED