@choiceform/os-client-core 3.5.1-ssr-beta2 → 3.5.1-ssr
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/web-core.js +1 -1
- package/index.d.ts +3 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -217,9 +217,8 @@ interface CFEnvUi {
|
|
|
217
217
|
* 只有实现了动态模板机制的答题端需要配置这个方法
|
|
218
218
|
* 如果不配置则什么都不做
|
|
219
219
|
* @param template 模板名称
|
|
220
|
-
* @param state 答题状态
|
|
221
220
|
*/
|
|
222
|
-
|
|
221
|
+
loadNodeComponent?(template: CFNodeTemplate): Promise<CFUiComponent>;
|
|
223
222
|
/**
|
|
224
223
|
* 预加载当前问卷所有使用到的额UI动态插件的方法
|
|
225
224
|
* 只有实现了动态模板机制的答题端需要配置这个方法
|
|
@@ -268,7 +267,7 @@ interface CFApiReqResult {
|
|
|
268
267
|
/**
|
|
269
268
|
* 数据
|
|
270
269
|
*/
|
|
271
|
-
response: string
|
|
270
|
+
response: string;
|
|
272
271
|
}
|
|
273
272
|
|
|
274
273
|
interface CFUploadBaseConfig {
|
|
@@ -1090,7 +1089,7 @@ interface CFCore extends CFSetupOptions {
|
|
|
1090
1089
|
/**
|
|
1091
1090
|
* 获取主题
|
|
1092
1091
|
*/
|
|
1093
|
-
|
|
1092
|
+
theme: CFTheme;
|
|
1094
1093
|
/**
|
|
1095
1094
|
* 初始化实时预览
|
|
1096
1095
|
*/
|
package/package.json
CHANGED