@koech/esm-core 8.0.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 (1833) hide show
  1. package/.editorconfig +12 -0
  2. package/.eslintignore +3 -0
  3. package/.eslintrc +72 -0
  4. package/.github/pull_request_template.md +22 -0
  5. package/.github/workflows/bundle-size.yml +30 -0
  6. package/.github/workflows/ci.yml +159 -0
  7. package/.github/workflows/code-ql.yml +71 -0
  8. package/.github/workflows/docs.yml +21 -0
  9. package/.github/workflows/e2e.yml +214 -0
  10. package/.github/workflows/tx-pull.yml +57 -0
  11. package/.github/workflows/tx-push.yml +21 -0
  12. package/.husky/pre-commit +8 -0
  13. package/.husky/pre-push +6 -0
  14. package/.prettierignore +9 -0
  15. package/.tx/config +42 -0
  16. package/.yarn/plugins/@yarnpkg/plugin-outdated.cjs +35 -0
  17. package/.yarn/releases/yarn-4.10.3.cjs +942 -0
  18. package/.yarn/versions/643d2b70.yml +21 -0
  19. package/.yarnrc.yml +14 -0
  20. package/LICENSE +401 -0
  21. package/README.md +371 -0
  22. package/document.sh +10 -0
  23. package/e2e/core/global-setup.ts +32 -0
  24. package/e2e/core/index.ts +1 -0
  25. package/e2e/core/test.ts +9 -0
  26. package/e2e/pages/home-page.ts +9 -0
  27. package/e2e/pages/index.ts +2 -0
  28. package/e2e/pages/login-page.ts +9 -0
  29. package/e2e/specs/login.spec.ts +55 -0
  30. package/e2e/specs/logout.spec.ts +42 -0
  31. package/e2e/specs/navbar.spec.ts +48 -0
  32. package/e2e/support/bamboo/docker-compose.yml +56 -0
  33. package/e2e/support/bamboo/e2e-test-runner.sh +13 -0
  34. package/e2e/support/bamboo/playwright.Dockerfile +12 -0
  35. package/e2e/support/github/.dockerignore +2 -0
  36. package/e2e/support/github/Dockerfile +21 -0
  37. package/e2e/support/github/commit_and_export_images.sh +17 -0
  38. package/e2e/support/github/docker-compose.yml +31 -0
  39. package/e2e/support/github/run-e2e-docker-env.sh +354 -0
  40. package/example.env +6 -0
  41. package/markdown_link_check_config.json +24 -0
  42. package/package.json +73 -0
  43. package/packages/apps/esm-devtools-app/README.md +37 -0
  44. package/packages/apps/esm-devtools-app/package.json +65 -0
  45. package/packages/apps/esm-devtools-app/setup-tests.ts +8 -0
  46. package/packages/apps/esm-devtools-app/src/declarations.d.ts +2 -0
  47. package/packages/apps/esm-devtools-app/src/devtools/devtools-popup.component.tsx +25 -0
  48. package/packages/apps/esm-devtools-app/src/devtools/devtools-popup.styles.scss +39 -0
  49. package/packages/apps/esm-devtools-app/src/devtools/devtools.component.tsx +37 -0
  50. package/packages/apps/esm-devtools-app/src/devtools/devtools.styles.scss +32 -0
  51. package/packages/apps/esm-devtools-app/src/devtools/devtools.test.tsx +84 -0
  52. package/packages/apps/esm-devtools-app/src/devtools/import-map-list/import-map.modal.tsx +131 -0
  53. package/packages/apps/esm-devtools-app/src/devtools/import-map-list/import-map.scss +5 -0
  54. package/packages/apps/esm-devtools-app/src/devtools/import-map-list/list.component.tsx +391 -0
  55. package/packages/apps/esm-devtools-app/src/devtools/import-map-list/list.scss +82 -0
  56. package/packages/apps/esm-devtools-app/src/devtools/import-map-list/types.ts +7 -0
  57. package/packages/apps/esm-devtools-app/src/devtools/import-map.component.tsx +32 -0
  58. package/packages/apps/esm-devtools-app/src/devtools/import-map.styles.css +4 -0
  59. package/packages/apps/esm-devtools-app/src/index.ts +15 -0
  60. package/packages/apps/esm-devtools-app/src/routes.json +17 -0
  61. package/packages/apps/esm-devtools-app/translations/en.json +19 -0
  62. package/packages/apps/esm-devtools-app/tsconfig.json +24 -0
  63. package/packages/apps/esm-devtools-app/vitest.config.ts +9 -0
  64. package/packages/apps/esm-devtools-app/webpack.config.js +1 -0
  65. package/packages/apps/esm-help-menu-app/package.json +65 -0
  66. package/packages/apps/esm-help-menu-app/setup-tests.ts +11 -0
  67. package/packages/apps/esm-help-menu-app/src/declarations.d.ts +1 -0
  68. package/packages/apps/esm-help-menu-app/src/help-menu/components/contact-us.component.tsx +22 -0
  69. package/packages/apps/esm-help-menu-app/src/help-menu/components/docs.component.tsx +22 -0
  70. package/packages/apps/esm-help-menu-app/src/help-menu/components/release-notes.component.tsx +23 -0
  71. package/packages/apps/esm-help-menu-app/src/help-menu/components/styles.scss +13 -0
  72. package/packages/apps/esm-help-menu-app/src/help-menu/help-popup.component.tsx +20 -0
  73. package/packages/apps/esm-help-menu-app/src/help-menu/help-popup.styles.scss +31 -0
  74. package/packages/apps/esm-help-menu-app/src/help-menu/help.component.tsx +63 -0
  75. package/packages/apps/esm-help-menu-app/src/help-menu/help.styles.scss +27 -0
  76. package/packages/apps/esm-help-menu-app/src/index.ts +17 -0
  77. package/packages/apps/esm-help-menu-app/src/root.component.tsx +8 -0
  78. package/packages/apps/esm-help-menu-app/src/routes.json +32 -0
  79. package/packages/apps/esm-help-menu-app/translations/en.json +6 -0
  80. package/packages/apps/esm-help-menu-app/tsconfig.json +24 -0
  81. package/packages/apps/esm-help-menu-app/vitest.config.ts +9 -0
  82. package/packages/apps/esm-help-menu-app/webpack.config.js +2 -0
  83. package/packages/apps/esm-implementer-tools-app/README.md +6 -0
  84. package/packages/apps/esm-implementer-tools-app/__mocks__/react-i18next.js +49 -0
  85. package/packages/apps/esm-implementer-tools-app/jest.config.js +22 -0
  86. package/packages/apps/esm-implementer-tools-app/package.json +65 -0
  87. package/packages/apps/esm-implementer-tools-app/setup-tests.ts +3 -0
  88. package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/backend-dependencies.component.tsx +88 -0
  89. package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/backend-dependencies.styles.scss +14 -0
  90. package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/openmrs-backend-dependencies.test.ts +434 -0
  91. package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/openmrs-backend-dependencies.ts +221 -0
  92. package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/useBackendDependencies.ts +16 -0
  93. package/packages/apps/esm-implementer-tools-app/src/config-edit-button/config-edit-button.component.tsx +20 -0
  94. package/packages/apps/esm-implementer-tools-app/src/configuration/configuration.component.tsx +202 -0
  95. package/packages/apps/esm-implementer-tools-app/src/configuration/configuration.styles.scss +92 -0
  96. package/packages/apps/esm-implementer-tools-app/src/configuration/configuration.test.tsx +394 -0
  97. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-subtree.component.tsx +59 -0
  98. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-tree-for-module.component.tsx +19 -0
  99. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-tree.component.tsx +36 -0
  100. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-tree.styles.scss +15 -0
  101. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/description.component.tsx +38 -0
  102. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/description.styles.scss +29 -0
  103. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/display-value.scss +6 -0
  104. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/display-value.tsx +40 -0
  105. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/editable-value.component.tsx +151 -0
  106. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/editable-value.styles.scss +30 -0
  107. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/extension-configure-tree.tsx +23 -0
  108. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/extension-slots-config-tree.tsx +138 -0
  109. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/layout/layout.styles.scss +25 -0
  110. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/layout/subtree.component.tsx +45 -0
  111. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/layout/tree-container.component.tsx +15 -0
  112. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/validators.resource.ts +147 -0
  113. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editor.styles.scss +20 -0
  114. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editor.tsx +88 -0
  115. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/array-editor.styles.scss +25 -0
  116. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/array-editor.tsx +84 -0
  117. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/concept-search.resource.tsx +45 -0
  118. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/concept-search.styles.scss +42 -0
  119. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/concept-search.tsx +87 -0
  120. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/extension-slot-add.tsx +28 -0
  121. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/extension-slot-order.tsx +5 -0
  122. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/extension-slot-remove.tsx +18 -0
  123. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/object-editor.styles.scss +13 -0
  124. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/object-editor.tsx +59 -0
  125. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/patient-identifier-type-search.tsx +82 -0
  126. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/patient-identifier-type.resource.tsx +32 -0
  127. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/person-attribute-search.resource.tsx +13 -0
  128. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/person-attribute-search.tsx +96 -0
  129. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/uuid-search.scss +40 -0
  130. package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/value-editor-field.tsx +92 -0
  131. package/packages/apps/esm-implementer-tools-app/src/configuration/json-editor/json-editor.component.tsx +80 -0
  132. package/packages/apps/esm-implementer-tools-app/src/configuration/json-editor/json-editor.scss +27 -0
  133. package/packages/apps/esm-implementer-tools-app/src/declarations.d.ts +1 -0
  134. package/packages/apps/esm-implementer-tools-app/src/feature-flags/feature-flags.component.tsx +99 -0
  135. package/packages/apps/esm-implementer-tools-app/src/feature-flags/feature-flags.scss +18 -0
  136. package/packages/apps/esm-implementer-tools-app/src/frontend-modules/frontend-modules.component.tsx +82 -0
  137. package/packages/apps/esm-implementer-tools-app/src/frontend-modules/frontend-modules.scss +18 -0
  138. package/packages/apps/esm-implementer-tools-app/src/global-implementer-tools-button.test.tsx +12 -0
  139. package/packages/apps/esm-implementer-tools-app/src/global-implementer-tools.component.tsx +27 -0
  140. package/packages/apps/esm-implementer-tools-app/src/hooks.ts +13 -0
  141. package/packages/apps/esm-implementer-tools-app/src/implementer-tools.button.tsx +26 -0
  142. package/packages/apps/esm-implementer-tools-app/src/implementer-tools.component.tsx +64 -0
  143. package/packages/apps/esm-implementer-tools-app/src/implementer-tools.styles.scss +43 -0
  144. package/packages/apps/esm-implementer-tools-app/src/implementer-tools.test.tsx +9 -0
  145. package/packages/apps/esm-implementer-tools-app/src/index.ts +20 -0
  146. package/packages/apps/esm-implementer-tools-app/src/popup/popup.component.tsx +89 -0
  147. package/packages/apps/esm-implementer-tools-app/src/popup/popup.styles.scss +78 -0
  148. package/packages/apps/esm-implementer-tools-app/src/routes.json +21 -0
  149. package/packages/apps/esm-implementer-tools-app/src/store.ts +110 -0
  150. package/packages/apps/esm-implementer-tools-app/src/types.ts +5 -0
  151. package/packages/apps/esm-implementer-tools-app/src/ui-editor/extension-overlay.component.tsx +40 -0
  152. package/packages/apps/esm-implementer-tools-app/src/ui-editor/portal.tsx +5 -0
  153. package/packages/apps/esm-implementer-tools-app/src/ui-editor/styles.scss +87 -0
  154. package/packages/apps/esm-implementer-tools-app/src/ui-editor/ui-editor.tsx +201 -0
  155. package/packages/apps/esm-implementer-tools-app/translations/am.json +46 -0
  156. package/packages/apps/esm-implementer-tools-app/translations/ar.json +46 -0
  157. package/packages/apps/esm-implementer-tools-app/translations/ar_SY.json +46 -0
  158. package/packages/apps/esm-implementer-tools-app/translations/bn.json +46 -0
  159. package/packages/apps/esm-implementer-tools-app/translations/cs.json +46 -0
  160. package/packages/apps/esm-implementer-tools-app/translations/de.json +46 -0
  161. package/packages/apps/esm-implementer-tools-app/translations/en.json +46 -0
  162. package/packages/apps/esm-implementer-tools-app/translations/en_US.json +46 -0
  163. package/packages/apps/esm-implementer-tools-app/translations/es.json +46 -0
  164. package/packages/apps/esm-implementer-tools-app/translations/es_MX.json +46 -0
  165. package/packages/apps/esm-implementer-tools-app/translations/fr.json +46 -0
  166. package/packages/apps/esm-implementer-tools-app/translations/he.json +46 -0
  167. package/packages/apps/esm-implementer-tools-app/translations/hi.json +46 -0
  168. package/packages/apps/esm-implementer-tools-app/translations/hi_IN.json +46 -0
  169. package/packages/apps/esm-implementer-tools-app/translations/id.json +46 -0
  170. package/packages/apps/esm-implementer-tools-app/translations/it.json +46 -0
  171. package/packages/apps/esm-implementer-tools-app/translations/ka.json +46 -0
  172. package/packages/apps/esm-implementer-tools-app/translations/km.json +46 -0
  173. package/packages/apps/esm-implementer-tools-app/translations/ku.json +46 -0
  174. package/packages/apps/esm-implementer-tools-app/translations/ky.json +46 -0
  175. package/packages/apps/esm-implementer-tools-app/translations/lg.json +46 -0
  176. package/packages/apps/esm-implementer-tools-app/translations/ne.json +46 -0
  177. package/packages/apps/esm-implementer-tools-app/translations/pl.json +46 -0
  178. package/packages/apps/esm-implementer-tools-app/translations/pt.json +46 -0
  179. package/packages/apps/esm-implementer-tools-app/translations/pt_BR.json +46 -0
  180. package/packages/apps/esm-implementer-tools-app/translations/qu.json +46 -0
  181. package/packages/apps/esm-implementer-tools-app/translations/ro_RO.json +46 -0
  182. package/packages/apps/esm-implementer-tools-app/translations/ru_RU.json +46 -0
  183. package/packages/apps/esm-implementer-tools-app/translations/si.json +46 -0
  184. package/packages/apps/esm-implementer-tools-app/translations/sq.json +46 -0
  185. package/packages/apps/esm-implementer-tools-app/translations/sw.json +46 -0
  186. package/packages/apps/esm-implementer-tools-app/translations/sw_KE.json +46 -0
  187. package/packages/apps/esm-implementer-tools-app/translations/tr.json +46 -0
  188. package/packages/apps/esm-implementer-tools-app/translations/tr_TR.json +46 -0
  189. package/packages/apps/esm-implementer-tools-app/translations/uk.json +46 -0
  190. package/packages/apps/esm-implementer-tools-app/translations/uz.json +46 -0
  191. package/packages/apps/esm-implementer-tools-app/translations/uz@Latn.json +46 -0
  192. package/packages/apps/esm-implementer-tools-app/translations/uz_UZ.json +46 -0
  193. package/packages/apps/esm-implementer-tools-app/translations/vi.json +46 -0
  194. package/packages/apps/esm-implementer-tools-app/translations/zh.json +46 -0
  195. package/packages/apps/esm-implementer-tools-app/translations/zh_CN.json +46 -0
  196. package/packages/apps/esm-implementer-tools-app/translations/zh_TW.json +46 -0
  197. package/packages/apps/esm-implementer-tools-app/tsconfig.json +27 -0
  198. package/packages/apps/esm-implementer-tools-app/webpack.config.js +1 -0
  199. package/packages/apps/esm-login-app/README.md +4 -0
  200. package/packages/apps/esm-login-app/__mocks__/config.mock.ts +26 -0
  201. package/packages/apps/esm-login-app/__mocks__/locations.mock.ts +540 -0
  202. package/packages/apps/esm-login-app/__mocks__/react-i18next.js +49 -0
  203. package/packages/apps/esm-login-app/assets/medicine.jpg +0 -0
  204. package/packages/apps/esm-login-app/jest.config.js +20 -0
  205. package/packages/apps/esm-login-app/package.json +72 -0
  206. package/packages/apps/esm-login-app/rspack.config.js +1 -0
  207. package/packages/apps/esm-login-app/src/change-location-link/change-location-link.extension.tsx +32 -0
  208. package/packages/apps/esm-login-app/src/change-location-link/change-location-link.scss +17 -0
  209. package/packages/apps/esm-login-app/src/change-location-link/change-location-link.test.tsx +36 -0
  210. package/packages/apps/esm-login-app/src/change-password/change-password-link.extension.tsx +30 -0
  211. package/packages/apps/esm-login-app/src/change-password/change-password-link.test.tsx +27 -0
  212. package/packages/apps/esm-login-app/src/change-password/change-password-modal.scss +11 -0
  213. package/packages/apps/esm-login-app/src/change-password/change-password.component.tsx +159 -0
  214. package/packages/apps/esm-login-app/src/change-password/change-password.modal.tsx +175 -0
  215. package/packages/apps/esm-login-app/src/change-password/change-password.resource.ts +12 -0
  216. package/packages/apps/esm-login-app/src/change-password/change-password.scss +51 -0
  217. package/packages/apps/esm-login-app/src/change-password/change-password.test.tsx +53 -0
  218. package/packages/apps/esm-login-app/src/common/otp/otp.component.tsx +54 -0
  219. package/packages/apps/esm-login-app/src/common/otp/otp.scss +13 -0
  220. package/packages/apps/esm-login-app/src/common/resend-timer/resend-timer.component.tsx +51 -0
  221. package/packages/apps/esm-login-app/src/common/resend-timer/resend-timer.scss +7 -0
  222. package/packages/apps/esm-login-app/src/config-schema.ts +130 -0
  223. package/packages/apps/esm-login-app/src/declarations.d.ts +3 -0
  224. package/packages/apps/esm-login-app/src/footer.component.tsx +60 -0
  225. package/packages/apps/esm-login-app/src/footer.scss +113 -0
  226. package/packages/apps/esm-login-app/src/index.ts +27 -0
  227. package/packages/apps/esm-login-app/src/loading/loading.component.tsx +11 -0
  228. package/packages/apps/esm-login-app/src/loading/loading.scss +7 -0
  229. package/packages/apps/esm-login-app/src/location-picker/location-picker-view.component.tsx +174 -0
  230. package/packages/apps/esm-login-app/src/location-picker/location-picker.resource.ts +111 -0
  231. package/packages/apps/esm-login-app/src/location-picker/location-picker.scss +94 -0
  232. package/packages/apps/esm-login-app/src/location-picker/location-picker.test.tsx +341 -0
  233. package/packages/apps/esm-login-app/src/login/login.component.tsx +273 -0
  234. package/packages/apps/esm-login-app/src/login/login.scss +167 -0
  235. package/packages/apps/esm-login-app/src/login/login.test.tsx +288 -0
  236. package/packages/apps/esm-login-app/src/login.resource.ts +147 -0
  237. package/packages/apps/esm-login-app/src/logo.component.tsx +23 -0
  238. package/packages/apps/esm-login-app/src/logout/logout.extension.tsx +23 -0
  239. package/packages/apps/esm-login-app/src/logout/logout.scss +12 -0
  240. package/packages/apps/esm-login-app/src/otp/otp.component.tsx +102 -0
  241. package/packages/apps/esm-login-app/src/otp/otp.scss +46 -0
  242. package/packages/apps/esm-login-app/src/redirect-logout/logout.resource.ts +15 -0
  243. package/packages/apps/esm-login-app/src/redirect-logout/redirect-logout.component.tsx +42 -0
  244. package/packages/apps/esm-login-app/src/redirect-logout/redirect-logout.test.tsx +180 -0
  245. package/packages/apps/esm-login-app/src/resources/otp.resource.ts +40 -0
  246. package/packages/apps/esm-login-app/src/root.component.tsx +24 -0
  247. package/packages/apps/esm-login-app/src/routes.json +63 -0
  248. package/packages/apps/esm-login-app/src/setupTests.ts +15 -0
  249. package/packages/apps/esm-login-app/src/test-helpers/render-with-router.tsx +17 -0
  250. package/packages/apps/esm-login-app/src/types.ts +34 -0
  251. package/packages/apps/esm-login-app/translations/am.json +41 -0
  252. package/packages/apps/esm-login-app/translations/ar.json +41 -0
  253. package/packages/apps/esm-login-app/translations/ar_SY.json +41 -0
  254. package/packages/apps/esm-login-app/translations/bn.json +41 -0
  255. package/packages/apps/esm-login-app/translations/cs.json +41 -0
  256. package/packages/apps/esm-login-app/translations/de.json +41 -0
  257. package/packages/apps/esm-login-app/translations/en.json +41 -0
  258. package/packages/apps/esm-login-app/translations/en_US.json +41 -0
  259. package/packages/apps/esm-login-app/translations/es.json +41 -0
  260. package/packages/apps/esm-login-app/translations/es_MX.json +41 -0
  261. package/packages/apps/esm-login-app/translations/fr.json +41 -0
  262. package/packages/apps/esm-login-app/translations/he.json +41 -0
  263. package/packages/apps/esm-login-app/translations/hi.json +41 -0
  264. package/packages/apps/esm-login-app/translations/hi_IN.json +41 -0
  265. package/packages/apps/esm-login-app/translations/id.json +41 -0
  266. package/packages/apps/esm-login-app/translations/it.json +41 -0
  267. package/packages/apps/esm-login-app/translations/ka.json +41 -0
  268. package/packages/apps/esm-login-app/translations/km.json +41 -0
  269. package/packages/apps/esm-login-app/translations/ku.json +41 -0
  270. package/packages/apps/esm-login-app/translations/ky.json +41 -0
  271. package/packages/apps/esm-login-app/translations/lg.json +41 -0
  272. package/packages/apps/esm-login-app/translations/ne.json +41 -0
  273. package/packages/apps/esm-login-app/translations/pl.json +41 -0
  274. package/packages/apps/esm-login-app/translations/pt.json +41 -0
  275. package/packages/apps/esm-login-app/translations/pt_BR.json +41 -0
  276. package/packages/apps/esm-login-app/translations/qu.json +41 -0
  277. package/packages/apps/esm-login-app/translations/ro_RO.json +41 -0
  278. package/packages/apps/esm-login-app/translations/ru_RU.json +41 -0
  279. package/packages/apps/esm-login-app/translations/si.json +41 -0
  280. package/packages/apps/esm-login-app/translations/sq.json +41 -0
  281. package/packages/apps/esm-login-app/translations/sw.json +41 -0
  282. package/packages/apps/esm-login-app/translations/sw_KE.json +41 -0
  283. package/packages/apps/esm-login-app/translations/tr.json +41 -0
  284. package/packages/apps/esm-login-app/translations/tr_TR.json +41 -0
  285. package/packages/apps/esm-login-app/translations/uk.json +41 -0
  286. package/packages/apps/esm-login-app/translations/uz.json +41 -0
  287. package/packages/apps/esm-login-app/translations/uz@Latn.json +41 -0
  288. package/packages/apps/esm-login-app/translations/uz_UZ.json +41 -0
  289. package/packages/apps/esm-login-app/translations/vi.json +41 -0
  290. package/packages/apps/esm-login-app/translations/zh.json +41 -0
  291. package/packages/apps/esm-login-app/translations/zh_CN.json +41 -0
  292. package/packages/apps/esm-login-app/translations/zh_TW.json +41 -0
  293. package/packages/apps/esm-login-app/tsconfig.json +25 -0
  294. package/packages/apps/esm-offline-tools-app/README.md +3 -0
  295. package/packages/apps/esm-offline-tools-app/jest.config.js +16 -0
  296. package/packages/apps/esm-offline-tools-app/package.json +67 -0
  297. package/packages/apps/esm-offline-tools-app/src/assets/success-notification.svg +8 -0
  298. package/packages/apps/esm-offline-tools-app/src/components/confirmation.modal.tsx +54 -0
  299. package/packages/apps/esm-offline-tools-app/src/components/headered-quick-info.component.tsx +20 -0
  300. package/packages/apps/esm-offline-tools-app/src/components/headered-quick-info.styles.scss +11 -0
  301. package/packages/apps/esm-offline-tools-app/src/components/overview-card.component.tsx +38 -0
  302. package/packages/apps/esm-offline-tools-app/src/components/overview-card.styles.scss +33 -0
  303. package/packages/apps/esm-offline-tools-app/src/components/shared-page-layout.component.tsx +23 -0
  304. package/packages/apps/esm-offline-tools-app/src/components/shared-page-layout.styles.scss +22 -0
  305. package/packages/apps/esm-offline-tools-app/src/constants.ts +14 -0
  306. package/packages/apps/esm-offline-tools-app/src/createDashboardLink.tsx +55 -0
  307. package/packages/apps/esm-offline-tools-app/src/dashboard.meta.ts +6 -0
  308. package/packages/apps/esm-offline-tools-app/src/declarations.d.ts +2 -0
  309. package/packages/apps/esm-offline-tools-app/src/home/cards-container.component.tsx +14 -0
  310. package/packages/apps/esm-offline-tools-app/src/home/cards-container.styles.scss +14 -0
  311. package/packages/apps/esm-offline-tools-app/src/home/home.component.tsx +30 -0
  312. package/packages/apps/esm-offline-tools-app/src/home/home.styles.scss +7 -0
  313. package/packages/apps/esm-offline-tools-app/src/hooks/offline-actions.ts +16 -0
  314. package/packages/apps/esm-offline-tools-app/src/hooks/offline-patient-data-hooks.ts +106 -0
  315. package/packages/apps/esm-offline-tools-app/src/index.ts +113 -0
  316. package/packages/apps/esm-offline-tools-app/src/nav/desktop-side-nav.component.tsx +23 -0
  317. package/packages/apps/esm-offline-tools-app/src/nav/desktop-side-nav.styles.scss +38 -0
  318. package/packages/apps/esm-offline-tools-app/src/nav/offline-tools-nav-link.component.tsx +24 -0
  319. package/packages/apps/esm-offline-tools-app/src/nav/offline-tools-nav-menu.component.tsx +16 -0
  320. package/packages/apps/esm-offline-tools-app/src/offline-actions/no-actions-empty-state.component.tsx +31 -0
  321. package/packages/apps/esm-offline-tools-app/src/offline-actions/no-actions-empty-state.styles.scss +30 -0
  322. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-mode-button.extension.tsx +36 -0
  323. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-mode-button.scss +27 -0
  324. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-overview-card.component.tsx +31 -0
  325. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-page.component.tsx +53 -0
  326. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-page.styles.scss +14 -0
  327. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-patient-chart-widget.component.tsx +36 -0
  328. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-patient-chart-widget.styles.scss +46 -0
  329. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-table.component.tsx +255 -0
  330. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-table.styles.scss +39 -0
  331. package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions.component.tsx +75 -0
  332. package/packages/apps/esm-offline-tools-app/src/offline-actions/synchronizing-notification.styles.scss +9 -0
  333. package/packages/apps/esm-offline-tools-app/src/offline-actions/synchronizing-notification.tsx +85 -0
  334. package/packages/apps/esm-offline-tools-app/src/offline-patients/empty-data-illustration.component.tsx +39 -0
  335. package/packages/apps/esm-offline-tools-app/src/offline-patients/empty-state.component.tsx +33 -0
  336. package/packages/apps/esm-offline-tools-app/src/offline-patients/empty-state.scss +56 -0
  337. package/packages/apps/esm-offline-tools-app/src/offline-patients/last-updated-table-cell.component.tsx +90 -0
  338. package/packages/apps/esm-offline-tools-app/src/offline-patients/last-updated-table-cell.scss +16 -0
  339. package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-sync-details.component.tsx +71 -0
  340. package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-sync-details.styles.scss +57 -0
  341. package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-table.component.tsx +315 -0
  342. package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-table.scss +63 -0
  343. package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patients.component.tsx +35 -0
  344. package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patients.styles.scss +6 -0
  345. package/packages/apps/esm-offline-tools-app/src/offline-patients/overview-offline-patient-table.component.tsx +8 -0
  346. package/packages/apps/esm-offline-tools-app/src/offline-patients/patient-name-table-cell.component.tsx +32 -0
  347. package/packages/apps/esm-offline-tools-app/src/offline-patients/patient-name-table-cell.scss +8 -0
  348. package/packages/apps/esm-offline-tools-app/src/offline-patients/patients-overview-card.component.tsx +28 -0
  349. package/packages/apps/esm-offline-tools-app/src/offline-tools-app-menu-link.component.tsx +12 -0
  350. package/packages/apps/esm-offline-tools-app/src/offline-tools-page/offline-tools-page.component.tsx +31 -0
  351. package/packages/apps/esm-offline-tools-app/src/offline.ts +32 -0
  352. package/packages/apps/esm-offline-tools-app/src/root.component.tsx +25 -0
  353. package/packages/apps/esm-offline-tools-app/src/root.styles.scss +5 -0
  354. package/packages/apps/esm-offline-tools-app/src/routes.json +144 -0
  355. package/packages/apps/esm-offline-tools-app/src/setup-tests.js +5 -0
  356. package/packages/apps/esm-offline-tools-app/src/types/index.ts +4 -0
  357. package/packages/apps/esm-offline-tools-app/translations/am.json +57 -0
  358. package/packages/apps/esm-offline-tools-app/translations/ar.json +57 -0
  359. package/packages/apps/esm-offline-tools-app/translations/ar_SY.json +57 -0
  360. package/packages/apps/esm-offline-tools-app/translations/bn.json +57 -0
  361. package/packages/apps/esm-offline-tools-app/translations/cs.json +57 -0
  362. package/packages/apps/esm-offline-tools-app/translations/de.json +57 -0
  363. package/packages/apps/esm-offline-tools-app/translations/en.json +57 -0
  364. package/packages/apps/esm-offline-tools-app/translations/en_US.json +57 -0
  365. package/packages/apps/esm-offline-tools-app/translations/es.json +57 -0
  366. package/packages/apps/esm-offline-tools-app/translations/es_MX.json +57 -0
  367. package/packages/apps/esm-offline-tools-app/translations/fr.json +57 -0
  368. package/packages/apps/esm-offline-tools-app/translations/he.json +57 -0
  369. package/packages/apps/esm-offline-tools-app/translations/hi.json +57 -0
  370. package/packages/apps/esm-offline-tools-app/translations/hi_IN.json +57 -0
  371. package/packages/apps/esm-offline-tools-app/translations/id.json +57 -0
  372. package/packages/apps/esm-offline-tools-app/translations/it.json +57 -0
  373. package/packages/apps/esm-offline-tools-app/translations/ka.json +57 -0
  374. package/packages/apps/esm-offline-tools-app/translations/km.json +57 -0
  375. package/packages/apps/esm-offline-tools-app/translations/ku.json +57 -0
  376. package/packages/apps/esm-offline-tools-app/translations/ky.json +57 -0
  377. package/packages/apps/esm-offline-tools-app/translations/lg.json +57 -0
  378. package/packages/apps/esm-offline-tools-app/translations/ne.json +57 -0
  379. package/packages/apps/esm-offline-tools-app/translations/pl.json +57 -0
  380. package/packages/apps/esm-offline-tools-app/translations/pt.json +57 -0
  381. package/packages/apps/esm-offline-tools-app/translations/pt_BR.json +57 -0
  382. package/packages/apps/esm-offline-tools-app/translations/qu.json +57 -0
  383. package/packages/apps/esm-offline-tools-app/translations/ro_RO.json +57 -0
  384. package/packages/apps/esm-offline-tools-app/translations/ru_RU.json +57 -0
  385. package/packages/apps/esm-offline-tools-app/translations/si.json +57 -0
  386. package/packages/apps/esm-offline-tools-app/translations/sq.json +57 -0
  387. package/packages/apps/esm-offline-tools-app/translations/sw.json +57 -0
  388. package/packages/apps/esm-offline-tools-app/translations/sw_KE.json +57 -0
  389. package/packages/apps/esm-offline-tools-app/translations/tr.json +57 -0
  390. package/packages/apps/esm-offline-tools-app/translations/tr_TR.json +57 -0
  391. package/packages/apps/esm-offline-tools-app/translations/uk.json +57 -0
  392. package/packages/apps/esm-offline-tools-app/translations/uz.json +57 -0
  393. package/packages/apps/esm-offline-tools-app/translations/uz@Latn.json +57 -0
  394. package/packages/apps/esm-offline-tools-app/translations/uz_UZ.json +57 -0
  395. package/packages/apps/esm-offline-tools-app/translations/vi.json +57 -0
  396. package/packages/apps/esm-offline-tools-app/translations/zh.json +57 -0
  397. package/packages/apps/esm-offline-tools-app/translations/zh_CN.json +57 -0
  398. package/packages/apps/esm-offline-tools-app/translations/zh_TW.json +57 -0
  399. package/packages/apps/esm-offline-tools-app/tsconfig.json +25 -0
  400. package/packages/apps/esm-offline-tools-app/webpack.config.js +1 -0
  401. package/packages/apps/esm-primary-navigation-app/README.md +3 -0
  402. package/packages/apps/esm-primary-navigation-app/__mocks__/mock-session.ts +23 -0
  403. package/packages/apps/esm-primary-navigation-app/__mocks__/mock-user.ts +23 -0
  404. package/packages/apps/esm-primary-navigation-app/__mocks__/openmrs-esm-framework.mock.tsx +30 -0
  405. package/packages/apps/esm-primary-navigation-app/__mocks__/react-i18next.mock.js +49 -0
  406. package/packages/apps/esm-primary-navigation-app/jest.config.js +18 -0
  407. package/packages/apps/esm-primary-navigation-app/package.json +66 -0
  408. package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language-link.extension.tsx +37 -0
  409. package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language-link.scss +14 -0
  410. package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.modal.tsx +115 -0
  411. package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.resource.ts +35 -0
  412. package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.scss +43 -0
  413. package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.test.tsx +107 -0
  414. package/packages/apps/esm-primary-navigation-app/src/components/dashboard/dashboard.component.tsx +96 -0
  415. package/packages/apps/esm-primary-navigation-app/src/components/generic-link/generic-link.component.tsx +25 -0
  416. package/packages/apps/esm-primary-navigation-app/src/components/logo/logo.component.tsx +28 -0
  417. package/packages/apps/esm-primary-navigation-app/src/components/logo/logo.scss +11 -0
  418. package/packages/apps/esm-primary-navigation-app/src/components/logo/logo.test.tsx +79 -0
  419. package/packages/apps/esm-primary-navigation-app/src/components/nav-group/nav-group.component.tsx +52 -0
  420. package/packages/apps/esm-primary-navigation-app/src/components/navbar/app-menu-button.component.tsx +43 -0
  421. package/packages/apps/esm-primary-navigation-app/src/components/navbar/navbar.component.tsx +123 -0
  422. package/packages/apps/esm-primary-navigation-app/src/components/navbar/navbar.scss +51 -0
  423. package/packages/apps/esm-primary-navigation-app/src/components/navbar/types.ts +5 -0
  424. package/packages/apps/esm-primary-navigation-app/src/components/navbar/user-menu-button.component.tsx +44 -0
  425. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/app-menu-panel.component.tsx +48 -0
  426. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/app-menu-panel.scss +43 -0
  427. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/notifications-menu-panel.component.tsx +23 -0
  428. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/notifications-menu-panel.test.tsx +9 -0
  429. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/notifications-menu.panel.scss +9 -0
  430. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/side-menu-panel.component.tsx +37 -0
  431. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/user-menu-panel.component.tsx +32 -0
  432. package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/user-menu-panel.scss +65 -0
  433. package/packages/apps/esm-primary-navigation-app/src/components/user-panel-switcher-item/user-panel-switcher.component.tsx +15 -0
  434. package/packages/apps/esm-primary-navigation-app/src/components/user-panel-switcher-item/user-panel-switcher.test.tsx +22 -0
  435. package/packages/apps/esm-primary-navigation-app/src/config-schema.ts +56 -0
  436. package/packages/apps/esm-primary-navigation-app/src/constants.ts +2 -0
  437. package/packages/apps/esm-primary-navigation-app/src/declarations.d.ts +1 -0
  438. package/packages/apps/esm-primary-navigation-app/src/index.ts +68 -0
  439. package/packages/apps/esm-primary-navigation-app/src/root.component.test.tsx +57 -0
  440. package/packages/apps/esm-primary-navigation-app/src/root.component.tsx +25 -0
  441. package/packages/apps/esm-primary-navigation-app/src/root.resource.tsx +13 -0
  442. package/packages/apps/esm-primary-navigation-app/src/root.scss +5 -0
  443. package/packages/apps/esm-primary-navigation-app/src/routes.json +78 -0
  444. package/packages/apps/esm-primary-navigation-app/src/setupTests.ts +7 -0
  445. package/packages/apps/esm-primary-navigation-app/src/utils.ts +3 -0
  446. package/packages/apps/esm-primary-navigation-app/translations/am.json +14 -0
  447. package/packages/apps/esm-primary-navigation-app/translations/ar.json +14 -0
  448. package/packages/apps/esm-primary-navigation-app/translations/ar_SY.json +14 -0
  449. package/packages/apps/esm-primary-navigation-app/translations/bn.json +14 -0
  450. package/packages/apps/esm-primary-navigation-app/translations/cs.json +14 -0
  451. package/packages/apps/esm-primary-navigation-app/translations/de.json +14 -0
  452. package/packages/apps/esm-primary-navigation-app/translations/en.json +14 -0
  453. package/packages/apps/esm-primary-navigation-app/translations/en_US.json +14 -0
  454. package/packages/apps/esm-primary-navigation-app/translations/es.json +14 -0
  455. package/packages/apps/esm-primary-navigation-app/translations/es_MX.json +14 -0
  456. package/packages/apps/esm-primary-navigation-app/translations/fr.json +14 -0
  457. package/packages/apps/esm-primary-navigation-app/translations/he.json +14 -0
  458. package/packages/apps/esm-primary-navigation-app/translations/hi.json +14 -0
  459. package/packages/apps/esm-primary-navigation-app/translations/hi_IN.json +14 -0
  460. package/packages/apps/esm-primary-navigation-app/translations/id.json +14 -0
  461. package/packages/apps/esm-primary-navigation-app/translations/it.json +14 -0
  462. package/packages/apps/esm-primary-navigation-app/translations/ka.json +14 -0
  463. package/packages/apps/esm-primary-navigation-app/translations/km.json +14 -0
  464. package/packages/apps/esm-primary-navigation-app/translations/ku.json +14 -0
  465. package/packages/apps/esm-primary-navigation-app/translations/ky.json +14 -0
  466. package/packages/apps/esm-primary-navigation-app/translations/lg.json +14 -0
  467. package/packages/apps/esm-primary-navigation-app/translations/ne.json +14 -0
  468. package/packages/apps/esm-primary-navigation-app/translations/pl.json +14 -0
  469. package/packages/apps/esm-primary-navigation-app/translations/pt.json +14 -0
  470. package/packages/apps/esm-primary-navigation-app/translations/pt_BR.json +14 -0
  471. package/packages/apps/esm-primary-navigation-app/translations/qu.json +14 -0
  472. package/packages/apps/esm-primary-navigation-app/translations/ro_RO.json +14 -0
  473. package/packages/apps/esm-primary-navigation-app/translations/ru_RU.json +14 -0
  474. package/packages/apps/esm-primary-navigation-app/translations/si.json +14 -0
  475. package/packages/apps/esm-primary-navigation-app/translations/sq.json +14 -0
  476. package/packages/apps/esm-primary-navigation-app/translations/sw.json +14 -0
  477. package/packages/apps/esm-primary-navigation-app/translations/sw_KE.json +14 -0
  478. package/packages/apps/esm-primary-navigation-app/translations/tr.json +14 -0
  479. package/packages/apps/esm-primary-navigation-app/translations/tr_TR.json +14 -0
  480. package/packages/apps/esm-primary-navigation-app/translations/uk.json +14 -0
  481. package/packages/apps/esm-primary-navigation-app/translations/uz.json +14 -0
  482. package/packages/apps/esm-primary-navigation-app/translations/uz@Latn.json +14 -0
  483. package/packages/apps/esm-primary-navigation-app/translations/uz_UZ.json +14 -0
  484. package/packages/apps/esm-primary-navigation-app/translations/vi.json +14 -0
  485. package/packages/apps/esm-primary-navigation-app/translations/zh.json +14 -0
  486. package/packages/apps/esm-primary-navigation-app/translations/zh_CN.json +14 -0
  487. package/packages/apps/esm-primary-navigation-app/translations/zh_TW.json +14 -0
  488. package/packages/apps/esm-primary-navigation-app/tsconfig.json +24 -0
  489. package/packages/apps/esm-primary-navigation-app/webpack.config.js +1 -0
  490. package/packages/framework/esm-api/.swcrc +16 -0
  491. package/packages/framework/esm-api/README.md +6 -0
  492. package/packages/framework/esm-api/__mocks__/openmrs-esm-config.mock.ts +3 -0
  493. package/packages/framework/esm-api/__mocks__/openmrs-esm-error-handling.mock.ts +2 -0
  494. package/packages/framework/esm-api/__mocks__/openmrs-esm-navigation.mock.ts +5 -0
  495. package/packages/framework/esm-api/__mocks__/single-spa.mock.ts +1 -0
  496. package/packages/framework/esm-api/mock-jest.ts +22 -0
  497. package/packages/framework/esm-api/mock.ts +23 -0
  498. package/packages/framework/esm-api/package.json +79 -0
  499. package/packages/framework/esm-api/setup-tests.ts +3 -0
  500. package/packages/framework/esm-api/src/config-schema.ts +50 -0
  501. package/packages/framework/esm-api/src/current-user.test.ts +747 -0
  502. package/packages/framework/esm-api/src/current-user.ts +288 -0
  503. package/packages/framework/esm-api/src/environment.ts +5 -0
  504. package/packages/framework/esm-api/src/index.ts +6 -0
  505. package/packages/framework/esm-api/src/openmrs-backend-dependencies.ts +4 -0
  506. package/packages/framework/esm-api/src/openmrs-fetch.test.ts +293 -0
  507. package/packages/framework/esm-api/src/openmrs-fetch.ts +339 -0
  508. package/packages/framework/esm-api/src/public.ts +19 -0
  509. package/packages/framework/esm-api/src/setup.ts +12 -0
  510. package/packages/framework/esm-api/src/types/concept-resource.ts +38 -0
  511. package/packages/framework/esm-api/src/types/fetch.ts +9 -0
  512. package/packages/framework/esm-api/src/types/index.ts +5 -0
  513. package/packages/framework/esm-api/src/types/openmrs-resource.ts +39 -0
  514. package/packages/framework/esm-api/src/types/person-resource.ts +69 -0
  515. package/packages/framework/esm-api/src/types/user-resource.ts +72 -0
  516. package/packages/framework/esm-api/tsconfig.build.json +9 -0
  517. package/packages/framework/esm-api/tsconfig.json +8 -0
  518. package/packages/framework/esm-api/vitest.config.ts +9 -0
  519. package/packages/framework/esm-config/.swcrc +16 -0
  520. package/packages/framework/esm-config/README.md +16 -0
  521. package/packages/framework/esm-config/__mocks__/openmrs-esm-context.mock.tsx +3 -0
  522. package/packages/framework/esm-config/__mocks__/openmrs-esm-globals.mock.tsx +1 -0
  523. package/packages/framework/esm-config/mock-jest.ts +37 -0
  524. package/packages/framework/esm-config/mock.ts +35 -0
  525. package/packages/framework/esm-config/package.json +79 -0
  526. package/packages/framework/esm-config/src/index.ts +5 -0
  527. package/packages/framework/esm-config/src/module-config/module-config.test.ts +1449 -0
  528. package/packages/framework/esm-config/src/module-config/module-config.ts +941 -0
  529. package/packages/framework/esm-config/src/module-config/state.ts +258 -0
  530. package/packages/framework/esm-config/src/public.ts +5 -0
  531. package/packages/framework/esm-config/src/setup-tests.js +14 -0
  532. package/packages/framework/esm-config/src/types.ts +69 -0
  533. package/packages/framework/esm-config/src/validators/type-validators.test.ts +111 -0
  534. package/packages/framework/esm-config/src/validators/type-validators.ts +19 -0
  535. package/packages/framework/esm-config/src/validators/validator.ts +38 -0
  536. package/packages/framework/esm-config/src/validators/validators.test.ts +35 -0
  537. package/packages/framework/esm-config/src/validators/validators.ts +70 -0
  538. package/packages/framework/esm-config/tsconfig.build.json +9 -0
  539. package/packages/framework/esm-config/tsconfig.json +5 -0
  540. package/packages/framework/esm-config/vitest.config.ts +8 -0
  541. package/packages/framework/esm-context/.swcrc +16 -0
  542. package/packages/framework/esm-context/README.md +3 -0
  543. package/packages/framework/esm-context/mock.ts +24 -0
  544. package/packages/framework/esm-context/package.json +63 -0
  545. package/packages/framework/esm-context/src/context.ts +129 -0
  546. package/packages/framework/esm-context/src/index.ts +1 -0
  547. package/packages/framework/esm-context/src/public.ts +1 -0
  548. package/packages/framework/esm-context/tsconfig.build.json +9 -0
  549. package/packages/framework/esm-context/tsconfig.json +5 -0
  550. package/packages/framework/esm-dynamic-loading/.swcrc +16 -0
  551. package/packages/framework/esm-dynamic-loading/README.md +4 -0
  552. package/packages/framework/esm-dynamic-loading/package.json +66 -0
  553. package/packages/framework/esm-dynamic-loading/src/dynamic-loading.ts +296 -0
  554. package/packages/framework/esm-dynamic-loading/src/index.ts +1 -0
  555. package/packages/framework/esm-dynamic-loading/src/public.ts +1 -0
  556. package/packages/framework/esm-dynamic-loading/tsconfig.build.json +9 -0
  557. package/packages/framework/esm-dynamic-loading/tsconfig.json +5 -0
  558. package/packages/framework/esm-emr-api/.swcrc +16 -0
  559. package/packages/framework/esm-emr-api/README.md +7 -0
  560. package/packages/framework/esm-emr-api/mock-jest.ts +10 -0
  561. package/packages/framework/esm-emr-api/mock.ts +12 -0
  562. package/packages/framework/esm-emr-api/package.json +78 -0
  563. package/packages/framework/esm-emr-api/src/attachments.ts +43 -0
  564. package/packages/framework/esm-emr-api/src/current-patient.test.ts +53 -0
  565. package/packages/framework/esm-emr-api/src/current-patient.ts +58 -0
  566. package/packages/framework/esm-emr-api/src/events/events.test.ts +136 -0
  567. package/packages/framework/esm-emr-api/src/events/index.ts +45 -0
  568. package/packages/framework/esm-emr-api/src/events/types.ts +55 -0
  569. package/packages/framework/esm-emr-api/src/index.ts +7 -0
  570. package/packages/framework/esm-emr-api/src/location.ts +36 -0
  571. package/packages/framework/esm-emr-api/src/public.ts +7 -0
  572. package/packages/framework/esm-emr-api/src/types/attachments-types.ts +28 -0
  573. package/packages/framework/esm-emr-api/src/types/diagnosis-resource.ts +24 -0
  574. package/packages/framework/esm-emr-api/src/types/drug-resource.ts +9 -0
  575. package/packages/framework/esm-emr-api/src/types/encounter-resource.ts +36 -0
  576. package/packages/framework/esm-emr-api/src/types/fhir-resource.ts +32 -0
  577. package/packages/framework/esm-emr-api/src/types/fhir.ts +102 -0
  578. package/packages/framework/esm-emr-api/src/types/index.ts +11 -0
  579. package/packages/framework/esm-emr-api/src/types/location-resource.ts +49 -0
  580. package/packages/framework/esm-emr-api/src/types/obs-resource.ts +23 -0
  581. package/packages/framework/esm-emr-api/src/types/order-resource.ts +79 -0
  582. package/packages/framework/esm-emr-api/src/types/patient-resource.ts +27 -0
  583. package/packages/framework/esm-emr-api/src/types/visit-resource.ts +43 -0
  584. package/packages/framework/esm-emr-api/src/visit-type.ts +24 -0
  585. package/packages/framework/esm-emr-api/src/visit-utils.ts +127 -0
  586. package/packages/framework/esm-emr-api/tsconfig.build.json +9 -0
  587. package/packages/framework/esm-emr-api/tsconfig.json +5 -0
  588. package/packages/framework/esm-emr-api/vitest.config.ts +8 -0
  589. package/packages/framework/esm-error-handling/.swcrc +16 -0
  590. package/packages/framework/esm-error-handling/README.md +4 -0
  591. package/packages/framework/esm-error-handling/__mocks__/openmrs-esm-globals.mock.tsx +1 -0
  592. package/packages/framework/esm-error-handling/package.json +60 -0
  593. package/packages/framework/esm-error-handling/src/index.ts +58 -0
  594. package/packages/framework/esm-error-handling/src/openmrs-esm-error-handling.test.ts +28 -0
  595. package/packages/framework/esm-error-handling/tsconfig.build.json +9 -0
  596. package/packages/framework/esm-error-handling/tsconfig.json +5 -0
  597. package/packages/framework/esm-error-handling/vitest.config.ts +8 -0
  598. package/packages/framework/esm-expression-evaluator/.swcrc +16 -0
  599. package/packages/framework/esm-expression-evaluator/README.md +3 -0
  600. package/packages/framework/esm-expression-evaluator/package.json +72 -0
  601. package/packages/framework/esm-expression-evaluator/src/evaluator.test.ts +226 -0
  602. package/packages/framework/esm-expression-evaluator/src/evaluator.ts +750 -0
  603. package/packages/framework/esm-expression-evaluator/src/extractor.test.ts +69 -0
  604. package/packages/framework/esm-expression-evaluator/src/extractor.ts +194 -0
  605. package/packages/framework/esm-expression-evaluator/src/globals.ts +34 -0
  606. package/packages/framework/esm-expression-evaluator/src/index.ts +2 -0
  607. package/packages/framework/esm-expression-evaluator/src/public.ts +14 -0
  608. package/packages/framework/esm-expression-evaluator/tsconfig.build.json +9 -0
  609. package/packages/framework/esm-expression-evaluator/tsconfig.json +5 -0
  610. package/packages/framework/esm-expression-evaluator/vitest.config.ts +7 -0
  611. package/packages/framework/esm-extensions/.swcrc +16 -0
  612. package/packages/framework/esm-extensions/README.md +4 -0
  613. package/packages/framework/esm-extensions/__mocks__/openmrs-esm-config.mock.tsx +1 -0
  614. package/packages/framework/esm-extensions/mock-jest.ts +31 -0
  615. package/packages/framework/esm-extensions/mock.ts +33 -0
  616. package/packages/framework/esm-extensions/package.json +84 -0
  617. package/packages/framework/esm-extensions/src/extensions.test.ts +483 -0
  618. package/packages/framework/esm-extensions/src/extensions.ts +551 -0
  619. package/packages/framework/esm-extensions/src/helpers.ts +9 -0
  620. package/packages/framework/esm-extensions/src/index.ts +9 -0
  621. package/packages/framework/esm-extensions/src/left-nav.ts +53 -0
  622. package/packages/framework/esm-extensions/src/modals.ts +48 -0
  623. package/packages/framework/esm-extensions/src/public.ts +22 -0
  624. package/packages/framework/esm-extensions/src/render.ts +82 -0
  625. package/packages/framework/esm-extensions/src/store.ts +164 -0
  626. package/packages/framework/esm-extensions/src/types.ts +11 -0
  627. package/packages/framework/esm-extensions/src/workspaces.ts +177 -0
  628. package/packages/framework/esm-extensions/src/workspaces2.ts +157 -0
  629. package/packages/framework/esm-extensions/tsconfig.build.json +9 -0
  630. package/packages/framework/esm-extensions/tsconfig.json +5 -0
  631. package/packages/framework/esm-extensions/vitest.config.ts +8 -0
  632. package/packages/framework/esm-feature-flags/.swcrc +16 -0
  633. package/packages/framework/esm-feature-flags/README.md +16 -0
  634. package/packages/framework/esm-feature-flags/package.json +61 -0
  635. package/packages/framework/esm-feature-flags/src/feature-flags.ts +109 -0
  636. package/packages/framework/esm-feature-flags/src/index.ts +1 -0
  637. package/packages/framework/esm-feature-flags/src/public.ts +1 -0
  638. package/packages/framework/esm-feature-flags/tsconfig.build.json +9 -0
  639. package/packages/framework/esm-feature-flags/tsconfig.json +5 -0
  640. package/packages/framework/esm-framework/README.md +5 -0
  641. package/packages/framework/esm-framework/__mocks__/fileMock.js +1 -0
  642. package/packages/framework/esm-framework/docs/API.md +290 -0
  643. package/packages/framework/esm-framework/docs/classes/OpenmrsFetchError.md +191 -0
  644. package/packages/framework/esm-framework/docs/enumerations/Type.md +77 -0
  645. package/packages/framework/esm-framework/docs/enumerations/VisitMode.md +29 -0
  646. package/packages/framework/esm-framework/docs/enumerations/VisitStatus.md +21 -0
  647. package/packages/framework/esm-framework/docs/functions/CardHeader.md +19 -0
  648. package/packages/framework/esm-framework/docs/functions/ConfigurableLink.md +19 -0
  649. package/packages/framework/esm-framework/docs/functions/CustomOverflowMenu.md +17 -0
  650. package/packages/framework/esm-framework/docs/functions/DashboardExtension.md +17 -0
  651. package/packages/framework/esm-framework/docs/functions/EmptyCardIllustration.md +23 -0
  652. package/packages/framework/esm-framework/docs/functions/ExtensionSlot.md +46 -0
  653. package/packages/framework/esm-framework/docs/functions/OpenmrsAppContext.md +36 -0
  654. package/packages/framework/esm-framework/docs/functions/PatientBannerActionsMenu.md +17 -0
  655. package/packages/framework/esm-framework/docs/functions/PatientBannerContactDetails.md +17 -0
  656. package/packages/framework/esm-framework/docs/functions/PatientBannerPatientIdentifiers.md +17 -0
  657. package/packages/framework/esm-framework/docs/functions/PatientBannerPatientInfo.md +17 -0
  658. package/packages/framework/esm-framework/docs/functions/PatientBannerToggleContactDetailsButton.md +17 -0
  659. package/packages/framework/esm-framework/docs/functions/PatientPhoto.md +19 -0
  660. package/packages/framework/esm-framework/docs/functions/WorkspaceContainer.md +55 -0
  661. package/packages/framework/esm-framework/docs/functions/age.md +32 -0
  662. package/packages/framework/esm-framework/docs/functions/attach.md +40 -0
  663. package/packages/framework/esm-framework/docs/functions/beginEditSynchronizationItem.md +22 -0
  664. package/packages/framework/esm-framework/docs/functions/canAccessStorage.md +25 -0
  665. package/packages/framework/esm-framework/docs/functions/canBeginEditSynchronizationItemsOfType.md +22 -0
  666. package/packages/framework/esm-framework/docs/functions/clearCurrentUser.md +11 -0
  667. package/packages/framework/esm-framework/docs/functions/closeWorkspace.md +27 -0
  668. package/packages/framework/esm-framework/docs/functions/closeWorkspaceGroup2.md +29 -0
  669. package/packages/framework/esm-framework/docs/functions/compile.md +30 -0
  670. package/packages/framework/esm-framework/docs/functions/convertToLocaleCalendar.md +25 -0
  671. package/packages/framework/esm-framework/docs/functions/createAttachment.md +21 -0
  672. package/packages/framework/esm-framework/docs/functions/createDashboard.md +29 -0
  673. package/packages/framework/esm-framework/docs/functions/createErrorHandler.md +21 -0
  674. package/packages/framework/esm-framework/docs/functions/createGlobalStore.md +36 -0
  675. package/packages/framework/esm-framework/docs/functions/createUseStore.md +66 -0
  676. package/packages/framework/esm-framework/docs/functions/defineConfigSchema.md +33 -0
  677. package/packages/framework/esm-framework/docs/functions/defineExtensionConfigSchema.md +38 -0
  678. package/packages/framework/esm-framework/docs/functions/deleteAttachmentPermanently.md +21 -0
  679. package/packages/framework/esm-framework/docs/functions/deleteSynchronizationItem.md +21 -0
  680. package/packages/framework/esm-framework/docs/functions/detach.md +25 -0
  681. package/packages/framework/esm-framework/docs/functions/detachAll.md +21 -0
  682. package/packages/framework/esm-framework/docs/functions/dispatchNotificationShown.md +17 -0
  683. package/packages/framework/esm-framework/docs/functions/dispatchPrecacheStaticDependencies.md +17 -0
  684. package/packages/framework/esm-framework/docs/functions/displayName.md +21 -0
  685. package/packages/framework/esm-framework/docs/functions/evaluate.md +84 -0
  686. package/packages/framework/esm-framework/docs/functions/evaluateAsBoolean.md +31 -0
  687. package/packages/framework/esm-framework/docs/functions/evaluateAsBooleanAsync.md +31 -0
  688. package/packages/framework/esm-framework/docs/functions/evaluateAsNumber.md +31 -0
  689. package/packages/framework/esm-framework/docs/functions/evaluateAsNumberAsync.md +31 -0
  690. package/packages/framework/esm-framework/docs/functions/evaluateAsType.md +46 -0
  691. package/packages/framework/esm-framework/docs/functions/evaluateAsTypeAsync.md +46 -0
  692. package/packages/framework/esm-framework/docs/functions/evaluateAsync.md +87 -0
  693. package/packages/framework/esm-framework/docs/functions/extractVariableNames.md +50 -0
  694. package/packages/framework/esm-framework/docs/functions/fetchCurrentPatient.md +25 -0
  695. package/packages/framework/esm-framework/docs/functions/filterBreadcrumbs.md +21 -0
  696. package/packages/framework/esm-framework/docs/functions/formatDate.md +39 -0
  697. package/packages/framework/esm-framework/docs/functions/formatDatetime.md +29 -0
  698. package/packages/framework/esm-framework/docs/functions/formatDuration.md +29 -0
  699. package/packages/framework/esm-framework/docs/functions/formatPartialDate.md +39 -0
  700. package/packages/framework/esm-framework/docs/functions/formatPatientName.md +23 -0
  701. package/packages/framework/esm-framework/docs/functions/formatTime.md +20 -0
  702. package/packages/framework/esm-framework/docs/functions/formattedName.md +21 -0
  703. package/packages/framework/esm-framework/docs/functions/generateOfflineUuid.md +13 -0
  704. package/packages/framework/esm-framework/docs/functions/getAssignedExtensions.md +23 -0
  705. package/packages/framework/esm-framework/docs/functions/getAsyncLifecycle.md +31 -0
  706. package/packages/framework/esm-framework/docs/functions/getAttachmentByUuid.md +21 -0
  707. package/packages/framework/esm-framework/docs/functions/getAttachments.md +25 -0
  708. package/packages/framework/esm-framework/docs/functions/getBreadcrumbs.md +11 -0
  709. package/packages/framework/esm-framework/docs/functions/getBreadcrumbsFor.md +17 -0
  710. package/packages/framework/esm-framework/docs/functions/getConfig.md +31 -0
  711. package/packages/framework/esm-framework/docs/functions/getContext.md +29 -0
  712. package/packages/framework/esm-framework/docs/functions/getCoreTranslation.md +35 -0
  713. package/packages/framework/esm-framework/docs/functions/getCurrentOfflineMode.md +11 -0
  714. package/packages/framework/esm-framework/docs/functions/getCurrentUser.md +154 -0
  715. package/packages/framework/esm-framework/docs/functions/getDefaultCalendar.md +21 -0
  716. package/packages/framework/esm-framework/docs/functions/getDefaultsFromConfigSchema.md +32 -0
  717. package/packages/framework/esm-framework/docs/functions/getDynamicOfflineDataEntries.md +28 -0
  718. package/packages/framework/esm-framework/docs/functions/getDynamicOfflineDataEntriesFor.md +34 -0
  719. package/packages/framework/esm-framework/docs/functions/getDynamicOfflineDataHandlers.md +13 -0
  720. package/packages/framework/esm-framework/docs/functions/getExtensionNameFromId.md +30 -0
  721. package/packages/framework/esm-framework/docs/functions/getExtensionStore.md +14 -0
  722. package/packages/framework/esm-framework/docs/functions/getFeatureFlag.md +21 -0
  723. package/packages/framework/esm-framework/docs/functions/getFhirServerPaginationHandlers.md +17 -0
  724. package/packages/framework/esm-framework/docs/functions/getFullSynchronizationItems.md +27 -0
  725. package/packages/framework/esm-framework/docs/functions/getFullSynchronizationItemsFor.md +33 -0
  726. package/packages/framework/esm-framework/docs/functions/getGlobalStore.md +36 -0
  727. package/packages/framework/esm-framework/docs/functions/getHistory.md +13 -0
  728. package/packages/framework/esm-framework/docs/functions/getLifecycle.md +27 -0
  729. package/packages/framework/esm-framework/docs/functions/getLocale.md +15 -0
  730. package/packages/framework/esm-framework/docs/functions/getLocations.md +21 -0
  731. package/packages/framework/esm-framework/docs/functions/getLoggedInUser.md +11 -0
  732. package/packages/framework/esm-framework/docs/functions/getOfflinePatientDataStore.md +15 -0
  733. package/packages/framework/esm-framework/docs/functions/getPatientName.md +26 -0
  734. package/packages/framework/esm-framework/docs/functions/getRegisteredWorkspace2Names.md +13 -0
  735. package/packages/framework/esm-framework/docs/functions/getSessionLocation.md +11 -0
  736. package/packages/framework/esm-framework/docs/functions/getSessionStore.md +11 -0
  737. package/packages/framework/esm-framework/docs/functions/getSyncLifecycle.md +31 -0
  738. package/packages/framework/esm-framework/docs/functions/getSynchronizationItem.md +27 -0
  739. package/packages/framework/esm-framework/docs/functions/getSynchronizationItems.md +27 -0
  740. package/packages/framework/esm-framework/docs/functions/getVisitStore.md +11 -0
  741. package/packages/framework/esm-framework/docs/functions/getVisitTypes.md +11 -0
  742. package/packages/framework/esm-framework/docs/functions/getVisitsForPatient.md +29 -0
  743. package/packages/framework/esm-framework/docs/functions/goBackInHistory.md +25 -0
  744. package/packages/framework/esm-framework/docs/functions/importDynamic.md +58 -0
  745. package/packages/framework/esm-framework/docs/functions/inRange.md +27 -0
  746. package/packages/framework/esm-framework/docs/functions/interpolateString.md +34 -0
  747. package/packages/framework/esm-framework/docs/functions/interpolateUrl.md +48 -0
  748. package/packages/framework/esm-framework/docs/functions/isDesktop.md +17 -0
  749. package/packages/framework/esm-framework/docs/functions/isDevEnabled.md +11 -0
  750. package/packages/framework/esm-framework/docs/functions/isOfflineUuid.md +19 -0
  751. package/packages/framework/esm-framework/docs/functions/isOmrsDateStrict.md +20 -0
  752. package/packages/framework/esm-framework/docs/functions/isOmrsDateToday.md +19 -0
  753. package/packages/framework/esm-framework/docs/functions/isOnline.md +17 -0
  754. package/packages/framework/esm-framework/docs/functions/isUrlWithTemplateParameters.md +22 -0
  755. package/packages/framework/esm-framework/docs/functions/isVersionSatisfied.md +21 -0
  756. package/packages/framework/esm-framework/docs/functions/launchWorkspace.md +56 -0
  757. package/packages/framework/esm-framework/docs/functions/launchWorkspace2.md +79 -0
  758. package/packages/framework/esm-framework/docs/functions/launchWorkspaceGroup.md +38 -0
  759. package/packages/framework/esm-framework/docs/functions/launchWorkspaceGroup2.md +40 -0
  760. package/packages/framework/esm-framework/docs/functions/makeUrl.md +26 -0
  761. package/packages/framework/esm-framework/docs/functions/messageOmrsServiceWorker.md +23 -0
  762. package/packages/framework/esm-framework/docs/functions/navigate.md +48 -0
  763. package/packages/framework/esm-framework/docs/functions/navigateAndLaunchWorkspace.md +33 -0
  764. package/packages/framework/esm-framework/docs/functions/oneOf.md +21 -0
  765. package/packages/framework/esm-framework/docs/functions/openmrsFetch.md +75 -0
  766. package/packages/framework/esm-framework/docs/functions/openmrsObservableFetch.md +55 -0
  767. package/packages/framework/esm-framework/docs/functions/parseDate.md +20 -0
  768. package/packages/framework/esm-framework/docs/functions/provide.md +21 -0
  769. package/packages/framework/esm-framework/docs/functions/putDynamicOfflineData.md +28 -0
  770. package/packages/framework/esm-framework/docs/functions/putDynamicOfflineDataFor.md +34 -0
  771. package/packages/framework/esm-framework/docs/functions/queueSynchronizationItem.md +39 -0
  772. package/packages/framework/esm-framework/docs/functions/refetchCurrentUser.md +33 -0
  773. package/packages/framework/esm-framework/docs/functions/registerBreadcrumb.md +17 -0
  774. package/packages/framework/esm-framework/docs/functions/registerBreadcrumbs.md +17 -0
  775. package/packages/framework/esm-framework/docs/functions/registerContext.md +34 -0
  776. package/packages/framework/esm-framework/docs/functions/registerDefaultCalendar.md +33 -0
  777. package/packages/framework/esm-framework/docs/functions/registerFeatureFlag.md +36 -0
  778. package/packages/framework/esm-framework/docs/functions/registerOfflinePatientHandler.md +25 -0
  779. package/packages/framework/esm-framework/docs/functions/removeDynamicOfflineData.md +28 -0
  780. package/packages/framework/esm-framework/docs/functions/removeDynamicOfflineDataFor.md +34 -0
  781. package/packages/framework/esm-framework/docs/functions/renderExtension.md +41 -0
  782. package/packages/framework/esm-framework/docs/functions/reportError.md +17 -0
  783. package/packages/framework/esm-framework/docs/functions/retry.md +44 -0
  784. package/packages/framework/esm-framework/docs/functions/saveVisit.md +21 -0
  785. package/packages/framework/esm-framework/docs/functions/selectPreferredName.md +46 -0
  786. package/packages/framework/esm-framework/docs/functions/setCurrentVisit.md +21 -0
  787. package/packages/framework/esm-framework/docs/functions/setLeftNav.md +23 -0
  788. package/packages/framework/esm-framework/docs/functions/setSessionLocation.md +21 -0
  789. package/packages/framework/esm-framework/docs/functions/setUserLanguage.md +17 -0
  790. package/packages/framework/esm-framework/docs/functions/setUserProperties.md +23 -0
  791. package/packages/framework/esm-framework/docs/functions/setupDynamicOfflineDataHandler.md +22 -0
  792. package/packages/framework/esm-framework/docs/functions/setupOfflineSync.md +49 -0
  793. package/packages/framework/esm-framework/docs/functions/shallowEqual.md +32 -0
  794. package/packages/framework/esm-framework/docs/functions/showActionableNotification.md +21 -0
  795. package/packages/framework/esm-framework/docs/functions/showModal.md +44 -0
  796. package/packages/framework/esm-framework/docs/functions/showNotification.md +21 -0
  797. package/packages/framework/esm-framework/docs/functions/showSnackbar.md +21 -0
  798. package/packages/framework/esm-framework/docs/functions/showToast.md +21 -0
  799. package/packages/framework/esm-framework/docs/functions/subscribeActionableNotificationShown.md +21 -0
  800. package/packages/framework/esm-framework/docs/functions/subscribeConnectivity.md +21 -0
  801. package/packages/framework/esm-framework/docs/functions/subscribeConnectivityChanged.md +21 -0
  802. package/packages/framework/esm-framework/docs/functions/subscribeNotificationShown.md +21 -0
  803. package/packages/framework/esm-framework/docs/functions/subscribeOpenmrsEvent.md +55 -0
  804. package/packages/framework/esm-framework/docs/functions/subscribePrecacheStaticDependencies.md +21 -0
  805. package/packages/framework/esm-framework/docs/functions/subscribeSnackbarShown.md +21 -0
  806. package/packages/framework/esm-framework/docs/functions/subscribeTo.md +75 -0
  807. package/packages/framework/esm-framework/docs/functions/subscribeToContext.md +39 -0
  808. package/packages/framework/esm-framework/docs/functions/subscribeToastShown.md +21 -0
  809. package/packages/framework/esm-framework/docs/functions/syncAllDynamicOfflineData.md +27 -0
  810. package/packages/framework/esm-framework/docs/functions/syncDynamicOfflineData.md +33 -0
  811. package/packages/framework/esm-framework/docs/functions/syncOfflinePatientData.md +21 -0
  812. package/packages/framework/esm-framework/docs/functions/toDateObjectStrict.md +20 -0
  813. package/packages/framework/esm-framework/docs/functions/toLocationObject.md +17 -0
  814. package/packages/framework/esm-framework/docs/functions/toOmrsIsoString.md +23 -0
  815. package/packages/framework/esm-framework/docs/functions/toVisitTypeObject.md +17 -0
  816. package/packages/framework/esm-framework/docs/functions/translateFrom.md +55 -0
  817. package/packages/framework/esm-framework/docs/functions/unregisterContext.md +20 -0
  818. package/packages/framework/esm-framework/docs/functions/unsetLeftNav.md +23 -0
  819. package/packages/framework/esm-framework/docs/functions/updateContext.md +29 -0
  820. package/packages/framework/esm-framework/docs/functions/updateVisit.md +25 -0
  821. package/packages/framework/esm-framework/docs/functions/useAbortController.md +32 -0
  822. package/packages/framework/esm-framework/docs/functions/useAppContext.md +43 -0
  823. package/packages/framework/esm-framework/docs/functions/useAssignedExtensionIds.md +26 -0
  824. package/packages/framework/esm-framework/docs/functions/useAssignedExtensions.md +21 -0
  825. package/packages/framework/esm-framework/docs/functions/useAttachments.md +41 -0
  826. package/packages/framework/esm-framework/docs/functions/useBodyScrollLock.md +17 -0
  827. package/packages/framework/esm-framework/docs/functions/useConfig.md +27 -0
  828. package/packages/framework/esm-framework/docs/functions/useConnectivity.md +11 -0
  829. package/packages/framework/esm-framework/docs/functions/useDebounce.md +57 -0
  830. package/packages/framework/esm-framework/docs/functions/useDefineAppContext.md +70 -0
  831. package/packages/framework/esm-framework/docs/functions/useEmrConfiguration.md +35 -0
  832. package/packages/framework/esm-framework/docs/functions/useExtensionSlotMeta.md +25 -0
  833. package/packages/framework/esm-framework/docs/functions/useExtensionSlotStore.md +17 -0
  834. package/packages/framework/esm-framework/docs/functions/useFeatureFlag.md +30 -0
  835. package/packages/framework/esm-framework/docs/functions/useFhirFetchAll.md +44 -0
  836. package/packages/framework/esm-framework/docs/functions/useFhirInfinite.md +46 -0
  837. package/packages/framework/esm-framework/docs/functions/useFhirPagination.md +129 -0
  838. package/packages/framework/esm-framework/docs/functions/useLayoutType.md +11 -0
  839. package/packages/framework/esm-framework/docs/functions/useLeftNav.md +17 -0
  840. package/packages/framework/esm-framework/docs/functions/useLeftNavStore.md +11 -0
  841. package/packages/framework/esm-framework/docs/functions/useLocations.md +21 -0
  842. package/packages/framework/esm-framework/docs/functions/useOnClickOutside.md +27 -0
  843. package/packages/framework/esm-framework/docs/functions/useOnVisible.md +28 -0
  844. package/packages/framework/esm-framework/docs/functions/useOpenmrsFetchAll.md +46 -0
  845. package/packages/framework/esm-framework/docs/functions/useOpenmrsInfinite.md +54 -0
  846. package/packages/framework/esm-framework/docs/functions/useOpenmrsPagination.md +140 -0
  847. package/packages/framework/esm-framework/docs/functions/useOpenmrsSWR.md +71 -0
  848. package/packages/framework/esm-framework/docs/functions/usePagination.md +89 -0
  849. package/packages/framework/esm-framework/docs/functions/usePatient.md +38 -0
  850. package/packages/framework/esm-framework/docs/functions/usePatientPhoto.md +17 -0
  851. package/packages/framework/esm-framework/docs/functions/usePrimaryIdentifierCode.md +23 -0
  852. package/packages/framework/esm-framework/docs/functions/useRenderableExtensions.md +43 -0
  853. package/packages/framework/esm-framework/docs/functions/useSession.md +19 -0
  854. package/packages/framework/esm-framework/docs/functions/useStore.md +131 -0
  855. package/packages/framework/esm-framework/docs/functions/useStoreWithActions.md +33 -0
  856. package/packages/framework/esm-framework/docs/functions/useVisit.md +41 -0
  857. package/packages/framework/esm-framework/docs/functions/useVisitContextStore.md +23 -0
  858. package/packages/framework/esm-framework/docs/functions/useVisitTypes.md +11 -0
  859. package/packages/framework/esm-framework/docs/functions/useWorkspace2Context.md +14 -0
  860. package/packages/framework/esm-framework/docs/functions/useWorkspaces.md +11 -0
  861. package/packages/framework/esm-framework/docs/functions/userHasAccess.md +27 -0
  862. package/packages/framework/esm-framework/docs/functions/validator.md +44 -0
  863. package/packages/framework/esm-framework/docs/interfaces/ActionMenuButtonProps.md +67 -0
  864. package/packages/framework/esm-framework/docs/interfaces/ActionableNotificationDescriptor.md +77 -0
  865. package/packages/framework/esm-framework/docs/interfaces/AssignedExtension.md +71 -0
  866. package/packages/framework/esm-framework/docs/interfaces/Attachment.md +61 -0
  867. package/packages/framework/esm-framework/docs/interfaces/AttachmentResponse.md +53 -0
  868. package/packages/framework/esm-framework/docs/interfaces/AuditInfo.md +101 -0
  869. package/packages/framework/esm-framework/docs/interfaces/BreadcrumbRegistration.md +21 -0
  870. package/packages/framework/esm-framework/docs/interfaces/BreadcrumbSettings.md +55 -0
  871. package/packages/framework/esm-framework/docs/interfaces/CancelLoading.md +13 -0
  872. package/packages/framework/esm-framework/docs/interfaces/CardHeaderProps.md +25 -0
  873. package/packages/framework/esm-framework/docs/interfaces/ClearDynamicRoutesMessage.md +21 -0
  874. package/packages/framework/esm-framework/docs/interfaces/CloseWorkspaceOptions.md +54 -0
  875. package/packages/framework/esm-framework/docs/interfaces/ComponentConfig.md +29 -0
  876. package/packages/framework/esm-framework/docs/interfaces/Concept.md +173 -0
  877. package/packages/framework/esm-framework/docs/interfaces/ConceptClass.md +101 -0
  878. package/packages/framework/esm-framework/docs/interfaces/ConceptDatatype.md +109 -0
  879. package/packages/framework/esm-framework/docs/interfaces/ConceptName.md +109 -0
  880. package/packages/framework/esm-framework/docs/interfaces/Config.md +9 -0
  881. package/packages/framework/esm-framework/docs/interfaces/ConfigObject.md +27 -0
  882. package/packages/framework/esm-framework/docs/interfaces/ConfigSchema.md +33 -0
  883. package/packages/framework/esm-framework/docs/interfaces/ConfigurableLinkProps.md +49 -0
  884. package/packages/framework/esm-framework/docs/interfaces/ConnectedExtension.md +51 -0
  885. package/packages/framework/esm-framework/docs/interfaces/ConnectivityChangedEvent.md +13 -0
  886. package/packages/framework/esm-framework/docs/interfaces/CurrentPatientOptions.md +18 -0
  887. package/packages/framework/esm-framework/docs/interfaces/DashboardExtensionProps.md +37 -0
  888. package/packages/framework/esm-framework/docs/interfaces/DefaultWorkspaceProps.md +113 -0
  889. package/packages/framework/esm-framework/docs/interfaces/Diagnosis.md +165 -0
  890. package/packages/framework/esm-framework/docs/interfaces/DisplayConditionsConfigObject.md +45 -0
  891. package/packages/framework/esm-framework/docs/interfaces/Drug.md +97 -0
  892. package/packages/framework/esm-framework/docs/interfaces/DynamicOfflineData.md +60 -0
  893. package/packages/framework/esm-framework/docs/interfaces/DynamicOfflineDataHandler.md +98 -0
  894. package/packages/framework/esm-framework/docs/interfaces/DynamicOfflineDataSyncState.md +65 -0
  895. package/packages/framework/esm-framework/docs/interfaces/EmptyCardProps.md +39 -0
  896. package/packages/framework/esm-framework/docs/interfaces/EmrApiConfigurationResponse.md +489 -0
  897. package/packages/framework/esm-framework/docs/interfaces/Encounter.md +145 -0
  898. package/packages/framework/esm-framework/docs/interfaces/EncounterProvider.md +89 -0
  899. package/packages/framework/esm-framework/docs/interfaces/EncounterRole.md +97 -0
  900. package/packages/framework/esm-framework/docs/interfaces/EncounterType.md +97 -0
  901. package/packages/framework/esm-framework/docs/interfaces/ErrorStateProps.md +25 -0
  902. package/packages/framework/esm-framework/docs/interfaces/ExtensionData.md +29 -0
  903. package/packages/framework/esm-framework/docs/interfaces/ExtensionMeta.md +9 -0
  904. package/packages/framework/esm-framework/docs/interfaces/ExtensionRegistration.md +89 -0
  905. package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotBaseProps.md +67 -0
  906. package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotConfig.md +43 -0
  907. package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotConfigureValueObject.md +9 -0
  908. package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotProps.md +3520 -0
  909. package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotState.md +29 -0
  910. package/packages/framework/esm-framework/docs/interfaces/ExtensionStore.md +13 -0
  911. package/packages/framework/esm-framework/docs/interfaces/FHIRCode.md +29 -0
  912. package/packages/framework/esm-framework/docs/interfaces/FHIRLocationResource.md +37 -0
  913. package/packages/framework/esm-framework/docs/interfaces/FHIRResource.md +113 -0
  914. package/packages/framework/esm-framework/docs/interfaces/FeatureFlagDefinition.md +37 -0
  915. package/packages/framework/esm-framework/docs/interfaces/FetchConfig.md +191 -0
  916. package/packages/framework/esm-framework/docs/interfaces/FetchError.md +21 -0
  917. package/packages/framework/esm-framework/docs/interfaces/FetchHeaders.md +9 -0
  918. package/packages/framework/esm-framework/docs/interfaces/FetchResponse.md +279 -0
  919. package/packages/framework/esm-framework/docs/interfaces/FetchResponseJson.md +9 -0
  920. package/packages/framework/esm-framework/docs/interfaces/ImportMap.md +13 -0
  921. package/packages/framework/esm-framework/docs/interfaces/LeftNavStore.md +45 -0
  922. package/packages/framework/esm-framework/docs/interfaces/Link.md +29 -0
  923. package/packages/framework/esm-framework/docs/interfaces/Location.md +305 -0
  924. package/packages/framework/esm-framework/docs/interfaces/LoggedInUser.md +131 -0
  925. package/packages/framework/esm-framework/docs/interfaces/LoggedInUserFetchResponse.md +273 -0
  926. package/packages/framework/esm-framework/docs/interfaces/MessageServiceWorkerResult.md +35 -0
  927. package/packages/framework/esm-framework/docs/interfaces/NavigateOptions.md +21 -0
  928. package/packages/framework/esm-framework/docs/interfaces/NewVisitPayload.md +69 -0
  929. package/packages/framework/esm-framework/docs/interfaces/NotificationDescriptor.md +65 -0
  930. package/packages/framework/esm-framework/docs/interfaces/Obs.md +209 -0
  931. package/packages/framework/esm-framework/docs/interfaces/OfflineModeResult.md +29 -0
  932. package/packages/framework/esm-framework/docs/interfaces/OfflinePatientArgs.md +25 -0
  933. package/packages/framework/esm-framework/docs/interfaces/OfflinePatientDataSyncHandler.md +35 -0
  934. package/packages/framework/esm-framework/docs/interfaces/OfflinePatientDataSyncState.md +61 -0
  935. package/packages/framework/esm-framework/docs/interfaces/OfflinePatientDataSyncStore.md +25 -0
  936. package/packages/framework/esm-framework/docs/interfaces/OmrsServiceWorkerMessage.md +25 -0
  937. package/packages/framework/esm-framework/docs/interfaces/OnImportMapChangedMessage.md +29 -0
  938. package/packages/framework/esm-framework/docs/interfaces/OnlyThePatient.md +21 -0
  939. package/packages/framework/esm-framework/docs/interfaces/OpenWorkspace.md +281 -0
  940. package/packages/framework/esm-framework/docs/interfaces/OpenmrsAppContextProps.md +31 -0
  941. package/packages/framework/esm-framework/docs/interfaces/OpenmrsAppRoutes.md +133 -0
  942. package/packages/framework/esm-framework/docs/interfaces/OpenmrsDatePickerProps.md +776 -0
  943. package/packages/framework/esm-framework/docs/interfaces/OpenmrsDateRangePickerProps.md +783 -0
  944. package/packages/framework/esm-framework/docs/interfaces/OpenmrsEventTypes.md +28 -0
  945. package/packages/framework/esm-framework/docs/interfaces/OpenmrsResource.md +85 -0
  946. package/packages/framework/esm-framework/docs/interfaces/OpenmrsResourceStrict.md +57 -0
  947. package/packages/framework/esm-framework/docs/interfaces/Order.md +461 -0
  948. package/packages/framework/esm-framework/docs/interfaces/PageHeaderContentProps.md +29 -0
  949. package/packages/framework/esm-framework/docs/interfaces/PageHeaderWrapperProps.md +21 -0
  950. package/packages/framework/esm-framework/docs/interfaces/PaginationProps.md +95 -0
  951. package/packages/framework/esm-framework/docs/interfaces/Patient.md +93 -0
  952. package/packages/framework/esm-framework/docs/interfaces/PatientBannerActionsMenuProps.md +40 -0
  953. package/packages/framework/esm-framework/docs/interfaces/PatientBannerToggleContactDetailsButtonProps.md +45 -0
  954. package/packages/framework/esm-framework/docs/interfaces/PatientIdentifier.md +109 -0
  955. package/packages/framework/esm-framework/docs/interfaces/PatientIdentifierType.md +141 -0
  956. package/packages/framework/esm-framework/docs/interfaces/PatientPhotoProps.md +29 -0
  957. package/packages/framework/esm-framework/docs/interfaces/PatientWithFullResponse.md +21 -0
  958. package/packages/framework/esm-framework/docs/interfaces/Person.md +201 -0
  959. package/packages/framework/esm-framework/docs/interfaces/PersonAddress.md +281 -0
  960. package/packages/framework/esm-framework/docs/interfaces/PersonAttribute.md +97 -0
  961. package/packages/framework/esm-framework/docs/interfaces/PersonName.md +153 -0
  962. package/packages/framework/esm-framework/docs/interfaces/PrecacheStaticDependenciesEvent.md +5 -0
  963. package/packages/framework/esm-framework/docs/interfaces/PrimaryIdentifier.md +13 -0
  964. package/packages/framework/esm-framework/docs/interfaces/Privilege.md +37 -0
  965. package/packages/framework/esm-framework/docs/interfaces/Prompt.md +53 -0
  966. package/packages/framework/esm-framework/docs/interfaces/QueueItemDescriptor.md +50 -0
  967. package/packages/framework/esm-framework/docs/interfaces/RegisterDynamicRouteMessage.md +45 -0
  968. package/packages/framework/esm-framework/docs/interfaces/ResourceLoader.md +19 -0
  969. package/packages/framework/esm-framework/docs/interfaces/ResponsiveWrapperProps.md +13 -0
  970. package/packages/framework/esm-framework/docs/interfaces/RetryOptions.md +82 -0
  971. package/packages/framework/esm-framework/docs/interfaces/Role.md +37 -0
  972. package/packages/framework/esm-framework/docs/interfaces/Session.md +69 -0
  973. package/packages/framework/esm-framework/docs/interfaces/SessionLocation.md +29 -0
  974. package/packages/framework/esm-framework/docs/interfaces/SetLeftNavParams.md +49 -0
  975. package/packages/framework/esm-framework/docs/interfaces/ShowActionableNotificationEvent.md +57 -0
  976. package/packages/framework/esm-framework/docs/interfaces/ShowNotificationEvent.md +45 -0
  977. package/packages/framework/esm-framework/docs/interfaces/ShowSnackbarEvent.md +73 -0
  978. package/packages/framework/esm-framework/docs/interfaces/ShowToastEvent.md +49 -0
  979. package/packages/framework/esm-framework/docs/interfaces/SnackbarDescriptor.md +85 -0
  980. package/packages/framework/esm-framework/docs/interfaces/SnackbarMeta.md +129 -0
  981. package/packages/framework/esm-framework/docs/interfaces/SpaConfig.md +69 -0
  982. package/packages/framework/esm-framework/docs/interfaces/StyleguideConfigObject.md +97 -0
  983. package/packages/framework/esm-framework/docs/interfaces/SyncItem.md +79 -0
  984. package/packages/framework/esm-framework/docs/interfaces/SyncProcessOptions.md +53 -0
  985. package/packages/framework/esm-framework/docs/interfaces/ToastDescriptor.md +61 -0
  986. package/packages/framework/esm-framework/docs/interfaces/ToastNotificationMeta.md +93 -0
  987. package/packages/framework/esm-framework/docs/interfaces/UploadedFile.md +61 -0
  988. package/packages/framework/esm-framework/docs/interfaces/UseConfigOptions.md +16 -0
  989. package/packages/framework/esm-framework/docs/interfaces/UsePatientPhotoResult.md +29 -0
  990. package/packages/framework/esm-framework/docs/interfaces/UseServerFetchAllOptions.md +80 -0
  991. package/packages/framework/esm-framework/docs/interfaces/UseServerInfiniteOptions.md +55 -0
  992. package/packages/framework/esm-framework/docs/interfaces/UseServerPaginationOptions.md +51 -0
  993. package/packages/framework/esm-framework/docs/interfaces/User.md +77 -0
  994. package/packages/framework/esm-framework/docs/interfaces/UserHasAccessProps.md +29 -0
  995. package/packages/framework/esm-framework/docs/interfaces/Visit.md +81 -0
  996. package/packages/framework/esm-framework/docs/interfaces/VisitItem.md +37 -0
  997. package/packages/framework/esm-framework/docs/interfaces/VisitReturnType.md +65 -0
  998. package/packages/framework/esm-framework/docs/interfaces/VisitStoreState.md +37 -0
  999. package/packages/framework/esm-framework/docs/interfaces/VisitType.md +29 -0
  1000. package/packages/framework/esm-framework/docs/interfaces/Workspace2DefinitionProps.md +145 -0
  1001. package/packages/framework/esm-framework/docs/interfaces/WorkspaceContainerProps.md +45 -0
  1002. package/packages/framework/esm-framework/docs/interfaces/WorkspaceDefinition2.md +29 -0
  1003. package/packages/framework/esm-framework/docs/interfaces/WorkspaceGroupDefinition.md +25 -0
  1004. package/packages/framework/esm-framework/docs/interfaces/WorkspaceGroupDefinition2.md +45 -0
  1005. package/packages/framework/esm-framework/docs/interfaces/WorkspaceRegistration.md +99 -0
  1006. package/packages/framework/esm-framework/docs/interfaces/WorkspaceWindowDefinition2.md +53 -0
  1007. package/packages/framework/esm-framework/docs/interfaces/WorkspacesInfo.md +61 -0
  1008. package/packages/framework/esm-framework/docs/type-aliases/ActionFunction.md +27 -0
  1009. package/packages/framework/esm-framework/docs/type-aliases/ActionableNotificationType.md +7 -0
  1010. package/packages/framework/esm-framework/docs/type-aliases/Actions.md +13 -0
  1011. package/packages/framework/esm-framework/docs/type-aliases/ArgumentsTuple.md +7 -0
  1012. package/packages/framework/esm-framework/docs/type-aliases/BoundActions.md +17 -0
  1013. package/packages/framework/esm-framework/docs/type-aliases/ConfigValue.md +7 -0
  1014. package/packages/framework/esm-framework/docs/type-aliases/ContextCallback.md +23 -0
  1015. package/packages/framework/esm-framework/docs/type-aliases/CoreTranslationKey.md +7 -0
  1016. package/packages/framework/esm-framework/docs/type-aliases/CurrentPatient.md +7 -0
  1017. package/packages/framework/esm-framework/docs/type-aliases/DateInput.md +7 -0
  1018. package/packages/framework/esm-framework/docs/type-aliases/DefaultEvaluateReturnType.md +9 -0
  1019. package/packages/framework/esm-framework/docs/type-aliases/ErrorCardProps.md +7 -0
  1020. package/packages/framework/esm-framework/docs/type-aliases/ExtensionDefinition.md +123 -0
  1021. package/packages/framework/esm-framework/docs/type-aliases/ExtensionProps.md +13 -0
  1022. package/packages/framework/esm-framework/docs/type-aliases/FormatDateMode.md +7 -0
  1023. package/packages/framework/esm-framework/docs/type-aliases/FormatDateOptions.md +102 -0
  1024. package/packages/framework/esm-framework/docs/type-aliases/FulfillerStatus.md +7 -0
  1025. package/packages/framework/esm-framework/docs/type-aliases/IconId.md +7 -0
  1026. package/packages/framework/esm-framework/docs/type-aliases/IconProps.md +31 -0
  1027. package/packages/framework/esm-framework/docs/type-aliases/InlineNotificationType.md +7 -0
  1028. package/packages/framework/esm-framework/docs/type-aliases/Key.md +7 -0
  1029. package/packages/framework/esm-framework/docs/type-aliases/KnownOmrsServiceWorkerMessages.md +7 -0
  1030. package/packages/framework/esm-framework/docs/type-aliases/LayoutType.md +7 -0
  1031. package/packages/framework/esm-framework/docs/type-aliases/LoadedSessionStore.md +23 -0
  1032. package/packages/framework/esm-framework/docs/type-aliases/ModalDefinition.md +29 -0
  1033. package/packages/framework/esm-framework/docs/type-aliases/NameUse.md +7 -0
  1034. package/packages/framework/esm-framework/docs/type-aliases/NullablePatient.md +7 -0
  1035. package/packages/framework/esm-framework/docs/type-aliases/OfflineMode.md +7 -0
  1036. package/packages/framework/esm-framework/docs/type-aliases/OmrsOfflineCachingStrategy.md +12 -0
  1037. package/packages/framework/esm-framework/docs/type-aliases/OmrsOfflineHttpHeaderNames.md +7 -0
  1038. package/packages/framework/esm-framework/docs/type-aliases/OmrsOfflineHttpHeaders.md +44 -0
  1039. package/packages/framework/esm-framework/docs/type-aliases/OpenmrsEvent.md +9 -0
  1040. package/packages/framework/esm-framework/docs/type-aliases/OpenmrsRoutes.md +10 -0
  1041. package/packages/framework/esm-framework/docs/type-aliases/OrderAction.md +7 -0
  1042. package/packages/framework/esm-framework/docs/type-aliases/OrderUrgency.md +7 -0
  1043. package/packages/framework/esm-framework/docs/type-aliases/PageDefinition.md +41 -0
  1044. package/packages/framework/esm-framework/docs/type-aliases/PageHeaderProps.md +7 -0
  1045. package/packages/framework/esm-framework/docs/type-aliases/PatientUuid.md +7 -0
  1046. package/packages/framework/esm-framework/docs/type-aliases/PictogramId.md +7 -0
  1047. package/packages/framework/esm-framework/docs/type-aliases/PictogramProps.md +23 -0
  1048. package/packages/framework/esm-framework/docs/type-aliases/ProvidedConfig.md +23 -0
  1049. package/packages/framework/esm-framework/docs/type-aliases/ResourceName.md +7 -0
  1050. package/packages/framework/esm-framework/docs/type-aliases/SessionStore.md +7 -0
  1051. package/packages/framework/esm-framework/docs/type-aliases/SnackbarType.md +7 -0
  1052. package/packages/framework/esm-framework/docs/type-aliases/SpaEnvironment.md +7 -0
  1053. package/packages/framework/esm-framework/docs/type-aliases/SvgIconProps.md +23 -0
  1054. package/packages/framework/esm-framework/docs/type-aliases/SvgPictogramProps.md +27 -0
  1055. package/packages/framework/esm-framework/docs/type-aliases/TemplateParams.md +11 -0
  1056. package/packages/framework/esm-framework/docs/type-aliases/ToastType.md +7 -0
  1057. package/packages/framework/esm-framework/docs/type-aliases/UnloadedSessionStore.md +23 -0
  1058. package/packages/framework/esm-framework/docs/type-aliases/UpdateVisitPayload.md +7 -0
  1059. package/packages/framework/esm-framework/docs/type-aliases/UseOpenmrsSWROptions.md +39 -0
  1060. package/packages/framework/esm-framework/docs/type-aliases/Validator.md +17 -0
  1061. package/packages/framework/esm-framework/docs/type-aliases/ValidatorFunction.md +17 -0
  1062. package/packages/framework/esm-framework/docs/type-aliases/VariablesMap.md +13 -0
  1063. package/packages/framework/esm-framework/docs/type-aliases/Workspace2Definition.md +23 -0
  1064. package/packages/framework/esm-framework/docs/type-aliases/WorkspaceDefinition.md +118 -0
  1065. package/packages/framework/esm-framework/docs/type-aliases/WorkspaceWindowState.md +7 -0
  1066. package/packages/framework/esm-framework/docs/variables/ActionMenuButton.md +7 -0
  1067. package/packages/framework/esm-framework/docs/variables/ActionMenuButton2.md +19 -0
  1068. package/packages/framework/esm-framework/docs/variables/ActivityIcon.md +7 -0
  1069. package/packages/framework/esm-framework/docs/variables/AddIcon.md +7 -0
  1070. package/packages/framework/esm-framework/docs/variables/AllergiesIcon.md +7 -0
  1071. package/packages/framework/esm-framework/docs/variables/AppointmentsAltPictogram.md +11 -0
  1072. package/packages/framework/esm-framework/docs/variables/AppointmentsPictogram.md +7 -0
  1073. package/packages/framework/esm-framework/docs/variables/ArrowDownIcon.md +7 -0
  1074. package/packages/framework/esm-framework/docs/variables/ArrowLeftIcon.md +7 -0
  1075. package/packages/framework/esm-framework/docs/variables/ArrowRightIcon.md +7 -0
  1076. package/packages/framework/esm-framework/docs/variables/ArrowUpIcon.md +7 -0
  1077. package/packages/framework/esm-framework/docs/variables/Assessment1Pictogram.md +7 -0
  1078. package/packages/framework/esm-framework/docs/variables/Assessment2Pictogram.md +7 -0
  1079. package/packages/framework/esm-framework/docs/variables/AttachmentIcon.md +7 -0
  1080. package/packages/framework/esm-framework/docs/variables/BabyIcon.md +7 -0
  1081. package/packages/framework/esm-framework/docs/variables/BloodBankPictogram.md +7 -0
  1082. package/packages/framework/esm-framework/docs/variables/CalendarHeatMapIcon.md +7 -0
  1083. package/packages/framework/esm-framework/docs/variables/CalendarIcon.md +7 -0
  1084. package/packages/framework/esm-framework/docs/variables/CardiologyPictogram.md +7 -0
  1085. package/packages/framework/esm-framework/docs/variables/CaretDownIcon.md +7 -0
  1086. package/packages/framework/esm-framework/docs/variables/CaretLeftIcon.md +7 -0
  1087. package/packages/framework/esm-framework/docs/variables/CaretRightIcon.md +7 -0
  1088. package/packages/framework/esm-framework/docs/variables/CaretUpIcon.md +7 -0
  1089. package/packages/framework/esm-framework/docs/variables/ChartAverageIcon.md +7 -0
  1090. package/packages/framework/esm-framework/docs/variables/CheckmarkFilledIcon.md +7 -0
  1091. package/packages/framework/esm-framework/docs/variables/CheckmarkOutlineIcon.md +7 -0
  1092. package/packages/framework/esm-framework/docs/variables/ChemistryIcon.md +7 -0
  1093. package/packages/framework/esm-framework/docs/variables/ChevronDownIcon.md +7 -0
  1094. package/packages/framework/esm-framework/docs/variables/ChevronLeftIcon.md +7 -0
  1095. package/packages/framework/esm-framework/docs/variables/ChevronRightIcon.md +7 -0
  1096. package/packages/framework/esm-framework/docs/variables/ChevronUpIcon.md +7 -0
  1097. package/packages/framework/esm-framework/docs/variables/CloseFilledIcon.md +7 -0
  1098. package/packages/framework/esm-framework/docs/variables/CloseIcon.md +7 -0
  1099. package/packages/framework/esm-framework/docs/variables/CloseOutlineIcon.md +7 -0
  1100. package/packages/framework/esm-framework/docs/variables/ConditionsIcon.md +11 -0
  1101. package/packages/framework/esm-framework/docs/variables/CtScanPictogram.md +7 -0
  1102. package/packages/framework/esm-framework/docs/variables/DentistryPictogram.md +7 -0
  1103. package/packages/framework/esm-framework/docs/variables/DiagnosisTags.md +11 -0
  1104. package/packages/framework/esm-framework/docs/variables/DocumentAttachmentIcon.md +7 -0
  1105. package/packages/framework/esm-framework/docs/variables/DocumentIcon.md +7 -0
  1106. package/packages/framework/esm-framework/docs/variables/DownloadIcon.md +7 -0
  1107. package/packages/framework/esm-framework/docs/variables/DrugOrderIcon.md +7 -0
  1108. package/packages/framework/esm-framework/docs/variables/EditIcon.md +7 -0
  1109. package/packages/framework/esm-framework/docs/variables/EmergencyDepartmentPictogram.md +7 -0
  1110. package/packages/framework/esm-framework/docs/variables/EmptyCard.md +9 -0
  1111. package/packages/framework/esm-framework/docs/variables/ErrorCard.md +7 -0
  1112. package/packages/framework/esm-framework/docs/variables/ErrorState.md +7 -0
  1113. package/packages/framework/esm-framework/docs/variables/EventScheduleIcon.md +7 -0
  1114. package/packages/framework/esm-framework/docs/variables/EventsIcon.md +7 -0
  1115. package/packages/framework/esm-framework/docs/variables/Extension.md +15 -0
  1116. package/packages/framework/esm-framework/docs/variables/FacilityPictogram.md +7 -0
  1117. package/packages/framework/esm-framework/docs/variables/GenderFemaleIcon.md +7 -0
  1118. package/packages/framework/esm-framework/docs/variables/GenderMaleIcon.md +7 -0
  1119. package/packages/framework/esm-framework/docs/variables/GenderOtherIcon.md +7 -0
  1120. package/packages/framework/esm-framework/docs/variables/GenderUnknownIcon.md +7 -0
  1121. package/packages/framework/esm-framework/docs/variables/GenericOrderTypeIcon.md +7 -0
  1122. package/packages/framework/esm-framework/docs/variables/GeriatricsPictogram.md +7 -0
  1123. package/packages/framework/esm-framework/docs/variables/GroupAccessIcon.md +7 -0
  1124. package/packages/framework/esm-framework/docs/variables/GroupIcon.md +7 -0
  1125. package/packages/framework/esm-framework/docs/variables/GynaecologyPictogram.md +7 -0
  1126. package/packages/framework/esm-framework/docs/variables/HomePictogram.md +7 -0
  1127. package/packages/framework/esm-framework/docs/variables/HospitalBedIcon.md +7 -0
  1128. package/packages/framework/esm-framework/docs/variables/Icon.md +9 -0
  1129. package/packages/framework/esm-framework/docs/variables/ImageMedicalIcon.md +7 -0
  1130. package/packages/framework/esm-framework/docs/variables/InPatientPictogram.md +7 -0
  1131. package/packages/framework/esm-framework/docs/variables/InformationFilledIcon.md +7 -0
  1132. package/packages/framework/esm-framework/docs/variables/InformationIcon.md +7 -0
  1133. package/packages/framework/esm-framework/docs/variables/InformationSquareIcon.md +7 -0
  1134. package/packages/framework/esm-framework/docs/variables/InventoryManagementIcon.md +7 -0
  1135. package/packages/framework/esm-framework/docs/variables/LabOrderIcon.md +7 -0
  1136. package/packages/framework/esm-framework/docs/variables/LaboratoryPictogram.md +7 -0
  1137. package/packages/framework/esm-framework/docs/variables/Labs2Pictogram.md +7 -0
  1138. package/packages/framework/esm-framework/docs/variables/LeftNavMenu.md +13 -0
  1139. package/packages/framework/esm-framework/docs/variables/ListCheckedIcon.md +7 -0
  1140. package/packages/framework/esm-framework/docs/variables/LocationIcon.md +7 -0
  1141. package/packages/framework/esm-framework/docs/variables/LocationPicker.md +7 -0
  1142. package/packages/framework/esm-framework/docs/variables/MaterialOrderIcon.md +7 -0
  1143. package/packages/framework/esm-framework/docs/variables/MaximizeIcon.md +7 -0
  1144. package/packages/framework/esm-framework/docs/variables/MaybeIcon.md +16 -0
  1145. package/packages/framework/esm-framework/docs/variables/MaybePictogram.md +16 -0
  1146. package/packages/framework/esm-framework/docs/variables/MedicationIcon.md +7 -0
  1147. package/packages/framework/esm-framework/docs/variables/MessageQueueIcon.md +7 -0
  1148. package/packages/framework/esm-framework/docs/variables/MicroscopeIcon.md +7 -0
  1149. package/packages/framework/esm-framework/docs/variables/MoneyIcon.md +9 -0
  1150. package/packages/framework/esm-framework/docs/variables/MotherIcon.md +7 -0
  1151. package/packages/framework/esm-framework/docs/variables/MovementIcon.md +7 -0
  1152. package/packages/framework/esm-framework/docs/variables/ObstetricsPictogram.md +7 -0
  1153. package/packages/framework/esm-framework/docs/variables/OpenmrsDatePicker.md +9 -0
  1154. package/packages/framework/esm-framework/docs/variables/OpenmrsDateRangePicker.md +9 -0
  1155. package/packages/framework/esm-framework/docs/variables/OverflowMenuHorizontalIcon.md +7 -0
  1156. package/packages/framework/esm-framework/docs/variables/OverflowMenuVerticalIcon.md +7 -0
  1157. package/packages/framework/esm-framework/docs/variables/PageHeader.md +30 -0
  1158. package/packages/framework/esm-framework/docs/variables/PageHeaderContent.md +21 -0
  1159. package/packages/framework/esm-framework/docs/variables/Pagination.md +9 -0
  1160. package/packages/framework/esm-framework/docs/variables/PasswordIcon.md +7 -0
  1161. package/packages/framework/esm-framework/docs/variables/PatientListsPictogram.md +7 -0
  1162. package/packages/framework/esm-framework/docs/variables/PatientSearchPictogram.md +7 -0
  1163. package/packages/framework/esm-framework/docs/variables/PatientsPictogram.md +7 -0
  1164. package/packages/framework/esm-framework/docs/variables/PaymentsDeskPictogram.md +7 -0
  1165. package/packages/framework/esm-framework/docs/variables/PedestrianFamilyIcon.md +7 -0
  1166. package/packages/framework/esm-framework/docs/variables/PenIcon.md +7 -0
  1167. package/packages/framework/esm-framework/docs/variables/Pharmacy2Pictogram.md +7 -0
  1168. package/packages/framework/esm-framework/docs/variables/PharmacyPictogram.md +7 -0
  1169. package/packages/framework/esm-framework/docs/variables/Pictogram.md +9 -0
  1170. package/packages/framework/esm-framework/docs/variables/PrinterIcon.md +7 -0
  1171. package/packages/framework/esm-framework/docs/variables/ProcedureOrderIcon.md +7 -0
  1172. package/packages/framework/esm-framework/docs/variables/ProgramsIcon.md +7 -0
  1173. package/packages/framework/esm-framework/docs/variables/RadiologyIcon.md +7 -0
  1174. package/packages/framework/esm-framework/docs/variables/ReferralOrderIcon.md +7 -0
  1175. package/packages/framework/esm-framework/docs/variables/RegistrationPictogram.md +7 -0
  1176. package/packages/framework/esm-framework/docs/variables/RenderIfValueIsTruthy.md +21 -0
  1177. package/packages/framework/esm-framework/docs/variables/RenewIcon.md +7 -0
  1178. package/packages/framework/esm-framework/docs/variables/ReportIcon.md +7 -0
  1179. package/packages/framework/esm-framework/docs/variables/ResetIcon.md +7 -0
  1180. package/packages/framework/esm-framework/docs/variables/ResponsiveWrapper.md +11 -0
  1181. package/packages/framework/esm-framework/docs/variables/SaveIcon.md +7 -0
  1182. package/packages/framework/esm-framework/docs/variables/SearchIcon.md +7 -0
  1183. package/packages/framework/esm-framework/docs/variables/ServiceQueuesPictogram.md +7 -0
  1184. package/packages/framework/esm-framework/docs/variables/SettingsIcon.md +7 -0
  1185. package/packages/framework/esm-framework/docs/variables/ShoppingCartAddItemIcon.md +11 -0
  1186. package/packages/framework/esm-framework/docs/variables/ShoppingCartArrowDownIcon.md +9 -0
  1187. package/packages/framework/esm-framework/docs/variables/ShoppingCartIcon.md +9 -0
  1188. package/packages/framework/esm-framework/docs/variables/StickyNoteAddIcon.md +9 -0
  1189. package/packages/framework/esm-framework/docs/variables/StockManagementPictogram.md +7 -0
  1190. package/packages/framework/esm-framework/docs/variables/SwitcherIcon.md +7 -0
  1191. package/packages/framework/esm-framework/docs/variables/SyringeIcon.md +7 -0
  1192. package/packages/framework/esm-framework/docs/variables/TableIcon.md +7 -0
  1193. package/packages/framework/esm-framework/docs/variables/TableOfContentsIcon.md +9 -0
  1194. package/packages/framework/esm-framework/docs/variables/TimeIcon.md +9 -0
  1195. package/packages/framework/esm-framework/docs/variables/ToolsIcon.md +7 -0
  1196. package/packages/framework/esm-framework/docs/variables/TransferPictogram.md +7 -0
  1197. package/packages/framework/esm-framework/docs/variables/TranslateIcon.md +7 -0
  1198. package/packages/framework/esm-framework/docs/variables/TrashCanIcon.md +7 -0
  1199. package/packages/framework/esm-framework/docs/variables/TreeViewAltIcon.md +7 -0
  1200. package/packages/framework/esm-framework/docs/variables/TriagePictogram.md +7 -0
  1201. package/packages/framework/esm-framework/docs/variables/UserAvatarIcon.md +9 -0
  1202. package/packages/framework/esm-framework/docs/variables/UserFollowIcon.md +7 -0
  1203. package/packages/framework/esm-framework/docs/variables/UserHasAccess.md +35 -0
  1204. package/packages/framework/esm-framework/docs/variables/UserIcon.md +7 -0
  1205. package/packages/framework/esm-framework/docs/variables/UserXrayIcon.md +11 -0
  1206. package/packages/framework/esm-framework/docs/variables/ViewIcon.md +7 -0
  1207. package/packages/framework/esm-framework/docs/variables/ViewOffIcon.md +7 -0
  1208. package/packages/framework/esm-framework/docs/variables/WarningIcon.md +7 -0
  1209. package/packages/framework/esm-framework/docs/variables/Workspace2.md +14 -0
  1210. package/packages/framework/esm-framework/docs/variables/XrayPictogram.md +7 -0
  1211. package/packages/framework/esm-framework/docs/variables/attachmentUrl.md +7 -0
  1212. package/packages/framework/esm-framework/docs/variables/backendDependencies.md +17 -0
  1213. package/packages/framework/esm-framework/docs/variables/defaultVisitCustomRepresentation.md +7 -0
  1214. package/packages/framework/esm-framework/docs/variables/fhirBaseUrl.md +7 -0
  1215. package/packages/framework/esm-framework/docs/variables/getAsyncExtensionLifecycle.md +35 -0
  1216. package/packages/framework/esm-framework/docs/variables/getStartedVisit.md +9 -0
  1217. package/packages/framework/esm-framework/docs/variables/iconIds.md +7 -0
  1218. package/packages/framework/esm-framework/docs/variables/isUrl.md +9 -0
  1219. package/packages/framework/esm-framework/docs/variables/offlineUuidPrefix.md +7 -0
  1220. package/packages/framework/esm-framework/docs/variables/omrsOfflineCachingStrategyHttpHeaderName.md +7 -0
  1221. package/packages/framework/esm-framework/docs/variables/omrsOfflineResponseBodyHttpHeaderName.md +7 -0
  1222. package/packages/framework/esm-framework/docs/variables/omrsOfflineResponseStatusHttpHeaderName.md +7 -0
  1223. package/packages/framework/esm-framework/docs/variables/pictogramIds.md +7 -0
  1224. package/packages/framework/esm-framework/docs/variables/restBaseUrl.md +7 -0
  1225. package/packages/framework/esm-framework/docs/variables/sessionEndpoint.md +7 -0
  1226. package/packages/framework/esm-framework/docs/variables/useConnectedExtensions.md +25 -0
  1227. package/packages/framework/esm-framework/docs/variables/useExtensionStore.md +55 -0
  1228. package/packages/framework/esm-framework/docs/variables/validators.md +78 -0
  1229. package/packages/framework/esm-framework/mock-jest.tsx +163 -0
  1230. package/packages/framework/esm-framework/mock.tsx +164 -0
  1231. package/packages/framework/esm-framework/package.json +109 -0
  1232. package/packages/framework/esm-framework/rspack.config.cjs +89 -0
  1233. package/packages/framework/esm-framework/setup-tests.ts +58 -0
  1234. package/packages/framework/esm-framework/src/declarations.d.ts +10 -0
  1235. package/packages/framework/esm-framework/src/index.ts +17 -0
  1236. package/packages/framework/esm-framework/src/integration-tests/extension-config-expressions.test.tsx +312 -0
  1237. package/packages/framework/esm-framework/src/integration-tests/extension-config.test.tsx +527 -0
  1238. package/packages/framework/esm-framework/src/internal.ts +17 -0
  1239. package/packages/framework/esm-framework/src/mock-test.test.ts +25 -0
  1240. package/packages/framework/esm-framework/tsconfig.build.json +11 -0
  1241. package/packages/framework/esm-framework/tsconfig.json +5 -0
  1242. package/packages/framework/esm-framework/typedoc.json +23 -0
  1243. package/packages/framework/esm-framework/vitest.config.ts +9 -0
  1244. package/packages/framework/esm-globals/.swcrc +16 -0
  1245. package/packages/framework/esm-globals/README.md +4 -0
  1246. package/packages/framework/esm-globals/package.json +59 -0
  1247. package/packages/framework/esm-globals/src/events.ts +134 -0
  1248. package/packages/framework/esm-globals/src/index.ts +2 -0
  1249. package/packages/framework/esm-globals/src/public.ts +16 -0
  1250. package/packages/framework/esm-globals/src/types.ts +415 -0
  1251. package/packages/framework/esm-globals/tsconfig.build.json +9 -0
  1252. package/packages/framework/esm-globals/tsconfig.json +5 -0
  1253. package/packages/framework/esm-navigation/.swcrc +16 -0
  1254. package/packages/framework/esm-navigation/README.md +1 -0
  1255. package/packages/framework/esm-navigation/package.json +70 -0
  1256. package/packages/framework/esm-navigation/src/breadcrumbs/db.ts +34 -0
  1257. package/packages/framework/esm-navigation/src/breadcrumbs/filter.ts +57 -0
  1258. package/packages/framework/esm-navigation/src/history/history.test.ts +109 -0
  1259. package/packages/framework/esm-navigation/src/history/history.ts +76 -0
  1260. package/packages/framework/esm-navigation/src/index.ts +6 -0
  1261. package/packages/framework/esm-navigation/src/navigation/interpolate-string.test.ts +61 -0
  1262. package/packages/framework/esm-navigation/src/navigation/interpolate-string.ts +63 -0
  1263. package/packages/framework/esm-navigation/src/navigation/navigate.test.ts +69 -0
  1264. package/packages/framework/esm-navigation/src/navigation/navigate.ts +59 -0
  1265. package/packages/framework/esm-navigation/src/public.ts +6 -0
  1266. package/packages/framework/esm-navigation/src/setup-tests.js +6 -0
  1267. package/packages/framework/esm-navigation/src/types.ts +35 -0
  1268. package/packages/framework/esm-navigation/tsconfig.build.json +9 -0
  1269. package/packages/framework/esm-navigation/tsconfig.json +5 -0
  1270. package/packages/framework/esm-navigation/vitest.config.ts +9 -0
  1271. package/packages/framework/esm-offline/.swcrc +16 -0
  1272. package/packages/framework/esm-offline/README.md +3 -0
  1273. package/packages/framework/esm-offline/package.json +78 -0
  1274. package/packages/framework/esm-offline/src/dynamic-offline-data.test.ts +81 -0
  1275. package/packages/framework/esm-offline/src/dynamic-offline-data.ts +316 -0
  1276. package/packages/framework/esm-offline/src/index.ts +9 -0
  1277. package/packages/framework/esm-offline/src/mode.ts +74 -0
  1278. package/packages/framework/esm-offline/src/offline-db.ts +36 -0
  1279. package/packages/framework/esm-offline/src/offline-patient-data.ts +72 -0
  1280. package/packages/framework/esm-offline/src/public.ts +21 -0
  1281. package/packages/framework/esm-offline/src/service-worker-http-headers.ts +40 -0
  1282. package/packages/framework/esm-offline/src/service-worker-messaging.ts +51 -0
  1283. package/packages/framework/esm-offline/src/service-worker.ts +39 -0
  1284. package/packages/framework/esm-offline/src/sync.test.ts +140 -0
  1285. package/packages/framework/esm-offline/src/sync.ts +377 -0
  1286. package/packages/framework/esm-offline/src/uuid-support.ts +14 -0
  1287. package/packages/framework/esm-offline/tsconfig.build.json +9 -0
  1288. package/packages/framework/esm-offline/tsconfig.json +5 -0
  1289. package/packages/framework/esm-offline/vitest.config.ts +8 -0
  1290. package/packages/framework/esm-react-utils/.swcrc +16 -0
  1291. package/packages/framework/esm-react-utils/README.md +3 -0
  1292. package/packages/framework/esm-react-utils/__mocks__/openmrs-esm-error-handling.mock.ts +2 -0
  1293. package/packages/framework/esm-react-utils/__mocks__/set-public-path.tsx +1 -0
  1294. package/packages/framework/esm-react-utils/mock-jest.tsx +164 -0
  1295. package/packages/framework/esm-react-utils/mock.tsx +167 -0
  1296. package/packages/framework/esm-react-utils/package.json +109 -0
  1297. package/packages/framework/esm-react-utils/setup-tests.ts +19 -0
  1298. package/packages/framework/esm-react-utils/src/ComponentContext.ts +10 -0
  1299. package/packages/framework/esm-react-utils/src/ConfigurableLink.test.tsx +92 -0
  1300. package/packages/framework/esm-react-utils/src/ConfigurableLink.tsx +77 -0
  1301. package/packages/framework/esm-react-utils/src/Extension.tsx +99 -0
  1302. package/packages/framework/esm-react-utils/src/ExtensionSlot.tsx +127 -0
  1303. package/packages/framework/esm-react-utils/src/OpenmrsContext.ts +31 -0
  1304. package/packages/framework/esm-react-utils/src/RenderIfValueIsTruthy.tsx +26 -0
  1305. package/packages/framework/esm-react-utils/src/UserHasAccess.test.tsx +311 -0
  1306. package/packages/framework/esm-react-utils/src/UserHasAccess.tsx +55 -0
  1307. package/packages/framework/esm-react-utils/src/extensions.test.tsx +303 -0
  1308. package/packages/framework/esm-react-utils/src/getLifecycle.ts +32 -0
  1309. package/packages/framework/esm-react-utils/src/index.ts +51 -0
  1310. package/packages/framework/esm-react-utils/src/openmrsComponentDecorator.test.tsx +76 -0
  1311. package/packages/framework/esm-react-utils/src/openmrsComponentDecorator.tsx +158 -0
  1312. package/packages/framework/esm-react-utils/src/public.ts +45 -0
  1313. package/packages/framework/esm-react-utils/src/useAbortController.test.tsx +41 -0
  1314. package/packages/framework/esm-react-utils/src/useAbortController.ts +40 -0
  1315. package/packages/framework/esm-react-utils/src/useAppContext.ts +76 -0
  1316. package/packages/framework/esm-react-utils/src/useAssignedExtensionIds.ts +26 -0
  1317. package/packages/framework/esm-react-utils/src/useAssignedExtensions.ts +11 -0
  1318. package/packages/framework/esm-react-utils/src/useAttachments.ts +24 -0
  1319. package/packages/framework/esm-react-utils/src/useBodyScrollLock.ts +14 -0
  1320. package/packages/framework/esm-react-utils/src/useConfig.test.tsx +345 -0
  1321. package/packages/framework/esm-react-utils/src/useConfig.ts +167 -0
  1322. package/packages/framework/esm-react-utils/src/useConnectedExtensions.ts +10 -0
  1323. package/packages/framework/esm-react-utils/src/useConnectivity.ts +12 -0
  1324. package/packages/framework/esm-react-utils/src/useDebounce.ts +44 -0
  1325. package/packages/framework/esm-react-utils/src/useDefineAppContext.ts +58 -0
  1326. package/packages/framework/esm-react-utils/src/useEmrConfiguration.ts +173 -0
  1327. package/packages/framework/esm-react-utils/src/useExtensionInternalStore.ts +8 -0
  1328. package/packages/framework/esm-react-utils/src/useExtensionSlot.ts +37 -0
  1329. package/packages/framework/esm-react-utils/src/useExtensionSlotMeta.ts +14 -0
  1330. package/packages/framework/esm-react-utils/src/useExtensionSlotStore.ts +6 -0
  1331. package/packages/framework/esm-react-utils/src/useExtensionStore.ts +5 -0
  1332. package/packages/framework/esm-react-utils/src/useFeatureFlag.ts +23 -0
  1333. package/packages/framework/esm-react-utils/src/useFhirFetchAll.ts +24 -0
  1334. package/packages/framework/esm-react-utils/src/useFhirInfinite.ts +29 -0
  1335. package/packages/framework/esm-react-utils/src/useFhirPagination.ts +66 -0
  1336. package/packages/framework/esm-react-utils/src/useForceUpdate.ts +9 -0
  1337. package/packages/framework/esm-react-utils/src/useLayoutType.ts +40 -0
  1338. package/packages/framework/esm-react-utils/src/useLeftNav.ts +19 -0
  1339. package/packages/framework/esm-react-utils/src/useLeftNavStore.ts +6 -0
  1340. package/packages/framework/esm-react-utils/src/useLocations.tsx +21 -0
  1341. package/packages/framework/esm-react-utils/src/useOnClickOutside.test.tsx +65 -0
  1342. package/packages/framework/esm-react-utils/src/useOnClickOutside.ts +32 -0
  1343. package/packages/framework/esm-react-utils/src/useOnVisible.ts +46 -0
  1344. package/packages/framework/esm-react-utils/src/useOpenmrsFetchAll.test.ts +53 -0
  1345. package/packages/framework/esm-react-utils/src/useOpenmrsFetchAll.ts +70 -0
  1346. package/packages/framework/esm-react-utils/src/useOpenmrsInfinite.test.ts +69 -0
  1347. package/packages/framework/esm-react-utils/src/useOpenmrsInfinite.ts +156 -0
  1348. package/packages/framework/esm-react-utils/src/useOpenmrsPagination.test.ts +137 -0
  1349. package/packages/framework/esm-react-utils/src/useOpenmrsPagination.ts +173 -0
  1350. package/packages/framework/esm-react-utils/src/useOpenmrsSWR.ts +87 -0
  1351. package/packages/framework/esm-react-utils/src/usePagination.ts +65 -0
  1352. package/packages/framework/esm-react-utils/src/usePaginationInfo.ts +32 -0
  1353. package/packages/framework/esm-react-utils/src/usePatient.test.ts +433 -0
  1354. package/packages/framework/esm-react-utils/src/usePatient.ts +51 -0
  1355. package/packages/framework/esm-react-utils/src/usePrimaryIdentifierResource.ts +31 -0
  1356. package/packages/framework/esm-react-utils/src/useRenderableExtensions.tsx +51 -0
  1357. package/packages/framework/esm-react-utils/src/useSession.test.tsx +113 -0
  1358. package/packages/framework/esm-react-utils/src/useSession.ts +123 -0
  1359. package/packages/framework/esm-react-utils/src/useStore.test.ts +49 -0
  1360. package/packages/framework/esm-react-utils/src/useStore.ts +124 -0
  1361. package/packages/framework/esm-react-utils/src/useVisit.test.ts +505 -0
  1362. package/packages/framework/esm-react-utils/src/useVisit.ts +119 -0
  1363. package/packages/framework/esm-react-utils/src/useVisitContextStore.ts +57 -0
  1364. package/packages/framework/esm-react-utils/src/useVisitTypes.ts +20 -0
  1365. package/packages/framework/esm-react-utils/tsconfig.build.json +9 -0
  1366. package/packages/framework/esm-react-utils/tsconfig.json +5 -0
  1367. package/packages/framework/esm-react-utils/vitest.config.ts +9 -0
  1368. package/packages/framework/esm-routes/.swcrc +16 -0
  1369. package/packages/framework/esm-routes/README.md +3 -0
  1370. package/packages/framework/esm-routes/package.json +75 -0
  1371. package/packages/framework/esm-routes/src/constants.ts +1 -0
  1372. package/packages/framework/esm-routes/src/index.ts +3 -0
  1373. package/packages/framework/esm-routes/src/loaders/components.ts +258 -0
  1374. package/packages/framework/esm-routes/src/loaders/helpers.ts +4 -0
  1375. package/packages/framework/esm-routes/src/loaders/index.ts +3 -0
  1376. package/packages/framework/esm-routes/src/loaders/load-lifecycles.ts +109 -0
  1377. package/packages/framework/esm-routes/src/loaders/pages.ts +276 -0
  1378. package/packages/framework/esm-routes/src/public.ts +2 -0
  1379. package/packages/framework/esm-routes/src/routes.test.ts +177 -0
  1380. package/packages/framework/esm-routes/src/routes.ts +154 -0
  1381. package/packages/framework/esm-routes/tsconfig.build.json +9 -0
  1382. package/packages/framework/esm-routes/tsconfig.json +5 -0
  1383. package/packages/framework/esm-routes/vitest.config.ts +8 -0
  1384. package/packages/framework/esm-state/.swcrc +16 -0
  1385. package/packages/framework/esm-state/README.md +9 -0
  1386. package/packages/framework/esm-state/mock-jest.ts +68 -0
  1387. package/packages/framework/esm-state/mock.ts +68 -0
  1388. package/packages/framework/esm-state/package.json +74 -0
  1389. package/packages/framework/esm-state/src/index.ts +1 -0
  1390. package/packages/framework/esm-state/src/public.ts +1 -0
  1391. package/packages/framework/esm-state/src/state.test.ts +531 -0
  1392. package/packages/framework/esm-state/src/state.ts +135 -0
  1393. package/packages/framework/esm-state/src/utils.ts +16 -0
  1394. package/packages/framework/esm-state/tsconfig.build.json +9 -0
  1395. package/packages/framework/esm-state/tsconfig.json +5 -0
  1396. package/packages/framework/esm-state/vitest.config.ts +7 -0
  1397. package/packages/framework/esm-styleguide/README.md +7 -0
  1398. package/packages/framework/esm-styleguide/__mocks__/config.mock.ts +23 -0
  1399. package/packages/framework/esm-styleguide/__mocks__/locations.mock.ts +576 -0
  1400. package/packages/framework/esm-styleguide/__mocks__/react-i18next.js +49 -0
  1401. package/packages/framework/esm-styleguide/logo/openmrs_logo.png +0 -0
  1402. package/packages/framework/esm-styleguide/mock-jest.tsx +208 -0
  1403. package/packages/framework/esm-styleguide/mock.tsx +209 -0
  1404. package/packages/framework/esm-styleguide/package.json +131 -0
  1405. package/packages/framework/esm-styleguide/postcss.config.js +8 -0
  1406. package/packages/framework/esm-styleguide/rspack.config.cjs +96 -0
  1407. package/packages/framework/esm-styleguide/setup-tests.ts +24 -0
  1408. package/packages/framework/esm-styleguide/src/_all.scss +20 -0
  1409. package/packages/framework/esm-styleguide/src/_overrides.scss +750 -0
  1410. package/packages/framework/esm-styleguide/src/_vars.scss +77 -0
  1411. package/packages/framework/esm-styleguide/src/brand.ts +15 -0
  1412. package/packages/framework/esm-styleguide/src/breakpoints/index.ts +25 -0
  1413. package/packages/framework/esm-styleguide/src/cards/card-header.component.tsx +30 -0
  1414. package/packages/framework/esm-styleguide/src/cards/card-header.module.scss +45 -0
  1415. package/packages/framework/esm-styleguide/src/cards/index.ts +1 -0
  1416. package/packages/framework/esm-styleguide/src/components/_breadcrumbs.scss +11 -0
  1417. package/packages/framework/esm-styleguide/src/components/_canvas.scss +8 -0
  1418. package/packages/framework/esm-styleguide/src/components/_colors.scss +31 -0
  1419. package/packages/framework/esm-styleguide/src/components/_general.scss +64 -0
  1420. package/packages/framework/esm-styleguide/src/components/_main-content.scss +24 -0
  1421. package/packages/framework/esm-styleguide/src/config-schema.ts +118 -0
  1422. package/packages/framework/esm-styleguide/src/custom-overflow-menu/custom-overflow-menu.component.tsx +55 -0
  1423. package/packages/framework/esm-styleguide/src/custom-overflow-menu/custom-overflow-menu.module.scss +38 -0
  1424. package/packages/framework/esm-styleguide/src/custom-overflow-menu/custom-overflow-menu.test.tsx +96 -0
  1425. package/packages/framework/esm-styleguide/src/custom-overflow-menu/index.ts +1 -0
  1426. package/packages/framework/esm-styleguide/src/dashboard-extension/dashboard.module.scss +13 -0
  1427. package/packages/framework/esm-styleguide/src/dashboard-extension/index.tsx +61 -0
  1428. package/packages/framework/esm-styleguide/src/datepicker/DatePickerIcon.tsx +17 -0
  1429. package/packages/framework/esm-styleguide/src/datepicker/DatePickerInput.tsx +71 -0
  1430. package/packages/framework/esm-styleguide/src/datepicker/DateSegment.tsx +72 -0
  1431. package/packages/framework/esm-styleguide/src/datepicker/MonthYear.tsx +87 -0
  1432. package/packages/framework/esm-styleguide/src/datepicker/OpenmrsDatePicker.tsx +243 -0
  1433. package/packages/framework/esm-styleguide/src/datepicker/auto-close-dialog.component.tsx +24 -0
  1434. package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-icon.component.tsx +13 -0
  1435. package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-picker.component.tsx +248 -0
  1436. package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-picker.module.scss +38 -0
  1437. package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-picker.test.tsx +98 -0
  1438. package/packages/framework/esm-styleguide/src/datepicker/datepicker.module.scss +389 -0
  1439. package/packages/framework/esm-styleguide/src/datepicker/datepicker.test.tsx +64 -0
  1440. package/packages/framework/esm-styleguide/src/datepicker/hooks.ts +98 -0
  1441. package/packages/framework/esm-styleguide/src/datepicker/index.tsx +2 -0
  1442. package/packages/framework/esm-styleguide/src/datepicker/locale-context.ts +5 -0
  1443. package/packages/framework/esm-styleguide/src/datepicker/utils.ts +75 -0
  1444. package/packages/framework/esm-styleguide/src/declarations.d.ts +19 -0
  1445. package/packages/framework/esm-styleguide/src/diagnosis-tags/diagnosis-tags.component.tsx +38 -0
  1446. package/packages/framework/esm-styleguide/src/diagnosis-tags/diagnosis-tags.module.scss +8 -0
  1447. package/packages/framework/esm-styleguide/src/diagnosis-tags/index.tsx +1 -0
  1448. package/packages/framework/esm-styleguide/src/empty-card/empty-card-registration.ts +6 -0
  1449. package/packages/framework/esm-styleguide/src/empty-card/empty-card.component.tsx +55 -0
  1450. package/packages/framework/esm-styleguide/src/empty-card/empty-card.module.scss +27 -0
  1451. package/packages/framework/esm-styleguide/src/empty-card/empty-card.test.tsx +58 -0
  1452. package/packages/framework/esm-styleguide/src/empty-card/empty-data-illustration.svg +32 -0
  1453. package/packages/framework/esm-styleguide/src/empty-card/index.ts +1 -0
  1454. package/packages/framework/esm-styleguide/src/error-state/error-state.component.tsx +30 -0
  1455. package/packages/framework/esm-styleguide/src/error-state/error-state.module.scss +21 -0
  1456. package/packages/framework/esm-styleguide/src/error-state/error-state.test.tsx +50 -0
  1457. package/packages/framework/esm-styleguide/src/error-state/index.ts +1 -0
  1458. package/packages/framework/esm-styleguide/src/icons/icon-registration.ts +194 -0
  1459. package/packages/framework/esm-styleguide/src/icons/icons.module.scss +5 -0
  1460. package/packages/framework/esm-styleguide/src/icons/icons.tsx +936 -0
  1461. package/packages/framework/esm-styleguide/src/icons/index.ts +1 -0
  1462. package/packages/framework/esm-styleguide/src/icons/svgs/activity.svg +3 -0
  1463. package/packages/framework/esm-styleguide/src/icons/svgs/add.svg +3 -0
  1464. package/packages/framework/esm-styleguide/src/icons/svgs/arrow-down.svg +3 -0
  1465. package/packages/framework/esm-styleguide/src/icons/svgs/arrow-left.svg +3 -0
  1466. package/packages/framework/esm-styleguide/src/icons/svgs/arrow-right.svg +3 -0
  1467. package/packages/framework/esm-styleguide/src/icons/svgs/arrow-up.svg +3 -0
  1468. package/packages/framework/esm-styleguide/src/icons/svgs/baby.svg +5 -0
  1469. package/packages/framework/esm-styleguide/src/icons/svgs/calendar--heat-map.svg +3 -0
  1470. package/packages/framework/esm-styleguide/src/icons/svgs/calendar.svg +3 -0
  1471. package/packages/framework/esm-styleguide/src/icons/svgs/caret-down.svg +3 -0
  1472. package/packages/framework/esm-styleguide/src/icons/svgs/caret-left.svg +3 -0
  1473. package/packages/framework/esm-styleguide/src/icons/svgs/caret-right.svg +3 -0
  1474. package/packages/framework/esm-styleguide/src/icons/svgs/caret-up.svg +3 -0
  1475. package/packages/framework/esm-styleguide/src/icons/svgs/chart-average.svg +9 -0
  1476. package/packages/framework/esm-styleguide/src/icons/svgs/checkmark--filled.svg +3 -0
  1477. package/packages/framework/esm-styleguide/src/icons/svgs/checkmark--outline.svg +4 -0
  1478. package/packages/framework/esm-styleguide/src/icons/svgs/chemistry.svg +3 -0
  1479. package/packages/framework/esm-styleguide/src/icons/svgs/chevron-down.svg +3 -0
  1480. package/packages/framework/esm-styleguide/src/icons/svgs/chevron-left.svg +3 -0
  1481. package/packages/framework/esm-styleguide/src/icons/svgs/chevron-right.svg +3 -0
  1482. package/packages/framework/esm-styleguide/src/icons/svgs/chevron-up.svg +3 -0
  1483. package/packages/framework/esm-styleguide/src/icons/svgs/close--filled.svg +3 -0
  1484. package/packages/framework/esm-styleguide/src/icons/svgs/close--outline.svg +4 -0
  1485. package/packages/framework/esm-styleguide/src/icons/svgs/close.svg +3 -0
  1486. package/packages/framework/esm-styleguide/src/icons/svgs/document-attachment.svg +7 -0
  1487. package/packages/framework/esm-styleguide/src/icons/svgs/document.svg +5 -0
  1488. package/packages/framework/esm-styleguide/src/icons/svgs/download.svg +4 -0
  1489. package/packages/framework/esm-styleguide/src/icons/svgs/drug-order.svg +11 -0
  1490. package/packages/framework/esm-styleguide/src/icons/svgs/edit.svg +4 -0
  1491. package/packages/framework/esm-styleguide/src/icons/svgs/event-schedule.svg +5 -0
  1492. package/packages/framework/esm-styleguide/src/icons/svgs/events.svg +8 -0
  1493. package/packages/framework/esm-styleguide/src/icons/svgs/gender-female.svg +3 -0
  1494. package/packages/framework/esm-styleguide/src/icons/svgs/gender-male.svg +3 -0
  1495. package/packages/framework/esm-styleguide/src/icons/svgs/gender-other.svg +3 -0
  1496. package/packages/framework/esm-styleguide/src/icons/svgs/gender-unknown.svg +5 -0
  1497. package/packages/framework/esm-styleguide/src/icons/svgs/generic-order-type.svg +18 -0
  1498. package/packages/framework/esm-styleguide/src/icons/svgs/group-access.svg +8 -0
  1499. package/packages/framework/esm-styleguide/src/icons/svgs/group.svg +6 -0
  1500. package/packages/framework/esm-styleguide/src/icons/svgs/hospital-bed.svg +5 -0
  1501. package/packages/framework/esm-styleguide/src/icons/svgs/image-medical.svg +4 -0
  1502. package/packages/framework/esm-styleguide/src/icons/svgs/information--filled.svg +3 -0
  1503. package/packages/framework/esm-styleguide/src/icons/svgs/information--square.svg +5 -0
  1504. package/packages/framework/esm-styleguide/src/icons/svgs/information.svg +5 -0
  1505. package/packages/framework/esm-styleguide/src/icons/svgs/inventory-management.svg +7 -0
  1506. package/packages/framework/esm-styleguide/src/icons/svgs/lab-order.svg +3 -0
  1507. package/packages/framework/esm-styleguide/src/icons/svgs/list-checked.svg +6 -0
  1508. package/packages/framework/esm-styleguide/src/icons/svgs/location.svg +4 -0
  1509. package/packages/framework/esm-styleguide/src/icons/svgs/material-order.svg +13 -0
  1510. package/packages/framework/esm-styleguide/src/icons/svgs/maximize.svg +4 -0
  1511. package/packages/framework/esm-styleguide/src/icons/svgs/medication.svg +3 -0
  1512. package/packages/framework/esm-styleguide/src/icons/svgs/message-queue.svg +7 -0
  1513. package/packages/framework/esm-styleguide/src/icons/svgs/microscope.svg +3 -0
  1514. package/packages/framework/esm-styleguide/src/icons/svgs/money.svg +8 -0
  1515. package/packages/framework/esm-styleguide/src/icons/svgs/mother.svg +4 -0
  1516. package/packages/framework/esm-styleguide/src/icons/svgs/movement.svg +3 -0
  1517. package/packages/framework/esm-styleguide/src/icons/svgs/overflow-menu--horizontal.svg +5 -0
  1518. package/packages/framework/esm-styleguide/src/icons/svgs/overflow-menu--vertical.svg +5 -0
  1519. package/packages/framework/esm-styleguide/src/icons/svgs/password.svg +4 -0
  1520. package/packages/framework/esm-styleguide/src/icons/svgs/pedestrian-family.svg +7 -0
  1521. package/packages/framework/esm-styleguide/src/icons/svgs/pen.svg +4 -0
  1522. package/packages/framework/esm-styleguide/src/icons/svgs/printer.svg +3 -0
  1523. package/packages/framework/esm-styleguide/src/icons/svgs/procedure-order.svg +3 -0
  1524. package/packages/framework/esm-styleguide/src/icons/svgs/programs.svg +13 -0
  1525. package/packages/framework/esm-styleguide/src/icons/svgs/referral-order.svg +11 -0
  1526. package/packages/framework/esm-styleguide/src/icons/svgs/renew.svg +4 -0
  1527. package/packages/framework/esm-styleguide/src/icons/svgs/report.svg +6 -0
  1528. package/packages/framework/esm-styleguide/src/icons/svgs/reset.svg +3 -0
  1529. package/packages/framework/esm-styleguide/src/icons/svgs/save.svg +3 -0
  1530. package/packages/framework/esm-styleguide/src/icons/svgs/search.svg +3 -0
  1531. package/packages/framework/esm-styleguide/src/icons/svgs/settings.svg +4 -0
  1532. package/packages/framework/esm-styleguide/src/icons/svgs/shopping-cart--arrow-down.svg +6 -0
  1533. package/packages/framework/esm-styleguide/src/icons/svgs/shopping-cart.svg +5 -0
  1534. package/packages/framework/esm-styleguide/src/icons/svgs/sticky-note-add.svg +4 -0
  1535. package/packages/framework/esm-styleguide/src/icons/svgs/switcher.svg +11 -0
  1536. package/packages/framework/esm-styleguide/src/icons/svgs/syringe.svg +5 -0
  1537. package/packages/framework/esm-styleguide/src/icons/svgs/table-of-contents.svg +10 -0
  1538. package/packages/framework/esm-styleguide/src/icons/svgs/table.svg +3 -0
  1539. package/packages/framework/esm-styleguide/src/icons/svgs/time.svg +4 -0
  1540. package/packages/framework/esm-styleguide/src/icons/svgs/tools.svg +3 -0
  1541. package/packages/framework/esm-styleguide/src/icons/svgs/translate.svg +4 -0
  1542. package/packages/framework/esm-styleguide/src/icons/svgs/trash-can.svg +6 -0
  1543. package/packages/framework/esm-styleguide/src/icons/svgs/tree-view--alt.svg +10 -0
  1544. package/packages/framework/esm-styleguide/src/icons/svgs/user-avatar.svg +4 -0
  1545. package/packages/framework/esm-styleguide/src/icons/svgs/user-follow.svg +5 -0
  1546. package/packages/framework/esm-styleguide/src/icons/svgs/user-xray.svg +12 -0
  1547. package/packages/framework/esm-styleguide/src/icons/svgs/user.svg +4 -0
  1548. package/packages/framework/esm-styleguide/src/icons/svgs/view-off.svg +5 -0
  1549. package/packages/framework/esm-styleguide/src/icons/svgs/view.svg +4 -0
  1550. package/packages/framework/esm-styleguide/src/icons/svgs/warning.svg +5 -0
  1551. package/packages/framework/esm-styleguide/src/index.ts +26 -0
  1552. package/packages/framework/esm-styleguide/src/internal.ts +30 -0
  1553. package/packages/framework/esm-styleguide/src/left-nav/index.tsx +63 -0
  1554. package/packages/framework/esm-styleguide/src/left-nav/left-nav.module.scss +43 -0
  1555. package/packages/framework/esm-styleguide/src/location-picker/index.tsx +1 -0
  1556. package/packages/framework/esm-styleguide/src/location-picker/location-picker.component.tsx +142 -0
  1557. package/packages/framework/esm-styleguide/src/location-picker/location-picker.module.scss +71 -0
  1558. package/packages/framework/esm-styleguide/src/location-picker/location-picker.resource.ts +118 -0
  1559. package/packages/framework/esm-styleguide/src/location-picker/location-picker.test.tsx +429 -0
  1560. package/packages/framework/esm-styleguide/src/logo/_logo.scss +34 -0
  1561. package/packages/framework/esm-styleguide/src/logo/index.ts +18 -0
  1562. package/packages/framework/esm-styleguide/src/logo/openmrs-logo-full.svg +32 -0
  1563. package/packages/framework/esm-styleguide/src/logo/openmrs-logo-icon.svg +6 -0
  1564. package/packages/framework/esm-styleguide/src/logo/openmrs-logo-partial.svg +13 -0
  1565. package/packages/framework/esm-styleguide/src/logo/openmrs-logo-white.svg +13 -0
  1566. package/packages/framework/esm-styleguide/src/modals/_modals.scss +13 -0
  1567. package/packages/framework/esm-styleguide/src/modals/index.tsx +226 -0
  1568. package/packages/framework/esm-styleguide/src/notifications/_actionable-notifications.scss +23 -0
  1569. package/packages/framework/esm-styleguide/src/notifications/_notifications.scss +22 -0
  1570. package/packages/framework/esm-styleguide/src/notifications/actionable-notification.component.tsx +63 -0
  1571. package/packages/framework/esm-styleguide/src/notifications/active-actionable-notifications.component.tsx +40 -0
  1572. package/packages/framework/esm-styleguide/src/notifications/active-notifications.component.tsx +39 -0
  1573. package/packages/framework/esm-styleguide/src/notifications/index.tsx +97 -0
  1574. package/packages/framework/esm-styleguide/src/notifications/notification.component.tsx +39 -0
  1575. package/packages/framework/esm-styleguide/src/page-header/index.ts +1 -0
  1576. package/packages/framework/esm-styleguide/src/page-header/page-header.component.tsx +108 -0
  1577. package/packages/framework/esm-styleguide/src/page-header/page-header.module.scss +28 -0
  1578. package/packages/framework/esm-styleguide/src/page-header/page-header.test.tsx +65 -0
  1579. package/packages/framework/esm-styleguide/src/pagination/index.ts +1 -0
  1580. package/packages/framework/esm-styleguide/src/pagination/pagination.component.tsx +77 -0
  1581. package/packages/framework/esm-styleguide/src/pagination/pagination.module.scss +66 -0
  1582. package/packages/framework/esm-styleguide/src/pagination/pagination.test.tsx +72 -0
  1583. package/packages/framework/esm-styleguide/src/patient-banner/actions-menu/patient-banner-actions-menu.component.tsx +50 -0
  1584. package/packages/framework/esm-styleguide/src/patient-banner/actions-menu/patient-banner-actions-menu.module.scss +23 -0
  1585. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-contact-details.component.tsx +212 -0
  1586. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-contact-details.module.scss +47 -0
  1587. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-contact-details.test.tsx +195 -0
  1588. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-toggle-contact-details-button.component.tsx +32 -0
  1589. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/types.ts +54 -0
  1590. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/usePatientAttributes.ts +59 -0
  1591. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/usePatientListsForPatient.ts +21 -0
  1592. package/packages/framework/esm-styleguide/src/patient-banner/contact-details/useRelationships.ts +85 -0
  1593. package/packages/framework/esm-styleguide/src/patient-banner/index.ts +5 -0
  1594. package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-identifiers.component.tsx +72 -0
  1595. package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-identifiers.test.tsx +76 -0
  1596. package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-info.component.tsx +100 -0
  1597. package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-info.module.scss +156 -0
  1598. package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-info.test.tsx +91 -0
  1599. package/packages/framework/esm-styleguide/src/patient-photo/index.ts +2 -0
  1600. package/packages/framework/esm-styleguide/src/patient-photo/loader-icon.component.tsx +16 -0
  1601. package/packages/framework/esm-styleguide/src/patient-photo/patient-photo.component.tsx +99 -0
  1602. package/packages/framework/esm-styleguide/src/patient-photo/patient-photo.module.scss +4 -0
  1603. package/packages/framework/esm-styleguide/src/patient-photo/patient-photo.test.tsx +187 -0
  1604. package/packages/framework/esm-styleguide/src/patient-photo/placeholder-icon.component.tsx +32 -0
  1605. package/packages/framework/esm-styleguide/src/patient-photo/usePatientPhoto.ts +53 -0
  1606. package/packages/framework/esm-styleguide/src/pictograms/index.ts +1 -0
  1607. package/packages/framework/esm-styleguide/src/pictograms/pictogram-registration.ts +66 -0
  1608. package/packages/framework/esm-styleguide/src/pictograms/pictograms.module.scss +5 -0
  1609. package/packages/framework/esm-styleguide/src/pictograms/pictograms.tsx +277 -0
  1610. package/packages/framework/esm-styleguide/src/pictograms/svgs/appointments.svg +10 -0
  1611. package/packages/framework/esm-styleguide/src/pictograms/svgs/assessment-1.svg +8 -0
  1612. package/packages/framework/esm-styleguide/src/pictograms/svgs/assessment-2.svg +6 -0
  1613. package/packages/framework/esm-styleguide/src/pictograms/svgs/blood-bank.svg +4 -0
  1614. package/packages/framework/esm-styleguide/src/pictograms/svgs/cardiology.svg +4 -0
  1615. package/packages/framework/esm-styleguide/src/pictograms/svgs/ct-scan.svg +5 -0
  1616. package/packages/framework/esm-styleguide/src/pictograms/svgs/dentistry.svg +3 -0
  1617. package/packages/framework/esm-styleguide/src/pictograms/svgs/emergency-department.svg +4 -0
  1618. package/packages/framework/esm-styleguide/src/pictograms/svgs/facility.svg +23 -0
  1619. package/packages/framework/esm-styleguide/src/pictograms/svgs/geriatrics.svg +8 -0
  1620. package/packages/framework/esm-styleguide/src/pictograms/svgs/gynaecology.svg +7 -0
  1621. package/packages/framework/esm-styleguide/src/pictograms/svgs/in-patient.svg +7 -0
  1622. package/packages/framework/esm-styleguide/src/pictograms/svgs/inventory.svg +6 -0
  1623. package/packages/framework/esm-styleguide/src/pictograms/svgs/labs-2.svg +12 -0
  1624. package/packages/framework/esm-styleguide/src/pictograms/svgs/labs.svg +7 -0
  1625. package/packages/framework/esm-styleguide/src/pictograms/svgs/obstetrics.svg +5 -0
  1626. package/packages/framework/esm-styleguide/src/pictograms/svgs/patient-search.svg +4 -0
  1627. package/packages/framework/esm-styleguide/src/pictograms/svgs/patients.svg +5 -0
  1628. package/packages/framework/esm-styleguide/src/pictograms/svgs/payments-desk.svg +11 -0
  1629. package/packages/framework/esm-styleguide/src/pictograms/svgs/pharmacy-1.svg +4 -0
  1630. package/packages/framework/esm-styleguide/src/pictograms/svgs/pharmacy-2.svg +6 -0
  1631. package/packages/framework/esm-styleguide/src/pictograms/svgs/registration.svg +7 -0
  1632. package/packages/framework/esm-styleguide/src/pictograms/svgs/service-queues.svg +5 -0
  1633. package/packages/framework/esm-styleguide/src/pictograms/svgs/transfer.svg +6 -0
  1634. package/packages/framework/esm-styleguide/src/pictograms/svgs/triage.svg +6 -0
  1635. package/packages/framework/esm-styleguide/src/pictograms/svgs/x-ray.svg +5 -0
  1636. package/packages/framework/esm-styleguide/src/public.ts +38 -0
  1637. package/packages/framework/esm-styleguide/src/responsive-wrapper/index.ts +1 -0
  1638. package/packages/framework/esm-styleguide/src/responsive-wrapper/responsive-wrapper.component.tsx +24 -0
  1639. package/packages/framework/esm-styleguide/src/snackbars/_snackbars.scss +31 -0
  1640. package/packages/framework/esm-styleguide/src/snackbars/active-snackbar.component.tsx +45 -0
  1641. package/packages/framework/esm-styleguide/src/snackbars/index.tsx +45 -0
  1642. package/packages/framework/esm-styleguide/src/snackbars/snackbar.component.tsx +104 -0
  1643. package/packages/framework/esm-styleguide/src/snackbars/snackbar.module.scss +30 -0
  1644. package/packages/framework/esm-styleguide/src/snackbars/snackbar.test.tsx +89 -0
  1645. package/packages/framework/esm-styleguide/src/spinner/_spinner.scss +14 -0
  1646. package/packages/framework/esm-styleguide/src/spinner/index.ts +14 -0
  1647. package/packages/framework/esm-styleguide/src/svg-utils.ts +31 -0
  1648. package/packages/framework/esm-styleguide/src/test-utils.tsx +19 -0
  1649. package/packages/framework/esm-styleguide/src/toasts/_toasts.scss +22 -0
  1650. package/packages/framework/esm-styleguide/src/toasts/active-toasts.component.tsx +45 -0
  1651. package/packages/framework/esm-styleguide/src/toasts/index.tsx +52 -0
  1652. package/packages/framework/esm-styleguide/src/toasts/toast.component.tsx +45 -0
  1653. package/packages/framework/esm-styleguide/src/utils.ts +20 -0
  1654. package/packages/framework/esm-styleguide/src/workspaces/action-menu-button/action-menu-button.component.tsx +89 -0
  1655. package/packages/framework/esm-styleguide/src/workspaces/action-menu-button/action-menu-button.module.scss +111 -0
  1656. package/packages/framework/esm-styleguide/src/workspaces/action-menu-button/action-menu-button.test.tsx +263 -0
  1657. package/packages/framework/esm-styleguide/src/workspaces/container/action-menu.component.tsx +47 -0
  1658. package/packages/framework/esm-styleguide/src/workspaces/container/action-menu.module.scss +89 -0
  1659. package/packages/framework/esm-styleguide/src/workspaces/container/workspace-container.component.tsx +258 -0
  1660. package/packages/framework/esm-styleguide/src/workspaces/container/workspace-container.test.tsx +261 -0
  1661. package/packages/framework/esm-styleguide/src/workspaces/container/workspace-renderer.component.tsx +50 -0
  1662. package/packages/framework/esm-styleguide/src/workspaces/container/workspace-renderer.test.tsx +66 -0
  1663. package/packages/framework/esm-styleguide/src/workspaces/container/workspace.module.scss +276 -0
  1664. package/packages/framework/esm-styleguide/src/workspaces/index.ts +5 -0
  1665. package/packages/framework/esm-styleguide/src/workspaces/notification/workspace-notification.component.tsx +101 -0
  1666. package/packages/framework/esm-styleguide/src/workspaces/notification/workspace-notification.module.scss +5 -0
  1667. package/packages/framework/esm-styleguide/src/workspaces/public.ts +16 -0
  1668. package/packages/framework/esm-styleguide/src/workspaces/workspace-sidebar-store/useWorkspaceGroupStore.ts +39 -0
  1669. package/packages/framework/esm-styleguide/src/workspaces/workspaces.test.ts +820 -0
  1670. package/packages/framework/esm-styleguide/src/workspaces/workspaces.ts +677 -0
  1671. package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu-button2.component.tsx +134 -0
  1672. package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu-button2.module.scss +103 -0
  1673. package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu2.component.tsx +75 -0
  1674. package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu2.module.scss +95 -0
  1675. package/packages/framework/esm-styleguide/src/workspaces2/active-workspace-window.component.tsx +152 -0
  1676. package/packages/framework/esm-styleguide/src/workspaces2/index.tsx +3 -0
  1677. package/packages/framework/esm-styleguide/src/workspaces2/workspace-windows-and-menu.component.tsx +67 -0
  1678. package/packages/framework/esm-styleguide/src/workspaces2/workspace-windows-and-menu.module.scss +33 -0
  1679. package/packages/framework/esm-styleguide/src/workspaces2/workspace2-close-prompt.modal.tsx +43 -0
  1680. package/packages/framework/esm-styleguide/src/workspaces2/workspace2-close-prompt.module.scss +8 -0
  1681. package/packages/framework/esm-styleguide/src/workspaces2/workspace2.component.tsx +211 -0
  1682. package/packages/framework/esm-styleguide/src/workspaces2/workspace2.module.scss +208 -0
  1683. package/packages/framework/esm-styleguide/src/workspaces2/workspace2.ts +611 -0
  1684. package/packages/framework/esm-styleguide/tsconfig.build.json +10 -0
  1685. package/packages/framework/esm-styleguide/tsconfig.json +5 -0
  1686. package/packages/framework/esm-styleguide/vitest.config.ts +17 -0
  1687. package/packages/framework/esm-translations/.swcrc +16 -0
  1688. package/packages/framework/esm-translations/README.md +15 -0
  1689. package/packages/framework/esm-translations/custom-i18next-parser-lexer.mjs +25 -0
  1690. package/packages/framework/esm-translations/i18next-parser.config.mjs +76 -0
  1691. package/packages/framework/esm-translations/mock-jest.ts +25 -0
  1692. package/packages/framework/esm-translations/mock.ts +26 -0
  1693. package/packages/framework/esm-translations/package.json +69 -0
  1694. package/packages/framework/esm-translations/src/index.ts +76 -0
  1695. package/packages/framework/esm-translations/src/public.ts +1 -0
  1696. package/packages/framework/esm-translations/src/translations.ts +106 -0
  1697. package/packages/framework/esm-translations/translations/am.json +85 -0
  1698. package/packages/framework/esm-translations/translations/ar.json +85 -0
  1699. package/packages/framework/esm-translations/translations/ar_SY.json +85 -0
  1700. package/packages/framework/esm-translations/translations/bn.json +85 -0
  1701. package/packages/framework/esm-translations/translations/cs.json +85 -0
  1702. package/packages/framework/esm-translations/translations/de.json +85 -0
  1703. package/packages/framework/esm-translations/translations/en.json +85 -0
  1704. package/packages/framework/esm-translations/translations/en_US.json +85 -0
  1705. package/packages/framework/esm-translations/translations/es.json +85 -0
  1706. package/packages/framework/esm-translations/translations/es_MX.json +85 -0
  1707. package/packages/framework/esm-translations/translations/fr.json +85 -0
  1708. package/packages/framework/esm-translations/translations/he.json +85 -0
  1709. package/packages/framework/esm-translations/translations/hi.json +85 -0
  1710. package/packages/framework/esm-translations/translations/hi_IN.json +85 -0
  1711. package/packages/framework/esm-translations/translations/id.json +85 -0
  1712. package/packages/framework/esm-translations/translations/it.json +85 -0
  1713. package/packages/framework/esm-translations/translations/ka.json +85 -0
  1714. package/packages/framework/esm-translations/translations/km.json +85 -0
  1715. package/packages/framework/esm-translations/translations/ku.json +85 -0
  1716. package/packages/framework/esm-translations/translations/ky.json +85 -0
  1717. package/packages/framework/esm-translations/translations/lg.json +85 -0
  1718. package/packages/framework/esm-translations/translations/ne.json +85 -0
  1719. package/packages/framework/esm-translations/translations/pl.json +85 -0
  1720. package/packages/framework/esm-translations/translations/pt.json +85 -0
  1721. package/packages/framework/esm-translations/translations/pt_BR.json +85 -0
  1722. package/packages/framework/esm-translations/translations/qu.json +85 -0
  1723. package/packages/framework/esm-translations/translations/ro_RO.json +85 -0
  1724. package/packages/framework/esm-translations/translations/ru_RU.json +85 -0
  1725. package/packages/framework/esm-translations/translations/si.json +85 -0
  1726. package/packages/framework/esm-translations/translations/sq.json +85 -0
  1727. package/packages/framework/esm-translations/translations/sw.json +85 -0
  1728. package/packages/framework/esm-translations/translations/sw_KE.json +85 -0
  1729. package/packages/framework/esm-translations/translations/tr.json +85 -0
  1730. package/packages/framework/esm-translations/translations/tr_TR.json +85 -0
  1731. package/packages/framework/esm-translations/translations/uk.json +85 -0
  1732. package/packages/framework/esm-translations/translations/uz.json +85 -0
  1733. package/packages/framework/esm-translations/translations/uz@Latn.json +85 -0
  1734. package/packages/framework/esm-translations/translations/uz_UZ.json +85 -0
  1735. package/packages/framework/esm-translations/translations/vi.json +85 -0
  1736. package/packages/framework/esm-translations/translations/zh.json +85 -0
  1737. package/packages/framework/esm-translations/translations/zh_CN.json +85 -0
  1738. package/packages/framework/esm-translations/translations/zh_TW.json +85 -0
  1739. package/packages/framework/esm-translations/tsconfig.build.json +9 -0
  1740. package/packages/framework/esm-translations/tsconfig.json +5 -0
  1741. package/packages/framework/esm-utils/.swcrc +16 -0
  1742. package/packages/framework/esm-utils/README.md +3 -0
  1743. package/packages/framework/esm-utils/package.json +76 -0
  1744. package/packages/framework/esm-utils/src/age-helpers.test.ts +103 -0
  1745. package/packages/framework/esm-utils/src/age-helpers.ts +95 -0
  1746. package/packages/framework/esm-utils/src/dates/date-util.test.ts +212 -0
  1747. package/packages/framework/esm-utils/src/dates/date-util.ts +429 -0
  1748. package/packages/framework/esm-utils/src/dates/index.ts +1 -0
  1749. package/packages/framework/esm-utils/src/get-locale.ts +14 -0
  1750. package/packages/framework/esm-utils/src/index.ts +10 -0
  1751. package/packages/framework/esm-utils/src/is-online.ts +5 -0
  1752. package/packages/framework/esm-utils/src/patient-helpers.test.data.ts +146 -0
  1753. package/packages/framework/esm-utils/src/patient-helpers.test.ts +70 -0
  1754. package/packages/framework/esm-utils/src/patient-helpers.ts +95 -0
  1755. package/packages/framework/esm-utils/src/retry.ts +78 -0
  1756. package/packages/framework/esm-utils/src/shallowEqual.ts +46 -0
  1757. package/packages/framework/esm-utils/src/storage.ts +18 -0
  1758. package/packages/framework/esm-utils/src/test-helpers.ts +36 -0
  1759. package/packages/framework/esm-utils/src/version.test.ts +69 -0
  1760. package/packages/framework/esm-utils/src/version.ts +28 -0
  1761. package/packages/framework/esm-utils/tsconfig.build.json +9 -0
  1762. package/packages/framework/esm-utils/tsconfig.json +5 -0
  1763. package/packages/framework/esm-utils/vitest.config.ts +8 -0
  1764. package/packages/framework/tsconfig.json +15 -0
  1765. package/packages/shell/esm-app-shell/dependencies.json +14 -0
  1766. package/packages/shell/esm-app-shell/package.json +68 -0
  1767. package/packages/shell/esm-app-shell/src/assets/favicon.ico +0 -0
  1768. package/packages/shell/esm-app-shell/src/assets/logo-512.png +0 -0
  1769. package/packages/shell/esm-app-shell/src/assets/logo.svg +30 -0
  1770. package/packages/shell/esm-app-shell/src/core-config.ts +38 -0
  1771. package/packages/shell/esm-app-shell/src/events.ts +16 -0
  1772. package/packages/shell/esm-app-shell/src/index.ejs +102 -0
  1773. package/packages/shell/esm-app-shell/src/index.ts +79 -0
  1774. package/packages/shell/esm-app-shell/src/locale.ts +129 -0
  1775. package/packages/shell/esm-app-shell/src/optionaldeps.ts +64 -0
  1776. package/packages/shell/esm-app-shell/src/routing-events.ts +59 -0
  1777. package/packages/shell/esm-app-shell/src/run.ts +450 -0
  1778. package/packages/shell/esm-app-shell/src/service-worker/caching.ts +96 -0
  1779. package/packages/shell/esm-app-shell/src/service-worker/constants.ts +19 -0
  1780. package/packages/shell/esm-app-shell/src/service-worker/http-header-utils.ts +29 -0
  1781. package/packages/shell/esm-app-shell/src/service-worker/import-map-utils.ts +65 -0
  1782. package/packages/shell/esm-app-shell/src/service-worker/index.ts +27 -0
  1783. package/packages/shell/esm-app-shell/src/service-worker/message.ts +78 -0
  1784. package/packages/shell/esm-app-shell/src/service-worker/noop.ts +27 -0
  1785. package/packages/shell/esm-app-shell/src/service-worker/routing.ts +113 -0
  1786. package/packages/shell/esm-app-shell/src/service-worker/storage.ts +37 -0
  1787. package/packages/shell/esm-app-shell/src/service-worker/types.ts +21 -0
  1788. package/packages/shell/esm-app-shell/src/ui/breadcrumbs.tsx +86 -0
  1789. package/packages/shell/esm-app-shell/src/ui/index.ts +20 -0
  1790. package/packages/shell/esm-app-shell/tools/helpers.js +26 -0
  1791. package/packages/shell/esm-app-shell/tsconfig.json +24 -0
  1792. package/packages/shell/esm-app-shell/webpack.config.js +438 -0
  1793. package/packages/tooling/openmrs/README.md +71 -0
  1794. package/packages/tooling/openmrs/default-rspack-config.js +3 -0
  1795. package/packages/tooling/openmrs/default-webpack-config.js +3 -0
  1796. package/packages/tooling/openmrs/package.json +88 -0
  1797. package/packages/tooling/openmrs/src/cli.ts +426 -0
  1798. package/packages/tooling/openmrs/src/commands/assemble.ts +331 -0
  1799. package/packages/tooling/openmrs/src/commands/build.ts +157 -0
  1800. package/packages/tooling/openmrs/src/commands/debug.ts +55 -0
  1801. package/packages/tooling/openmrs/src/commands/develop.ts +187 -0
  1802. package/packages/tooling/openmrs/src/commands/index.ts +5 -0
  1803. package/packages/tooling/openmrs/src/commands/start.ts +58 -0
  1804. package/packages/tooling/openmrs/src/index.ts +3 -0
  1805. package/packages/tooling/openmrs/src/runner.ts +23 -0
  1806. package/packages/tooling/openmrs/src/utils/config.ts +108 -0
  1807. package/packages/tooling/openmrs/src/utils/debugger.ts +60 -0
  1808. package/packages/tooling/openmrs/src/utils/dependencies.ts +48 -0
  1809. package/packages/tooling/openmrs/src/utils/devserver.ts +11 -0
  1810. package/packages/tooling/openmrs/src/utils/helpers.ts +19 -0
  1811. package/packages/tooling/openmrs/src/utils/importmap.ts +419 -0
  1812. package/packages/tooling/openmrs/src/utils/index.ts +6 -0
  1813. package/packages/tooling/openmrs/src/utils/logger.ts +14 -0
  1814. package/packages/tooling/openmrs/src/utils/npmConfig.ts +50 -0
  1815. package/packages/tooling/openmrs/src/utils/untar.ts +36 -0
  1816. package/packages/tooling/openmrs/src/utils/variables.ts +5 -0
  1817. package/packages/tooling/openmrs/tsconfig.json +15 -0
  1818. package/packages/tooling/rspack-config/package.json +53 -0
  1819. package/packages/tooling/rspack-config/src/index.ts +363 -0
  1820. package/packages/tooling/rspack-config/tsconfig.json +15 -0
  1821. package/packages/tooling/typedoc-plugin-file-categories/.swcrc +16 -0
  1822. package/packages/tooling/typedoc-plugin-file-categories/package.json +25 -0
  1823. package/packages/tooling/typedoc-plugin-file-categories/src/index.ts +53 -0
  1824. package/packages/tooling/typedoc-plugin-file-categories/tsconfig.json +15 -0
  1825. package/packages/tooling/typedoc-plugin-file-categories/vitest.config.ts +7 -0
  1826. package/packages/tooling/webpack-config/package.json +56 -0
  1827. package/packages/tooling/webpack-config/src/index.ts +364 -0
  1828. package/packages/tooling/webpack-config/tsconfig.json +15 -0
  1829. package/playwright.config.ts +50 -0
  1830. package/prettier.config.js +11 -0
  1831. package/staging-config.json +4 -0
  1832. package/tools/i18next-parser.config.js +104 -0
  1833. package/turbo.json +32 -0
@@ -0,0 +1,3520 @@
1
+ [O3 Framework](../API.md) / ExtensionSlotProps
2
+
3
+ # Interface: ExtensionSlotProps
4
+
5
+ Defined in: [packages/framework/esm-react-utils/src/ExtensionSlot.tsx:30](https://github.com/Kipkemoii/openmrs-esm-core/blob/main/packages/framework/esm-react-utils/src/ExtensionSlot.tsx#L30)
6
+
7
+ ## Extends
8
+
9
+ - [`ExtensionSlotBaseProps`](ExtensionSlotBaseProps.md).`Omit`\<`React.HTMLAttributes`\<`HTMLDivElement`\>, `"children"`\>
10
+
11
+ ## Properties
12
+
13
+ ### about?
14
+
15
+ > `optional` **about**: `string`
16
+
17
+ Defined in: node\_modules/@types/react/index.d.ts:2939
18
+
19
+ #### Inherited from
20
+
21
+ `Omit.about`
22
+
23
+ ***
24
+
25
+ ### accessKey?
26
+
27
+ > `optional` **accessKey**: `string`
28
+
29
+ Defined in: node\_modules/@types/react/index.d.ts:2912
30
+
31
+ #### Inherited from
32
+
33
+ `Omit.accessKey`
34
+
35
+ ***
36
+
37
+ ### aria-activedescendant?
38
+
39
+ > `optional` **aria-activedescendant**: `string`
40
+
41
+ Defined in: node\_modules/@types/react/index.d.ts:2610
42
+
43
+ Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
44
+
45
+ #### Inherited from
46
+
47
+ `Omit.aria-activedescendant`
48
+
49
+ ***
50
+
51
+ ### aria-atomic?
52
+
53
+ > `optional` **aria-atomic**: `Booleanish`
54
+
55
+ Defined in: node\_modules/@types/react/index.d.ts:2612
56
+
57
+ Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.
58
+
59
+ #### Inherited from
60
+
61
+ `Omit.aria-atomic`
62
+
63
+ ***
64
+
65
+ ### aria-autocomplete?
66
+
67
+ > `optional` **aria-autocomplete**: `"none"` \| `"list"` \| `"both"` \| `"inline"`
68
+
69
+ Defined in: node\_modules/@types/react/index.d.ts:2617
70
+
71
+ Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
72
+ presented if they are made.
73
+
74
+ #### Inherited from
75
+
76
+ `Omit.aria-autocomplete`
77
+
78
+ ***
79
+
80
+ ### aria-braillelabel?
81
+
82
+ > `optional` **aria-braillelabel**: `string`
83
+
84
+ Defined in: node\_modules/@types/react/index.d.ts:2623
85
+
86
+ Defines a string value that labels the current element, which is intended to be converted into Braille.
87
+
88
+ #### See
89
+
90
+ aria-label.
91
+
92
+ #### Inherited from
93
+
94
+ `Omit.aria-braillelabel`
95
+
96
+ ***
97
+
98
+ ### aria-brailleroledescription?
99
+
100
+ > `optional` **aria-brailleroledescription**: `string`
101
+
102
+ Defined in: node\_modules/@types/react/index.d.ts:2628
103
+
104
+ Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.
105
+
106
+ #### See
107
+
108
+ aria-roledescription.
109
+
110
+ #### Inherited from
111
+
112
+ `Omit.aria-brailleroledescription`
113
+
114
+ ***
115
+
116
+ ### aria-busy?
117
+
118
+ > `optional` **aria-busy**: `Booleanish`
119
+
120
+ Defined in: node\_modules/@types/react/index.d.ts:2629
121
+
122
+ #### Inherited from
123
+
124
+ `Omit.aria-busy`
125
+
126
+ ***
127
+
128
+ ### aria-checked?
129
+
130
+ > `optional` **aria-checked**: `boolean` \| `"true"` \| `"false"` \| `"mixed"`
131
+
132
+ Defined in: node\_modules/@types/react/index.d.ts:2634
133
+
134
+ Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
135
+
136
+ #### See
137
+
138
+ - aria-pressed
139
+ - aria-selected.
140
+
141
+ #### Inherited from
142
+
143
+ `Omit.aria-checked`
144
+
145
+ ***
146
+
147
+ ### aria-colcount?
148
+
149
+ > `optional` **aria-colcount**: `number`
150
+
151
+ Defined in: node\_modules/@types/react/index.d.ts:2639
152
+
153
+ Defines the total number of columns in a table, grid, or treegrid.
154
+
155
+ #### See
156
+
157
+ aria-colindex.
158
+
159
+ #### Inherited from
160
+
161
+ `Omit.aria-colcount`
162
+
163
+ ***
164
+
165
+ ### aria-colindex?
166
+
167
+ > `optional` **aria-colindex**: `number`
168
+
169
+ Defined in: node\_modules/@types/react/index.d.ts:2644
170
+
171
+ Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
172
+
173
+ #### See
174
+
175
+ - aria-colcount
176
+ - aria-colspan.
177
+
178
+ #### Inherited from
179
+
180
+ `Omit.aria-colindex`
181
+
182
+ ***
183
+
184
+ ### aria-colindextext?
185
+
186
+ > `optional` **aria-colindextext**: `string`
187
+
188
+ Defined in: node\_modules/@types/react/index.d.ts:2649
189
+
190
+ Defines a human readable text alternative of aria-colindex.
191
+
192
+ #### See
193
+
194
+ aria-rowindextext.
195
+
196
+ #### Inherited from
197
+
198
+ `Omit.aria-colindextext`
199
+
200
+ ***
201
+
202
+ ### aria-colspan?
203
+
204
+ > `optional` **aria-colspan**: `number`
205
+
206
+ Defined in: node\_modules/@types/react/index.d.ts:2654
207
+
208
+ Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
209
+
210
+ #### See
211
+
212
+ - aria-colindex
213
+ - aria-rowspan.
214
+
215
+ #### Inherited from
216
+
217
+ `Omit.aria-colspan`
218
+
219
+ ***
220
+
221
+ ### aria-controls?
222
+
223
+ > `optional` **aria-controls**: `string`
224
+
225
+ Defined in: node\_modules/@types/react/index.d.ts:2659
226
+
227
+ Identifies the element (or elements) whose contents or presence are controlled by the current element.
228
+
229
+ #### See
230
+
231
+ aria-owns.
232
+
233
+ #### Inherited from
234
+
235
+ `Omit.aria-controls`
236
+
237
+ ***
238
+
239
+ ### aria-current?
240
+
241
+ > `optional` **aria-current**: `boolean` \| `"true"` \| `"location"` \| `"time"` \| `"false"` \| `"page"` \| `"step"` \| `"date"`
242
+
243
+ Defined in: node\_modules/@types/react/index.d.ts:2661
244
+
245
+ Indicates the element that represents the current item within a container or set of related elements.
246
+
247
+ #### Inherited from
248
+
249
+ `Omit.aria-current`
250
+
251
+ ***
252
+
253
+ ### aria-describedby?
254
+
255
+ > `optional` **aria-describedby**: `string`
256
+
257
+ Defined in: node\_modules/@types/react/index.d.ts:2666
258
+
259
+ Identifies the element (or elements) that describes the object.
260
+
261
+ #### See
262
+
263
+ aria-labelledby
264
+
265
+ #### Inherited from
266
+
267
+ `Omit.aria-describedby`
268
+
269
+ ***
270
+
271
+ ### aria-description?
272
+
273
+ > `optional` **aria-description**: `string`
274
+
275
+ Defined in: node\_modules/@types/react/index.d.ts:2671
276
+
277
+ Defines a string value that describes or annotates the current element.
278
+
279
+ #### See
280
+
281
+ related aria-describedby.
282
+
283
+ #### Inherited from
284
+
285
+ `Omit.aria-description`
286
+
287
+ ***
288
+
289
+ ### aria-details?
290
+
291
+ > `optional` **aria-details**: `string`
292
+
293
+ Defined in: node\_modules/@types/react/index.d.ts:2676
294
+
295
+ Identifies the element that provides a detailed, extended description for the object.
296
+
297
+ #### See
298
+
299
+ aria-describedby.
300
+
301
+ #### Inherited from
302
+
303
+ `Omit.aria-details`
304
+
305
+ ***
306
+
307
+ ### aria-disabled?
308
+
309
+ > `optional` **aria-disabled**: `Booleanish`
310
+
311
+ Defined in: node\_modules/@types/react/index.d.ts:2681
312
+
313
+ Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
314
+
315
+ #### See
316
+
317
+ - aria-hidden
318
+ - aria-readonly.
319
+
320
+ #### Inherited from
321
+
322
+ `Omit.aria-disabled`
323
+
324
+ ***
325
+
326
+ ### ~~aria-dropeffect?~~
327
+
328
+ > `optional` **aria-dropeffect**: `"link"` \| `"copy"` \| `"none"` \| `"move"` \| `"execute"` \| `"popup"`
329
+
330
+ Defined in: node\_modules/@types/react/index.d.ts:2686
331
+
332
+ Indicates what functions can be performed when a dragged object is released on the drop target.
333
+
334
+ #### Deprecated
335
+
336
+ in ARIA 1.1
337
+
338
+ #### Inherited from
339
+
340
+ `Omit.aria-dropeffect`
341
+
342
+ ***
343
+
344
+ ### aria-errormessage?
345
+
346
+ > `optional` **aria-errormessage**: `string`
347
+
348
+ Defined in: node\_modules/@types/react/index.d.ts:2691
349
+
350
+ Identifies the element that provides an error message for the object.
351
+
352
+ #### See
353
+
354
+ - aria-invalid
355
+ - aria-describedby.
356
+
357
+ #### Inherited from
358
+
359
+ `Omit.aria-errormessage`
360
+
361
+ ***
362
+
363
+ ### aria-expanded?
364
+
365
+ > `optional` **aria-expanded**: `Booleanish`
366
+
367
+ Defined in: node\_modules/@types/react/index.d.ts:2693
368
+
369
+ Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
370
+
371
+ #### Inherited from
372
+
373
+ `Omit.aria-expanded`
374
+
375
+ ***
376
+
377
+ ### aria-flowto?
378
+
379
+ > `optional` **aria-flowto**: `string`
380
+
381
+ Defined in: node\_modules/@types/react/index.d.ts:2698
382
+
383
+ Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
384
+ allows assistive technology to override the general default of reading in document source order.
385
+
386
+ #### Inherited from
387
+
388
+ `Omit.aria-flowto`
389
+
390
+ ***
391
+
392
+ ### ~~aria-grabbed?~~
393
+
394
+ > `optional` **aria-grabbed**: `Booleanish`
395
+
396
+ Defined in: node\_modules/@types/react/index.d.ts:2703
397
+
398
+ Indicates an element's "grabbed" state in a drag-and-drop operation.
399
+
400
+ #### Deprecated
401
+
402
+ in ARIA 1.1
403
+
404
+ #### Inherited from
405
+
406
+ `Omit.aria-grabbed`
407
+
408
+ ***
409
+
410
+ ### aria-haspopup?
411
+
412
+ > `optional` **aria-haspopup**: `boolean` \| `"true"` \| `"dialog"` \| `"menu"` \| `"false"` \| `"grid"` \| `"listbox"` \| `"tree"`
413
+
414
+ Defined in: node\_modules/@types/react/index.d.ts:2705
415
+
416
+ Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.
417
+
418
+ #### Inherited from
419
+
420
+ `Omit.aria-haspopup`
421
+
422
+ ***
423
+
424
+ ### aria-hidden?
425
+
426
+ > `optional` **aria-hidden**: `Booleanish`
427
+
428
+ Defined in: node\_modules/@types/react/index.d.ts:2710
429
+
430
+ Indicates whether the element is exposed to an accessibility API.
431
+
432
+ #### See
433
+
434
+ aria-disabled.
435
+
436
+ #### Inherited from
437
+
438
+ `Omit.aria-hidden`
439
+
440
+ ***
441
+
442
+ ### aria-invalid?
443
+
444
+ > `optional` **aria-invalid**: `boolean` \| `"true"` \| `"false"` \| `"grammar"` \| `"spelling"`
445
+
446
+ Defined in: node\_modules/@types/react/index.d.ts:2715
447
+
448
+ Indicates the entered value does not conform to the format expected by the application.
449
+
450
+ #### See
451
+
452
+ aria-errormessage.
453
+
454
+ #### Inherited from
455
+
456
+ `Omit.aria-invalid`
457
+
458
+ ***
459
+
460
+ ### aria-keyshortcuts?
461
+
462
+ > `optional` **aria-keyshortcuts**: `string`
463
+
464
+ Defined in: node\_modules/@types/react/index.d.ts:2717
465
+
466
+ Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
467
+
468
+ #### Inherited from
469
+
470
+ `Omit.aria-keyshortcuts`
471
+
472
+ ***
473
+
474
+ ### aria-label?
475
+
476
+ > `optional` **aria-label**: `string`
477
+
478
+ Defined in: node\_modules/@types/react/index.d.ts:2722
479
+
480
+ Defines a string value that labels the current element.
481
+
482
+ #### See
483
+
484
+ aria-labelledby.
485
+
486
+ #### Inherited from
487
+
488
+ `Omit.aria-label`
489
+
490
+ ***
491
+
492
+ ### aria-labelledby?
493
+
494
+ > `optional` **aria-labelledby**: `string`
495
+
496
+ Defined in: node\_modules/@types/react/index.d.ts:2727
497
+
498
+ Identifies the element (or elements) that labels the current element.
499
+
500
+ #### See
501
+
502
+ aria-describedby.
503
+
504
+ #### Inherited from
505
+
506
+ `Omit.aria-labelledby`
507
+
508
+ ***
509
+
510
+ ### aria-level?
511
+
512
+ > `optional` **aria-level**: `number`
513
+
514
+ Defined in: node\_modules/@types/react/index.d.ts:2729
515
+
516
+ Defines the hierarchical level of an element within a structure.
517
+
518
+ #### Inherited from
519
+
520
+ `Omit.aria-level`
521
+
522
+ ***
523
+
524
+ ### aria-live?
525
+
526
+ > `optional` **aria-live**: `"off"` \| `"assertive"` \| `"polite"`
527
+
528
+ Defined in: node\_modules/@types/react/index.d.ts:2731
529
+
530
+ Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.
531
+
532
+ #### Inherited from
533
+
534
+ `Omit.aria-live`
535
+
536
+ ***
537
+
538
+ ### aria-modal?
539
+
540
+ > `optional` **aria-modal**: `Booleanish`
541
+
542
+ Defined in: node\_modules/@types/react/index.d.ts:2733
543
+
544
+ Indicates whether an element is modal when displayed.
545
+
546
+ #### Inherited from
547
+
548
+ `Omit.aria-modal`
549
+
550
+ ***
551
+
552
+ ### aria-multiline?
553
+
554
+ > `optional` **aria-multiline**: `Booleanish`
555
+
556
+ Defined in: node\_modules/@types/react/index.d.ts:2735
557
+
558
+ Indicates whether a text box accepts multiple lines of input or only a single line.
559
+
560
+ #### Inherited from
561
+
562
+ `Omit.aria-multiline`
563
+
564
+ ***
565
+
566
+ ### aria-multiselectable?
567
+
568
+ > `optional` **aria-multiselectable**: `Booleanish`
569
+
570
+ Defined in: node\_modules/@types/react/index.d.ts:2737
571
+
572
+ Indicates that the user may select more than one item from the current selectable descendants.
573
+
574
+ #### Inherited from
575
+
576
+ `Omit.aria-multiselectable`
577
+
578
+ ***
579
+
580
+ ### aria-orientation?
581
+
582
+ > `optional` **aria-orientation**: `"horizontal"` \| `"vertical"`
583
+
584
+ Defined in: node\_modules/@types/react/index.d.ts:2739
585
+
586
+ Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
587
+
588
+ #### Inherited from
589
+
590
+ `Omit.aria-orientation`
591
+
592
+ ***
593
+
594
+ ### aria-owns?
595
+
596
+ > `optional` **aria-owns**: `string`
597
+
598
+ Defined in: node\_modules/@types/react/index.d.ts:2745
599
+
600
+ Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
601
+ between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
602
+
603
+ #### See
604
+
605
+ aria-controls.
606
+
607
+ #### Inherited from
608
+
609
+ `Omit.aria-owns`
610
+
611
+ ***
612
+
613
+ ### aria-placeholder?
614
+
615
+ > `optional` **aria-placeholder**: `string`
616
+
617
+ Defined in: node\_modules/@types/react/index.d.ts:2750
618
+
619
+ Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
620
+ A hint could be a sample value or a brief description of the expected format.
621
+
622
+ #### Inherited from
623
+
624
+ `Omit.aria-placeholder`
625
+
626
+ ***
627
+
628
+ ### aria-posinset?
629
+
630
+ > `optional` **aria-posinset**: `number`
631
+
632
+ Defined in: node\_modules/@types/react/index.d.ts:2755
633
+
634
+ Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
635
+
636
+ #### See
637
+
638
+ aria-setsize.
639
+
640
+ #### Inherited from
641
+
642
+ `Omit.aria-posinset`
643
+
644
+ ***
645
+
646
+ ### aria-pressed?
647
+
648
+ > `optional` **aria-pressed**: `boolean` \| `"true"` \| `"false"` \| `"mixed"`
649
+
650
+ Defined in: node\_modules/@types/react/index.d.ts:2760
651
+
652
+ Indicates the current "pressed" state of toggle buttons.
653
+
654
+ #### See
655
+
656
+ - aria-checked
657
+ - aria-selected.
658
+
659
+ #### Inherited from
660
+
661
+ `Omit.aria-pressed`
662
+
663
+ ***
664
+
665
+ ### aria-readonly?
666
+
667
+ > `optional` **aria-readonly**: `Booleanish`
668
+
669
+ Defined in: node\_modules/@types/react/index.d.ts:2765
670
+
671
+ Indicates that the element is not editable, but is otherwise operable.
672
+
673
+ #### See
674
+
675
+ aria-disabled.
676
+
677
+ #### Inherited from
678
+
679
+ `Omit.aria-readonly`
680
+
681
+ ***
682
+
683
+ ### aria-relevant?
684
+
685
+ > `optional` **aria-relevant**: `"text"` \| `"all"` \| `"additions"` \| `"additions removals"` \| `"additions text"` \| `"removals"` \| `"removals additions"` \| `"removals text"` \| `"text additions"` \| `"text removals"`
686
+
687
+ Defined in: node\_modules/@types/react/index.d.ts:2770
688
+
689
+ Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
690
+
691
+ #### See
692
+
693
+ aria-atomic.
694
+
695
+ #### Inherited from
696
+
697
+ `Omit.aria-relevant`
698
+
699
+ ***
700
+
701
+ ### aria-required?
702
+
703
+ > `optional` **aria-required**: `Booleanish`
704
+
705
+ Defined in: node\_modules/@types/react/index.d.ts:2783
706
+
707
+ Indicates that user input is required on the element before a form may be submitted.
708
+
709
+ #### Inherited from
710
+
711
+ `Omit.aria-required`
712
+
713
+ ***
714
+
715
+ ### aria-roledescription?
716
+
717
+ > `optional` **aria-roledescription**: `string`
718
+
719
+ Defined in: node\_modules/@types/react/index.d.ts:2785
720
+
721
+ Defines a human-readable, author-localized description for the role of an element.
722
+
723
+ #### Inherited from
724
+
725
+ `Omit.aria-roledescription`
726
+
727
+ ***
728
+
729
+ ### aria-rowcount?
730
+
731
+ > `optional` **aria-rowcount**: `number`
732
+
733
+ Defined in: node\_modules/@types/react/index.d.ts:2790
734
+
735
+ Defines the total number of rows in a table, grid, or treegrid.
736
+
737
+ #### See
738
+
739
+ aria-rowindex.
740
+
741
+ #### Inherited from
742
+
743
+ `Omit.aria-rowcount`
744
+
745
+ ***
746
+
747
+ ### aria-rowindex?
748
+
749
+ > `optional` **aria-rowindex**: `number`
750
+
751
+ Defined in: node\_modules/@types/react/index.d.ts:2795
752
+
753
+ Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
754
+
755
+ #### See
756
+
757
+ - aria-rowcount
758
+ - aria-rowspan.
759
+
760
+ #### Inherited from
761
+
762
+ `Omit.aria-rowindex`
763
+
764
+ ***
765
+
766
+ ### aria-rowindextext?
767
+
768
+ > `optional` **aria-rowindextext**: `string`
769
+
770
+ Defined in: node\_modules/@types/react/index.d.ts:2800
771
+
772
+ Defines a human readable text alternative of aria-rowindex.
773
+
774
+ #### See
775
+
776
+ aria-colindextext.
777
+
778
+ #### Inherited from
779
+
780
+ `Omit.aria-rowindextext`
781
+
782
+ ***
783
+
784
+ ### aria-rowspan?
785
+
786
+ > `optional` **aria-rowspan**: `number`
787
+
788
+ Defined in: node\_modules/@types/react/index.d.ts:2805
789
+
790
+ Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
791
+
792
+ #### See
793
+
794
+ - aria-rowindex
795
+ - aria-colspan.
796
+
797
+ #### Inherited from
798
+
799
+ `Omit.aria-rowspan`
800
+
801
+ ***
802
+
803
+ ### aria-selected?
804
+
805
+ > `optional` **aria-selected**: `Booleanish`
806
+
807
+ Defined in: node\_modules/@types/react/index.d.ts:2810
808
+
809
+ Indicates the current "selected" state of various widgets.
810
+
811
+ #### See
812
+
813
+ - aria-checked
814
+ - aria-pressed.
815
+
816
+ #### Inherited from
817
+
818
+ `Omit.aria-selected`
819
+
820
+ ***
821
+
822
+ ### aria-setsize?
823
+
824
+ > `optional` **aria-setsize**: `number`
825
+
826
+ Defined in: node\_modules/@types/react/index.d.ts:2815
827
+
828
+ Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
829
+
830
+ #### See
831
+
832
+ aria-posinset.
833
+
834
+ #### Inherited from
835
+
836
+ `Omit.aria-setsize`
837
+
838
+ ***
839
+
840
+ ### aria-sort?
841
+
842
+ > `optional` **aria-sort**: `"other"` \| `"none"` \| `"ascending"` \| `"descending"`
843
+
844
+ Defined in: node\_modules/@types/react/index.d.ts:2817
845
+
846
+ Indicates if items in a table or grid are sorted in ascending or descending order.
847
+
848
+ #### Inherited from
849
+
850
+ `Omit.aria-sort`
851
+
852
+ ***
853
+
854
+ ### aria-valuemax?
855
+
856
+ > `optional` **aria-valuemax**: `number`
857
+
858
+ Defined in: node\_modules/@types/react/index.d.ts:2819
859
+
860
+ Defines the maximum allowed value for a range widget.
861
+
862
+ #### Inherited from
863
+
864
+ `Omit.aria-valuemax`
865
+
866
+ ***
867
+
868
+ ### aria-valuemin?
869
+
870
+ > `optional` **aria-valuemin**: `number`
871
+
872
+ Defined in: node\_modules/@types/react/index.d.ts:2821
873
+
874
+ Defines the minimum allowed value for a range widget.
875
+
876
+ #### Inherited from
877
+
878
+ `Omit.aria-valuemin`
879
+
880
+ ***
881
+
882
+ ### aria-valuenow?
883
+
884
+ > `optional` **aria-valuenow**: `number`
885
+
886
+ Defined in: node\_modules/@types/react/index.d.ts:2826
887
+
888
+ Defines the current value for a range widget.
889
+
890
+ #### See
891
+
892
+ aria-valuetext.
893
+
894
+ #### Inherited from
895
+
896
+ `Omit.aria-valuenow`
897
+
898
+ ***
899
+
900
+ ### aria-valuetext?
901
+
902
+ > `optional` **aria-valuetext**: `string`
903
+
904
+ Defined in: node\_modules/@types/react/index.d.ts:2828
905
+
906
+ Defines the human readable text alternative of aria-valuenow for a range widget.
907
+
908
+ #### Inherited from
909
+
910
+ `Omit.aria-valuetext`
911
+
912
+ ***
913
+
914
+ ### autoCapitalize?
915
+
916
+ > `optional` **autoCapitalize**: `"on"` \| `"off"` \| `string` & `object` \| `"none"` \| `"sentences"` \| `"words"` \| `"characters"`
917
+
918
+ Defined in: node\_modules/@types/react/index.d.ts:2913
919
+
920
+ #### Inherited from
921
+
922
+ `Omit.autoCapitalize`
923
+
924
+ ***
925
+
926
+ ### autoCorrect?
927
+
928
+ > `optional` **autoCorrect**: `string`
929
+
930
+ Defined in: node\_modules/@types/react/index.d.ts:2952
931
+
932
+ #### Inherited from
933
+
934
+ `Omit.autoCorrect`
935
+
936
+ ***
937
+
938
+ ### autoFocus?
939
+
940
+ > `optional` **autoFocus**: `boolean`
941
+
942
+ Defined in: node\_modules/@types/react/index.d.ts:2914
943
+
944
+ #### Inherited from
945
+
946
+ `Omit.autoFocus`
947
+
948
+ ***
949
+
950
+ ### autoSave?
951
+
952
+ > `optional` **autoSave**: `string`
953
+
954
+ Defined in: node\_modules/@types/react/index.d.ts:2953
955
+
956
+ #### Inherited from
957
+
958
+ `Omit.autoSave`
959
+
960
+ ***
961
+
962
+ ### children?
963
+
964
+ > `optional` **children**: `ReactNode` \| (`extension`, `state?`) => `ReactNode`
965
+
966
+ Defined in: [packages/framework/esm-react-utils/src/ExtensionSlot.tsx:33](https://github.com/Kipkemoii/openmrs-esm-core/blob/main/packages/framework/esm-react-utils/src/ExtensionSlot.tsx#L33)
967
+
968
+ ***
969
+
970
+ ### className?
971
+
972
+ > `optional` **className**: `string`
973
+
974
+ Defined in: node\_modules/@types/react/index.d.ts:2915
975
+
976
+ #### Inherited from
977
+
978
+ `Omit.className`
979
+
980
+ ***
981
+
982
+ ### color?
983
+
984
+ > `optional` **color**: `string`
985
+
986
+ Defined in: node\_modules/@types/react/index.d.ts:2954
987
+
988
+ #### Inherited from
989
+
990
+ `Omit.color`
991
+
992
+ ***
993
+
994
+ ### content?
995
+
996
+ > `optional` **content**: `string`
997
+
998
+ Defined in: node\_modules/@types/react/index.d.ts:2940
999
+
1000
+ #### Inherited from
1001
+
1002
+ `Omit.content`
1003
+
1004
+ ***
1005
+
1006
+ ### contentEditable?
1007
+
1008
+ > `optional` **contentEditable**: `Booleanish` \| `"inherit"` \| `"plaintext-only"`
1009
+
1010
+ Defined in: node\_modules/@types/react/index.d.ts:2916
1011
+
1012
+ #### Inherited from
1013
+
1014
+ `Omit.contentEditable`
1015
+
1016
+ ***
1017
+
1018
+ ### contextMenu?
1019
+
1020
+ > `optional` **contextMenu**: `string`
1021
+
1022
+ Defined in: node\_modules/@types/react/index.d.ts:2917
1023
+
1024
+ #### Inherited from
1025
+
1026
+ `Omit.contextMenu`
1027
+
1028
+ ***
1029
+
1030
+ ### dangerouslySetInnerHTML?
1031
+
1032
+ > `optional` **dangerouslySetInnerHTML**: `object`
1033
+
1034
+ Defined in: node\_modules/@types/react/index.d.ts:2399
1035
+
1036
+ #### \_\_html
1037
+
1038
+ > **\_\_html**: `string` \| `TrustedHTML`
1039
+
1040
+ #### Inherited from
1041
+
1042
+ `Omit.dangerouslySetInnerHTML`
1043
+
1044
+ ***
1045
+
1046
+ ### datatype?
1047
+
1048
+ > `optional` **datatype**: `string`
1049
+
1050
+ Defined in: node\_modules/@types/react/index.d.ts:2941
1051
+
1052
+ #### Inherited from
1053
+
1054
+ `Omit.datatype`
1055
+
1056
+ ***
1057
+
1058
+ ### defaultChecked?
1059
+
1060
+ > `optional` **defaultChecked**: `boolean`
1061
+
1062
+ Defined in: node\_modules/@types/react/index.d.ts:2906
1063
+
1064
+ #### Inherited from
1065
+
1066
+ `Omit.defaultChecked`
1067
+
1068
+ ***
1069
+
1070
+ ### defaultValue?
1071
+
1072
+ > `optional` **defaultValue**: `string` \| `number` \| readonly `string`[]
1073
+
1074
+ Defined in: node\_modules/@types/react/index.d.ts:2907
1075
+
1076
+ #### Inherited from
1077
+
1078
+ `Omit.defaultValue`
1079
+
1080
+ ***
1081
+
1082
+ ### dir?
1083
+
1084
+ > `optional` **dir**: `string`
1085
+
1086
+ Defined in: node\_modules/@types/react/index.d.ts:2918
1087
+
1088
+ #### Inherited from
1089
+
1090
+ `Omit.dir`
1091
+
1092
+ ***
1093
+
1094
+ ### draggable?
1095
+
1096
+ > `optional` **draggable**: `Booleanish`
1097
+
1098
+ Defined in: node\_modules/@types/react/index.d.ts:2919
1099
+
1100
+ #### Inherited from
1101
+
1102
+ `Omit.draggable`
1103
+
1104
+ ***
1105
+
1106
+ ### enterKeyHint?
1107
+
1108
+ > `optional` **enterKeyHint**: `"next"` \| `"search"` \| `"enter"` \| `"done"` \| `"go"` \| `"previous"` \| `"send"`
1109
+
1110
+ Defined in: node\_modules/@types/react/index.d.ts:2920
1111
+
1112
+ #### Inherited from
1113
+
1114
+ `Omit.enterKeyHint`
1115
+
1116
+ ***
1117
+
1118
+ ### exportparts?
1119
+
1120
+ > `optional` **exportparts**: `string`
1121
+
1122
+ Defined in: node\_modules/@types/react/index.d.ts:2978
1123
+
1124
+ #### See
1125
+
1126
+ [https://developer.mozilla.org/en-US/docs/Web/HTML/Global\_attributes/exportparts](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts)
1127
+
1128
+ #### Inherited from
1129
+
1130
+ `Omit.exportparts`
1131
+
1132
+ ***
1133
+
1134
+ ### ~~extensionSlotName?~~
1135
+
1136
+ > `optional` **extensionSlotName**: `string`
1137
+
1138
+ Defined in: [packages/framework/esm-react-utils/src/ExtensionSlot.tsx:15](https://github.com/Kipkemoii/openmrs-esm-core/blob/main/packages/framework/esm-react-utils/src/ExtensionSlot.tsx#L15)
1139
+
1140
+ The name of the extension slot
1141
+
1142
+ #### Deprecated
1143
+
1144
+ Use `name`
1145
+
1146
+ #### Inherited from
1147
+
1148
+ [`ExtensionSlotBaseProps`](ExtensionSlotBaseProps.md).[`extensionSlotName`](ExtensionSlotBaseProps.md#extensionslotname)
1149
+
1150
+ ***
1151
+
1152
+ ### hidden?
1153
+
1154
+ > `optional` **hidden**: `boolean`
1155
+
1156
+ Defined in: node\_modules/@types/react/index.d.ts:2921
1157
+
1158
+ #### Inherited from
1159
+
1160
+ `Omit.hidden`
1161
+
1162
+ ***
1163
+
1164
+ ### id?
1165
+
1166
+ > `optional` **id**: `string`
1167
+
1168
+ Defined in: node\_modules/@types/react/index.d.ts:2922
1169
+
1170
+ #### Inherited from
1171
+
1172
+ `Omit.id`
1173
+
1174
+ ***
1175
+
1176
+ ### inlist?
1177
+
1178
+ > `optional` **inlist**: `any`
1179
+
1180
+ Defined in: node\_modules/@types/react/index.d.ts:2942
1181
+
1182
+ #### Inherited from
1183
+
1184
+ `Omit.inlist`
1185
+
1186
+ ***
1187
+
1188
+ ### inputMode?
1189
+
1190
+ > `optional` **inputMode**: `"url"` \| `"search"` \| `"text"` \| `"none"` \| `"tel"` \| `"email"` \| `"numeric"` \| `"decimal"`
1191
+
1192
+ Defined in: node\_modules/@types/react/index.d.ts:2969
1193
+
1194
+ Hints at the type of data that might be entered by the user while editing the element or its contents
1195
+
1196
+ #### See
1197
+
1198
+ [https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute](https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute)
1199
+
1200
+ #### Inherited from
1201
+
1202
+ `Omit.inputMode`
1203
+
1204
+ ***
1205
+
1206
+ ### is?
1207
+
1208
+ > `optional` **is**: `string`
1209
+
1210
+ Defined in: node\_modules/@types/react/index.d.ts:2974
1211
+
1212
+ Specify that a standard HTML element should behave like a defined custom built-in element
1213
+
1214
+ #### See
1215
+
1216
+ [https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is](https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is)
1217
+
1218
+ #### Inherited from
1219
+
1220
+ `Omit.is`
1221
+
1222
+ ***
1223
+
1224
+ ### itemID?
1225
+
1226
+ > `optional` **itemID**: `string`
1227
+
1228
+ Defined in: node\_modules/@types/react/index.d.ts:2958
1229
+
1230
+ #### Inherited from
1231
+
1232
+ `Omit.itemID`
1233
+
1234
+ ***
1235
+
1236
+ ### itemProp?
1237
+
1238
+ > `optional` **itemProp**: `string`
1239
+
1240
+ Defined in: node\_modules/@types/react/index.d.ts:2955
1241
+
1242
+ #### Inherited from
1243
+
1244
+ `Omit.itemProp`
1245
+
1246
+ ***
1247
+
1248
+ ### itemRef?
1249
+
1250
+ > `optional` **itemRef**: `string`
1251
+
1252
+ Defined in: node\_modules/@types/react/index.d.ts:2959
1253
+
1254
+ #### Inherited from
1255
+
1256
+ `Omit.itemRef`
1257
+
1258
+ ***
1259
+
1260
+ ### itemScope?
1261
+
1262
+ > `optional` **itemScope**: `boolean`
1263
+
1264
+ Defined in: node\_modules/@types/react/index.d.ts:2956
1265
+
1266
+ #### Inherited from
1267
+
1268
+ `Omit.itemScope`
1269
+
1270
+ ***
1271
+
1272
+ ### itemType?
1273
+
1274
+ > `optional` **itemType**: `string`
1275
+
1276
+ Defined in: node\_modules/@types/react/index.d.ts:2957
1277
+
1278
+ #### Inherited from
1279
+
1280
+ `Omit.itemType`
1281
+
1282
+ ***
1283
+
1284
+ ### lang?
1285
+
1286
+ > `optional` **lang**: `string`
1287
+
1288
+ Defined in: node\_modules/@types/react/index.d.ts:2923
1289
+
1290
+ #### Inherited from
1291
+
1292
+ `Omit.lang`
1293
+
1294
+ ***
1295
+
1296
+ ### name
1297
+
1298
+ > **name**: `string`
1299
+
1300
+ Defined in: [packages/framework/esm-react-utils/src/ExtensionSlot.tsx:10](https://github.com/Kipkemoii/openmrs-esm-core/blob/main/packages/framework/esm-react-utils/src/ExtensionSlot.tsx#L10)
1301
+
1302
+ The name of the extension slot
1303
+
1304
+ #### Inherited from
1305
+
1306
+ [`ExtensionSlotBaseProps`](ExtensionSlotBaseProps.md).[`name`](ExtensionSlotBaseProps.md#name)
1307
+
1308
+ ***
1309
+
1310
+ ### nonce?
1311
+
1312
+ > `optional` **nonce**: `string`
1313
+
1314
+ Defined in: node\_modules/@types/react/index.d.ts:2924
1315
+
1316
+ #### Inherited from
1317
+
1318
+ `Omit.nonce`
1319
+
1320
+ ***
1321
+
1322
+ ### onAbort?
1323
+
1324
+ > `optional` **onAbort**: `ReactEventHandler`\<`HTMLDivElement`\>
1325
+
1326
+ Defined in: node\_modules/@types/react/index.d.ts:2458
1327
+
1328
+ #### Inherited from
1329
+
1330
+ `Omit.onAbort`
1331
+
1332
+ ***
1333
+
1334
+ ### onAbortCapture?
1335
+
1336
+ > `optional` **onAbortCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
1337
+
1338
+ Defined in: node\_modules/@types/react/index.d.ts:2459
1339
+
1340
+ #### Inherited from
1341
+
1342
+ `Omit.onAbortCapture`
1343
+
1344
+ ***
1345
+
1346
+ ### onAnimationEnd?
1347
+
1348
+ > `optional` **onAnimationEnd**: `AnimationEventHandler`\<`HTMLDivElement`\>
1349
+
1350
+ Defined in: node\_modules/@types/react/index.d.ts:2586
1351
+
1352
+ #### Inherited from
1353
+
1354
+ `Omit.onAnimationEnd`
1355
+
1356
+ ***
1357
+
1358
+ ### onAnimationEndCapture?
1359
+
1360
+ > `optional` **onAnimationEndCapture**: `AnimationEventHandler`\<`HTMLDivElement`\>
1361
+
1362
+ Defined in: node\_modules/@types/react/index.d.ts:2587
1363
+
1364
+ #### Inherited from
1365
+
1366
+ `Omit.onAnimationEndCapture`
1367
+
1368
+ ***
1369
+
1370
+ ### onAnimationIteration?
1371
+
1372
+ > `optional` **onAnimationIteration**: `AnimationEventHandler`\<`HTMLDivElement`\>
1373
+
1374
+ Defined in: node\_modules/@types/react/index.d.ts:2588
1375
+
1376
+ #### Inherited from
1377
+
1378
+ `Omit.onAnimationIteration`
1379
+
1380
+ ***
1381
+
1382
+ ### onAnimationIterationCapture?
1383
+
1384
+ > `optional` **onAnimationIterationCapture**: `AnimationEventHandler`\<`HTMLDivElement`\>
1385
+
1386
+ Defined in: node\_modules/@types/react/index.d.ts:2589
1387
+
1388
+ #### Inherited from
1389
+
1390
+ `Omit.onAnimationIterationCapture`
1391
+
1392
+ ***
1393
+
1394
+ ### onAnimationStart?
1395
+
1396
+ > `optional` **onAnimationStart**: `AnimationEventHandler`\<`HTMLDivElement`\>
1397
+
1398
+ Defined in: node\_modules/@types/react/index.d.ts:2584
1399
+
1400
+ #### Inherited from
1401
+
1402
+ `Omit.onAnimationStart`
1403
+
1404
+ ***
1405
+
1406
+ ### onAnimationStartCapture?
1407
+
1408
+ > `optional` **onAnimationStartCapture**: `AnimationEventHandler`\<`HTMLDivElement`\>
1409
+
1410
+ Defined in: node\_modules/@types/react/index.d.ts:2585
1411
+
1412
+ #### Inherited from
1413
+
1414
+ `Omit.onAnimationStartCapture`
1415
+
1416
+ ***
1417
+
1418
+ ### onAuxClick?
1419
+
1420
+ > `optional` **onAuxClick**: `MouseEventHandler`\<`HTMLDivElement`\>
1421
+
1422
+ Defined in: node\_modules/@types/react/index.d.ts:2504
1423
+
1424
+ #### Inherited from
1425
+
1426
+ `Omit.onAuxClick`
1427
+
1428
+ ***
1429
+
1430
+ ### onAuxClickCapture?
1431
+
1432
+ > `optional` **onAuxClickCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
1433
+
1434
+ Defined in: node\_modules/@types/react/index.d.ts:2505
1435
+
1436
+ #### Inherited from
1437
+
1438
+ `Omit.onAuxClickCapture`
1439
+
1440
+ ***
1441
+
1442
+ ### onBeforeInput?
1443
+
1444
+ > `optional` **onBeforeInput**: `InputEventHandler`\<`HTMLDivElement`\>
1445
+
1446
+ Defined in: node\_modules/@types/react/index.d.ts:2430
1447
+
1448
+ #### Inherited from
1449
+
1450
+ `Omit.onBeforeInput`
1451
+
1452
+ ***
1453
+
1454
+ ### onBeforeInputCapture?
1455
+
1456
+ > `optional` **onBeforeInputCapture**: `FormEventHandler`\<`HTMLDivElement`\>
1457
+
1458
+ Defined in: node\_modules/@types/react/index.d.ts:2431
1459
+
1460
+ #### Inherited from
1461
+
1462
+ `Omit.onBeforeInputCapture`
1463
+
1464
+ ***
1465
+
1466
+ ### onBlur?
1467
+
1468
+ > `optional` **onBlur**: `FocusEventHandler`\<`HTMLDivElement`\>
1469
+
1470
+ Defined in: node\_modules/@types/react/index.d.ts:2424
1471
+
1472
+ #### Inherited from
1473
+
1474
+ `Omit.onBlur`
1475
+
1476
+ ***
1477
+
1478
+ ### onBlurCapture?
1479
+
1480
+ > `optional` **onBlurCapture**: `FocusEventHandler`\<`HTMLDivElement`\>
1481
+
1482
+ Defined in: node\_modules/@types/react/index.d.ts:2425
1483
+
1484
+ #### Inherited from
1485
+
1486
+ `Omit.onBlurCapture`
1487
+
1488
+ ***
1489
+
1490
+ ### onCanPlay?
1491
+
1492
+ > `optional` **onCanPlay**: `ReactEventHandler`\<`HTMLDivElement`\>
1493
+
1494
+ Defined in: node\_modules/@types/react/index.d.ts:2460
1495
+
1496
+ #### Inherited from
1497
+
1498
+ `Omit.onCanPlay`
1499
+
1500
+ ***
1501
+
1502
+ ### onCanPlayCapture?
1503
+
1504
+ > `optional` **onCanPlayCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
1505
+
1506
+ Defined in: node\_modules/@types/react/index.d.ts:2461
1507
+
1508
+ #### Inherited from
1509
+
1510
+ `Omit.onCanPlayCapture`
1511
+
1512
+ ***
1513
+
1514
+ ### onCanPlayThrough?
1515
+
1516
+ > `optional` **onCanPlayThrough**: `ReactEventHandler`\<`HTMLDivElement`\>
1517
+
1518
+ Defined in: node\_modules/@types/react/index.d.ts:2462
1519
+
1520
+ #### Inherited from
1521
+
1522
+ `Omit.onCanPlayThrough`
1523
+
1524
+ ***
1525
+
1526
+ ### onCanPlayThroughCapture?
1527
+
1528
+ > `optional` **onCanPlayThroughCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
1529
+
1530
+ Defined in: node\_modules/@types/react/index.d.ts:2463
1531
+
1532
+ #### Inherited from
1533
+
1534
+ `Omit.onCanPlayThroughCapture`
1535
+
1536
+ ***
1537
+
1538
+ ### onChange?
1539
+
1540
+ > `optional` **onChange**: `FormEventHandler`\<`HTMLDivElement`\>
1541
+
1542
+ Defined in: node\_modules/@types/react/index.d.ts:2428
1543
+
1544
+ #### Inherited from
1545
+
1546
+ `Omit.onChange`
1547
+
1548
+ ***
1549
+
1550
+ ### onChangeCapture?
1551
+
1552
+ > `optional` **onChangeCapture**: `FormEventHandler`\<`HTMLDivElement`\>
1553
+
1554
+ Defined in: node\_modules/@types/react/index.d.ts:2429
1555
+
1556
+ #### Inherited from
1557
+
1558
+ `Omit.onChangeCapture`
1559
+
1560
+ ***
1561
+
1562
+ ### onClick?
1563
+
1564
+ > `optional` **onClick**: `MouseEventHandler`\<`HTMLDivElement`\>
1565
+
1566
+ Defined in: node\_modules/@types/react/index.d.ts:2506
1567
+
1568
+ #### Inherited from
1569
+
1570
+ `Omit.onClick`
1571
+
1572
+ ***
1573
+
1574
+ ### onClickCapture?
1575
+
1576
+ > `optional` **onClickCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
1577
+
1578
+ Defined in: node\_modules/@types/react/index.d.ts:2507
1579
+
1580
+ #### Inherited from
1581
+
1582
+ `Omit.onClickCapture`
1583
+
1584
+ ***
1585
+
1586
+ ### onCompositionEnd?
1587
+
1588
+ > `optional` **onCompositionEnd**: `CompositionEventHandler`\<`HTMLDivElement`\>
1589
+
1590
+ Defined in: node\_modules/@types/react/index.d.ts:2414
1591
+
1592
+ #### Inherited from
1593
+
1594
+ `Omit.onCompositionEnd`
1595
+
1596
+ ***
1597
+
1598
+ ### onCompositionEndCapture?
1599
+
1600
+ > `optional` **onCompositionEndCapture**: `CompositionEventHandler`\<`HTMLDivElement`\>
1601
+
1602
+ Defined in: node\_modules/@types/react/index.d.ts:2415
1603
+
1604
+ #### Inherited from
1605
+
1606
+ `Omit.onCompositionEndCapture`
1607
+
1608
+ ***
1609
+
1610
+ ### onCompositionStart?
1611
+
1612
+ > `optional` **onCompositionStart**: `CompositionEventHandler`\<`HTMLDivElement`\>
1613
+
1614
+ Defined in: node\_modules/@types/react/index.d.ts:2416
1615
+
1616
+ #### Inherited from
1617
+
1618
+ `Omit.onCompositionStart`
1619
+
1620
+ ***
1621
+
1622
+ ### onCompositionStartCapture?
1623
+
1624
+ > `optional` **onCompositionStartCapture**: `CompositionEventHandler`\<`HTMLDivElement`\>
1625
+
1626
+ Defined in: node\_modules/@types/react/index.d.ts:2417
1627
+
1628
+ #### Inherited from
1629
+
1630
+ `Omit.onCompositionStartCapture`
1631
+
1632
+ ***
1633
+
1634
+ ### onCompositionUpdate?
1635
+
1636
+ > `optional` **onCompositionUpdate**: `CompositionEventHandler`\<`HTMLDivElement`\>
1637
+
1638
+ Defined in: node\_modules/@types/react/index.d.ts:2418
1639
+
1640
+ #### Inherited from
1641
+
1642
+ `Omit.onCompositionUpdate`
1643
+
1644
+ ***
1645
+
1646
+ ### onCompositionUpdateCapture?
1647
+
1648
+ > `optional` **onCompositionUpdateCapture**: `CompositionEventHandler`\<`HTMLDivElement`\>
1649
+
1650
+ Defined in: node\_modules/@types/react/index.d.ts:2419
1651
+
1652
+ #### Inherited from
1653
+
1654
+ `Omit.onCompositionUpdateCapture`
1655
+
1656
+ ***
1657
+
1658
+ ### onContextMenu?
1659
+
1660
+ > `optional` **onContextMenu**: `MouseEventHandler`\<`HTMLDivElement`\>
1661
+
1662
+ Defined in: node\_modules/@types/react/index.d.ts:2508
1663
+
1664
+ #### Inherited from
1665
+
1666
+ `Omit.onContextMenu`
1667
+
1668
+ ***
1669
+
1670
+ ### onContextMenuCapture?
1671
+
1672
+ > `optional` **onContextMenuCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
1673
+
1674
+ Defined in: node\_modules/@types/react/index.d.ts:2509
1675
+
1676
+ #### Inherited from
1677
+
1678
+ `Omit.onContextMenuCapture`
1679
+
1680
+ ***
1681
+
1682
+ ### onCopy?
1683
+
1684
+ > `optional` **onCopy**: `ClipboardEventHandler`\<`HTMLDivElement`\>
1685
+
1686
+ Defined in: node\_modules/@types/react/index.d.ts:2406
1687
+
1688
+ #### Inherited from
1689
+
1690
+ `Omit.onCopy`
1691
+
1692
+ ***
1693
+
1694
+ ### onCopyCapture?
1695
+
1696
+ > `optional` **onCopyCapture**: `ClipboardEventHandler`\<`HTMLDivElement`\>
1697
+
1698
+ Defined in: node\_modules/@types/react/index.d.ts:2407
1699
+
1700
+ #### Inherited from
1701
+
1702
+ `Omit.onCopyCapture`
1703
+
1704
+ ***
1705
+
1706
+ ### onCut?
1707
+
1708
+ > `optional` **onCut**: `ClipboardEventHandler`\<`HTMLDivElement`\>
1709
+
1710
+ Defined in: node\_modules/@types/react/index.d.ts:2408
1711
+
1712
+ #### Inherited from
1713
+
1714
+ `Omit.onCut`
1715
+
1716
+ ***
1717
+
1718
+ ### onCutCapture?
1719
+
1720
+ > `optional` **onCutCapture**: `ClipboardEventHandler`\<`HTMLDivElement`\>
1721
+
1722
+ Defined in: node\_modules/@types/react/index.d.ts:2409
1723
+
1724
+ #### Inherited from
1725
+
1726
+ `Omit.onCutCapture`
1727
+
1728
+ ***
1729
+
1730
+ ### onDoubleClick?
1731
+
1732
+ > `optional` **onDoubleClick**: `MouseEventHandler`\<`HTMLDivElement`\>
1733
+
1734
+ Defined in: node\_modules/@types/react/index.d.ts:2510
1735
+
1736
+ #### Inherited from
1737
+
1738
+ `Omit.onDoubleClick`
1739
+
1740
+ ***
1741
+
1742
+ ### onDoubleClickCapture?
1743
+
1744
+ > `optional` **onDoubleClickCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
1745
+
1746
+ Defined in: node\_modules/@types/react/index.d.ts:2511
1747
+
1748
+ #### Inherited from
1749
+
1750
+ `Omit.onDoubleClickCapture`
1751
+
1752
+ ***
1753
+
1754
+ ### onDrag?
1755
+
1756
+ > `optional` **onDrag**: `DragEventHandler`\<`HTMLDivElement`\>
1757
+
1758
+ Defined in: node\_modules/@types/react/index.d.ts:2512
1759
+
1760
+ #### Inherited from
1761
+
1762
+ `Omit.onDrag`
1763
+
1764
+ ***
1765
+
1766
+ ### onDragCapture?
1767
+
1768
+ > `optional` **onDragCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1769
+
1770
+ Defined in: node\_modules/@types/react/index.d.ts:2513
1771
+
1772
+ #### Inherited from
1773
+
1774
+ `Omit.onDragCapture`
1775
+
1776
+ ***
1777
+
1778
+ ### onDragEnd?
1779
+
1780
+ > `optional` **onDragEnd**: `DragEventHandler`\<`HTMLDivElement`\>
1781
+
1782
+ Defined in: node\_modules/@types/react/index.d.ts:2514
1783
+
1784
+ #### Inherited from
1785
+
1786
+ `Omit.onDragEnd`
1787
+
1788
+ ***
1789
+
1790
+ ### onDragEndCapture?
1791
+
1792
+ > `optional` **onDragEndCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1793
+
1794
+ Defined in: node\_modules/@types/react/index.d.ts:2515
1795
+
1796
+ #### Inherited from
1797
+
1798
+ `Omit.onDragEndCapture`
1799
+
1800
+ ***
1801
+
1802
+ ### onDragEnter?
1803
+
1804
+ > `optional` **onDragEnter**: `DragEventHandler`\<`HTMLDivElement`\>
1805
+
1806
+ Defined in: node\_modules/@types/react/index.d.ts:2516
1807
+
1808
+ #### Inherited from
1809
+
1810
+ `Omit.onDragEnter`
1811
+
1812
+ ***
1813
+
1814
+ ### onDragEnterCapture?
1815
+
1816
+ > `optional` **onDragEnterCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1817
+
1818
+ Defined in: node\_modules/@types/react/index.d.ts:2517
1819
+
1820
+ #### Inherited from
1821
+
1822
+ `Omit.onDragEnterCapture`
1823
+
1824
+ ***
1825
+
1826
+ ### onDragExit?
1827
+
1828
+ > `optional` **onDragExit**: `DragEventHandler`\<`HTMLDivElement`\>
1829
+
1830
+ Defined in: node\_modules/@types/react/index.d.ts:2518
1831
+
1832
+ #### Inherited from
1833
+
1834
+ `Omit.onDragExit`
1835
+
1836
+ ***
1837
+
1838
+ ### onDragExitCapture?
1839
+
1840
+ > `optional` **onDragExitCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1841
+
1842
+ Defined in: node\_modules/@types/react/index.d.ts:2519
1843
+
1844
+ #### Inherited from
1845
+
1846
+ `Omit.onDragExitCapture`
1847
+
1848
+ ***
1849
+
1850
+ ### onDragLeave?
1851
+
1852
+ > `optional` **onDragLeave**: `DragEventHandler`\<`HTMLDivElement`\>
1853
+
1854
+ Defined in: node\_modules/@types/react/index.d.ts:2520
1855
+
1856
+ #### Inherited from
1857
+
1858
+ `Omit.onDragLeave`
1859
+
1860
+ ***
1861
+
1862
+ ### onDragLeaveCapture?
1863
+
1864
+ > `optional` **onDragLeaveCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1865
+
1866
+ Defined in: node\_modules/@types/react/index.d.ts:2521
1867
+
1868
+ #### Inherited from
1869
+
1870
+ `Omit.onDragLeaveCapture`
1871
+
1872
+ ***
1873
+
1874
+ ### onDragOver?
1875
+
1876
+ > `optional` **onDragOver**: `DragEventHandler`\<`HTMLDivElement`\>
1877
+
1878
+ Defined in: node\_modules/@types/react/index.d.ts:2522
1879
+
1880
+ #### Inherited from
1881
+
1882
+ `Omit.onDragOver`
1883
+
1884
+ ***
1885
+
1886
+ ### onDragOverCapture?
1887
+
1888
+ > `optional` **onDragOverCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1889
+
1890
+ Defined in: node\_modules/@types/react/index.d.ts:2523
1891
+
1892
+ #### Inherited from
1893
+
1894
+ `Omit.onDragOverCapture`
1895
+
1896
+ ***
1897
+
1898
+ ### onDragStart?
1899
+
1900
+ > `optional` **onDragStart**: `DragEventHandler`\<`HTMLDivElement`\>
1901
+
1902
+ Defined in: node\_modules/@types/react/index.d.ts:2524
1903
+
1904
+ #### Inherited from
1905
+
1906
+ `Omit.onDragStart`
1907
+
1908
+ ***
1909
+
1910
+ ### onDragStartCapture?
1911
+
1912
+ > `optional` **onDragStartCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1913
+
1914
+ Defined in: node\_modules/@types/react/index.d.ts:2525
1915
+
1916
+ #### Inherited from
1917
+
1918
+ `Omit.onDragStartCapture`
1919
+
1920
+ ***
1921
+
1922
+ ### onDrop?
1923
+
1924
+ > `optional` **onDrop**: `DragEventHandler`\<`HTMLDivElement`\>
1925
+
1926
+ Defined in: node\_modules/@types/react/index.d.ts:2526
1927
+
1928
+ #### Inherited from
1929
+
1930
+ `Omit.onDrop`
1931
+
1932
+ ***
1933
+
1934
+ ### onDropCapture?
1935
+
1936
+ > `optional` **onDropCapture**: `DragEventHandler`\<`HTMLDivElement`\>
1937
+
1938
+ Defined in: node\_modules/@types/react/index.d.ts:2527
1939
+
1940
+ #### Inherited from
1941
+
1942
+ `Omit.onDropCapture`
1943
+
1944
+ ***
1945
+
1946
+ ### onDurationChange?
1947
+
1948
+ > `optional` **onDurationChange**: `ReactEventHandler`\<`HTMLDivElement`\>
1949
+
1950
+ Defined in: node\_modules/@types/react/index.d.ts:2464
1951
+
1952
+ #### Inherited from
1953
+
1954
+ `Omit.onDurationChange`
1955
+
1956
+ ***
1957
+
1958
+ ### onDurationChangeCapture?
1959
+
1960
+ > `optional` **onDurationChangeCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
1961
+
1962
+ Defined in: node\_modules/@types/react/index.d.ts:2465
1963
+
1964
+ #### Inherited from
1965
+
1966
+ `Omit.onDurationChangeCapture`
1967
+
1968
+ ***
1969
+
1970
+ ### onEmptied?
1971
+
1972
+ > `optional` **onEmptied**: `ReactEventHandler`\<`HTMLDivElement`\>
1973
+
1974
+ Defined in: node\_modules/@types/react/index.d.ts:2466
1975
+
1976
+ #### Inherited from
1977
+
1978
+ `Omit.onEmptied`
1979
+
1980
+ ***
1981
+
1982
+ ### onEmptiedCapture?
1983
+
1984
+ > `optional` **onEmptiedCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
1985
+
1986
+ Defined in: node\_modules/@types/react/index.d.ts:2467
1987
+
1988
+ #### Inherited from
1989
+
1990
+ `Omit.onEmptiedCapture`
1991
+
1992
+ ***
1993
+
1994
+ ### onEncrypted?
1995
+
1996
+ > `optional` **onEncrypted**: `ReactEventHandler`\<`HTMLDivElement`\>
1997
+
1998
+ Defined in: node\_modules/@types/react/index.d.ts:2468
1999
+
2000
+ #### Inherited from
2001
+
2002
+ `Omit.onEncrypted`
2003
+
2004
+ ***
2005
+
2006
+ ### onEncryptedCapture?
2007
+
2008
+ > `optional` **onEncryptedCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2009
+
2010
+ Defined in: node\_modules/@types/react/index.d.ts:2469
2011
+
2012
+ #### Inherited from
2013
+
2014
+ `Omit.onEncryptedCapture`
2015
+
2016
+ ***
2017
+
2018
+ ### onEnded?
2019
+
2020
+ > `optional` **onEnded**: `ReactEventHandler`\<`HTMLDivElement`\>
2021
+
2022
+ Defined in: node\_modules/@types/react/index.d.ts:2470
2023
+
2024
+ #### Inherited from
2025
+
2026
+ `Omit.onEnded`
2027
+
2028
+ ***
2029
+
2030
+ ### onEndedCapture?
2031
+
2032
+ > `optional` **onEndedCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2033
+
2034
+ Defined in: node\_modules/@types/react/index.d.ts:2471
2035
+
2036
+ #### Inherited from
2037
+
2038
+ `Omit.onEndedCapture`
2039
+
2040
+ ***
2041
+
2042
+ ### onError?
2043
+
2044
+ > `optional` **onError**: `ReactEventHandler`\<`HTMLDivElement`\>
2045
+
2046
+ Defined in: node\_modules/@types/react/index.d.ts:2444
2047
+
2048
+ #### Inherited from
2049
+
2050
+ `Omit.onError`
2051
+
2052
+ ***
2053
+
2054
+ ### onErrorCapture?
2055
+
2056
+ > `optional` **onErrorCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2057
+
2058
+ Defined in: node\_modules/@types/react/index.d.ts:2445
2059
+
2060
+ #### Inherited from
2061
+
2062
+ `Omit.onErrorCapture`
2063
+
2064
+ ***
2065
+
2066
+ ### onFocus?
2067
+
2068
+ > `optional` **onFocus**: `FocusEventHandler`\<`HTMLDivElement`\>
2069
+
2070
+ Defined in: node\_modules/@types/react/index.d.ts:2422
2071
+
2072
+ #### Inherited from
2073
+
2074
+ `Omit.onFocus`
2075
+
2076
+ ***
2077
+
2078
+ ### onFocusCapture?
2079
+
2080
+ > `optional` **onFocusCapture**: `FocusEventHandler`\<`HTMLDivElement`\>
2081
+
2082
+ Defined in: node\_modules/@types/react/index.d.ts:2423
2083
+
2084
+ #### Inherited from
2085
+
2086
+ `Omit.onFocusCapture`
2087
+
2088
+ ***
2089
+
2090
+ ### onGotPointerCapture?
2091
+
2092
+ > `optional` **onGotPointerCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2093
+
2094
+ Defined in: node\_modules/@types/react/index.d.ts:2570
2095
+
2096
+ #### Inherited from
2097
+
2098
+ `Omit.onGotPointerCapture`
2099
+
2100
+ ***
2101
+
2102
+ ### onGotPointerCaptureCapture?
2103
+
2104
+ > `optional` **onGotPointerCaptureCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2105
+
2106
+ Defined in: node\_modules/@types/react/index.d.ts:2571
2107
+
2108
+ #### Inherited from
2109
+
2110
+ `Omit.onGotPointerCaptureCapture`
2111
+
2112
+ ***
2113
+
2114
+ ### onInput?
2115
+
2116
+ > `optional` **onInput**: `FormEventHandler`\<`HTMLDivElement`\>
2117
+
2118
+ Defined in: node\_modules/@types/react/index.d.ts:2432
2119
+
2120
+ #### Inherited from
2121
+
2122
+ `Omit.onInput`
2123
+
2124
+ ***
2125
+
2126
+ ### onInputCapture?
2127
+
2128
+ > `optional` **onInputCapture**: `FormEventHandler`\<`HTMLDivElement`\>
2129
+
2130
+ Defined in: node\_modules/@types/react/index.d.ts:2433
2131
+
2132
+ #### Inherited from
2133
+
2134
+ `Omit.onInputCapture`
2135
+
2136
+ ***
2137
+
2138
+ ### onInvalid?
2139
+
2140
+ > `optional` **onInvalid**: `FormEventHandler`\<`HTMLDivElement`\>
2141
+
2142
+ Defined in: node\_modules/@types/react/index.d.ts:2438
2143
+
2144
+ #### Inherited from
2145
+
2146
+ `Omit.onInvalid`
2147
+
2148
+ ***
2149
+
2150
+ ### onInvalidCapture?
2151
+
2152
+ > `optional` **onInvalidCapture**: `FormEventHandler`\<`HTMLDivElement`\>
2153
+
2154
+ Defined in: node\_modules/@types/react/index.d.ts:2439
2155
+
2156
+ #### Inherited from
2157
+
2158
+ `Omit.onInvalidCapture`
2159
+
2160
+ ***
2161
+
2162
+ ### onKeyDown?
2163
+
2164
+ > `optional` **onKeyDown**: `KeyboardEventHandler`\<`HTMLDivElement`\>
2165
+
2166
+ Defined in: node\_modules/@types/react/index.d.ts:2448
2167
+
2168
+ #### Inherited from
2169
+
2170
+ `Omit.onKeyDown`
2171
+
2172
+ ***
2173
+
2174
+ ### onKeyDownCapture?
2175
+
2176
+ > `optional` **onKeyDownCapture**: `KeyboardEventHandler`\<`HTMLDivElement`\>
2177
+
2178
+ Defined in: node\_modules/@types/react/index.d.ts:2449
2179
+
2180
+ #### Inherited from
2181
+
2182
+ `Omit.onKeyDownCapture`
2183
+
2184
+ ***
2185
+
2186
+ ### ~~onKeyPress?~~
2187
+
2188
+ > `optional` **onKeyPress**: `KeyboardEventHandler`\<`HTMLDivElement`\>
2189
+
2190
+ Defined in: node\_modules/@types/react/index.d.ts:2451
2191
+
2192
+ #### Deprecated
2193
+
2194
+ Use `onKeyUp` or `onKeyDown` instead
2195
+
2196
+ #### Inherited from
2197
+
2198
+ `Omit.onKeyPress`
2199
+
2200
+ ***
2201
+
2202
+ ### ~~onKeyPressCapture?~~
2203
+
2204
+ > `optional` **onKeyPressCapture**: `KeyboardEventHandler`\<`HTMLDivElement`\>
2205
+
2206
+ Defined in: node\_modules/@types/react/index.d.ts:2453
2207
+
2208
+ #### Deprecated
2209
+
2210
+ Use `onKeyUpCapture` or `onKeyDownCapture` instead
2211
+
2212
+ #### Inherited from
2213
+
2214
+ `Omit.onKeyPressCapture`
2215
+
2216
+ ***
2217
+
2218
+ ### onKeyUp?
2219
+
2220
+ > `optional` **onKeyUp**: `KeyboardEventHandler`\<`HTMLDivElement`\>
2221
+
2222
+ Defined in: node\_modules/@types/react/index.d.ts:2454
2223
+
2224
+ #### Inherited from
2225
+
2226
+ `Omit.onKeyUp`
2227
+
2228
+ ***
2229
+
2230
+ ### onKeyUpCapture?
2231
+
2232
+ > `optional` **onKeyUpCapture**: `KeyboardEventHandler`\<`HTMLDivElement`\>
2233
+
2234
+ Defined in: node\_modules/@types/react/index.d.ts:2455
2235
+
2236
+ #### Inherited from
2237
+
2238
+ `Omit.onKeyUpCapture`
2239
+
2240
+ ***
2241
+
2242
+ ### onLoad?
2243
+
2244
+ > `optional` **onLoad**: `ReactEventHandler`\<`HTMLDivElement`\>
2245
+
2246
+ Defined in: node\_modules/@types/react/index.d.ts:2442
2247
+
2248
+ #### Inherited from
2249
+
2250
+ `Omit.onLoad`
2251
+
2252
+ ***
2253
+
2254
+ ### onLoadCapture?
2255
+
2256
+ > `optional` **onLoadCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2257
+
2258
+ Defined in: node\_modules/@types/react/index.d.ts:2443
2259
+
2260
+ #### Inherited from
2261
+
2262
+ `Omit.onLoadCapture`
2263
+
2264
+ ***
2265
+
2266
+ ### onLoadedData?
2267
+
2268
+ > `optional` **onLoadedData**: `ReactEventHandler`\<`HTMLDivElement`\>
2269
+
2270
+ Defined in: node\_modules/@types/react/index.d.ts:2472
2271
+
2272
+ #### Inherited from
2273
+
2274
+ `Omit.onLoadedData`
2275
+
2276
+ ***
2277
+
2278
+ ### onLoadedDataCapture?
2279
+
2280
+ > `optional` **onLoadedDataCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2281
+
2282
+ Defined in: node\_modules/@types/react/index.d.ts:2473
2283
+
2284
+ #### Inherited from
2285
+
2286
+ `Omit.onLoadedDataCapture`
2287
+
2288
+ ***
2289
+
2290
+ ### onLoadedMetadata?
2291
+
2292
+ > `optional` **onLoadedMetadata**: `ReactEventHandler`\<`HTMLDivElement`\>
2293
+
2294
+ Defined in: node\_modules/@types/react/index.d.ts:2474
2295
+
2296
+ #### Inherited from
2297
+
2298
+ `Omit.onLoadedMetadata`
2299
+
2300
+ ***
2301
+
2302
+ ### onLoadedMetadataCapture?
2303
+
2304
+ > `optional` **onLoadedMetadataCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2305
+
2306
+ Defined in: node\_modules/@types/react/index.d.ts:2475
2307
+
2308
+ #### Inherited from
2309
+
2310
+ `Omit.onLoadedMetadataCapture`
2311
+
2312
+ ***
2313
+
2314
+ ### onLoadStart?
2315
+
2316
+ > `optional` **onLoadStart**: `ReactEventHandler`\<`HTMLDivElement`\>
2317
+
2318
+ Defined in: node\_modules/@types/react/index.d.ts:2476
2319
+
2320
+ #### Inherited from
2321
+
2322
+ `Omit.onLoadStart`
2323
+
2324
+ ***
2325
+
2326
+ ### onLoadStartCapture?
2327
+
2328
+ > `optional` **onLoadStartCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2329
+
2330
+ Defined in: node\_modules/@types/react/index.d.ts:2477
2331
+
2332
+ #### Inherited from
2333
+
2334
+ `Omit.onLoadStartCapture`
2335
+
2336
+ ***
2337
+
2338
+ ### onLostPointerCapture?
2339
+
2340
+ > `optional` **onLostPointerCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2341
+
2342
+ Defined in: node\_modules/@types/react/index.d.ts:2572
2343
+
2344
+ #### Inherited from
2345
+
2346
+ `Omit.onLostPointerCapture`
2347
+
2348
+ ***
2349
+
2350
+ ### onLostPointerCaptureCapture?
2351
+
2352
+ > `optional` **onLostPointerCaptureCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2353
+
2354
+ Defined in: node\_modules/@types/react/index.d.ts:2573
2355
+
2356
+ #### Inherited from
2357
+
2358
+ `Omit.onLostPointerCaptureCapture`
2359
+
2360
+ ***
2361
+
2362
+ ### onMouseDown?
2363
+
2364
+ > `optional` **onMouseDown**: `MouseEventHandler`\<`HTMLDivElement`\>
2365
+
2366
+ Defined in: node\_modules/@types/react/index.d.ts:2528
2367
+
2368
+ #### Inherited from
2369
+
2370
+ `Omit.onMouseDown`
2371
+
2372
+ ***
2373
+
2374
+ ### onMouseDownCapture?
2375
+
2376
+ > `optional` **onMouseDownCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
2377
+
2378
+ Defined in: node\_modules/@types/react/index.d.ts:2529
2379
+
2380
+ #### Inherited from
2381
+
2382
+ `Omit.onMouseDownCapture`
2383
+
2384
+ ***
2385
+
2386
+ ### onMouseEnter?
2387
+
2388
+ > `optional` **onMouseEnter**: `MouseEventHandler`\<`HTMLDivElement`\>
2389
+
2390
+ Defined in: node\_modules/@types/react/index.d.ts:2530
2391
+
2392
+ #### Inherited from
2393
+
2394
+ `Omit.onMouseEnter`
2395
+
2396
+ ***
2397
+
2398
+ ### onMouseLeave?
2399
+
2400
+ > `optional` **onMouseLeave**: `MouseEventHandler`\<`HTMLDivElement`\>
2401
+
2402
+ Defined in: node\_modules/@types/react/index.d.ts:2531
2403
+
2404
+ #### Inherited from
2405
+
2406
+ `Omit.onMouseLeave`
2407
+
2408
+ ***
2409
+
2410
+ ### onMouseMove?
2411
+
2412
+ > `optional` **onMouseMove**: `MouseEventHandler`\<`HTMLDivElement`\>
2413
+
2414
+ Defined in: node\_modules/@types/react/index.d.ts:2532
2415
+
2416
+ #### Inherited from
2417
+
2418
+ `Omit.onMouseMove`
2419
+
2420
+ ***
2421
+
2422
+ ### onMouseMoveCapture?
2423
+
2424
+ > `optional` **onMouseMoveCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
2425
+
2426
+ Defined in: node\_modules/@types/react/index.d.ts:2533
2427
+
2428
+ #### Inherited from
2429
+
2430
+ `Omit.onMouseMoveCapture`
2431
+
2432
+ ***
2433
+
2434
+ ### onMouseOut?
2435
+
2436
+ > `optional` **onMouseOut**: `MouseEventHandler`\<`HTMLDivElement`\>
2437
+
2438
+ Defined in: node\_modules/@types/react/index.d.ts:2534
2439
+
2440
+ #### Inherited from
2441
+
2442
+ `Omit.onMouseOut`
2443
+
2444
+ ***
2445
+
2446
+ ### onMouseOutCapture?
2447
+
2448
+ > `optional` **onMouseOutCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
2449
+
2450
+ Defined in: node\_modules/@types/react/index.d.ts:2535
2451
+
2452
+ #### Inherited from
2453
+
2454
+ `Omit.onMouseOutCapture`
2455
+
2456
+ ***
2457
+
2458
+ ### onMouseOver?
2459
+
2460
+ > `optional` **onMouseOver**: `MouseEventHandler`\<`HTMLDivElement`\>
2461
+
2462
+ Defined in: node\_modules/@types/react/index.d.ts:2536
2463
+
2464
+ #### Inherited from
2465
+
2466
+ `Omit.onMouseOver`
2467
+
2468
+ ***
2469
+
2470
+ ### onMouseOverCapture?
2471
+
2472
+ > `optional` **onMouseOverCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
2473
+
2474
+ Defined in: node\_modules/@types/react/index.d.ts:2537
2475
+
2476
+ #### Inherited from
2477
+
2478
+ `Omit.onMouseOverCapture`
2479
+
2480
+ ***
2481
+
2482
+ ### onMouseUp?
2483
+
2484
+ > `optional` **onMouseUp**: `MouseEventHandler`\<`HTMLDivElement`\>
2485
+
2486
+ Defined in: node\_modules/@types/react/index.d.ts:2538
2487
+
2488
+ #### Inherited from
2489
+
2490
+ `Omit.onMouseUp`
2491
+
2492
+ ***
2493
+
2494
+ ### onMouseUpCapture?
2495
+
2496
+ > `optional` **onMouseUpCapture**: `MouseEventHandler`\<`HTMLDivElement`\>
2497
+
2498
+ Defined in: node\_modules/@types/react/index.d.ts:2539
2499
+
2500
+ #### Inherited from
2501
+
2502
+ `Omit.onMouseUpCapture`
2503
+
2504
+ ***
2505
+
2506
+ ### onPaste?
2507
+
2508
+ > `optional` **onPaste**: `ClipboardEventHandler`\<`HTMLDivElement`\>
2509
+
2510
+ Defined in: node\_modules/@types/react/index.d.ts:2410
2511
+
2512
+ #### Inherited from
2513
+
2514
+ `Omit.onPaste`
2515
+
2516
+ ***
2517
+
2518
+ ### onPasteCapture?
2519
+
2520
+ > `optional` **onPasteCapture**: `ClipboardEventHandler`\<`HTMLDivElement`\>
2521
+
2522
+ Defined in: node\_modules/@types/react/index.d.ts:2411
2523
+
2524
+ #### Inherited from
2525
+
2526
+ `Omit.onPasteCapture`
2527
+
2528
+ ***
2529
+
2530
+ ### onPause?
2531
+
2532
+ > `optional` **onPause**: `ReactEventHandler`\<`HTMLDivElement`\>
2533
+
2534
+ Defined in: node\_modules/@types/react/index.d.ts:2478
2535
+
2536
+ #### Inherited from
2537
+
2538
+ `Omit.onPause`
2539
+
2540
+ ***
2541
+
2542
+ ### onPauseCapture?
2543
+
2544
+ > `optional` **onPauseCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2545
+
2546
+ Defined in: node\_modules/@types/react/index.d.ts:2479
2547
+
2548
+ #### Inherited from
2549
+
2550
+ `Omit.onPauseCapture`
2551
+
2552
+ ***
2553
+
2554
+ ### onPlay?
2555
+
2556
+ > `optional` **onPlay**: `ReactEventHandler`\<`HTMLDivElement`\>
2557
+
2558
+ Defined in: node\_modules/@types/react/index.d.ts:2480
2559
+
2560
+ #### Inherited from
2561
+
2562
+ `Omit.onPlay`
2563
+
2564
+ ***
2565
+
2566
+ ### onPlayCapture?
2567
+
2568
+ > `optional` **onPlayCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2569
+
2570
+ Defined in: node\_modules/@types/react/index.d.ts:2481
2571
+
2572
+ #### Inherited from
2573
+
2574
+ `Omit.onPlayCapture`
2575
+
2576
+ ***
2577
+
2578
+ ### onPlaying?
2579
+
2580
+ > `optional` **onPlaying**: `ReactEventHandler`\<`HTMLDivElement`\>
2581
+
2582
+ Defined in: node\_modules/@types/react/index.d.ts:2482
2583
+
2584
+ #### Inherited from
2585
+
2586
+ `Omit.onPlaying`
2587
+
2588
+ ***
2589
+
2590
+ ### onPlayingCapture?
2591
+
2592
+ > `optional` **onPlayingCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2593
+
2594
+ Defined in: node\_modules/@types/react/index.d.ts:2483
2595
+
2596
+ #### Inherited from
2597
+
2598
+ `Omit.onPlayingCapture`
2599
+
2600
+ ***
2601
+
2602
+ ### onPointerCancel?
2603
+
2604
+ > `optional` **onPointerCancel**: `PointerEventHandler`\<`HTMLDivElement`\>
2605
+
2606
+ Defined in: node\_modules/@types/react/index.d.ts:2562
2607
+
2608
+ #### Inherited from
2609
+
2610
+ `Omit.onPointerCancel`
2611
+
2612
+ ***
2613
+
2614
+ ### onPointerCancelCapture?
2615
+
2616
+ > `optional` **onPointerCancelCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2617
+
2618
+ Defined in: node\_modules/@types/react/index.d.ts:2563
2619
+
2620
+ #### Inherited from
2621
+
2622
+ `Omit.onPointerCancelCapture`
2623
+
2624
+ ***
2625
+
2626
+ ### onPointerDown?
2627
+
2628
+ > `optional` **onPointerDown**: `PointerEventHandler`\<`HTMLDivElement`\>
2629
+
2630
+ Defined in: node\_modules/@types/react/index.d.ts:2556
2631
+
2632
+ #### Inherited from
2633
+
2634
+ `Omit.onPointerDown`
2635
+
2636
+ ***
2637
+
2638
+ ### onPointerDownCapture?
2639
+
2640
+ > `optional` **onPointerDownCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2641
+
2642
+ Defined in: node\_modules/@types/react/index.d.ts:2557
2643
+
2644
+ #### Inherited from
2645
+
2646
+ `Omit.onPointerDownCapture`
2647
+
2648
+ ***
2649
+
2650
+ ### onPointerEnter?
2651
+
2652
+ > `optional` **onPointerEnter**: `PointerEventHandler`\<`HTMLDivElement`\>
2653
+
2654
+ Defined in: node\_modules/@types/react/index.d.ts:2564
2655
+
2656
+ #### Inherited from
2657
+
2658
+ `Omit.onPointerEnter`
2659
+
2660
+ ***
2661
+
2662
+ ### onPointerLeave?
2663
+
2664
+ > `optional` **onPointerLeave**: `PointerEventHandler`\<`HTMLDivElement`\>
2665
+
2666
+ Defined in: node\_modules/@types/react/index.d.ts:2565
2667
+
2668
+ #### Inherited from
2669
+
2670
+ `Omit.onPointerLeave`
2671
+
2672
+ ***
2673
+
2674
+ ### onPointerMove?
2675
+
2676
+ > `optional` **onPointerMove**: `PointerEventHandler`\<`HTMLDivElement`\>
2677
+
2678
+ Defined in: node\_modules/@types/react/index.d.ts:2558
2679
+
2680
+ #### Inherited from
2681
+
2682
+ `Omit.onPointerMove`
2683
+
2684
+ ***
2685
+
2686
+ ### onPointerMoveCapture?
2687
+
2688
+ > `optional` **onPointerMoveCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2689
+
2690
+ Defined in: node\_modules/@types/react/index.d.ts:2559
2691
+
2692
+ #### Inherited from
2693
+
2694
+ `Omit.onPointerMoveCapture`
2695
+
2696
+ ***
2697
+
2698
+ ### onPointerOut?
2699
+
2700
+ > `optional` **onPointerOut**: `PointerEventHandler`\<`HTMLDivElement`\>
2701
+
2702
+ Defined in: node\_modules/@types/react/index.d.ts:2568
2703
+
2704
+ #### Inherited from
2705
+
2706
+ `Omit.onPointerOut`
2707
+
2708
+ ***
2709
+
2710
+ ### onPointerOutCapture?
2711
+
2712
+ > `optional` **onPointerOutCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2713
+
2714
+ Defined in: node\_modules/@types/react/index.d.ts:2569
2715
+
2716
+ #### Inherited from
2717
+
2718
+ `Omit.onPointerOutCapture`
2719
+
2720
+ ***
2721
+
2722
+ ### onPointerOver?
2723
+
2724
+ > `optional` **onPointerOver**: `PointerEventHandler`\<`HTMLDivElement`\>
2725
+
2726
+ Defined in: node\_modules/@types/react/index.d.ts:2566
2727
+
2728
+ #### Inherited from
2729
+
2730
+ `Omit.onPointerOver`
2731
+
2732
+ ***
2733
+
2734
+ ### onPointerOverCapture?
2735
+
2736
+ > `optional` **onPointerOverCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2737
+
2738
+ Defined in: node\_modules/@types/react/index.d.ts:2567
2739
+
2740
+ #### Inherited from
2741
+
2742
+ `Omit.onPointerOverCapture`
2743
+
2744
+ ***
2745
+
2746
+ ### onPointerUp?
2747
+
2748
+ > `optional` **onPointerUp**: `PointerEventHandler`\<`HTMLDivElement`\>
2749
+
2750
+ Defined in: node\_modules/@types/react/index.d.ts:2560
2751
+
2752
+ #### Inherited from
2753
+
2754
+ `Omit.onPointerUp`
2755
+
2756
+ ***
2757
+
2758
+ ### onPointerUpCapture?
2759
+
2760
+ > `optional` **onPointerUpCapture**: `PointerEventHandler`\<`HTMLDivElement`\>
2761
+
2762
+ Defined in: node\_modules/@types/react/index.d.ts:2561
2763
+
2764
+ #### Inherited from
2765
+
2766
+ `Omit.onPointerUpCapture`
2767
+
2768
+ ***
2769
+
2770
+ ### onProgress?
2771
+
2772
+ > `optional` **onProgress**: `ReactEventHandler`\<`HTMLDivElement`\>
2773
+
2774
+ Defined in: node\_modules/@types/react/index.d.ts:2484
2775
+
2776
+ #### Inherited from
2777
+
2778
+ `Omit.onProgress`
2779
+
2780
+ ***
2781
+
2782
+ ### onProgressCapture?
2783
+
2784
+ > `optional` **onProgressCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2785
+
2786
+ Defined in: node\_modules/@types/react/index.d.ts:2485
2787
+
2788
+ #### Inherited from
2789
+
2790
+ `Omit.onProgressCapture`
2791
+
2792
+ ***
2793
+
2794
+ ### onRateChange?
2795
+
2796
+ > `optional` **onRateChange**: `ReactEventHandler`\<`HTMLDivElement`\>
2797
+
2798
+ Defined in: node\_modules/@types/react/index.d.ts:2486
2799
+
2800
+ #### Inherited from
2801
+
2802
+ `Omit.onRateChange`
2803
+
2804
+ ***
2805
+
2806
+ ### onRateChangeCapture?
2807
+
2808
+ > `optional` **onRateChangeCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2809
+
2810
+ Defined in: node\_modules/@types/react/index.d.ts:2487
2811
+
2812
+ #### Inherited from
2813
+
2814
+ `Omit.onRateChangeCapture`
2815
+
2816
+ ***
2817
+
2818
+ ### onReset?
2819
+
2820
+ > `optional` **onReset**: `FormEventHandler`\<`HTMLDivElement`\>
2821
+
2822
+ Defined in: node\_modules/@types/react/index.d.ts:2434
2823
+
2824
+ #### Inherited from
2825
+
2826
+ `Omit.onReset`
2827
+
2828
+ ***
2829
+
2830
+ ### onResetCapture?
2831
+
2832
+ > `optional` **onResetCapture**: `FormEventHandler`\<`HTMLDivElement`\>
2833
+
2834
+ Defined in: node\_modules/@types/react/index.d.ts:2435
2835
+
2836
+ #### Inherited from
2837
+
2838
+ `Omit.onResetCapture`
2839
+
2840
+ ***
2841
+
2842
+ ### onScroll?
2843
+
2844
+ > `optional` **onScroll**: `UIEventHandler`\<`HTMLDivElement`\>
2845
+
2846
+ Defined in: node\_modules/@types/react/index.d.ts:2576
2847
+
2848
+ #### Inherited from
2849
+
2850
+ `Omit.onScroll`
2851
+
2852
+ ***
2853
+
2854
+ ### onScrollCapture?
2855
+
2856
+ > `optional` **onScrollCapture**: `UIEventHandler`\<`HTMLDivElement`\>
2857
+
2858
+ Defined in: node\_modules/@types/react/index.d.ts:2577
2859
+
2860
+ #### Inherited from
2861
+
2862
+ `Omit.onScrollCapture`
2863
+
2864
+ ***
2865
+
2866
+ ### onSeeked?
2867
+
2868
+ > `optional` **onSeeked**: `ReactEventHandler`\<`HTMLDivElement`\>
2869
+
2870
+ Defined in: node\_modules/@types/react/index.d.ts:2488
2871
+
2872
+ #### Inherited from
2873
+
2874
+ `Omit.onSeeked`
2875
+
2876
+ ***
2877
+
2878
+ ### onSeekedCapture?
2879
+
2880
+ > `optional` **onSeekedCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2881
+
2882
+ Defined in: node\_modules/@types/react/index.d.ts:2489
2883
+
2884
+ #### Inherited from
2885
+
2886
+ `Omit.onSeekedCapture`
2887
+
2888
+ ***
2889
+
2890
+ ### onSeeking?
2891
+
2892
+ > `optional` **onSeeking**: `ReactEventHandler`\<`HTMLDivElement`\>
2893
+
2894
+ Defined in: node\_modules/@types/react/index.d.ts:2490
2895
+
2896
+ #### Inherited from
2897
+
2898
+ `Omit.onSeeking`
2899
+
2900
+ ***
2901
+
2902
+ ### onSeekingCapture?
2903
+
2904
+ > `optional` **onSeekingCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2905
+
2906
+ Defined in: node\_modules/@types/react/index.d.ts:2491
2907
+
2908
+ #### Inherited from
2909
+
2910
+ `Omit.onSeekingCapture`
2911
+
2912
+ ***
2913
+
2914
+ ### onSelect?
2915
+
2916
+ > `optional` **onSelect**: `ReactEventHandler`\<`HTMLDivElement`\>
2917
+
2918
+ Defined in: node\_modules/@types/react/index.d.ts:2542
2919
+
2920
+ #### Inherited from
2921
+
2922
+ `Omit.onSelect`
2923
+
2924
+ ***
2925
+
2926
+ ### onSelectCapture?
2927
+
2928
+ > `optional` **onSelectCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2929
+
2930
+ Defined in: node\_modules/@types/react/index.d.ts:2543
2931
+
2932
+ #### Inherited from
2933
+
2934
+ `Omit.onSelectCapture`
2935
+
2936
+ ***
2937
+
2938
+ ### onStalled?
2939
+
2940
+ > `optional` **onStalled**: `ReactEventHandler`\<`HTMLDivElement`\>
2941
+
2942
+ Defined in: node\_modules/@types/react/index.d.ts:2492
2943
+
2944
+ #### Inherited from
2945
+
2946
+ `Omit.onStalled`
2947
+
2948
+ ***
2949
+
2950
+ ### onStalledCapture?
2951
+
2952
+ > `optional` **onStalledCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
2953
+
2954
+ Defined in: node\_modules/@types/react/index.d.ts:2493
2955
+
2956
+ #### Inherited from
2957
+
2958
+ `Omit.onStalledCapture`
2959
+
2960
+ ***
2961
+
2962
+ ### onSubmit?
2963
+
2964
+ > `optional` **onSubmit**: `FormEventHandler`\<`HTMLDivElement`\>
2965
+
2966
+ Defined in: node\_modules/@types/react/index.d.ts:2436
2967
+
2968
+ #### Inherited from
2969
+
2970
+ `Omit.onSubmit`
2971
+
2972
+ ***
2973
+
2974
+ ### onSubmitCapture?
2975
+
2976
+ > `optional` **onSubmitCapture**: `FormEventHandler`\<`HTMLDivElement`\>
2977
+
2978
+ Defined in: node\_modules/@types/react/index.d.ts:2437
2979
+
2980
+ #### Inherited from
2981
+
2982
+ `Omit.onSubmitCapture`
2983
+
2984
+ ***
2985
+
2986
+ ### onSuspend?
2987
+
2988
+ > `optional` **onSuspend**: `ReactEventHandler`\<`HTMLDivElement`\>
2989
+
2990
+ Defined in: node\_modules/@types/react/index.d.ts:2494
2991
+
2992
+ #### Inherited from
2993
+
2994
+ `Omit.onSuspend`
2995
+
2996
+ ***
2997
+
2998
+ ### onSuspendCapture?
2999
+
3000
+ > `optional` **onSuspendCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
3001
+
3002
+ Defined in: node\_modules/@types/react/index.d.ts:2495
3003
+
3004
+ #### Inherited from
3005
+
3006
+ `Omit.onSuspendCapture`
3007
+
3008
+ ***
3009
+
3010
+ ### onTimeUpdate?
3011
+
3012
+ > `optional` **onTimeUpdate**: `ReactEventHandler`\<`HTMLDivElement`\>
3013
+
3014
+ Defined in: node\_modules/@types/react/index.d.ts:2496
3015
+
3016
+ #### Inherited from
3017
+
3018
+ `Omit.onTimeUpdate`
3019
+
3020
+ ***
3021
+
3022
+ ### onTimeUpdateCapture?
3023
+
3024
+ > `optional` **onTimeUpdateCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
3025
+
3026
+ Defined in: node\_modules/@types/react/index.d.ts:2497
3027
+
3028
+ #### Inherited from
3029
+
3030
+ `Omit.onTimeUpdateCapture`
3031
+
3032
+ ***
3033
+
3034
+ ### onTouchCancel?
3035
+
3036
+ > `optional` **onTouchCancel**: `TouchEventHandler`\<`HTMLDivElement`\>
3037
+
3038
+ Defined in: node\_modules/@types/react/index.d.ts:2546
3039
+
3040
+ #### Inherited from
3041
+
3042
+ `Omit.onTouchCancel`
3043
+
3044
+ ***
3045
+
3046
+ ### onTouchCancelCapture?
3047
+
3048
+ > `optional` **onTouchCancelCapture**: `TouchEventHandler`\<`HTMLDivElement`\>
3049
+
3050
+ Defined in: node\_modules/@types/react/index.d.ts:2547
3051
+
3052
+ #### Inherited from
3053
+
3054
+ `Omit.onTouchCancelCapture`
3055
+
3056
+ ***
3057
+
3058
+ ### onTouchEnd?
3059
+
3060
+ > `optional` **onTouchEnd**: `TouchEventHandler`\<`HTMLDivElement`\>
3061
+
3062
+ Defined in: node\_modules/@types/react/index.d.ts:2548
3063
+
3064
+ #### Inherited from
3065
+
3066
+ `Omit.onTouchEnd`
3067
+
3068
+ ***
3069
+
3070
+ ### onTouchEndCapture?
3071
+
3072
+ > `optional` **onTouchEndCapture**: `TouchEventHandler`\<`HTMLDivElement`\>
3073
+
3074
+ Defined in: node\_modules/@types/react/index.d.ts:2549
3075
+
3076
+ #### Inherited from
3077
+
3078
+ `Omit.onTouchEndCapture`
3079
+
3080
+ ***
3081
+
3082
+ ### onTouchMove?
3083
+
3084
+ > `optional` **onTouchMove**: `TouchEventHandler`\<`HTMLDivElement`\>
3085
+
3086
+ Defined in: node\_modules/@types/react/index.d.ts:2550
3087
+
3088
+ #### Inherited from
3089
+
3090
+ `Omit.onTouchMove`
3091
+
3092
+ ***
3093
+
3094
+ ### onTouchMoveCapture?
3095
+
3096
+ > `optional` **onTouchMoveCapture**: `TouchEventHandler`\<`HTMLDivElement`\>
3097
+
3098
+ Defined in: node\_modules/@types/react/index.d.ts:2551
3099
+
3100
+ #### Inherited from
3101
+
3102
+ `Omit.onTouchMoveCapture`
3103
+
3104
+ ***
3105
+
3106
+ ### onTouchStart?
3107
+
3108
+ > `optional` **onTouchStart**: `TouchEventHandler`\<`HTMLDivElement`\>
3109
+
3110
+ Defined in: node\_modules/@types/react/index.d.ts:2552
3111
+
3112
+ #### Inherited from
3113
+
3114
+ `Omit.onTouchStart`
3115
+
3116
+ ***
3117
+
3118
+ ### onTouchStartCapture?
3119
+
3120
+ > `optional` **onTouchStartCapture**: `TouchEventHandler`\<`HTMLDivElement`\>
3121
+
3122
+ Defined in: node\_modules/@types/react/index.d.ts:2553
3123
+
3124
+ #### Inherited from
3125
+
3126
+ `Omit.onTouchStartCapture`
3127
+
3128
+ ***
3129
+
3130
+ ### onTransitionEnd?
3131
+
3132
+ > `optional` **onTransitionEnd**: `TransitionEventHandler`\<`HTMLDivElement`\>
3133
+
3134
+ Defined in: node\_modules/@types/react/index.d.ts:2592
3135
+
3136
+ #### Inherited from
3137
+
3138
+ `Omit.onTransitionEnd`
3139
+
3140
+ ***
3141
+
3142
+ ### onTransitionEndCapture?
3143
+
3144
+ > `optional` **onTransitionEndCapture**: `TransitionEventHandler`\<`HTMLDivElement`\>
3145
+
3146
+ Defined in: node\_modules/@types/react/index.d.ts:2593
3147
+
3148
+ #### Inherited from
3149
+
3150
+ `Omit.onTransitionEndCapture`
3151
+
3152
+ ***
3153
+
3154
+ ### onVolumeChange?
3155
+
3156
+ > `optional` **onVolumeChange**: `ReactEventHandler`\<`HTMLDivElement`\>
3157
+
3158
+ Defined in: node\_modules/@types/react/index.d.ts:2498
3159
+
3160
+ #### Inherited from
3161
+
3162
+ `Omit.onVolumeChange`
3163
+
3164
+ ***
3165
+
3166
+ ### onVolumeChangeCapture?
3167
+
3168
+ > `optional` **onVolumeChangeCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
3169
+
3170
+ Defined in: node\_modules/@types/react/index.d.ts:2499
3171
+
3172
+ #### Inherited from
3173
+
3174
+ `Omit.onVolumeChangeCapture`
3175
+
3176
+ ***
3177
+
3178
+ ### onWaiting?
3179
+
3180
+ > `optional` **onWaiting**: `ReactEventHandler`\<`HTMLDivElement`\>
3181
+
3182
+ Defined in: node\_modules/@types/react/index.d.ts:2500
3183
+
3184
+ #### Inherited from
3185
+
3186
+ `Omit.onWaiting`
3187
+
3188
+ ***
3189
+
3190
+ ### onWaitingCapture?
3191
+
3192
+ > `optional` **onWaitingCapture**: `ReactEventHandler`\<`HTMLDivElement`\>
3193
+
3194
+ Defined in: node\_modules/@types/react/index.d.ts:2501
3195
+
3196
+ #### Inherited from
3197
+
3198
+ `Omit.onWaitingCapture`
3199
+
3200
+ ***
3201
+
3202
+ ### onWheel?
3203
+
3204
+ > `optional` **onWheel**: `WheelEventHandler`\<`HTMLDivElement`\>
3205
+
3206
+ Defined in: node\_modules/@types/react/index.d.ts:2580
3207
+
3208
+ #### Inherited from
3209
+
3210
+ `Omit.onWheel`
3211
+
3212
+ ***
3213
+
3214
+ ### onWheelCapture?
3215
+
3216
+ > `optional` **onWheelCapture**: `WheelEventHandler`\<`HTMLDivElement`\>
3217
+
3218
+ Defined in: node\_modules/@types/react/index.d.ts:2581
3219
+
3220
+ #### Inherited from
3221
+
3222
+ `Omit.onWheelCapture`
3223
+
3224
+ ***
3225
+
3226
+ ### part?
3227
+
3228
+ > `optional` **part**: `string`
3229
+
3230
+ Defined in: node\_modules/@types/react/index.d.ts:2982
3231
+
3232
+ #### See
3233
+
3234
+ [https://developer.mozilla.org/en-US/docs/Web/HTML/Global\_attributes/part](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part)
3235
+
3236
+ #### Inherited from
3237
+
3238
+ `Omit.part`
3239
+
3240
+ ***
3241
+
3242
+ ### prefix?
3243
+
3244
+ > `optional` **prefix**: `string`
3245
+
3246
+ Defined in: node\_modules/@types/react/index.d.ts:2943
3247
+
3248
+ #### Inherited from
3249
+
3250
+ `Omit.prefix`
3251
+
3252
+ ***
3253
+
3254
+ ### property?
3255
+
3256
+ > `optional` **property**: `string`
3257
+
3258
+ Defined in: node\_modules/@types/react/index.d.ts:2944
3259
+
3260
+ #### Inherited from
3261
+
3262
+ `Omit.property`
3263
+
3264
+ ***
3265
+
3266
+ ### radioGroup?
3267
+
3268
+ > `optional` **radioGroup**: `string`
3269
+
3270
+ Defined in: node\_modules/@types/react/index.d.ts:2933
3271
+
3272
+ #### Inherited from
3273
+
3274
+ `Omit.radioGroup`
3275
+
3276
+ ***
3277
+
3278
+ ### rel?
3279
+
3280
+ > `optional` **rel**: `string`
3281
+
3282
+ Defined in: node\_modules/@types/react/index.d.ts:2945
3283
+
3284
+ #### Inherited from
3285
+
3286
+ `Omit.rel`
3287
+
3288
+ ***
3289
+
3290
+ ### resource?
3291
+
3292
+ > `optional` **resource**: `string`
3293
+
3294
+ Defined in: node\_modules/@types/react/index.d.ts:2946
3295
+
3296
+ #### Inherited from
3297
+
3298
+ `Omit.resource`
3299
+
3300
+ ***
3301
+
3302
+ ### results?
3303
+
3304
+ > `optional` **results**: `number`
3305
+
3306
+ Defined in: node\_modules/@types/react/index.d.ts:2960
3307
+
3308
+ #### Inherited from
3309
+
3310
+ `Omit.results`
3311
+
3312
+ ***
3313
+
3314
+ ### rev?
3315
+
3316
+ > `optional` **rev**: `string`
3317
+
3318
+ Defined in: node\_modules/@types/react/index.d.ts:2947
3319
+
3320
+ #### Inherited from
3321
+
3322
+ `Omit.rev`
3323
+
3324
+ ***
3325
+
3326
+ ### role?
3327
+
3328
+ > `optional` **role**: `AriaRole`
3329
+
3330
+ Defined in: node\_modules/@types/react/index.d.ts:2936
3331
+
3332
+ #### Inherited from
3333
+
3334
+ `Omit.role`
3335
+
3336
+ ***
3337
+
3338
+ ### security?
3339
+
3340
+ > `optional` **security**: `string`
3341
+
3342
+ Defined in: node\_modules/@types/react/index.d.ts:2961
3343
+
3344
+ #### Inherited from
3345
+
3346
+ `Omit.security`
3347
+
3348
+ ***
3349
+
3350
+ ### select()?
3351
+
3352
+ > `optional` **select**: (`extensions`) => `AssignedExtension`[]
3353
+
3354
+ Defined in: [packages/framework/esm-react-utils/src/ExtensionSlot.tsx:20](https://github.com/Kipkemoii/openmrs-esm-core/blob/main/packages/framework/esm-react-utils/src/ExtensionSlot.tsx#L20)
3355
+
3356
+ An optional function for filtering or otherwise modifying
3357
+ the list of extensions that will be rendered.
3358
+
3359
+ #### Parameters
3360
+
3361
+ ##### extensions
3362
+
3363
+ `AssignedExtension`[]
3364
+
3365
+ #### Returns
3366
+
3367
+ `AssignedExtension`[]
3368
+
3369
+ #### Inherited from
3370
+
3371
+ [`ExtensionSlotBaseProps`](ExtensionSlotBaseProps.md).[`select`](ExtensionSlotBaseProps.md#select)
3372
+
3373
+ ***
3374
+
3375
+ ### slot?
3376
+
3377
+ > `optional` **slot**: `string`
3378
+
3379
+ Defined in: node\_modules/@types/react/index.d.ts:2925
3380
+
3381
+ #### Inherited from
3382
+
3383
+ `Omit.slot`
3384
+
3385
+ ***
3386
+
3387
+ ### spellCheck?
3388
+
3389
+ > `optional` **spellCheck**: `Booleanish`
3390
+
3391
+ Defined in: node\_modules/@types/react/index.d.ts:2926
3392
+
3393
+ #### Inherited from
3394
+
3395
+ `Omit.spellCheck`
3396
+
3397
+ ***
3398
+
3399
+ ### state?
3400
+
3401
+ > `optional` **state**: `Record`\<`string` \| `number` \| `symbol`, `unknown`\>
3402
+
3403
+ Defined in: [packages/framework/esm-react-utils/src/ExtensionSlot.tsx:27](https://github.com/Kipkemoii/openmrs-esm-core/blob/main/packages/framework/esm-react-utils/src/ExtensionSlot.tsx#L27)
3404
+
3405
+ Only works if no children are provided*. Passes data
3406
+ through as props to the extensions that are mounted here. If `ExtensionSlot`
3407
+ has children, you must pass the state through the `state` param of the
3408
+ `Extension` component.
3409
+
3410
+ #### Inherited from
3411
+
3412
+ [`ExtensionSlotBaseProps`](ExtensionSlotBaseProps.md).[`state`](ExtensionSlotBaseProps.md#state)
3413
+
3414
+ ***
3415
+
3416
+ ### style?
3417
+
3418
+ > `optional` **style**: `CSSProperties`
3419
+
3420
+ Defined in: node\_modules/@types/react/index.d.ts:2927
3421
+
3422
+ #### Inherited from
3423
+
3424
+ `Omit.style`
3425
+
3426
+ ***
3427
+
3428
+ ### suppressContentEditableWarning?
3429
+
3430
+ > `optional` **suppressContentEditableWarning**: `boolean`
3431
+
3432
+ Defined in: node\_modules/@types/react/index.d.ts:2908
3433
+
3434
+ #### Inherited from
3435
+
3436
+ `Omit.suppressContentEditableWarning`
3437
+
3438
+ ***
3439
+
3440
+ ### suppressHydrationWarning?
3441
+
3442
+ > `optional` **suppressHydrationWarning**: `boolean`
3443
+
3444
+ Defined in: node\_modules/@types/react/index.d.ts:2909
3445
+
3446
+ #### Inherited from
3447
+
3448
+ `Omit.suppressHydrationWarning`
3449
+
3450
+ ***
3451
+
3452
+ ### tabIndex?
3453
+
3454
+ > `optional` **tabIndex**: `number`
3455
+
3456
+ Defined in: node\_modules/@types/react/index.d.ts:2928
3457
+
3458
+ #### Inherited from
3459
+
3460
+ `Omit.tabIndex`
3461
+
3462
+ ***
3463
+
3464
+ ### title?
3465
+
3466
+ > `optional` **title**: `string`
3467
+
3468
+ Defined in: node\_modules/@types/react/index.d.ts:2929
3469
+
3470
+ #### Inherited from
3471
+
3472
+ `Omit.title`
3473
+
3474
+ ***
3475
+
3476
+ ### translate?
3477
+
3478
+ > `optional` **translate**: `"yes"` \| `"no"`
3479
+
3480
+ Defined in: node\_modules/@types/react/index.d.ts:2930
3481
+
3482
+ #### Inherited from
3483
+
3484
+ `Omit.translate`
3485
+
3486
+ ***
3487
+
3488
+ ### typeof?
3489
+
3490
+ > `optional` **typeof**: `string`
3491
+
3492
+ Defined in: node\_modules/@types/react/index.d.ts:2948
3493
+
3494
+ #### Inherited from
3495
+
3496
+ `Omit.typeof`
3497
+
3498
+ ***
3499
+
3500
+ ### unselectable?
3501
+
3502
+ > `optional` **unselectable**: `"on"` \| `"off"`
3503
+
3504
+ Defined in: node\_modules/@types/react/index.d.ts:2962
3505
+
3506
+ #### Inherited from
3507
+
3508
+ `Omit.unselectable`
3509
+
3510
+ ***
3511
+
3512
+ ### vocab?
3513
+
3514
+ > `optional` **vocab**: `string`
3515
+
3516
+ Defined in: node\_modules/@types/react/index.d.ts:2949
3517
+
3518
+ #### Inherited from
3519
+
3520
+ `Omit.vocab`