react-ecosistema-unp 0.7.3 → 0.8.15-react-19

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.
Files changed (114) hide show
  1. package/dist/Anchor-D8f6vg0T.js +40 -0
  2. package/dist/Bootstrap-Bjgu14O1.js +1136 -0
  3. package/dist/Button-DD8y8HBa.js +78 -0
  4. package/dist/Button-t4PJaubx.js +33 -0
  5. package/dist/{NotificacionUsuario-uif1f5Yt.js → NotificacionUsuario-BQ655oML.js} +371 -401
  6. package/dist/TabContext-CdjYJzMB.js +125 -0
  7. package/dist/accessibility/barra-accesibilidad/BarraAccesibilidad.js +52 -0
  8. package/dist/accessibility.js +1 -1
  9. package/dist/assets/BarraAccesibilidad.css +1 -1
  10. package/dist/assets/Bootstrap.css +1 -1
  11. package/dist/assets/Breadcrumb.css +1 -0
  12. package/dist/assets/ContenedorTarjeta.css +1 -0
  13. package/dist/assets/ContenidoModal.css +1 -1
  14. package/dist/assets/Encabezado.css +1 -1
  15. package/dist/assets/IconoTabla.css +1 -0
  16. package/dist/assets/Logo.css +1 -0
  17. package/dist/assets/MenuLateral.css +1 -1
  18. package/dist/assets/Modal.css +1 -1
  19. package/dist/assets/NotificacionUsuario.css +1 -1
  20. package/dist/assets/SeccionTarjeta.css +1 -0
  21. package/dist/assets/SeccionTarjetaLectura.css +1 -0
  22. package/dist/assets/TabVentana.css +1 -1
  23. package/dist/assets/Tabla.css +1 -1
  24. package/dist/assets/Tarjeta.css +1 -1
  25. package/dist/assets/TarjetaInfo.css +1 -0
  26. package/dist/assets/TarjetaLectura.css +1 -0
  27. package/dist/assets/TarjetaListado.css +1 -0
  28. package/dist/auth/hooks/useFinalizarSesion.js +7 -7
  29. package/dist/index-PYPwtOs4.js +55 -0
  30. package/dist/lib/accessibility/barra-accesibilidad/BarraAccesibilidad.d.ts +2 -0
  31. package/dist/lib/accessibility.d.ts +1 -1
  32. package/dist/lib/shared/breadcrumb/Breadcrumb.d.ts +11 -0
  33. package/dist/lib/shared.d.ts +3 -4
  34. package/dist/lib/tables/{components → tabla-registros/buscador}/Buscador.d.ts +1 -1
  35. package/dist/lib/tables/tabla-registros/contenido-modal/ContenidoModal.d.ts +18 -0
  36. package/dist/lib/tables/{components → tabla-registros/encabezado}/EncabezadoTabla.d.ts +1 -1
  37. package/dist/lib/tables/tabla-registros/icono-tabla/IconoTabla.d.ts +14 -0
  38. package/dist/lib/tables.d.ts +2 -1
  39. package/dist/lib/ui/logo/Logo.d.ts +14 -0
  40. package/dist/lib/ui/{components → paginador}/Paginador.d.ts +3 -1
  41. package/dist/lib/ui/{components → tarjeta/contenedor-tarjeta}/ContenedorTarjeta.d.ts +0 -1
  42. package/dist/lib/ui/tarjeta/seccion-tarjeta/SeccionTarjeta.d.ts +8 -0
  43. package/dist/lib/ui/{components → tarjeta/tarjeta-agregar}/TarjetaAgregar.d.ts +2 -1
  44. package/dist/lib/ui/tarjeta-info/TarjetaInfo.d.ts +9 -0
  45. package/dist/lib/ui/tarjeta-lectura/TarjetaLectura.d.ts +22 -0
  46. package/dist/lib/ui/tarjeta-lectura/seccion-tarjeta-lectura/SeccionTarjetaLectura.d.ts +7 -0
  47. package/dist/lib/ui/tarjeta-listado/TarjetaListado.d.ts +14 -0
  48. package/dist/lib/ui.d.ts +13 -8
  49. package/dist/logo_escudo_blanco-DaOI8SGq.js +4 -0
  50. package/dist/shared/breadcrumb/Breadcrumb.js +69 -0
  51. package/dist/shared/{components → menu-lateral}/MenuLateral.js +37 -36
  52. package/dist/shared/notificacion-usuario/NotificacionUsuario.js +5 -0
  53. package/dist/shared/ventana-lienzo/VentanaLienzo.js +22 -0
  54. package/dist/shared/{components → ventana-tabs}/TabVentana.js +1 -1
  55. package/dist/shared/{components → ventana-tabs}/VentanaTabs.js +22 -22
  56. package/dist/shared.js +4 -6
  57. package/dist/tables/{components → tabla-registros}/TablaRegistros.js +3 -3
  58. package/dist/tables/{components → tabla-registros/buscador}/Buscador.js +6 -6
  59. package/dist/tables/tabla-registros/contenido-modal/ContenidoModal.js +57 -0
  60. package/dist/{ui/components/ContenidoModal.js → tables/tabla-registros/contenido-modal/ContenidoModalv0.1.js} +2 -2
  61. package/dist/tables/tabla-registros/encabezado/EncabezadoTabla.js +30 -0
  62. package/dist/tables/tabla-registros/icono-tabla/IconoTabla.js +68 -0
  63. package/dist/tables/{components → tabla-registros/modal}/Modal.js +1 -1
  64. package/dist/tables/{components → tabla-registros/tabla}/Tabla.js +19 -19
  65. package/dist/tables.js +3 -1
  66. package/dist/ui/encabezado/Encabezado.js +15 -0
  67. package/dist/ui/logo/Logo.js +12 -0
  68. package/dist/ui/paginador/Paginador.js +66 -0
  69. package/dist/ui/{components → subtitulo}/Subtitulo.js +2 -2
  70. package/dist/ui/{components → tarjeta}/Tarjeta.js +21 -21
  71. package/dist/ui/tarjeta/contenedor-tarjeta/ContenedorTarjeta.js +15 -0
  72. package/dist/ui/tarjeta/seccion-tarjeta/SeccionTarjeta.js +7 -0
  73. package/dist/ui/{components → tarjeta/tarjeta-agregar}/TarjetaAgregar.js +8 -9
  74. package/dist/ui/tarjeta-info/TarjetaInfo.js +42 -0
  75. package/dist/ui/tarjeta-lectura/TarjetaLectura.js +66 -0
  76. package/dist/ui/tarjeta-lectura/seccion-tarjeta-lectura/SeccionTarjetaLectura.js +9 -0
  77. package/dist/ui/tarjeta-listado/TarjetaListado.js +40 -0
  78. package/dist/ui.js +23 -13
  79. package/dist/useEventCallback-Bfo0-hwZ.js +16 -0
  80. package/dist/utils/components/ProtectedRoute.js +6 -6
  81. package/dist/utils/components/UserRoute.js +4 -4
  82. package/package.json +13 -15
  83. package/dist/Bootstrap-alDYHlwa.js +0 -19871
  84. package/dist/Button-Gn1tKaoW.js +0 -106
  85. package/dist/TabContext-BvNFEruk.js +0 -138
  86. package/dist/accessibility/components/BarraAccesibilidad.js +0 -52
  87. package/dist/assets/IconoTipoSolicitud.css +0 -1
  88. package/dist/index-DHX2gxCC.js +0 -27
  89. package/dist/lib/accessibility/components/BarraAccesibilidad.d.ts +0 -2
  90. package/dist/lib/shared/components/LoadingPage.d.ts +0 -3
  91. package/dist/lib/ui/components/IconoTipoSolicitud.d.ts +0 -7
  92. package/dist/shared/components/LoadingPage.js +0 -16
  93. package/dist/shared/components/NotificacionUsuario.js +0 -5
  94. package/dist/shared/components/VentanaLienzo.js +0 -16
  95. package/dist/tables/components/EncabezadoTabla.js +0 -24
  96. package/dist/ui/components/ContenedorTarjeta.js +0 -7
  97. package/dist/ui/components/Encabezado.js +0 -14
  98. package/dist/ui/components/IconoTipoSolicitud.js +0 -59
  99. package/dist/ui/components/Paginador.js +0 -56
  100. /package/dist/lib/{tables/assets → assets}/animations/isLoading.json.d.ts +0 -0
  101. /package/dist/lib/{tables/assets → assets}/animations/noData.json.d.ts +0 -0
  102. /package/dist/lib/{tables/assets → assets}/animations/noInfo.json.d.ts +0 -0
  103. /package/dist/lib/shared/{components → menu-lateral}/MenuLateral.d.ts +0 -0
  104. /package/dist/lib/shared/{components → notificacion-usuario}/NotificacionUsuario.d.ts +0 -0
  105. /package/dist/lib/shared/{components → ventana-lienzo}/VentanaLienzo.d.ts +0 -0
  106. /package/dist/lib/shared/{components → ventana-tabs}/TabVentana.d.ts +0 -0
  107. /package/dist/lib/shared/{components → ventana-tabs}/VentanaTabs.d.ts +0 -0
  108. /package/dist/lib/tables/{components → tabla-registros}/TablaRegistros.d.ts +0 -0
  109. /package/dist/lib/{ui/components/ContenidoModal.d.ts → tables/tabla-registros/contenido-modal/ContenidoModalv0.1.d.ts} +0 -0
  110. /package/dist/lib/tables/{components → tabla-registros/modal}/Modal.d.ts +0 -0
  111. /package/dist/lib/tables/{components → tabla-registros/tabla}/Tabla.d.ts +0 -0
  112. /package/dist/lib/ui/{components → encabezado}/Encabezado.d.ts +0 -0
  113. /package/dist/lib/ui/{components → subtitulo}/Subtitulo.d.ts +0 -0
  114. /package/dist/lib/ui/{components → tarjeta}/Tarjeta.d.ts +0 -0
@@ -0,0 +1,69 @@
1
+ import { jsx as e, jsxs as v } from "react/jsx-runtime";
2
+ import { u as b, c as u } from "../../ThemeProvider-DwZMEupk.js";
3
+ import * as o from "react";
4
+ import { A as I } from "../../Anchor-D8f6vg0T.js";
5
+ import '../../assets/Breadcrumb.css';const f = /* @__PURE__ */ o.forwardRef(({
6
+ bsPrefix: c,
7
+ active: a = !1,
8
+ children: r,
9
+ className: s,
10
+ // Need to define the default "as" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595
11
+ as: m = "li",
12
+ linkAs: d = I,
13
+ linkProps: l = {},
14
+ href: n,
15
+ title: i,
16
+ target: N,
17
+ ...h
18
+ }, B) => {
19
+ const x = b(c, "breadcrumb-item");
20
+ return /* @__PURE__ */ e(m, {
21
+ ref: B,
22
+ ...h,
23
+ className: u(x, s, {
24
+ active: a
25
+ }),
26
+ "aria-current": a ? "page" : void 0,
27
+ children: a ? r : /* @__PURE__ */ e(d, {
28
+ ...l,
29
+ href: n,
30
+ title: i,
31
+ target: N,
32
+ children: r
33
+ })
34
+ });
35
+ });
36
+ f.displayName = "BreadcrumbItem";
37
+ const p = /* @__PURE__ */ o.forwardRef(({
38
+ bsPrefix: c,
39
+ className: a,
40
+ listProps: r = {},
41
+ children: s,
42
+ label: m = "breadcrumb",
43
+ // Need to define the default "as" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595
44
+ as: d = "nav",
45
+ ...l
46
+ }, n) => {
47
+ const i = b(c, "breadcrumb");
48
+ return /* @__PURE__ */ e(d, {
49
+ "aria-label": m,
50
+ className: a,
51
+ ref: n,
52
+ ...l,
53
+ children: /* @__PURE__ */ e("ol", {
54
+ ...r,
55
+ className: u(i, r == null ? void 0 : r.className),
56
+ children: s
57
+ })
58
+ });
59
+ });
60
+ p.displayName = "Breadcrumb";
61
+ const t = Object.assign(p, {
62
+ Item: f
63
+ }), w = ({ items: c, rightComponent: a }) => /* @__PURE__ */ e("div", { className: "breadcrumb-container", children: /* @__PURE__ */ v("div", { className: "breadcrumb-wrapper", children: [
64
+ /* @__PURE__ */ e(t, { className: "mb-0", children: c.map((r, s) => /* @__PURE__ */ e(t.Item, { href: r.link, active: !r.link, children: r.label }, s)) }),
65
+ /* @__PURE__ */ e("div", { className: "mb-0", children: a })
66
+ ] }) });
67
+ export {
68
+ w as default
69
+ };
@@ -1,54 +1,55 @@
1
1
  import { jsx as a, Fragment as x, jsxs as t } from "react/jsx-runtime";
2
2
  import { useState as o, useEffect as h } from "react";
3
- import { a as z } from "../../chunk-IR6S3I6Y-Dvzk3EbC.js";
4
3
  import { j as d } from "../../index-CuHybtft.js";
5
- import { useFinalizarSesion as b } from "../../auth/hooks/useFinalizarSesion.js";
6
- import { urlBase as M, urlCertificadoLaboral as k } from "../../utils/Url.js";
4
+ import { useFinalizarSesion as z } from "../../auth/hooks/useFinalizarSesion.js";
5
+ import { urlBase as b, urlCertificadoLaboral as M } from "../../utils/Url.js";
6
+ import { l as k } from "../../logo_escudo_blanco-DaOI8SGq.js";
7
7
  import { G as i } from "../../iconBase-LROS5hdG.js";
8
- import '../../assets/MenuLateral.css';function B(e) {
8
+ import { a as B } from "../../chunk-IR6S3I6Y-Dvzk3EbC.js";
9
+ import '../../assets/MenuLateral.css';function H(e) {
9
10
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M2 12h2a7.986 7.986 0 0 1 2.337-5.663 7.91 7.91 0 0 1 2.542-1.71 8.12 8.12 0 0 1 6.13-.041A2.488 2.488 0 0 0 17.5 7C18.886 7 20 5.886 20 4.5S18.886 2 17.5 2c-.689 0-1.312.276-1.763.725-2.431-.973-5.223-.958-7.635.059a9.928 9.928 0 0 0-3.18 2.139 9.92 9.92 0 0 0-2.14 3.179A10.005 10.005 0 0 0 2 12zm17.373 3.122c-.401.952-.977 1.808-1.71 2.541s-1.589 1.309-2.542 1.71a8.12 8.12 0 0 1-6.13.041A2.488 2.488 0 0 0 6.5 17C5.114 17 4 18.114 4 19.5S5.114 22 6.5 22c.689 0 1.312-.276 1.763-.725A9.965 9.965 0 0 0 12 22a9.983 9.983 0 0 0 9.217-6.102A9.992 9.992 0 0 0 22 12h-2a7.993 7.993 0 0 1-.627 3.122z" }, child: [] }, { tag: "path", attr: { d: "M12 7.462c-2.502 0-4.538 2.036-4.538 4.538S9.498 16.538 12 16.538s4.538-2.036 4.538-4.538S14.502 7.462 12 7.462zm0 7.076c-1.399 0-2.538-1.139-2.538-2.538S10.601 9.462 12 9.462s2.538 1.139 2.538 2.538-1.139 2.538-2.538 2.538z" }, child: [] }] })(e);
10
11
  }
11
- function H(e) {
12
+ function C(e) {
12
13
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M19 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2zm0 14H5V5c0-.806.55-.988 1-1h13v12z" }, child: [] }] })(e);
13
14
  }
14
- function C(e) {
15
+ function _(e) {
15
16
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm0 2v.511l-8 6.223-8-6.222V6h16zM4 18V9.044l7.386 5.745a.994.994 0 0 0 1.228 0L20 9.044 20.002 18H4z" }, child: [] }] })(e);
16
17
  }
17
- function _(e) {
18
+ function w(e) {
18
19
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M11.953 2C6.465 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.493 2 11.953 2zM12 20c-4.411 0-8-3.589-8-8s3.567-8 7.953-8C16.391 4 20 7.589 20 12s-3.589 8-8 8z" }, child: [] }, { tag: "path", attr: { d: "M11 7h2v7h-2zm0 8h2v2h-2z" }, child: [] }] })(e);
19
20
  }
20
- function w(e) {
21
+ function A(e) {
21
22
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M19.903 8.586a.997.997 0 0 0-.196-.293l-6-6a.997.997 0 0 0-.293-.196c-.03-.014-.062-.022-.094-.033a.991.991 0 0 0-.259-.051C13.04 2.011 13.021 2 13 2H6c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V9c0-.021-.011-.04-.013-.062a.952.952 0 0 0-.051-.259c-.01-.032-.019-.063-.033-.093zM16.586 8H14V5.414L16.586 8zM6 20V4h6v5a1 1 0 0 0 1 1h5l.002 10H6z" }, child: [] }, { tag: "path", attr: { d: "M8 12h8v2H8zm0 4h8v2H8zm0-8h2v2H8z" }, child: [] }] })(e);
22
23
  }
23
- function A(e) {
24
+ function S(e) {
24
25
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M3 13h1v7c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7h1a1 1 0 0 0 .707-1.707l-9-9a.999.999 0 0 0-1.414 0l-9 9A1 1 0 0 0 3 13zm7 7v-5h4v5h-4zm2-15.586 6 6V15l.001 5H16v-5c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v5H6v-9.586l6-6z" }, child: [] }] })(e);
25
26
  }
26
- function S(e) {
27
+ function V(e) {
27
28
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M4.222 19.778a4.983 4.983 0 0 0 3.535 1.462 4.986 4.986 0 0 0 3.536-1.462l2.828-2.829-1.414-1.414-2.828 2.829a3.007 3.007 0 0 1-4.243 0 3.005 3.005 0 0 1 0-4.243l2.829-2.828-1.414-1.414-2.829 2.828a5.006 5.006 0 0 0 0 7.071zm15.556-8.485a5.008 5.008 0 0 0 0-7.071 5.006 5.006 0 0 0-7.071 0L9.879 7.051l1.414 1.414 2.828-2.829a3.007 3.007 0 0 1 4.243 0 3.005 3.005 0 0 1 0 4.243l-2.829 2.828 1.414 1.414 2.829-2.828z" }, child: [] }, { tag: "path", attr: { d: "m8.464 16.95-1.415-1.414 8.487-8.486 1.414 1.415z" }, child: [] }] })(e);
28
29
  }
29
- function V(e) {
30
+ function L(e) {
30
31
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M16 13v-2H7V8l-5 4 5 4v-3z" }, child: [] }, { tag: "path", attr: { d: "M20 3h-9c-1.103 0-2 .897-2 2v4h2V5h9v14h-9v-4H9v4c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2z" }, child: [] }] })(e);
31
32
  }
32
- function L(e) {
33
+ function P(e) {
33
34
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "m12 17 1-2V9.858c1.721-.447 3-2 3-3.858 0-2.206-1.794-4-4-4S8 3.794 8 6c0 1.858 1.279 3.411 3 3.858V15l1 2zM10 6c0-1.103.897-2 2-2s2 .897 2 2-.897 2-2 2-2-.897-2-2z" }, child: [] }, { tag: "path", attr: { d: "m16.267 10.563-.533 1.928C18.325 13.207 20 14.584 20 16c0 1.892-3.285 4-8 4s-8-2.108-8-4c0-1.416 1.675-2.793 4.267-3.51l-.533-1.928C4.197 11.54 2 13.623 2 16c0 3.364 4.393 6 10 6s10-2.636 10-6c0-2.377-2.197-4.46-5.733-5.437z" }, child: [] }] })(e);
34
35
  }
35
- function P(e) {
36
+ function T(e) {
36
37
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M4 6h16v2H4zm4 5h12v2H8zm5 5h7v2h-7z" }, child: [] }] })(e);
37
38
  }
38
- function T(e) {
39
+ function I(e) {
39
40
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z" }, child: [] }] })(e);
40
41
  }
41
- function I(e) {
42
+ function y(e) {
42
43
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M11.63 21.91A.9.9 0 0 0 12 22a1 1 0 0 0 .41-.09C22 17.67 21 7 21 6.9a1 1 0 0 0-.55-.79l-8-4a1 1 0 0 0-.9 0l-8 4A1 1 0 0 0 3 6.9c0 .1-.92 10.77 8.63 15.01zM5 7.63l7-3.51 7 3.51c.05 2-.27 9-7 12.27C5.26 16.63 4.94 9.64 5 7.63z" }, child: [] }, { tag: "path", attr: { d: "M11.06 16h2v-3h3.01v-2h-3.01V8h-2v3h-3v2h3v3z" }, child: [] }] })(e);
43
44
  }
44
- function y(e) {
45
+ function j(e) {
45
46
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M3.414 13.778 2 15.192l4.949 2.121 2.122 4.95 1.414-1.414-.707-3.536L13.091 14l3.61 7.704 1.339-1.339-1.19-10.123 2.828-2.829a2 2 0 1 0-2.828-2.828l-2.903 2.903L3.824 6.297 2.559 7.563l7.644 3.67-3.253 3.253-3.536-.708z" }, child: [] }] })(e);
46
47
  }
47
- function j(e) {
48
+ function E(e) {
48
49
  return i({ tag: "svg", attr: { viewBox: "0 0 24 24" }, child: [{ tag: "path", attr: { d: "M15.661 15.549a1.315 1.315 0 0 0 1.185-1.386 1.363 1.363 0 0 0-1.35-1.302h-.048a1.352 1.352 0 0 0-1.303 1.397c.024.379.179.687.391.911-.827 1.609-2.07 2.794-3.954 3.788-1.266.663-2.604.912-3.905.734-1.089-.153-1.94-.64-2.463-1.421-.78-1.185-.852-2.462-.201-3.74a5.597 5.597 0 0 1 1.658-1.931 7.88 7.88 0 0 1-.331-1.218c-3.506 2.51-3.148 5.942-2.084 7.564.794 1.184 2.415 1.941 4.19 1.941.474 0 .972-.035 1.457-.154 3.077-.592 5.409-2.438 6.747-5.16l.011-.023z" }, child: [] }, { tag: "path", attr: { d: "M19.887 12.589c-1.834-2.154-4.533-3.337-7.611-3.337h-.403c-.2-.438-.661-.711-1.183-.711h-.036c-.744 0-1.325.64-1.301 1.385.023.71.627 1.302 1.35 1.302h.059a1.332 1.332 0 0 0 1.183-.828h.439c1.824 0 3.551.532 5.126 1.574 1.206.792 2.072 1.834 2.557 3.077.425 1.019.402 2.013-.035 2.843-.675 1.302-1.812 1.988-3.314 1.988-.947 0-1.871-.296-2.345-.509-.283.235-.758.626-1.102.863 1.042.473 2.096.746 3.113.746 2.309 0 4.023-1.302 4.676-2.557.709-1.422.651-3.813-1.161-5.859l-.012.023z" }, child: [] }, { tag: "path", attr: { d: "M7.647 15.975c.023.71.626 1.302 1.35 1.302h.048a1.334 1.334 0 0 0 1.302-1.397c0-.71-.616-1.301-1.338-1.301h-.048c-.048 0-.118 0-.178.022-.982-1.657-1.397-3.434-1.242-5.349.094-1.445.567-2.7 1.42-3.742.71-.888 2.048-1.326 2.96-1.35 2.556-.048 3.622 3.138 3.704 4.404l1.184.354C16.536 5.036 14.122 3 11.813 3 9.647 3 7.647 4.574 6.842 6.884c-1.102 3.077-.379 6.036.971 8.404-.118.154-.189.426-.166.687z" }, child: [] }] })(e);
49
50
  }
50
- const O = ({ onToggle: e, isOpen: n }) => {
51
- const [m, p] = o(!0), [r, s] = o(null), v = n ? "sidebar-bar-panel open" : "sidebar-bar-panel", g = z(), { FinSesion: u } = b();
51
+ const J = ({ onToggle: e, isOpen: n }) => {
52
+ const [m, p] = o(!0), [r, s] = o(null), v = n ? "sidebar-bar-panel open" : "sidebar-bar-panel", g = B(), { FinSesion: u } = z();
52
53
  if (h(() => {
53
54
  const l = localStorage.getItem("user_token");
54
55
  if (l) {
@@ -75,39 +76,39 @@ const O = ({ onToggle: e, isOpen: n }) => {
75
76
  /* @__PURE__ */ a(
76
77
  "img",
77
78
  {
78
- src: "https://i.imgur.com/g7HnbOv.png",
79
+ src: k,
79
80
  alt: "Logo",
80
81
  className: "icon logo-image"
81
82
  }
82
83
  ),
83
84
  /* @__PURE__ */ a("div", { className: "logo-name", children: "EI - UNP" }),
84
85
  n ? /* @__PURE__ */ a(
85
- P,
86
+ T,
86
87
  {
87
88
  className: "bx bx-menu i",
88
89
  id: "btn",
89
90
  onClick: e
90
91
  }
91
- ) : /* @__PURE__ */ a(T, { className: "bx bx-menu i", id: "btn", onClick: e })
92
+ ) : /* @__PURE__ */ a(I, { className: "bx bx-menu i", id: "btn", onClick: e })
92
93
  ] }),
93
94
  /* @__PURE__ */ t("ul", { className: "nav-list-panel", children: [
94
95
  /* @__PURE__ */ t("li", { children: [
95
96
  /* @__PURE__ */ t("a", { href: "", children: [
96
- /* @__PURE__ */ a(A, { className: "bx bx-home i2" }),
97
+ /* @__PURE__ */ a(S, { className: "bx bx-home i2" }),
97
98
  /* @__PURE__ */ a("span", { className: "link_name", children: "Inicio" })
98
99
  ] }),
99
100
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Inicio" })
100
101
  ] }),
101
102
  /* @__PURE__ */ t("li", { children: [
102
103
  /* @__PURE__ */ t("a", { href: "", children: [
103
- /* @__PURE__ */ a(L, { className: "bx bx-map-pin i2" }),
104
+ /* @__PURE__ */ a(P, { className: "bx bx-map-pin i2" }),
104
105
  /* @__PURE__ */ a("span", { className: "link_name", children: "Mapa del proceso" })
105
106
  ] }),
106
107
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Mapa del proceso" })
107
108
  ] }),
108
109
  /* @__PURE__ */ t("li", { children: [
109
110
  /* @__PURE__ */ t("a", { href: "", children: [
110
- /* @__PURE__ */ a(H, { className: "bx bx-book-alt i2" }),
111
+ /* @__PURE__ */ a(C, { className: "bx bx-book-alt i2" }),
111
112
  /* @__PURE__ */ a("span", { className: "link_name", children: "Manuales de usuario" })
112
113
  ] }),
113
114
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Manual de usuario" })
@@ -115,7 +116,7 @@ const O = ({ onToggle: e, isOpen: n }) => {
115
116
  /* @__PURE__ */ a("div", { style: { paddingLeft: "15px", paddingRight: "15px" }, children: /* @__PURE__ */ a("hr", { style: { borderTop: "1px solid white" } }) }),
116
117
  /* @__PURE__ */ t("li", { children: [
117
118
  /* @__PURE__ */ t("a", { href: "https://www.unp.gov.co/", target: "_blank", children: [
118
- /* @__PURE__ */ a(S, { className: "bx bx-link-alt i2" }),
119
+ /* @__PURE__ */ a(V, { className: "bx bx-link-alt i2" }),
119
120
  /* @__PURE__ */ a("span", { className: "link_name", children: "Portal UNP" })
120
121
  ] }),
121
122
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Portal UNP" })
@@ -127,7 +128,7 @@ const O = ({ onToggle: e, isOpen: n }) => {
127
128
  href: "https://login.microsoftonline.com/common/oauth2/authorize?client_id=00000002-0000-0ff1-ce00-000000000000",
128
129
  target: "_blank",
129
130
  children: [
130
- /* @__PURE__ */ a(C, { className: "bx bx-envelope i2" }),
131
+ /* @__PURE__ */ a(_, { className: "bx bx-envelope i2" }),
131
132
  /* @__PURE__ */ a("span", { className: "link_name", children: "Correo institucional" })
132
133
  ]
133
134
  }
@@ -136,14 +137,14 @@ const O = ({ onToggle: e, isOpen: n }) => {
136
137
  ] }),
137
138
  /* @__PURE__ */ t("li", { children: [
138
139
  /* @__PURE__ */ t("a", { href: "http://intranet.unp.gov.co/", target: "_blank", children: [
139
- /* @__PURE__ */ a(j, { className: "bx bxl-redux i2" }),
140
+ /* @__PURE__ */ a(E, { className: "bx bxl-redux i2" }),
140
141
  /* @__PURE__ */ a("span", { className: "link_name", children: "Acceso directo a Intranet" })
141
142
  ] }),
142
143
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Acceso directo a Intranet" })
143
144
  ] }),
144
145
  /* @__PURE__ */ t("li", { children: [
145
146
  /* @__PURE__ */ t("a", { href: "https://mesadeservicios.unp.gov.co/HEAT/", target: "_blank", children: [
146
- /* @__PURE__ */ a(_, { className: "bx bx-error-circle i2" }),
147
+ /* @__PURE__ */ a(w, { className: "bx bx-error-circle i2" }),
147
148
  /* @__PURE__ */ a("span", { className: "link_name", children: "Mesa de servicios" })
148
149
  ] }),
149
150
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Mesa de servicios" })
@@ -151,28 +152,28 @@ const O = ({ onToggle: e, isOpen: n }) => {
151
152
  /* @__PURE__ */ a("div", { style: { paddingLeft: "15px", paddingRight: "15px" }, children: /* @__PURE__ */ a("hr", { style: { borderTop: "1px solid white" } }) }),
152
153
  /* @__PURE__ */ t("li", { children: [
153
154
  /* @__PURE__ */ t("a", { href: "", children: [
154
- /* @__PURE__ */ a(I, { className: "bx i2" }),
155
+ /* @__PURE__ */ a(y, { className: "bx i2" }),
155
156
  /* @__PURE__ */ a("span", { className: "link_name", children: "Medida de emergencia" })
156
157
  ] }),
157
158
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Medida de emergencia" })
158
159
  ] }),
159
160
  /* @__PURE__ */ t("li", { children: [
160
161
  /* @__PURE__ */ t("a", { href: "", children: [
161
- /* @__PURE__ */ a(B, { className: "bx i2" }),
162
+ /* @__PURE__ */ a(H, { className: "bx i2" }),
162
163
  /* @__PURE__ */ a("span", { className: "link_name", children: "Acta de reunión" })
163
164
  ] }),
164
165
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Acta de reunión" })
165
166
  ] }),
166
167
  /* @__PURE__ */ t("li", { children: [
167
168
  /* @__PURE__ */ t("a", { href: "", children: [
168
- /* @__PURE__ */ a(y, { className: "bx i2" }),
169
+ /* @__PURE__ */ a(j, { className: "bx i2" }),
169
170
  /* @__PURE__ */ a("span", { className: "link_name", children: "Solicitud de viáticos" })
170
171
  ] }),
171
172
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Solicitud de viáticos" })
172
173
  ] }),
173
174
  /* @__PURE__ */ t("li", { children: [
174
- /* @__PURE__ */ t("a", { href: `${M}${k}`, target: "_blank", children: [
175
- /* @__PURE__ */ a(w, { className: "bx i2" }),
175
+ /* @__PURE__ */ t("a", { href: `${b}${M}`, target: "_blank", children: [
176
+ /* @__PURE__ */ a(A, { className: "bx i2" }),
176
177
  /* @__PURE__ */ a("span", { className: "link_name", children: "Certificados laborales (OPS)" })
177
178
  ] }),
178
179
  /* @__PURE__ */ a("span", { className: "tooltip", children: "Certificados laborales (OPS)" })
@@ -191,10 +192,10 @@ const O = ({ onToggle: e, isOpen: n }) => {
191
192
  ] })
192
193
  }
193
194
  ),
194
- /* @__PURE__ */ a(V, { className: "icon", onClick: u })
195
+ /* @__PURE__ */ a(L, { className: "icon", onClick: u })
195
196
  ] }) })
196
197
  ] }) });
197
198
  };
198
199
  export {
199
- O as MenuLateral
200
+ J as MenuLateral
200
201
  };
@@ -0,0 +1,5 @@
1
+ import "react/jsx-runtime";
2
+ import { g as a } from "../../NotificacionUsuario-BQ655oML.js";
3
+ export {
4
+ a as default
5
+ };
@@ -0,0 +1,22 @@
1
+ import { jsxs as o, jsx as e } from "react/jsx-runtime";
2
+ import t from "react";
3
+ import s from "../breadcrumb/Breadcrumb.js";
4
+ import { MenuLateral as l } from "../menu-lateral/MenuLateral.js";
5
+ import { B as i } from "../../chunk-IR6S3I6Y-Dvzk3EbC.js";
6
+ const g = ({ children: n }) => {
7
+ const [a, r] = t.useState(!1);
8
+ return /* @__PURE__ */ o(i, { children: [
9
+ /* @__PURE__ */ e(s, { items: [
10
+ { label: "Inicio", link: "/" },
11
+ { label: "Órdenes de Trabajo", link: "/analistaCalidad/OrdenesTrabajo" },
12
+ { label: "Entrevista" }
13
+ ] }),
14
+ /* @__PURE__ */ e(l, { onToggle: () => {
15
+ r(!a);
16
+ }, isOpen: a }),
17
+ /* @__PURE__ */ e("div", { className: `${a ? "menu-open" : ""}`, children: /* @__PURE__ */ e("div", { className: "main-section", style: { padding: "0.5rem" }, children: n }) })
18
+ ] });
19
+ };
20
+ export {
21
+ g as VentanaLienzo
22
+ };
@@ -1,5 +1,5 @@
1
1
  import { jsx as e } from "react/jsx-runtime";
2
- import { T as i, g as b, a as p, b as T } from "../../Bootstrap-alDYHlwa.js";
2
+ import { T as i, g as b, a as p, b as T } from "../../Bootstrap-Bjgu14O1.js";
3
3
  import { P as t } from "../../index-B-HWDQSx.js";
4
4
  import "react";
5
5
  import '../../assets/TabVentana.css';const o = ({
@@ -1,13 +1,13 @@
1
1
  import { jsx as r, jsxs as j } from "react/jsx-runtime";
2
2
  import * as b from "react";
3
3
  import T, { useRef as O, useContext as E, useEffect as M } from "react";
4
- import { B as H } from "../../chunk-IR6S3I6Y-Dvzk3EbC.js";
5
- import { MenuLateral as F } from "./MenuLateral.js";
6
- import { N as W, u as Y, a as z, d as G, b as J, q as Q, c as B, e as D, f as X, g as Z } from "../../NotificacionUsuario-uif1f5Yt.js";
7
- import { u as ee, T as te, g as ne, a as ae, b as re } from "../../Bootstrap-alDYHlwa.js";
4
+ import { MenuLateral as H } from "../menu-lateral/MenuLateral.js";
5
+ import { N as F, u as W, a as Y, d as z, b as G, q as J, c as B, e as D, f as Q, g as X } from "../../NotificacionUsuario-BQ655oML.js";
6
+ import { u as Z, T as ee, g as te, a as ne, b as ae } from "../../Bootstrap-Bjgu14O1.js";
8
7
  import { u as L, c as k } from "../../ThemeProvider-DwZMEupk.js";
9
- import { S as P, T as se, m as oe } from "../../TabContext-BvNFEruk.js";
10
- import { c as le } from "../../CardHeaderContext-DVw0yHuy.js";
8
+ import { S as P, T as re, m as se } from "../../TabContext-CdjYJzMB.js";
9
+ import { c as oe } from "../../CardHeaderContext-DVw0yHuy.js";
10
+ import { B as le } from "../../chunk-IR6S3I6Y-Dvzk3EbC.js";
11
11
  function R(n, e) {
12
12
  let a = 0;
13
13
  return b.Children.map(n, (t) => /* @__PURE__ */ b.isValidElement(t) ? e(t, a++) : t);
@@ -29,7 +29,7 @@ function de(n, e) {
29
29
  return a;
30
30
  }
31
31
  const A = () => {
32
- }, I = G("event-key"), U = /* @__PURE__ */ b.forwardRef((n, e) => {
32
+ }, I = z("event-key"), U = /* @__PURE__ */ b.forwardRef((n, e) => {
33
33
  let {
34
34
  // Need to define the default "as" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595
35
35
  as: a = "div",
@@ -38,13 +38,13 @@ const A = () => {
38
38
  role: c,
39
39
  onKeyDown: o
40
40
  } = n, u = de(n, ce);
41
- const x = Y(), m = O(!1), y = E(P), l = E(se);
41
+ const x = W(), m = O(!1), y = E(P), l = E(re);
42
42
  let v, N;
43
43
  l && (c = c || "tablist", s = l.activeKey, v = l.getControlledId, N = l.getControllerId);
44
44
  const f = O(null), p = (i) => {
45
45
  const d = f.current;
46
46
  if (!d) return null;
47
- const K = Q(d, `[${I}]:not([aria-disabled=true])`), S = d.querySelector("[aria-selected=true]");
47
+ const K = J(d, `[${I}]:not([aria-disabled=true])`), S = d.querySelector("[aria-selected=true]");
48
48
  if (!S || S !== document.activeElement) return null;
49
49
  const w = K.indexOf(S);
50
50
  if (w === -1) return null;
@@ -68,7 +68,7 @@ const A = () => {
68
68
  default:
69
69
  return;
70
70
  }
71
- d && (i.preventDefault(), h(d.dataset[J("EventKey")] || null, i), m.current = !0, x());
71
+ d && (i.preventDefault(), h(d.dataset[G("EventKey")] || null, i), m.current = !0, x());
72
72
  };
73
73
  M(() => {
74
74
  if (f.current && m.current) {
@@ -77,14 +77,14 @@ const A = () => {
77
77
  }
78
78
  m.current = !1;
79
79
  });
80
- const q = ee(e, f);
80
+ const q = Z(e, f);
81
81
  return /* @__PURE__ */ r(P.Provider, {
82
82
  value: h,
83
- children: /* @__PURE__ */ r(z.Provider, {
83
+ children: /* @__PURE__ */ r(Y.Provider, {
84
84
  value: {
85
85
  role: c,
86
86
  // used by NavLink to determine it's role
87
- activeKey: oe(s),
87
+ activeKey: se(s),
88
88
  getControlledId: v || A,
89
89
  getControllerId: N || A
90
90
  },
@@ -98,7 +98,7 @@ const A = () => {
98
98
  });
99
99
  U.displayName = "Nav";
100
100
  const ue = Object.assign(U, {
101
- Item: W
101
+ Item: F
102
102
  }), $ = /* @__PURE__ */ b.forwardRef(({
103
103
  className: n,
104
104
  bsPrefix: e,
@@ -126,7 +126,7 @@ const V = /* @__PURE__ */ b.forwardRef((n, e) => {
126
126
  activeKey: "onSelect"
127
127
  }), v = L(t, "nav");
128
128
  let N, f, p = !1;
129
- const h = E(X), C = E(le);
129
+ const h = E(Q), C = E(oe);
130
130
  return h ? (N = h.bsPrefix, p = u ?? !0) : C && ({
131
131
  cardHeaderBsPrefix: f
132
132
  } = C), /* @__PURE__ */ r(ue, {
@@ -194,11 +194,11 @@ const _ = (n) => {
194
194
  } = D(n, {
195
195
  activeKey: "onSelect"
196
196
  });
197
- return /* @__PURE__ */ j(te, {
197
+ return /* @__PURE__ */ j(ee, {
198
198
  id: e,
199
199
  activeKey: x,
200
200
  onSelect: a,
201
- transition: ne(t),
201
+ transition: te(t),
202
202
  mountOnEnter: s,
203
203
  unmountOnExit: c,
204
204
  children: [/* @__PURE__ */ r(fe, {
@@ -208,12 +208,12 @@ const _ = (n) => {
208
208
  as: "ul",
209
209
  variant: o,
210
210
  children: R(u, ve)
211
- }), /* @__PURE__ */ r(ae, {
211
+ }), /* @__PURE__ */ r(ne, {
212
212
  children: R(u, (y) => {
213
213
  const l = {
214
214
  ...y.props
215
215
  };
216
- return delete l.title, delete l.disabled, delete l.tabClassName, delete l.tabAttrs, /* @__PURE__ */ r(re, {
216
+ return delete l.title, delete l.disabled, delete l.tabClassName, delete l.tabAttrs, /* @__PURE__ */ r(ae, {
217
217
  ...l
218
218
  });
219
219
  })
@@ -223,9 +223,9 @@ const _ = (n) => {
223
223
  _.displayName = "Tabs";
224
224
  const Te = ({ children: n }) => {
225
225
  const [e, a] = T.useState(!1), [t, s] = T.useState(void 0);
226
- return /* @__PURE__ */ j(H, { children: [
227
- /* @__PURE__ */ r(Z, {}),
228
- /* @__PURE__ */ r(F, { onToggle: () => {
226
+ return /* @__PURE__ */ j(le, { children: [
227
+ /* @__PURE__ */ r(X, {}),
228
+ /* @__PURE__ */ r(H, { onToggle: () => {
229
229
  a(!e);
230
230
  }, isOpen: e }),
231
231
  /* @__PURE__ */ r("div", { className: `${e ? "menu-open" : ""}`, children: /* @__PURE__ */ r("div", { className: "main-section", children: /* @__PURE__ */ r(
package/dist/shared.js CHANGED
@@ -1,10 +1,8 @@
1
- import { VentanaLienzo as e } from "./shared/components/VentanaLienzo.js";
2
- import { VentanaTabs as r } from "./shared/components/VentanaTabs.js";
3
- import { TabVentana as f } from "./shared/components/TabVentana.js";
4
- import { LoadingPage as p } from "./shared/components/LoadingPage.js";
1
+ import { VentanaLienzo as n } from "./shared/ventana-lienzo/VentanaLienzo.js";
2
+ import { VentanaTabs as r } from "./shared/ventana-tabs/VentanaTabs.js";
3
+ import { TabVentana as f } from "./shared/ventana-tabs/TabVentana.js";
5
4
  export {
6
- p as LoadingPage,
7
5
  f as TabVentana,
8
- e as VentanaLienzo,
6
+ n as VentanaLienzo,
9
7
  r as VentanaTabs
10
8
  };
@@ -1,9 +1,9 @@
1
1
  import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
2
  import React__default, { useEffect, useState, useRef } from "react";
3
3
  import { g as getDefaultExportFromCjs } from "../../ThemeProvider-DwZMEupk.js";
4
- import { EncabezadoTabla } from "./EncabezadoTabla.js";
5
- import { Tabla } from "./Tabla.js";
6
- import { CustomModal } from "./Modal.js";
4
+ import { Tabla } from "./tabla/Tabla.js";
5
+ import { CustomModal } from "./modal/Modal.js";
6
+ import { EncabezadoTabla } from "./encabezado/EncabezadoTabla.js";
7
7
  import '../../assets/TablaRegistros.css';var lottie$2 = { exports: {} }, lottie$1 = lottie$2.exports, hasRequiredLottie;
8
8
  function requireLottie() {
9
9
  return hasRequiredLottie || (hasRequiredLottie = 1, function(module, exports) {
@@ -1,11 +1,11 @@
1
1
  import { jsx as n, jsxs as C } from "react/jsx-runtime";
2
- import { e as w } from "../../index-DHX2gxCC.js";
2
+ import { l as w } from "../../../index-PYPwtOs4.js";
3
3
  import * as s from "react";
4
4
  import { useContext as $, useMemo as T } from "react";
5
- import { c as p, u as R } from "../../ThemeProvider-DwZMEupk.js";
6
- import { w as j } from "../../warning-b8Ghk8WQ.js";
7
- import { P as l } from "../../index-B-HWDQSx.js";
8
- import '../../assets/Buscador.css';const k = {
5
+ import { c as p, u as R } from "../../../ThemeProvider-DwZMEupk.js";
6
+ import { w as j } from "../../../warning-b8Ghk8WQ.js";
7
+ import { P as l } from "../../../index-B-HWDQSx.js";
8
+ import '../../../assets/Buscador.css';const k = {
9
9
  /**
10
10
  * Specify whether the feedback is for valid or invalid fields
11
11
  *
@@ -99,5 +99,5 @@ const E = ({ onSearch: e }) => {
99
99
  ] }) });
100
100
  };
101
101
  export {
102
- E as default
102
+ E as BusquedaInput
103
103
  };
@@ -0,0 +1,57 @@
1
+ import { jsxs as s, Fragment as N, jsx as e } from "react/jsx-runtime";
2
+ import p, { useState as n } from "react";
3
+ import { c as g } from "../../../index-PYPwtOs4.js";
4
+ import '../../../assets/ContenidoModal.css';/* empty css */
5
+ const x = ({ title: u, modalContent: i, children: d }) => {
6
+ const [t, l] = n(0), [m, r] = n(!0), [c, o] = n(!1);
7
+ return /* @__PURE__ */ s(N, { children: [
8
+ /* @__PURE__ */ s("div", { style: { marginBottom: "2rem" }, children: [
9
+ /* @__PURE__ */ s("div", { className: "modal-title-container", children: [
10
+ /* @__PURE__ */ s("div", { className: "modal-subtitle-container-left", children: [
11
+ /* @__PURE__ */ e("div", { className: "red-item" }),
12
+ /* @__PURE__ */ e("div", { className: "modal-subtitle", children: c && i && t ? i[t].label : u })
13
+ ] }),
14
+ /* @__PURE__ */ e("div", { className: "modal-subtitle-container-right", children: i && /* @__PURE__ */ s("div", { className: "animation-wrapper", children: [
15
+ m && /* @__PURE__ */ e("div", { className: `buttons-group ${c ? "hide" : "show"}`, children: i.slice(1).map((a, h) => /* @__PURE__ */ e(p.Fragment, { children: a.icon && /* @__PURE__ */ s("div", { className: "icon-container", children: [
16
+ /* @__PURE__ */ e(
17
+ a.icon,
18
+ {
19
+ className: "icon-registro",
20
+ onClick: () => {
21
+ setTimeout(() => {
22
+ r(!1);
23
+ }, 200), l(h + 1), o(!0);
24
+ }
25
+ }
26
+ ),
27
+ /* @__PURE__ */ e("span", { className: "tooltip-text", children: a.label })
28
+ ] }) }, h)) }),
29
+ !m && /* @__PURE__ */ e("div", { className: `close-group ${c ? "show" : "hide"}`, children: /* @__PURE__ */ e(
30
+ g,
31
+ {
32
+ className: "icon-close-registro",
33
+ onClick: () => {
34
+ setTimeout(() => {
35
+ r(!0);
36
+ }, 200), o(!1), l(0);
37
+ },
38
+ style: { position: "absolute", right: 0 }
39
+ }
40
+ ) })
41
+ ] }) })
42
+ ] }),
43
+ /* @__PURE__ */ e("hr", { className: "modal-horizontal-line" })
44
+ ] }),
45
+ /* @__PURE__ */ s("div", { className: "modal-title-body", children: [
46
+ i && (i[t].content instanceof Function ? i[t].content((a) => {
47
+ l(a), setTimeout(() => {
48
+ r(!1);
49
+ }, 200), o(!0);
50
+ }) : i[t].content),
51
+ d && d
52
+ ] })
53
+ ] });
54
+ };
55
+ export {
56
+ x as ContenidoModal
57
+ };
@@ -1,7 +1,7 @@
1
1
  import { jsxs as t, Fragment as N, jsx as e } from "react/jsx-runtime";
2
2
  import { useState as m, useEffect as p } from "react";
3
- import { c as v } from "../../index-DHX2gxCC.js";
4
- import '../../assets/ContenidoModal.css';/* empty css */
3
+ import { c as v } from "../../../index-PYPwtOs4.js";
4
+ import '../../../assets/ContenidoModal.css';/* empty css */
5
5
  const y = ({ title: d, children: h, buttons: s, isShowing: i, setIsShowing: u = () => {
6
6
  } }) => {
7
7
  const [o, r] = m(0), [c, a] = m(!0);
@@ -0,0 +1,30 @@
1
+ import { jsxs as i, jsx as o } from "react/jsx-runtime";
2
+ import { Encabezado as a } from "../../../ui/encabezado/Encabezado.js";
3
+ import "react";
4
+ import '../../../assets/TarjetaInfo.css';import '../../../assets/TarjetaListado.css';import '../../../assets/SeccionTarjetaLectura.css';import '../../../assets/TarjetaLectura.css';import '../../../assets/Paginador.css';import '../../../assets/ContenedorTarjeta.css';import '../../../assets/SeccionTarjeta.css';import '../../../assets/Tarjeta.css';import '../../../assets/ContenidoModal.css';/* empty css */
5
+ /* empty css */
6
+ /* empty css */
7
+ /* empty css */
8
+ /* empty css */
9
+ import "../../../ui/logo/Logo.js";
10
+ /* empty css */
11
+ /* empty css */
12
+ /* empty css */
13
+ /* empty css */
14
+ import { BusquedaInput as e } from "../buscador/Buscador.js";
15
+ const g = ({
16
+ title: t,
17
+ subtitle: m,
18
+ data: p,
19
+ setSearchTerm: n,
20
+ extraInput: r
21
+ }) => /* @__PURE__ */ i("div", { className: "unp-row", children: [
22
+ /* @__PURE__ */ o(a, { titulo: t, subtitulo: m }),
23
+ /* @__PURE__ */ i("div", { className: "inputs-container", children: [
24
+ p.length > 0 && /* @__PURE__ */ o(e, { onSearch: n }),
25
+ r && /* @__PURE__ */ o("div", { children: r })
26
+ ] })
27
+ ] });
28
+ export {
29
+ g as EncabezadoTabla
30
+ };