@profitliga/ui 1.2.64 → 1.2.65
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/components/index.js +6 -5
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -5716,7 +5716,7 @@ const Ui = { class: "input__wrapper" }, Ei = ["id", "placeholder", "name", "disa
|
|
|
5716
5716
|
};
|
|
5717
5717
|
function dt(e, l = {}, a) {
|
|
5718
5718
|
Ve(e), getComputedStyle(e).position === "static" && (e.style.position = "relative", e.dataset.originalPosition = "static");
|
|
5719
|
-
const r = Ld(l, a), u = Ud(), $ = zt(Hd, {
|
|
5719
|
+
const r = Ld(l, a), u = Ud(l), $ = zt(Hd, {
|
|
5720
5720
|
size: r,
|
|
5721
5721
|
color: "#00AB2E"
|
|
5722
5722
|
});
|
|
@@ -5734,9 +5734,9 @@ function Ld(e, l) {
|
|
|
5734
5734
|
return he[o];
|
|
5735
5735
|
return he.default;
|
|
5736
5736
|
}
|
|
5737
|
-
function Ud() {
|
|
5738
|
-
const
|
|
5739
|
-
return
|
|
5737
|
+
function Ud(e = {}) {
|
|
5738
|
+
const l = document.createElement("div");
|
|
5739
|
+
return l.style.cssText = `
|
|
5740
5740
|
position: absolute;
|
|
5741
5741
|
top: 0;
|
|
5742
5742
|
left: 0;
|
|
@@ -5748,7 +5748,8 @@ function Ud() {
|
|
|
5748
5748
|
z-index: 4;
|
|
5749
5749
|
backdrop-filter: blur(1px);
|
|
5750
5750
|
border-radius: inherit;
|
|
5751
|
-
|
|
5751
|
+
${e.white ? "background: rgba(255, 255, 255, 0.8);" : ""}
|
|
5752
|
+
`, l;
|
|
5752
5753
|
}
|
|
5753
5754
|
const Ed = /* @__PURE__ */ c({
|
|
5754
5755
|
__name: "StepperIndicator",
|