@fairandsmart/consents-ce 1.3.10 → 1.3.11
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/consents/interfaces.d.ts
CHANGED
|
@@ -65,6 +65,10 @@ export interface ConsentContext {
|
|
|
65
65
|
confirmationConfig?: {
|
|
66
66
|
[key: string]: string;
|
|
67
67
|
};
|
|
68
|
+
/** The reference to the 'theme' that will apply */
|
|
69
|
+
theme?: string;
|
|
70
|
+
/** The reference to the 'email' mode for notification */
|
|
71
|
+
notification?: string;
|
|
68
72
|
}
|
|
69
73
|
/** Used to generate a Receipt from a transaction id */
|
|
70
74
|
export interface ConsentTransaction {
|
package/models/interfaces.d.ts
CHANGED
|
@@ -147,8 +147,6 @@ export interface FormLayout extends ModelData {
|
|
|
147
147
|
type: 'layout';
|
|
148
148
|
info: string;
|
|
149
149
|
elements: string[];
|
|
150
|
-
theme?: string;
|
|
151
|
-
notification?: string;
|
|
152
150
|
orientation?: FormLayoutOrientation;
|
|
153
151
|
existingElementsVisible?: boolean;
|
|
154
152
|
validityVisible?: boolean;
|