@openmrs/esm-globals 8.0.1-pre.3444 → 8.0.1-pre.3457
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 +1 -1
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
- package/src/types.ts +4 -0
package/.turbo/turbo-build.log
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -194,6 +194,10 @@ export type ExtensionDefinition = {
|
|
|
194
194
|
* The user must have ANY of these privileges to see this extension.
|
|
195
195
|
*/
|
|
196
196
|
privileges?: string | Array<string>;
|
|
197
|
+
/**
|
|
198
|
+
* The expression that determines whether the extension is displayed.
|
|
199
|
+
*/
|
|
200
|
+
displayExpression?: string;
|
|
197
201
|
/**
|
|
198
202
|
* If supplied, the extension will only be rendered when this feature flag is enabled.
|
|
199
203
|
*/
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -207,6 +207,10 @@ export type ExtensionDefinition = {
|
|
|
207
207
|
* The user must have ANY of these privileges to see this extension.
|
|
208
208
|
*/
|
|
209
209
|
privileges?: string | Array<string>;
|
|
210
|
+
/**
|
|
211
|
+
* The expression that determines whether the extension is displayed.
|
|
212
|
+
*/
|
|
213
|
+
displayExpression?: string;
|
|
210
214
|
/**
|
|
211
215
|
* If supplied, the extension will only be rendered when this feature flag is enabled.
|
|
212
216
|
*/
|