@parasutcom/fds 0.1.35 → 0.1.36
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 +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -31995,7 +31995,6 @@ function WH({
|
|
|
31995
31995
|
const y = h(g.category);
|
|
31996
31996
|
if (!y) return null;
|
|
31997
31997
|
const b = {
|
|
31998
|
-
key: g.id,
|
|
31999
31998
|
placeholder: y.label,
|
|
32000
31999
|
onRemove: () => m(g.id),
|
|
32001
32000
|
disabled: i,
|
|
@@ -32010,7 +32009,8 @@ function WH({
|
|
|
32010
32009
|
value: E,
|
|
32011
32010
|
onValueChange: (w) => p(g.id, w),
|
|
32012
32011
|
quickPresets: y.quickPresets
|
|
32013
|
-
}
|
|
32012
|
+
},
|
|
32013
|
+
g.id
|
|
32014
32014
|
);
|
|
32015
32015
|
}
|
|
32016
32016
|
const C = {
|
|
@@ -32025,14 +32025,16 @@ function WH({
|
|
|
32025
32025
|
multiple: !0,
|
|
32026
32026
|
value: Array.isArray(g.value) ? g.value : [],
|
|
32027
32027
|
onValueChange: (E) => p(g.id, E)
|
|
32028
|
-
}
|
|
32028
|
+
},
|
|
32029
|
+
g.id
|
|
32029
32030
|
) : /* @__PURE__ */ x(
|
|
32030
32031
|
gw,
|
|
32031
32032
|
{
|
|
32032
32033
|
...C,
|
|
32033
32034
|
value: typeof g.value == "string" ? g.value : "",
|
|
32034
32035
|
onValueChange: (E) => p(g.id, E)
|
|
32035
|
-
}
|
|
32036
|
+
},
|
|
32037
|
+
g.id
|
|
32036
32038
|
);
|
|
32037
32039
|
})
|
|
32038
32040
|
] });
|