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.
- package/dist/botaoClonar/botaoClonar.d.ts +3 -1
- package/dist/botaoEditar/botaoEditar.d.ts +3 -1
- package/dist/botaoExcluir/botaoExcluir.d.ts +3 -1
- package/dist/jclib-ui.es.js +6 -6
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +1 -1
- package/dist/jclib-ui.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/jclib-ui.es.js
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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(
|