impaktapps-design 0.2.96-alpha.2 → 0.2.96
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.
|
@@ -20138,12 +20138,12 @@ const ProgressBar = ({
|
|
|
20138
20138
|
children: /* @__PURE__ */ jsx("div", {
|
|
20139
20139
|
className: "progress-bar-fill",
|
|
20140
20140
|
style: {
|
|
20141
|
-
width: progress2 > 100 ?
|
|
20141
|
+
width: `${progress2 > 100 ? 100 : progress2}%`,
|
|
20142
20142
|
backgroundColor: ((_g = value == null ? void 0 : value.style) == null ? void 0 : _g.progressBarFillColor) || getColor()[1],
|
|
20143
20143
|
height: "100%",
|
|
20144
20144
|
borderRadius: "10px",
|
|
20145
20145
|
marginBottom: "20px",
|
|
20146
|
-
transition: "width 0.
|
|
20146
|
+
transition: "width 0.5 ease-out"
|
|
20147
20147
|
}
|
|
20148
20148
|
})
|
|
20149
20149
|
});
|
|
@@ -20204,7 +20204,7 @@ const ProgressBar = ({
|
|
|
20204
20204
|
children: /* @__PURE__ */ jsx("div", {
|
|
20205
20205
|
className: "progress-bar-fill",
|
|
20206
20206
|
style: {
|
|
20207
|
-
width:
|
|
20207
|
+
width: `${progress2}%`,
|
|
20208
20208
|
backgroundColor: getColor()[1],
|
|
20209
20209
|
height: "100%",
|
|
20210
20210
|
borderRadius: "10px",
|