@codeplex-sac/layout 0.0.6 → 0.0.7
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/index.js +1 -1
- package/lib/barra-lateral/barra-lateral.d.ts +1 -1
- package/package.json +3 -2
package/index.js
CHANGED
|
@@ -15700,6 +15700,7 @@ const Tg = lr(/* @__PURE__ */ w("path", {
|
|
|
15700
15700
|
] }) : r ? /* @__PURE__ */ w(bn, { src: r, variant: "rounded", sx: { width: 32, height: 32, mx: "auto" } }) : null,
|
|
15701
15701
|
!y && /* @__PURE__ */ w(gn, { onClick: S, size: "small", children: h ? /* @__PURE__ */ w(La, {}) : /* @__PURE__ */ w(Cg, {}) })
|
|
15702
15702
|
] }),
|
|
15703
|
+
d && /* @__PURE__ */ w(De, { sx: { px: 2, pb: 2 }, children: d }),
|
|
15703
15704
|
/* @__PURE__ */ w(Pg, { children: /* @__PURE__ */ w(so, { component: "nav", sx: { px: 0, py: 0 }, children: e.map((P) => P.tipo === "divisor" ? null : P.tipo === "seccion" ? h && !y ? /* @__PURE__ */ w(Fr, { sx: { my: 1, opacity: 0.4 } }, P.id) : /* @__PURE__ */ w(
|
|
15704
15705
|
st,
|
|
15705
15706
|
{
|
|
@@ -15733,7 +15734,6 @@ const Tg = lr(/* @__PURE__ */ w("path", {
|
|
|
15733
15734
|
},
|
|
15734
15735
|
P.id
|
|
15735
15736
|
)) }) }),
|
|
15736
|
-
d && /* @__PURE__ */ w(De, { children: d }),
|
|
15737
15737
|
u && t && /* @__PURE__ */ Y($g, { children: [
|
|
15738
15738
|
/* @__PURE__ */ w(
|
|
15739
15739
|
bn,
|
|
@@ -2,7 +2,7 @@ import { default as React } from 'react';
|
|
|
2
2
|
import { CodeplexInfoUsuario } from '../cabecera/cabecera';
|
|
3
3
|
export interface CodeplexElementoMenuLateral {
|
|
4
4
|
id: string;
|
|
5
|
-
etiqueta:
|
|
5
|
+
etiqueta: React.ReactNode;
|
|
6
6
|
icono?: React.ReactNode;
|
|
7
7
|
href?: string;
|
|
8
8
|
activo?: boolean;
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeplex-sac/layout",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
|
+
"module": "./index.js",
|
|
6
7
|
"types": "./index.d.ts",
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
9
10
|
"types": "./index.d.ts",
|
|
10
|
-
"import": "./index.
|
|
11
|
+
"import": "./index.js",
|
|
11
12
|
"require": "./index.js"
|
|
12
13
|
}
|
|
13
14
|
},
|