@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.
- package/.editorconfig +12 -0
- package/.eslintignore +3 -0
- package/.eslintrc +72 -0
- package/.github/pull_request_template.md +22 -0
- package/.github/workflows/bundle-size.yml +30 -0
- package/.github/workflows/ci.yml +159 -0
- package/.github/workflows/code-ql.yml +71 -0
- package/.github/workflows/docs.yml +21 -0
- package/.github/workflows/e2e.yml +214 -0
- package/.github/workflows/tx-pull.yml +57 -0
- package/.github/workflows/tx-push.yml +21 -0
- package/.husky/pre-commit +8 -0
- package/.husky/pre-push +6 -0
- package/.prettierignore +9 -0
- package/.tx/config +42 -0
- package/.yarn/plugins/@yarnpkg/plugin-outdated.cjs +35 -0
- package/.yarn/releases/yarn-4.10.3.cjs +942 -0
- package/.yarn/versions/643d2b70.yml +21 -0
- package/.yarnrc.yml +14 -0
- package/LICENSE +401 -0
- package/README.md +371 -0
- package/document.sh +10 -0
- package/e2e/core/global-setup.ts +32 -0
- package/e2e/core/index.ts +1 -0
- package/e2e/core/test.ts +9 -0
- package/e2e/pages/home-page.ts +9 -0
- package/e2e/pages/index.ts +2 -0
- package/e2e/pages/login-page.ts +9 -0
- package/e2e/specs/login.spec.ts +55 -0
- package/e2e/specs/logout.spec.ts +42 -0
- package/e2e/specs/navbar.spec.ts +48 -0
- package/e2e/support/bamboo/docker-compose.yml +56 -0
- package/e2e/support/bamboo/e2e-test-runner.sh +13 -0
- package/e2e/support/bamboo/playwright.Dockerfile +12 -0
- package/e2e/support/github/.dockerignore +2 -0
- package/e2e/support/github/Dockerfile +21 -0
- package/e2e/support/github/commit_and_export_images.sh +17 -0
- package/e2e/support/github/docker-compose.yml +31 -0
- package/e2e/support/github/run-e2e-docker-env.sh +354 -0
- package/example.env +6 -0
- package/markdown_link_check_config.json +24 -0
- package/package.json +73 -0
- package/packages/apps/esm-devtools-app/README.md +37 -0
- package/packages/apps/esm-devtools-app/package.json +65 -0
- package/packages/apps/esm-devtools-app/setup-tests.ts +8 -0
- package/packages/apps/esm-devtools-app/src/declarations.d.ts +2 -0
- package/packages/apps/esm-devtools-app/src/devtools/devtools-popup.component.tsx +25 -0
- package/packages/apps/esm-devtools-app/src/devtools/devtools-popup.styles.scss +39 -0
- package/packages/apps/esm-devtools-app/src/devtools/devtools.component.tsx +37 -0
- package/packages/apps/esm-devtools-app/src/devtools/devtools.styles.scss +32 -0
- package/packages/apps/esm-devtools-app/src/devtools/devtools.test.tsx +84 -0
- package/packages/apps/esm-devtools-app/src/devtools/import-map-list/import-map.modal.tsx +131 -0
- package/packages/apps/esm-devtools-app/src/devtools/import-map-list/import-map.scss +5 -0
- package/packages/apps/esm-devtools-app/src/devtools/import-map-list/list.component.tsx +391 -0
- package/packages/apps/esm-devtools-app/src/devtools/import-map-list/list.scss +82 -0
- package/packages/apps/esm-devtools-app/src/devtools/import-map-list/types.ts +7 -0
- package/packages/apps/esm-devtools-app/src/devtools/import-map.component.tsx +32 -0
- package/packages/apps/esm-devtools-app/src/devtools/import-map.styles.css +4 -0
- package/packages/apps/esm-devtools-app/src/index.ts +15 -0
- package/packages/apps/esm-devtools-app/src/routes.json +17 -0
- package/packages/apps/esm-devtools-app/translations/en.json +19 -0
- package/packages/apps/esm-devtools-app/tsconfig.json +24 -0
- package/packages/apps/esm-devtools-app/vitest.config.ts +9 -0
- package/packages/apps/esm-devtools-app/webpack.config.js +1 -0
- package/packages/apps/esm-help-menu-app/package.json +65 -0
- package/packages/apps/esm-help-menu-app/setup-tests.ts +11 -0
- package/packages/apps/esm-help-menu-app/src/declarations.d.ts +1 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/components/contact-us.component.tsx +22 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/components/docs.component.tsx +22 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/components/release-notes.component.tsx +23 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/components/styles.scss +13 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/help-popup.component.tsx +20 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/help-popup.styles.scss +31 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/help.component.tsx +63 -0
- package/packages/apps/esm-help-menu-app/src/help-menu/help.styles.scss +27 -0
- package/packages/apps/esm-help-menu-app/src/index.ts +17 -0
- package/packages/apps/esm-help-menu-app/src/root.component.tsx +8 -0
- package/packages/apps/esm-help-menu-app/src/routes.json +32 -0
- package/packages/apps/esm-help-menu-app/translations/en.json +6 -0
- package/packages/apps/esm-help-menu-app/tsconfig.json +24 -0
- package/packages/apps/esm-help-menu-app/vitest.config.ts +9 -0
- package/packages/apps/esm-help-menu-app/webpack.config.js +2 -0
- package/packages/apps/esm-implementer-tools-app/README.md +6 -0
- package/packages/apps/esm-implementer-tools-app/__mocks__/react-i18next.js +49 -0
- package/packages/apps/esm-implementer-tools-app/jest.config.js +22 -0
- package/packages/apps/esm-implementer-tools-app/package.json +65 -0
- package/packages/apps/esm-implementer-tools-app/setup-tests.ts +3 -0
- package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/backend-dependencies.component.tsx +88 -0
- package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/backend-dependencies.styles.scss +14 -0
- package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/openmrs-backend-dependencies.test.ts +434 -0
- package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/openmrs-backend-dependencies.ts +221 -0
- package/packages/apps/esm-implementer-tools-app/src/backend-dependencies/useBackendDependencies.ts +16 -0
- package/packages/apps/esm-implementer-tools-app/src/config-edit-button/config-edit-button.component.tsx +20 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/configuration.component.tsx +202 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/configuration.styles.scss +92 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/configuration.test.tsx +394 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-subtree.component.tsx +59 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-tree-for-module.component.tsx +19 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-tree.component.tsx +36 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/config-tree.styles.scss +15 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/description.component.tsx +38 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/description.styles.scss +29 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/display-value.scss +6 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/display-value.tsx +40 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/editable-value.component.tsx +151 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/editable-value.styles.scss +30 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/extension-configure-tree.tsx +23 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/extension-slots-config-tree.tsx +138 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/layout/layout.styles.scss +25 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/layout/subtree.component.tsx +45 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/layout/tree-container.component.tsx +15 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/validators.resource.ts +147 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editor.styles.scss +20 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editor.tsx +88 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/array-editor.styles.scss +25 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/array-editor.tsx +84 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/concept-search.resource.tsx +45 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/concept-search.styles.scss +42 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/concept-search.tsx +87 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/extension-slot-add.tsx +28 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/extension-slot-order.tsx +5 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/extension-slot-remove.tsx +18 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/object-editor.styles.scss +13 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/object-editor.tsx +59 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/patient-identifier-type-search.tsx +82 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/patient-identifier-type.resource.tsx +32 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/person-attribute-search.resource.tsx +13 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/person-attribute-search.tsx +96 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/uuid-search.scss +40 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/interactive-editor/value-editors/value-editor-field.tsx +92 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/json-editor/json-editor.component.tsx +80 -0
- package/packages/apps/esm-implementer-tools-app/src/configuration/json-editor/json-editor.scss +27 -0
- package/packages/apps/esm-implementer-tools-app/src/declarations.d.ts +1 -0
- package/packages/apps/esm-implementer-tools-app/src/feature-flags/feature-flags.component.tsx +99 -0
- package/packages/apps/esm-implementer-tools-app/src/feature-flags/feature-flags.scss +18 -0
- package/packages/apps/esm-implementer-tools-app/src/frontend-modules/frontend-modules.component.tsx +82 -0
- package/packages/apps/esm-implementer-tools-app/src/frontend-modules/frontend-modules.scss +18 -0
- package/packages/apps/esm-implementer-tools-app/src/global-implementer-tools-button.test.tsx +12 -0
- package/packages/apps/esm-implementer-tools-app/src/global-implementer-tools.component.tsx +27 -0
- package/packages/apps/esm-implementer-tools-app/src/hooks.ts +13 -0
- package/packages/apps/esm-implementer-tools-app/src/implementer-tools.button.tsx +26 -0
- package/packages/apps/esm-implementer-tools-app/src/implementer-tools.component.tsx +64 -0
- package/packages/apps/esm-implementer-tools-app/src/implementer-tools.styles.scss +43 -0
- package/packages/apps/esm-implementer-tools-app/src/implementer-tools.test.tsx +9 -0
- package/packages/apps/esm-implementer-tools-app/src/index.ts +20 -0
- package/packages/apps/esm-implementer-tools-app/src/popup/popup.component.tsx +89 -0
- package/packages/apps/esm-implementer-tools-app/src/popup/popup.styles.scss +78 -0
- package/packages/apps/esm-implementer-tools-app/src/routes.json +21 -0
- package/packages/apps/esm-implementer-tools-app/src/store.ts +110 -0
- package/packages/apps/esm-implementer-tools-app/src/types.ts +5 -0
- package/packages/apps/esm-implementer-tools-app/src/ui-editor/extension-overlay.component.tsx +40 -0
- package/packages/apps/esm-implementer-tools-app/src/ui-editor/portal.tsx +5 -0
- package/packages/apps/esm-implementer-tools-app/src/ui-editor/styles.scss +87 -0
- package/packages/apps/esm-implementer-tools-app/src/ui-editor/ui-editor.tsx +201 -0
- package/packages/apps/esm-implementer-tools-app/translations/am.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ar.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ar_SY.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/bn.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/cs.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/de.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/en.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/en_US.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/es.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/es_MX.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/fr.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/he.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/hi.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/hi_IN.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/id.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/it.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ka.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/km.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ku.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ky.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/lg.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ne.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/pl.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/pt.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/pt_BR.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/qu.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ro_RO.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/ru_RU.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/si.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/sq.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/sw.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/sw_KE.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/tr.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/tr_TR.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/uk.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/uz.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/uz@Latn.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/uz_UZ.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/vi.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/zh.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/zh_CN.json +46 -0
- package/packages/apps/esm-implementer-tools-app/translations/zh_TW.json +46 -0
- package/packages/apps/esm-implementer-tools-app/tsconfig.json +27 -0
- package/packages/apps/esm-implementer-tools-app/webpack.config.js +1 -0
- package/packages/apps/esm-login-app/README.md +4 -0
- package/packages/apps/esm-login-app/__mocks__/config.mock.ts +26 -0
- package/packages/apps/esm-login-app/__mocks__/locations.mock.ts +540 -0
- package/packages/apps/esm-login-app/__mocks__/react-i18next.js +49 -0
- package/packages/apps/esm-login-app/assets/medicine.jpg +0 -0
- package/packages/apps/esm-login-app/jest.config.js +20 -0
- package/packages/apps/esm-login-app/package.json +72 -0
- package/packages/apps/esm-login-app/rspack.config.js +1 -0
- package/packages/apps/esm-login-app/src/change-location-link/change-location-link.extension.tsx +32 -0
- package/packages/apps/esm-login-app/src/change-location-link/change-location-link.scss +17 -0
- package/packages/apps/esm-login-app/src/change-location-link/change-location-link.test.tsx +36 -0
- package/packages/apps/esm-login-app/src/change-password/change-password-link.extension.tsx +30 -0
- package/packages/apps/esm-login-app/src/change-password/change-password-link.test.tsx +27 -0
- package/packages/apps/esm-login-app/src/change-password/change-password-modal.scss +11 -0
- package/packages/apps/esm-login-app/src/change-password/change-password.component.tsx +159 -0
- package/packages/apps/esm-login-app/src/change-password/change-password.modal.tsx +175 -0
- package/packages/apps/esm-login-app/src/change-password/change-password.resource.ts +12 -0
- package/packages/apps/esm-login-app/src/change-password/change-password.scss +51 -0
- package/packages/apps/esm-login-app/src/change-password/change-password.test.tsx +53 -0
- package/packages/apps/esm-login-app/src/common/otp/otp.component.tsx +54 -0
- package/packages/apps/esm-login-app/src/common/otp/otp.scss +13 -0
- package/packages/apps/esm-login-app/src/common/resend-timer/resend-timer.component.tsx +51 -0
- package/packages/apps/esm-login-app/src/common/resend-timer/resend-timer.scss +7 -0
- package/packages/apps/esm-login-app/src/config-schema.ts +130 -0
- package/packages/apps/esm-login-app/src/declarations.d.ts +3 -0
- package/packages/apps/esm-login-app/src/footer.component.tsx +60 -0
- package/packages/apps/esm-login-app/src/footer.scss +113 -0
- package/packages/apps/esm-login-app/src/index.ts +27 -0
- package/packages/apps/esm-login-app/src/loading/loading.component.tsx +11 -0
- package/packages/apps/esm-login-app/src/loading/loading.scss +7 -0
- package/packages/apps/esm-login-app/src/location-picker/location-picker-view.component.tsx +174 -0
- package/packages/apps/esm-login-app/src/location-picker/location-picker.resource.ts +111 -0
- package/packages/apps/esm-login-app/src/location-picker/location-picker.scss +94 -0
- package/packages/apps/esm-login-app/src/location-picker/location-picker.test.tsx +341 -0
- package/packages/apps/esm-login-app/src/login/login.component.tsx +273 -0
- package/packages/apps/esm-login-app/src/login/login.scss +167 -0
- package/packages/apps/esm-login-app/src/login/login.test.tsx +288 -0
- package/packages/apps/esm-login-app/src/login.resource.ts +147 -0
- package/packages/apps/esm-login-app/src/logo.component.tsx +23 -0
- package/packages/apps/esm-login-app/src/logout/logout.extension.tsx +23 -0
- package/packages/apps/esm-login-app/src/logout/logout.scss +12 -0
- package/packages/apps/esm-login-app/src/otp/otp.component.tsx +102 -0
- package/packages/apps/esm-login-app/src/otp/otp.scss +46 -0
- package/packages/apps/esm-login-app/src/redirect-logout/logout.resource.ts +15 -0
- package/packages/apps/esm-login-app/src/redirect-logout/redirect-logout.component.tsx +42 -0
- package/packages/apps/esm-login-app/src/redirect-logout/redirect-logout.test.tsx +180 -0
- package/packages/apps/esm-login-app/src/resources/otp.resource.ts +40 -0
- package/packages/apps/esm-login-app/src/root.component.tsx +24 -0
- package/packages/apps/esm-login-app/src/routes.json +63 -0
- package/packages/apps/esm-login-app/src/setupTests.ts +15 -0
- package/packages/apps/esm-login-app/src/test-helpers/render-with-router.tsx +17 -0
- package/packages/apps/esm-login-app/src/types.ts +34 -0
- package/packages/apps/esm-login-app/translations/am.json +41 -0
- package/packages/apps/esm-login-app/translations/ar.json +41 -0
- package/packages/apps/esm-login-app/translations/ar_SY.json +41 -0
- package/packages/apps/esm-login-app/translations/bn.json +41 -0
- package/packages/apps/esm-login-app/translations/cs.json +41 -0
- package/packages/apps/esm-login-app/translations/de.json +41 -0
- package/packages/apps/esm-login-app/translations/en.json +41 -0
- package/packages/apps/esm-login-app/translations/en_US.json +41 -0
- package/packages/apps/esm-login-app/translations/es.json +41 -0
- package/packages/apps/esm-login-app/translations/es_MX.json +41 -0
- package/packages/apps/esm-login-app/translations/fr.json +41 -0
- package/packages/apps/esm-login-app/translations/he.json +41 -0
- package/packages/apps/esm-login-app/translations/hi.json +41 -0
- package/packages/apps/esm-login-app/translations/hi_IN.json +41 -0
- package/packages/apps/esm-login-app/translations/id.json +41 -0
- package/packages/apps/esm-login-app/translations/it.json +41 -0
- package/packages/apps/esm-login-app/translations/ka.json +41 -0
- package/packages/apps/esm-login-app/translations/km.json +41 -0
- package/packages/apps/esm-login-app/translations/ku.json +41 -0
- package/packages/apps/esm-login-app/translations/ky.json +41 -0
- package/packages/apps/esm-login-app/translations/lg.json +41 -0
- package/packages/apps/esm-login-app/translations/ne.json +41 -0
- package/packages/apps/esm-login-app/translations/pl.json +41 -0
- package/packages/apps/esm-login-app/translations/pt.json +41 -0
- package/packages/apps/esm-login-app/translations/pt_BR.json +41 -0
- package/packages/apps/esm-login-app/translations/qu.json +41 -0
- package/packages/apps/esm-login-app/translations/ro_RO.json +41 -0
- package/packages/apps/esm-login-app/translations/ru_RU.json +41 -0
- package/packages/apps/esm-login-app/translations/si.json +41 -0
- package/packages/apps/esm-login-app/translations/sq.json +41 -0
- package/packages/apps/esm-login-app/translations/sw.json +41 -0
- package/packages/apps/esm-login-app/translations/sw_KE.json +41 -0
- package/packages/apps/esm-login-app/translations/tr.json +41 -0
- package/packages/apps/esm-login-app/translations/tr_TR.json +41 -0
- package/packages/apps/esm-login-app/translations/uk.json +41 -0
- package/packages/apps/esm-login-app/translations/uz.json +41 -0
- package/packages/apps/esm-login-app/translations/uz@Latn.json +41 -0
- package/packages/apps/esm-login-app/translations/uz_UZ.json +41 -0
- package/packages/apps/esm-login-app/translations/vi.json +41 -0
- package/packages/apps/esm-login-app/translations/zh.json +41 -0
- package/packages/apps/esm-login-app/translations/zh_CN.json +41 -0
- package/packages/apps/esm-login-app/translations/zh_TW.json +41 -0
- package/packages/apps/esm-login-app/tsconfig.json +25 -0
- package/packages/apps/esm-offline-tools-app/README.md +3 -0
- package/packages/apps/esm-offline-tools-app/jest.config.js +16 -0
- package/packages/apps/esm-offline-tools-app/package.json +67 -0
- package/packages/apps/esm-offline-tools-app/src/assets/success-notification.svg +8 -0
- package/packages/apps/esm-offline-tools-app/src/components/confirmation.modal.tsx +54 -0
- package/packages/apps/esm-offline-tools-app/src/components/headered-quick-info.component.tsx +20 -0
- package/packages/apps/esm-offline-tools-app/src/components/headered-quick-info.styles.scss +11 -0
- package/packages/apps/esm-offline-tools-app/src/components/overview-card.component.tsx +38 -0
- package/packages/apps/esm-offline-tools-app/src/components/overview-card.styles.scss +33 -0
- package/packages/apps/esm-offline-tools-app/src/components/shared-page-layout.component.tsx +23 -0
- package/packages/apps/esm-offline-tools-app/src/components/shared-page-layout.styles.scss +22 -0
- package/packages/apps/esm-offline-tools-app/src/constants.ts +14 -0
- package/packages/apps/esm-offline-tools-app/src/createDashboardLink.tsx +55 -0
- package/packages/apps/esm-offline-tools-app/src/dashboard.meta.ts +6 -0
- package/packages/apps/esm-offline-tools-app/src/declarations.d.ts +2 -0
- package/packages/apps/esm-offline-tools-app/src/home/cards-container.component.tsx +14 -0
- package/packages/apps/esm-offline-tools-app/src/home/cards-container.styles.scss +14 -0
- package/packages/apps/esm-offline-tools-app/src/home/home.component.tsx +30 -0
- package/packages/apps/esm-offline-tools-app/src/home/home.styles.scss +7 -0
- package/packages/apps/esm-offline-tools-app/src/hooks/offline-actions.ts +16 -0
- package/packages/apps/esm-offline-tools-app/src/hooks/offline-patient-data-hooks.ts +106 -0
- package/packages/apps/esm-offline-tools-app/src/index.ts +113 -0
- package/packages/apps/esm-offline-tools-app/src/nav/desktop-side-nav.component.tsx +23 -0
- package/packages/apps/esm-offline-tools-app/src/nav/desktop-side-nav.styles.scss +38 -0
- package/packages/apps/esm-offline-tools-app/src/nav/offline-tools-nav-link.component.tsx +24 -0
- package/packages/apps/esm-offline-tools-app/src/nav/offline-tools-nav-menu.component.tsx +16 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/no-actions-empty-state.component.tsx +31 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/no-actions-empty-state.styles.scss +30 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-mode-button.extension.tsx +36 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-mode-button.scss +27 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-overview-card.component.tsx +31 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-page.component.tsx +53 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-page.styles.scss +14 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-patient-chart-widget.component.tsx +36 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-patient-chart-widget.styles.scss +46 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-table.component.tsx +255 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions-table.styles.scss +39 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/offline-actions.component.tsx +75 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/synchronizing-notification.styles.scss +9 -0
- package/packages/apps/esm-offline-tools-app/src/offline-actions/synchronizing-notification.tsx +85 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/empty-data-illustration.component.tsx +39 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/empty-state.component.tsx +33 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/empty-state.scss +56 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/last-updated-table-cell.component.tsx +90 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/last-updated-table-cell.scss +16 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-sync-details.component.tsx +71 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-sync-details.styles.scss +57 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-table.component.tsx +315 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patient-table.scss +63 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patients.component.tsx +35 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/offline-patients.styles.scss +6 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/overview-offline-patient-table.component.tsx +8 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/patient-name-table-cell.component.tsx +32 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/patient-name-table-cell.scss +8 -0
- package/packages/apps/esm-offline-tools-app/src/offline-patients/patients-overview-card.component.tsx +28 -0
- package/packages/apps/esm-offline-tools-app/src/offline-tools-app-menu-link.component.tsx +12 -0
- package/packages/apps/esm-offline-tools-app/src/offline-tools-page/offline-tools-page.component.tsx +31 -0
- package/packages/apps/esm-offline-tools-app/src/offline.ts +32 -0
- package/packages/apps/esm-offline-tools-app/src/root.component.tsx +25 -0
- package/packages/apps/esm-offline-tools-app/src/root.styles.scss +5 -0
- package/packages/apps/esm-offline-tools-app/src/routes.json +144 -0
- package/packages/apps/esm-offline-tools-app/src/setup-tests.js +5 -0
- package/packages/apps/esm-offline-tools-app/src/types/index.ts +4 -0
- package/packages/apps/esm-offline-tools-app/translations/am.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ar.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ar_SY.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/bn.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/cs.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/de.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/en.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/en_US.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/es.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/es_MX.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/fr.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/he.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/hi.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/hi_IN.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/id.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/it.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ka.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/km.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ku.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ky.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/lg.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ne.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/pl.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/pt.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/pt_BR.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/qu.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ro_RO.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/ru_RU.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/si.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/sq.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/sw.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/sw_KE.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/tr.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/tr_TR.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/uk.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/uz.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/uz@Latn.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/uz_UZ.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/vi.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/zh.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/zh_CN.json +57 -0
- package/packages/apps/esm-offline-tools-app/translations/zh_TW.json +57 -0
- package/packages/apps/esm-offline-tools-app/tsconfig.json +25 -0
- package/packages/apps/esm-offline-tools-app/webpack.config.js +1 -0
- package/packages/apps/esm-primary-navigation-app/README.md +3 -0
- package/packages/apps/esm-primary-navigation-app/__mocks__/mock-session.ts +23 -0
- package/packages/apps/esm-primary-navigation-app/__mocks__/mock-user.ts +23 -0
- package/packages/apps/esm-primary-navigation-app/__mocks__/openmrs-esm-framework.mock.tsx +30 -0
- package/packages/apps/esm-primary-navigation-app/__mocks__/react-i18next.mock.js +49 -0
- package/packages/apps/esm-primary-navigation-app/jest.config.js +18 -0
- package/packages/apps/esm-primary-navigation-app/package.json +66 -0
- package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language-link.extension.tsx +37 -0
- package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language-link.scss +14 -0
- package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.modal.tsx +115 -0
- package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.resource.ts +35 -0
- package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.scss +43 -0
- package/packages/apps/esm-primary-navigation-app/src/components/change-language/change-language.test.tsx +107 -0
- package/packages/apps/esm-primary-navigation-app/src/components/dashboard/dashboard.component.tsx +96 -0
- package/packages/apps/esm-primary-navigation-app/src/components/generic-link/generic-link.component.tsx +25 -0
- package/packages/apps/esm-primary-navigation-app/src/components/logo/logo.component.tsx +28 -0
- package/packages/apps/esm-primary-navigation-app/src/components/logo/logo.scss +11 -0
- package/packages/apps/esm-primary-navigation-app/src/components/logo/logo.test.tsx +79 -0
- package/packages/apps/esm-primary-navigation-app/src/components/nav-group/nav-group.component.tsx +52 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar/app-menu-button.component.tsx +43 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar/navbar.component.tsx +123 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar/navbar.scss +51 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar/types.ts +5 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar/user-menu-button.component.tsx +44 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/app-menu-panel.component.tsx +48 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/app-menu-panel.scss +43 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/notifications-menu-panel.component.tsx +23 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/notifications-menu-panel.test.tsx +9 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/notifications-menu.panel.scss +9 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/side-menu-panel.component.tsx +37 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/user-menu-panel.component.tsx +32 -0
- package/packages/apps/esm-primary-navigation-app/src/components/navbar-header-panels/user-menu-panel.scss +65 -0
- package/packages/apps/esm-primary-navigation-app/src/components/user-panel-switcher-item/user-panel-switcher.component.tsx +15 -0
- package/packages/apps/esm-primary-navigation-app/src/components/user-panel-switcher-item/user-panel-switcher.test.tsx +22 -0
- package/packages/apps/esm-primary-navigation-app/src/config-schema.ts +56 -0
- package/packages/apps/esm-primary-navigation-app/src/constants.ts +2 -0
- package/packages/apps/esm-primary-navigation-app/src/declarations.d.ts +1 -0
- package/packages/apps/esm-primary-navigation-app/src/index.ts +68 -0
- package/packages/apps/esm-primary-navigation-app/src/root.component.test.tsx +57 -0
- package/packages/apps/esm-primary-navigation-app/src/root.component.tsx +25 -0
- package/packages/apps/esm-primary-navigation-app/src/root.resource.tsx +13 -0
- package/packages/apps/esm-primary-navigation-app/src/root.scss +5 -0
- package/packages/apps/esm-primary-navigation-app/src/routes.json +78 -0
- package/packages/apps/esm-primary-navigation-app/src/setupTests.ts +7 -0
- package/packages/apps/esm-primary-navigation-app/src/utils.ts +3 -0
- package/packages/apps/esm-primary-navigation-app/translations/am.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ar.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ar_SY.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/bn.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/cs.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/de.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/en.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/en_US.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/es.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/es_MX.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/fr.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/he.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/hi.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/hi_IN.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/id.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/it.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ka.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/km.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ku.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ky.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/lg.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ne.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/pl.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/pt.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/pt_BR.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/qu.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ro_RO.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/ru_RU.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/si.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/sq.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/sw.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/sw_KE.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/tr.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/tr_TR.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/uk.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/uz.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/uz@Latn.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/uz_UZ.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/vi.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/zh.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/zh_CN.json +14 -0
- package/packages/apps/esm-primary-navigation-app/translations/zh_TW.json +14 -0
- package/packages/apps/esm-primary-navigation-app/tsconfig.json +24 -0
- package/packages/apps/esm-primary-navigation-app/webpack.config.js +1 -0
- package/packages/framework/esm-api/.swcrc +16 -0
- package/packages/framework/esm-api/README.md +6 -0
- package/packages/framework/esm-api/__mocks__/openmrs-esm-config.mock.ts +3 -0
- package/packages/framework/esm-api/__mocks__/openmrs-esm-error-handling.mock.ts +2 -0
- package/packages/framework/esm-api/__mocks__/openmrs-esm-navigation.mock.ts +5 -0
- package/packages/framework/esm-api/__mocks__/single-spa.mock.ts +1 -0
- package/packages/framework/esm-api/mock-jest.ts +22 -0
- package/packages/framework/esm-api/mock.ts +23 -0
- package/packages/framework/esm-api/package.json +79 -0
- package/packages/framework/esm-api/setup-tests.ts +3 -0
- package/packages/framework/esm-api/src/config-schema.ts +50 -0
- package/packages/framework/esm-api/src/current-user.test.ts +747 -0
- package/packages/framework/esm-api/src/current-user.ts +288 -0
- package/packages/framework/esm-api/src/environment.ts +5 -0
- package/packages/framework/esm-api/src/index.ts +6 -0
- package/packages/framework/esm-api/src/openmrs-backend-dependencies.ts +4 -0
- package/packages/framework/esm-api/src/openmrs-fetch.test.ts +293 -0
- package/packages/framework/esm-api/src/openmrs-fetch.ts +339 -0
- package/packages/framework/esm-api/src/public.ts +19 -0
- package/packages/framework/esm-api/src/setup.ts +12 -0
- package/packages/framework/esm-api/src/types/concept-resource.ts +38 -0
- package/packages/framework/esm-api/src/types/fetch.ts +9 -0
- package/packages/framework/esm-api/src/types/index.ts +5 -0
- package/packages/framework/esm-api/src/types/openmrs-resource.ts +39 -0
- package/packages/framework/esm-api/src/types/person-resource.ts +69 -0
- package/packages/framework/esm-api/src/types/user-resource.ts +72 -0
- package/packages/framework/esm-api/tsconfig.build.json +9 -0
- package/packages/framework/esm-api/tsconfig.json +8 -0
- package/packages/framework/esm-api/vitest.config.ts +9 -0
- package/packages/framework/esm-config/.swcrc +16 -0
- package/packages/framework/esm-config/README.md +16 -0
- package/packages/framework/esm-config/__mocks__/openmrs-esm-context.mock.tsx +3 -0
- package/packages/framework/esm-config/__mocks__/openmrs-esm-globals.mock.tsx +1 -0
- package/packages/framework/esm-config/mock-jest.ts +37 -0
- package/packages/framework/esm-config/mock.ts +35 -0
- package/packages/framework/esm-config/package.json +79 -0
- package/packages/framework/esm-config/src/index.ts +5 -0
- package/packages/framework/esm-config/src/module-config/module-config.test.ts +1449 -0
- package/packages/framework/esm-config/src/module-config/module-config.ts +941 -0
- package/packages/framework/esm-config/src/module-config/state.ts +258 -0
- package/packages/framework/esm-config/src/public.ts +5 -0
- package/packages/framework/esm-config/src/setup-tests.js +14 -0
- package/packages/framework/esm-config/src/types.ts +69 -0
- package/packages/framework/esm-config/src/validators/type-validators.test.ts +111 -0
- package/packages/framework/esm-config/src/validators/type-validators.ts +19 -0
- package/packages/framework/esm-config/src/validators/validator.ts +38 -0
- package/packages/framework/esm-config/src/validators/validators.test.ts +35 -0
- package/packages/framework/esm-config/src/validators/validators.ts +70 -0
- package/packages/framework/esm-config/tsconfig.build.json +9 -0
- package/packages/framework/esm-config/tsconfig.json +5 -0
- package/packages/framework/esm-config/vitest.config.ts +8 -0
- package/packages/framework/esm-context/.swcrc +16 -0
- package/packages/framework/esm-context/README.md +3 -0
- package/packages/framework/esm-context/mock.ts +24 -0
- package/packages/framework/esm-context/package.json +63 -0
- package/packages/framework/esm-context/src/context.ts +129 -0
- package/packages/framework/esm-context/src/index.ts +1 -0
- package/packages/framework/esm-context/src/public.ts +1 -0
- package/packages/framework/esm-context/tsconfig.build.json +9 -0
- package/packages/framework/esm-context/tsconfig.json +5 -0
- package/packages/framework/esm-dynamic-loading/.swcrc +16 -0
- package/packages/framework/esm-dynamic-loading/README.md +4 -0
- package/packages/framework/esm-dynamic-loading/package.json +66 -0
- package/packages/framework/esm-dynamic-loading/src/dynamic-loading.ts +296 -0
- package/packages/framework/esm-dynamic-loading/src/index.ts +1 -0
- package/packages/framework/esm-dynamic-loading/src/public.ts +1 -0
- package/packages/framework/esm-dynamic-loading/tsconfig.build.json +9 -0
- package/packages/framework/esm-dynamic-loading/tsconfig.json +5 -0
- package/packages/framework/esm-emr-api/.swcrc +16 -0
- package/packages/framework/esm-emr-api/README.md +7 -0
- package/packages/framework/esm-emr-api/mock-jest.ts +10 -0
- package/packages/framework/esm-emr-api/mock.ts +12 -0
- package/packages/framework/esm-emr-api/package.json +78 -0
- package/packages/framework/esm-emr-api/src/attachments.ts +43 -0
- package/packages/framework/esm-emr-api/src/current-patient.test.ts +53 -0
- package/packages/framework/esm-emr-api/src/current-patient.ts +58 -0
- package/packages/framework/esm-emr-api/src/events/events.test.ts +136 -0
- package/packages/framework/esm-emr-api/src/events/index.ts +45 -0
- package/packages/framework/esm-emr-api/src/events/types.ts +55 -0
- package/packages/framework/esm-emr-api/src/index.ts +7 -0
- package/packages/framework/esm-emr-api/src/location.ts +36 -0
- package/packages/framework/esm-emr-api/src/public.ts +7 -0
- package/packages/framework/esm-emr-api/src/types/attachments-types.ts +28 -0
- package/packages/framework/esm-emr-api/src/types/diagnosis-resource.ts +24 -0
- package/packages/framework/esm-emr-api/src/types/drug-resource.ts +9 -0
- package/packages/framework/esm-emr-api/src/types/encounter-resource.ts +36 -0
- package/packages/framework/esm-emr-api/src/types/fhir-resource.ts +32 -0
- package/packages/framework/esm-emr-api/src/types/fhir.ts +102 -0
- package/packages/framework/esm-emr-api/src/types/index.ts +11 -0
- package/packages/framework/esm-emr-api/src/types/location-resource.ts +49 -0
- package/packages/framework/esm-emr-api/src/types/obs-resource.ts +23 -0
- package/packages/framework/esm-emr-api/src/types/order-resource.ts +79 -0
- package/packages/framework/esm-emr-api/src/types/patient-resource.ts +27 -0
- package/packages/framework/esm-emr-api/src/types/visit-resource.ts +43 -0
- package/packages/framework/esm-emr-api/src/visit-type.ts +24 -0
- package/packages/framework/esm-emr-api/src/visit-utils.ts +127 -0
- package/packages/framework/esm-emr-api/tsconfig.build.json +9 -0
- package/packages/framework/esm-emr-api/tsconfig.json +5 -0
- package/packages/framework/esm-emr-api/vitest.config.ts +8 -0
- package/packages/framework/esm-error-handling/.swcrc +16 -0
- package/packages/framework/esm-error-handling/README.md +4 -0
- package/packages/framework/esm-error-handling/__mocks__/openmrs-esm-globals.mock.tsx +1 -0
- package/packages/framework/esm-error-handling/package.json +60 -0
- package/packages/framework/esm-error-handling/src/index.ts +58 -0
- package/packages/framework/esm-error-handling/src/openmrs-esm-error-handling.test.ts +28 -0
- package/packages/framework/esm-error-handling/tsconfig.build.json +9 -0
- package/packages/framework/esm-error-handling/tsconfig.json +5 -0
- package/packages/framework/esm-error-handling/vitest.config.ts +8 -0
- package/packages/framework/esm-expression-evaluator/.swcrc +16 -0
- package/packages/framework/esm-expression-evaluator/README.md +3 -0
- package/packages/framework/esm-expression-evaluator/package.json +72 -0
- package/packages/framework/esm-expression-evaluator/src/evaluator.test.ts +226 -0
- package/packages/framework/esm-expression-evaluator/src/evaluator.ts +750 -0
- package/packages/framework/esm-expression-evaluator/src/extractor.test.ts +69 -0
- package/packages/framework/esm-expression-evaluator/src/extractor.ts +194 -0
- package/packages/framework/esm-expression-evaluator/src/globals.ts +34 -0
- package/packages/framework/esm-expression-evaluator/src/index.ts +2 -0
- package/packages/framework/esm-expression-evaluator/src/public.ts +14 -0
- package/packages/framework/esm-expression-evaluator/tsconfig.build.json +9 -0
- package/packages/framework/esm-expression-evaluator/tsconfig.json +5 -0
- package/packages/framework/esm-expression-evaluator/vitest.config.ts +7 -0
- package/packages/framework/esm-extensions/.swcrc +16 -0
- package/packages/framework/esm-extensions/README.md +4 -0
- package/packages/framework/esm-extensions/__mocks__/openmrs-esm-config.mock.tsx +1 -0
- package/packages/framework/esm-extensions/mock-jest.ts +31 -0
- package/packages/framework/esm-extensions/mock.ts +33 -0
- package/packages/framework/esm-extensions/package.json +84 -0
- package/packages/framework/esm-extensions/src/extensions.test.ts +483 -0
- package/packages/framework/esm-extensions/src/extensions.ts +551 -0
- package/packages/framework/esm-extensions/src/helpers.ts +9 -0
- package/packages/framework/esm-extensions/src/index.ts +9 -0
- package/packages/framework/esm-extensions/src/left-nav.ts +53 -0
- package/packages/framework/esm-extensions/src/modals.ts +48 -0
- package/packages/framework/esm-extensions/src/public.ts +22 -0
- package/packages/framework/esm-extensions/src/render.ts +82 -0
- package/packages/framework/esm-extensions/src/store.ts +164 -0
- package/packages/framework/esm-extensions/src/types.ts +11 -0
- package/packages/framework/esm-extensions/src/workspaces.ts +177 -0
- package/packages/framework/esm-extensions/src/workspaces2.ts +157 -0
- package/packages/framework/esm-extensions/tsconfig.build.json +9 -0
- package/packages/framework/esm-extensions/tsconfig.json +5 -0
- package/packages/framework/esm-extensions/vitest.config.ts +8 -0
- package/packages/framework/esm-feature-flags/.swcrc +16 -0
- package/packages/framework/esm-feature-flags/README.md +16 -0
- package/packages/framework/esm-feature-flags/package.json +61 -0
- package/packages/framework/esm-feature-flags/src/feature-flags.ts +109 -0
- package/packages/framework/esm-feature-flags/src/index.ts +1 -0
- package/packages/framework/esm-feature-flags/src/public.ts +1 -0
- package/packages/framework/esm-feature-flags/tsconfig.build.json +9 -0
- package/packages/framework/esm-feature-flags/tsconfig.json +5 -0
- package/packages/framework/esm-framework/README.md +5 -0
- package/packages/framework/esm-framework/__mocks__/fileMock.js +1 -0
- package/packages/framework/esm-framework/docs/API.md +290 -0
- package/packages/framework/esm-framework/docs/classes/OpenmrsFetchError.md +191 -0
- package/packages/framework/esm-framework/docs/enumerations/Type.md +77 -0
- package/packages/framework/esm-framework/docs/enumerations/VisitMode.md +29 -0
- package/packages/framework/esm-framework/docs/enumerations/VisitStatus.md +21 -0
- package/packages/framework/esm-framework/docs/functions/CardHeader.md +19 -0
- package/packages/framework/esm-framework/docs/functions/ConfigurableLink.md +19 -0
- package/packages/framework/esm-framework/docs/functions/CustomOverflowMenu.md +17 -0
- package/packages/framework/esm-framework/docs/functions/DashboardExtension.md +17 -0
- package/packages/framework/esm-framework/docs/functions/EmptyCardIllustration.md +23 -0
- package/packages/framework/esm-framework/docs/functions/ExtensionSlot.md +46 -0
- package/packages/framework/esm-framework/docs/functions/OpenmrsAppContext.md +36 -0
- package/packages/framework/esm-framework/docs/functions/PatientBannerActionsMenu.md +17 -0
- package/packages/framework/esm-framework/docs/functions/PatientBannerContactDetails.md +17 -0
- package/packages/framework/esm-framework/docs/functions/PatientBannerPatientIdentifiers.md +17 -0
- package/packages/framework/esm-framework/docs/functions/PatientBannerPatientInfo.md +17 -0
- package/packages/framework/esm-framework/docs/functions/PatientBannerToggleContactDetailsButton.md +17 -0
- package/packages/framework/esm-framework/docs/functions/PatientPhoto.md +19 -0
- package/packages/framework/esm-framework/docs/functions/WorkspaceContainer.md +55 -0
- package/packages/framework/esm-framework/docs/functions/age.md +32 -0
- package/packages/framework/esm-framework/docs/functions/attach.md +40 -0
- package/packages/framework/esm-framework/docs/functions/beginEditSynchronizationItem.md +22 -0
- package/packages/framework/esm-framework/docs/functions/canAccessStorage.md +25 -0
- package/packages/framework/esm-framework/docs/functions/canBeginEditSynchronizationItemsOfType.md +22 -0
- package/packages/framework/esm-framework/docs/functions/clearCurrentUser.md +11 -0
- package/packages/framework/esm-framework/docs/functions/closeWorkspace.md +27 -0
- package/packages/framework/esm-framework/docs/functions/closeWorkspaceGroup2.md +29 -0
- package/packages/framework/esm-framework/docs/functions/compile.md +30 -0
- package/packages/framework/esm-framework/docs/functions/convertToLocaleCalendar.md +25 -0
- package/packages/framework/esm-framework/docs/functions/createAttachment.md +21 -0
- package/packages/framework/esm-framework/docs/functions/createDashboard.md +29 -0
- package/packages/framework/esm-framework/docs/functions/createErrorHandler.md +21 -0
- package/packages/framework/esm-framework/docs/functions/createGlobalStore.md +36 -0
- package/packages/framework/esm-framework/docs/functions/createUseStore.md +66 -0
- package/packages/framework/esm-framework/docs/functions/defineConfigSchema.md +33 -0
- package/packages/framework/esm-framework/docs/functions/defineExtensionConfigSchema.md +38 -0
- package/packages/framework/esm-framework/docs/functions/deleteAttachmentPermanently.md +21 -0
- package/packages/framework/esm-framework/docs/functions/deleteSynchronizationItem.md +21 -0
- package/packages/framework/esm-framework/docs/functions/detach.md +25 -0
- package/packages/framework/esm-framework/docs/functions/detachAll.md +21 -0
- package/packages/framework/esm-framework/docs/functions/dispatchNotificationShown.md +17 -0
- package/packages/framework/esm-framework/docs/functions/dispatchPrecacheStaticDependencies.md +17 -0
- package/packages/framework/esm-framework/docs/functions/displayName.md +21 -0
- package/packages/framework/esm-framework/docs/functions/evaluate.md +84 -0
- package/packages/framework/esm-framework/docs/functions/evaluateAsBoolean.md +31 -0
- package/packages/framework/esm-framework/docs/functions/evaluateAsBooleanAsync.md +31 -0
- package/packages/framework/esm-framework/docs/functions/evaluateAsNumber.md +31 -0
- package/packages/framework/esm-framework/docs/functions/evaluateAsNumberAsync.md +31 -0
- package/packages/framework/esm-framework/docs/functions/evaluateAsType.md +46 -0
- package/packages/framework/esm-framework/docs/functions/evaluateAsTypeAsync.md +46 -0
- package/packages/framework/esm-framework/docs/functions/evaluateAsync.md +87 -0
- package/packages/framework/esm-framework/docs/functions/extractVariableNames.md +50 -0
- package/packages/framework/esm-framework/docs/functions/fetchCurrentPatient.md +25 -0
- package/packages/framework/esm-framework/docs/functions/filterBreadcrumbs.md +21 -0
- package/packages/framework/esm-framework/docs/functions/formatDate.md +39 -0
- package/packages/framework/esm-framework/docs/functions/formatDatetime.md +29 -0
- package/packages/framework/esm-framework/docs/functions/formatDuration.md +29 -0
- package/packages/framework/esm-framework/docs/functions/formatPartialDate.md +39 -0
- package/packages/framework/esm-framework/docs/functions/formatPatientName.md +23 -0
- package/packages/framework/esm-framework/docs/functions/formatTime.md +20 -0
- package/packages/framework/esm-framework/docs/functions/formattedName.md +21 -0
- package/packages/framework/esm-framework/docs/functions/generateOfflineUuid.md +13 -0
- package/packages/framework/esm-framework/docs/functions/getAssignedExtensions.md +23 -0
- package/packages/framework/esm-framework/docs/functions/getAsyncLifecycle.md +31 -0
- package/packages/framework/esm-framework/docs/functions/getAttachmentByUuid.md +21 -0
- package/packages/framework/esm-framework/docs/functions/getAttachments.md +25 -0
- package/packages/framework/esm-framework/docs/functions/getBreadcrumbs.md +11 -0
- package/packages/framework/esm-framework/docs/functions/getBreadcrumbsFor.md +17 -0
- package/packages/framework/esm-framework/docs/functions/getConfig.md +31 -0
- package/packages/framework/esm-framework/docs/functions/getContext.md +29 -0
- package/packages/framework/esm-framework/docs/functions/getCoreTranslation.md +35 -0
- package/packages/framework/esm-framework/docs/functions/getCurrentOfflineMode.md +11 -0
- package/packages/framework/esm-framework/docs/functions/getCurrentUser.md +154 -0
- package/packages/framework/esm-framework/docs/functions/getDefaultCalendar.md +21 -0
- package/packages/framework/esm-framework/docs/functions/getDefaultsFromConfigSchema.md +32 -0
- package/packages/framework/esm-framework/docs/functions/getDynamicOfflineDataEntries.md +28 -0
- package/packages/framework/esm-framework/docs/functions/getDynamicOfflineDataEntriesFor.md +34 -0
- package/packages/framework/esm-framework/docs/functions/getDynamicOfflineDataHandlers.md +13 -0
- package/packages/framework/esm-framework/docs/functions/getExtensionNameFromId.md +30 -0
- package/packages/framework/esm-framework/docs/functions/getExtensionStore.md +14 -0
- package/packages/framework/esm-framework/docs/functions/getFeatureFlag.md +21 -0
- package/packages/framework/esm-framework/docs/functions/getFhirServerPaginationHandlers.md +17 -0
- package/packages/framework/esm-framework/docs/functions/getFullSynchronizationItems.md +27 -0
- package/packages/framework/esm-framework/docs/functions/getFullSynchronizationItemsFor.md +33 -0
- package/packages/framework/esm-framework/docs/functions/getGlobalStore.md +36 -0
- package/packages/framework/esm-framework/docs/functions/getHistory.md +13 -0
- package/packages/framework/esm-framework/docs/functions/getLifecycle.md +27 -0
- package/packages/framework/esm-framework/docs/functions/getLocale.md +15 -0
- package/packages/framework/esm-framework/docs/functions/getLocations.md +21 -0
- package/packages/framework/esm-framework/docs/functions/getLoggedInUser.md +11 -0
- package/packages/framework/esm-framework/docs/functions/getOfflinePatientDataStore.md +15 -0
- package/packages/framework/esm-framework/docs/functions/getPatientName.md +26 -0
- package/packages/framework/esm-framework/docs/functions/getRegisteredWorkspace2Names.md +13 -0
- package/packages/framework/esm-framework/docs/functions/getSessionLocation.md +11 -0
- package/packages/framework/esm-framework/docs/functions/getSessionStore.md +11 -0
- package/packages/framework/esm-framework/docs/functions/getSyncLifecycle.md +31 -0
- package/packages/framework/esm-framework/docs/functions/getSynchronizationItem.md +27 -0
- package/packages/framework/esm-framework/docs/functions/getSynchronizationItems.md +27 -0
- package/packages/framework/esm-framework/docs/functions/getVisitStore.md +11 -0
- package/packages/framework/esm-framework/docs/functions/getVisitTypes.md +11 -0
- package/packages/framework/esm-framework/docs/functions/getVisitsForPatient.md +29 -0
- package/packages/framework/esm-framework/docs/functions/goBackInHistory.md +25 -0
- package/packages/framework/esm-framework/docs/functions/importDynamic.md +58 -0
- package/packages/framework/esm-framework/docs/functions/inRange.md +27 -0
- package/packages/framework/esm-framework/docs/functions/interpolateString.md +34 -0
- package/packages/framework/esm-framework/docs/functions/interpolateUrl.md +48 -0
- package/packages/framework/esm-framework/docs/functions/isDesktop.md +17 -0
- package/packages/framework/esm-framework/docs/functions/isDevEnabled.md +11 -0
- package/packages/framework/esm-framework/docs/functions/isOfflineUuid.md +19 -0
- package/packages/framework/esm-framework/docs/functions/isOmrsDateStrict.md +20 -0
- package/packages/framework/esm-framework/docs/functions/isOmrsDateToday.md +19 -0
- package/packages/framework/esm-framework/docs/functions/isOnline.md +17 -0
- package/packages/framework/esm-framework/docs/functions/isUrlWithTemplateParameters.md +22 -0
- package/packages/framework/esm-framework/docs/functions/isVersionSatisfied.md +21 -0
- package/packages/framework/esm-framework/docs/functions/launchWorkspace.md +56 -0
- package/packages/framework/esm-framework/docs/functions/launchWorkspace2.md +79 -0
- package/packages/framework/esm-framework/docs/functions/launchWorkspaceGroup.md +38 -0
- package/packages/framework/esm-framework/docs/functions/launchWorkspaceGroup2.md +40 -0
- package/packages/framework/esm-framework/docs/functions/makeUrl.md +26 -0
- package/packages/framework/esm-framework/docs/functions/messageOmrsServiceWorker.md +23 -0
- package/packages/framework/esm-framework/docs/functions/navigate.md +48 -0
- package/packages/framework/esm-framework/docs/functions/navigateAndLaunchWorkspace.md +33 -0
- package/packages/framework/esm-framework/docs/functions/oneOf.md +21 -0
- package/packages/framework/esm-framework/docs/functions/openmrsFetch.md +75 -0
- package/packages/framework/esm-framework/docs/functions/openmrsObservableFetch.md +55 -0
- package/packages/framework/esm-framework/docs/functions/parseDate.md +20 -0
- package/packages/framework/esm-framework/docs/functions/provide.md +21 -0
- package/packages/framework/esm-framework/docs/functions/putDynamicOfflineData.md +28 -0
- package/packages/framework/esm-framework/docs/functions/putDynamicOfflineDataFor.md +34 -0
- package/packages/framework/esm-framework/docs/functions/queueSynchronizationItem.md +39 -0
- package/packages/framework/esm-framework/docs/functions/refetchCurrentUser.md +33 -0
- package/packages/framework/esm-framework/docs/functions/registerBreadcrumb.md +17 -0
- package/packages/framework/esm-framework/docs/functions/registerBreadcrumbs.md +17 -0
- package/packages/framework/esm-framework/docs/functions/registerContext.md +34 -0
- package/packages/framework/esm-framework/docs/functions/registerDefaultCalendar.md +33 -0
- package/packages/framework/esm-framework/docs/functions/registerFeatureFlag.md +36 -0
- package/packages/framework/esm-framework/docs/functions/registerOfflinePatientHandler.md +25 -0
- package/packages/framework/esm-framework/docs/functions/removeDynamicOfflineData.md +28 -0
- package/packages/framework/esm-framework/docs/functions/removeDynamicOfflineDataFor.md +34 -0
- package/packages/framework/esm-framework/docs/functions/renderExtension.md +41 -0
- package/packages/framework/esm-framework/docs/functions/reportError.md +17 -0
- package/packages/framework/esm-framework/docs/functions/retry.md +44 -0
- package/packages/framework/esm-framework/docs/functions/saveVisit.md +21 -0
- package/packages/framework/esm-framework/docs/functions/selectPreferredName.md +46 -0
- package/packages/framework/esm-framework/docs/functions/setCurrentVisit.md +21 -0
- package/packages/framework/esm-framework/docs/functions/setLeftNav.md +23 -0
- package/packages/framework/esm-framework/docs/functions/setSessionLocation.md +21 -0
- package/packages/framework/esm-framework/docs/functions/setUserLanguage.md +17 -0
- package/packages/framework/esm-framework/docs/functions/setUserProperties.md +23 -0
- package/packages/framework/esm-framework/docs/functions/setupDynamicOfflineDataHandler.md +22 -0
- package/packages/framework/esm-framework/docs/functions/setupOfflineSync.md +49 -0
- package/packages/framework/esm-framework/docs/functions/shallowEqual.md +32 -0
- package/packages/framework/esm-framework/docs/functions/showActionableNotification.md +21 -0
- package/packages/framework/esm-framework/docs/functions/showModal.md +44 -0
- package/packages/framework/esm-framework/docs/functions/showNotification.md +21 -0
- package/packages/framework/esm-framework/docs/functions/showSnackbar.md +21 -0
- package/packages/framework/esm-framework/docs/functions/showToast.md +21 -0
- package/packages/framework/esm-framework/docs/functions/subscribeActionableNotificationShown.md +21 -0
- package/packages/framework/esm-framework/docs/functions/subscribeConnectivity.md +21 -0
- package/packages/framework/esm-framework/docs/functions/subscribeConnectivityChanged.md +21 -0
- package/packages/framework/esm-framework/docs/functions/subscribeNotificationShown.md +21 -0
- package/packages/framework/esm-framework/docs/functions/subscribeOpenmrsEvent.md +55 -0
- package/packages/framework/esm-framework/docs/functions/subscribePrecacheStaticDependencies.md +21 -0
- package/packages/framework/esm-framework/docs/functions/subscribeSnackbarShown.md +21 -0
- package/packages/framework/esm-framework/docs/functions/subscribeTo.md +75 -0
- package/packages/framework/esm-framework/docs/functions/subscribeToContext.md +39 -0
- package/packages/framework/esm-framework/docs/functions/subscribeToastShown.md +21 -0
- package/packages/framework/esm-framework/docs/functions/syncAllDynamicOfflineData.md +27 -0
- package/packages/framework/esm-framework/docs/functions/syncDynamicOfflineData.md +33 -0
- package/packages/framework/esm-framework/docs/functions/syncOfflinePatientData.md +21 -0
- package/packages/framework/esm-framework/docs/functions/toDateObjectStrict.md +20 -0
- package/packages/framework/esm-framework/docs/functions/toLocationObject.md +17 -0
- package/packages/framework/esm-framework/docs/functions/toOmrsIsoString.md +23 -0
- package/packages/framework/esm-framework/docs/functions/toVisitTypeObject.md +17 -0
- package/packages/framework/esm-framework/docs/functions/translateFrom.md +55 -0
- package/packages/framework/esm-framework/docs/functions/unregisterContext.md +20 -0
- package/packages/framework/esm-framework/docs/functions/unsetLeftNav.md +23 -0
- package/packages/framework/esm-framework/docs/functions/updateContext.md +29 -0
- package/packages/framework/esm-framework/docs/functions/updateVisit.md +25 -0
- package/packages/framework/esm-framework/docs/functions/useAbortController.md +32 -0
- package/packages/framework/esm-framework/docs/functions/useAppContext.md +43 -0
- package/packages/framework/esm-framework/docs/functions/useAssignedExtensionIds.md +26 -0
- package/packages/framework/esm-framework/docs/functions/useAssignedExtensions.md +21 -0
- package/packages/framework/esm-framework/docs/functions/useAttachments.md +41 -0
- package/packages/framework/esm-framework/docs/functions/useBodyScrollLock.md +17 -0
- package/packages/framework/esm-framework/docs/functions/useConfig.md +27 -0
- package/packages/framework/esm-framework/docs/functions/useConnectivity.md +11 -0
- package/packages/framework/esm-framework/docs/functions/useDebounce.md +57 -0
- package/packages/framework/esm-framework/docs/functions/useDefineAppContext.md +70 -0
- package/packages/framework/esm-framework/docs/functions/useEmrConfiguration.md +35 -0
- package/packages/framework/esm-framework/docs/functions/useExtensionSlotMeta.md +25 -0
- package/packages/framework/esm-framework/docs/functions/useExtensionSlotStore.md +17 -0
- package/packages/framework/esm-framework/docs/functions/useFeatureFlag.md +30 -0
- package/packages/framework/esm-framework/docs/functions/useFhirFetchAll.md +44 -0
- package/packages/framework/esm-framework/docs/functions/useFhirInfinite.md +46 -0
- package/packages/framework/esm-framework/docs/functions/useFhirPagination.md +129 -0
- package/packages/framework/esm-framework/docs/functions/useLayoutType.md +11 -0
- package/packages/framework/esm-framework/docs/functions/useLeftNav.md +17 -0
- package/packages/framework/esm-framework/docs/functions/useLeftNavStore.md +11 -0
- package/packages/framework/esm-framework/docs/functions/useLocations.md +21 -0
- package/packages/framework/esm-framework/docs/functions/useOnClickOutside.md +27 -0
- package/packages/framework/esm-framework/docs/functions/useOnVisible.md +28 -0
- package/packages/framework/esm-framework/docs/functions/useOpenmrsFetchAll.md +46 -0
- package/packages/framework/esm-framework/docs/functions/useOpenmrsInfinite.md +54 -0
- package/packages/framework/esm-framework/docs/functions/useOpenmrsPagination.md +140 -0
- package/packages/framework/esm-framework/docs/functions/useOpenmrsSWR.md +71 -0
- package/packages/framework/esm-framework/docs/functions/usePagination.md +89 -0
- package/packages/framework/esm-framework/docs/functions/usePatient.md +38 -0
- package/packages/framework/esm-framework/docs/functions/usePatientPhoto.md +17 -0
- package/packages/framework/esm-framework/docs/functions/usePrimaryIdentifierCode.md +23 -0
- package/packages/framework/esm-framework/docs/functions/useRenderableExtensions.md +43 -0
- package/packages/framework/esm-framework/docs/functions/useSession.md +19 -0
- package/packages/framework/esm-framework/docs/functions/useStore.md +131 -0
- package/packages/framework/esm-framework/docs/functions/useStoreWithActions.md +33 -0
- package/packages/framework/esm-framework/docs/functions/useVisit.md +41 -0
- package/packages/framework/esm-framework/docs/functions/useVisitContextStore.md +23 -0
- package/packages/framework/esm-framework/docs/functions/useVisitTypes.md +11 -0
- package/packages/framework/esm-framework/docs/functions/useWorkspace2Context.md +14 -0
- package/packages/framework/esm-framework/docs/functions/useWorkspaces.md +11 -0
- package/packages/framework/esm-framework/docs/functions/userHasAccess.md +27 -0
- package/packages/framework/esm-framework/docs/functions/validator.md +44 -0
- package/packages/framework/esm-framework/docs/interfaces/ActionMenuButtonProps.md +67 -0
- package/packages/framework/esm-framework/docs/interfaces/ActionableNotificationDescriptor.md +77 -0
- package/packages/framework/esm-framework/docs/interfaces/AssignedExtension.md +71 -0
- package/packages/framework/esm-framework/docs/interfaces/Attachment.md +61 -0
- package/packages/framework/esm-framework/docs/interfaces/AttachmentResponse.md +53 -0
- package/packages/framework/esm-framework/docs/interfaces/AuditInfo.md +101 -0
- package/packages/framework/esm-framework/docs/interfaces/BreadcrumbRegistration.md +21 -0
- package/packages/framework/esm-framework/docs/interfaces/BreadcrumbSettings.md +55 -0
- package/packages/framework/esm-framework/docs/interfaces/CancelLoading.md +13 -0
- package/packages/framework/esm-framework/docs/interfaces/CardHeaderProps.md +25 -0
- package/packages/framework/esm-framework/docs/interfaces/ClearDynamicRoutesMessage.md +21 -0
- package/packages/framework/esm-framework/docs/interfaces/CloseWorkspaceOptions.md +54 -0
- package/packages/framework/esm-framework/docs/interfaces/ComponentConfig.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/Concept.md +173 -0
- package/packages/framework/esm-framework/docs/interfaces/ConceptClass.md +101 -0
- package/packages/framework/esm-framework/docs/interfaces/ConceptDatatype.md +109 -0
- package/packages/framework/esm-framework/docs/interfaces/ConceptName.md +109 -0
- package/packages/framework/esm-framework/docs/interfaces/Config.md +9 -0
- package/packages/framework/esm-framework/docs/interfaces/ConfigObject.md +27 -0
- package/packages/framework/esm-framework/docs/interfaces/ConfigSchema.md +33 -0
- package/packages/framework/esm-framework/docs/interfaces/ConfigurableLinkProps.md +49 -0
- package/packages/framework/esm-framework/docs/interfaces/ConnectedExtension.md +51 -0
- package/packages/framework/esm-framework/docs/interfaces/ConnectivityChangedEvent.md +13 -0
- package/packages/framework/esm-framework/docs/interfaces/CurrentPatientOptions.md +18 -0
- package/packages/framework/esm-framework/docs/interfaces/DashboardExtensionProps.md +37 -0
- package/packages/framework/esm-framework/docs/interfaces/DefaultWorkspaceProps.md +113 -0
- package/packages/framework/esm-framework/docs/interfaces/Diagnosis.md +165 -0
- package/packages/framework/esm-framework/docs/interfaces/DisplayConditionsConfigObject.md +45 -0
- package/packages/framework/esm-framework/docs/interfaces/Drug.md +97 -0
- package/packages/framework/esm-framework/docs/interfaces/DynamicOfflineData.md +60 -0
- package/packages/framework/esm-framework/docs/interfaces/DynamicOfflineDataHandler.md +98 -0
- package/packages/framework/esm-framework/docs/interfaces/DynamicOfflineDataSyncState.md +65 -0
- package/packages/framework/esm-framework/docs/interfaces/EmptyCardProps.md +39 -0
- package/packages/framework/esm-framework/docs/interfaces/EmrApiConfigurationResponse.md +489 -0
- package/packages/framework/esm-framework/docs/interfaces/Encounter.md +145 -0
- package/packages/framework/esm-framework/docs/interfaces/EncounterProvider.md +89 -0
- package/packages/framework/esm-framework/docs/interfaces/EncounterRole.md +97 -0
- package/packages/framework/esm-framework/docs/interfaces/EncounterType.md +97 -0
- package/packages/framework/esm-framework/docs/interfaces/ErrorStateProps.md +25 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionData.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionMeta.md +9 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionRegistration.md +89 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotBaseProps.md +67 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotConfig.md +43 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotConfigureValueObject.md +9 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotProps.md +3520 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionSlotState.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/ExtensionStore.md +13 -0
- package/packages/framework/esm-framework/docs/interfaces/FHIRCode.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/FHIRLocationResource.md +37 -0
- package/packages/framework/esm-framework/docs/interfaces/FHIRResource.md +113 -0
- package/packages/framework/esm-framework/docs/interfaces/FeatureFlagDefinition.md +37 -0
- package/packages/framework/esm-framework/docs/interfaces/FetchConfig.md +191 -0
- package/packages/framework/esm-framework/docs/interfaces/FetchError.md +21 -0
- package/packages/framework/esm-framework/docs/interfaces/FetchHeaders.md +9 -0
- package/packages/framework/esm-framework/docs/interfaces/FetchResponse.md +279 -0
- package/packages/framework/esm-framework/docs/interfaces/FetchResponseJson.md +9 -0
- package/packages/framework/esm-framework/docs/interfaces/ImportMap.md +13 -0
- package/packages/framework/esm-framework/docs/interfaces/LeftNavStore.md +45 -0
- package/packages/framework/esm-framework/docs/interfaces/Link.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/Location.md +305 -0
- package/packages/framework/esm-framework/docs/interfaces/LoggedInUser.md +131 -0
- package/packages/framework/esm-framework/docs/interfaces/LoggedInUserFetchResponse.md +273 -0
- package/packages/framework/esm-framework/docs/interfaces/MessageServiceWorkerResult.md +35 -0
- package/packages/framework/esm-framework/docs/interfaces/NavigateOptions.md +21 -0
- package/packages/framework/esm-framework/docs/interfaces/NewVisitPayload.md +69 -0
- package/packages/framework/esm-framework/docs/interfaces/NotificationDescriptor.md +65 -0
- package/packages/framework/esm-framework/docs/interfaces/Obs.md +209 -0
- package/packages/framework/esm-framework/docs/interfaces/OfflineModeResult.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/OfflinePatientArgs.md +25 -0
- package/packages/framework/esm-framework/docs/interfaces/OfflinePatientDataSyncHandler.md +35 -0
- package/packages/framework/esm-framework/docs/interfaces/OfflinePatientDataSyncState.md +61 -0
- package/packages/framework/esm-framework/docs/interfaces/OfflinePatientDataSyncStore.md +25 -0
- package/packages/framework/esm-framework/docs/interfaces/OmrsServiceWorkerMessage.md +25 -0
- package/packages/framework/esm-framework/docs/interfaces/OnImportMapChangedMessage.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/OnlyThePatient.md +21 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenWorkspace.md +281 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenmrsAppContextProps.md +31 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenmrsAppRoutes.md +133 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenmrsDatePickerProps.md +776 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenmrsDateRangePickerProps.md +783 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenmrsEventTypes.md +28 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenmrsResource.md +85 -0
- package/packages/framework/esm-framework/docs/interfaces/OpenmrsResourceStrict.md +57 -0
- package/packages/framework/esm-framework/docs/interfaces/Order.md +461 -0
- package/packages/framework/esm-framework/docs/interfaces/PageHeaderContentProps.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/PageHeaderWrapperProps.md +21 -0
- package/packages/framework/esm-framework/docs/interfaces/PaginationProps.md +95 -0
- package/packages/framework/esm-framework/docs/interfaces/Patient.md +93 -0
- package/packages/framework/esm-framework/docs/interfaces/PatientBannerActionsMenuProps.md +40 -0
- package/packages/framework/esm-framework/docs/interfaces/PatientBannerToggleContactDetailsButtonProps.md +45 -0
- package/packages/framework/esm-framework/docs/interfaces/PatientIdentifier.md +109 -0
- package/packages/framework/esm-framework/docs/interfaces/PatientIdentifierType.md +141 -0
- package/packages/framework/esm-framework/docs/interfaces/PatientPhotoProps.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/PatientWithFullResponse.md +21 -0
- package/packages/framework/esm-framework/docs/interfaces/Person.md +201 -0
- package/packages/framework/esm-framework/docs/interfaces/PersonAddress.md +281 -0
- package/packages/framework/esm-framework/docs/interfaces/PersonAttribute.md +97 -0
- package/packages/framework/esm-framework/docs/interfaces/PersonName.md +153 -0
- package/packages/framework/esm-framework/docs/interfaces/PrecacheStaticDependenciesEvent.md +5 -0
- package/packages/framework/esm-framework/docs/interfaces/PrimaryIdentifier.md +13 -0
- package/packages/framework/esm-framework/docs/interfaces/Privilege.md +37 -0
- package/packages/framework/esm-framework/docs/interfaces/Prompt.md +53 -0
- package/packages/framework/esm-framework/docs/interfaces/QueueItemDescriptor.md +50 -0
- package/packages/framework/esm-framework/docs/interfaces/RegisterDynamicRouteMessage.md +45 -0
- package/packages/framework/esm-framework/docs/interfaces/ResourceLoader.md +19 -0
- package/packages/framework/esm-framework/docs/interfaces/ResponsiveWrapperProps.md +13 -0
- package/packages/framework/esm-framework/docs/interfaces/RetryOptions.md +82 -0
- package/packages/framework/esm-framework/docs/interfaces/Role.md +37 -0
- package/packages/framework/esm-framework/docs/interfaces/Session.md +69 -0
- package/packages/framework/esm-framework/docs/interfaces/SessionLocation.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/SetLeftNavParams.md +49 -0
- package/packages/framework/esm-framework/docs/interfaces/ShowActionableNotificationEvent.md +57 -0
- package/packages/framework/esm-framework/docs/interfaces/ShowNotificationEvent.md +45 -0
- package/packages/framework/esm-framework/docs/interfaces/ShowSnackbarEvent.md +73 -0
- package/packages/framework/esm-framework/docs/interfaces/ShowToastEvent.md +49 -0
- package/packages/framework/esm-framework/docs/interfaces/SnackbarDescriptor.md +85 -0
- package/packages/framework/esm-framework/docs/interfaces/SnackbarMeta.md +129 -0
- package/packages/framework/esm-framework/docs/interfaces/SpaConfig.md +69 -0
- package/packages/framework/esm-framework/docs/interfaces/StyleguideConfigObject.md +97 -0
- package/packages/framework/esm-framework/docs/interfaces/SyncItem.md +79 -0
- package/packages/framework/esm-framework/docs/interfaces/SyncProcessOptions.md +53 -0
- package/packages/framework/esm-framework/docs/interfaces/ToastDescriptor.md +61 -0
- package/packages/framework/esm-framework/docs/interfaces/ToastNotificationMeta.md +93 -0
- package/packages/framework/esm-framework/docs/interfaces/UploadedFile.md +61 -0
- package/packages/framework/esm-framework/docs/interfaces/UseConfigOptions.md +16 -0
- package/packages/framework/esm-framework/docs/interfaces/UsePatientPhotoResult.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/UseServerFetchAllOptions.md +80 -0
- package/packages/framework/esm-framework/docs/interfaces/UseServerInfiniteOptions.md +55 -0
- package/packages/framework/esm-framework/docs/interfaces/UseServerPaginationOptions.md +51 -0
- package/packages/framework/esm-framework/docs/interfaces/User.md +77 -0
- package/packages/framework/esm-framework/docs/interfaces/UserHasAccessProps.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/Visit.md +81 -0
- package/packages/framework/esm-framework/docs/interfaces/VisitItem.md +37 -0
- package/packages/framework/esm-framework/docs/interfaces/VisitReturnType.md +65 -0
- package/packages/framework/esm-framework/docs/interfaces/VisitStoreState.md +37 -0
- package/packages/framework/esm-framework/docs/interfaces/VisitType.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/Workspace2DefinitionProps.md +145 -0
- package/packages/framework/esm-framework/docs/interfaces/WorkspaceContainerProps.md +45 -0
- package/packages/framework/esm-framework/docs/interfaces/WorkspaceDefinition2.md +29 -0
- package/packages/framework/esm-framework/docs/interfaces/WorkspaceGroupDefinition.md +25 -0
- package/packages/framework/esm-framework/docs/interfaces/WorkspaceGroupDefinition2.md +45 -0
- package/packages/framework/esm-framework/docs/interfaces/WorkspaceRegistration.md +99 -0
- package/packages/framework/esm-framework/docs/interfaces/WorkspaceWindowDefinition2.md +53 -0
- package/packages/framework/esm-framework/docs/interfaces/WorkspacesInfo.md +61 -0
- package/packages/framework/esm-framework/docs/type-aliases/ActionFunction.md +27 -0
- package/packages/framework/esm-framework/docs/type-aliases/ActionableNotificationType.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/Actions.md +13 -0
- package/packages/framework/esm-framework/docs/type-aliases/ArgumentsTuple.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/BoundActions.md +17 -0
- package/packages/framework/esm-framework/docs/type-aliases/ConfigValue.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/ContextCallback.md +23 -0
- package/packages/framework/esm-framework/docs/type-aliases/CoreTranslationKey.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/CurrentPatient.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/DateInput.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/DefaultEvaluateReturnType.md +9 -0
- package/packages/framework/esm-framework/docs/type-aliases/ErrorCardProps.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/ExtensionDefinition.md +123 -0
- package/packages/framework/esm-framework/docs/type-aliases/ExtensionProps.md +13 -0
- package/packages/framework/esm-framework/docs/type-aliases/FormatDateMode.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/FormatDateOptions.md +102 -0
- package/packages/framework/esm-framework/docs/type-aliases/FulfillerStatus.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/IconId.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/IconProps.md +31 -0
- package/packages/framework/esm-framework/docs/type-aliases/InlineNotificationType.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/Key.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/KnownOmrsServiceWorkerMessages.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/LayoutType.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/LoadedSessionStore.md +23 -0
- package/packages/framework/esm-framework/docs/type-aliases/ModalDefinition.md +29 -0
- package/packages/framework/esm-framework/docs/type-aliases/NameUse.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/NullablePatient.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/OfflineMode.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/OmrsOfflineCachingStrategy.md +12 -0
- package/packages/framework/esm-framework/docs/type-aliases/OmrsOfflineHttpHeaderNames.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/OmrsOfflineHttpHeaders.md +44 -0
- package/packages/framework/esm-framework/docs/type-aliases/OpenmrsEvent.md +9 -0
- package/packages/framework/esm-framework/docs/type-aliases/OpenmrsRoutes.md +10 -0
- package/packages/framework/esm-framework/docs/type-aliases/OrderAction.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/OrderUrgency.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/PageDefinition.md +41 -0
- package/packages/framework/esm-framework/docs/type-aliases/PageHeaderProps.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/PatientUuid.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/PictogramId.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/PictogramProps.md +23 -0
- package/packages/framework/esm-framework/docs/type-aliases/ProvidedConfig.md +23 -0
- package/packages/framework/esm-framework/docs/type-aliases/ResourceName.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/SessionStore.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/SnackbarType.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/SpaEnvironment.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/SvgIconProps.md +23 -0
- package/packages/framework/esm-framework/docs/type-aliases/SvgPictogramProps.md +27 -0
- package/packages/framework/esm-framework/docs/type-aliases/TemplateParams.md +11 -0
- package/packages/framework/esm-framework/docs/type-aliases/ToastType.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/UnloadedSessionStore.md +23 -0
- package/packages/framework/esm-framework/docs/type-aliases/UpdateVisitPayload.md +7 -0
- package/packages/framework/esm-framework/docs/type-aliases/UseOpenmrsSWROptions.md +39 -0
- package/packages/framework/esm-framework/docs/type-aliases/Validator.md +17 -0
- package/packages/framework/esm-framework/docs/type-aliases/ValidatorFunction.md +17 -0
- package/packages/framework/esm-framework/docs/type-aliases/VariablesMap.md +13 -0
- package/packages/framework/esm-framework/docs/type-aliases/Workspace2Definition.md +23 -0
- package/packages/framework/esm-framework/docs/type-aliases/WorkspaceDefinition.md +118 -0
- package/packages/framework/esm-framework/docs/type-aliases/WorkspaceWindowState.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ActionMenuButton.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ActionMenuButton2.md +19 -0
- package/packages/framework/esm-framework/docs/variables/ActivityIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/AddIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/AllergiesIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/AppointmentsAltPictogram.md +11 -0
- package/packages/framework/esm-framework/docs/variables/AppointmentsPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ArrowDownIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ArrowLeftIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ArrowRightIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ArrowUpIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Assessment1Pictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Assessment2Pictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/AttachmentIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/BabyIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/BloodBankPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CalendarHeatMapIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CalendarIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CardiologyPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CaretDownIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CaretLeftIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CaretRightIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CaretUpIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ChartAverageIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CheckmarkFilledIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CheckmarkOutlineIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ChemistryIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ChevronDownIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ChevronLeftIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ChevronRightIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ChevronUpIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CloseFilledIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CloseIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/CloseOutlineIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ConditionsIcon.md +11 -0
- package/packages/framework/esm-framework/docs/variables/CtScanPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/DentistryPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/DiagnosisTags.md +11 -0
- package/packages/framework/esm-framework/docs/variables/DocumentAttachmentIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/DocumentIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/DownloadIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/DrugOrderIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/EditIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/EmergencyDepartmentPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/EmptyCard.md +9 -0
- package/packages/framework/esm-framework/docs/variables/ErrorCard.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ErrorState.md +7 -0
- package/packages/framework/esm-framework/docs/variables/EventScheduleIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/EventsIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Extension.md +15 -0
- package/packages/framework/esm-framework/docs/variables/FacilityPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GenderFemaleIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GenderMaleIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GenderOtherIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GenderUnknownIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GenericOrderTypeIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GeriatricsPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GroupAccessIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GroupIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/GynaecologyPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/HomePictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/HospitalBedIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Icon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/ImageMedicalIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/InPatientPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/InformationFilledIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/InformationIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/InformationSquareIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/InventoryManagementIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/LabOrderIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/LaboratoryPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Labs2Pictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/LeftNavMenu.md +13 -0
- package/packages/framework/esm-framework/docs/variables/ListCheckedIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/LocationIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/LocationPicker.md +7 -0
- package/packages/framework/esm-framework/docs/variables/MaterialOrderIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/MaximizeIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/MaybeIcon.md +16 -0
- package/packages/framework/esm-framework/docs/variables/MaybePictogram.md +16 -0
- package/packages/framework/esm-framework/docs/variables/MedicationIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/MessageQueueIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/MicroscopeIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/MoneyIcon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/MotherIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/MovementIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ObstetricsPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/OpenmrsDatePicker.md +9 -0
- package/packages/framework/esm-framework/docs/variables/OpenmrsDateRangePicker.md +9 -0
- package/packages/framework/esm-framework/docs/variables/OverflowMenuHorizontalIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/OverflowMenuVerticalIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PageHeader.md +30 -0
- package/packages/framework/esm-framework/docs/variables/PageHeaderContent.md +21 -0
- package/packages/framework/esm-framework/docs/variables/Pagination.md +9 -0
- package/packages/framework/esm-framework/docs/variables/PasswordIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PatientListsPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PatientSearchPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PatientsPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PaymentsDeskPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PedestrianFamilyIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PenIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Pharmacy2Pictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/PharmacyPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Pictogram.md +9 -0
- package/packages/framework/esm-framework/docs/variables/PrinterIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ProcedureOrderIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ProgramsIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/RadiologyIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ReferralOrderIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/RegistrationPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/RenderIfValueIsTruthy.md +21 -0
- package/packages/framework/esm-framework/docs/variables/RenewIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ReportIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ResetIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ResponsiveWrapper.md +11 -0
- package/packages/framework/esm-framework/docs/variables/SaveIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/SearchIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ServiceQueuesPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/SettingsIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ShoppingCartAddItemIcon.md +11 -0
- package/packages/framework/esm-framework/docs/variables/ShoppingCartArrowDownIcon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/ShoppingCartIcon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/StickyNoteAddIcon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/StockManagementPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/SwitcherIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/SyringeIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/TableIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/TableOfContentsIcon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/TimeIcon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/ToolsIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/TransferPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/TranslateIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/TrashCanIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/TreeViewAltIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/TriagePictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/UserAvatarIcon.md +9 -0
- package/packages/framework/esm-framework/docs/variables/UserFollowIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/UserHasAccess.md +35 -0
- package/packages/framework/esm-framework/docs/variables/UserIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/UserXrayIcon.md +11 -0
- package/packages/framework/esm-framework/docs/variables/ViewIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/ViewOffIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/WarningIcon.md +7 -0
- package/packages/framework/esm-framework/docs/variables/Workspace2.md +14 -0
- package/packages/framework/esm-framework/docs/variables/XrayPictogram.md +7 -0
- package/packages/framework/esm-framework/docs/variables/attachmentUrl.md +7 -0
- package/packages/framework/esm-framework/docs/variables/backendDependencies.md +17 -0
- package/packages/framework/esm-framework/docs/variables/defaultVisitCustomRepresentation.md +7 -0
- package/packages/framework/esm-framework/docs/variables/fhirBaseUrl.md +7 -0
- package/packages/framework/esm-framework/docs/variables/getAsyncExtensionLifecycle.md +35 -0
- package/packages/framework/esm-framework/docs/variables/getStartedVisit.md +9 -0
- package/packages/framework/esm-framework/docs/variables/iconIds.md +7 -0
- package/packages/framework/esm-framework/docs/variables/isUrl.md +9 -0
- package/packages/framework/esm-framework/docs/variables/offlineUuidPrefix.md +7 -0
- package/packages/framework/esm-framework/docs/variables/omrsOfflineCachingStrategyHttpHeaderName.md +7 -0
- package/packages/framework/esm-framework/docs/variables/omrsOfflineResponseBodyHttpHeaderName.md +7 -0
- package/packages/framework/esm-framework/docs/variables/omrsOfflineResponseStatusHttpHeaderName.md +7 -0
- package/packages/framework/esm-framework/docs/variables/pictogramIds.md +7 -0
- package/packages/framework/esm-framework/docs/variables/restBaseUrl.md +7 -0
- package/packages/framework/esm-framework/docs/variables/sessionEndpoint.md +7 -0
- package/packages/framework/esm-framework/docs/variables/useConnectedExtensions.md +25 -0
- package/packages/framework/esm-framework/docs/variables/useExtensionStore.md +55 -0
- package/packages/framework/esm-framework/docs/variables/validators.md +78 -0
- package/packages/framework/esm-framework/mock-jest.tsx +163 -0
- package/packages/framework/esm-framework/mock.tsx +164 -0
- package/packages/framework/esm-framework/package.json +109 -0
- package/packages/framework/esm-framework/rspack.config.cjs +89 -0
- package/packages/framework/esm-framework/setup-tests.ts +58 -0
- package/packages/framework/esm-framework/src/declarations.d.ts +10 -0
- package/packages/framework/esm-framework/src/index.ts +17 -0
- package/packages/framework/esm-framework/src/integration-tests/extension-config-expressions.test.tsx +312 -0
- package/packages/framework/esm-framework/src/integration-tests/extension-config.test.tsx +527 -0
- package/packages/framework/esm-framework/src/internal.ts +17 -0
- package/packages/framework/esm-framework/src/mock-test.test.ts +25 -0
- package/packages/framework/esm-framework/tsconfig.build.json +11 -0
- package/packages/framework/esm-framework/tsconfig.json +5 -0
- package/packages/framework/esm-framework/typedoc.json +23 -0
- package/packages/framework/esm-framework/vitest.config.ts +9 -0
- package/packages/framework/esm-globals/.swcrc +16 -0
- package/packages/framework/esm-globals/README.md +4 -0
- package/packages/framework/esm-globals/package.json +59 -0
- package/packages/framework/esm-globals/src/events.ts +134 -0
- package/packages/framework/esm-globals/src/index.ts +2 -0
- package/packages/framework/esm-globals/src/public.ts +16 -0
- package/packages/framework/esm-globals/src/types.ts +415 -0
- package/packages/framework/esm-globals/tsconfig.build.json +9 -0
- package/packages/framework/esm-globals/tsconfig.json +5 -0
- package/packages/framework/esm-navigation/.swcrc +16 -0
- package/packages/framework/esm-navigation/README.md +1 -0
- package/packages/framework/esm-navigation/package.json +70 -0
- package/packages/framework/esm-navigation/src/breadcrumbs/db.ts +34 -0
- package/packages/framework/esm-navigation/src/breadcrumbs/filter.ts +57 -0
- package/packages/framework/esm-navigation/src/history/history.test.ts +109 -0
- package/packages/framework/esm-navigation/src/history/history.ts +76 -0
- package/packages/framework/esm-navigation/src/index.ts +6 -0
- package/packages/framework/esm-navigation/src/navigation/interpolate-string.test.ts +61 -0
- package/packages/framework/esm-navigation/src/navigation/interpolate-string.ts +63 -0
- package/packages/framework/esm-navigation/src/navigation/navigate.test.ts +69 -0
- package/packages/framework/esm-navigation/src/navigation/navigate.ts +59 -0
- package/packages/framework/esm-navigation/src/public.ts +6 -0
- package/packages/framework/esm-navigation/src/setup-tests.js +6 -0
- package/packages/framework/esm-navigation/src/types.ts +35 -0
- package/packages/framework/esm-navigation/tsconfig.build.json +9 -0
- package/packages/framework/esm-navigation/tsconfig.json +5 -0
- package/packages/framework/esm-navigation/vitest.config.ts +9 -0
- package/packages/framework/esm-offline/.swcrc +16 -0
- package/packages/framework/esm-offline/README.md +3 -0
- package/packages/framework/esm-offline/package.json +78 -0
- package/packages/framework/esm-offline/src/dynamic-offline-data.test.ts +81 -0
- package/packages/framework/esm-offline/src/dynamic-offline-data.ts +316 -0
- package/packages/framework/esm-offline/src/index.ts +9 -0
- package/packages/framework/esm-offline/src/mode.ts +74 -0
- package/packages/framework/esm-offline/src/offline-db.ts +36 -0
- package/packages/framework/esm-offline/src/offline-patient-data.ts +72 -0
- package/packages/framework/esm-offline/src/public.ts +21 -0
- package/packages/framework/esm-offline/src/service-worker-http-headers.ts +40 -0
- package/packages/framework/esm-offline/src/service-worker-messaging.ts +51 -0
- package/packages/framework/esm-offline/src/service-worker.ts +39 -0
- package/packages/framework/esm-offline/src/sync.test.ts +140 -0
- package/packages/framework/esm-offline/src/sync.ts +377 -0
- package/packages/framework/esm-offline/src/uuid-support.ts +14 -0
- package/packages/framework/esm-offline/tsconfig.build.json +9 -0
- package/packages/framework/esm-offline/tsconfig.json +5 -0
- package/packages/framework/esm-offline/vitest.config.ts +8 -0
- package/packages/framework/esm-react-utils/.swcrc +16 -0
- package/packages/framework/esm-react-utils/README.md +3 -0
- package/packages/framework/esm-react-utils/__mocks__/openmrs-esm-error-handling.mock.ts +2 -0
- package/packages/framework/esm-react-utils/__mocks__/set-public-path.tsx +1 -0
- package/packages/framework/esm-react-utils/mock-jest.tsx +164 -0
- package/packages/framework/esm-react-utils/mock.tsx +167 -0
- package/packages/framework/esm-react-utils/package.json +109 -0
- package/packages/framework/esm-react-utils/setup-tests.ts +19 -0
- package/packages/framework/esm-react-utils/src/ComponentContext.ts +10 -0
- package/packages/framework/esm-react-utils/src/ConfigurableLink.test.tsx +92 -0
- package/packages/framework/esm-react-utils/src/ConfigurableLink.tsx +77 -0
- package/packages/framework/esm-react-utils/src/Extension.tsx +99 -0
- package/packages/framework/esm-react-utils/src/ExtensionSlot.tsx +127 -0
- package/packages/framework/esm-react-utils/src/OpenmrsContext.ts +31 -0
- package/packages/framework/esm-react-utils/src/RenderIfValueIsTruthy.tsx +26 -0
- package/packages/framework/esm-react-utils/src/UserHasAccess.test.tsx +311 -0
- package/packages/framework/esm-react-utils/src/UserHasAccess.tsx +55 -0
- package/packages/framework/esm-react-utils/src/extensions.test.tsx +303 -0
- package/packages/framework/esm-react-utils/src/getLifecycle.ts +32 -0
- package/packages/framework/esm-react-utils/src/index.ts +51 -0
- package/packages/framework/esm-react-utils/src/openmrsComponentDecorator.test.tsx +76 -0
- package/packages/framework/esm-react-utils/src/openmrsComponentDecorator.tsx +158 -0
- package/packages/framework/esm-react-utils/src/public.ts +45 -0
- package/packages/framework/esm-react-utils/src/useAbortController.test.tsx +41 -0
- package/packages/framework/esm-react-utils/src/useAbortController.ts +40 -0
- package/packages/framework/esm-react-utils/src/useAppContext.ts +76 -0
- package/packages/framework/esm-react-utils/src/useAssignedExtensionIds.ts +26 -0
- package/packages/framework/esm-react-utils/src/useAssignedExtensions.ts +11 -0
- package/packages/framework/esm-react-utils/src/useAttachments.ts +24 -0
- package/packages/framework/esm-react-utils/src/useBodyScrollLock.ts +14 -0
- package/packages/framework/esm-react-utils/src/useConfig.test.tsx +345 -0
- package/packages/framework/esm-react-utils/src/useConfig.ts +167 -0
- package/packages/framework/esm-react-utils/src/useConnectedExtensions.ts +10 -0
- package/packages/framework/esm-react-utils/src/useConnectivity.ts +12 -0
- package/packages/framework/esm-react-utils/src/useDebounce.ts +44 -0
- package/packages/framework/esm-react-utils/src/useDefineAppContext.ts +58 -0
- package/packages/framework/esm-react-utils/src/useEmrConfiguration.ts +173 -0
- package/packages/framework/esm-react-utils/src/useExtensionInternalStore.ts +8 -0
- package/packages/framework/esm-react-utils/src/useExtensionSlot.ts +37 -0
- package/packages/framework/esm-react-utils/src/useExtensionSlotMeta.ts +14 -0
- package/packages/framework/esm-react-utils/src/useExtensionSlotStore.ts +6 -0
- package/packages/framework/esm-react-utils/src/useExtensionStore.ts +5 -0
- package/packages/framework/esm-react-utils/src/useFeatureFlag.ts +23 -0
- package/packages/framework/esm-react-utils/src/useFhirFetchAll.ts +24 -0
- package/packages/framework/esm-react-utils/src/useFhirInfinite.ts +29 -0
- package/packages/framework/esm-react-utils/src/useFhirPagination.ts +66 -0
- package/packages/framework/esm-react-utils/src/useForceUpdate.ts +9 -0
- package/packages/framework/esm-react-utils/src/useLayoutType.ts +40 -0
- package/packages/framework/esm-react-utils/src/useLeftNav.ts +19 -0
- package/packages/framework/esm-react-utils/src/useLeftNavStore.ts +6 -0
- package/packages/framework/esm-react-utils/src/useLocations.tsx +21 -0
- package/packages/framework/esm-react-utils/src/useOnClickOutside.test.tsx +65 -0
- package/packages/framework/esm-react-utils/src/useOnClickOutside.ts +32 -0
- package/packages/framework/esm-react-utils/src/useOnVisible.ts +46 -0
- package/packages/framework/esm-react-utils/src/useOpenmrsFetchAll.test.ts +53 -0
- package/packages/framework/esm-react-utils/src/useOpenmrsFetchAll.ts +70 -0
- package/packages/framework/esm-react-utils/src/useOpenmrsInfinite.test.ts +69 -0
- package/packages/framework/esm-react-utils/src/useOpenmrsInfinite.ts +156 -0
- package/packages/framework/esm-react-utils/src/useOpenmrsPagination.test.ts +137 -0
- package/packages/framework/esm-react-utils/src/useOpenmrsPagination.ts +173 -0
- package/packages/framework/esm-react-utils/src/useOpenmrsSWR.ts +87 -0
- package/packages/framework/esm-react-utils/src/usePagination.ts +65 -0
- package/packages/framework/esm-react-utils/src/usePaginationInfo.ts +32 -0
- package/packages/framework/esm-react-utils/src/usePatient.test.ts +433 -0
- package/packages/framework/esm-react-utils/src/usePatient.ts +51 -0
- package/packages/framework/esm-react-utils/src/usePrimaryIdentifierResource.ts +31 -0
- package/packages/framework/esm-react-utils/src/useRenderableExtensions.tsx +51 -0
- package/packages/framework/esm-react-utils/src/useSession.test.tsx +113 -0
- package/packages/framework/esm-react-utils/src/useSession.ts +123 -0
- package/packages/framework/esm-react-utils/src/useStore.test.ts +49 -0
- package/packages/framework/esm-react-utils/src/useStore.ts +124 -0
- package/packages/framework/esm-react-utils/src/useVisit.test.ts +505 -0
- package/packages/framework/esm-react-utils/src/useVisit.ts +119 -0
- package/packages/framework/esm-react-utils/src/useVisitContextStore.ts +57 -0
- package/packages/framework/esm-react-utils/src/useVisitTypes.ts +20 -0
- package/packages/framework/esm-react-utils/tsconfig.build.json +9 -0
- package/packages/framework/esm-react-utils/tsconfig.json +5 -0
- package/packages/framework/esm-react-utils/vitest.config.ts +9 -0
- package/packages/framework/esm-routes/.swcrc +16 -0
- package/packages/framework/esm-routes/README.md +3 -0
- package/packages/framework/esm-routes/package.json +75 -0
- package/packages/framework/esm-routes/src/constants.ts +1 -0
- package/packages/framework/esm-routes/src/index.ts +3 -0
- package/packages/framework/esm-routes/src/loaders/components.ts +258 -0
- package/packages/framework/esm-routes/src/loaders/helpers.ts +4 -0
- package/packages/framework/esm-routes/src/loaders/index.ts +3 -0
- package/packages/framework/esm-routes/src/loaders/load-lifecycles.ts +109 -0
- package/packages/framework/esm-routes/src/loaders/pages.ts +276 -0
- package/packages/framework/esm-routes/src/public.ts +2 -0
- package/packages/framework/esm-routes/src/routes.test.ts +177 -0
- package/packages/framework/esm-routes/src/routes.ts +154 -0
- package/packages/framework/esm-routes/tsconfig.build.json +9 -0
- package/packages/framework/esm-routes/tsconfig.json +5 -0
- package/packages/framework/esm-routes/vitest.config.ts +8 -0
- package/packages/framework/esm-state/.swcrc +16 -0
- package/packages/framework/esm-state/README.md +9 -0
- package/packages/framework/esm-state/mock-jest.ts +68 -0
- package/packages/framework/esm-state/mock.ts +68 -0
- package/packages/framework/esm-state/package.json +74 -0
- package/packages/framework/esm-state/src/index.ts +1 -0
- package/packages/framework/esm-state/src/public.ts +1 -0
- package/packages/framework/esm-state/src/state.test.ts +531 -0
- package/packages/framework/esm-state/src/state.ts +135 -0
- package/packages/framework/esm-state/src/utils.ts +16 -0
- package/packages/framework/esm-state/tsconfig.build.json +9 -0
- package/packages/framework/esm-state/tsconfig.json +5 -0
- package/packages/framework/esm-state/vitest.config.ts +7 -0
- package/packages/framework/esm-styleguide/README.md +7 -0
- package/packages/framework/esm-styleguide/__mocks__/config.mock.ts +23 -0
- package/packages/framework/esm-styleguide/__mocks__/locations.mock.ts +576 -0
- package/packages/framework/esm-styleguide/__mocks__/react-i18next.js +49 -0
- package/packages/framework/esm-styleguide/logo/openmrs_logo.png +0 -0
- package/packages/framework/esm-styleguide/mock-jest.tsx +208 -0
- package/packages/framework/esm-styleguide/mock.tsx +209 -0
- package/packages/framework/esm-styleguide/package.json +131 -0
- package/packages/framework/esm-styleguide/postcss.config.js +8 -0
- package/packages/framework/esm-styleguide/rspack.config.cjs +96 -0
- package/packages/framework/esm-styleguide/setup-tests.ts +24 -0
- package/packages/framework/esm-styleguide/src/_all.scss +20 -0
- package/packages/framework/esm-styleguide/src/_overrides.scss +750 -0
- package/packages/framework/esm-styleguide/src/_vars.scss +77 -0
- package/packages/framework/esm-styleguide/src/brand.ts +15 -0
- package/packages/framework/esm-styleguide/src/breakpoints/index.ts +25 -0
- package/packages/framework/esm-styleguide/src/cards/card-header.component.tsx +30 -0
- package/packages/framework/esm-styleguide/src/cards/card-header.module.scss +45 -0
- package/packages/framework/esm-styleguide/src/cards/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/components/_breadcrumbs.scss +11 -0
- package/packages/framework/esm-styleguide/src/components/_canvas.scss +8 -0
- package/packages/framework/esm-styleguide/src/components/_colors.scss +31 -0
- package/packages/framework/esm-styleguide/src/components/_general.scss +64 -0
- package/packages/framework/esm-styleguide/src/components/_main-content.scss +24 -0
- package/packages/framework/esm-styleguide/src/config-schema.ts +118 -0
- package/packages/framework/esm-styleguide/src/custom-overflow-menu/custom-overflow-menu.component.tsx +55 -0
- package/packages/framework/esm-styleguide/src/custom-overflow-menu/custom-overflow-menu.module.scss +38 -0
- package/packages/framework/esm-styleguide/src/custom-overflow-menu/custom-overflow-menu.test.tsx +96 -0
- package/packages/framework/esm-styleguide/src/custom-overflow-menu/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/dashboard-extension/dashboard.module.scss +13 -0
- package/packages/framework/esm-styleguide/src/dashboard-extension/index.tsx +61 -0
- package/packages/framework/esm-styleguide/src/datepicker/DatePickerIcon.tsx +17 -0
- package/packages/framework/esm-styleguide/src/datepicker/DatePickerInput.tsx +71 -0
- package/packages/framework/esm-styleguide/src/datepicker/DateSegment.tsx +72 -0
- package/packages/framework/esm-styleguide/src/datepicker/MonthYear.tsx +87 -0
- package/packages/framework/esm-styleguide/src/datepicker/OpenmrsDatePicker.tsx +243 -0
- package/packages/framework/esm-styleguide/src/datepicker/auto-close-dialog.component.tsx +24 -0
- package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-icon.component.tsx +13 -0
- package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-picker.component.tsx +248 -0
- package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-picker.module.scss +38 -0
- package/packages/framework/esm-styleguide/src/datepicker/date-range/date-range-picker.test.tsx +98 -0
- package/packages/framework/esm-styleguide/src/datepicker/datepicker.module.scss +389 -0
- package/packages/framework/esm-styleguide/src/datepicker/datepicker.test.tsx +64 -0
- package/packages/framework/esm-styleguide/src/datepicker/hooks.ts +98 -0
- package/packages/framework/esm-styleguide/src/datepicker/index.tsx +2 -0
- package/packages/framework/esm-styleguide/src/datepicker/locale-context.ts +5 -0
- package/packages/framework/esm-styleguide/src/datepicker/utils.ts +75 -0
- package/packages/framework/esm-styleguide/src/declarations.d.ts +19 -0
- package/packages/framework/esm-styleguide/src/diagnosis-tags/diagnosis-tags.component.tsx +38 -0
- package/packages/framework/esm-styleguide/src/diagnosis-tags/diagnosis-tags.module.scss +8 -0
- package/packages/framework/esm-styleguide/src/diagnosis-tags/index.tsx +1 -0
- package/packages/framework/esm-styleguide/src/empty-card/empty-card-registration.ts +6 -0
- package/packages/framework/esm-styleguide/src/empty-card/empty-card.component.tsx +55 -0
- package/packages/framework/esm-styleguide/src/empty-card/empty-card.module.scss +27 -0
- package/packages/framework/esm-styleguide/src/empty-card/empty-card.test.tsx +58 -0
- package/packages/framework/esm-styleguide/src/empty-card/empty-data-illustration.svg +32 -0
- package/packages/framework/esm-styleguide/src/empty-card/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/error-state/error-state.component.tsx +30 -0
- package/packages/framework/esm-styleguide/src/error-state/error-state.module.scss +21 -0
- package/packages/framework/esm-styleguide/src/error-state/error-state.test.tsx +50 -0
- package/packages/framework/esm-styleguide/src/error-state/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/icons/icon-registration.ts +194 -0
- package/packages/framework/esm-styleguide/src/icons/icons.module.scss +5 -0
- package/packages/framework/esm-styleguide/src/icons/icons.tsx +936 -0
- package/packages/framework/esm-styleguide/src/icons/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/activity.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/add.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/arrow-down.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/arrow-left.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/arrow-right.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/arrow-up.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/baby.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/calendar--heat-map.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/calendar.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/caret-down.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/caret-left.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/caret-right.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/caret-up.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/chart-average.svg +9 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/checkmark--filled.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/checkmark--outline.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/chemistry.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/chevron-down.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/chevron-left.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/chevron-right.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/chevron-up.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/close--filled.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/close--outline.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/close.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/document-attachment.svg +7 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/document.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/download.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/drug-order.svg +11 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/edit.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/event-schedule.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/events.svg +8 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/gender-female.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/gender-male.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/gender-other.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/gender-unknown.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/generic-order-type.svg +18 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/group-access.svg +8 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/group.svg +6 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/hospital-bed.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/image-medical.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/information--filled.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/information--square.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/information.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/inventory-management.svg +7 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/lab-order.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/list-checked.svg +6 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/location.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/material-order.svg +13 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/maximize.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/medication.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/message-queue.svg +7 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/microscope.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/money.svg +8 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/mother.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/movement.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/overflow-menu--horizontal.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/overflow-menu--vertical.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/password.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/pedestrian-family.svg +7 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/pen.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/printer.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/procedure-order.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/programs.svg +13 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/referral-order.svg +11 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/renew.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/report.svg +6 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/reset.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/save.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/search.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/settings.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/shopping-cart--arrow-down.svg +6 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/shopping-cart.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/sticky-note-add.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/switcher.svg +11 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/syringe.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/table-of-contents.svg +10 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/table.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/time.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/tools.svg +3 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/translate.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/trash-can.svg +6 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/tree-view--alt.svg +10 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/user-avatar.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/user-follow.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/user-xray.svg +12 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/user.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/view-off.svg +5 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/view.svg +4 -0
- package/packages/framework/esm-styleguide/src/icons/svgs/warning.svg +5 -0
- package/packages/framework/esm-styleguide/src/index.ts +26 -0
- package/packages/framework/esm-styleguide/src/internal.ts +30 -0
- package/packages/framework/esm-styleguide/src/left-nav/index.tsx +63 -0
- package/packages/framework/esm-styleguide/src/left-nav/left-nav.module.scss +43 -0
- package/packages/framework/esm-styleguide/src/location-picker/index.tsx +1 -0
- package/packages/framework/esm-styleguide/src/location-picker/location-picker.component.tsx +142 -0
- package/packages/framework/esm-styleguide/src/location-picker/location-picker.module.scss +71 -0
- package/packages/framework/esm-styleguide/src/location-picker/location-picker.resource.ts +118 -0
- package/packages/framework/esm-styleguide/src/location-picker/location-picker.test.tsx +429 -0
- package/packages/framework/esm-styleguide/src/logo/_logo.scss +34 -0
- package/packages/framework/esm-styleguide/src/logo/index.ts +18 -0
- package/packages/framework/esm-styleguide/src/logo/openmrs-logo-full.svg +32 -0
- package/packages/framework/esm-styleguide/src/logo/openmrs-logo-icon.svg +6 -0
- package/packages/framework/esm-styleguide/src/logo/openmrs-logo-partial.svg +13 -0
- package/packages/framework/esm-styleguide/src/logo/openmrs-logo-white.svg +13 -0
- package/packages/framework/esm-styleguide/src/modals/_modals.scss +13 -0
- package/packages/framework/esm-styleguide/src/modals/index.tsx +226 -0
- package/packages/framework/esm-styleguide/src/notifications/_actionable-notifications.scss +23 -0
- package/packages/framework/esm-styleguide/src/notifications/_notifications.scss +22 -0
- package/packages/framework/esm-styleguide/src/notifications/actionable-notification.component.tsx +63 -0
- package/packages/framework/esm-styleguide/src/notifications/active-actionable-notifications.component.tsx +40 -0
- package/packages/framework/esm-styleguide/src/notifications/active-notifications.component.tsx +39 -0
- package/packages/framework/esm-styleguide/src/notifications/index.tsx +97 -0
- package/packages/framework/esm-styleguide/src/notifications/notification.component.tsx +39 -0
- package/packages/framework/esm-styleguide/src/page-header/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/page-header/page-header.component.tsx +108 -0
- package/packages/framework/esm-styleguide/src/page-header/page-header.module.scss +28 -0
- package/packages/framework/esm-styleguide/src/page-header/page-header.test.tsx +65 -0
- package/packages/framework/esm-styleguide/src/pagination/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/pagination/pagination.component.tsx +77 -0
- package/packages/framework/esm-styleguide/src/pagination/pagination.module.scss +66 -0
- package/packages/framework/esm-styleguide/src/pagination/pagination.test.tsx +72 -0
- package/packages/framework/esm-styleguide/src/patient-banner/actions-menu/patient-banner-actions-menu.component.tsx +50 -0
- package/packages/framework/esm-styleguide/src/patient-banner/actions-menu/patient-banner-actions-menu.module.scss +23 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-contact-details.component.tsx +212 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-contact-details.module.scss +47 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-contact-details.test.tsx +195 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/patient-banner-toggle-contact-details-button.component.tsx +32 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/types.ts +54 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/usePatientAttributes.ts +59 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/usePatientListsForPatient.ts +21 -0
- package/packages/framework/esm-styleguide/src/patient-banner/contact-details/useRelationships.ts +85 -0
- package/packages/framework/esm-styleguide/src/patient-banner/index.ts +5 -0
- package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-identifiers.component.tsx +72 -0
- package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-identifiers.test.tsx +76 -0
- package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-info.component.tsx +100 -0
- package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-info.module.scss +156 -0
- package/packages/framework/esm-styleguide/src/patient-banner/patient-info/patient-banner-patient-info.test.tsx +91 -0
- package/packages/framework/esm-styleguide/src/patient-photo/index.ts +2 -0
- package/packages/framework/esm-styleguide/src/patient-photo/loader-icon.component.tsx +16 -0
- package/packages/framework/esm-styleguide/src/patient-photo/patient-photo.component.tsx +99 -0
- package/packages/framework/esm-styleguide/src/patient-photo/patient-photo.module.scss +4 -0
- package/packages/framework/esm-styleguide/src/patient-photo/patient-photo.test.tsx +187 -0
- package/packages/framework/esm-styleguide/src/patient-photo/placeholder-icon.component.tsx +32 -0
- package/packages/framework/esm-styleguide/src/patient-photo/usePatientPhoto.ts +53 -0
- package/packages/framework/esm-styleguide/src/pictograms/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/pictograms/pictogram-registration.ts +66 -0
- package/packages/framework/esm-styleguide/src/pictograms/pictograms.module.scss +5 -0
- package/packages/framework/esm-styleguide/src/pictograms/pictograms.tsx +277 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/appointments.svg +10 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/assessment-1.svg +8 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/assessment-2.svg +6 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/blood-bank.svg +4 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/cardiology.svg +4 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/ct-scan.svg +5 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/dentistry.svg +3 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/emergency-department.svg +4 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/facility.svg +23 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/geriatrics.svg +8 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/gynaecology.svg +7 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/in-patient.svg +7 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/inventory.svg +6 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/labs-2.svg +12 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/labs.svg +7 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/obstetrics.svg +5 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/patient-search.svg +4 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/patients.svg +5 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/payments-desk.svg +11 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/pharmacy-1.svg +4 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/pharmacy-2.svg +6 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/registration.svg +7 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/service-queues.svg +5 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/transfer.svg +6 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/triage.svg +6 -0
- package/packages/framework/esm-styleguide/src/pictograms/svgs/x-ray.svg +5 -0
- package/packages/framework/esm-styleguide/src/public.ts +38 -0
- package/packages/framework/esm-styleguide/src/responsive-wrapper/index.ts +1 -0
- package/packages/framework/esm-styleguide/src/responsive-wrapper/responsive-wrapper.component.tsx +24 -0
- package/packages/framework/esm-styleguide/src/snackbars/_snackbars.scss +31 -0
- package/packages/framework/esm-styleguide/src/snackbars/active-snackbar.component.tsx +45 -0
- package/packages/framework/esm-styleguide/src/snackbars/index.tsx +45 -0
- package/packages/framework/esm-styleguide/src/snackbars/snackbar.component.tsx +104 -0
- package/packages/framework/esm-styleguide/src/snackbars/snackbar.module.scss +30 -0
- package/packages/framework/esm-styleguide/src/snackbars/snackbar.test.tsx +89 -0
- package/packages/framework/esm-styleguide/src/spinner/_spinner.scss +14 -0
- package/packages/framework/esm-styleguide/src/spinner/index.ts +14 -0
- package/packages/framework/esm-styleguide/src/svg-utils.ts +31 -0
- package/packages/framework/esm-styleguide/src/test-utils.tsx +19 -0
- package/packages/framework/esm-styleguide/src/toasts/_toasts.scss +22 -0
- package/packages/framework/esm-styleguide/src/toasts/active-toasts.component.tsx +45 -0
- package/packages/framework/esm-styleguide/src/toasts/index.tsx +52 -0
- package/packages/framework/esm-styleguide/src/toasts/toast.component.tsx +45 -0
- package/packages/framework/esm-styleguide/src/utils.ts +20 -0
- package/packages/framework/esm-styleguide/src/workspaces/action-menu-button/action-menu-button.component.tsx +89 -0
- package/packages/framework/esm-styleguide/src/workspaces/action-menu-button/action-menu-button.module.scss +111 -0
- package/packages/framework/esm-styleguide/src/workspaces/action-menu-button/action-menu-button.test.tsx +263 -0
- package/packages/framework/esm-styleguide/src/workspaces/container/action-menu.component.tsx +47 -0
- package/packages/framework/esm-styleguide/src/workspaces/container/action-menu.module.scss +89 -0
- package/packages/framework/esm-styleguide/src/workspaces/container/workspace-container.component.tsx +258 -0
- package/packages/framework/esm-styleguide/src/workspaces/container/workspace-container.test.tsx +261 -0
- package/packages/framework/esm-styleguide/src/workspaces/container/workspace-renderer.component.tsx +50 -0
- package/packages/framework/esm-styleguide/src/workspaces/container/workspace-renderer.test.tsx +66 -0
- package/packages/framework/esm-styleguide/src/workspaces/container/workspace.module.scss +276 -0
- package/packages/framework/esm-styleguide/src/workspaces/index.ts +5 -0
- package/packages/framework/esm-styleguide/src/workspaces/notification/workspace-notification.component.tsx +101 -0
- package/packages/framework/esm-styleguide/src/workspaces/notification/workspace-notification.module.scss +5 -0
- package/packages/framework/esm-styleguide/src/workspaces/public.ts +16 -0
- package/packages/framework/esm-styleguide/src/workspaces/workspace-sidebar-store/useWorkspaceGroupStore.ts +39 -0
- package/packages/framework/esm-styleguide/src/workspaces/workspaces.test.ts +820 -0
- package/packages/framework/esm-styleguide/src/workspaces/workspaces.ts +677 -0
- package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu-button2.component.tsx +134 -0
- package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu-button2.module.scss +103 -0
- package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu2.component.tsx +75 -0
- package/packages/framework/esm-styleguide/src/workspaces2/action-menu2/action-menu2.module.scss +95 -0
- package/packages/framework/esm-styleguide/src/workspaces2/active-workspace-window.component.tsx +152 -0
- package/packages/framework/esm-styleguide/src/workspaces2/index.tsx +3 -0
- package/packages/framework/esm-styleguide/src/workspaces2/workspace-windows-and-menu.component.tsx +67 -0
- package/packages/framework/esm-styleguide/src/workspaces2/workspace-windows-and-menu.module.scss +33 -0
- package/packages/framework/esm-styleguide/src/workspaces2/workspace2-close-prompt.modal.tsx +43 -0
- package/packages/framework/esm-styleguide/src/workspaces2/workspace2-close-prompt.module.scss +8 -0
- package/packages/framework/esm-styleguide/src/workspaces2/workspace2.component.tsx +211 -0
- package/packages/framework/esm-styleguide/src/workspaces2/workspace2.module.scss +208 -0
- package/packages/framework/esm-styleguide/src/workspaces2/workspace2.ts +611 -0
- package/packages/framework/esm-styleguide/tsconfig.build.json +10 -0
- package/packages/framework/esm-styleguide/tsconfig.json +5 -0
- package/packages/framework/esm-styleguide/vitest.config.ts +17 -0
- package/packages/framework/esm-translations/.swcrc +16 -0
- package/packages/framework/esm-translations/README.md +15 -0
- package/packages/framework/esm-translations/custom-i18next-parser-lexer.mjs +25 -0
- package/packages/framework/esm-translations/i18next-parser.config.mjs +76 -0
- package/packages/framework/esm-translations/mock-jest.ts +25 -0
- package/packages/framework/esm-translations/mock.ts +26 -0
- package/packages/framework/esm-translations/package.json +69 -0
- package/packages/framework/esm-translations/src/index.ts +76 -0
- package/packages/framework/esm-translations/src/public.ts +1 -0
- package/packages/framework/esm-translations/src/translations.ts +106 -0
- package/packages/framework/esm-translations/translations/am.json +85 -0
- package/packages/framework/esm-translations/translations/ar.json +85 -0
- package/packages/framework/esm-translations/translations/ar_SY.json +85 -0
- package/packages/framework/esm-translations/translations/bn.json +85 -0
- package/packages/framework/esm-translations/translations/cs.json +85 -0
- package/packages/framework/esm-translations/translations/de.json +85 -0
- package/packages/framework/esm-translations/translations/en.json +85 -0
- package/packages/framework/esm-translations/translations/en_US.json +85 -0
- package/packages/framework/esm-translations/translations/es.json +85 -0
- package/packages/framework/esm-translations/translations/es_MX.json +85 -0
- package/packages/framework/esm-translations/translations/fr.json +85 -0
- package/packages/framework/esm-translations/translations/he.json +85 -0
- package/packages/framework/esm-translations/translations/hi.json +85 -0
- package/packages/framework/esm-translations/translations/hi_IN.json +85 -0
- package/packages/framework/esm-translations/translations/id.json +85 -0
- package/packages/framework/esm-translations/translations/it.json +85 -0
- package/packages/framework/esm-translations/translations/ka.json +85 -0
- package/packages/framework/esm-translations/translations/km.json +85 -0
- package/packages/framework/esm-translations/translations/ku.json +85 -0
- package/packages/framework/esm-translations/translations/ky.json +85 -0
- package/packages/framework/esm-translations/translations/lg.json +85 -0
- package/packages/framework/esm-translations/translations/ne.json +85 -0
- package/packages/framework/esm-translations/translations/pl.json +85 -0
- package/packages/framework/esm-translations/translations/pt.json +85 -0
- package/packages/framework/esm-translations/translations/pt_BR.json +85 -0
- package/packages/framework/esm-translations/translations/qu.json +85 -0
- package/packages/framework/esm-translations/translations/ro_RO.json +85 -0
- package/packages/framework/esm-translations/translations/ru_RU.json +85 -0
- package/packages/framework/esm-translations/translations/si.json +85 -0
- package/packages/framework/esm-translations/translations/sq.json +85 -0
- package/packages/framework/esm-translations/translations/sw.json +85 -0
- package/packages/framework/esm-translations/translations/sw_KE.json +85 -0
- package/packages/framework/esm-translations/translations/tr.json +85 -0
- package/packages/framework/esm-translations/translations/tr_TR.json +85 -0
- package/packages/framework/esm-translations/translations/uk.json +85 -0
- package/packages/framework/esm-translations/translations/uz.json +85 -0
- package/packages/framework/esm-translations/translations/uz@Latn.json +85 -0
- package/packages/framework/esm-translations/translations/uz_UZ.json +85 -0
- package/packages/framework/esm-translations/translations/vi.json +85 -0
- package/packages/framework/esm-translations/translations/zh.json +85 -0
- package/packages/framework/esm-translations/translations/zh_CN.json +85 -0
- package/packages/framework/esm-translations/translations/zh_TW.json +85 -0
- package/packages/framework/esm-translations/tsconfig.build.json +9 -0
- package/packages/framework/esm-translations/tsconfig.json +5 -0
- package/packages/framework/esm-utils/.swcrc +16 -0
- package/packages/framework/esm-utils/README.md +3 -0
- package/packages/framework/esm-utils/package.json +76 -0
- package/packages/framework/esm-utils/src/age-helpers.test.ts +103 -0
- package/packages/framework/esm-utils/src/age-helpers.ts +95 -0
- package/packages/framework/esm-utils/src/dates/date-util.test.ts +212 -0
- package/packages/framework/esm-utils/src/dates/date-util.ts +429 -0
- package/packages/framework/esm-utils/src/dates/index.ts +1 -0
- package/packages/framework/esm-utils/src/get-locale.ts +14 -0
- package/packages/framework/esm-utils/src/index.ts +10 -0
- package/packages/framework/esm-utils/src/is-online.ts +5 -0
- package/packages/framework/esm-utils/src/patient-helpers.test.data.ts +146 -0
- package/packages/framework/esm-utils/src/patient-helpers.test.ts +70 -0
- package/packages/framework/esm-utils/src/patient-helpers.ts +95 -0
- package/packages/framework/esm-utils/src/retry.ts +78 -0
- package/packages/framework/esm-utils/src/shallowEqual.ts +46 -0
- package/packages/framework/esm-utils/src/storage.ts +18 -0
- package/packages/framework/esm-utils/src/test-helpers.ts +36 -0
- package/packages/framework/esm-utils/src/version.test.ts +69 -0
- package/packages/framework/esm-utils/src/version.ts +28 -0
- package/packages/framework/esm-utils/tsconfig.build.json +9 -0
- package/packages/framework/esm-utils/tsconfig.json +5 -0
- package/packages/framework/esm-utils/vitest.config.ts +8 -0
- package/packages/framework/tsconfig.json +15 -0
- package/packages/shell/esm-app-shell/dependencies.json +14 -0
- package/packages/shell/esm-app-shell/package.json +68 -0
- package/packages/shell/esm-app-shell/src/assets/favicon.ico +0 -0
- package/packages/shell/esm-app-shell/src/assets/logo-512.png +0 -0
- package/packages/shell/esm-app-shell/src/assets/logo.svg +30 -0
- package/packages/shell/esm-app-shell/src/core-config.ts +38 -0
- package/packages/shell/esm-app-shell/src/events.ts +16 -0
- package/packages/shell/esm-app-shell/src/index.ejs +102 -0
- package/packages/shell/esm-app-shell/src/index.ts +79 -0
- package/packages/shell/esm-app-shell/src/locale.ts +129 -0
- package/packages/shell/esm-app-shell/src/optionaldeps.ts +64 -0
- package/packages/shell/esm-app-shell/src/routing-events.ts +59 -0
- package/packages/shell/esm-app-shell/src/run.ts +450 -0
- package/packages/shell/esm-app-shell/src/service-worker/caching.ts +96 -0
- package/packages/shell/esm-app-shell/src/service-worker/constants.ts +19 -0
- package/packages/shell/esm-app-shell/src/service-worker/http-header-utils.ts +29 -0
- package/packages/shell/esm-app-shell/src/service-worker/import-map-utils.ts +65 -0
- package/packages/shell/esm-app-shell/src/service-worker/index.ts +27 -0
- package/packages/shell/esm-app-shell/src/service-worker/message.ts +78 -0
- package/packages/shell/esm-app-shell/src/service-worker/noop.ts +27 -0
- package/packages/shell/esm-app-shell/src/service-worker/routing.ts +113 -0
- package/packages/shell/esm-app-shell/src/service-worker/storage.ts +37 -0
- package/packages/shell/esm-app-shell/src/service-worker/types.ts +21 -0
- package/packages/shell/esm-app-shell/src/ui/breadcrumbs.tsx +86 -0
- package/packages/shell/esm-app-shell/src/ui/index.ts +20 -0
- package/packages/shell/esm-app-shell/tools/helpers.js +26 -0
- package/packages/shell/esm-app-shell/tsconfig.json +24 -0
- package/packages/shell/esm-app-shell/webpack.config.js +438 -0
- package/packages/tooling/openmrs/README.md +71 -0
- package/packages/tooling/openmrs/default-rspack-config.js +3 -0
- package/packages/tooling/openmrs/default-webpack-config.js +3 -0
- package/packages/tooling/openmrs/package.json +88 -0
- package/packages/tooling/openmrs/src/cli.ts +426 -0
- package/packages/tooling/openmrs/src/commands/assemble.ts +331 -0
- package/packages/tooling/openmrs/src/commands/build.ts +157 -0
- package/packages/tooling/openmrs/src/commands/debug.ts +55 -0
- package/packages/tooling/openmrs/src/commands/develop.ts +187 -0
- package/packages/tooling/openmrs/src/commands/index.ts +5 -0
- package/packages/tooling/openmrs/src/commands/start.ts +58 -0
- package/packages/tooling/openmrs/src/index.ts +3 -0
- package/packages/tooling/openmrs/src/runner.ts +23 -0
- package/packages/tooling/openmrs/src/utils/config.ts +108 -0
- package/packages/tooling/openmrs/src/utils/debugger.ts +60 -0
- package/packages/tooling/openmrs/src/utils/dependencies.ts +48 -0
- package/packages/tooling/openmrs/src/utils/devserver.ts +11 -0
- package/packages/tooling/openmrs/src/utils/helpers.ts +19 -0
- package/packages/tooling/openmrs/src/utils/importmap.ts +419 -0
- package/packages/tooling/openmrs/src/utils/index.ts +6 -0
- package/packages/tooling/openmrs/src/utils/logger.ts +14 -0
- package/packages/tooling/openmrs/src/utils/npmConfig.ts +50 -0
- package/packages/tooling/openmrs/src/utils/untar.ts +36 -0
- package/packages/tooling/openmrs/src/utils/variables.ts +5 -0
- package/packages/tooling/openmrs/tsconfig.json +15 -0
- package/packages/tooling/rspack-config/package.json +53 -0
- package/packages/tooling/rspack-config/src/index.ts +363 -0
- package/packages/tooling/rspack-config/tsconfig.json +15 -0
- package/packages/tooling/typedoc-plugin-file-categories/.swcrc +16 -0
- package/packages/tooling/typedoc-plugin-file-categories/package.json +25 -0
- package/packages/tooling/typedoc-plugin-file-categories/src/index.ts +53 -0
- package/packages/tooling/typedoc-plugin-file-categories/tsconfig.json +15 -0
- package/packages/tooling/typedoc-plugin-file-categories/vitest.config.ts +7 -0
- package/packages/tooling/webpack-config/package.json +56 -0
- package/packages/tooling/webpack-config/src/index.ts +364 -0
- package/packages/tooling/webpack-config/tsconfig.json +15 -0
- package/playwright.config.ts +50 -0
- package/prettier.config.js +11 -0
- package/staging-config.json +4 -0
- package/tools/i18next-parser.config.js +104 -0
- 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`
|