@encatch/ws-react 0.1.0-beta.20 → 0.1.0-beta.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.
- package/dist/types.d.ts +6 -0
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -49,6 +49,12 @@ export interface EncatchFormConfig {
|
|
|
49
49
|
formConfiguration?: {
|
|
50
50
|
formTitle?: string;
|
|
51
51
|
};
|
|
52
|
+
/** Key-value pairs for Liquid variable substitution in question titles and descriptions (e.g. {{ context.userName }}). */
|
|
53
|
+
context?: Record<string, unknown>;
|
|
54
|
+
/** Contact properties for Liquid variable substitution via {{ contact.key }} syntax. */
|
|
55
|
+
contact?: Record<string, unknown>;
|
|
56
|
+
/** When true, the form renders in fullscreen mode (in-form close bar is hidden). Defaults to false. */
|
|
57
|
+
isFullScreen?: boolean;
|
|
52
58
|
[key: string]: unknown;
|
|
53
59
|
}
|
|
54
60
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@encatch/ws-react",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"react-dom": "^19.1.1"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@encatch/schema": "1.1.0-beta.
|
|
23
|
+
"@encatch/schema": "1.1.0-beta.10",
|
|
24
24
|
"@encatch/event-publisher": "1.0.0-beta.4"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|