jclib-ui 1.0.154 → 1.0.156

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.
@@ -18856,8 +18856,7 @@ function FooterLoadMore({ innerRef, loading, page, pages, ...rest }) {
18856
18856
  }
18857
18857
  const filterInit = {
18858
18858
  q: "",
18859
- page: 1,
18860
- limit: 25
18859
+ page: 1
18861
18860
  };
18862
18861
  function BoxSearch({
18863
18862
  isOpen,
@@ -18881,7 +18880,7 @@ function BoxSearch({
18881
18880
  const [rolagemInfinita, setRolagemInfinita] = useState(false);
18882
18881
  const [loadDados, resLoad] = useApi({
18883
18882
  url: route,
18884
- params: filter,
18883
+ params: { ...filter, limit: isDesktop() ? 26 : 10 },
18885
18884
  onTerminated: (res) => {
18886
18885
  if (res.error) {
18887
18886
  setError(res.error);
@@ -19699,7 +19698,15 @@ function CheckUpdates() {
19699
19698
  }, []);
19700
19699
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Container$2, { onClick: handleClick, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { ref: showRef, className: "update-box", children: [
19701
19700
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "update-line" }),
19702
- /* @__PURE__ */ jsxRuntimeExports.jsx("i", { className: "fas fa-info-circle" }),
19701
+ /* @__PURE__ */ jsxRuntimeExports.jsx(
19702
+ "div",
19703
+ {
19704
+ className: "spinner-border text-warning",
19705
+ role: "status",
19706
+ style: { width: "22px", height: "22px" },
19707
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "visually-hidden", children: "Loading..." })
19708
+ }
19709
+ ),
19703
19710
  "Nova versão disponível, atualizando..."
19704
19711
  ] }) });
19705
19712
  }