@choiceform/os-client-core 3.6.28 → 3.6.30
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 +12 -0
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +13 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -8560,6 +8560,17 @@ declare const enum OPTION_POSITION {
|
|
|
8560
8560
|
* 置底
|
|
8561
8561
|
*/
|
|
8562
8562
|
BOTTOM_FIXED = "bottom-fixed",
|
|
8563
|
+
|
|
8564
|
+
/**
|
|
8565
|
+
* 置左
|
|
8566
|
+
*/
|
|
8567
|
+
LEFT_FIXED = "left-fixed",
|
|
8568
|
+
|
|
8569
|
+
/**
|
|
8570
|
+
* 置右边
|
|
8571
|
+
*/
|
|
8572
|
+
RIGHT_FIXED = "right-fixed",
|
|
8573
|
+
|
|
8563
8574
|
}
|
|
8564
8575
|
|
|
8565
8576
|
|
|
@@ -11216,7 +11227,7 @@ type CFPDMatrixYOptionDimension = string | MATRIX_OPTION_DISPLAY_MODE;
|
|
|
11216
11227
|
/**
|
|
11217
11228
|
* 列选项
|
|
11218
11229
|
*/
|
|
11219
|
-
interface CFPDMatrixXOption extends
|
|
11230
|
+
interface CFPDMatrixXOption extends CFPDMPositionOption {
|
|
11220
11231
|
/**
|
|
11221
11232
|
* 宽度配置
|
|
11222
11233
|
*/
|
|
@@ -11230,7 +11241,7 @@ interface CFPDMatrixXOption extends CFPDOption {
|
|
|
11230
11241
|
/**
|
|
11231
11242
|
* 行选项
|
|
11232
11243
|
*/
|
|
11233
|
-
interface CFPDMatrixYOption extends
|
|
11244
|
+
interface CFPDMatrixYOption extends CFPDMPositionOption {
|
|
11234
11245
|
/**
|
|
11235
11246
|
* 高度配置
|
|
11236
11247
|
*/
|
|
@@ -11251,7 +11262,6 @@ interface CFPDMatrixOption extends CFPDOption {
|
|
|
11251
11262
|
yid?: string;
|
|
11252
11263
|
}
|
|
11253
11264
|
|
|
11254
|
-
|
|
11255
11265
|
// -------------- node_modules/@choiceform/os-cfpd/types/option/max-diff.d.ts ---------------
|
|
11256
11266
|
|
|
11257
11267
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@choiceform/os-client-core",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.30",
|
|
4
4
|
"description": "choiceform survey client core",
|
|
5
5
|
"main": "./dist/core.js",
|
|
6
6
|
"repository": "https://github.com/choice-form/os-client-core",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"ua-parser-js": "^0.7.20"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@choiceform/os-cfpd": "^3.2.
|
|
73
|
+
"@choiceform/os-cfpd": "^3.2.7",
|
|
74
74
|
"ts-loader": "^9.2.5",
|
|
75
75
|
"typescript": "^4.4.2",
|
|
76
76
|
"webpack": "^5.52.0",
|