jclib-ui 1.0.271 → 1.0.272

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.
@@ -16341,8 +16341,6 @@ const LoadingBarContainer = styled.div`
16341
16341
  background-color: var(--loading-bar-color);
16342
16342
  height: var(--loading-bar-size);
16343
16343
  transform: ease all 0.4s;
16344
- left: ${({ position }) => position[0]}%;
16345
- width: ${({ position }) => position[1]}%;
16346
16344
  animation: FadeIn 0.5s both;
16347
16345
  }
16348
16346
  `;
@@ -16366,7 +16364,17 @@ function LoadingBar({ visible }) {
16366
16364
  }
16367
16365
  setPosition([inicio, fim]);
16368
16366
  }, 5);
16369
- return /* @__PURE__ */ jsxRuntimeExports.jsx(LoadingBarContainer, { position, children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "floating-bar", children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "d-none", children: "Carregando..." }) }) });
16367
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(LoadingBarContainer, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(
16368
+ "div",
16369
+ {
16370
+ className: "floating-bar",
16371
+ style: {
16372
+ left: `${position[0]}%`,
16373
+ width: `${position[1]}%`
16374
+ },
16375
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "d-none", children: "Carregando..." })
16376
+ }
16377
+ ) });
16370
16378
  }
16371
16379
  function Loading({ visible, message = "Aguarde...", isbar = false }) {
16372
16380
  if (!visible) {