@openmrs/esm-fast-data-entry-app 1.0.0-pre.9

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 (75) hide show
  1. package/.editorconfig +12 -0
  2. package/.eslintignore +2 -0
  3. package/.eslintrc +4 -0
  4. package/.github/workflows/node.js.yml +79 -0
  5. package/.husky/pre-commit +6 -0
  6. package/.husky/pre-push +6 -0
  7. package/.prettierignore +14 -0
  8. package/LICENSE +401 -0
  9. package/README.md +12 -0
  10. package/__mocks__/react-i18next.js +56 -0
  11. package/babel.config.json +8 -0
  12. package/dist/24.js +3 -0
  13. package/dist/24.js.LICENSE.txt +16 -0
  14. package/dist/24.js.map +1 -0
  15. package/dist/294.js +3 -0
  16. package/dist/294.js.LICENSE.txt +14 -0
  17. package/dist/294.js.map +1 -0
  18. package/dist/296.js +2 -0
  19. package/dist/296.js.map +1 -0
  20. package/dist/299.js +2 -0
  21. package/dist/299.js.map +1 -0
  22. package/dist/382.js +3 -0
  23. package/dist/382.js.LICENSE.txt +8 -0
  24. package/dist/382.js.map +1 -0
  25. package/dist/415.js +2 -0
  26. package/dist/415.js.map +1 -0
  27. package/dist/574.js +1 -0
  28. package/dist/595.js +3 -0
  29. package/dist/595.js.LICENSE.txt +1 -0
  30. package/dist/595.js.map +1 -0
  31. package/dist/69.js +2 -0
  32. package/dist/69.js.map +1 -0
  33. package/dist/735.js +3 -0
  34. package/dist/735.js.LICENSE.txt +29 -0
  35. package/dist/735.js.map +1 -0
  36. package/dist/777.js +2 -0
  37. package/dist/777.js.map +1 -0
  38. package/dist/860.js +2 -0
  39. package/dist/860.js.map +1 -0
  40. package/dist/906.js +2 -0
  41. package/dist/906.js.map +1 -0
  42. package/dist/openmrs-esm-fast-data-entry-app.js +1 -0
  43. package/dist/openmrs-esm-fast-data-entry-app.js.buildmanifest.json +369 -0
  44. package/dist/openmrs-esm-fast-data-entry-app.js.map +1 -0
  45. package/dist/openmrs-esm-fast-data-entry-app.old +2 -0
  46. package/jest.config.json +18 -0
  47. package/package.json +106 -0
  48. package/src/Root.tsx +16 -0
  49. package/src/boxes/extensions/blue-box.tsx +15 -0
  50. package/src/boxes/extensions/box.scss +23 -0
  51. package/src/boxes/extensions/brand-box.tsx +15 -0
  52. package/src/boxes/extensions/red-box.tsx +15 -0
  53. package/src/boxes/slot/boxes.css +23 -0
  54. package/src/boxes/slot/boxes.tsx +19 -0
  55. package/src/config-schema.ts +46 -0
  56. package/src/constant.ts +7 -0
  57. package/src/declarations.d.tsx +2 -0
  58. package/src/forms/FormsRoot.tsx +32 -0
  59. package/src/forms/FormsTable.tsx +64 -0
  60. package/src/forms/mockData.ts +43 -0
  61. package/src/forms-app-menu-link.tsx +12 -0
  62. package/src/greeter/greeter.css +4 -0
  63. package/src/greeter/greeter.test.tsx +29 -0
  64. package/src/greeter/greeter.tsx +25 -0
  65. package/src/hello.css +3 -0
  66. package/src/hello.test.tsx +45 -0
  67. package/src/hello.tsx +30 -0
  68. package/src/index.ts +75 -0
  69. package/src/patient-getter/patient-getter.resource.ts +31 -0
  70. package/src/patient-getter/patient-getter.test.tsx +28 -0
  71. package/src/patient-getter/patient-getter.tsx +28 -0
  72. package/src/setup-tests.ts +1 -0
  73. package/translations/en.json +4 -0
  74. package/tsconfig.json +23 -0
  75. package/webpack.config.js +1 -0
@@ -0,0 +1,29 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ Copyright (c) 2018 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+
13
+ /** @license React v0.19.1
14
+ * scheduler.production.min.js
15
+ *
16
+ * Copyright (c) Facebook, Inc. and its affiliates.
17
+ *
18
+ * This source code is licensed under the MIT license found in the
19
+ * LICENSE file in the root directory of this source tree.
20
+ */
21
+
22
+ /** @license React v16.14.0
23
+ * react-dom.production.min.js
24
+ *
25
+ * Copyright (c) Facebook, Inc. and its affiliates.
26
+ *
27
+ * This source code is licensed under the MIT license found in the
28
+ * LICENSE file in the root directory of this source tree.
29
+ */