@choiceform/os-client-core 3.6.38 → 3.6.39
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/core.js +1 -1
- package/dist/support/atcp.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +11 -5
- package/package.json +18 -21
package/index.d.ts
CHANGED
|
@@ -5150,6 +5150,12 @@ interface CCIStartMiniState extends CCCustomLogo {
|
|
|
5150
5150
|
* 预览模式下是否显示快速答题按钮
|
|
5151
5151
|
*/
|
|
5152
5152
|
previewQuickAnswer: boolean;
|
|
5153
|
+
/**
|
|
5154
|
+
* 始终显示结束页面
|
|
5155
|
+
* 如果为真,那么提交答案请求接口出现错误时
|
|
5156
|
+
* 不显示错误页面,直接到结束节点
|
|
5157
|
+
*/
|
|
5158
|
+
ignoreSubmittingResult: boolean;
|
|
5153
5159
|
/**
|
|
5154
5160
|
* 是否初始页显示语言选择框
|
|
5155
5161
|
*/
|
|
@@ -9267,10 +9273,6 @@ interface CFPDEndNode
|
|
|
9267
9273
|
* 最小答题时间限制
|
|
9268
9274
|
*/
|
|
9269
9275
|
minTime: number;
|
|
9270
|
-
/**
|
|
9271
|
-
* 是否需要跳过该节点
|
|
9272
|
-
*/
|
|
9273
|
-
skipEnd?: boolean;
|
|
9274
9276
|
}
|
|
9275
9277
|
|
|
9276
9278
|
|
|
@@ -10644,7 +10646,7 @@ interface CFPDStartNode
|
|
|
10644
10646
|
*/
|
|
10645
10647
|
resumeEnabled: boolean;
|
|
10646
10648
|
/**
|
|
10647
|
-
*
|
|
10649
|
+
* 是否跳过首页自动答题
|
|
10648
10650
|
*/
|
|
10649
10651
|
startAuto: boolean;
|
|
10650
10652
|
|
|
@@ -10670,6 +10672,10 @@ interface CFPDStartNode
|
|
|
10670
10672
|
* 开始页面内嵌地址
|
|
10671
10673
|
*/
|
|
10672
10674
|
welcomeUrl: string;
|
|
10675
|
+
/**
|
|
10676
|
+
* 是否显示提交结果(否则始终显示结束页面)
|
|
10677
|
+
*/
|
|
10678
|
+
ignoreSubmittingResult: boolean;
|
|
10673
10679
|
/**
|
|
10674
10680
|
* 开始节点独立携带的多语言包
|
|
10675
10681
|
*/
|
package/package.json
CHANGED
|
@@ -1,29 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@choiceform/os-client-core",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.39",
|
|
4
4
|
"description": "choiceform survey client core",
|
|
5
5
|
"main": "./dist/core.js",
|
|
6
6
|
"repository": "https://github.com/choice-form/os-client-core",
|
|
7
7
|
"author": "fenyiwudian <laiq@cform.io>",
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"test": "node_modules/.bin/cf-auto --watch",
|
|
11
|
-
"start": "webpack-dev-server --env NODE_ENV=local --mode=development",
|
|
12
|
-
"start-node": "webpack-dev-server --config ./ssr.webpack.config.js --env NODE_ENV=local --mode=development",
|
|
13
|
-
"prod": "webpack --env NODE_ENV=prod --mode=production",
|
|
14
|
-
"staging": "webpack --env NODE_ENV=staging --mode=production",
|
|
15
|
-
"local": "webpack --env NODE_ENV=local --mode=development",
|
|
16
|
-
"pretypedoc": "node ./tool/pre-doc",
|
|
17
|
-
"typedoc": "node_modules/.bin/typedoc --out docs/content ./index.d.ts",
|
|
18
|
-
"posttypedoc": "node ./tool/post-doc",
|
|
19
|
-
"prepublishOnly": "npm run prod && node ./tool/pre-publish-only",
|
|
20
|
-
"postpublish": "node ./tool/post-publish",
|
|
21
|
-
"infer-serve": "node ./tool/infer-serve",
|
|
22
|
-
"release": "node tool/release.js",
|
|
23
|
-
"updatedocs": "node tool/update-docs.js",
|
|
24
|
-
"prepare": "husky install",
|
|
25
|
-
"format": "pretty-quick"
|
|
26
|
-
},
|
|
27
9
|
"files": [
|
|
28
10
|
"dist/**/*.js",
|
|
29
11
|
"index.d.ts",
|
|
@@ -70,11 +52,26 @@
|
|
|
70
52
|
"ua-parser-js": "^0.7.20"
|
|
71
53
|
},
|
|
72
54
|
"dependencies": {
|
|
73
|
-
"@choiceform/os-cfpd": "^3.2.
|
|
55
|
+
"@choiceform/os-cfpd": "^3.2.11",
|
|
74
56
|
"ts-loader": "^9.4.2",
|
|
75
57
|
"typescript": "^5.0.2",
|
|
76
58
|
"webpack": "^5.76.3",
|
|
77
59
|
"webpack-cli": "^5.0.1",
|
|
78
60
|
"webpack-dev-server": "^4.13.1"
|
|
61
|
+
},
|
|
62
|
+
"scripts": {
|
|
63
|
+
"test": "node_modules/.bin/cf-auto --watch",
|
|
64
|
+
"start": "webpack-dev-server --env NODE_ENV=local --mode=development",
|
|
65
|
+
"start-node": "webpack-dev-server --config ./ssr.webpack.config.js --env NODE_ENV=local --mode=development",
|
|
66
|
+
"prod": "webpack --env NODE_ENV=prod --mode=production",
|
|
67
|
+
"staging": "webpack --env NODE_ENV=staging --mode=production",
|
|
68
|
+
"local": "webpack --env NODE_ENV=local --mode=development",
|
|
69
|
+
"pretypedoc": "node ./tool/pre-doc",
|
|
70
|
+
"typedoc": "node_modules/.bin/typedoc --out docs/content ./index.d.ts",
|
|
71
|
+
"posttypedoc": "node ./tool/post-doc",
|
|
72
|
+
"infer-serve": "node ./tool/infer-serve",
|
|
73
|
+
"release": "node tool/release.js",
|
|
74
|
+
"updatedocs": "node tool/update-docs.js",
|
|
75
|
+
"format": "pretty-quick"
|
|
79
76
|
}
|
|
80
|
-
}
|
|
77
|
+
}
|