@pucp-gidis-hiisc/esm-fua-app 1.1.0 → 1.2.0

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 (118) hide show
  1. package/dist/116.js +1 -0
  2. package/dist/116.js.map +1 -0
  3. package/dist/123.js +2 -0
  4. package/dist/123.js.map +1 -0
  5. package/dist/191.js +1 -0
  6. package/dist/191.js.map +1 -0
  7. package/dist/194.js +1 -0
  8. package/dist/194.js.map +1 -0
  9. package/dist/276.js +2 -0
  10. package/dist/{556.js.LICENSE.txt → 276.js.LICENSE.txt} +1 -11
  11. package/dist/276.js.map +1 -0
  12. package/dist/300.js +1 -1
  13. package/dist/31.js +1 -0
  14. package/dist/31.js.map +1 -0
  15. package/dist/322.js +1 -0
  16. package/dist/322.js.map +1 -0
  17. package/dist/336.js +1 -1
  18. package/dist/336.js.map +1 -1
  19. package/dist/372.js +1 -1
  20. package/dist/372.js.map +1 -1
  21. package/dist/397.js +1 -0
  22. package/dist/397.js.map +1 -0
  23. package/dist/41.js +1 -1
  24. package/dist/41.js.map +1 -1
  25. package/dist/457.js +1 -1
  26. package/dist/457.js.map +1 -1
  27. package/dist/464.js +1 -1
  28. package/dist/464.js.map +1 -1
  29. package/dist/470.js +1 -1
  30. package/dist/470.js.map +1 -1
  31. package/dist/495.js +2 -1
  32. package/dist/495.js.LICENSE.txt +9 -0
  33. package/dist/495.js.map +1 -1
  34. package/dist/51.js +2 -0
  35. package/dist/{main.js.LICENSE.txt → 51.js.LICENSE.txt} +18 -3
  36. package/dist/51.js.map +1 -0
  37. package/dist/661.js +1 -0
  38. package/dist/661.js.map +1 -0
  39. package/dist/69.js +1 -0
  40. package/dist/69.js.map +1 -0
  41. package/dist/745.js +1 -0
  42. package/dist/745.js.map +1 -0
  43. package/dist/794.js +1 -0
  44. package/dist/794.js.map +1 -0
  45. package/dist/810.js +1 -0
  46. package/dist/810.js.map +1 -0
  47. package/dist/876.js +1 -2
  48. package/dist/876.js.map +1 -1
  49. package/dist/89.js +1 -1
  50. package/dist/89.js.map +1 -1
  51. package/dist/913.js +1 -1
  52. package/dist/913.js.LICENSE.txt +3 -3
  53. package/dist/913.js.map +1 -1
  54. package/dist/932.js +1 -0
  55. package/dist/932.js.map +1 -0
  56. package/dist/964.js +1 -0
  57. package/dist/964.js.map +1 -0
  58. package/dist/99.js +1 -1
  59. package/dist/main.js +1 -2
  60. package/dist/main.js.map +1 -1
  61. package/dist/pucp-gidis-hiisc-esm-fua-app.js +1 -1
  62. package/dist/pucp-gidis-hiisc-esm-fua-app.js.buildmanifest.json +368 -101
  63. package/dist/pucp-gidis-hiisc-esm-fua-app.js.map +1 -1
  64. package/dist/routes.json +1 -1
  65. package/package.json +4 -2
  66. package/src/components/fua-html-viewer.component.tsx +81 -0
  67. package/src/components/fua-html-viewer.scss +44 -0
  68. package/src/components/summary-tiles/summary-tile.component.tsx +35 -0
  69. package/src/components/summary-tiles/summary-tiles.scss +64 -0
  70. package/src/config-schema.ts +15 -53
  71. package/src/declarations.d.ts +4 -6
  72. package/src/fua/fua-date-range-picker.component.tsx +38 -0
  73. package/src/fua/fua-date-range-picker.scss +15 -0
  74. package/src/fua/fua-header.scss +68 -0
  75. package/src/fua/{case-management-header.tsx → fua-header.tsx} +6 -6
  76. package/src/fua/{case-management-illustration.tsx → fua-illustration.tsx} +3 -3
  77. package/src/fua/fua-request-table.scss +80 -128
  78. package/src/fua/fuaRequestTable.tsx +148 -101
  79. package/src/fua-dashboard.component.tsx +25 -0
  80. package/src/fua-dashboard.scss +35 -0
  81. package/src/fua-tabs/data-table-extensions/all-fua-requests-table.extension.tsx +8 -0
  82. package/src/fua-tabs/data-table-extensions/completed-fua-requests-table.extension.tsx +8 -0
  83. package/src/fua-tabs/data-table-extensions/declined-fua-requests-table.extension.tsx +8 -0
  84. package/src/fua-tabs/data-table-extensions/in-progress-fua-requests-table.extension.tsx +8 -0
  85. package/src/fua-tabs/fua-tabs.component.tsx +74 -0
  86. package/src/fua-tabs/fua-tabs.scss +65 -0
  87. package/src/fua-tiles/all-fua-requests-tile.component.tsx +20 -0
  88. package/src/fua-tiles/completed-fua-requests-tile.component.tsx +19 -0
  89. package/src/fua-tiles/fua-summary-tiles.component.tsx +46 -0
  90. package/src/fua-tiles/fua-summary-tiles.scss +16 -0
  91. package/src/fua-tiles/in-progress-fua-requests-tile.component.tsx +20 -0
  92. package/src/fua-viewer-page/fua-viewer-page.component.tsx +90 -0
  93. package/src/fua-viewer-page/fua-viewer-page.scss +82 -0
  94. package/src/hooks/useFuaRequests.ts +93 -26
  95. package/src/index.ts +82 -7
  96. package/src/root.component.tsx +8 -0
  97. package/src/routes.json +94 -10
  98. package/src/types/index.ts +4 -0
  99. package/src/workspaces/fua-viewer.workspace.tsx +20 -0
  100. package/translations/en.json +15 -1
  101. package/translations/es.json +15 -1
  102. package/.turbo/turbo-build.log +0 -43
  103. package/.turbo/turbo-extract-translations.log +0 -11
  104. package/.turbo/turbo-lint.log +0 -14
  105. package/dist/144.js +0 -2
  106. package/dist/144.js.LICENSE.txt +0 -19
  107. package/dist/144.js.map +0 -1
  108. package/dist/466.js +0 -1
  109. package/dist/466.js.map +0 -1
  110. package/dist/556.js +0 -2
  111. package/dist/556.js.map +0 -1
  112. package/dist/596.js +0 -2
  113. package/dist/596.js.LICENSE.txt +0 -30
  114. package/dist/596.js.map +0 -1
  115. package/dist/790.js +0 -1
  116. package/dist/790.js.map +0 -1
  117. package/src/root.scss +0 -102
  118. /package/dist/{876.js.LICENSE.txt → 123.js.LICENSE.txt} +0 -0
@@ -1 +1 @@
1
- var _pucp_gidis_hiisc_esm_fua_app;(()=>{"use strict";var e,r,t,n,a,o,i,l,s,u,f,p,c,d,h,m,v,g,b,y,_,w={5835:(e,r,t)=>{var n={"./start":()=>Promise.all([t.e(144),t.e(596),t.e(466),t.e(343),t.e(953),t.e(790)]).then(()=>()=>t(8790))},a=(e,r)=>(t.R=r,r=t.o(n,e)?n[e]():Promise.resolve().then(()=>{throw new Error('Module "'+e+'" does not exist in container.')}),t.R=void 0,r),o=(e,r)=>{if(t.S){var n="default",a=t.S[n];if(a&&a!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[n]=e,t.I(n,r)}};t.d(r,{get:()=>a,init:()=>o})}},P={};function S(e){var r=P[e];if(void 0!==r)return r.exports;var t=P[e]={id:e,exports:{}};return w[e].call(t.exports,t,t.exports,S),t.exports}S.m=w,S.c=P,S.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return S.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,S.t=function(t,n){if(1&n&&(t=this(t)),8&n)return t;if("object"==typeof t&&t){if(4&n&&t.__esModule)return t;if(16&n&&"function"==typeof t.then)return t}var a=Object.create(null);S.r(a);var o={};e=e||[null,r({}),r([]),r(r)];for(var i=2&n&&t;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=r(i))Object.getOwnPropertyNames(i).forEach(e=>o[e]=()=>t[e]);return o.default=()=>t,S.d(a,o),a},S.d=(e,r)=>{for(var t in r)S.o(r,t)&&!S.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},S.f={},S.e=e=>Promise.all(Object.keys(S.f).reduce((r,t)=>(S.f[t](e,r),r),[])),S.u=e=>e+".js",S.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t={},n="@pucp-gidis-hiisc/esm-fua-app:",S.l=(e,r,a,o)=>{if(t[e])t[e].push(r);else{var i,l;if(void 0!==a)for(var s=document.getElementsByTagName("script"),u=0;u<s.length;u++){var f=s[u];if(f.getAttribute("src")==e||f.getAttribute("data-webpack")==n+a){i=f;break}}i||(l=!0,(i=document.createElement("script")).charset="utf-8",S.nc&&i.setAttribute("nonce",S.nc),i.setAttribute("data-webpack",n+a),i.src=e),t[e]=[r];var p=(r,n)=>{i.onerror=i.onload=null,clearTimeout(c);var a=t[e];if(delete t[e],i.parentNode&&i.parentNode.removeChild(i),a&&a.forEach(e=>e(n)),r)return r(n)},c=setTimeout(p.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=p.bind(null,i.onerror),i.onload=p.bind(null,i.onload),l&&document.head.appendChild(i)}},S.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{S.S={};var e={},r={};S.I=(t,n)=>{n||(n=[]);var a=r[t];if(a||(a=r[t]={}),!(n.indexOf(a)>=0)){if(n.push(a),e[t])return e[t];S.o(S.S,t)||(S.S[t]={});var o=S.S[t],i="@pucp-gidis-hiisc/esm-fua-app",l=(e,r,t,n)=>{var a=o[e]=o[e]||{},l=a[r];(!l||!l.loaded&&(!n!=!l.eager?n:i>l.from))&&(a[r]={get:t,from:i,eager:!!n})},s=[];return"default"===t&&(l("@openmrs/esm-framework","8.0.1-pre.3485",()=>Promise.all([S.e(144),S.e(556),S.e(596),S.e(343),S.e(434),S.e(475),S.e(953)]).then(()=>()=>S(5556))),l("dayjs","1.11.19",()=>S.e(464).then(()=>()=>S(3464))),l("react-i18next","15.7.4",()=>Promise.all([S.e(336),S.e(343)]).then(()=>()=>S(6336))),l("react-router-dom","6.30.2",()=>Promise.all([S.e(144),S.e(913),S.e(343)]).then(()=>()=>S(2913))),l("react","18.3.1",()=>S.e(41).then(()=>()=>S(4041))),l("rxjs","6.6.7",()=>S.e(457).then(()=>()=>S(2457))),l("swr/_internal","2.2.5",()=>Promise.all([S.e(372),S.e(343)]).then(()=>()=>S(2372))),l("swr/immutable","2.2.5",()=>Promise.all([S.e(343),S.e(434),S.e(876)]).then(()=>()=>S(9876))),l("swr/infinite","2.2.5",()=>Promise.all([S.e(343),S.e(434),S.e(89)]).then(()=>()=>S(2470)))),e[t]=s.length?Promise.all(s).then(()=>e[t]=1):1}}})(),(()=>{var e;globalThis.importScripts&&(e=globalThis.location+"");var r=globalThis.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var n=t.length-1;n>-1&&(!e||!/^http(s?):/.test(e));)e=t[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),S.p=e})(),a=e=>{var r=e=>e.split(".").map(e=>+e==e?+e:e),t=/^([^-+]+)?(?:-([^+]+))?(?:\+(.+))?$/.exec(e),n=t[1]?r(t[1]):[];return t[2]&&(n.length++,n.push.apply(n,r(t[2]))),t[3]&&(n.push([]),n.push.apply(n,r(t[3]))),n},o=(e,r)=>{e=a(e),r=a(r);for(var t=0;;){if(t>=e.length)return t<r.length&&"u"!=(typeof r[t])[0];var n=e[t],o=(typeof n)[0];if(t>=r.length)return"u"==o;var i=r[t],l=(typeof i)[0];if(o!=l)return"o"==o&&"n"==l||"s"==l||"u"==o;if("o"!=o&&"u"!=o&&n!=i)return n<i;t++}},i=e=>{var r=e[0],t="";if(1===e.length)return"*";if(r+.5){t+=0==r?">=":-1==r?"<":1==r?"^":2==r?"~":r>0?"=":"!=";for(var n=1,a=1;a<e.length;a++)n--,t+="u"==(typeof(l=e[a]))[0]?"-":(n>0?".":"")+(n=2,l);return t}var o=[];for(a=1;a<e.length;a++){var l=e[a];o.push(0===l?"not("+s()+")":1===l?"("+s()+" || "+s()+")":2===l?o.pop()+" "+o.pop():i(l))}return s();function s(){return o.pop().replace(/^\((.+)\)$/,"$1")}},l=(e,r)=>{if(0 in e){r=a(r);var t=e[0],n=t<0;n&&(t=-t-1);for(var o=0,i=1,s=!0;;i++,o++){var u,f,p=i<e.length?(typeof e[i])[0]:"";if(o>=r.length||"o"==(f=(typeof(u=r[o]))[0]))return!s||("u"==p?i>t&&!n:""==p!=n);if("u"==f){if(!s||"u"!=p)return!1}else if(s)if(p==f)if(i<=t){if(u!=e[i])return!1}else{if(n?u>e[i]:u<e[i])return!1;u!=e[i]&&(s=!1)}else if("s"!=p&&"n"!=p){if(n||i<=t)return!1;s=!1,i--}else{if(i<=t||f<p!=n)return!1;s=!1}else"s"!=p&&"n"!=p&&(s=!1,i--)}}var c=[],d=c.pop.bind(c);for(o=1;o<e.length;o++){var h=e[o];c.push(1==h?d()|d():2==h?d()&d():h?l(h,r):!d())}return!!d()},s=(e,r)=>e&&S.o(e,r),u=e=>(e.loaded=1,e.get()),f=e=>Object.keys(e).reduce((r,t)=>(e[t].eager&&(r[t]=e[t]),r),{}),p=(e,r,t)=>{var n=t?f(e[r]):e[r];return Object.keys(n).reduce((e,r)=>!e||!n[e].loaded&&o(e,r)?r:e,0)},c=(e,r,t,n)=>"Unsatisfied version "+t+" from "+(t&&e[r][t].from)+" of shared singleton module "+r+" (required "+i(n)+")",d=e=>{throw new Error(e)},h=e=>{"undefined"!=typeof console&&console.warn&&console.warn(e)},m=(e,r,t)=>t?t():((e,r)=>d("Shared module "+r+" doesn't exist in shared scope "+e))(e,r),v=(e=>function(r,t,n,a,o){var i=S.I(r);return i&&i.then&&!n?i.then(e.bind(e,r,S.S[r],t,!1,a,o)):e(r,S.S[r],t,n,a,o)})((e,r,t,n,a,o)=>{if(!s(r,t))return m(e,t,o);var i=p(r,t,n);return l(a,i)||h(c(r,t,i,a)),u(r[t][i])}),g={},b={1343:()=>v("default","react",!1,[1,18],()=>S.e(41).then(()=>()=>S(4041))),3053:()=>v("default","swr/_internal",!1,[1,2],()=>S.e(372).then(()=>()=>S(2372))),4818:()=>v("default","rxjs",!1,[1,6],()=>S.e(457).then(()=>()=>S(2457))),6372:()=>v("default","dayjs",!1,[1,1],()=>S.e(464).then(()=>()=>S(3464))),8010:()=>v("default","swr/immutable",!1,[1,2],()=>S.e(495).then(()=>()=>S(9876))),8394:()=>v("default","swr/infinite",!1,[1,2],()=>S.e(470).then(()=>()=>S(2470))),1106:()=>v("default","react-i18next",!1,[1,15],()=>S.e(336).then(()=>()=>S(6336))),4440:()=>v("default","@openmrs/esm-framework",!1,[1,8],()=>Promise.all([S.e(556),S.e(434),S.e(475)]).then(()=>()=>S(5556))),8877:()=>v("default","react-router-dom",!1,[1,6],()=>S.e(913).then(()=>()=>S(2913)))},y={343:[1343],434:[3053],475:[4818,6372,8010,8394],953:[1106,4440,8877]},_={},S.f.consumes=(e,r)=>{S.o(y,e)&&y[e].forEach(e=>{if(S.o(g,e))return r.push(g[e]);if(!_[e]){var t=r=>{g[e]=0,S.m[e]=t=>{delete S.c[e],t.exports=r()}};_[e]=!0;var n=r=>{delete g[e],S.m[e]=t=>{throw delete S.c[e],r}};try{var a=b[e]();a.then?r.push(g[e]=a.then(t).catch(n)):t(a)}catch(e){n(e)}}})},(()=>{var e={188:0};S.f.j=(r,t)=>{var n=S.o(e,r)?e[r]:void 0;if(0!==n)if(n)t.push(n[2]);else if(/^(343|434|475|953)$/.test(r))e[r]=0;else{var a=new Promise((t,a)=>n=e[r]=[t,a]);t.push(n[2]=a);var o=S.p+S.u(r),i=new Error;S.l(o,t=>{if(S.o(e,r)&&(0!==(n=e[r])&&(e[r]=void 0),n)){var a=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;i.message="Loading chunk "+r+" failed.\n("+a+": "+o+")",i.name="ChunkLoadError",i.type=a,i.request=o,n[1](i)}},"chunk-"+r,r)}};var r=(r,t)=>{var n,a,[o,i,l]=t,s=0;if(o.some(r=>0!==e[r])){for(n in i)S.o(i,n)&&(S.m[n]=i[n]);l&&l(S)}for(r&&r(t);s<o.length;s++)a=o[s],S.o(e,a)&&e[a]&&e[a][0](),e[a]=0},t=globalThis.webpackChunk_pucp_gidis_hiisc_esm_fua_app=globalThis.webpackChunk_pucp_gidis_hiisc_esm_fua_app||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),S.nc=void 0;var j=S(5835);_pucp_gidis_hiisc_esm_fua_app=j})();
1
+ var _pucp_gidis_hiisc_esm_fua_app;(()=>{"use strict";var e,r,t,n,o,a,i,u,s,l,f,p,c,d,h,m,v,g,b,y,_,w,P,j={35835:(e,r,t)=>{var n={"./start":()=>Promise.all([t.e(661),t.e(343),t.e(232),t.e(745)]).then((()=>()=>t(1745)))},o=(e,r)=>(t.R=r,r=t.o(n,e)?n[e]():Promise.resolve().then((()=>{throw new Error('Module "'+e+'" does not exist in container.')})),t.R=void 0,r),a=(e,r)=>{if(t.S){var n="default",o=t.S[n];if(o&&o!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[n]=e,t.I(n,r)}};t.d(r,{get:()=>o,init:()=>a})}},S={};function O(e){var r=S[e];if(void 0!==r)return r.exports;var t=S[e]={id:e,exports:{}};return j[e].call(t.exports,t,t.exports,O),t.exports}O.m=j,O.c=S,O.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return O.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,O.t=function(t,n){if(1&n&&(t=this(t)),8&n)return t;if("object"==typeof t&&t){if(4&n&&t.__esModule)return t;if(16&n&&"function"==typeof t.then)return t}var o=Object.create(null);O.r(o);var a={};e=e||[null,r({}),r([]),r(r)];for(var i=2&n&&t;"object"==typeof i&&!~e.indexOf(i);i=r(i))Object.getOwnPropertyNames(i).forEach((e=>a[e]=()=>t[e]));return a.default=()=>t,O.d(o,a),o},O.d=(e,r)=>{for(var t in r)O.o(r,t)&&!O.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},O.f={},O.e=e=>Promise.all(Object.keys(O.f).reduce(((r,t)=>(O.f[t](e,r),r)),[])),O.u=e=>e+".js",O.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),O.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t={},n="@pucp-gidis-hiisc/esm-fua-app:",O.l=(e,r,o,a)=>{if(t[e])t[e].push(r);else{var i,u;if(void 0!==o)for(var s=document.getElementsByTagName("script"),l=0;l<s.length;l++){var f=s[l];if(f.getAttribute("src")==e||f.getAttribute("data-webpack")==n+o){i=f;break}}i||(u=!0,(i=document.createElement("script")).charset="utf-8",i.timeout=120,O.nc&&i.setAttribute("nonce",O.nc),i.setAttribute("data-webpack",n+o),i.src=e),t[e]=[r];var p=(r,n)=>{i.onerror=i.onload=null,clearTimeout(c);var o=t[e];if(delete t[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach((e=>e(n))),r)return r(n)},c=setTimeout(p.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=p.bind(null,i.onerror),i.onload=p.bind(null,i.onload),u&&document.head.appendChild(i)}},O.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{O.S={};var e={},r={};O.I=(t,n)=>{n||(n=[]);var o=r[t];if(o||(o=r[t]={}),!(n.indexOf(o)>=0)){if(n.push(o),e[t])return e[t];O.o(O.S,t)||(O.S[t]={});var a=O.S[t],i="@pucp-gidis-hiisc/esm-fua-app",u=(e,r,t,n)=>{var o=a[e]=a[e]||{},u=o[r];(!u||!u.loaded&&(!n!=!u.eager?n:i>u.from))&&(o[r]={get:t,from:i,eager:!!n})},s=[];return"default"===t&&(u("@openmrs/esm-framework","8.0.1-pre.3614",(()=>Promise.all([O.e(51),O.e(123),O.e(276),O.e(661),O.e(434),O.e(343),O.e(232),O.e(494)]).then((()=>()=>O(89276))))),u("dayjs","1.11.13",(()=>O.e(464).then((()=>()=>O(23464))))),u("react-i18next","16.0.0",(()=>Promise.all([O.e(336),O.e(343)]).then((()=>()=>O(16336))))),u("react-router-dom","6.16.0",(()=>Promise.all([O.e(913),O.e(343)]).then((()=>()=>O(52913))))),u("react","18.3.1",(()=>O.e(41).then((()=>()=>O(14041))))),u("rxjs","6.6.7",(()=>O.e(457).then((()=>()=>O(82457))))),u("swr/_internal","2.2.5",(()=>Promise.all([O.e(372),O.e(343)]).then((()=>()=>O(42372))))),u("swr/immutable","2.2.5",(()=>Promise.all([O.e(434),O.e(343),O.e(495)]).then((()=>()=>O(29876))))),u("swr/infinite","2.2.5",(()=>Promise.all([O.e(434),O.e(343),O.e(89)]).then((()=>()=>O(52470)))))),e[t]=s.length?Promise.all(s).then((()=>e[t]=1)):1}}})(),(()=>{var e;O.g.importScripts&&(e=O.g.location+"");var r=O.g.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var n=t.length-1;n>-1&&(!e||!/^http(s?):/.test(e));)e=t[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),O.p=e})(),o=e=>{var r=e=>e.split(".").map((e=>+e==e?+e:e)),t=/^([^-+]+)?(?:-([^+]+))?(?:\+(.+))?$/.exec(e),n=t[1]?r(t[1]):[];return t[2]&&(n.length++,n.push.apply(n,r(t[2]))),t[3]&&(n.push([]),n.push.apply(n,r(t[3]))),n},a=(e,r)=>{e=o(e),r=o(r);for(var t=0;;){if(t>=e.length)return t<r.length&&"u"!=(typeof r[t])[0];var n=e[t],a=(typeof n)[0];if(t>=r.length)return"u"==a;var i=r[t],u=(typeof i)[0];if(a!=u)return"o"==a&&"n"==u||"s"==u||"u"==a;if("o"!=a&&"u"!=a&&n!=i)return n<i;t++}},i=e=>{var r=e[0],t="";if(1===e.length)return"*";if(r+.5){t+=0==r?">=":-1==r?"<":1==r?"^":2==r?"~":r>0?"=":"!=";for(var n=1,o=1;o<e.length;o++)n--,t+="u"==(typeof(u=e[o]))[0]?"-":(n>0?".":"")+(n=2,u);return t}var a=[];for(o=1;o<e.length;o++){var u=e[o];a.push(0===u?"not("+s()+")":1===u?"("+s()+" || "+s()+")":2===u?a.pop()+" "+a.pop():i(u))}return s();function s(){return a.pop().replace(/^\((.+)\)$/,"$1")}},u=(e,r)=>{if(0 in e){r=o(r);var t=e[0],n=t<0;n&&(t=-t-1);for(var a=0,i=1,s=!0;;i++,a++){var l,f,p=i<e.length?(typeof e[i])[0]:"";if(a>=r.length||"o"==(f=(typeof(l=r[a]))[0]))return!s||("u"==p?i>t&&!n:""==p!=n);if("u"==f){if(!s||"u"!=p)return!1}else if(s)if(p==f)if(i<=t){if(l!=e[i])return!1}else{if(n?l>e[i]:l<e[i])return!1;l!=e[i]&&(s=!1)}else if("s"!=p&&"n"!=p){if(n||i<=t)return!1;s=!1,i--}else{if(i<=t||f<p!=n)return!1;s=!1}else"s"!=p&&"n"!=p&&(s=!1,i--)}}var c=[],d=c.pop.bind(c);for(a=1;a<e.length;a++){var h=e[a];c.push(1==h?d()|d():2==h?d()&d():h?u(h,r):!d())}return!!d()},s=(e,r)=>e&&O.o(e,r),l=e=>(e.loaded=1,e.get()),f=e=>Object.keys(e).reduce(((r,t)=>(e[t].eager&&(r[t]=e[t]),r)),{}),p=(e,r,t)=>{var n=t?f(e[r]):e[r];return Object.keys(n).reduce(((e,r)=>!e||!n[e].loaded&&a(e,r)?r:e),0)},c=(e,r,t,n)=>"Unsatisfied version "+t+" from "+(t&&e[r][t].from)+" of shared singleton module "+r+" (required "+i(n)+")",d=e=>{throw new Error(e)},h=e=>{"undefined"!=typeof console&&console.warn&&console.warn(e)},v=(e,r,t)=>t?t():((e,r)=>d("Shared module "+r+" doesn't exist in shared scope "+e))(e,r),g=(m=e=>function(r,t,n,o,a){var i=O.I(r);return i&&i.then&&!n?i.then(e.bind(e,r,O.S[r],t,!1,o,a)):e(r,O.S[r],t,n,o,a)})(((e,r,t,n,o)=>{if(!s(r,t))return v(e,t,o);var a=p(r,t,n);return l(r[t][a])})),b=m(((e,r,t,n,o,a)=>{if(!s(r,t))return v(e,t,a);var i=p(r,t,n);return u(o,i)||h(c(r,t,i,o)),l(r[t][i])})),y={},_={55434:()=>b("default","swr/_internal",!1,[1,2],(()=>O.e(372).then((()=>()=>O(42372))))),1343:()=>b("default","react",!1,[1,18],(()=>O.e(41).then((()=>()=>O(14041))))),8877:()=>b("default","react-router-dom",!1,[1,6],(()=>O.e(913).then((()=>()=>O(52913))))),46372:()=>b("default","dayjs",!1,[1,1],(()=>O.e(464).then((()=>()=>O(23464))))),54440:()=>b("default","@openmrs/esm-framework",!1,[1,8],(()=>Promise.all([O.e(51),O.e(123),O.e(276),O.e(434),O.e(494)]).then((()=>()=>O(89276))))),93150:()=>b("default","react-i18next",!1,[1,11],(()=>O.e(336).then((()=>()=>O(16336))))),24818:()=>b("default","rxjs",!1,[1,6],(()=>O.e(457).then((()=>()=>O(82457))))),88010:()=>b("default","swr/immutable",!1,[1,2],(()=>O.e(876).then((()=>()=>O(29876))))),98394:()=>b("default","swr/infinite",!1,[1,2],(()=>O.e(470).then((()=>()=>O(52470))))),12306:()=>g("default","@openmrs/esm-framework/src/internal",!1,(()=>Promise.all([O.e(51),O.e(123),O.e(276),O.e(434),O.e(494)]).then((()=>()=>O(89276)))))},w={232:[8877,46372,54440,93150],343:[1343],434:[55434],494:[24818,88010,98394],745:[12306]},P={},O.f.consumes=(e,r)=>{O.o(w,e)&&w[e].forEach((e=>{if(O.o(y,e))return r.push(y[e]);if(!P[e]){var t=r=>{y[e]=0,O.m[e]=t=>{delete O.c[e],t.exports=r()}};P[e]=!0;var n=r=>{delete y[e],O.m[e]=t=>{throw delete O.c[e],r}};try{var o=_[e]();o.then?r.push(y[e]=o.then(t).catch(n)):t(o)}catch(e){n(e)}}}))},(()=>{var e={188:0};O.f.j=(r,t)=>{var n=O.o(e,r)?e[r]:void 0;if(0!==n)if(n)t.push(n[2]);else if(/^(232|343|434|494)$/.test(r))e[r]=0;else{var o=new Promise(((t,o)=>n=e[r]=[t,o]));t.push(n[2]=o);var a=O.p+O.u(r),i=new Error;O.l(a,(t=>{if(O.o(e,r)&&(0!==(n=e[r])&&(e[r]=void 0),n)){var o=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;i.message="Loading chunk "+r+" failed.\n("+o+": "+a+")",i.name="ChunkLoadError",i.type=o,i.request=a,n[1](i)}}),"chunk-"+r,r)}};var r=(r,t)=>{var n,o,[a,i,u]=t,s=0;if(a.some((r=>0!==e[r]))){for(n in i)O.o(i,n)&&(O.m[n]=i[n]);u&&u(O)}for(r&&r(t);s<a.length;s++)o=a[s],O.o(e,o)&&e[o]&&e[o][0](),e[o]=0},t=globalThis.webpackChunk_pucp_gidis_hiisc_esm_fua_app=globalThis.webpackChunk_pucp_gidis_hiisc_esm_fua_app||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),O.nc=void 0;var k=O(35835);_pucp_gidis_hiisc_esm_fua_app=k})();