survey-creator-core 1.9.63 → 1.9.65
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/package.json +2 -2
- package/survey-creator-core.css +15 -22
- package/survey-creator-core.d.ts +22 -11
- package/survey-creator-core.fontless.css +14 -21
- package/survey-creator-core.fontless.min.css +4 -4
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +54 -28
- package/survey-creator-core.min.css +5 -5
- package/survey-creator-core.min.js +2 -2
package/survey-creator-core.d.ts
CHANGED
|
@@ -277,6 +277,9 @@ declare module "localization/english" {
|
|
|
277
277
|
url: string;
|
|
278
278
|
path: string;
|
|
279
279
|
valueName: string;
|
|
280
|
+
choicesbyurl: {
|
|
281
|
+
valueName: string;
|
|
282
|
+
};
|
|
280
283
|
titleName: string;
|
|
281
284
|
imageLinkName: string;
|
|
282
285
|
allowEmptyResponse: string;
|
|
@@ -770,6 +773,9 @@ declare module "localization/english" {
|
|
|
770
773
|
columnColCount: string;
|
|
771
774
|
autocomplete: string;
|
|
772
775
|
valueName: string;
|
|
776
|
+
choicesbyurl: {
|
|
777
|
+
valueName: string;
|
|
778
|
+
};
|
|
773
779
|
keyName: string;
|
|
774
780
|
};
|
|
775
781
|
p: {
|
|
@@ -1367,6 +1373,9 @@ declare module "editorLocalization" {
|
|
|
1367
1373
|
url: string;
|
|
1368
1374
|
path: string;
|
|
1369
1375
|
valueName: string;
|
|
1376
|
+
choicesbyurl: {
|
|
1377
|
+
valueName: string;
|
|
1378
|
+
};
|
|
1370
1379
|
titleName: string;
|
|
1371
1380
|
imageLinkName: string;
|
|
1372
1381
|
allowEmptyResponse: string;
|
|
@@ -1860,6 +1869,9 @@ declare module "editorLocalization" {
|
|
|
1860
1869
|
columnColCount: string;
|
|
1861
1870
|
autocomplete: string;
|
|
1862
1871
|
valueName: string;
|
|
1872
|
+
choicesbyurl: {
|
|
1873
|
+
valueName: string;
|
|
1874
|
+
};
|
|
1863
1875
|
keyName: string;
|
|
1864
1876
|
};
|
|
1865
1877
|
p: {
|
|
@@ -6409,21 +6421,20 @@ declare module "creator-base" {
|
|
|
6409
6421
|
onSelectedElementChanged: CreatorEvent;
|
|
6410
6422
|
/**
|
|
6411
6423
|
* The event is fired then one need to choose files.
|
|
6412
|
-
|
|
6413
|
-
*
|
|
6414
|
-
*
|
|
6415
|
-
*
|
|
6424
|
+
*
|
|
6425
|
+
* - `sender` - the survey creator object that fires the event
|
|
6426
|
+
* - `options.input` - file input HTML element
|
|
6427
|
+
* - `options.callback` - need to be called after files has been chosen
|
|
6428
|
+
* @see uploadFiles
|
|
6416
6429
|
*/
|
|
6417
6430
|
onOpenFileChooser: CreatorEvent;
|
|
6418
6431
|
/**
|
|
6419
6432
|
* The event is fired on uploading the files.
|
|
6420
|
-
|
|
6421
|
-
*
|
|
6422
|
-
* files the Javascript File objects array
|
|
6423
|
-
* callback called on upload complete
|
|
6424
|
-
*
|
|
6425
|
-
* a status and an image link
|
|
6426
|
-
* @see uploadFile
|
|
6433
|
+
*
|
|
6434
|
+
* - `sender` - the survey creator object that fires the event
|
|
6435
|
+
* - `options.files` - the Javascript File objects array
|
|
6436
|
+
* - `options.callback(status, imageLink)` - called on upload complete
|
|
6437
|
+
* @see uploadFiles
|
|
6427
6438
|
*/
|
|
6428
6439
|
onUploadFile: CreatorEvent;
|
|
6429
6440
|
/**
|