jclib-ui 1.0.177 → 1.0.178

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.
@@ -1 +1,3 @@
1
- export default function BotaoClonar(): import("react/jsx-runtime").JSX.Element;
1
+ export default function BotaoClonar({ title }: {
2
+ title?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,3 @@
1
- export default function BotaoEditar(): import("react/jsx-runtime").JSX.Element;
1
+ export default function BotaoEditar({ title }: {
2
+ title?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,3 @@
1
- export default function BotaoExcluir(): import("react/jsx-runtime").JSX.Element;
1
+ export default function BotaoExcluir({ title }: {
2
+ title?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -4735,8 +4735,8 @@ styled.div`
4735
4735
  border-radius: 4px;
4736
4736
  cursor: ${(props) => props.onClick ? "pointer" : "default"};
4737
4737
  `;
4738
- function BotaoClonar() {
4739
- return /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { size: "sm", color: "warning", title: "Clonar o registro", children: /* @__PURE__ */ jsxRuntimeExports.jsx(IconClonar, {}) });
4738
+ function BotaoClonar({ title = "Clonar o registro" }) {
4739
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { size: "sm", color: "warning", title, children: /* @__PURE__ */ jsxRuntimeExports.jsx(IconClonar, {}) });
4740
4740
  }
4741
4741
  const IconeLogin = () => /* @__PURE__ */ jsxRuntimeExports.jsx("i", { className: "fas fa-sign-in-alt" });
4742
4742
  const IconeLogout = ({ ...rest }) => /* @__PURE__ */ jsxRuntimeExports.jsx("i", { className: "fas fa-sign-out-alt", ...rest });
@@ -4793,11 +4793,11 @@ const IconeSoma = () => /* @__PURE__ */ jsxRuntimeExports.jsx(
4793
4793
  );
4794
4794
  const IconeOpenLink = ({ ...rest }) => /* @__PURE__ */ jsxRuntimeExports.jsx("i", { className: "fa-solid fa-arrow-up-right-from-square", ...rest });
4795
4795
  const IconeQRCode = ({ ...rest }) => /* @__PURE__ */ jsxRuntimeExports.jsx("i", { className: "fa-solid fa-qrcode", ...rest });
4796
- function BotaoExcluir() {
4797
- return /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { size: "sm", color: "danger", title: "Excluir o registro", children: /* @__PURE__ */ jsxRuntimeExports.jsx(IconeExcluir, {}) });
4796
+ function BotaoExcluir({ title = "Excluir o registro" }) {
4797
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { size: "sm", color: "danger", title, children: /* @__PURE__ */ jsxRuntimeExports.jsx(IconeExcluir, {}) });
4798
4798
  }
4799
- function BotaoEditar() {
4800
- return /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { size: "sm", color: "primary", title: "Alterar o registro", children: /* @__PURE__ */ jsxRuntimeExports.jsx(IconeEditar, {}) });
4799
+ function BotaoEditar({ title = "Alterar o registro" }) {
4800
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { size: "sm", color: "primary", title, children: /* @__PURE__ */ jsxRuntimeExports.jsx(IconeEditar, {}) });
4801
4801
  }
4802
4802
  function BotaoIncluir({ caption = "Incluir", onClick, ...rest }) {
4803
4803
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(