ht-emr 0.7.19 → 0.7.21
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.
|
@@ -135,6 +135,7 @@ export interface IPrintModeRule {
|
|
|
135
135
|
imagePreviewerDisabled?: boolean;
|
|
136
136
|
backgroundDisabled?: boolean;
|
|
137
137
|
}
|
|
138
|
+
export type ICompareModeRule = IPrintModeRule;
|
|
138
139
|
export interface IReadonlyModeRule {
|
|
139
140
|
imagePreviewerDisabled?: boolean;
|
|
140
141
|
}
|
|
@@ -149,6 +150,7 @@ export interface IFormModeTraceOption {
|
|
|
149
150
|
}
|
|
150
151
|
export interface IModeRule {
|
|
151
152
|
[EditorMode.PRINT]?: IPrintModeRule;
|
|
153
|
+
[EditorMode.COMPARE]?: ICompareModeRule;
|
|
152
154
|
[EditorMode.READONLY]?: IReadonlyModeRule;
|
|
153
155
|
[EditorMode.FORM]?: IFormModeRule;
|
|
154
156
|
}
|