@haluo/biz 1.0.6 → 1.0.7
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/haluo-biz.js +1 -1
- package/dist/haluo-biz.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/haluo-biz.js
CHANGED
|
@@ -2020,7 +2020,7 @@ const _sfc_main = {
|
|
|
2020
2020
|
return;
|
|
2021
2021
|
}
|
|
2022
2022
|
children.forEach((child) => {
|
|
2023
|
-
if (child.nodeType === 1 && (child.tagName !== "svg" && !child.
|
|
2023
|
+
if (child.nodeType === 1 && (child.tagName !== "svg" && !child.className.includes("halo") || child.tagName === "svg")) {
|
|
2024
2024
|
const parent = child.parentNode;
|
|
2025
2025
|
parent.removeChild(child);
|
|
2026
2026
|
}
|
package/dist/haluo-biz.umd.cjs
CHANGED
|
@@ -2024,7 +2024,7 @@
|
|
|
2024
2024
|
return;
|
|
2025
2025
|
}
|
|
2026
2026
|
children.forEach((child) => {
|
|
2027
|
-
if (child.nodeType === 1 && (child.tagName !== "svg" && !child.
|
|
2027
|
+
if (child.nodeType === 1 && (child.tagName !== "svg" && !child.className.includes("halo") || child.tagName === "svg")) {
|
|
2028
2028
|
const parent = child.parentNode;
|
|
2029
2029
|
parent.removeChild(child);
|
|
2030
2030
|
}
|