@unvired/turboforms-embed-sdk 2.0.49 → 2.0.50
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/README.md +1 -1
- package/dist/index.d.ts +1 -3
- package/dist/turboforms.esm.js +8 -8
- package/dist/turboforms.html +206 -10
- package/dist/turboforms.js +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -413,7 +413,7 @@ class _UnviredFormScreenState extends State<UnviredFormScreen> {
|
|
|
413
413
|
| `controlData` | object | Data for initial control values |
|
|
414
414
|
| `showLoader` | boolean | Show/hide initial SDK loading spinner |
|
|
415
415
|
| `commentsData` | array | Comments data |
|
|
416
|
-
| `
|
|
416
|
+
| `commentsVobArr` | array | Voice of Business data |
|
|
417
417
|
| `showComments` | boolean | Show/hide comments |
|
|
418
418
|
| `showDocuments` | boolean | Show/hide documents |
|
|
419
419
|
| `showHelp` | boolean | Show/hide help |
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ export interface loadFormOptions {
|
|
|
11
11
|
language?: string;
|
|
12
12
|
privateExternal?: string | boolean;
|
|
13
13
|
title?: string;
|
|
14
|
-
description?: string;
|
|
15
14
|
|
|
16
15
|
translations?: any;
|
|
17
16
|
themeData?: any;
|
|
@@ -19,9 +18,8 @@ export interface loadFormOptions {
|
|
|
19
18
|
controlData?: any;
|
|
20
19
|
|
|
21
20
|
commentsData?: any[];
|
|
22
|
-
|
|
21
|
+
commentsVobArr?: any[];
|
|
23
22
|
appData?: any[];
|
|
24
|
-
environmentVariable?: any[];
|
|
25
23
|
|
|
26
24
|
showComments?: boolean;
|
|
27
25
|
showDocuments?: boolean;
|