survey-creator-core 1.9.115 → 1.9.116
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/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/i18n/arabic.js +1 -1
- package/i18n/arabic.min.js +1 -1
- package/i18n/bulgarian.js +1 -1
- package/i18n/bulgarian.min.js +1 -1
- package/i18n/croatian.js +1 -1
- package/i18n/croatian.min.js +1 -1
- package/i18n/czech.js +1 -1
- package/i18n/czech.min.js +1 -1
- package/i18n/danish.js +1 -1
- package/i18n/danish.min.js +1 -1
- package/i18n/dutch.js +1 -1
- package/i18n/dutch.min.js +1 -1
- package/i18n/english.js +9 -2
- package/i18n/english.js.map +1 -1
- package/i18n/english.min.js +2 -2
- package/i18n/finnish.js +1 -1
- package/i18n/finnish.min.js +1 -1
- package/i18n/french.js +1 -1
- package/i18n/french.min.js +1 -1
- package/i18n/german.js +1 -1
- package/i18n/german.min.js +1 -1
- package/i18n/hungarian.js +1 -1
- package/i18n/hungarian.min.js +1 -1
- package/i18n/index.js +1 -1
- package/i18n/index.min.js +1 -1
- package/i18n/indonesian.js +1 -1
- package/i18n/indonesian.min.js +1 -1
- package/i18n/italian.js +1 -1
- package/i18n/italian.min.js +1 -1
- package/i18n/japanese.js +1 -1
- package/i18n/japanese.min.js +1 -1
- package/i18n/korean.js +1 -1
- package/i18n/korean.min.js +1 -1
- package/i18n/malay.js +1 -1
- package/i18n/malay.min.js +1 -1
- package/i18n/mongolian.js +1 -1
- package/i18n/mongolian.min.js +1 -1
- package/i18n/norwegian.js +1 -1
- package/i18n/norwegian.min.js +1 -1
- package/i18n/persian.js +1 -1
- package/i18n/persian.min.js +1 -1
- package/i18n/polish.js +1 -1
- package/i18n/polish.min.js +1 -1
- package/i18n/portuguese.js +1 -1
- package/i18n/portuguese.min.js +1 -1
- package/i18n/russian.js +1 -1
- package/i18n/russian.min.js +1 -1
- package/i18n/simplified-chinese.js +1 -1
- package/i18n/simplified-chinese.min.js +1 -1
- package/i18n/slovak.js +1 -1
- package/i18n/slovak.min.js +1 -1
- package/i18n/spanish.js +1 -1
- package/i18n/spanish.min.js +1 -1
- package/i18n/swedish.js +1 -1
- package/i18n/swedish.min.js +1 -1
- package/i18n/tajik.js +1 -1
- package/i18n/tajik.min.js +1 -1
- package/i18n/traditional-chinese.js +1 -1
- package/i18n/traditional-chinese.min.js +1 -1
- package/i18n/turkish.js +1 -1
- package/i18n/turkish.min.js +1 -1
- package/package.json +2 -2
- package/survey-creator-core.css +36 -20
- package/survey-creator-core.fontless.css +35 -19
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +2 -2
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +130 -49
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +3 -3
- package/survey-creator-core.min.js +5 -5
- package/typings/components/tabs/theme-builder.d.ts +1 -1
- package/typings/components/tabs/theme-plugin.d.ts +1 -0
- package/typings/creator-base.d.ts +5 -5
- package/typings/creator-options.d.ts +1 -1
- package/typings/creator-settings.d.ts +6 -0
- package/typings/editorLocalization.d.ts +7 -0
- package/typings/localization/english.d.ts +7 -0
- package/typings/property-grid-theme/property-grid.d.ts +1 -0
|
@@ -108,7 +108,7 @@ export declare class ThemeBuilder extends Base {
|
|
|
108
108
|
/**
|
|
109
109
|
* A function that is called [auto-save](https://surveyjs.io/survey-creator/documentation/api-reference/survey-creator#isAutoSave) is triggered to save a theme JSON object.
|
|
110
110
|
*
|
|
111
|
-
* For more information, refer to the [Save and Load Custom Themes](/survey-creator/documentation/theme-editor#save-and-load-custom-themes) help topic.
|
|
111
|
+
* For more information, refer to the [Save and Load Custom Themes](https://surveyjs.io/survey-creator/documentation/theme-editor#save-and-load-custom-themes) help topic.
|
|
112
112
|
*/
|
|
113
113
|
get saveThemeFunc(): any;
|
|
114
114
|
set saveThemeFunc(value: any);
|
|
@@ -666,12 +666,12 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
666
666
|
*
|
|
667
667
|
* - `sender`: `CreatorBase`\
|
|
668
668
|
* A Survey Creator instance that raised the event.
|
|
669
|
-
* - `options.actions`: [`IAction[]`](/form-library/documentation/api-reference/iaction)\
|
|
669
|
+
* - `options.actions`: [`IAction[]`](https://surveyjs.io/form-library/documentation/api-reference/iaction)\
|
|
670
670
|
* An array of actions. You can add, modify, or remove actions from this array.
|
|
671
|
-
* - `options.page`: [`PageModel`](/form-library/documentation/api-reference/page-model)\
|
|
671
|
+
* - `options.page`: [`PageModel`](https://surveyjs.io/form-library/documentation/api-reference/page-model)\
|
|
672
672
|
* A page for which the event is raised.
|
|
673
673
|
* - `options.addNewQuestion(type)`: Method\
|
|
674
|
-
* Adds a new question of a specified [`type`](/form-library/documentation/api-reference/question#getType) to the page.
|
|
674
|
+
* Adds a new question of a specified [`type`](https://surveyjs.io/form-library/documentation/api-reference/question#getType) to the page.
|
|
675
675
|
* @see onDefineElementMenuItems
|
|
676
676
|
*/
|
|
677
677
|
onGetPageActions: CreatorEvent;
|
|
@@ -1006,7 +1006,7 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
1006
1006
|
*/
|
|
1007
1007
|
maximumRateValues: number;
|
|
1008
1008
|
/**
|
|
1009
|
-
* Limits the number of nested panels within a [Panel](/form-library/documentation/api-reference/panel-model) element.
|
|
1009
|
+
* Limits the number of nested panels within a [Panel](https://surveyjs.io/form-library/documentation/api-reference/panel-model) element.
|
|
1010
1010
|
*
|
|
1011
1011
|
* Default value: -1 (unlimited)
|
|
1012
1012
|
*/
|
|
@@ -1039,7 +1039,7 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
1039
1039
|
/**
|
|
1040
1040
|
* A function that is called each time users click the [Save button](https://surveyjs.io/survey-creator/documentation/api-reference/survey-creator#showSaveButton) or [auto-save](https://surveyjs.io/survey-creator/documentation/api-reference/survey-creator#isAutoSave) is triggered to save a theme JSON object.
|
|
1041
1041
|
*
|
|
1042
|
-
* For more information, refer to the [Save and Load Custom Themes](/survey-creator/documentation/theme-editor#save-and-load-custom-themes) help topic.
|
|
1042
|
+
* For more information, refer to the [Save and Load Custom Themes](https://surveyjs.io/survey-creator/documentation/theme-editor#save-and-load-custom-themes) help topic.
|
|
1043
1043
|
* @see showThemeTab
|
|
1044
1044
|
* @see saveSurveyFunc
|
|
1045
1045
|
*/
|
|
@@ -200,7 +200,7 @@ export interface ICreatorOptions {
|
|
|
200
200
|
*/
|
|
201
201
|
maxLogicItemsInCondition?: number;
|
|
202
202
|
/**
|
|
203
|
-
* Limits the number of nested panels within a [Panel](/form-library/documentation/api-reference/panel-model) element.
|
|
203
|
+
* Limits the number of nested panels within a [Panel](https://surveyjs.io/form-library/documentation/api-reference/panel-model) element.
|
|
204
204
|
*
|
|
205
205
|
* Default value: -1 (unlimited)
|
|
206
206
|
*/
|
|
@@ -68,6 +68,12 @@ export declare var settings: {
|
|
|
68
68
|
columnName: boolean;
|
|
69
69
|
choiceValue: boolean;
|
|
70
70
|
};
|
|
71
|
+
/**
|
|
72
|
+
* Set these properties to false if you don't want to update expressions on deleting question
|
|
73
|
+
*/
|
|
74
|
+
updateExpressionsOnDeleting: {
|
|
75
|
+
question: boolean;
|
|
76
|
+
};
|
|
71
77
|
};
|
|
72
78
|
/**
|
|
73
79
|
* Determines which types of questions the conversion will be available for.
|
|
@@ -111,6 +111,8 @@ export declare var defaultStrings: {
|
|
|
111
111
|
translation: string;
|
|
112
112
|
saveSurvey: string;
|
|
113
113
|
saveSurveyTooltip: string;
|
|
114
|
+
saveTheme: string;
|
|
115
|
+
saveThemeTooltip: string;
|
|
114
116
|
designer: string;
|
|
115
117
|
jsonEditor: string;
|
|
116
118
|
jsonHideErrors: string;
|
|
@@ -691,6 +693,11 @@ export declare var defaultStrings: {
|
|
|
691
693
|
signaturepad: {
|
|
692
694
|
showPlaceholder: string;
|
|
693
695
|
placeholder: string;
|
|
696
|
+
signatureWidth: string;
|
|
697
|
+
signatureHeight: string;
|
|
698
|
+
signatureAutoScaleEnabled: string;
|
|
699
|
+
penMinWidth: string;
|
|
700
|
+
penMaxWidth: string;
|
|
694
701
|
};
|
|
695
702
|
filePlaceholder: string;
|
|
696
703
|
photoPlaceholder: string;
|
|
@@ -80,6 +80,8 @@ export declare var enStrings: {
|
|
|
80
80
|
translation: string;
|
|
81
81
|
saveSurvey: string;
|
|
82
82
|
saveSurveyTooltip: string;
|
|
83
|
+
saveTheme: string;
|
|
84
|
+
saveThemeTooltip: string;
|
|
83
85
|
designer: string;
|
|
84
86
|
jsonEditor: string;
|
|
85
87
|
jsonHideErrors: string;
|
|
@@ -660,6 +662,11 @@ export declare var enStrings: {
|
|
|
660
662
|
signaturepad: {
|
|
661
663
|
showPlaceholder: string;
|
|
662
664
|
placeholder: string;
|
|
665
|
+
signatureWidth: string;
|
|
666
|
+
signatureHeight: string;
|
|
667
|
+
signatureAutoScaleEnabled: string;
|
|
668
|
+
penMinWidth: string;
|
|
669
|
+
penMaxWidth: string;
|
|
663
670
|
};
|
|
664
671
|
filePlaceholder: string;
|
|
665
672
|
photoPlaceholder: string;
|