@davincihealthcare/elty-design-system-vue 1.16.1 → 1.16.2
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21623,7 +21623,7 @@ const BG = { class: "pointer-events-none fixed inset-0 z-50 flex items-end px-4
|
|
|
21623
21623
|
const w = [...T];
|
|
21624
21624
|
if (!w.every(
|
|
21625
21625
|
(m) => u.value.some(
|
|
21626
|
-
(U) => m.name.endsWith(U) || m.type === U || U === "*"
|
|
21626
|
+
(U) => m.name.toLowerCase().endsWith(U) || m.type.toLowerCase() === U || U === "*"
|
|
21627
21627
|
)
|
|
21628
21628
|
))
|
|
21629
21629
|
return PG("Formato non supportato, verifica di aver inserito un file/s con il formato corretto", { state: "error" });
|