@choiceform/os-client-core 3.4.37 → 3.4.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/changelog.md +13 -0
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +32 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -6719,6 +6719,10 @@ interface ICFStartMiniState extends ICFCustomLogo {
|
|
|
6719
6719
|
* 预览模式下是否显示快速答题按钮
|
|
6720
6720
|
*/
|
|
6721
6721
|
previewQuickAnswer: boolean;
|
|
6722
|
+
/**
|
|
6723
|
+
* 是否初始页显示语言选择框
|
|
6724
|
+
*/
|
|
6725
|
+
showInitLangSelect?: boolean;
|
|
6722
6726
|
/**
|
|
6723
6727
|
* 是否显示题目编号
|
|
6724
6728
|
*/
|
|
@@ -6790,6 +6794,10 @@ interface CFStartState extends ICFTranMiniState, ICFMiniState, CFStateBase, ICFC
|
|
|
6790
6794
|
* @ignore
|
|
6791
6795
|
*/
|
|
6792
6796
|
langResume?: boolean;
|
|
6797
|
+
/**
|
|
6798
|
+
* 是否初始页显示语言选择框
|
|
6799
|
+
*/
|
|
6800
|
+
showInitLangSelect?: boolean;
|
|
6793
6801
|
/**
|
|
6794
6802
|
* 图片
|
|
6795
6803
|
*/
|
|
@@ -12385,7 +12393,15 @@ interface CFPDSlideRateNode extends CFPDSubjectNode, CFPDMFillableNode {
|
|
|
12385
12393
|
// -------------- node_modules/@choiceform/os-cfpd/types/node/start.d.ts ---------------
|
|
12386
12394
|
|
|
12387
12395
|
|
|
12388
|
-
|
|
12396
|
+
/**
|
|
12397
|
+
* url参数设置
|
|
12398
|
+
*/
|
|
12399
|
+
interface CFPDUrlParamItem {
|
|
12400
|
+
/**
|
|
12401
|
+
* 参数名
|
|
12402
|
+
*/
|
|
12403
|
+
name: string;
|
|
12404
|
+
}
|
|
12389
12405
|
|
|
12390
12406
|
/**
|
|
12391
12407
|
* 开始节点JSON数据结构
|
|
@@ -12397,6 +12413,13 @@ interface CFPDStartNode
|
|
|
12397
12413
|
CFPDMQuesNode,
|
|
12398
12414
|
CFPDMOutputNode,
|
|
12399
12415
|
CFPDMLayoutNode {
|
|
12416
|
+
|
|
12417
|
+
|
|
12418
|
+
/**
|
|
12419
|
+
* url参数
|
|
12420
|
+
*/
|
|
12421
|
+
urlParams: CFPDUrlParamItem[]
|
|
12422
|
+
|
|
12400
12423
|
/**
|
|
12401
12424
|
* 问卷答题页面开始时显示的标题,如果为空,则答题页会显示项目名称。
|
|
12402
12425
|
*/
|
|
@@ -12486,6 +12509,14 @@ interface CFPDStartNode
|
|
|
12486
12509
|
* 是否允许隐藏在预览模式下显示
|
|
12487
12510
|
*/
|
|
12488
12511
|
previewShadowNodes: boolean;
|
|
12512
|
+
/**
|
|
12513
|
+
* 预览模式下显示快速答题按钮
|
|
12514
|
+
*/
|
|
12515
|
+
previewQuickAnswer: boolean;
|
|
12516
|
+
/**
|
|
12517
|
+
* 是否在初始页显示语言切换
|
|
12518
|
+
*/
|
|
12519
|
+
showInitLangSelect: boolean;
|
|
12489
12520
|
/**
|
|
12490
12521
|
* 是否显示答题进度条
|
|
12491
12522
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@choiceform/os-client-core",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.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",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"ua-parser-js": "^0.7.20"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@choiceform/os-cfpd": "^3.1.
|
|
71
|
+
"@choiceform/os-cfpd": "^3.1.15",
|
|
72
72
|
"ts-loader": "^9.2.5",
|
|
73
73
|
"typescript": "^4.4.2",
|
|
74
74
|
"webpack": "^5.52.0",
|