locust-ui 2.42.4-next-19388741547 → 2.42.4-next-19434338895
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/lib/types/lib.d.ts +1 -0
- package/lib/webui.js +9 -7
- package/package.json +1 -1
package/lib/types/lib.d.ts
CHANGED
package/lib/webui.js
CHANGED
|
@@ -7707,31 +7707,33 @@ function vS({
|
|
|
7707
7707
|
type: r = "text",
|
|
7708
7708
|
defaultValue: n,
|
|
7709
7709
|
choices: i,
|
|
7710
|
-
|
|
7711
|
-
|
|
7710
|
+
isMultiple: a,
|
|
7711
|
+
isSecret: o,
|
|
7712
|
+
isRequired: s
|
|
7712
7713
|
}) {
|
|
7713
7714
|
return i ? /* @__PURE__ */ T.jsx(
|
|
7714
7715
|
cv,
|
|
7715
7716
|
{
|
|
7716
7717
|
defaultValue: n,
|
|
7717
7718
|
label: t,
|
|
7719
|
+
multiple: a,
|
|
7718
7720
|
name: e,
|
|
7719
7721
|
options: i,
|
|
7720
|
-
required:
|
|
7722
|
+
required: s,
|
|
7721
7723
|
sx: { width: "100%" }
|
|
7722
7724
|
}
|
|
7723
7725
|
) : typeof n == "boolean" ? /* @__PURE__ */ T.jsx(
|
|
7724
7726
|
nb,
|
|
7725
7727
|
{
|
|
7726
|
-
control: /* @__PURE__ */ T.jsx(id, { defaultChecked: n, required:
|
|
7728
|
+
control: /* @__PURE__ */ T.jsx(id, { defaultChecked: n, required: s }),
|
|
7727
7729
|
label: t,
|
|
7728
7730
|
name: e
|
|
7729
7731
|
}
|
|
7730
|
-
) :
|
|
7732
|
+
) : o ? /* @__PURE__ */ T.jsx(
|
|
7731
7733
|
lR,
|
|
7732
7734
|
{
|
|
7733
7735
|
defaultValue: n,
|
|
7734
|
-
isRequired:
|
|
7736
|
+
isRequired: s,
|
|
7735
7737
|
label: t,
|
|
7736
7738
|
name: e
|
|
7737
7739
|
}
|
|
@@ -7741,7 +7743,7 @@ function vS({
|
|
|
7741
7743
|
defaultValue: n,
|
|
7742
7744
|
label: t,
|
|
7743
7745
|
name: e,
|
|
7744
|
-
required:
|
|
7746
|
+
required: s,
|
|
7745
7747
|
sx: { width: "100%" },
|
|
7746
7748
|
type: r
|
|
7747
7749
|
}
|