@openmrs/esm-framework 3.4.1-pre.96 → 4.0.0-pre.1
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/.turbo/turbo-build.log +69 -95
- package/.turbo/turbo-lint.log +2 -0
- package/.turbo/turbo-test.log +451 -0
- package/.turbo/turbo-typescript.log +2 -0
- package/dist/openmrs-esm-framework.js +1 -1
- package/dist/openmrs-esm-framework.js.LICENSE.txt +23 -13
- package/dist/openmrs-esm-framework.js.map +1 -1
- package/docs/API.md +371 -95
- package/docs/interfaces/ConfigurableLinkProps.md +12 -1
- package/docs/interfaces/DynamicOfflineData.md +78 -0
- package/docs/interfaces/DynamicOfflineDataHandler.md +105 -0
- package/docs/interfaces/DynamicOfflineDataSyncState.md +75 -0
- package/docs/interfaces/ErrorStateProps.md +30 -0
- package/docs/interfaces/FHIRCode.md +13 -2
- package/docs/interfaces/FHIRResource.md +3 -0
- package/docs/interfaces/NavigateOptions.md +12 -1
- package/docs/interfaces/OfflinePatientArgs.md +4 -6
- package/docs/interfaces/OfflinePatientDataSyncHandler.md +7 -14
- package/docs/interfaces/OfflinePatientDataSyncState.md +8 -24
- package/docs/interfaces/OfflinePatientDataSyncStore.md +3 -8
- package/docs/interfaces/QueueItemDescriptor.md +4 -4
- package/docs/interfaces/SyncItem.md +7 -7
- package/docs/interfaces/SyncProcessOptions.md +5 -5
- package/docs/interfaces/UserHasAccessProps.md +22 -0
- package/jest.config.js +5 -0
- package/mock.tsx +1 -0
- package/package.json +13 -13
- package/src/integration-tests/extension-config.test.tsx +3 -4
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
/*
|
|
2
|
-
object-assign
|
|
3
|
-
(c) Sindre Sorhus
|
|
4
|
-
@license MIT
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
1
|
/*!
|
|
8
|
-
Copyright (c)
|
|
2
|
+
Copyright (c) 2018 Jed Watson.
|
|
9
3
|
Licensed under the MIT License (MIT), see
|
|
10
4
|
http://jedwatson.github.io/classnames
|
|
11
5
|
*/
|
|
@@ -25,6 +19,8 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
25
19
|
PERFORMANCE OF THIS SOFTWARE.
|
|
26
20
|
***************************************************************************** */
|
|
27
21
|
|
|
22
|
+
/*! For license information please see openmrs-esm-framework.js.LICENSE.txt */
|
|
23
|
+
|
|
28
24
|
/*! For license information please see openmrs-esm-react-utils.js.LICENSE.txt */
|
|
29
25
|
|
|
30
26
|
/**
|
|
@@ -36,8 +32,9 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
36
32
|
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
37
33
|
*/
|
|
38
34
|
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
35
|
+
/**
|
|
36
|
+
* @license React
|
|
37
|
+
* react-dom.production.min.js
|
|
41
38
|
*
|
|
42
39
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
43
40
|
*
|
|
@@ -45,8 +42,9 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
45
42
|
* LICENSE file in the root directory of this source tree.
|
|
46
43
|
*/
|
|
47
44
|
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
45
|
+
/**
|
|
46
|
+
* @license React
|
|
47
|
+
* react.production.min.js
|
|
50
48
|
*
|
|
51
49
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
52
50
|
*
|
|
@@ -54,11 +52,23 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
54
52
|
* LICENSE file in the root directory of this source tree.
|
|
55
53
|
*/
|
|
56
54
|
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
55
|
+
/**
|
|
56
|
+
* @license React
|
|
57
|
+
* scheduler.production.min.js
|
|
59
58
|
*
|
|
60
59
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
61
60
|
*
|
|
62
61
|
* This source code is licensed under the MIT license found in the
|
|
63
62
|
* LICENSE file in the root directory of this source tree.
|
|
64
63
|
*/
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* React Router v6.3.0
|
|
67
|
+
*
|
|
68
|
+
* Copyright (c) Remix Software Inc.
|
|
69
|
+
*
|
|
70
|
+
* This source code is licensed under the MIT license found in the
|
|
71
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
72
|
+
*
|
|
73
|
+
* @license MIT
|
|
74
|
+
*/
|