@choiceform/os-client-core 3.6.9 → 3.6.12

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/index.d.ts CHANGED
@@ -1348,6 +1348,10 @@ declare const enum EVENT_NAME {
1348
1348
  * 结束恢复答案
1349
1349
  */
1350
1350
  END_MEMORY = 'END_MEMORY',
1351
+ /**
1352
+ * 成功开始答题
1353
+ */
1354
+ START_OK = 'START_OK',
1351
1355
  }
1352
1356
 
1353
1357
  /**
@@ -13840,6 +13844,10 @@ interface CFPDLogicOptionBase {
13840
13844
  * 限制开始值
13841
13845
  */
13842
13846
  markStart: string | number;
13847
+ /**
13848
+ * 比较时是否无视大小写
13849
+ */
13850
+ ignoreCase: boolean;
13843
13851
  /**
13844
13852
  * 关联的内嵌变量
13845
13853
  */
@@ -15175,7 +15183,7 @@ interface CFPDRawVarIdentity {
15175
15183
  * 如果是`ALL`,则是所有次循环
15176
15184
  * 如果是某个循环选项的8位短id,则是该循环选项的这次循环
15177
15185
  */
15178
- loopRoundId?: 'ALL' | string;
15186
+ loopRoundId?: "ALL" | string;
15179
15187
  /**
15180
15188
  * 同上,但针对内层循环
15181
15189
  */
@@ -15183,17 +15191,14 @@ interface CFPDRawVarIdentity {
15183
15191
  /**
15184
15192
  * 同上,但针对内层循环
15185
15193
  */
15186
- innerLoopRoundId?: 'ALL' | string;
15194
+ innerLoopRoundId?: "ALL" | string;
15187
15195
  }
15188
15196
 
15189
-
15190
-
15191
-
15192
15197
  interface CFPDRawVarLimit {
15193
15198
  /**
15194
15199
  * 过滤方式类型
15195
15200
  */
15196
- limitType: number;
15201
+ limitType: LOGIC_OPR;
15197
15202
  /**
15198
15203
  * 过滤参考开始值
15199
15204
  */
@@ -15210,6 +15215,10 @@ interface CFPDRawVarLimit {
15210
15215
  * 随机抽取数量
15211
15216
  */
15212
15217
  limitRnd: string;
15218
+ /**
15219
+ * 比较时是否无视大小写
15220
+ */
15221
+ ignoreCase: boolean;
15213
15222
  }
15214
15223
 
15215
15224
  /**
@@ -15252,6 +15261,7 @@ interface CFPDRawVarDetail {
15252
15261
  config: CFPDRawVarConfig;
15253
15262
  }
15254
15263
 
15264
+
15255
15265
  // -------------- node_modules/@choiceform/os-cfpd/types/variable/style-group.d.ts ---------------
15256
15266
 
15257
15267
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@choiceform/os-client-core",
3
- "version": "3.6.9",
3
+ "version": "3.6.12",
4
4
  "description": "choiceform survey client core",
5
5
  "main": "./dist/core.js",
6
6
  "repository": "https://github.com/choice-form/os-client-core",
@@ -48,8 +48,9 @@
48
48
  "@typescript-eslint/eslint-plugin": "^4.31.0",
49
49
  "@typescript-eslint/parser": "^4.31.0",
50
50
  "babel-loader": "^8.1.0",
51
- "cf-auto": "^1.103.0",
51
+ "cf-auto": "2.0.0",
52
52
  "chokidar": "^3.0.2",
53
+ "chromedriver": "^104.0.0",
53
54
  "clean-webpack-plugin": "^3.0.0",
54
55
  "copy-webpack-plugin": "^6.0.3",
55
56
  "core-js": "^3.2.1",
@@ -69,7 +70,7 @@
69
70
  "ua-parser-js": "^0.7.20"
70
71
  },
71
72
  "dependencies": {
72
- "@choiceform/os-cfpd": "^3.2.1",
73
+ "@choiceform/os-cfpd": "^3.2.2",
73
74
  "ts-loader": "^9.2.5",
74
75
  "typescript": "^4.4.2",
75
76
  "webpack": "^5.52.0",