@openmrs/esm-framework 4.4.0 → 4.4.1-pre.693

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/docs/API.md CHANGED
@@ -71,6 +71,10 @@
71
71
  - [toOmrsTimeString24](API.md#toomrstimestring24)
72
72
  - [toOmrsYearlessDateFormat](API.md#toomrsyearlessdateformat)
73
73
 
74
+ ### Dynamic Loading Functions
75
+
76
+ - [importDynamic](API.md#importdynamic)
77
+
74
78
  ### Error Handling Functions
75
79
 
76
80
  - [createErrorHandler](API.md#createerrorhandler)
@@ -435,7 +439,7 @@ ___
435
439
 
436
440
  #### Defined in
437
441
 
438
- [packages/framework/esm-globals/src/types.ts:53](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L53)
442
+ [packages/framework/esm-globals/src/types.ts:60](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L60)
439
443
 
440
444
  ___
441
445
 
@@ -2043,6 +2047,41 @@ Formats the input as a date string using the format "DD-MMM".
2043
2047
 
2044
2048
  ___
2045
2049
 
2050
+ ## Dynamic Loading Functions
2051
+
2052
+ ### importDynamic
2053
+
2054
+ ▸ **importDynamic**<`T`\>(`jsPackage`, `share?`): `Promise`<`T`\>
2055
+
2056
+ Loads the named export from a named package. This might be used like:
2057
+
2058
+ ```js
2059
+ const { someComponent } = importDynamic("@openmrs/esm-template-app")
2060
+ ```
2061
+
2062
+ #### Type parameters
2063
+
2064
+ | Name | Type |
2065
+ | :------ | :------ |
2066
+ | `T` | `any` |
2067
+
2068
+ #### Parameters
2069
+
2070
+ | Name | Type | Default value | Description |
2071
+ | :------ | :------ | :------ | :------ |
2072
+ | `jsPackage` | `string` | `undefined` | The package to load the export from |
2073
+ | `share` | `string` | `"./start"` | Indicates the name of the shared module; this is an advanced feature if the package you are loading doesn't use the default OpenMRS shared module name "./start" |
2074
+
2075
+ #### Returns
2076
+
2077
+ `Promise`<`T`\>
2078
+
2079
+ #### Defined in
2080
+
2081
+ [packages/framework/esm-dynamic-loading/src/dynamic-loading.ts:29](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-dynamic-loading/src/dynamic-loading.ts#L29)
2082
+
2083
+ ___
2084
+
2046
2085
  ## Error Handling Functions
2047
2086
 
2048
2087
  ### createErrorHandler
@@ -34,7 +34,7 @@ The module/app that defines the component
34
34
 
35
35
  #### Defined in
36
36
 
37
- [packages/framework/esm-globals/src/types.ts:99](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L99)
37
+ [packages/framework/esm-globals/src/types.ts:106](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L106)
38
38
 
39
39
  ___
40
40
 
@@ -46,7 +46,7 @@ Defines the offline support / properties of the component.
46
46
 
47
47
  #### Defined in
48
48
 
49
- [packages/framework/esm-globals/src/types.ts:111](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L111)
49
+ [packages/framework/esm-globals/src/types.ts:118](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L118)
50
50
 
51
51
  ___
52
52
 
@@ -58,7 +58,7 @@ Defines the online support / properties of the component.
58
58
 
59
59
  #### Defined in
60
60
 
61
- [packages/framework/esm-globals/src/types.ts:107](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L107)
61
+ [packages/framework/esm-globals/src/types.ts:114](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L114)
62
62
 
63
63
  ___
64
64
 
@@ -71,7 +71,7 @@ If more than one privilege is provided, the user must have all specified permiss
71
71
 
72
72
  #### Defined in
73
73
 
74
- [packages/framework/esm-globals/src/types.ts:116](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L116)
74
+ [packages/framework/esm-globals/src/types.ts:123](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L123)
75
75
 
76
76
  ___
77
77
 
@@ -83,7 +83,7 @@ Defines resources that are loaded when the component should mount.
83
83
 
84
84
  #### Defined in
85
85
 
86
- [packages/framework/esm-globals/src/types.ts:120](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L120)
86
+ [packages/framework/esm-globals/src/types.ts:127](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L127)
87
87
 
88
88
  ## Methods
89
89
 
@@ -99,4 +99,4 @@ Defines a function to use for actually loading the component's lifecycle.
99
99
 
100
100
  #### Defined in
101
101
 
102
- [packages/framework/esm-globals/src/types.ts:103](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L103)
102
+ [packages/framework/esm-globals/src/types.ts:110](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L110)
@@ -42,7 +42,7 @@ The module/app that defines the component
42
42
 
43
43
  #### Defined in
44
44
 
45
- [packages/framework/esm-globals/src/types.ts:99](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L99)
45
+ [packages/framework/esm-globals/src/types.ts:106](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L106)
46
46
 
47
47
  ___
48
48
 
@@ -54,7 +54,7 @@ ___
54
54
 
55
55
  #### Defined in
56
56
 
57
- [packages/framework/esm-globals/src/types.ts:135](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L135)
57
+ [packages/framework/esm-globals/src/types.ts:142](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L142)
58
58
 
59
59
  ___
60
60
 
@@ -66,7 +66,7 @@ The meta data used for reflection by other components
66
66
 
67
67
  #### Defined in
68
68
 
69
- [packages/framework/esm-globals/src/types.ts:131](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L131)
69
+ [packages/framework/esm-globals/src/types.ts:138](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L138)
70
70
 
71
71
  ___
72
72
 
@@ -78,7 +78,7 @@ The name of the extension being registered
78
78
 
79
79
  #### Defined in
80
80
 
81
- [packages/framework/esm-globals/src/types.ts:125](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L125)
81
+ [packages/framework/esm-globals/src/types.ts:132](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L132)
82
82
 
83
83
  ___
84
84
 
@@ -94,7 +94,7 @@ Defines the offline support / properties of the component.
94
94
 
95
95
  #### Defined in
96
96
 
97
- [packages/framework/esm-globals/src/types.ts:111](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L111)
97
+ [packages/framework/esm-globals/src/types.ts:118](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L118)
98
98
 
99
99
  ___
100
100
 
@@ -110,7 +110,7 @@ Defines the online support / properties of the component.
110
110
 
111
111
  #### Defined in
112
112
 
113
- [packages/framework/esm-globals/src/types.ts:107](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L107)
113
+ [packages/framework/esm-globals/src/types.ts:114](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L114)
114
114
 
115
115
  ___
116
116
 
@@ -122,7 +122,7 @@ Specifies the relative order in which the extension renders in a slot
122
122
 
123
123
  #### Defined in
124
124
 
125
- [packages/framework/esm-globals/src/types.ts:133](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L133)
125
+ [packages/framework/esm-globals/src/types.ts:140](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L140)
126
126
 
127
127
  ___
128
128
 
@@ -139,7 +139,7 @@ If more than one privilege is provided, the user must have all specified permiss
139
139
 
140
140
  #### Defined in
141
141
 
142
- [packages/framework/esm-globals/src/types.ts:116](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L116)
142
+ [packages/framework/esm-globals/src/types.ts:123](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L123)
143
143
 
144
144
  ___
145
145
 
@@ -155,7 +155,7 @@ Defines resources that are loaded when the component should mount.
155
155
 
156
156
  #### Defined in
157
157
 
158
- [packages/framework/esm-globals/src/types.ts:120](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L120)
158
+ [packages/framework/esm-globals/src/types.ts:127](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L127)
159
159
 
160
160
  ___
161
161
 
@@ -167,7 +167,7 @@ A slot to attach to
167
167
 
168
168
  #### Defined in
169
169
 
170
- [packages/framework/esm-globals/src/types.ts:127](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L127)
170
+ [packages/framework/esm-globals/src/types.ts:134](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L134)
171
171
 
172
172
  ___
173
173
 
@@ -179,7 +179,7 @@ Slots to attach to
179
179
 
180
180
  #### Defined in
181
181
 
182
- [packages/framework/esm-globals/src/types.ts:129](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L129)
182
+ [packages/framework/esm-globals/src/types.ts:136](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L136)
183
183
 
184
184
  ## Methods
185
185
 
@@ -199,4 +199,4 @@ Defines a function to use for actually loading the component's lifecycle.
199
199
 
200
200
  #### Defined in
201
201
 
202
- [packages/framework/esm-globals/src/types.ts:103](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L103)
202
+ [packages/framework/esm-globals/src/types.ts:110](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L110)
@@ -16,4 +16,4 @@
16
16
 
17
17
  #### Defined in
18
18
 
19
- [packages/framework/esm-globals/src/types.ts:56](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L56)
19
+ [packages/framework/esm-globals/src/types.ts:63](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L63)
@@ -19,7 +19,7 @@
19
19
 
20
20
  #### Defined in
21
21
 
22
- [packages/framework/esm-globals/src/types.ts:60](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L60)
22
+ [packages/framework/esm-globals/src/types.ts:67](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L67)
23
23
 
24
24
  ___
25
25
 
@@ -29,7 +29,7 @@ ___
29
29
 
30
30
  #### Defined in
31
31
 
32
- [packages/framework/esm-globals/src/types.ts:61](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L61)
32
+ [packages/framework/esm-globals/src/types.ts:68](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L68)
33
33
 
34
34
  ___
35
35
 
@@ -39,7 +39,7 @@ ___
39
39
 
40
40
  #### Defined in
41
41
 
42
- [packages/framework/esm-globals/src/types.ts:62](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L62)
42
+ [packages/framework/esm-globals/src/types.ts:69](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L69)
43
43
 
44
44
  ___
45
45
 
@@ -49,4 +49,4 @@ ___
49
49
 
50
50
  #### Defined in
51
51
 
52
- [packages/framework/esm-globals/src/types.ts:63](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L63)
52
+ [packages/framework/esm-globals/src/types.ts:70](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L70)
@@ -38,7 +38,7 @@ The module/app that defines the component
38
38
 
39
39
  #### Defined in
40
40
 
41
- [packages/framework/esm-globals/src/types.ts:99](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L99)
41
+ [packages/framework/esm-globals/src/types.ts:106](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L106)
42
42
 
43
43
  ___
44
44
 
@@ -54,7 +54,7 @@ Defines the offline support / properties of the component.
54
54
 
55
55
  #### Defined in
56
56
 
57
- [packages/framework/esm-globals/src/types.ts:111](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L111)
57
+ [packages/framework/esm-globals/src/types.ts:118](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L118)
58
58
 
59
59
  ___
60
60
 
@@ -70,7 +70,7 @@ Defines the online support / properties of the component.
70
70
 
71
71
  #### Defined in
72
72
 
73
- [packages/framework/esm-globals/src/types.ts:107](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L107)
73
+ [packages/framework/esm-globals/src/types.ts:114](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L114)
74
74
 
75
75
  ___
76
76
 
@@ -82,7 +82,7 @@ The order in which to load the page. This determines DOM order.
82
82
 
83
83
  #### Defined in
84
84
 
85
- [packages/framework/esm-globals/src/types.ts:146](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L146)
85
+ [packages/framework/esm-globals/src/types.ts:153](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L153)
86
86
 
87
87
  ___
88
88
 
@@ -99,7 +99,7 @@ If more than one privilege is provided, the user must have all specified permiss
99
99
 
100
100
  #### Defined in
101
101
 
102
- [packages/framework/esm-globals/src/types.ts:116](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L116)
102
+ [packages/framework/esm-globals/src/types.ts:123](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L123)
103
103
 
104
104
  ___
105
105
 
@@ -115,7 +115,7 @@ Defines resources that are loaded when the component should mount.
115
115
 
116
116
  #### Defined in
117
117
 
118
- [packages/framework/esm-globals/src/types.ts:120](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L120)
118
+ [packages/framework/esm-globals/src/types.ts:127](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L127)
119
119
 
120
120
  ___
121
121
 
@@ -127,7 +127,7 @@ The route of the page.
127
127
 
128
128
  #### Defined in
129
129
 
130
- [packages/framework/esm-globals/src/types.ts:142](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L142)
130
+ [packages/framework/esm-globals/src/types.ts:149](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L149)
131
131
 
132
132
  ## Methods
133
133
 
@@ -147,4 +147,4 @@ Defines a function to use for actually loading the component's lifecycle.
147
147
 
148
148
  #### Defined in
149
149
 
150
- [packages/framework/esm-globals/src/types.ts:103](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L103)
150
+ [packages/framework/esm-globals/src/types.ts:110](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L110)
@@ -20,4 +20,4 @@
20
20
 
21
21
  #### Defined in
22
22
 
23
- [packages/framework/esm-globals/src/types.ts:92](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L92)
23
+ [packages/framework/esm-globals/src/types.ts:99](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L99)
@@ -22,7 +22,7 @@ The base path or URL for the OpenMRS API / endpoints.
22
22
 
23
23
  #### Defined in
24
24
 
25
- [packages/framework/esm-globals/src/types.ts:70](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L70)
25
+ [packages/framework/esm-globals/src/types.ts:77](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L77)
26
26
 
27
27
  ___
28
28
 
@@ -34,7 +34,7 @@ URLs of configurations to load in the system.
34
34
 
35
35
  #### Defined in
36
36
 
37
- [packages/framework/esm-globals/src/types.ts:83](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L83)
37
+ [packages/framework/esm-globals/src/types.ts:90](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L90)
38
38
 
39
39
  ___
40
40
 
@@ -48,7 +48,7 @@ The environment to use.
48
48
 
49
49
  #### Defined in
50
50
 
51
- [packages/framework/esm-globals/src/types.ts:79](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L79)
51
+ [packages/framework/esm-globals/src/types.ts:86](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L86)
52
52
 
53
53
  ___
54
54
 
@@ -62,7 +62,7 @@ Defines if offline should be supported by installing a service worker.
62
62
 
63
63
  #### Defined in
64
64
 
65
- [packages/framework/esm-globals/src/types.ts:88](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L88)
65
+ [packages/framework/esm-globals/src/types.ts:95](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L95)
66
66
 
67
67
  ___
68
68
 
@@ -74,4 +74,4 @@ The base path for the SPA root path.
74
74
 
75
75
  #### Defined in
76
76
 
77
- [packages/framework/esm-globals/src/types.ts:74](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L74)
77
+ [packages/framework/esm-globals/src/types.ts:81](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-globals/src/types.ts#L81)
package/mock.tsx CHANGED
@@ -201,6 +201,9 @@ export const ConfigurableLink = jest
201
201
  <a href={interpolateUrl(config.to)}>{config.children}</a>
202
202
  ));
203
203
 
204
+ /* esm-dynamic-loading */
205
+ export const importDynamic = jest.fn();
206
+
204
207
  /* esm-error-handling */
205
208
  export const createErrorHandler = () => jest.fn().mockReturnValue(never());
206
209
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-framework",
3
- "version": "4.4.0",
3
+ "version": "4.4.1-pre.693",
4
4
  "license": "MPL-2.0",
5
5
  "browser": "dist/openmrs-esm-framework.js",
6
6
  "main": "src/index.ts",
@@ -35,17 +35,18 @@
35
35
  "access": "public"
36
36
  },
37
37
  "dependencies": {
38
- "@openmrs/esm-api": "^4.4.0",
39
- "@openmrs/esm-breadcrumbs": "^4.4.0",
40
- "@openmrs/esm-config": "^4.4.0",
41
- "@openmrs/esm-error-handling": "^4.4.0",
42
- "@openmrs/esm-extensions": "^4.4.0",
43
- "@openmrs/esm-globals": "^4.4.0",
44
- "@openmrs/esm-offline": "^4.4.0",
45
- "@openmrs/esm-react-utils": "^4.4.0",
46
- "@openmrs/esm-state": "^4.4.0",
47
- "@openmrs/esm-styleguide": "^4.4.0",
48
- "@openmrs/esm-utils": "^4.4.0",
38
+ "@openmrs/esm-api": "^4.4.1-pre.693",
39
+ "@openmrs/esm-breadcrumbs": "^4.4.1-pre.693",
40
+ "@openmrs/esm-config": "^4.4.1-pre.693",
41
+ "@openmrs/esm-dynamic-loading": "^4.4.1-pre.693",
42
+ "@openmrs/esm-error-handling": "^4.4.1-pre.693",
43
+ "@openmrs/esm-extensions": "^4.4.1-pre.693",
44
+ "@openmrs/esm-globals": "^4.4.1-pre.693",
45
+ "@openmrs/esm-offline": "^4.4.1-pre.693",
46
+ "@openmrs/esm-react-utils": "^4.4.1-pre.693",
47
+ "@openmrs/esm-state": "^4.4.1-pre.693",
48
+ "@openmrs/esm-styleguide": "^4.4.1-pre.693",
49
+ "@openmrs/esm-utils": "^4.4.1-pre.693",
49
50
  "dayjs": "^1.10.7"
50
51
  },
51
52
  "devDependencies": {
@@ -53,5 +54,5 @@
53
54
  "jest-cli": "28.1.0",
54
55
  "jest-environment-jsdom": "28.1.0"
55
56
  },
56
- "gitHead": "fdaefeded76bee4ec6503ca6590737e89ebe4b26"
57
+ "gitHead": "e8719abf849e810e3d6ce3f1d9b735d7ea23b1b7"
57
58
  }
package/src/index.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "@openmrs/esm-api/src/public";
2
2
  export * from "@openmrs/esm-breadcrumbs";
3
3
  export * from "@openmrs/esm-config/src/public";
4
+ export * from "@openmrs/esm-dynamic-loading/src/public";
4
5
  export * from "@openmrs/esm-error-handling";
5
6
  export * from "@openmrs/esm-extensions/src/public";
6
7
  export * from "@openmrs/esm-globals/src/public";
package/src/internal.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "@openmrs/esm-api";
2
2
  export * from "@openmrs/esm-breadcrumbs";
3
3
  export * from "@openmrs/esm-config";
4
+ export * from "@openmrs/esm-dynamic-loading";
4
5
  export * from "@openmrs/esm-error-handling";
5
6
  export * from "@openmrs/esm-extensions";
6
7
  export * from "@openmrs/esm-globals";