@openmrs/esm-user-onboarding-app 4.0.1-pre.2 → 4.0.1-pre.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/routes.json CHANGED
@@ -1 +1 @@
1
- {"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"fhir2":">=1.2","webservices.rest":"^2.24.0"},"extensions":[{"name":"tutorials","slot":"help-menu-slot","component":"tutorial","online":true,"offline":true}],"modals":[{"name":"tutorial-modal","component":"tutorialModal"}],"pages":[{"component":"root","route":true}],"version":"4.0.1-pre.2"}
1
+ {"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"fhir2":">=1.2","webservices.rest":"^2.24.0"},"extensions":[{"name":"tutorials","slot":"help-menu-slot","component":"tutorial","online":true,"offline":true}],"modals":[{"name":"tutorial-modal","component":"tutorialModal"}],"pages":[{"component":"root","route":true}],"version":"4.0.1-pre.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-user-onboarding-app",
3
- "version": "4.0.1-pre.2",
3
+ "version": "4.0.1-pre.4",
4
4
  "license": "MPL-2.0",
5
5
  "description": "An OpenMRS microfrontend for user onboarding walkthroughs",
6
6
  "browser": "dist/openmrs-esm-user-onboarding-app.js",
@@ -2,3 +2,16 @@ declare module '@carbon/react';
2
2
  declare module '*.css';
3
3
  declare module '*.scss';
4
4
  declare module '*.png';
5
+
6
+ declare module 'react-aria' {
7
+ export const I18nProvider: (...args: any) => JSX.Element;
8
+ export type { DateValue } from '@react-types/datepicker';
9
+ export const mergeProps: any;
10
+ export const useLocale: any;
11
+ export const useDateField: any;
12
+ export const useDatePicker: any;
13
+ export const useDateSegment: any;
14
+ export const useFocusRing: any;
15
+ export const useHover: any;
16
+ export const useObjectRef: any;
17
+ }
package/tsconfig.json CHANGED
@@ -14,7 +14,8 @@
14
14
  "es2015.promise",
15
15
  "es2016.array.include",
16
16
  "es2018",
17
- "es2020"
17
+ "es2020",
18
+ "es2022"
18
19
  ],
19
20
  "resolveJsonModule": true,
20
21
  "noEmit": true,