@xapp/stentor-form-widget-channel 1.72.3 → 1.73.0
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/lib/FormWidgetEnv.d.ts +9 -0
- package/package.json +8 -8
package/lib/FormWidgetEnv.d.ts
CHANGED
|
@@ -22,6 +22,15 @@ export interface FormWidgetEnv {
|
|
|
22
22
|
* Form Widget is disabled and will not appear on the website
|
|
23
23
|
*/
|
|
24
24
|
readonly disabled?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Configure auto-open settings
|
|
27
|
+
*/
|
|
28
|
+
readonly autoOpen?: {
|
|
29
|
+
/**
|
|
30
|
+
* If true, it will automatically open the form widget, remove the ability to close it, remove the shadow boxing effect.
|
|
31
|
+
*/
|
|
32
|
+
readonly enabled?: boolean;
|
|
33
|
+
};
|
|
25
34
|
/**
|
|
26
35
|
* Optional, used for autocomplete suggestions.
|
|
27
36
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.73.0",
|
|
8
8
|
"description": "Form Widget Channel for stentor 📣",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -15,21 +15,21 @@
|
|
|
15
15
|
"node": ">=10.x"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@types/chai": "4.3.
|
|
19
|
-
"@types/sinon": "10.0.
|
|
18
|
+
"@types/chai": "4.3.17",
|
|
19
|
+
"@types/sinon": "10.0.20",
|
|
20
20
|
"@types/sinon-chai": "3.2.12",
|
|
21
21
|
"@xapp/config": "0.2.3",
|
|
22
|
-
"chai": "4.
|
|
22
|
+
"chai": "4.5.0",
|
|
23
23
|
"mocha": "9.2.2",
|
|
24
24
|
"sinon": "13.0.2",
|
|
25
25
|
"sinon-chai": "3.7.0",
|
|
26
|
-
"stentor-models": "1.59.
|
|
26
|
+
"stentor-models": "1.59.90",
|
|
27
27
|
"ts-node": "10.9.2",
|
|
28
28
|
"typescript": "5.5.4"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"stentor-constants": "1.59.
|
|
32
|
-
"stentor-guards": "1.59.
|
|
31
|
+
"stentor-constants": "1.59.90",
|
|
32
|
+
"stentor-guards": "1.59.90"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"stentor-models": "1.X"
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"build": "tsc -d true -p .",
|
|
39
39
|
"clean": "rm -rf ./lib/*"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "4ae426d67d1e66a71c1b48623c1a4224ae37052b"
|
|
42
42
|
}
|