@openmrs/esm-framework 3.1.15-pre.680 → 3.1.15-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/dist/openmrs-esm-framework.js +1 -1
- package/dist/openmrs-esm-framework.js.map +1 -1
- package/docs/API.md +16 -16
- package/docs/classes/OpenmrsFetchError.md +3 -3
- package/docs/interfaces/Config.md +7 -7
- package/docs/interfaces/ConfigObject.md +7 -7
- package/docs/interfaces/ExtensionInfo.md +8 -8
- package/docs/interfaces/ExtensionInstance.md +1 -1
- package/docs/interfaces/ExtensionRegistration.md +7 -7
- package/docs/interfaces/ExtensionSlotInfo.md +3 -3
- package/docs/interfaces/ExtensionSlotInstance.md +3 -3
- package/docs/interfaces/ExtensionStore.md +2 -2
- package/docs/interfaces/FetchResponse.md +15 -15
- package/docs/interfaces/LoggedInUserFetchResponse.md +15 -15
- package/jest.config.js +1 -2
- package/package.json +14 -14
- package/src/integration-tests/extension-config.test.tsx +0 -1
package/docs/API.md
CHANGED
|
@@ -451,7 +451,7 @@ ___
|
|
|
451
451
|
|
|
452
452
|
#### Defined in
|
|
453
453
|
|
|
454
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
454
|
+
[packages/framework/esm-extensions/src/store.ts:83](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L83)
|
|
455
455
|
|
|
456
456
|
___
|
|
457
457
|
|
|
@@ -747,7 +747,7 @@ ___
|
|
|
747
747
|
|
|
748
748
|
#### Defined in
|
|
749
749
|
|
|
750
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
750
|
+
[packages/framework/esm-extensions/src/store.ts:78](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L78)
|
|
751
751
|
|
|
752
752
|
___
|
|
753
753
|
|
|
@@ -1556,7 +1556,7 @@ ___
|
|
|
1556
1556
|
|
|
1557
1557
|
#### Defined in
|
|
1558
1558
|
|
|
1559
|
-
[packages/framework/esm-config/src/module-config/module-config.ts:
|
|
1559
|
+
[packages/framework/esm-config/src/module-config/module-config.ts:172](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-config/src/module-config/module-config.ts#L172)
|
|
1560
1560
|
|
|
1561
1561
|
___
|
|
1562
1562
|
|
|
@@ -1826,9 +1826,8 @@ ___
|
|
|
1826
1826
|
|
|
1827
1827
|
▸ **getConfig**(`moduleName`): `Promise`<[`Config`](interfaces/Config.md)\>
|
|
1828
1828
|
|
|
1829
|
-
A promise-based way to access the config as soon as it is fully loaded
|
|
1830
|
-
|
|
1831
|
-
present state.
|
|
1829
|
+
A promise-based way to access the config as soon as it is fully loaded.
|
|
1830
|
+
If it is already loaded, resolves the config in its present state.
|
|
1832
1831
|
|
|
1833
1832
|
In general you should use the Unistore-based API provided by
|
|
1834
1833
|
`getConfigStore`, which allows creating a subscription so that you always
|
|
@@ -1849,7 +1848,7 @@ of the execution of a function.
|
|
|
1849
1848
|
|
|
1850
1849
|
#### Defined in
|
|
1851
1850
|
|
|
1852
|
-
[packages/framework/esm-config/src/module-config/module-config.ts:
|
|
1851
|
+
[packages/framework/esm-config/src/module-config/module-config.ts:200](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-config/src/module-config/module-config.ts#L200)
|
|
1853
1852
|
|
|
1854
1853
|
___
|
|
1855
1854
|
|
|
@@ -2618,17 +2617,18 @@ ___
|
|
|
2618
2617
|
|
|
2619
2618
|
### processConfig
|
|
2620
2619
|
|
|
2621
|
-
▸ **processConfig**(`schema`, `providedConfig`, `keyPathContext`): [`Config`](interfaces/Config.md)
|
|
2620
|
+
▸ **processConfig**(`schema`, `providedConfig`, `keyPathContext`, `devDefaultsAreOn?`): [`Config`](interfaces/Config.md)
|
|
2622
2621
|
|
|
2623
2622
|
Validate and interpolate defaults for `providedConfig` according to `schema`
|
|
2624
2623
|
|
|
2625
2624
|
#### Parameters
|
|
2626
2625
|
|
|
2627
|
-
| Name | Type | Description |
|
|
2628
|
-
| :------ | :------ | :------ |
|
|
2629
|
-
| `schema` | [`ConfigSchema`](interfaces/ConfigSchema.md) | a configuration schema |
|
|
2630
|
-
| `providedConfig` | [`ConfigObject`](interfaces/ConfigObject.md) | an object of config values (without the top-level module name) |
|
|
2631
|
-
| `keyPathContext` | `string` | a dot-deparated string which helps the user figure out where the provided config came from |
|
|
2626
|
+
| Name | Type | Default value | Description |
|
|
2627
|
+
| :------ | :------ | :------ | :------ |
|
|
2628
|
+
| `schema` | [`ConfigSchema`](interfaces/ConfigSchema.md) | `undefined` | a configuration schema |
|
|
2629
|
+
| `providedConfig` | [`ConfigObject`](interfaces/ConfigObject.md) | `undefined` | an object of config values (without the top-level module name) |
|
|
2630
|
+
| `keyPathContext` | `string` | `undefined` | a dot-deparated string which helps the user figure out where the provided config came from |
|
|
2631
|
+
| `devDefaultsAreOn` | `boolean` | `false` | - |
|
|
2632
2632
|
|
|
2633
2633
|
#### Returns
|
|
2634
2634
|
|
|
@@ -2636,7 +2636,7 @@ Validate and interpolate defaults for `providedConfig` according to `schema`
|
|
|
2636
2636
|
|
|
2637
2637
|
#### Defined in
|
|
2638
2638
|
|
|
2639
|
-
[packages/framework/esm-config/src/module-config/module-config.ts:
|
|
2639
|
+
[packages/framework/esm-config/src/module-config/module-config.ts:222](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-config/src/module-config/module-config.ts#L222)
|
|
2640
2640
|
|
|
2641
2641
|
___
|
|
2642
2642
|
|
|
@@ -2657,7 +2657,7 @@ ___
|
|
|
2657
2657
|
|
|
2658
2658
|
#### Defined in
|
|
2659
2659
|
|
|
2660
|
-
[packages/framework/esm-config/src/module-config/module-config.ts:
|
|
2660
|
+
[packages/framework/esm-config/src/module-config/module-config.ts:180](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-config/src/module-config/module-config.ts#L180)
|
|
2661
2661
|
|
|
2662
2662
|
___
|
|
2663
2663
|
|
|
@@ -3735,7 +3735,7 @@ ___
|
|
|
3735
3735
|
|
|
3736
3736
|
#### Defined in
|
|
3737
3737
|
|
|
3738
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
3738
|
+
[packages/framework/esm-extensions/src/store.ts:87](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L87)
|
|
3739
3739
|
|
|
3740
3740
|
___
|
|
3741
3741
|
|
|
@@ -63,7 +63,7 @@ Error.message
|
|
|
63
63
|
|
|
64
64
|
#### Defined in
|
|
65
65
|
|
|
66
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
66
|
+
node_modules/typescript/lib/lib.es5.d.ts:1023
|
|
67
67
|
|
|
68
68
|
___
|
|
69
69
|
|
|
@@ -77,7 +77,7 @@ Error.name
|
|
|
77
77
|
|
|
78
78
|
#### Defined in
|
|
79
79
|
|
|
80
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
80
|
+
node_modules/typescript/lib/lib.es5.d.ts:1022
|
|
81
81
|
|
|
82
82
|
___
|
|
83
83
|
|
|
@@ -111,7 +111,7 @@ Error.stack
|
|
|
111
111
|
|
|
112
112
|
#### Defined in
|
|
113
113
|
|
|
114
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
114
|
+
node_modules/typescript/lib/lib.es5.d.ts:1024
|
|
115
115
|
|
|
116
116
|
___
|
|
117
117
|
|
|
@@ -41,7 +41,7 @@ Object.constructor
|
|
|
41
41
|
|
|
42
42
|
#### Defined in
|
|
43
43
|
|
|
44
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
44
|
+
node_modules/typescript/lib/lib.es5.d.ts:124
|
|
45
45
|
|
|
46
46
|
## Methods
|
|
47
47
|
|
|
@@ -67,7 +67,7 @@ Object.hasOwnProperty
|
|
|
67
67
|
|
|
68
68
|
#### Defined in
|
|
69
69
|
|
|
70
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
70
|
+
node_modules/typescript/lib/lib.es5.d.ts:139
|
|
71
71
|
|
|
72
72
|
___
|
|
73
73
|
|
|
@@ -93,7 +93,7 @@ Object.isPrototypeOf
|
|
|
93
93
|
|
|
94
94
|
#### Defined in
|
|
95
95
|
|
|
96
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
96
|
+
node_modules/typescript/lib/lib.es5.d.ts:145
|
|
97
97
|
|
|
98
98
|
___
|
|
99
99
|
|
|
@@ -119,7 +119,7 @@ Object.propertyIsEnumerable
|
|
|
119
119
|
|
|
120
120
|
#### Defined in
|
|
121
121
|
|
|
122
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
122
|
+
node_modules/typescript/lib/lib.es5.d.ts:151
|
|
123
123
|
|
|
124
124
|
___
|
|
125
125
|
|
|
@@ -139,7 +139,7 @@ Object.toLocaleString
|
|
|
139
139
|
|
|
140
140
|
#### Defined in
|
|
141
141
|
|
|
142
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
142
|
+
node_modules/typescript/lib/lib.es5.d.ts:130
|
|
143
143
|
|
|
144
144
|
___
|
|
145
145
|
|
|
@@ -159,7 +159,7 @@ Object.toString
|
|
|
159
159
|
|
|
160
160
|
#### Defined in
|
|
161
161
|
|
|
162
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
162
|
+
node_modules/typescript/lib/lib.es5.d.ts:127
|
|
163
163
|
|
|
164
164
|
___
|
|
165
165
|
|
|
@@ -179,4 +179,4 @@ Object.valueOf
|
|
|
179
179
|
|
|
180
180
|
#### Defined in
|
|
181
181
|
|
|
182
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
182
|
+
node_modules/typescript/lib/lib.es5.d.ts:133
|
|
@@ -41,7 +41,7 @@ Object.constructor
|
|
|
41
41
|
|
|
42
42
|
#### Defined in
|
|
43
43
|
|
|
44
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
44
|
+
node_modules/typescript/lib/lib.es5.d.ts:124
|
|
45
45
|
|
|
46
46
|
## Methods
|
|
47
47
|
|
|
@@ -67,7 +67,7 @@ Object.hasOwnProperty
|
|
|
67
67
|
|
|
68
68
|
#### Defined in
|
|
69
69
|
|
|
70
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
70
|
+
node_modules/typescript/lib/lib.es5.d.ts:139
|
|
71
71
|
|
|
72
72
|
___
|
|
73
73
|
|
|
@@ -93,7 +93,7 @@ Object.isPrototypeOf
|
|
|
93
93
|
|
|
94
94
|
#### Defined in
|
|
95
95
|
|
|
96
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
96
|
+
node_modules/typescript/lib/lib.es5.d.ts:145
|
|
97
97
|
|
|
98
98
|
___
|
|
99
99
|
|
|
@@ -119,7 +119,7 @@ Object.propertyIsEnumerable
|
|
|
119
119
|
|
|
120
120
|
#### Defined in
|
|
121
121
|
|
|
122
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
122
|
+
node_modules/typescript/lib/lib.es5.d.ts:151
|
|
123
123
|
|
|
124
124
|
___
|
|
125
125
|
|
|
@@ -139,7 +139,7 @@ Object.toLocaleString
|
|
|
139
139
|
|
|
140
140
|
#### Defined in
|
|
141
141
|
|
|
142
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
142
|
+
node_modules/typescript/lib/lib.es5.d.ts:130
|
|
143
143
|
|
|
144
144
|
___
|
|
145
145
|
|
|
@@ -159,7 +159,7 @@ Object.toString
|
|
|
159
159
|
|
|
160
160
|
#### Defined in
|
|
161
161
|
|
|
162
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
162
|
+
node_modules/typescript/lib/lib.es5.d.ts:127
|
|
163
163
|
|
|
164
164
|
___
|
|
165
165
|
|
|
@@ -179,4 +179,4 @@ Object.valueOf
|
|
|
179
179
|
|
|
180
180
|
#### Defined in
|
|
181
181
|
|
|
182
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
182
|
+
node_modules/typescript/lib/lib.es5.d.ts:133
|
|
@@ -35,7 +35,7 @@ indexed by slotModuleName and slotName.
|
|
|
35
35
|
|
|
36
36
|
#### Defined in
|
|
37
37
|
|
|
38
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
38
|
+
[packages/framework/esm-extensions/src/store.ts:27](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L27)
|
|
39
39
|
|
|
40
40
|
___
|
|
41
41
|
|
|
@@ -49,7 +49,7 @@ ___
|
|
|
49
49
|
|
|
50
50
|
#### Defined in
|
|
51
51
|
|
|
52
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
52
|
+
[packages/framework/esm-extensions/src/store.ts:16](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L16)
|
|
53
53
|
|
|
54
54
|
___
|
|
55
55
|
|
|
@@ -63,7 +63,7 @@ ___
|
|
|
63
63
|
|
|
64
64
|
#### Defined in
|
|
65
65
|
|
|
66
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
66
|
+
[packages/framework/esm-extensions/src/store.ts:15](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L15)
|
|
67
67
|
|
|
68
68
|
___
|
|
69
69
|
|
|
@@ -77,7 +77,7 @@ ___
|
|
|
77
77
|
|
|
78
78
|
#### Defined in
|
|
79
79
|
|
|
80
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
80
|
+
[packages/framework/esm-extensions/src/store.ts:13](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L13)
|
|
81
81
|
|
|
82
82
|
___
|
|
83
83
|
|
|
@@ -91,7 +91,7 @@ ___
|
|
|
91
91
|
|
|
92
92
|
#### Defined in
|
|
93
93
|
|
|
94
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
94
|
+
[packages/framework/esm-extensions/src/store.ts:19](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L19)
|
|
95
95
|
|
|
96
96
|
___
|
|
97
97
|
|
|
@@ -105,7 +105,7 @@ ___
|
|
|
105
105
|
|
|
106
106
|
#### Defined in
|
|
107
107
|
|
|
108
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
108
|
+
[packages/framework/esm-extensions/src/store.ts:18](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L18)
|
|
109
109
|
|
|
110
110
|
___
|
|
111
111
|
|
|
@@ -119,7 +119,7 @@ ___
|
|
|
119
119
|
|
|
120
120
|
#### Defined in
|
|
121
121
|
|
|
122
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
122
|
+
[packages/framework/esm-extensions/src/store.ts:17](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L17)
|
|
123
123
|
|
|
124
124
|
## Methods
|
|
125
125
|
|
|
@@ -137,4 +137,4 @@ ___
|
|
|
137
137
|
|
|
138
138
|
#### Defined in
|
|
139
139
|
|
|
140
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
140
|
+
[packages/framework/esm-extensions/src/store.ts:14](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L14)
|
|
@@ -16,4 +16,4 @@
|
|
|
16
16
|
|
|
17
17
|
#### Defined in
|
|
18
18
|
|
|
19
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
19
|
+
[packages/framework/esm-extensions/src/store.ts:31](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L31)
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
#### Defined in
|
|
33
33
|
|
|
34
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
34
|
+
[packages/framework/esm-extensions/src/store.ts:16](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L16)
|
|
35
35
|
|
|
36
36
|
___
|
|
37
37
|
|
|
@@ -41,7 +41,7 @@ ___
|
|
|
41
41
|
|
|
42
42
|
#### Defined in
|
|
43
43
|
|
|
44
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
44
|
+
[packages/framework/esm-extensions/src/store.ts:15](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L15)
|
|
45
45
|
|
|
46
46
|
___
|
|
47
47
|
|
|
@@ -51,7 +51,7 @@ ___
|
|
|
51
51
|
|
|
52
52
|
#### Defined in
|
|
53
53
|
|
|
54
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
54
|
+
[packages/framework/esm-extensions/src/store.ts:13](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L13)
|
|
55
55
|
|
|
56
56
|
___
|
|
57
57
|
|
|
@@ -61,7 +61,7 @@ ___
|
|
|
61
61
|
|
|
62
62
|
#### Defined in
|
|
63
63
|
|
|
64
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
64
|
+
[packages/framework/esm-extensions/src/store.ts:19](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L19)
|
|
65
65
|
|
|
66
66
|
___
|
|
67
67
|
|
|
@@ -71,7 +71,7 @@ ___
|
|
|
71
71
|
|
|
72
72
|
#### Defined in
|
|
73
73
|
|
|
74
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
74
|
+
[packages/framework/esm-extensions/src/store.ts:18](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L18)
|
|
75
75
|
|
|
76
76
|
___
|
|
77
77
|
|
|
@@ -81,7 +81,7 @@ ___
|
|
|
81
81
|
|
|
82
82
|
#### Defined in
|
|
83
83
|
|
|
84
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
84
|
+
[packages/framework/esm-extensions/src/store.ts:17](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L17)
|
|
85
85
|
|
|
86
86
|
## Methods
|
|
87
87
|
|
|
@@ -95,4 +95,4 @@ ___
|
|
|
95
95
|
|
|
96
96
|
#### Defined in
|
|
97
97
|
|
|
98
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
98
|
+
[packages/framework/esm-extensions/src/store.ts:14](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L14)
|
|
@@ -23,7 +23,7 @@ However, not all of these extension IDs should be rendered.
|
|
|
23
23
|
|
|
24
24
|
#### Defined in
|
|
25
25
|
|
|
26
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
26
|
+
[packages/framework/esm-extensions/src/store.ts:75](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L75)
|
|
27
27
|
|
|
28
28
|
___
|
|
29
29
|
|
|
@@ -35,7 +35,7 @@ The mapping of modules / extension slot instances where the extension slot has b
|
|
|
35
35
|
|
|
36
36
|
#### Defined in
|
|
37
37
|
|
|
38
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
38
|
+
[packages/framework/esm-extensions/src/store.ts:68](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L68)
|
|
39
39
|
|
|
40
40
|
___
|
|
41
41
|
|
|
@@ -47,4 +47,4 @@ The name under which the extension slot has been registered.
|
|
|
47
47
|
|
|
48
48
|
#### Defined in
|
|
49
49
|
|
|
50
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
50
|
+
[packages/framework/esm-extensions/src/store.ts:64](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L64)
|
|
@@ -22,7 +22,7 @@ An example may be an extension which is added to the slot via the configuration.
|
|
|
22
22
|
|
|
23
23
|
#### Defined in
|
|
24
24
|
|
|
25
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
25
|
+
[packages/framework/esm-extensions/src/store.ts:47](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L47)
|
|
26
26
|
|
|
27
27
|
___
|
|
28
28
|
|
|
@@ -34,7 +34,7 @@ A set allowing explicit ordering of the `assignedIds`.
|
|
|
34
34
|
|
|
35
35
|
#### Defined in
|
|
36
36
|
|
|
37
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
37
|
+
[packages/framework/esm-extensions/src/store.ts:57](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L57)
|
|
38
38
|
|
|
39
39
|
___
|
|
40
40
|
|
|
@@ -48,4 +48,4 @@ An example may be an extension which is removed from the slot via the configurat
|
|
|
48
48
|
|
|
49
49
|
#### Defined in
|
|
50
50
|
|
|
51
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
51
|
+
[packages/framework/esm-extensions/src/store.ts:53](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L53)
|
|
@@ -19,7 +19,7 @@ Extensions indexed by name
|
|
|
19
19
|
|
|
20
20
|
#### Defined in
|
|
21
21
|
|
|
22
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
22
|
+
[packages/framework/esm-extensions/src/store.ts:38](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L38)
|
|
23
23
|
|
|
24
24
|
___
|
|
25
25
|
|
|
@@ -31,4 +31,4 @@ Slots indexed by name
|
|
|
31
31
|
|
|
32
32
|
#### Defined in
|
|
33
33
|
|
|
34
|
-
[packages/framework/esm-extensions/src/store.ts:
|
|
34
|
+
[packages/framework/esm-extensions/src/store.ts:36](https://github.com/openmrs/openmrs-esm-core/blob/master/packages/framework/esm-extensions/src/store.ts#L36)
|
|
@@ -52,7 +52,7 @@ Response.body
|
|
|
52
52
|
|
|
53
53
|
#### Defined in
|
|
54
54
|
|
|
55
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
55
|
+
node_modules/typescript/lib/lib.dom.d.ts:2402
|
|
56
56
|
|
|
57
57
|
___
|
|
58
58
|
|
|
@@ -66,7 +66,7 @@ Response.bodyUsed
|
|
|
66
66
|
|
|
67
67
|
#### Defined in
|
|
68
68
|
|
|
69
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
69
|
+
node_modules/typescript/lib/lib.dom.d.ts:2403
|
|
70
70
|
|
|
71
71
|
___
|
|
72
72
|
|
|
@@ -90,7 +90,7 @@ Response.headers
|
|
|
90
90
|
|
|
91
91
|
#### Defined in
|
|
92
92
|
|
|
93
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
93
|
+
node_modules/typescript/lib/lib.dom.d.ts:11136
|
|
94
94
|
|
|
95
95
|
___
|
|
96
96
|
|
|
@@ -104,7 +104,7 @@ Response.ok
|
|
|
104
104
|
|
|
105
105
|
#### Defined in
|
|
106
106
|
|
|
107
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
107
|
+
node_modules/typescript/lib/lib.dom.d.ts:11137
|
|
108
108
|
|
|
109
109
|
___
|
|
110
110
|
|
|
@@ -118,7 +118,7 @@ Response.redirected
|
|
|
118
118
|
|
|
119
119
|
#### Defined in
|
|
120
120
|
|
|
121
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
121
|
+
node_modules/typescript/lib/lib.dom.d.ts:11138
|
|
122
122
|
|
|
123
123
|
___
|
|
124
124
|
|
|
@@ -132,7 +132,7 @@ Response.status
|
|
|
132
132
|
|
|
133
133
|
#### Defined in
|
|
134
134
|
|
|
135
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
135
|
+
node_modules/typescript/lib/lib.dom.d.ts:11139
|
|
136
136
|
|
|
137
137
|
___
|
|
138
138
|
|
|
@@ -146,7 +146,7 @@ Response.statusText
|
|
|
146
146
|
|
|
147
147
|
#### Defined in
|
|
148
148
|
|
|
149
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
149
|
+
node_modules/typescript/lib/lib.dom.d.ts:11140
|
|
150
150
|
|
|
151
151
|
___
|
|
152
152
|
|
|
@@ -160,7 +160,7 @@ Response.type
|
|
|
160
160
|
|
|
161
161
|
#### Defined in
|
|
162
162
|
|
|
163
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
163
|
+
node_modules/typescript/lib/lib.dom.d.ts:11141
|
|
164
164
|
|
|
165
165
|
___
|
|
166
166
|
|
|
@@ -174,7 +174,7 @@ Response.url
|
|
|
174
174
|
|
|
175
175
|
#### Defined in
|
|
176
176
|
|
|
177
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
177
|
+
node_modules/typescript/lib/lib.dom.d.ts:11142
|
|
178
178
|
|
|
179
179
|
## Methods
|
|
180
180
|
|
|
@@ -192,7 +192,7 @@ Response.arrayBuffer
|
|
|
192
192
|
|
|
193
193
|
#### Defined in
|
|
194
194
|
|
|
195
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
195
|
+
node_modules/typescript/lib/lib.dom.d.ts:2404
|
|
196
196
|
|
|
197
197
|
___
|
|
198
198
|
|
|
@@ -210,7 +210,7 @@ Response.blob
|
|
|
210
210
|
|
|
211
211
|
#### Defined in
|
|
212
212
|
|
|
213
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
213
|
+
node_modules/typescript/lib/lib.dom.d.ts:2405
|
|
214
214
|
|
|
215
215
|
___
|
|
216
216
|
|
|
@@ -228,7 +228,7 @@ Response.clone
|
|
|
228
228
|
|
|
229
229
|
#### Defined in
|
|
230
230
|
|
|
231
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
231
|
+
node_modules/typescript/lib/lib.dom.d.ts:11143
|
|
232
232
|
|
|
233
233
|
___
|
|
234
234
|
|
|
@@ -246,7 +246,7 @@ Response.formData
|
|
|
246
246
|
|
|
247
247
|
#### Defined in
|
|
248
248
|
|
|
249
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
249
|
+
node_modules/typescript/lib/lib.dom.d.ts:2406
|
|
250
250
|
|
|
251
251
|
___
|
|
252
252
|
|
|
@@ -264,7 +264,7 @@ Response.json
|
|
|
264
264
|
|
|
265
265
|
#### Defined in
|
|
266
266
|
|
|
267
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
267
|
+
node_modules/typescript/lib/lib.dom.d.ts:2407
|
|
268
268
|
|
|
269
269
|
___
|
|
270
270
|
|
|
@@ -282,4 +282,4 @@ Response.text
|
|
|
282
282
|
|
|
283
283
|
#### Defined in
|
|
284
284
|
|
|
285
|
-
node_modules/typescript/lib/lib.dom.d.ts:
|
|
285
|
+
node_modules/typescript/lib/lib.dom.d.ts:2408
|