general-library-union 2.3.36 → 2.3.37

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 (592) hide show
  1. package/esm2022/general-library-union.mjs +5 -0
  2. package/esm2022/public-api.mjs +170 -0
  3. package/esm2022/src/app/core/componentes/breadcrumb/breadcrumb.component.mjs +35 -0
  4. package/esm2022/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.mjs +28 -0
  5. package/esm2022/src/app/core/componentes/filtro-general/filtro-general.component.mjs +153 -0
  6. package/esm2022/src/app/core/componentes/footer/footer.component.mjs +22 -0
  7. package/esm2022/src/app/core/componentes/formulariodinamico/formulariodinamico.component.mjs +272 -0
  8. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/Cambio.mjs +11 -0
  9. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.mjs +124 -0
  10. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.mjs +73 -0
  11. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.mjs +59 -0
  12. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.mjs +21 -0
  13. package/esm2022/src/app/core/componentes/inicio-component/inicio-component.component.mjs +67 -0
  14. package/esm2022/src/app/core/componentes/menu/menu.component.mjs +37 -0
  15. package/esm2022/src/app/core/componentes/tabla-general/tabla-general.component.mjs +93 -0
  16. package/esm2022/src/app/core/core.module.mjs +23 -0
  17. package/esm2022/src/app/core/errores/authentication.error.mjs +7 -0
  18. package/esm2022/src/app/core/modelos/error-response.model.mjs +2 -0
  19. package/esm2022/src/app/core/modelos/table-column.model.mjs +2 -0
  20. package/esm2022/src/app/core/modelos/user.model.mjs +7 -0
  21. package/esm2022/src/app/core/plantilla-general/plantilla-general.template.mjs +225 -0
  22. package/esm2022/src/app/core/servicios/auth.service.mjs +180 -0
  23. package/esm2022/src/app/core/servicios/cargar-control-funcionalidad.service.mjs +57 -0
  24. package/esm2022/src/app/core/servicios/data-exporter-table.utils.mjs +44 -0
  25. package/esm2022/src/app/core/servicios/error-interceptor.service.mjs +147 -0
  26. package/esm2022/src/app/core/servicios/guardias/auth.guard.mjs +66 -0
  27. package/esm2022/src/app/core/servicios/guardias/publico.guard.mjs +30 -0
  28. package/esm2022/src/app/core/servicios/interceptores/token-interceptor.service.mjs +120 -0
  29. package/esm2022/src/app/core/servicios/loading.service.mjs +43 -0
  30. package/esm2022/src/app/core/servicios/menu.service.mjs +88 -0
  31. package/esm2022/src/app/core/servicios/storage.service.mjs +68 -0
  32. package/esm2022/src/app/core/servicios/template.service.mjs +99 -0
  33. package/esm2022/src/app/core/servicios/toast.service.mjs +91 -0
  34. package/esm2022/src/app/core/servicios/utils.service.mjs +305 -0
  35. package/esm2022/src/app/core/sharedlib.module.mjs +16 -0
  36. package/esm2022/src/app/core/utilidades/color.util.mjs +177 -0
  37. package/esm2022/src/app/layout/api/menuchangeevent.mjs +2 -0
  38. package/esm2022/src/app/layout/app.breadcrumb.component.mjs +66 -0
  39. package/esm2022/src/app/layout/app.footer.component.mjs +21 -0
  40. package/esm2022/src/app/layout/app.layout.component.mjs +188 -0
  41. package/esm2022/src/app/layout/app.layout.module.mjs +15 -0
  42. package/esm2022/src/app/layout/app.menu.component.mjs +40 -0
  43. package/esm2022/src/app/layout/app.menu.service.mjs +24 -0
  44. package/esm2022/src/app/layout/app.menuitem.component.mjs +295 -0
  45. package/esm2022/src/app/layout/app.menuprofile.component.mjs +78 -0
  46. package/esm2022/src/app/layout/app.rightmenu.component.mjs +24 -0
  47. package/esm2022/src/app/layout/app.sidebar.component.mjs +91 -0
  48. package/esm2022/src/app/layout/app.topbar.component.mjs +334 -0
  49. package/esm2022/src/app/layout/service/app.layout.service.mjs +134 -0
  50. package/esm2022/src/app/publico/pages/login/login.page.mjs +127 -0
  51. package/esm2022/src/app/publico/pages/not-found/not-found.page.mjs +47 -0
  52. package/esm2022/src/app/publico/pages/seleccion-rol/seleccion-rol.component.mjs +159 -0
  53. package/esm2022/src/app/publico/pages/timeout/timeout.page.mjs +20 -0
  54. package/esm2022/src/app/seguridad/modelos/AplicacionModel.mjs +8 -0
  55. package/esm2022/src/app/seguridad/modelos/ArchivoPortalModel.mjs +14 -0
  56. package/esm2022/src/app/seguridad/modelos/AtributoPuntoModel.mjs +9 -0
  57. package/esm2022/src/app/seguridad/modelos/AtributoSSOportalModel.mjs +17 -0
  58. package/esm2022/src/app/seguridad/modelos/AuditoriaArchivoModel.mjs +11 -0
  59. package/esm2022/src/app/seguridad/modelos/CargueLineaModel.mjs +13 -0
  60. package/esm2022/src/app/seguridad/modelos/ColoresRGB.mjs +18 -0
  61. package/esm2022/src/app/seguridad/modelos/ComplementoModel.mjs +7 -0
  62. package/esm2022/src/app/seguridad/modelos/ComponentePaginaModel.mjs +21 -0
  63. package/esm2022/src/app/seguridad/modelos/ConexionModel.mjs +14 -0
  64. package/esm2022/src/app/seguridad/modelos/ContenidoHtmlPortalModel.mjs +21 -0
  65. package/esm2022/src/app/seguridad/modelos/ControlFuncionModel.mjs +8 -0
  66. package/esm2022/src/app/seguridad/modelos/CorreoModel.mjs +35 -0
  67. package/esm2022/src/app/seguridad/modelos/CorreoWSModel.mjs +37 -0
  68. package/esm2022/src/app/seguridad/modelos/CruceRecursoPuntoModel.mjs +14 -0
  69. package/esm2022/src/app/seguridad/modelos/DatoInicioModel.mjs +6 -0
  70. package/esm2022/src/app/seguridad/modelos/EjecucionReporteDataModel.mjs +14 -0
  71. package/esm2022/src/app/seguridad/modelos/EmpresaModel.mjs +25 -0
  72. package/esm2022/src/app/seguridad/modelos/EmpresaSeguridadModel.mjs +19 -0
  73. package/esm2022/src/app/seguridad/modelos/EntradaComplementoModel.mjs +7 -0
  74. package/esm2022/src/app/seguridad/modelos/EtiquetaModel.mjs +5 -0
  75. package/esm2022/src/app/seguridad/modelos/Etiquetas.mjs +12 -0
  76. package/esm2022/src/app/seguridad/modelos/FuenteCampoAtributoModel.mjs +16 -0
  77. package/esm2022/src/app/seguridad/modelos/FuenteCampoModel.mjs +17 -0
  78. package/esm2022/src/app/seguridad/modelos/FuenteDato.mjs +19 -0
  79. package/esm2022/src/app/seguridad/modelos/FuenteEntradaModel.mjs +9 -0
  80. package/esm2022/src/app/seguridad/modelos/FuenteGeneralModel.mjs +37 -0
  81. package/esm2022/src/app/seguridad/modelos/FuenteLineaServicioModel.mjs +16 -0
  82. package/esm2022/src/app/seguridad/modelos/FuenteProcesoGeneralModel.mjs +11 -0
  83. package/esm2022/src/app/seguridad/modelos/FuenteServicioModel.mjs +51 -0
  84. package/esm2022/src/app/seguridad/modelos/FuncionalidadModel.mjs +10 -0
  85. package/esm2022/src/app/seguridad/modelos/GeneralModel.mjs +15 -0
  86. package/esm2022/src/app/seguridad/modelos/GrupoAccesoModel.mjs +7 -0
  87. package/esm2022/src/app/seguridad/modelos/GrupoControlFuncionModel.mjs +10 -0
  88. package/esm2022/src/app/seguridad/modelos/GrupoFuenteModel.mjs +13 -0
  89. package/esm2022/src/app/seguridad/modelos/GrupoPermisoModel.mjs +14 -0
  90. package/esm2022/src/app/seguridad/modelos/ListaServicioModel.mjs +17 -0
  91. package/esm2022/src/app/seguridad/modelos/LoginModel.mjs +15 -0
  92. package/esm2022/src/app/seguridad/modelos/MensajeSistemaModel.mjs +8 -0
  93. package/esm2022/src/app/seguridad/modelos/MenuPortalModel.mjs +5 -0
  94. package/esm2022/src/app/seguridad/modelos/ModulosModel.mjs +18 -0
  95. package/esm2022/src/app/seguridad/modelos/PaginaPortalModel.mjs +20 -0
  96. package/esm2022/src/app/seguridad/modelos/ParametroComponenteModel.mjs +9 -0
  97. package/esm2022/src/app/seguridad/modelos/ParametrosGeneralModel.mjs +15 -0
  98. package/esm2022/src/app/seguridad/modelos/PermisoFuncionModel.mjs +9 -0
  99. package/esm2022/src/app/seguridad/modelos/PermisocontenidoModel.mjs +20 -0
  100. package/esm2022/src/app/seguridad/modelos/PeticionModel.mjs +16 -0
  101. package/esm2022/src/app/seguridad/modelos/PreguntaSeguridadModel.mjs +7 -0
  102. package/esm2022/src/app/seguridad/modelos/PropiedadModel.mjs +10 -0
  103. package/esm2022/src/app/seguridad/modelos/PublicacionWebModel.mjs +27 -0
  104. package/esm2022/src/app/seguridad/modelos/PuntoProcesoModel.mjs +7 -0
  105. package/esm2022/src/app/seguridad/modelos/RecursoPunto.mjs +13 -0
  106. package/esm2022/src/app/seguridad/modelos/RecursoPuntoModel.mjs +13 -0
  107. package/esm2022/src/app/seguridad/modelos/ReporteBanda.mjs +8 -0
  108. package/esm2022/src/app/seguridad/modelos/ReporteColumna.mjs +33 -0
  109. package/esm2022/src/app/seguridad/modelos/ReporteColumnario.mjs +69 -0
  110. package/esm2022/src/app/seguridad/modelos/ReporteColumnarioMarcador.mjs +24 -0
  111. package/esm2022/src/app/seguridad/modelos/ReporteEntradaModel.mjs +20 -0
  112. package/esm2022/src/app/seguridad/modelos/ReporteFuenteModel.mjs +124 -0
  113. package/esm2022/src/app/seguridad/modelos/ReporteMarcador.mjs +40 -0
  114. package/esm2022/src/app/seguridad/modelos/ReporteSoporte.mjs +10 -0
  115. package/esm2022/src/app/seguridad/modelos/ReporteTabla.mjs +13 -0
  116. package/esm2022/src/app/seguridad/modelos/RespuestaModel.mjs +9 -0
  117. package/esm2022/src/app/seguridad/modelos/RolModel.mjs +39 -0
  118. package/esm2022/src/app/seguridad/modelos/ServidorCorreoModel.mjs +28 -0
  119. package/esm2022/src/app/seguridad/modelos/SistemaMensajeModel.mjs +9 -0
  120. package/esm2022/src/app/seguridad/modelos/SitioPortalModel.mjs +25 -0
  121. package/esm2022/src/app/seguridad/modelos/TareasModel.mjs +54 -0
  122. package/esm2022/src/app/seguridad/modelos/TextoModel.mjs +9 -0
  123. package/esm2022/src/app/seguridad/modelos/TipoEtiqueta.mjs +8 -0
  124. package/esm2022/src/app/seguridad/modelos/UnionModel.mjs +12 -0
  125. package/esm2022/src/app/seguridad/modelos/UsuarioModel.mjs +53 -0
  126. package/esm2022/src/app/seguridad/modelos/UsuariogrupoModel.mjs +24 -0
  127. package/esm2022/src/app/seguridad/modelos/aplicacion-propiedad-model.mjs +15 -0
  128. package/esm2022/src/app/seguridad/modelos/contenidoCorreoModel.mjs +10 -0
  129. package/esm2022/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.mjs +151 -0
  130. package/esm2022/src/app/shared/servicios/cargar-archivos.service.mjs +54 -0
  131. package/esm2022/src/app/shared/servicios/cargar-mapas.service.mjs +46 -0
  132. package/esm2022/src/app/shared/servicios/encriptado-basico.service.mjs +53 -0
  133. package/esm2022/src/app/shared/servicios/general.service.mjs +104 -0
  134. package/esm2022/src/app/shared/servicios/parametros-navegacion.service.mjs +21 -0
  135. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.mjs +187 -0
  136. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.mjs +85 -0
  137. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.mjs +347 -0
  138. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.mjs +206 -0
  139. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.mjs +328 -0
  140. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.mjs +1448 -0
  141. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.mjs +105 -0
  142. package/esm2022/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.mjs +95 -0
  143. package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.mjs +599 -0
  144. package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.mjs +177 -0
  145. package/esm2022/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.mjs +327 -0
  146. package/esm2022/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.mjs +93 -0
  147. package/esm2022/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.mjs +671 -0
  148. package/esm2022/src/app/webcommon/pipes/fuente.pipe.mjs +201 -0
  149. package/esm2022/src/app/webcommon/pipes/general.pipe.mjs +907 -0
  150. package/esm2022/src/app/webcommon/pipes/reporte-columnario.pipe.mjs +115 -0
  151. package/esm2022/src/app/webcommon/pipes/reporte-fuente.pipe.mjs +296 -0
  152. package/esm2022/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.mjs +253 -0
  153. package/esm2022/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.mjs +293 -0
  154. package/esm2022/src/app/webcommon/popups/popup-recurso/popup-recurso.component.mjs +268 -0
  155. package/esm2022/src/app/webcommon/popups/popup-reporte/popup-reporte.component.mjs +508 -0
  156. package/esm2022/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.mjs +64 -0
  157. package/esm2022/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.mjs +89 -0
  158. package/esm2022/src/app/webcommon/services/carguelinea.service.mjs +69 -0
  159. package/esm2022/src/app/webcommon/services/ejecucionreporte.service.mjs +114 -0
  160. package/esm2022/src/app/webcommon/services/fechaUtils.service.mjs +88 -0
  161. package/esm2022/src/app/webcommon/services/fuentegeneral.service.mjs +68 -0
  162. package/esm2022/src/app/webcommon/services/homologacion.service.mjs +50 -0
  163. package/esm2022/src/app/webcommon/services/plantillas.service.mjs +53 -0
  164. package/esm2022/src/app/webcommon/services/reportes.service.mjs +53 -0
  165. package/esm2022/src/app/webcommon/webcommon.module.mjs +15 -0
  166. package/esm2022/src/environments/environment.mjs +22 -0
  167. package/fesm2022/general-library-union.mjs +13507 -0
  168. package/fesm2022/general-library-union.mjs.map +1 -0
  169. package/index.d.ts +5 -0
  170. package/package.json +57 -68
  171. package/{public-api.ts → public-api.d.ts} +154 -188
  172. package/src/app/core/componentes/breadcrumb/breadcrumb.component.d.ts +18 -0
  173. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.d.ts +14 -0
  174. package/src/app/core/componentes/filtro-general/filtro-general.component.d.ts +26 -0
  175. package/src/app/core/componentes/footer/footer.component.d.ts +11 -0
  176. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.d.ts +46 -0
  177. package/src/app/core/componentes/formulariodinamico/objetosformulario/{Cambio.ts → Cambio.d.ts} +7 -13
  178. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.d.ts +44 -0
  179. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.d.ts +45 -0
  180. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.d.ts +33 -0
  181. package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.d.ts +9 -0
  182. package/src/app/core/componentes/inicio-component/inicio-component.component.d.ts +24 -0
  183. package/src/app/core/componentes/menu/menu.component.d.ts +16 -0
  184. package/src/app/core/componentes/tabla-general/tabla-general.component.d.ts +32 -0
  185. package/src/app/core/core.module.d.ts +8 -0
  186. package/src/app/core/errores/authentication.error.d.ts +3 -0
  187. package/src/app/core/modelos/error-response.model.d.ts +9 -0
  188. package/src/app/core/modelos/table-column.model.d.ts +12 -0
  189. package/src/app/core/modelos/user.model.d.ts +6 -0
  190. package/src/app/core/plantilla-general/plantilla-general.template.d.ts +89 -0
  191. package/src/app/core/servicios/auth.service.d.ts +52 -0
  192. package/src/app/core/servicios/cargar-control-funcionalidad.service.d.ts +19 -0
  193. package/src/app/core/servicios/data-exporter-table.utils.d.ts +8 -0
  194. package/src/app/core/servicios/error-interceptor.service.d.ts +41 -0
  195. package/src/app/core/servicios/guardias/auth.guard.d.ts +17 -0
  196. package/src/app/core/servicios/guardias/publico.guard.d.ts +13 -0
  197. package/src/app/core/servicios/interceptores/token-interceptor.service.d.ts +21 -0
  198. package/src/app/core/servicios/loading.service.d.ts +22 -0
  199. package/src/app/core/servicios/menu.service.d.ts +34 -0
  200. package/src/app/core/servicios/storage.service.d.ts +37 -0
  201. package/src/app/core/servicios/template.service.d.ts +20 -0
  202. package/src/app/core/servicios/toast.service.d.ts +46 -0
  203. package/src/app/core/servicios/utils.service.d.ts +40 -0
  204. package/src/app/core/sharedlib.module.d.ts +6 -0
  205. package/src/app/core/utilidades/color.util.d.ts +70 -0
  206. package/src/app/layout/api/{menuchangeevent.ts → menuchangeevent.d.ts} +4 -4
  207. package/src/app/layout/app.breadcrumb.component.d.ts +28 -0
  208. package/src/app/layout/app.footer.component.d.ts +10 -0
  209. package/src/app/layout/app.layout.component.d.ts +39 -0
  210. package/src/app/layout/app.layout.module.d.ts +6 -0
  211. package/src/app/layout/app.menu.component.d.ts +19 -0
  212. package/src/app/layout/app.menu.service.d.ts +12 -0
  213. package/src/app/layout/app.menuitem.component.d.ts +40 -0
  214. package/src/app/layout/app.menuprofile.component.d.ts +18 -0
  215. package/src/app/layout/app.rightmenu.component.d.ts +10 -0
  216. package/src/app/layout/app.sidebar.component.d.ts +33 -0
  217. package/src/app/layout/app.topbar.component.d.ts +78 -0
  218. package/src/app/layout/service/app.layout.service.d.ts +57 -0
  219. package/src/app/publico/pages/login/login.page.d.ts +40 -0
  220. package/src/app/publico/pages/not-found/not-found.page.d.ts +16 -0
  221. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.d.ts +41 -0
  222. package/src/app/publico/pages/timeout/timeout.page.d.ts +10 -0
  223. package/src/app/seguridad/modelos/AplicacionModel.d.ts +7 -0
  224. package/src/app/seguridad/modelos/ArchivoPortalModel.d.ts +13 -0
  225. package/src/app/seguridad/modelos/AtributoPuntoModel.d.ts +8 -0
  226. package/src/app/seguridad/modelos/AtributoSSOportalModel.d.ts +16 -0
  227. package/src/app/seguridad/modelos/{AuditoriaArchivoModel.ts → AuditoriaArchivoModel.d.ts} +10 -13
  228. package/src/app/seguridad/modelos/CargueLineaModel.d.ts +12 -0
  229. package/src/app/seguridad/modelos/ColoresRGB.d.ts +17 -0
  230. package/src/app/seguridad/modelos/ComplementoModel.d.ts +6 -0
  231. package/src/app/seguridad/modelos/ComponentePaginaModel.d.ts +20 -0
  232. package/src/app/seguridad/modelos/ConexionModel.d.ts +13 -0
  233. package/src/app/seguridad/modelos/{ContenidoHtmlPortalModel.ts → ContenidoHtmlPortalModel.d.ts} +20 -25
  234. package/src/app/seguridad/modelos/ControlFuncionModel.d.ts +7 -0
  235. package/src/app/seguridad/modelos/CorreoModel.d.ts +31 -0
  236. package/src/app/seguridad/modelos/CorreoWSModel.d.ts +33 -0
  237. package/src/app/seguridad/modelos/CruceRecursoPuntoModel.d.ts +13 -0
  238. package/src/app/seguridad/modelos/{DatoInicioModel.ts → DatoInicioModel.d.ts} +6 -7
  239. package/src/app/seguridad/modelos/{EjecucionReporteDataModel.ts → EjecucionReporteDataModel.d.ts} +20 -21
  240. package/src/app/seguridad/modelos/EmpresaModel.d.ts +23 -0
  241. package/src/app/seguridad/modelos/EmpresaSeguridadModel.d.ts +18 -0
  242. package/src/app/seguridad/modelos/{EntradaComplementoModel.ts → EntradaComplementoModel.d.ts} +6 -9
  243. package/src/app/seguridad/modelos/EtiquetaModel.d.ts +4 -0
  244. package/src/app/seguridad/modelos/Etiquetas.d.ts +10 -0
  245. package/src/app/seguridad/modelos/FuenteCampoAtributoModel.d.ts +15 -0
  246. package/src/app/seguridad/modelos/{FuenteCampoModel.ts → FuenteCampoModel.d.ts} +16 -20
  247. package/src/app/seguridad/modelos/FuenteDato.d.ts +18 -0
  248. package/src/app/seguridad/modelos/FuenteEntradaModel.d.ts +8 -0
  249. package/src/app/seguridad/modelos/{FuenteGeneralModel.ts → FuenteGeneralModel.d.ts} +36 -55
  250. package/src/app/seguridad/modelos/FuenteLineaServicioModel.d.ts +16 -0
  251. package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.d.ts +10 -0
  252. package/src/app/seguridad/modelos/{FuenteServicioModel.ts → FuenteServicioModel.d.ts} +47 -61
  253. package/src/app/seguridad/modelos/FuncionalidadModel.d.ts +8 -0
  254. package/src/app/seguridad/modelos/GeneralModel.d.ts +8 -0
  255. package/src/app/seguridad/modelos/{GrupoAccesoModel.ts → GrupoAccesoModel.d.ts} +6 -9
  256. package/src/app/seguridad/modelos/GrupoControlFuncionModel.d.ts +9 -0
  257. package/src/app/seguridad/modelos/GrupoFuenteModel.d.ts +13 -0
  258. package/src/app/seguridad/modelos/GrupoPermisoModel.d.ts +13 -0
  259. package/src/app/seguridad/modelos/ListaServicioModel.d.ts +16 -0
  260. package/src/app/seguridad/modelos/LoginModel.d.ts +17 -0
  261. package/src/app/seguridad/modelos/MensajeSistemaModel.d.ts +7 -0
  262. package/src/app/seguridad/modelos/{MenuPortalModel.ts → MenuPortalModel.d.ts} +4 -5
  263. package/src/app/seguridad/modelos/ModulosModel.d.ts +14 -0
  264. package/src/app/seguridad/modelos/PaginaPortalModel.d.ts +19 -0
  265. package/src/app/seguridad/modelos/ParametroComponenteModel.d.ts +8 -0
  266. package/src/app/seguridad/modelos/ParametrosGeneralModel.d.ts +8 -0
  267. package/src/app/seguridad/modelos/PermisoFuncionModel.d.ts +8 -0
  268. package/src/app/seguridad/modelos/PermisocontenidoModel.d.ts +18 -0
  269. package/src/app/seguridad/modelos/{PeticionModel.ts → PeticionModel.d.ts} +15 -20
  270. package/src/app/seguridad/modelos/PreguntaSeguridadModel.d.ts +6 -0
  271. package/src/app/seguridad/modelos/PropiedadModel.d.ts +9 -0
  272. package/src/app/seguridad/modelos/PublicacionWebModel.d.ts +25 -0
  273. package/src/app/seguridad/modelos/PuntoProcesoModel.d.ts +6 -0
  274. package/src/app/seguridad/modelos/RecursoPunto.d.ts +12 -0
  275. package/src/app/seguridad/modelos/RecursoPuntoModel.d.ts +12 -0
  276. package/src/app/seguridad/modelos/ReporteBanda.d.ts +7 -0
  277. package/src/app/seguridad/modelos/ReporteColumna.d.ts +32 -0
  278. package/src/app/seguridad/modelos/ReporteColumnario.d.ts +68 -0
  279. package/src/app/seguridad/modelos/ReporteColumnarioMarcador.d.ts +23 -0
  280. package/src/app/seguridad/modelos/{ReporteEntradaModel.ts → ReporteEntradaModel.d.ts} +19 -21
  281. package/src/app/seguridad/modelos/{ReporteFuenteModel.ts → ReporteFuenteModel.d.ts} +87 -141
  282. package/src/app/seguridad/modelos/ReporteMarcador.d.ts +39 -0
  283. package/src/app/seguridad/modelos/ReporteSoporte.d.ts +9 -0
  284. package/src/app/seguridad/modelos/ReporteTabla.d.ts +12 -0
  285. package/src/app/seguridad/modelos/RespuestaModel.d.ts +8 -0
  286. package/src/app/seguridad/modelos/{RolModel.ts → RolModel.d.ts} +37 -41
  287. package/src/app/seguridad/modelos/ServidorCorreoModel.d.ts +25 -0
  288. package/src/app/seguridad/modelos/SistemaMensajeModel.d.ts +8 -0
  289. package/src/app/seguridad/modelos/SitioPortalModel.d.ts +24 -0
  290. package/src/app/seguridad/modelos/TareasModel.d.ts +49 -0
  291. package/src/app/seguridad/modelos/TextoModel.d.ts +8 -0
  292. package/src/app/seguridad/modelos/TipoEtiqueta.d.ts +7 -0
  293. package/src/app/seguridad/modelos/UnionModel.d.ts +11 -0
  294. package/src/app/seguridad/modelos/{UsuarioModel.ts → UsuarioModel.d.ts} +49 -60
  295. package/src/app/seguridad/modelos/UsuariogrupoModel.d.ts +22 -0
  296. package/src/app/seguridad/modelos/aplicacion-propiedad-model.d.ts +13 -0
  297. package/src/app/seguridad/modelos/contenidoCorreoModel.d.ts +9 -0
  298. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.d.ts +47 -0
  299. package/src/app/shared/servicios/cargar-archivos.service.d.ts +15 -0
  300. package/src/app/shared/servicios/cargar-mapas.service.d.ts +18 -0
  301. package/src/app/shared/servicios/encriptado-basico.service.d.ts +10 -0
  302. package/src/app/shared/servicios/general.service.d.ts +24 -0
  303. package/src/app/shared/servicios/parametros-navegacion.service.d.ts +9 -0
  304. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.d.ts +79 -0
  305. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.d.ts +29 -0
  306. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.d.ts +69 -0
  307. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.d.ts +51 -0
  308. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.d.ts +77 -0
  309. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.d.ts +251 -0
  310. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.d.ts +42 -0
  311. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.d.ts +33 -0
  312. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts +143 -0
  313. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.d.ts +49 -0
  314. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.d.ts +64 -0
  315. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.d.ts +33 -0
  316. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.d.ts +148 -0
  317. package/src/app/webcommon/pipes/fuente.pipe.d.ts +136 -0
  318. package/src/app/webcommon/pipes/general.pipe.d.ts +637 -0
  319. package/src/app/webcommon/pipes/reporte-columnario.pipe.d.ts +59 -0
  320. package/src/app/webcommon/pipes/reporte-fuente.pipe.d.ts +189 -0
  321. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.d.ts +58 -0
  322. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.d.ts +64 -0
  323. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.d.ts +63 -0
  324. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.d.ts +97 -0
  325. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.d.ts +21 -0
  326. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.d.ts +30 -0
  327. package/src/app/webcommon/services/carguelinea.service.d.ts +19 -0
  328. package/src/app/webcommon/services/ejecucionreporte.service.d.ts +34 -0
  329. package/src/app/webcommon/services/fechaUtils.service.d.ts +28 -0
  330. package/src/app/webcommon/services/fuentegeneral.service.d.ts +24 -0
  331. package/src/app/webcommon/services/homologacion.service.d.ts +17 -0
  332. package/src/app/webcommon/services/plantillas.service.d.ts +17 -0
  333. package/src/app/webcommon/services/reportes.service.d.ts +19 -0
  334. package/src/app/webcommon/webcommon.module.d.ts +6 -0
  335. package/src/environments/environment.d.ts +4 -0
  336. package/.browserslistrc +0 -15
  337. package/.editorconfig +0 -16
  338. package/.vscode/extensions.json +0 -4
  339. package/.vscode/launch.json +0 -20
  340. package/.vscode/tasks.json +0 -42
  341. package/angular.json +0 -130
  342. package/karma.conf.js +0 -44
  343. package/ng-package.json +0 -21
  344. package/src/app/app.component.html +0 -0
  345. package/src/app/app.component.scss +0 -0
  346. package/src/app/app.component.spec.ts +0 -29
  347. package/src/app/app.component.ts +0 -12
  348. package/src/app/app.config.ts +0 -8
  349. package/src/app/app.module.ts +0 -10
  350. package/src/app/app.routes.ts +0 -3
  351. package/src/app/core/componentes/breadcrumb/breadcrumb.component.html +0 -6
  352. package/src/app/core/componentes/breadcrumb/breadcrumb.component.scss +0 -0
  353. package/src/app/core/componentes/breadcrumb/breadcrumb.component.ts +0 -34
  354. package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.html +0 -1
  355. package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.scss +0 -0
  356. package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.ts +0 -31
  357. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.html +0 -9
  358. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.scss +0 -28
  359. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.ts +0 -32
  360. package/src/app/core/componentes/filtro-general/filtro-general.component.html +0 -34
  361. package/src/app/core/componentes/filtro-general/filtro-general.component.scss +0 -3
  362. package/src/app/core/componentes/filtro-general/filtro-general.component.ts +0 -154
  363. package/src/app/core/componentes/footer/footer.component.html +0 -19
  364. package/src/app/core/componentes/footer/footer.component.scss +0 -3
  365. package/src/app/core/componentes/footer/footer.component.ts +0 -24
  366. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.html +0 -267
  367. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.scss +0 -21
  368. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.ts +0 -275
  369. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.ts +0 -118
  370. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.ts +0 -76
  371. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.ts +0 -67
  372. package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.ts +0 -11
  373. package/src/app/core/componentes/inicio-component/inicio-component.component.html +0 -29
  374. package/src/app/core/componentes/inicio-component/inicio-component.component.scss +0 -69
  375. package/src/app/core/componentes/inicio-component/inicio-component.component.ts +0 -65
  376. package/src/app/core/componentes/menu/menu.component.html +0 -13
  377. package/src/app/core/componentes/menu/menu.component.scss +0 -36
  378. package/src/app/core/componentes/menu/menu.component.ts +0 -35
  379. package/src/app/core/componentes/tabla-general/tabla-general.component.html +0 -90
  380. package/src/app/core/componentes/tabla-general/tabla-general.component.scss +0 -0
  381. package/src/app/core/componentes/tabla-general/tabla-general.component.ts +0 -96
  382. package/src/app/core/core.module.ts +0 -22
  383. package/src/app/core/errores/authentication.error.ts +0 -6
  384. package/src/app/core/modelos/error-response.model.ts +0 -9
  385. package/src/app/core/modelos/table-column.model.ts +0 -10
  386. package/src/app/core/modelos/user.model.ts +0 -6
  387. package/src/app/core/plantilla-general/plantilla-general.template.html +0 -139
  388. package/src/app/core/plantilla-general/plantilla-general.template.scss +0 -37
  389. package/src/app/core/plantilla-general/plantilla-general.template.ts +0 -229
  390. package/src/app/core/servicios/auth.service.ts +0 -183
  391. package/src/app/core/servicios/cargar-control-funcionalidad.service.ts +0 -49
  392. package/src/app/core/servicios/data-exporter-table.utils.ts +0 -55
  393. package/src/app/core/servicios/error-interceptor.service.ts +0 -145
  394. package/src/app/core/servicios/guardias/auth.guard.ts +0 -51
  395. package/src/app/core/servicios/guardias/publico.guard.ts +0 -22
  396. package/src/app/core/servicios/interceptores/token-interceptor.service.ts +0 -110
  397. package/src/app/core/servicios/loading.service.ts +0 -48
  398. package/src/app/core/servicios/menu.service.ts +0 -89
  399. package/src/app/core/servicios/storage.service.ts +0 -68
  400. package/src/app/core/servicios/template.service.ts +0 -91
  401. package/src/app/core/servicios/toast.service.ts +0 -89
  402. package/src/app/core/servicios/utils.service.ts +0 -331
  403. package/src/app/core/sharedlib.module.ts +0 -11
  404. package/src/app/core/utilidades/color.util.ts +0 -197
  405. package/src/app/layout/app.breadcrumb.component.html +0 -20
  406. package/src/app/layout/app.breadcrumb.component.ts +0 -74
  407. package/src/app/layout/app.footer.component.html +0 -18
  408. package/src/app/layout/app.footer.component.ts +0 -15
  409. package/src/app/layout/app.layout.component.html +0 -20
  410. package/src/app/layout/app.layout.component.ts +0 -201
  411. package/src/app/layout/app.layout.module.ts +0 -9
  412. package/src/app/layout/app.menu.component.html +0 -6
  413. package/src/app/layout/app.menu.component.ts +0 -40
  414. package/src/app/layout/app.menu.service.ts +0 -23
  415. package/src/app/layout/app.menuitem.component.ts +0 -250
  416. package/src/app/layout/app.menuprofile.component.html +0 -35
  417. package/src/app/layout/app.menuprofile.component.ts +0 -60
  418. package/src/app/layout/app.rightmenu.component.html +0 -72
  419. package/src/app/layout/app.rightmenu.component.ts +0 -24
  420. package/src/app/layout/app.sidebar.component.html +0 -40
  421. package/src/app/layout/app.sidebar.component.ts +0 -80
  422. package/src/app/layout/app.topbar.component.html +0 -214
  423. package/src/app/layout/app.topbar.component.ts +0 -326
  424. package/src/app/layout/config/app.config.component.html +0 -125
  425. package/src/app/layout/config/app.config.component.ts +0 -206
  426. package/src/app/layout/config/app.config.module.ts +0 -11
  427. package/src/app/layout/service/app.layout.service.ts +0 -191
  428. package/src/app/publico/pages/login/login.page.html +0 -53
  429. package/src/app/publico/pages/login/login.page.scss +0 -122
  430. package/src/app/publico/pages/login/login.page.ts +0 -127
  431. package/src/app/publico/pages/not-found/not-found.page.html +0 -25
  432. package/src/app/publico/pages/not-found/not-found.page.scss +0 -2
  433. package/src/app/publico/pages/not-found/not-found.page.ts +0 -41
  434. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.html +0 -58
  435. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.scss +0 -49
  436. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.ts +0 -169
  437. package/src/app/publico/pages/timeout/timeout.page.html +0 -21
  438. package/src/app/publico/pages/timeout/timeout.page.scss +0 -2
  439. package/src/app/publico/pages/timeout/timeout.page.ts +0 -18
  440. package/src/app/seguridad/constantes/ConstantesGenerales.ts +0 -30
  441. package/src/app/seguridad/constantes/ReporteEntradaConstantes.ts +0 -18
  442. package/src/app/seguridad/constantes/ReporteFuenteConstantes.ts +0 -13
  443. package/src/app/seguridad/modelos/AplicacionModel.ts +0 -11
  444. package/src/app/seguridad/modelos/ArchivoPortalModel.ts +0 -16
  445. package/src/app/seguridad/modelos/AtributoPuntoModel.ts +0 -9
  446. package/src/app/seguridad/modelos/AtributoSSOportalModel.ts +0 -22
  447. package/src/app/seguridad/modelos/CargueLineaModel.ts +0 -17
  448. package/src/app/seguridad/modelos/ColoresRGB.ts +0 -17
  449. package/src/app/seguridad/modelos/ComplementoModel.ts +0 -10
  450. package/src/app/seguridad/modelos/ComponentePaginaModel.ts +0 -22
  451. package/src/app/seguridad/modelos/ConexionModel.ts +0 -15
  452. package/src/app/seguridad/modelos/ControlFuncionModel.ts +0 -10
  453. package/src/app/seguridad/modelos/CorreoModel.ts +0 -45
  454. package/src/app/seguridad/modelos/CorreoWSModel.ts +0 -49
  455. package/src/app/seguridad/modelos/CruceRecursoPuntoModel.ts +0 -14
  456. package/src/app/seguridad/modelos/EmpresaModel.ts +0 -25
  457. package/src/app/seguridad/modelos/EmpresaSeguridadModel.ts +0 -19
  458. package/src/app/seguridad/modelos/EtiquetaModel.ts +0 -4
  459. package/src/app/seguridad/modelos/Etiquetas.ts +0 -14
  460. package/src/app/seguridad/modelos/FuenteCampoAtributoModel.ts +0 -21
  461. package/src/app/seguridad/modelos/FuenteDato.ts +0 -19
  462. package/src/app/seguridad/modelos/FuenteEntradaModel.ts +0 -9
  463. package/src/app/seguridad/modelos/FuenteLineaServicioModel.ts +0 -19
  464. package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.ts +0 -14
  465. package/src/app/seguridad/modelos/FuncionalidadModel.ts +0 -12
  466. package/src/app/seguridad/modelos/GeneralModel.ts +0 -16
  467. package/src/app/seguridad/modelos/GrupoControlFuncionModel.ts +0 -12
  468. package/src/app/seguridad/modelos/GrupoFuenteModel.ts +0 -17
  469. package/src/app/seguridad/modelos/GrupoPermisoModel.ts +0 -16
  470. package/src/app/seguridad/modelos/ListaServicioModel.ts +0 -18
  471. package/src/app/seguridad/modelos/LoginModel.ts +0 -19
  472. package/src/app/seguridad/modelos/MensajeSistemaModel.ts +0 -10
  473. package/src/app/seguridad/modelos/ModulosModel.ts +0 -17
  474. package/src/app/seguridad/modelos/PaginaPortalModel.ts +0 -23
  475. package/src/app/seguridad/modelos/ParametroComponenteModel.ts +0 -9
  476. package/src/app/seguridad/modelos/ParametrosGeneralModel.ts +0 -16
  477. package/src/app/seguridad/modelos/PermisoFuncionModel.ts +0 -11
  478. package/src/app/seguridad/modelos/PermisocontenidoModel.ts +0 -20
  479. package/src/app/seguridad/modelos/PreguntaSeguridadModel.ts +0 -9
  480. package/src/app/seguridad/modelos/PropiedadModel.ts +0 -12
  481. package/src/app/seguridad/modelos/PublicacionWebModel.ts +0 -29
  482. package/src/app/seguridad/modelos/PuntoProcesoModel.ts +0 -7
  483. package/src/app/seguridad/modelos/RecursoPunto.ts +0 -13
  484. package/src/app/seguridad/modelos/RecursoPuntoModel.ts +0 -13
  485. package/src/app/seguridad/modelos/ReporteBanda.ts +0 -9
  486. package/src/app/seguridad/modelos/ReporteColumna.ts +0 -33
  487. package/src/app/seguridad/modelos/ReporteColumnario.ts +0 -82
  488. package/src/app/seguridad/modelos/ReporteColumnarioMarcador.ts +0 -31
  489. package/src/app/seguridad/modelos/ReporteMarcador.ts +0 -40
  490. package/src/app/seguridad/modelos/ReporteSoporte.ts +0 -10
  491. package/src/app/seguridad/modelos/ReporteTabla.ts +0 -14
  492. package/src/app/seguridad/modelos/RespuestaModel.ts +0 -10
  493. package/src/app/seguridad/modelos/ServidorCorreoModel.ts +0 -31
  494. package/src/app/seguridad/modelos/SistemaMensajeModel.ts +0 -11
  495. package/src/app/seguridad/modelos/SitioPortalModel.ts +0 -29
  496. package/src/app/seguridad/modelos/TareasModel.ts +0 -54
  497. package/src/app/seguridad/modelos/TextoModel.ts +0 -11
  498. package/src/app/seguridad/modelos/TipoEtiqueta.ts +0 -8
  499. package/src/app/seguridad/modelos/UnionModel.ts +0 -14
  500. package/src/app/seguridad/modelos/UsuariogrupoModel.ts +0 -27
  501. package/src/app/seguridad/modelos/aplicacion-propiedad-model.ts +0 -16
  502. package/src/app/seguridad/modelos/contenidoCorreoModel.ts +0 -13
  503. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.html +0 -47
  504. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.scss +0 -8
  505. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.ts +0 -141
  506. package/src/app/shared/servicios/cargar-archivos.service.ts +0 -51
  507. package/src/app/shared/servicios/cargar-mapas.service.ts +0 -43
  508. package/src/app/shared/servicios/encriptado-basico.service.ts +0 -54
  509. package/src/app/shared/servicios/encriptador-simetrico.service.ts +0 -29
  510. package/src/app/shared/servicios/general.service.ts +0 -124
  511. package/src/app/shared/servicios/parametros-navegacion.service.ts +0 -20
  512. package/src/app/shared/servicios/plantillas.service.ts +0 -22
  513. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.html +0 -87
  514. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.scss +0 -0
  515. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.ts +0 -189
  516. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.html +0 -117
  517. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.scss +0 -0
  518. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.ts +0 -87
  519. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.html +0 -158
  520. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.scss +0 -6
  521. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.ts +0 -345
  522. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.html +0 -131
  523. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.scss +0 -0
  524. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.ts +0 -198
  525. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.html +0 -206
  526. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.scss +0 -3
  527. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.ts +0 -329
  528. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.html +0 -1940
  529. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.scss +0 -241
  530. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.ts +0 -1550
  531. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.html +0 -33
  532. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.scss +0 -0
  533. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.ts +0 -96
  534. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.html +0 -47
  535. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.scss +0 -0
  536. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.ts +0 -95
  537. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.html +0 -391
  538. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.scss +0 -10
  539. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.ts +0 -612
  540. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.html +0 -130
  541. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.scss +0 -0
  542. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.ts +0 -172
  543. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.html +0 -145
  544. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.scss +0 -0
  545. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.ts +0 -300
  546. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.html +0 -19
  547. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.scss +0 -0
  548. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.ts +0 -86
  549. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.html +0 -703
  550. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.scss +0 -0
  551. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.ts +0 -682
  552. package/src/app/webcommon/pipes/fuente.pipe.ts +0 -207
  553. package/src/app/webcommon/pipes/general.pipe.ts +0 -1034
  554. package/src/app/webcommon/pipes/reporte-columnario.pipe.ts +0 -101
  555. package/src/app/webcommon/pipes/reporte-fuente.pipe.ts +0 -300
  556. package/src/app/webcommon/pipes/sara-general.pipe.ts +0 -289
  557. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.html +0 -90
  558. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.scss +0 -0
  559. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.ts +0 -248
  560. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.html +0 -41
  561. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.scss +0 -0
  562. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.ts +0 -283
  563. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.html +0 -175
  564. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.scss +0 -3
  565. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.ts +0 -265
  566. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.html +0 -261
  567. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.scss +0 -13
  568. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.ts +0 -512
  569. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.html +0 -10
  570. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.scss +0 -5
  571. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.ts +0 -58
  572. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.html +0 -11
  573. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.scss +0 -0
  574. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.ts +0 -82
  575. package/src/app/webcommon/services/carguelinea.service.ts +0 -72
  576. package/src/app/webcommon/services/ejecucionreporte.service.ts +0 -158
  577. package/src/app/webcommon/services/fechaUtils.service.ts +0 -120
  578. package/src/app/webcommon/services/fuentegeneral.service.ts +0 -74
  579. package/src/app/webcommon/services/homologacion.service.ts +0 -49
  580. package/src/app/webcommon/services/plantillas.service.ts +0 -49
  581. package/src/app/webcommon/services/reportes.service.ts +0 -60
  582. package/src/app/webcommon/webcommon.module.ts +0 -11
  583. package/src/environments/environment.prod.ts +0 -3
  584. package/src/environments/environment.ts +0 -23
  585. package/src/favicon.ico +0 -0
  586. package/src/index.html +0 -14
  587. package/src/main.ts +0 -6
  588. package/src/polyfills.ts +0 -53
  589. package/src/test.ts +0 -14
  590. package/tsconfig.app.json +0 -15
  591. package/tsconfig.json +0 -35
  592. package/tsconfig.spec.json +0 -18
@@ -0,0 +1,17 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { GeneralModel } from '../../seguridad/modelos/GeneralModel';
4
+ import { ErrorIntecertorService } from '../../core/servicios/error-interceptor.service';
5
+ import { CookieService } from 'ngx-cookie-service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class PlantillasService {
8
+ private httpClient;
9
+ private errorInterceptor;
10
+ private cookieService;
11
+ listProcedure(objetoFiltro: GeneralModel): void;
12
+ constructor(httpClient: HttpClient, errorInterceptor: ErrorIntecertorService, cookieService: CookieService);
13
+ private handleError;
14
+ obtenerArchivos(propiedad: any, aplicativo: any, extensiones?: any, anexoPropiedad?: any): Observable<any>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlantillasService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<PlantillasService>;
17
+ }
@@ -0,0 +1,19 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { GeneralModel } from '../../seguridad/modelos/GeneralModel';
3
+ import { ErrorIntecertorService } from '../../core/servicios/error-interceptor.service';
4
+ import { Observable } from 'rxjs';
5
+ import { CookieService } from 'ngx-cookie-service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ReportesService {
8
+ private httpClient;
9
+ private errorInterceptor;
10
+ private cookieService;
11
+ listProcedure(objetoFiltro: GeneralModel): void;
12
+ constructor(httpClient: HttpClient, errorInterceptor: ErrorIntecertorService, cookieService: CookieService);
13
+ private handleError;
14
+ obtenerProcesoExterno(general: any): Observable<any>;
15
+ getUrl(): string | null;
16
+ obtenerRutaPlantilla(general: any): Observable<any>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReportesService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReportesService>;
19
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class WebCommonModule {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<WebCommonModule, never>;
4
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WebCommonModule, never, never, never>;
5
+ static ɵinj: i0.ɵɵInjectorDeclaration<WebCommonModule>;
6
+ }
@@ -0,0 +1,4 @@
1
+ export declare const environment: {
2
+ production: boolean;
3
+ crypto_secret_key: string;
4
+ };
package/.browserslistrc DELETED
@@ -1,15 +0,0 @@
1
- # This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2
- # For additional information regarding the format and rule options, please see:
3
- # https://github.com/browserslist/browserslist#queries
4
-
5
- # For the full list of supported browsers by the Angular framework, please see:
6
- # https://angular.io/guide/browser-support
7
-
8
- # You can see what browsers were selected by your queries by running:
9
- # npx browserslist
10
-
11
- last 1 Chrome version
12
- last 1 Firefox version
13
- last 2 Edge major versions
14
- last 2 iOS major versions
15
- Firefox ESR
package/.editorconfig DELETED
@@ -1,16 +0,0 @@
1
- # Editor configuration, see https://editorconfig.org
2
- root = true
3
-
4
- [*]
5
- charset = utf-8
6
- indent_style = space
7
- indent_size = 2
8
- insert_final_newline = true
9
- trim_trailing_whitespace = true
10
-
11
- [*.ts]
12
- quote_type = single
13
-
14
- [*.md]
15
- max_line_length = off
16
- trim_trailing_whitespace = false
@@ -1,4 +0,0 @@
1
- {
2
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3
- "recommendations": ["angular.ng-template"]
4
- }
@@ -1,20 +0,0 @@
1
- {
2
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3
- "version": "0.2.0",
4
- "configurations": [
5
- {
6
- "name": "ng serve",
7
- "type": "pwa-chrome",
8
- "request": "launch",
9
- "preLaunchTask": "npm: start",
10
- "url": "http://localhost:4200/"
11
- },
12
- {
13
- "name": "ng test",
14
- "type": "chrome",
15
- "request": "launch",
16
- "preLaunchTask": "npm: test",
17
- "url": "http://localhost:9876/debug.html"
18
- }
19
- ]
20
- }
@@ -1,42 +0,0 @@
1
- {
2
- // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3
- "version": "2.0.0",
4
- "tasks": [
5
- {
6
- "type": "npm",
7
- "script": "start",
8
- "isBackground": true,
9
- "problemMatcher": {
10
- "owner": "typescript",
11
- "pattern": "$tsc",
12
- "background": {
13
- "activeOnStart": true,
14
- "beginsPattern": {
15
- "regexp": "(.*?)"
16
- },
17
- "endsPattern": {
18
- "regexp": "bundle generation complete"
19
- }
20
- }
21
- }
22
- },
23
- {
24
- "type": "npm",
25
- "script": "test",
26
- "isBackground": true,
27
- "problemMatcher": {
28
- "owner": "typescript",
29
- "pattern": "$tsc",
30
- "background": {
31
- "activeOnStart": true,
32
- "beginsPattern": {
33
- "regexp": "(.*?)"
34
- },
35
- "endsPattern": {
36
- "regexp": "bundle generation complete"
37
- }
38
- }
39
- }
40
- }
41
- ]
42
- }
package/angular.json DELETED
@@ -1,130 +0,0 @@
1
- {
2
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
- "cli": {
4
- "analytics": "56054afb-33a1-400b-8636-214fe47698bd"
5
- },
6
- "version": 1,
7
- "newProjectRoot": "projects",
8
- "projects": {
9
- "generalLibraryUnion": {
10
- "projectType": "application",
11
- "schematics": {
12
- "@schematics/angular:component": {
13
- "style": "scss"
14
- },
15
- "@schematics/angular:application": {
16
- "strict": true
17
- }
18
- },
19
- "root": "",
20
- "sourceRoot": "src",
21
- "prefix": "app",
22
- "architect": {
23
- "build": {
24
- "builder": "@angular-devkit/build-angular:browser",
25
- "options": {
26
- "outputPath": "dist/general-library-union",
27
- "index": "src/index.html",
28
- "main": "src/main.ts",
29
- "polyfills": "src/polyfills.ts",
30
- "tsConfig": "tsconfig.app.json",
31
- "inlineStyleLanguage": "scss",
32
- "assets": [
33
- "src/favicon.ico",
34
- "src/assets"
35
- ],
36
- "styles": [
37
- "node_modules/primeflex/primeflex.css",
38
- "src/styles/primeflex/primeflex.scss",
39
- "node_modules/primeng/resources/primeng.min.css",
40
- "node_modules/primeicons/primeicons.css",
41
- "src/styles.scss"
42
- ],
43
- "scripts": [
44
- "node_modules/prismjs/prism.js",
45
- "node_modules/prismjs/components/prism-typescript.js"
46
- ],
47
- "stylePreprocessorOptions": {
48
- "includePaths": [
49
- "src/styles/sass"
50
- ]
51
- },
52
- "allowedCommonJsDependencies": [
53
- "@fullcalendar/daygrid",
54
- "@fullcalendar/timegrid",
55
- "@fullcalendar/interaction",
56
- "chart.js",
57
- "rxjs-compat",
58
- "crypto-js"
59
- ]
60
- },
61
- "configurations": {
62
- "production": {
63
- "budgets": [
64
- {
65
- "type": "initial",
66
- "maximumWarning": "500kb",
67
- "maximumError": "1mb"
68
- },
69
- {
70
- "type": "anyComponentStyle",
71
- "maximumWarning": "2kb",
72
- "maximumError": "4kb"
73
- }
74
- ],
75
- "fileReplacements": [
76
- {
77
- "replace": "src/environments/environment.ts",
78
- "with": "src/environments/environment.prod.ts"
79
- }
80
- ],
81
- "outputHashing": "all"
82
- },
83
- "development": {
84
- "buildOptimizer": false,
85
- "optimization": false,
86
- "vendorChunk": true,
87
- "extractLicenses": false,
88
- "sourceMap": true,
89
- "namedChunks": true
90
- }
91
- },
92
- "defaultConfiguration": "production"
93
- },
94
- "serve": {
95
- "builder": "@angular-devkit/build-angular:dev-server",
96
- "configurations": {
97
- "production": {
98
- "buildTarget": "generalLibraryUnion:build:production"
99
- },
100
- "development": {
101
- "buildTarget": "generalLibraryUnion:build:development"
102
- }
103
- },
104
- "defaultConfiguration": "development"
105
- },
106
- "extract-i18n": {
107
- "builder": "@angular-devkit/build-angular:extract-i18n",
108
- "options": {
109
- "buildTarget": "generalLibraryUnion:build"
110
- }
111
- },
112
- "test": {
113
- "builder": "@angular-devkit/build-angular:karma",
114
- "options": {
115
- "main": "src/test.ts",
116
- "polyfills": "src/polyfills.ts",
117
- "tsConfig": "tsconfig.spec.json",
118
- "karmaConfig": "karma.conf.js",
119
- "inlineStyleLanguage": "scss",
120
- "assets": [
121
- "src/favicon.ico",
122
- "src/assets"
123
- ],
124
- "scripts": []
125
- }
126
- }
127
- }
128
- }
129
- }
130
- }
package/karma.conf.js DELETED
@@ -1,44 +0,0 @@
1
- // Karma configuration file, see link for more information
2
- // https://karma-runner.github.io/1.0/config/configuration-file.html
3
-
4
- module.exports = function (config) {
5
- config.set({
6
- basePath: '',
7
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
8
- plugins: [
9
- require('karma-jasmine'),
10
- require('karma-chrome-launcher'),
11
- require('karma-jasmine-html-reporter'),
12
- require('karma-coverage'),
13
- require('@angular-devkit/build-angular/plugins/karma')
14
- ],
15
- client: {
16
- jasmine: {
17
- // you can add configuration options for Jasmine here
18
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
19
- // for example, you can disable the random execution with `random: false`
20
- // or set a specific seed with `seed: 4321`
21
- },
22
- clearContext: false // leave Jasmine Spec Runner output visible in browser
23
- },
24
- jasmineHtmlReporter: {
25
- suppressAll: true // removes the duplicated traces
26
- },
27
- coverageReporter: {
28
- dir: require('path').join(__dirname, './coverage/general-library-union'),
29
- subdir: '.',
30
- reporters: [
31
- { type: 'html' },
32
- { type: 'text-summary' }
33
- ]
34
- },
35
- reporters: ['progress', 'kjhtml'],
36
- port: 9876,
37
- colors: true,
38
- logLevel: config.LOG_INFO,
39
- autoWatch: true,
40
- browsers: ['Chrome'],
41
- singleRun: false,
42
- restartOnFileChange: true
43
- });
44
- };
package/ng-package.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "$schema": "./node_modules/ng-packagr/ng-package.schema.json",
3
- "lib": {
4
- "entryFile": "public-api.ts",
5
- "styleIncludePaths": [
6
- "./src/styles",
7
- "./src/assets",
8
- "./src/styles.scss",
9
- "./src/styles-dark.scss"
10
- ]
11
- },
12
- "assets": [
13
- "./src/assets",
14
- "./src/styles",
15
- "./src/styles.scss",
16
- "./src/styles-dark.scss"
17
- ],
18
- "allowedNonPeerDependencies": [
19
- "fstream"
20
- ]
21
- }
File without changes
File without changes
@@ -1,29 +0,0 @@
1
- import { TestBed } from '@angular/core/testing';
2
- import { AppComponent } from './app.component';
3
-
4
- describe('AppComponent', () => {
5
- beforeEach(async () => {
6
- await TestBed.configureTestingModule({
7
- declarations: [AppComponent],
8
- }).compileComponents();
9
- });
10
-
11
- it('should create the app', () => {
12
- const fixture = TestBed.createComponent(AppComponent);
13
- const app = fixture.componentInstance;
14
- expect(app).toBeTruthy();
15
- });
16
-
17
- it(`should have as title 'generalLibraryUnion'`, () => {
18
- const fixture = TestBed.createComponent(AppComponent);
19
- const app = fixture.componentInstance;
20
- expect(app.title).toEqual('generalLibraryUnion');
21
- });
22
-
23
- it('should render title', () => {
24
- const fixture = TestBed.createComponent(AppComponent);
25
- fixture.detectChanges();
26
- const compiled = fixture.nativeElement as HTMLElement;
27
- expect(compiled.querySelector('.content span')?.textContent).toContain('generalLibraryUnion app is running!');
28
- });
29
- });
@@ -1,12 +0,0 @@
1
- import { Component } from '@angular/core';
2
-
3
- @Component({
4
- selector: 'app-root',
5
-
6
- standalone: true,
7
- templateUrl: './app.component.html',
8
- styleUrls: ['./app.component.scss']
9
- })
10
- export class AppComponent {
11
- title = 'generalLibraryUnion';
12
- }
@@ -1,8 +0,0 @@
1
- import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
2
- import { provideRouter } from '@angular/router';
3
-
4
- import { routes } from './app.routes';
5
-
6
- export const appConfig: ApplicationConfig = {
7
- providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes)]
8
- };
@@ -1,10 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
-
3
- @NgModule({
4
- declarations: [
5
-
6
- ],
7
- imports: [
8
- ]
9
- })
10
- export class AppModule { }
@@ -1,3 +0,0 @@
1
- import { Routes } from '@angular/router';
2
-
3
- export const routes: Routes = [];
@@ -1,6 +0,0 @@
1
- <div class="layout-breadcrumb-container flex justify-content-between align-items-center shadow-1">
2
- <p-breadcrumb [model]="items" [home]="home" styleClass="layout-breadcrumb pl-4 py-2"></p-breadcrumb>
3
- <div class="layout-breadcrumb-buttons flex align-items-center pr-3">
4
- <button pButton pRipple type="button" icon="pi pi-power-off" class="p-button-rounded p-button-text p-button-plain mr-1"></button>
5
- </div>
6
- </div>
@@ -1,34 +0,0 @@
1
- import { Component, OnDestroy, OnInit } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { MenuItem } from 'primeng/api';
4
- import { MenuService } from '../../../core/servicios/menu.service';
5
- import { UtilsService } from '../../servicios/utils.service';
6
- import { BreadcrumbModule } from 'primeng/breadcrumb';
7
-
8
- @Component({
9
- selector: 'app-breadcrumb',
10
- imports: [BreadcrumbModule],
11
- standalone: true,
12
- templateUrl: './breadcrumb.component.html',
13
- styleUrls: ['./breadcrumb.component.scss'],
14
- })
15
- export class BreadcrumbComponent implements OnInit, OnDestroy {
16
- subscription: Subscription;
17
- items: MenuItem[];
18
- home: MenuItem;
19
-
20
- constructor(private menuService: MenuService, public utilsService: UtilsService) {}
21
-
22
- ngOnInit(): void {
23
- this.subscription = this.menuService.breadcrumb.subscribe((items) => {
24
- this.items = items;
25
- });
26
- this.home = { icon: 'pi pi-home', routerLink: '/'+ this.utilsService.obtenerBase() + '/inicio' };
27
- }
28
-
29
- ngOnDestroy(): void {
30
- if (this.subscription) {
31
- this.subscription.unsubscribe();
32
- }
33
- }
34
- }
@@ -1 +0,0 @@
1
- <p-progressBar *ngIf="isLoading" mode="indeterminate" [style]="{'height': '3px'}"> </p-progressBar>
@@ -1,31 +0,0 @@
1
- import { Component, OnInit } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { LoadingService } from '../../servicios/loading.service';
4
- import { ProgressBarModule } from 'primeng/progressbar';
5
-
6
- @Component({
7
- selector: 'app-carga-breadcrumb',
8
- imports: [ProgressBarModule],
9
- standalone: true,
10
- templateUrl: './carga-breadcrumb.component.html',
11
- styleUrls: ['./carga-breadcrumb.component.scss']
12
- })
13
- export class CargaBreadcrumbComponent implements OnInit {
14
-
15
- isLoading: boolean = false;
16
- private loadingSubscription: Subscription;
17
-
18
- constructor(private loadingService:LoadingService) { }
19
-
20
- ngOnInit(): void {
21
- this.loadingSubscription = this.loadingService.loadingBreadCrumb.subscribe(status =>
22
- this.isLoading = status
23
- )
24
- }
25
-
26
- ngOnDestroy(): void {
27
- if(this.loadingSubscription){
28
- this.loadingSubscription.unsubscribe();
29
- }
30
- }
31
- }
@@ -1,9 +0,0 @@
1
- <div *ngIf="isLoading" class="progress-spinner">
2
- <div class="splash-screen">
3
- <div class="splash-loader-container">
4
- <svg class="splash-loader" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
5
- <circle class="splash-path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
6
- </svg>
7
- </div>
8
- </div>
9
- </div>
@@ -1,28 +0,0 @@
1
- .progress-spinner {
2
- position: fixed;
3
- z-index: 999;
4
- height: 2em;
5
- width: 2em;
6
- overflow: show;
7
- margin: auto;
8
- top: 0;
9
- left: 0;
10
- bottom: 0;
11
- right: 0;
12
- }
13
-
14
- /* Transparent Overlay */
15
- .progress-spinner:before {
16
- content: '';
17
- display: block;
18
- position: fixed;
19
- top: 0;
20
- left: 0;
21
- width: 100%;
22
- height: 100%;
23
- background-color: rgba(0,0,0,0.53);
24
- }
25
-
26
- .splash-screen{
27
- background: transparent !important;
28
- }
@@ -1,32 +0,0 @@
1
- import { Component, OnInit } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { LoadingService } from '../../servicios/loading.service';
4
- import { CommonModule } from '@angular/common';
5
-
6
- @Component({
7
- selector: 'app-carga-pantalla-completa',
8
- imports: [CommonModule],
9
- standalone: true,
10
- templateUrl: './carga-pantalla-completa.component.html',
11
- styleUrls: ['./carga-pantalla-completa.component.scss']
12
- })
13
- export class CargaPantallaCompletaComponent implements OnInit {
14
-
15
- public isLoading: boolean;
16
- loadingSubscription: Subscription;
17
-
18
- constructor(private loadingService: LoadingService) { }
19
-
20
- ngOnInit(): void {
21
- this.loadingSubscription = this.loadingService.loadingFullScreen.subscribe(
22
- state => this.isLoading = state
23
- )
24
- }
25
-
26
- ngOnDestroy(): void {
27
- if(this.loadingSubscription){
28
- this.loadingSubscription.unsubscribe();
29
- }
30
- }
31
-
32
- }
@@ -1,34 +0,0 @@
1
- <div class="flex justify-content-start align-items-center">
2
- <div class="flex align-items-center">
3
- <h4 class="m-0 mr-2 text-black-alpha-90">Filtros</h4>
4
- <button
5
- pButton
6
- pRipple
7
- type="button"
8
- icon="pi pi-filter"
9
- class="p-button-rounded p-button-outlined"
10
- (click)="abrirPanel($event)"
11
- ></button>
12
- </div>
13
- <div class="ml-3">
14
- <p-chip
15
- *ngFor="let chip of chips"
16
- [label]="chip.header + ': ' + (chip.labelMostrar.length > 100 ? chip.labelMostrar.substring(0, 100) + '...' : chip.labelMostrar)"
17
- styleClass="m-1"
18
- [removable]="true"
19
- (onRemove)="removeChip(chip)"
20
- ></p-chip>
21
- </div>
22
- </div>
23
-
24
- <p-overlayPanel (onHide)="onHide()" [dismissable]="false" [showCloseIcon]="true">
25
- <div class="grid p-input-filled">
26
- <form [formGroup]="filterForm" class="p-fluid col-12">
27
- <ng-container *ngTemplateOutlet="inputFilters; context: { $implicit: filterForm }"></ng-container>
28
- <div class="flex justify-content-end mt-2 align-items-center">
29
- <button pButton pRipple (click)="aplicarFiltros()" class="ml-2">{{'link_aplicar' | translate}}</button>
30
- <button pButton pRipple (click)="limpiarFiltros()" icon="glyphicons glyphicons-cleaning" class="p-button-rounded p-button-outlined ml-2"></button>
31
- </div>
32
- </form>
33
- </div>
34
- </p-overlayPanel>
@@ -1,3 +0,0 @@
1
- .grid .flex button:last-child {
2
- width: auto;
3
- }