formifex 0.2.15 → 0.2.16
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.es.js +4 -2
- package/dist/index.umd.js +1 -1
- package/dist/types/inputs/radio.d.ts +7 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -17306,10 +17306,12 @@ const Zb = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
17306
17306
|
Array.isArray(T) || (console.warn("Radio dataSource is not an array:", T), T = []);
|
|
17307
17307
|
const F = T.map((R) => x ? x(R, m) : M && E ? {
|
|
17308
17308
|
label: R[M],
|
|
17309
|
-
value: R[E]
|
|
17309
|
+
value: R[E],
|
|
17310
|
+
style: R.style
|
|
17310
17311
|
} : {
|
|
17311
17312
|
label: R,
|
|
17312
|
-
value: R
|
|
17313
|
+
value: R,
|
|
17314
|
+
style: R.style
|
|
17313
17315
|
});
|
|
17314
17316
|
w(F);
|
|
17315
17317
|
} else Array.isArray(t) ? w(t) : w([]);
|