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.
Files changed (82) hide show
  1. package/fonts.fontless.css +1 -1
  2. package/fonts.fontless.min.css +1 -1
  3. package/i18n/arabic.js +1 -1
  4. package/i18n/arabic.min.js +1 -1
  5. package/i18n/bulgarian.js +1 -1
  6. package/i18n/bulgarian.min.js +1 -1
  7. package/i18n/croatian.js +1 -1
  8. package/i18n/croatian.min.js +1 -1
  9. package/i18n/czech.js +1 -1
  10. package/i18n/czech.min.js +1 -1
  11. package/i18n/danish.js +1 -1
  12. package/i18n/danish.min.js +1 -1
  13. package/i18n/dutch.js +1 -1
  14. package/i18n/dutch.min.js +1 -1
  15. package/i18n/english.js +9 -2
  16. package/i18n/english.js.map +1 -1
  17. package/i18n/english.min.js +2 -2
  18. package/i18n/finnish.js +1 -1
  19. package/i18n/finnish.min.js +1 -1
  20. package/i18n/french.js +1 -1
  21. package/i18n/french.min.js +1 -1
  22. package/i18n/german.js +1 -1
  23. package/i18n/german.min.js +1 -1
  24. package/i18n/hungarian.js +1 -1
  25. package/i18n/hungarian.min.js +1 -1
  26. package/i18n/index.js +1 -1
  27. package/i18n/index.min.js +1 -1
  28. package/i18n/indonesian.js +1 -1
  29. package/i18n/indonesian.min.js +1 -1
  30. package/i18n/italian.js +1 -1
  31. package/i18n/italian.min.js +1 -1
  32. package/i18n/japanese.js +1 -1
  33. package/i18n/japanese.min.js +1 -1
  34. package/i18n/korean.js +1 -1
  35. package/i18n/korean.min.js +1 -1
  36. package/i18n/malay.js +1 -1
  37. package/i18n/malay.min.js +1 -1
  38. package/i18n/mongolian.js +1 -1
  39. package/i18n/mongolian.min.js +1 -1
  40. package/i18n/norwegian.js +1 -1
  41. package/i18n/norwegian.min.js +1 -1
  42. package/i18n/persian.js +1 -1
  43. package/i18n/persian.min.js +1 -1
  44. package/i18n/polish.js +1 -1
  45. package/i18n/polish.min.js +1 -1
  46. package/i18n/portuguese.js +1 -1
  47. package/i18n/portuguese.min.js +1 -1
  48. package/i18n/russian.js +1 -1
  49. package/i18n/russian.min.js +1 -1
  50. package/i18n/simplified-chinese.js +1 -1
  51. package/i18n/simplified-chinese.min.js +1 -1
  52. package/i18n/slovak.js +1 -1
  53. package/i18n/slovak.min.js +1 -1
  54. package/i18n/spanish.js +1 -1
  55. package/i18n/spanish.min.js +1 -1
  56. package/i18n/swedish.js +1 -1
  57. package/i18n/swedish.min.js +1 -1
  58. package/i18n/tajik.js +1 -1
  59. package/i18n/tajik.min.js +1 -1
  60. package/i18n/traditional-chinese.js +1 -1
  61. package/i18n/traditional-chinese.min.js +1 -1
  62. package/i18n/turkish.js +1 -1
  63. package/i18n/turkish.min.js +1 -1
  64. package/package.json +2 -2
  65. package/survey-creator-core.css +36 -20
  66. package/survey-creator-core.fontless.css +35 -19
  67. package/survey-creator-core.fontless.css.map +1 -1
  68. package/survey-creator-core.fontless.min.css +2 -2
  69. package/survey-creator-core.i18n.js +1 -1
  70. package/survey-creator-core.i18n.min.js +1 -1
  71. package/survey-creator-core.js +130 -49
  72. package/survey-creator-core.js.map +1 -1
  73. package/survey-creator-core.min.css +3 -3
  74. package/survey-creator-core.min.js +5 -5
  75. package/typings/components/tabs/theme-builder.d.ts +1 -1
  76. package/typings/components/tabs/theme-plugin.d.ts +1 -0
  77. package/typings/creator-base.d.ts +5 -5
  78. package/typings/creator-options.d.ts +1 -1
  79. package/typings/creator-settings.d.ts +6 -0
  80. package/typings/editorLocalization.d.ts +7 -0
  81. package/typings/localization/english.d.ts +7 -0
  82. 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);
@@ -11,6 +11,7 @@ export declare class ThemeTabPlugin implements ICreatorPlugin {
11
11
  private prevPageAction;
12
12
  private nextPageAction;
13
13
  private themeSettingsAction;
14
+ private saveThemeAction;
14
15
  private resetTheme;
15
16
  private importAction;
16
17
  private exportAction;
@@ -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;
@@ -41,6 +41,7 @@ export declare var propertyGridCss: {
41
41
  button: string;
42
42
  buttonRemove: string;
43
43
  buttonAdd: string;
44
+ panelWrapper: string;
44
45
  progressTop: string;
45
46
  progressBottom: string;
46
47
  buttonPrev: string;