react-ecosistema-unp 2.0.0-pre.0 → 2.0.0-pre.1

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 (80) hide show
  1. package/dist/{AppList-CnL4zM3E.js → AppList-DADmlv-L.js} +19 -19
  2. package/dist/Spinner-D69BfVXa.js +26 -0
  3. package/dist/assets/EcoBandejaEncabezado.css +1 -0
  4. package/dist/assets/EcoDataTable.css +1 -0
  5. package/dist/assets/EcoDataTableBandejaFooter.css +1 -0
  6. package/dist/assets/EcoDataTablePaginator.css +1 -0
  7. package/dist/cards/tarjeta/nuevo-elemento/NuevoElemento.js +1 -1
  8. package/dist/cards/tarjeta-info/TarjetaInfo.js +1 -1
  9. package/dist/data/tarjeta-datos/TarjetaDatos.js +1 -1
  10. package/dist/{index-CSlWSu0D.js → index-BX37Bvqw.js} +2 -2
  11. package/dist/{index-0e1wf3ww.js → index-C4MBu_wk.js} +65 -57
  12. package/dist/lib/tables/eco-data-table/components/EcoBandejaEncabezado.d.ts +18 -0
  13. package/dist/lib/tables/eco-data-table/components/EcoDataTable/EcoDataTable.d.ts +3 -0
  14. package/dist/lib/tables/eco-data-table/components/EcoDataTableBandejaFooter.d.ts +12 -0
  15. package/dist/lib/tables/eco-data-table/components/EcoDataTableLoading.d.ts +9 -0
  16. package/dist/lib/tables/eco-data-table/components/EcoDataTablePageStatus.d.ts +9 -0
  17. package/dist/lib/tables/eco-data-table/components/EcoDataTablePaginator.d.ts +13 -0
  18. package/dist/lib/tables/eco-data-table/components/EcoDataTableSelectionToolbar.d.ts +6 -0
  19. package/dist/lib/tables/eco-data-table/hooks/useEcoTablePagination.d.ts +19 -0
  20. package/dist/lib/tables/eco-data-table/hooks/useEcoTableReorder.d.ts +14 -0
  21. package/dist/lib/tables/eco-data-table/hooks/useEcoTableSelection.d.ts +14 -0
  22. package/dist/lib/tables/eco-data-table/hooks/useEcoTableServerPages.d.ts +16 -0
  23. package/dist/lib/tables/eco-data-table/index.d.ts +26 -0
  24. package/dist/lib/tables/eco-data-table/types.d.ts +55 -0
  25. package/dist/lib/tables/eco-data-table/utils/defaultRowKey.d.ts +2 -0
  26. package/dist/lib/tables/eco-data-table/utils/filtrarFilasPorBusqueda.d.ts +2 -0
  27. package/dist/lib/tables/eco-data-table/utils/formatCellValue.d.ts +1 -0
  28. package/dist/lib/tables/eco-data-table/utils/formatEcoDate.d.ts +1 -0
  29. package/dist/lib/tables/eco-data-table/utils/respuestaPaginadaApi.d.ts +11 -0
  30. package/dist/lib/tables/eco-data-table/utils/resultadoPaginaCursor.d.ts +8 -0
  31. package/dist/lib/tables.d.ts +2 -0
  32. package/dist/shared/app-list/AppList.js +2 -2
  33. package/dist/shared/iconos-sistema/IconosSistema.js +1 -1
  34. package/dist/shared/iconos-sistema/logout-button/LogoutButton.js +1 -1
  35. package/dist/shared/notificacion-usuario/NotificacionUsuario.js +2 -2
  36. package/dist/shared/ventana-tabs/VentanaTabs.js +1 -1
  37. package/dist/tables/custom-table-toolbar/CustomTableToolbar.js +1 -1
  38. package/dist/tables/eco-data-table/components/EcoBandejaEncabezado.js +73 -0
  39. package/dist/tables/eco-data-table/components/EcoDataTable/EcoDataTable.js +209 -0
  40. package/dist/tables/eco-data-table/components/EcoDataTableBandejaFooter.js +42 -0
  41. package/dist/tables/eco-data-table/components/EcoDataTableLoading.js +27 -0
  42. package/dist/tables/eco-data-table/components/EcoDataTablePageStatus.js +33 -0
  43. package/dist/tables/eco-data-table/components/EcoDataTablePaginator.js +76 -0
  44. package/dist/tables/eco-data-table/components/EcoDataTableSelectionToolbar.js +9 -0
  45. package/dist/tables/eco-data-table/hooks/useEcoTablePagination.js +34 -0
  46. package/dist/tables/eco-data-table/hooks/useEcoTableReorder.js +53 -0
  47. package/dist/tables/eco-data-table/hooks/useEcoTableSelection.js +54 -0
  48. package/dist/tables/eco-data-table/hooks/useEcoTableServerPages.js +40 -0
  49. package/dist/tables/eco-data-table/index.js +36 -0
  50. package/dist/tables/eco-data-table/types.js +1 -0
  51. package/dist/tables/eco-data-table/utils/defaultRowKey.js +15 -0
  52. package/dist/tables/eco-data-table/utils/filtrarFilasPorBusqueda.js +12 -0
  53. package/dist/tables/eco-data-table/utils/formatCellValue.js +6 -0
  54. package/dist/tables/eco-data-table/utils/formatEcoDate.js +8 -0
  55. package/dist/tables/eco-data-table/utils/respuestaPaginadaApi.js +24 -0
  56. package/dist/tables/eco-data-table/utils/resultadoPaginaCursor.js +13 -0
  57. package/dist/tables/tabla-registros/buscador/Buscador.js +20 -41
  58. package/dist/tables/tabla-registros/modal-v2/EcoModal.js +1 -1
  59. package/dist/tables/tabla-registros/tabla/Tabla.js +21 -21
  60. package/dist/tables.js +39 -5
  61. package/dist/ui/alertas/AlertaFormulario.js +1 -1
  62. package/dist/ui/card-gestion-lateral/CardGestionLateral.js +1 -1
  63. package/dist/ui/contenido-modal/ContenidoModal.js +1 -1
  64. package/dist/ui/contenido-modal/ContenidoModalv0.1.js +1 -1
  65. package/dist/ui/contenido-modal-v2/ContenidoModalV2.js +1 -1
  66. package/dist/ui/contenido-modal-v2/ModalV2Menu.js +1 -1
  67. package/dist/ui/datos-basicos-card/DatosBasicosCard.js +1 -1
  68. package/dist/ui/icono-tooltip/IconoTooltip.js +1 -1
  69. package/dist/ui/items-modal/ItemsModal.js +1 -1
  70. package/dist/ui/nav-formularios-lateral/NavFormulariosLateral.js +1 -1
  71. package/dist/ui/notificacion-popover-v2/NotificacionPopoverV2.js +1 -1
  72. package/dist/ui/resumen-evaluacion/ResumenEvaluacion.js +1 -1
  73. package/dist/ui/status-filter-bar/StatusFilterBar.js +2 -2
  74. package/dist/ui/status-semaphore/StatusSemaphore.js +1 -1
  75. package/dist/ui/stepper-v2/StepperV2.js +1 -1
  76. package/dist/utils/modal-radicados/AuxRadicadosComponents/TarjetaRadicado.js +1 -1
  77. package/dist/utils/modal-radicados/ModalDocumento.js +2 -2
  78. package/dist/utils/modal-radicados/ModalRadicado.js +1 -1
  79. package/dist/utils/unp-historico/UnpHistorico.js +1 -1
  80. package/package.json +1 -1
@@ -1,28 +1,28 @@
1
1
  import { jsx as e, Fragment as He, jsxs as ee } from "react/jsx-runtime";
2
2
  import * as C from "react";
3
- import { useEffect as W, useRef as V, useReducer as Ns, useContext as R, useCallback as J, useMemo as We, useState as gs } from "react";
4
- import { D as Ae, a6 as zs, a7 as hs, a8 as vs, a9 as ws, aa as q, h as re, S as Cs, ab as Se, ac as xe, ad as bs, ae as ie, af as Ie, ag as $e, ah as ce, ai as le, aj as As, ak as de, al as ys, am as X, an as ke, ao as Fs, C as ue, ap as x, j as Ge, W as Te, aq as Oe, ar as me, y as Rs, as as Ds, at as Q, au as Me, _ as pe, av as Es, r as Ps, aw as Y, ax as fe, a3 as Ne, ay as Ss, az as ge, aA as Z, aB as xs, aC as k, aD as Is, a4 as ze, A as $s, aE as he, aF as ks, L as Ue, aG as ve, aH as Gs, aI as we, aJ as Ce, aK as j, aL as be, Q as Ts } from "./index-CSlWSu0D.js";
3
+ import { useEffect as V, useRef as W, useReducer as Ns, useContext as R, useCallback as J, useMemo as Ve, useState as gs } from "react";
4
+ import { D as Ae, a6 as zs, a7 as hs, a8 as vs, a9 as ws, aa as q, h as re, S as Cs, ab as Se, ac as xe, ad as bs, ae as ie, af as Ie, ag as $e, ah as ce, ai as le, aj as As, ak as de, al as ys, am as X, an as ke, ao as Fs, C as ue, ap as x, j as Ge, V as Te, aq as Oe, ar as me, y as Rs, as as Ds, at as Q, au as Me, _ as pe, av as Es, r as Ps, aw as Y, ax as fe, a3 as Ne, ay as Ss, az as ge, aA as Z, aB as xs, aC as k, aD as Is, a4 as ze, A as $s, aE as he, aF as ks, L as Ue, aG as ve, aH as Gs, aI as we, aJ as Ce, aK as j, aL as be, Q as Ts } from "./index-BX37Bvqw.js";
5
5
  import { G as Os } from "./iconBase-DSKTHwal.js";
6
6
  import { c as G } from "./index-ZphT3dr_.js";
7
7
  import { u as T, a as Ms } from "./ThemeProvider-Cv61y4Uy.js";
8
8
  import { a as Us, u as ye } from "./useMergedRefs-C93iZe0R.js";
9
9
  import { $ as Ls, S as se, m as ae, u as js, T as Bs } from "./TabContext-Du6X9q-A.js";
10
10
  import { u as H } from "./useEventCallback-Bfo0-hwZ.js";
11
- import { c as _s, d as Hs, m as Ws, b as Vs, a as Js, j as Le, f as Ks, u as qs, e as Xs } from "./useIsomorphicEffect-ZgBMQGq_.js";
12
- import { B as Ve } from "./Button-ChyKCwSh.js";
11
+ import { c as _s, d as Hs, m as Vs, b as Ws, a as Js, j as Le, f as Ks, u as qs, e as Xs } from "./useIsomorphicEffect-ZgBMQGq_.js";
12
+ import { B as We } from "./Button-ChyKCwSh.js";
13
13
  import { A as Je } from "./Anchor-BfRjyGjE.js";
14
14
  import { w as Qs } from "./warning-DfuoVnCC.js";
15
15
  import { B as Ys } from "./Button-eLVX04GZ.js";
16
16
  import './assets/AppList.css';function Zs(o, t, n, r = !1) {
17
17
  const c = H(n);
18
- W(() => {
18
+ V(() => {
19
19
  const i = typeof o == "function" ? o() : o;
20
20
  return i.addEventListener(t, c, r), () => i.removeEventListener(t, c, r);
21
21
  }, [o]);
22
22
  }
23
23
  function ea(o) {
24
- const t = V(null);
25
- return W(() => {
24
+ const t = W(null);
25
+ return V(() => {
26
26
  t.current = o;
27
27
  }), t.current;
28
28
  }
@@ -47,7 +47,7 @@ function ta(o, t) {
47
47
  const na = () => {
48
48
  };
49
49
  function Ke(o = {}) {
50
- const t = R(oe), [n, r] = _s(), c = V(!1), {
50
+ const t = R(oe), [n, r] = _s(), c = W(!1), {
51
51
  flip: i,
52
52
  offset: l,
53
53
  rootCloseEvent: d,
@@ -65,7 +65,7 @@ function Ke(o = {}) {
65
65
  setMenu: y,
66
66
  menuElement: O,
67
67
  toggleElement: P
68
- } = t || {}, v = Hs(P, O, Ws({
68
+ } = t || {}, v = Hs(P, O, Vs({
69
69
  placement: u || E || "bottom-start",
70
70
  enabled: z,
71
71
  enableEvents: m ?? h,
@@ -91,7 +91,7 @@ function Ke(o = {}) {
91
91
  style: v.styles.arrow
92
92
  }) : {}
93
93
  };
94
- return Vs(O, D, {
94
+ return Ws(O, D, {
95
95
  clickTrigger: d,
96
96
  disabled: !h
97
97
  }), [M, b];
@@ -188,7 +188,7 @@ const es = /* @__PURE__ */ C.forwardRef((o, t) => {
188
188
  disabled: r,
189
189
  onClick: c,
190
190
  active: i,
191
- as: l = Ve
191
+ as: l = We
192
192
  } = o, d = la(o, ca);
193
193
  const [f] = Ze({
194
194
  key: n,
@@ -203,7 +203,7 @@ const es = /* @__PURE__ */ C.forwardRef((o, t) => {
203
203
  });
204
204
  es.displayName = "DropdownItem";
205
205
  function _e() {
206
- const o = aa(), t = V(null), n = J((r) => {
206
+ const o = aa(), t = W(null), n = J((r) => {
207
207
  t.current = r, o();
208
208
  }, [o]);
209
209
  return [t, n];
@@ -218,14 +218,14 @@ function K({
218
218
  placement: l = "bottom-start",
219
219
  children: d
220
220
  }) {
221
- const f = Js(), [u, p] = js(t, o, r), [m, z] = _e(), h = m.current, [D, E] = _e(), y = D.current, O = ea(u), P = V(null), v = V(!1), M = R(se), b = J((N, g, A = g == null ? void 0 : g.type) => {
221
+ const f = Js(), [u, p] = js(t, o, r), [m, z] = _e(), h = m.current, [D, E] = _e(), y = D.current, O = ea(u), P = W(null), v = W(!1), M = R(se), b = J((N, g, A = g == null ? void 0 : g.type) => {
222
222
  p(N, {
223
223
  originalEvent: g,
224
224
  source: A
225
225
  });
226
226
  }, [p]), U = H((N, g) => {
227
227
  n == null || n(N, g), b(!1, g, "select"), g.isPropagationStopped() || M == null || M(N, g);
228
- }), F = We(() => ({
228
+ }), F = Ve(() => ({
229
229
  toggle: b,
230
230
  placement: l,
231
231
  show: u,
@@ -245,9 +245,9 @@ function K({
245
245
  const A = je(m.current, c)[0];
246
246
  A && A.focus && A.focus();
247
247
  });
248
- W(() => {
248
+ V(() => {
249
249
  u ? I() : v.current && (v.current = !1, w());
250
- }, [u, v, w, I]), W(() => {
250
+ }, [u, v, w, I]), V(() => {
251
251
  P.current = null;
252
252
  });
253
253
  const _ = (N, g) => {
@@ -488,7 +488,7 @@ const ds = /* @__PURE__ */ C.forwardRef((o, t) => {
488
488
  }), D = R(De), E = T(n, "dropdown"), y = Ms(), O = (F) => z === !1 ? F === "click" : z === "inside" ? F !== "rootClose" : z === "outside" ? F !== "select" : !0, P = Xs((F, w) => {
489
489
  var I;
490
490
  !((I = w.originalEvent) == null || (I = I.target) == null) && I.classList.contains("dropdown-toggle") && w.source === "mousedown" || (w.originalEvent.currentTarget === document && (w.source !== "keydown" || w.originalEvent.key === "Escape") && (w.source = "rootClose"), O(w.source) && (f == null || f(F, w)));
491
- }), M = is(l === "end", r, y), b = We(() => ({
491
+ }), M = is(l === "end", r, y), b = Ve(() => ({
492
492
  align: l,
493
493
  drop: r,
494
494
  isRTL: y
@@ -561,7 +561,7 @@ function us({
561
561
  }
562
562
  const ma = /* @__PURE__ */ C.forwardRef((o, t) => {
563
563
  let {
564
- as: n = Ve,
564
+ as: n = We,
565
565
  active: r,
566
566
  eventKey: c
567
567
  } = o, i = ua(o, da);
@@ -818,7 +818,7 @@ const s = 24, a = "icon-app-2", Na = {
818
818
  "Redactor Noticias": /* @__PURE__ */ e(hs, { size: s, className: a })
819
819
  }, Ia = () => {
820
820
  const [o, t] = gs([]), n = location.pathname, r = n.startsWith("/") ? n : `/${n}`;
821
- W(() => {
821
+ V(() => {
822
822
  const i = localStorage.getItem("auth_state");
823
823
  if (i)
824
824
  try {
@@ -0,0 +1,26 @@
1
+ import { c as i } from "./index-ZphT3dr_.js";
2
+ import * as f from "react";
3
+ import { u as c } from "./ThemeProvider-Cv61y4Uy.js";
4
+ import { jsx as $ } from "react/jsx-runtime";
5
+ const d = /* @__PURE__ */ f.forwardRef(({
6
+ bsPrefix: r,
7
+ variant: o,
8
+ animation: a = "border",
9
+ size: 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: t = "div",
12
+ className: m,
13
+ ...p
14
+ }, n) => {
15
+ r = c(r, "spinner");
16
+ const e = `${r}-${a}`;
17
+ return /* @__PURE__ */ $(t, {
18
+ ref: n,
19
+ ...p,
20
+ className: i(m, e, s && `${e}-${s}`, o && `text-${o}`)
21
+ });
22
+ });
23
+ d.displayName = "Spinner";
24
+ export {
25
+ d as S
26
+ };
@@ -0,0 +1 @@
1
+ .eco-bandeja-layout{display:flex;flex-direction:row;align-items:stretch;gap:.85rem;flex-shrink:0}.eco-bandeja-layout__identity{flex:1 1 58%;min-width:0}.eco-bandeja-layout__identity>header{width:100%;height:100%}.eco-bandeja-layout__identity .card,.eco-bandeja-layout__identity [class*=card]{height:100%}.eco-bandeja-layout__toolbar{flex:1 1 38%;min-width:300px;display:flex;align-items:stretch}.eco-bandeja-layout__toolbar .eco-custom-table-toolbar.eco-toolbar-card{width:100%;height:100%;min-height:100%}.eco-bandeja-layout__toolbar .eco-custom-data-table-search-wrapper{flex:1 1 auto;max-width:100%;min-width:0}.eco-bandeja-layout__identity h1,.eco-bandeja-layout__identity [class*=primaryTitle]{color:#003066!important}.eco-bandeja-layout__identity h2,.eco-bandeja-layout__identity [class*=secondaryTitle]{color:#0a4b93!important;letter-spacing:.06em}.eco-bandeja-layout__identity p,.eco-bandeja-layout__identity [class*=subtitle]{color:#5a6c7d!important}.eco-table-panel{display:flex;flex-direction:column;flex:1 1 auto;min-height:0;background:#fff;border:1px solid rgba(48,61,80,.12);border-radius:16px;box-shadow:0 10px 25px -5px #00000008,0 8px 10px -6px #00000003;overflow:hidden}.eco-table-panel .eco-data-table{border:none;border-radius:0}@media(max-width:992px){.eco-bandeja-layout{flex-direction:column}.eco-bandeja-layout__identity,.eco-bandeja-layout__toolbar{flex:1 1 auto;min-width:0;width:100%}}@media(max-width:576px){.eco-bandeja-layout__toolbar .eco-custom-table-toolbar.eco-toolbar-card{flex-direction:column;align-items:stretch}.eco-bandeja-layout__toolbar .eco-custom-data-table-search-wrapper{width:100%!important;margin-right:0!important}}
@@ -0,0 +1 @@
1
+ .eco-data-table{--eco-table-bg: #f9fafa;--eco-table-surface: #ffffff;--eco-table-text: #303d50;--eco-table-text-muted: #5a6c7d;--eco-table-border: rgba(48, 61, 80, .12);--eco-table-header-bg: #ffffff;--eco-table-header-border: #c9daf0;--eco-table-accent: #0a4b93;--eco-table-accent-deep: #003066;--eco-table-accent-soft: #e8f2fc;--eco-table-accent-selected: #dceaf8;--eco-table-row-hover: #f2f7fd;--eco-table-row-border: #edf2f7;--eco-table-scrollbar: #003066;--eco-table-scrollbar-hover: #0a4b93;display:flex;flex-direction:column;flex:1 1 auto;min-height:0;background:var(--eco-table-surface);border:1px solid var(--eco-table-border);border-radius:0;overflow:hidden}.eco-data-table--sticky{height:100%}.eco-data-table-selection-toolbar{display:flex;justify-content:flex-end;align-items:center;flex-shrink:0;padding:.65rem 1rem;background:var(--eco-table-surface);border-bottom:1px solid var(--eco-table-border)}.eco-data-table-selection-toolbar__actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:.5rem}.eco-data-table-body-wrap{flex:1 1 auto;min-height:0;overflow:auto;scrollbar-width:thin;scrollbar-color:var(--eco-table-scrollbar) transparent}.eco-data-table-body-content{position:relative;min-height:100%}.eco-data-table-body-wrap .table-responsive{overflow-x:visible;-webkit-overflow-scrolling:auto}.eco-data-table-body-wrap--sticky thead th{position:sticky;top:0;z-index:2}.eco-data-table-fetching-overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:3;background:#f9fafac7;-webkit-backdrop-filter:blur(1px);backdrop-filter:blur(1px);pointer-events:auto}.eco-data-table-fetching-overlay__message{position:absolute;left:0;right:0;top:0;display:flex;align-items:center;justify-content:center;width:100%;z-index:4;pointer-events:none}.eco-data-table-loading{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.75rem;min-height:220px;padding:2rem;color:var(--eco-table-text-muted);font-size:.9rem;font-weight:500;background:var(--eco-table-surface);border:1px solid var(--eco-table-border)}.eco-data-table-loading--compact{min-height:120px;padding:1rem}.eco-data-table-loading--overlay{min-height:0;padding:0;background:transparent;border:none;gap:.5rem;font-size:.875rem}.eco-data-table-loading__spinner{color:var(--eco-table-accent)!important}.eco-data-table-grid{width:100%;margin-bottom:0;border-collapse:separate;border-spacing:0}.eco-data-table-grid thead th{background:var(--eco-table-header-bg);color:var(--eco-table-text);font-weight:600;font-size:.82rem;text-transform:uppercase;letter-spacing:.04em;padding:12px 16px;border-bottom:1px solid var(--eco-table-header-border);white-space:nowrap;text-align:center;box-shadow:0 1px 0 var(--eco-table-row-border)}.eco-data-table-grid tbody td{padding:10px 16px;color:var(--eco-table-text);font-size:.92rem;border-bottom:1px solid var(--eco-table-row-border);vertical-align:middle;white-space:nowrap;text-align:center}.eco-data-table-grid tbody tr{transition:background-color .18s ease,box-shadow .18s ease}.eco-data-table-grid tbody tr:hover{background:var(--eco-table-row-hover)!important}.eco-data-table-grid tbody tr.eco-data-table-row--selected{background:var(--eco-table-accent-soft)!important;box-shadow:inset 4px 0 0 0 var(--eco-table-accent-deep)}.eco-data-table-grid tbody tr.eco-data-table-row--selected:hover{background:var(--eco-table-accent-selected)!important}.eco-data-table-grid tbody tr.eco-data-table-row--clickable{cursor:pointer}.eco-data-table-cell--no-padding{padding:0!important}.eco-data-table-cell--link{cursor:pointer;color:var(--eco-table-accent);font-weight:600}.eco-data-table-cell--link:hover{color:var(--eco-table-accent-deep);text-decoration:underline}.eco-data-table-cell--bold{font-weight:600}.eco-data-table-select-cell{width:2.75rem;padding-left:12px!important;padding-right:8px!important}.eco-data-table-select-btn{display:inline-flex;align-items:center;justify-content:center;padding:0;border:none;background:transparent;color:var(--eco-table-text-muted);cursor:pointer;font-size:1.1rem;line-height:1}.eco-data-table-select-btn:hover,.eco-data-table-select-btn.is-selected{color:var(--eco-table-accent)}.eco-data-table-priority-cell{width:5.5rem;white-space:nowrap}.eco-data-table-priority-actions{display:inline-flex;align-items:center;gap:.35rem}.eco-data-table-priority-btn{display:inline-flex;align-items:center;justify-content:center;width:1.65rem;height:1.65rem;padding:0;border:1px solid var(--eco-table-border);border-radius:6px;background:#fff;color:var(--eco-table-text);cursor:pointer}.eco-data-table-priority-btn:hover:not(:disabled){background:var(--eco-table-accent-soft);border-color:#7aa3d4}.eco-data-table-priority-btn:disabled{opacity:.4;cursor:not-allowed}.eco-data-table-empty{padding:2.5rem 1rem!important;color:var(--eco-table-text-muted);text-align:center}.eco-data-table-end-row:hover{background:transparent!important}.eco-data-table-end-row__cell{padding:.85rem 1rem!important;font-size:.8rem;font-weight:500;color:var(--eco-table-text-muted);text-align:center;background:var(--eco-table-bg);border-bottom:none!important}.eco-data-table-bandeja-footer{margin-top:auto}.eco-data-table-body-wrap::-webkit-scrollbar{width:4px;height:4px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.eco-data-table-body-wrap::-webkit-scrollbar-track{background:transparent}.eco-data-table-body-wrap::-webkit-scrollbar-thumb{background-color:var(--eco-table-scrollbar);border-radius:999px;border:none;min-height:24px}.eco-data-table-body-wrap::-webkit-scrollbar-thumb:hover{background-color:var(--eco-table-scrollbar-hover)}.eco-data-table-body-wrap::-webkit-scrollbar-corner{background:transparent}.eco-data-table-body-wrap::-webkit-scrollbar-button,.eco-data-table-body-wrap::-webkit-scrollbar-button:single-button,.eco-data-table-body-wrap::-webkit-scrollbar-button:vertical:start:decrement,.eco-data-table-body-wrap::-webkit-scrollbar-button:vertical:end:increment,.eco-data-table-body-wrap::-webkit-scrollbar-button:horizontal:start:decrement,.eco-data-table-body-wrap::-webkit-scrollbar-button:horizontal:end:increment{display:none!important;width:0!important;height:0!important;background:transparent!important;border:none!important}
@@ -0,0 +1 @@
1
+ .eco-data-table-bandeja-footer{flex-shrink:0;display:flex;flex-direction:column;background:#fff;border-top:1px solid rgba(48,61,80,.1)}.eco-data-table-bandeja-footer__pagination{border-bottom:1px solid rgba(48,61,80,.08);background:#fff}.eco-data-table-bandeja-footer__pagination .eco-data-table-paginator{border-top:none;margin:0}.eco-data-table-bandeja-footer__branding{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.25rem .75rem;padding:.35rem 1rem;font-size:.62rem;line-height:1.35;color:#5a6c7d;background:linear-gradient(180deg,#fafbfc,#f9fafa)}.eco-data-table-bandeja-footer__orgs{display:flex;flex-wrap:wrap;align-items:center;gap:.2rem .55rem;min-width:0}.eco-data-table-bandeja-footer__org-line{white-space:nowrap}.eco-data-table-bandeja-footer__org-line:not(:last-child):after{content:"|";margin-left:.55rem;color:#303d5038;font-weight:400}.eco-data-table-bandeja-footer__meta{flex-shrink:0;font-weight:500;color:#64748b;white-space:nowrap}@media(max-width:768px){.eco-data-table-bandeja-footer__branding{flex-direction:column;align-items:flex-start;padding:.4rem .75rem}.eco-data-table-bandeja-footer__org-line{white-space:normal}.eco-data-table-bandeja-footer__org-line:not(:last-child):after{display:none}.eco-data-table-bandeja-footer__orgs{flex-direction:column;align-items:flex-start;gap:.1rem}}
@@ -0,0 +1 @@
1
+ .eco-data-table-paginator{display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap;padding:10px 16px;background:#fff;border-top:1px solid rgba(48,61,80,.12)}.eco-data-table-paginator__info{font-size:.875rem;color:#5a6c7d}.eco-data-table-paginator__info strong{color:#303d50;font-weight:700}.eco-data-table-paginator__controls{display:flex;align-items:center;gap:10px}.eco-data-table-paginator__btn{padding:6px 14px;font-size:.875rem;font-weight:600;color:#303d50;background:#fff;border:1px solid #c9daf0;border-radius:8px;cursor:pointer;transition:background-color .2s ease,border-color .2s ease,color .2s ease}.eco-data-table-paginator__btn:hover:not(:disabled){background:#f2f7fd;border-color:#1565a8;color:#0a4b93}.eco-data-table-paginator__btn:disabled{opacity:.5;cursor:not-allowed}.eco-data-table-paginator__pages{display:flex;align-items:center;gap:4px}.eco-data-table-paginator__page{width:32px;height:32px;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:600;color:#5a6c7d;border-radius:8px;border:none;background:transparent;cursor:pointer;transition:background-color .2s ease,color .2s ease}.eco-data-table-paginator__page:hover{background:#e8f2fc;color:#0a4b93}.eco-data-table-paginator__page.is-active{background:#003066;color:#fff}.eco-data-table-paginator__ellipsis{color:#94a3b8;padding:0 4px}
@@ -1,5 +1,5 @@
1
1
  import { jsxs as n, jsx as r } from "react/jsx-runtime";
2
- import { E as s } from "../../../index-CSlWSu0D.js";
2
+ import { E as s } from "../../../index-BX37Bvqw.js";
3
3
  import '../../../assets/Bootstrap.css';/* empty css */
4
4
  import { B as a } from "../../../Button-eLVX04GZ.js";
5
5
  const d = {
@@ -1,6 +1,6 @@
1
1
  import { jsxs as a, jsx as t } from "react/jsx-runtime";
2
2
  import { useState as c, useRef as u, useEffect as j } from "react";
3
- import { k as p, l as N } from "../../index-CSlWSu0D.js";
3
+ import { k as p, l as N } from "../../index-BX37Bvqw.js";
4
4
  import '../../assets/TarjetaInfo.css';/* empty css */
5
5
  const b = ({ icon: l, label: h, show: f = !1, children: o, extraItem: i }) => {
6
6
  const [e, s] = c(f), [m, r] = c(0), n = u(null);
@@ -3,7 +3,7 @@ import "react";
3
3
  import '../../assets/SeccionTarjetaLectura.css';import '../../assets/Logo.css';import '../../assets/TarjetaLectura.css';import '../../assets/ContenedorTarjeta.css';import '../../assets/Bootstrap.css';import '../../assets/Tarjeta.css';/* empty css */
4
4
  /* empty css */
5
5
  import "../../cards/tarjeta/seccion-tarjeta/SeccionTarjeta.js";
6
- import { D as t } from "../../index-CSlWSu0D.js";
6
+ import { D as t } from "../../index-BX37Bvqw.js";
7
7
  /* empty css */
8
8
  /* empty css */
9
9
  /* empty css */
@@ -328,8 +328,8 @@ export {
328
328
  f as S,
329
329
  X1 as T,
330
330
  h1 as U,
331
- r as V,
332
- F1 as W,
331
+ F1 as V,
332
+ r as W,
333
333
  s1 as X,
334
334
  x1 as Y,
335
335
  T1 as Z,
@@ -1,119 +1,127 @@
1
1
  import { G as t } from "./iconBase-DSKTHwal.js";
2
2
  function h(c) {
3
- return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z" }, child: [] }] })(c);
3
+ return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z" }, child: [] }] })(c);
4
4
  }
5
5
  function l(c) {
6
- return t({ attr: { viewBox: "0 0 640 512" }, child: [{ tag: "path", attr: { d: "M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z" }, child: [] }] })(c);
6
+ return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z" }, child: [] }] })(c);
7
7
  }
8
8
  function r(c) {
9
- return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z" }, child: [] }] })(c);
9
+ return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z" }, child: [] }] })(c);
10
10
  }
11
11
  function i(c) {
12
- return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" }, child: [] }] })(c);
12
+ return t({ attr: { viewBox: "0 0 640 512" }, child: [{ tag: "path", attr: { d: "M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z" }, child: [] }] })(c);
13
13
  }
14
14
  function n(c) {
15
- return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" }, child: [] }] })(c);
15
+ return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z" }, child: [] }] })(c);
16
16
  }
17
17
  function v(c) {
18
- return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" }, child: [] }] })(c);
18
+ return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" }, child: [] }] })(c);
19
19
  }
20
20
  function d(c) {
21
- return t({ attr: { viewBox: "0 0 320 512" }, child: [{ tag: "path", attr: { d: "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" }, child: [] }] })(c);
21
+ return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" }, child: [] }] })(c);
22
22
  }
23
23
  function e(c) {
24
- return t({ attr: { viewBox: "0 0 320 512" }, child: [{ tag: "path", attr: { d: "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" }, child: [] }] })(c);
24
+ return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" }, child: [] }] })(c);
25
25
  }
26
26
  function o(c) {
27
- return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" }, child: [] }] })(c);
27
+ return t({ attr: { viewBox: "0 0 320 512" }, child: [{ tag: "path", attr: { d: "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z" }, child: [] }] })(c);
28
28
  }
29
29
  function z(c) {
30
- return t({ attr: { viewBox: "0 0 576 512" }, child: [{ tag: "path", attr: { d: "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" }, child: [] }] })(c);
30
+ return t({ attr: { viewBox: "0 0 320 512" }, child: [{ tag: "path", attr: { d: "M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z" }, child: [] }] })(c);
31
31
  }
32
32
  function u(c) {
33
- return t({ attr: { viewBox: "0 0 640 512" }, child: [{ tag: "path", attr: { d: "M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z" }, child: [] }] })(c);
33
+ return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z" }, child: [] }] })(c);
34
34
  }
35
35
  function s(c) {
36
- return t({ attr: { viewBox: "0 0 384 512" }, child: [{ tag: "path", attr: { d: "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" }, child: [] }] })(c);
36
+ return t({ attr: { viewBox: "0 0 576 512" }, child: [{ tag: "path", attr: { d: "M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" }, child: [] }] })(c);
37
37
  }
38
38
  function L(c) {
39
- return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" }, child: [] }] })(c);
39
+ return t({ attr: { viewBox: "0 0 640 512" }, child: [{ tag: "path", attr: { d: "M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z" }, child: [] }] })(c);
40
40
  }
41
41
  function M(c) {
42
- return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" }, child: [] }] })(c);
42
+ return t({ attr: { viewBox: "0 0 384 512" }, child: [{ tag: "path", attr: { d: "M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" }, child: [] }] })(c);
43
43
  }
44
44
  function H(c) {
45
- return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" }, child: [] }] })(c);
45
+ return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z" }, child: [] }] })(c);
46
46
  }
47
47
  function p(c) {
48
- return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" }, child: [] }] })(c);
48
+ return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z" }, child: [] }] })(c);
49
+ }
50
+ function w(c) {
51
+ return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z" }, child: [] }] })(c);
49
52
  }
50
53
  function C(c) {
54
+ return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" }, child: [] }] })(c);
55
+ }
56
+ function f(c) {
51
57
  return t({ attr: { viewBox: "0 0 576 512" }, child: [{ tag: "path", attr: { d: "M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z" }, child: [] }] })(c);
52
58
  }
53
- function m(c) {
59
+ function g(c) {
54
60
  return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" }, child: [] }] })(c);
55
61
  }
56
- function f(c) {
62
+ function m(c) {
57
63
  return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" }, child: [] }] })(c);
58
64
  }
59
- function g(c) {
65
+ function x(c) {
60
66
  return t({ attr: { viewBox: "0 0 320 512" }, child: [{ tag: "path", attr: { d: "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z" }, child: [] }] })(c);
61
67
  }
62
- function w(c) {
68
+ function B(c) {
63
69
  return t({ attr: { viewBox: "0 0 320 512" }, child: [{ tag: "path", attr: { d: "M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z" }, child: [] }] })(c);
64
70
  }
65
- function x(c) {
71
+ function F(c) {
66
72
  return t({ attr: { viewBox: "0 0 320 512" }, child: [{ tag: "path", attr: { d: "M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z" }, child: [] }] })(c);
67
73
  }
68
- function B(c) {
74
+ function V(c) {
69
75
  return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z" }, child: [] }] })(c);
70
76
  }
71
- function F(c) {
77
+ function A(c) {
72
78
  return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" }, child: [] }] })(c);
73
79
  }
74
- function V(c) {
80
+ function S(c) {
75
81
  return t({ attr: { viewBox: "0 0 352 512" }, child: [{ tag: "path", attr: { d: "M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" }, child: [] }] })(c);
76
82
  }
77
- function A(c) {
83
+ function T(c) {
78
84
  return t({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M501.1 395.7L384 278.6c-23.1-23.1-57.6-27.6-85.4-13.9L192 158.1V96L64 0 0 64l96 128h62.1l106.6 106.6c-13.6 27.8-9.2 62.3 13.9 85.4l117.1 117.1c14.6 14.6 38.2 14.6 52.7 0l52.7-52.7c14.5-14.6 14.5-38.2 0-52.7zM331.7 225c28.3 0 54.9 11 74.9 31l19.4 19.4c15.8-6.9 30.8-16.5 43.8-29.5 37.1-37.1 49.7-89.3 37.9-136.7-2.2-9-13.5-12.1-20.1-5.5l-74.4 74.4-67.9-11.3L334 98.9l74.4-74.4c6.6-6.6 3.4-17.9-5.7-20.2-47.4-11.7-99.6.9-136.6 37.9-28.5 28.5-41.9 66.1-41.2 103.6l82.1 82.1c8.1-1.9 16.5-2.9 24.7-2.9zm-103.9 82l-56.7-56.7L18.7 402.8c-25 25-25 65.5 0 90.5s65.5 25 90.5 0l123.6-123.6c-7.6-19.9-9.9-41.6-5-62.7zM64 472c-13.2 0-24-10.8-24-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13.2-10.7 24-24 24z" }, child: [] }] })(c);
79
85
  }
80
- function S(c) {
86
+ function U(c) {
81
87
  return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z" }, child: [] }] })(c);
82
88
  }
83
- function T(c) {
89
+ function y(c) {
84
90
  return t({ attr: { viewBox: "0 0 640 512" }, child: [{ tag: "path", attr: { d: "M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z" }, child: [] }] })(c);
85
91
  }
86
- function y(c) {
92
+ function D(c) {
87
93
  return t({ attr: { viewBox: "0 0 448 512" }, child: [{ tag: "path", attr: { d: "M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" }, child: [] }] })(c);
88
94
  }
89
95
  export {
90
- A,
91
- B,
92
- y as F,
93
- s as a,
94
- M as b,
95
- v as c,
96
- o as d,
97
- r as e,
98
- H as f,
99
- d as g,
100
- m as h,
101
- f as i,
102
- w as j,
103
- g as k,
104
- x as l,
105
- i as m,
106
- e as n,
107
- h as o,
108
- u as p,
109
- n as q,
110
- S as r,
111
- C as s,
112
- p as t,
113
- L as u,
114
- V as v,
115
- T as w,
116
- z as x,
117
- l as y,
118
- F as z
96
+ i as A,
97
+ A as B,
98
+ T as C,
99
+ V as D,
100
+ D as F,
101
+ M as a,
102
+ p as b,
103
+ e as c,
104
+ u as d,
105
+ n as e,
106
+ w as f,
107
+ o as g,
108
+ g as h,
109
+ m as i,
110
+ v as j,
111
+ l as k,
112
+ h as l,
113
+ B as m,
114
+ x as n,
115
+ F as o,
116
+ z as p,
117
+ r as q,
118
+ L as r,
119
+ d as s,
120
+ U as t,
121
+ f as u,
122
+ C as v,
123
+ H as w,
124
+ S as x,
125
+ y,
126
+ s as z
119
127
  };
@@ -0,0 +1,18 @@
1
+ import { ReactElement, ReactNode } from 'react';
2
+ export interface EcoBandejaEncabezadoProps {
3
+ /** Título principal (azul), p. ej. «Histórico». */
4
+ title?: string;
5
+ /** Línea secundaria en mayúsculas, p. ej. dirección o área. */
6
+ sectionLabel?: string;
7
+ /** Tercera línea, p. ej. «Unidad Nacional de Protección». */
8
+ subtitle: string;
9
+ onSearch?: (term: string) => void;
10
+ searchPlaceholder?: string;
11
+ totalRecords?: number;
12
+ actions?: ReactNode;
13
+ }
14
+ /**
15
+ * Bandeja tipo analista: dos tarjetas separadas (EncabezadoV2 + CustomTableToolbar isCard),
16
+ * desacopladas de la tabla.
17
+ */
18
+ export declare function EcoBandejaEncabezado({ title, sectionLabel, subtitle, onSearch, searchPlaceholder, totalRecords, actions, }: EcoBandejaEncabezadoProps): ReactElement;
@@ -0,0 +1,3 @@
1
+ import { ReactElement } from 'react';
2
+ import { EcoDataTableProps } from '../../types';
3
+ export declare function EcoDataTable<T extends object = Record<string, unknown>>({ columns, data, isLoading, isFetching, stickyHeader, className, pageSize, getRowStyle, getRowKey, pagination, selection, reorder, selectionActions, onRowClick, }: EcoDataTableProps<T>): ReactElement;
@@ -0,0 +1,12 @@
1
+ import { ReactElement } from 'react';
2
+ export interface EcoDataTableBandejaFooterProps {
3
+ currentPage: number;
4
+ totalPages: number;
5
+ onPageChange: (page: number) => void;
6
+ totalRecords?: number;
7
+ pageSize?: number;
8
+ hasMore?: boolean;
9
+ showPagination?: boolean;
10
+ year?: number;
11
+ }
12
+ export declare function EcoDataTableBandejaFooter({ currentPage, totalPages, onPageChange, totalRecords, pageSize, hasMore, showPagination, year, }: EcoDataTableBandejaFooterProps): ReactElement;
@@ -0,0 +1,9 @@
1
+ import { ReactElement } from 'react';
2
+ interface EcoDataTableLoadingProps {
3
+ label?: string;
4
+ compact?: boolean;
5
+ /** Sin caja/borde; solo spinner + texto (overlay de paginación). */
6
+ overlay?: boolean;
7
+ }
8
+ export declare function EcoDataTableLoading({ label, compact, overlay, }: EcoDataTableLoadingProps): ReactElement;
9
+ export {};
@@ -0,0 +1,9 @@
1
+ import { ReactElement } from 'react';
2
+ interface EcoDataTablePageStatusProps {
3
+ isFetching?: boolean;
4
+ isLastPage?: boolean;
5
+ hasRecords?: boolean;
6
+ showEndMessage?: boolean;
7
+ }
8
+ export declare function EcoDataTablePageStatus({ isFetching, isLastPage, hasRecords, showEndMessage, }: EcoDataTablePageStatusProps): ReactElement | null;
9
+ export {};
@@ -0,0 +1,13 @@
1
+ import { ReactElement } from 'react';
2
+ interface EcoDataTablePaginatorProps {
3
+ currentPage: number;
4
+ totalPages: number;
5
+ onPageChange: (page: number) => void;
6
+ totalRecords?: number;
7
+ pageSize?: number;
8
+ hasMore?: boolean;
9
+ /** Muestra la barra aunque haya una sola página (p. ej. footer fijo de bandeja). */
10
+ alwaysVisible?: boolean;
11
+ }
12
+ export declare function EcoDataTablePaginator({ currentPage, totalPages, onPageChange, totalRecords, pageSize, hasMore, alwaysVisible, }: EcoDataTablePaginatorProps): ReactElement | null;
13
+ export {};
@@ -0,0 +1,6 @@
1
+ import { ReactElement, ReactNode } from 'react';
2
+ interface EcoDataTableSelectionToolbarProps {
3
+ children?: ReactNode;
4
+ }
5
+ export declare function EcoDataTableSelectionToolbar({ children, }: EcoDataTableSelectionToolbarProps): ReactElement | null;
6
+ export {};
@@ -0,0 +1,19 @@
1
+ import { EcoTablePaginationConfig } from '../types';
2
+ interface UseEcoTablePaginationOptions {
3
+ dataLength: number;
4
+ pageSize: number;
5
+ pagination?: EcoTablePaginationConfig;
6
+ }
7
+ export declare function useEcoTablePagination({ dataLength, pageSize, pagination, }: UseEcoTablePaginationOptions): {
8
+ currentPage: number;
9
+ totalPages: number;
10
+ effectiveTotal: number;
11
+ isLastPage: boolean;
12
+ paginatedData: {
13
+ start: number;
14
+ end: number;
15
+ } | null;
16
+ handlePageChange: (page: number) => void;
17
+ serverMode: boolean;
18
+ };
19
+ export {};