@ampath/esm-dha-workflow-app 4.0.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +12 -0
- package/.eslintignore +2 -0
- package/.eslintrc +57 -0
- package/.husky/pre-commit +7 -0
- package/.husky/pre-push +6 -0
- package/.prettierignore +14 -0
- package/.turbo.json +18 -0
- package/.yarn/plugins/@yarnpkg/plugin-outdated.cjs +35 -0
- package/LICENSE +401 -0
- package/README.md +37 -0
- package/__mocks__/react-i18next.js +50 -0
- package/dist/184.js +2 -0
- package/dist/184.js.LICENSE.txt +14 -0
- package/dist/184.js.map +1 -0
- package/dist/197.js +1 -0
- package/dist/255.js +1 -0
- package/dist/255.js.map +1 -0
- package/dist/282.js +2 -0
- package/dist/282.js.LICENSE.txt +32 -0
- package/dist/282.js.map +1 -0
- package/dist/300.js +1 -0
- package/dist/335.js +1 -0
- package/dist/353.js +1 -0
- package/dist/353.js.map +1 -0
- package/dist/420.js +1 -0
- package/dist/420.js.map +1 -0
- package/dist/540.js +2 -0
- package/dist/540.js.LICENSE.txt +9 -0
- package/dist/540.js.map +1 -0
- package/dist/55.js +1 -0
- package/dist/561.js +2 -0
- package/dist/561.js.LICENSE.txt +14 -0
- package/dist/561.js.map +1 -0
- package/dist/652.js +1 -0
- package/dist/70.js +1 -0
- package/dist/70.js.map +1 -0
- package/dist/731.js +2 -0
- package/dist/731.js.LICENSE.txt +39 -0
- package/dist/731.js.map +1 -0
- package/dist/819.js +1 -0
- package/dist/819.js.map +1 -0
- package/dist/91.js +1 -0
- package/dist/91.js.map +1 -0
- package/dist/961.js +2 -0
- package/dist/961.js.LICENSE.txt +19 -0
- package/dist/961.js.map +1 -0
- package/dist/99.js +1 -0
- package/dist/main.js +1 -0
- package/dist/main.js.map +1 -0
- package/dist/openmrs-esm-home-app.js +1 -0
- package/dist/openmrs-esm-home-app.js.buildmanifest.json +580 -0
- package/dist/openmrs-esm-home-app.js.map +1 -0
- package/dist/routes.json +1 -0
- package/e2e/README.md +115 -0
- package/e2e/core/global-setup.ts +32 -0
- package/e2e/core/index.ts +1 -0
- package/e2e/core/test.ts +20 -0
- package/e2e/fixtures/api.ts +26 -0
- package/e2e/fixtures/index.ts +1 -0
- package/e2e/pages/index.ts +1 -0
- package/e2e/pages/root-page.ts +32 -0
- package/e2e/specs/template-app.spec.ts +23 -0
- package/e2e/support/github/Dockerfile +34 -0
- package/e2e/support/github/docker-compose.yml +24 -0
- package/e2e/support/github/run-e2e-docker-env.sh +37 -0
- package/example.env +6 -0
- package/jest.config.js +33 -0
- package/package.json +111 -0
- package/playwright.config.ts +32 -0
- package/prettier.config.js +8 -0
- package/src/boxes/extensions/blue-box.component.tsx +15 -0
- package/src/boxes/extensions/box.scss +23 -0
- package/src/boxes/extensions/brand-box.component.tsx +15 -0
- package/src/boxes/extensions/red-box.component.tsx +15 -0
- package/src/boxes/slot/boxes.component.tsx +25 -0
- package/src/boxes/slot/boxes.scss +29 -0
- package/src/config-schema.ts +43 -0
- package/src/declarations.d.ts +5 -0
- package/src/greeter/greeter.component.tsx +42 -0
- package/src/greeter/greeter.scss +20 -0
- package/src/greeter/greeter.test.tsx +28 -0
- package/src/index.ts +46 -0
- package/src/patient-getter/patient-getter.component.tsx +40 -0
- package/src/patient-getter/patient-getter.resource.ts +39 -0
- package/src/patient-getter/patient-getter.scss +16 -0
- package/src/patient-getter/patient-getter.test.tsx +40 -0
- package/src/registry/registry.component.tsx +7 -0
- package/src/resources/resources.component.tsx +56 -0
- package/src/resources/resources.scss +68 -0
- package/src/root.component.tsx +39 -0
- package/src/root.scss +15 -0
- package/src/root.test.tsx +51 -0
- package/src/routes.json +19 -0
- package/src/side-nav/side-menu.scss +38 -0
- package/src/side-nav-menu/nav-links.tsx +22 -0
- package/src/widgets/workflow-registry-link.extension.tsx +12 -0
- package/tools/i18next-parser.config.js +89 -0
- package/tools/setup-tests.ts +1 -0
- package/tools/update-openmrs-deps.mjs +43 -0
- package/translations/am.json +24 -0
- package/translations/en.json +24 -0
- package/translations/es.json +24 -0
- package/translations/fr.json +24 -0
- package/translations/he.json +24 -0
- package/translations/km.json +24 -0
- package/tsconfig.json +24 -0
- package/webpack.config.js +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* decimal.js v10.5.0
|
|
3
|
+
* An arbitrary-precision Decimal type for JavaScript.
|
|
4
|
+
* https://github.com/MikeMcl/decimal.js
|
|
5
|
+
* Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
|
|
6
|
+
* MIT Licence
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/*!
|
|
10
|
+
* Determine if an object is a Buffer
|
|
11
|
+
*
|
|
12
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
13
|
+
* @license MIT
|
|
14
|
+
*/
|