survey-creator-core 1.9.125 → 1.9.126

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 (89) 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 +2 -2
  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 +11 -11
  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 +18 -35
  23. package/i18n/german.js.map +1 -1
  24. package/i18n/german.min.js +2 -2
  25. package/i18n/hebrew.js +1210 -0
  26. package/i18n/hebrew.js.map +1 -0
  27. package/i18n/hebrew.min.js +7 -0
  28. package/i18n/hungarian.js +1 -1
  29. package/i18n/hungarian.min.js +2 -2
  30. package/i18n/index.js +1132 -55
  31. package/i18n/index.js.map +1 -1
  32. package/i18n/index.min.js +2 -2
  33. package/i18n/indonesian.js +1 -1
  34. package/i18n/indonesian.min.js +2 -2
  35. package/i18n/italian.js +1 -1
  36. package/i18n/italian.min.js +2 -2
  37. package/i18n/japanese.js +1 -1
  38. package/i18n/japanese.min.js +2 -2
  39. package/i18n/korean.js +1 -1
  40. package/i18n/korean.min.js +2 -2
  41. package/i18n/malay.js +1 -1
  42. package/i18n/malay.min.js +2 -2
  43. package/i18n/mongolian.js +1 -1
  44. package/i18n/mongolian.min.js +2 -2
  45. package/i18n/norwegian.js +1 -1
  46. package/i18n/norwegian.min.js +2 -2
  47. package/i18n/persian.js +1 -1
  48. package/i18n/persian.min.js +2 -2
  49. package/i18n/polish.js +1 -1
  50. package/i18n/polish.min.js +2 -2
  51. package/i18n/portuguese.js +1 -1
  52. package/i18n/portuguese.min.js +2 -2
  53. package/i18n/russian.js +1 -1
  54. package/i18n/russian.min.js +2 -2
  55. package/i18n/simplified-chinese.js +1 -1
  56. package/i18n/simplified-chinese.min.js +2 -2
  57. package/i18n/slovak.js +1 -1
  58. package/i18n/slovak.min.js +2 -2
  59. package/i18n/spanish.js +1 -1
  60. package/i18n/spanish.min.js +2 -2
  61. package/i18n/swedish.js +1 -1
  62. package/i18n/swedish.min.js +2 -2
  63. package/i18n/tajik.js +1 -1
  64. package/i18n/tajik.min.js +2 -2
  65. package/i18n/traditional-chinese.js +1 -1
  66. package/i18n/traditional-chinese.min.js +2 -2
  67. package/i18n/turkish.js +1 -1
  68. package/i18n/turkish.min.js +2 -2
  69. package/package.json +2 -2
  70. package/survey-creator-core.css +178 -16
  71. package/survey-creator-core.fontless.css +177 -15
  72. package/survey-creator-core.fontless.css.map +1 -1
  73. package/survey-creator-core.fontless.min.css +9 -8
  74. package/survey-creator-core.i18n.js +1132 -55
  75. package/survey-creator-core.i18n.js.map +1 -1
  76. package/survey-creator-core.i18n.min.js +2 -2
  77. package/survey-creator-core.js +417 -185
  78. package/survey-creator-core.js.map +1 -1
  79. package/survey-creator-core.min.css +10 -9
  80. package/survey-creator-core.min.js +6 -6
  81. package/typings/components/image-item-value.d.ts +1 -0
  82. package/typings/components/question.d.ts +2 -0
  83. package/typings/components/switcher/switcher.d.ts +6 -0
  84. package/typings/components/tabs/theme-builder.d.ts +2 -0
  85. package/typings/creator-base.d.ts +121 -44
  86. package/typings/creator-settings.d.ts +1 -0
  87. package/typings/editorLocalization.d.ts +8 -8
  88. package/typings/entries/index.d.ts +1 -0
  89. package/typings/localization/english.d.ts +8 -8
@@ -12,6 +12,7 @@ export declare class ImageItemValueWrapperViewModel extends ItemValueWrapperView
12
12
  constructor(creator: CreatorBase, question: QuestionSelectBase, item: ImageItemValue, templateData: any, itemsRoot: HTMLElement);
13
13
  getRootCss(): string;
14
14
  getIsNewItemSingle(): boolean;
15
+ get canRenderControls(): boolean;
15
16
  chooseFile(model: ImageItemValueWrapperViewModel): void;
16
17
  uploadFiles(files: any): void;
17
18
  chooseNewFile(model: ImageItemValueWrapperViewModel): void;
@@ -24,9 +24,11 @@ export declare class QuestionAdornerViewModel extends SurveyElementAdornerBase {
24
24
  get isBannerShowing(): boolean;
25
25
  private get isUsingCarryForward();
26
26
  private get isUsingRestfull();
27
+ private get isMessagePanelVisible();
27
28
  createBannerParams(): QuestionBannerParams;
28
29
  private createCarryForwardParams;
29
30
  private createUsingRestfulParams;
31
+ private createCustomMessagePanel;
30
32
  dispose(): void;
31
33
  get isDraggable(): boolean;
32
34
  hover(event: MouseEvent, element: HTMLElement | any): void;
@@ -0,0 +1,6 @@
1
+ import { Action } from "survey-core";
2
+ export declare class Switcher extends Action {
3
+ checked: boolean;
4
+ getSwitcherIconCss(): string;
5
+ getActionBarItemCss(): string;
6
+ }
@@ -39,6 +39,7 @@ export declare class ThemeBuilder extends Base {
39
39
  themeName: any;
40
40
  themePalette: any;
41
41
  themeMode: any;
42
+ groupAppearanceAdvancedMode: boolean;
42
43
  getFullThemeName(_themeName?: string): any;
43
44
  get survey(): SurveyModel;
44
45
  get pageActions(): Array<Action>;
@@ -96,6 +97,7 @@ export declare class ThemeBuilder extends Base {
96
97
  private updateDependentQuestionValues;
97
98
  private setThemeCssVariablesChanges;
98
99
  protected createThemeEditorSurvey(): SurveyModel;
100
+ private createAppearanceAdvancedModeAction;
99
101
  findSuitableTheme(themeName: string): ITheme;
100
102
  private patchFileEditors;
101
103
  private getCoverJson;
@@ -250,12 +250,6 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
250
250
  * A Boolean value that specifies the property's read-only status.
251
251
  */
252
252
  onGetPropertyReadOnly: CreatorEvent;
253
- /**
254
- * The event is fired when the survey creator creates a survey object (Survey.Survey).
255
- *- sender the survey creator object that fires the event
256
- *- options.survey the survey object showing in the creator.
257
- *- options.reason indicates what component of the creator requests the survey. There are several reason types: "designer" - survey for designer survey, "test" - survey for "Preview" tab and "conditionEditor", "defaultValueEditor", "restfulEditor" - surveys for different property editors.
258
- */
259
253
  onSurveyInstanceCreated: CreatorEvent;
260
254
  /**
261
255
  * An event that is raised when Survey Creator obtains a survey element name to display it in the UI.
@@ -285,15 +279,22 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
285
279
  */
286
280
  onGetObjectDisplayName: CreatorEvent;
287
281
  /**
288
- * This event is raised after a user has edited a text value on the design surface. This value may include HTML markup. You can handle the `onHtmlToMarkdown` event to convert the HTML markup to Markdown.
282
+ * An event that is raised after a user has edited a text value on the design surface. This value may include HTML markup. You can handle the `onHtmlToMarkdown` event to convert the HTML markup to Markdown.
289
283
  *
290
284
  * The event handler accepts the following arguments:
291
285
  *
292
- * - `sender` - A Survey Creator instance that raised the event.
293
- * - `options.element` - The instance of a survey element (survey, page, panel, question) that the user configures.
294
- * - `options.name` - The name of a property whose value has been edited.
295
- * - `options.html` - HTML content. Pass this field's value to an HTML-to-Markdown converter.
296
- * - `options.text` - A text string that may contain Markdown. Assign the result of the HTML-to-Markdown conversion to this field.
286
+ * Parameters:
287
+ *
288
+ * - `sender`: `CreatorBase`\
289
+ * A Survey Creator instance that raised the event.
290
+ * - `options.element`: `any`\
291
+ * The instance of a survey element (survey, page, panel, question) that the user configures.
292
+ * - `options.name`: `string`\
293
+ * The name of a property whose value has been edited.
294
+ * - `options.html`: `string`\
295
+ * HTML content. Pass this field's value to an HTML-to-Markdown converter.
296
+ * - `options.text`: `string`\
297
+ * A text string that may contain Markdown. Assign the result of the HTML-to-Markdown conversion to this field.
297
298
  */
298
299
  onHtmlToMarkdown: CreatorEvent;
299
300
  /**
@@ -365,42 +366,67 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
365
366
  onShowingProperty: CreatorEvent;
366
367
  onCanShowProperty: CreatorEvent;
367
368
  /**
368
- * The event is called after a survey that represents the Property Grid is created and all its questions (property editors) are setup.
369
- * You can use this event to modify this survey to change the property grid behavior
370
- *- options.obj the survey object that is currently editing in the property grid
371
- *- options.survey the property grid survey
369
+ * An event that is raised when a [survey that represents the Property Grid](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys) is instantiated. Handle this event to customize the Property Grid by modifying the survey.
370
+ *
371
+ * Parameters:
372
+ *
373
+ * - `sender`: `CreatorBase`\
374
+ * A Survey Creator instance that raised the event.
375
+ * - `options.object`: `any`\
376
+ * A survey element being edited in the Property Grid.
377
+ * - `options.survey`: [`SurveyModel`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model)
378
+ * A survey that respresents the Property Grid. Use the `SurveyModel` API to modify the survey.
379
+ * @see onPropertyEditorCreated
372
380
  */
373
381
  onPropertyGridSurveyCreated: CreatorEvent;
374
382
  /**
375
- * The event is called after a property editor (in fact a survey question) has been created and all it's properties have been assign.
376
- * You can use this event to modify the property editor properties or set event handlers to customize it's behavior
377
- *- options.obj the survey object that is currently editing in the property grid
378
- *- options.property the property that the current property editor is editing
379
- *- options.editor the property editor. In fact it is a survey question. We are using a heavily customizable survey as a property grid in Creator V2. It means that every property editor is a question.
380
- */
383
+ * An event that is raised when a property editor is created in the Property Grid. Use this event to modify the property editor or add event handlers to it.
384
+ *
385
+ * Parameters:
386
+ *
387
+ * - `sender`: `CreatorBase`\
388
+ * A Survey Creator instance that raised the event.
389
+ * - `options.editor`: [`Question`](https://surveyjs.io/form-library/documentation/api-reference/question)\
390
+ * A property editor. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys).
391
+ * - `options.property`: `JsonObjectProperty`\
392
+ * A property that corresponds to the created property editor.
393
+ * @see onPropertyGridSurveyCreated
394
+ */
381
395
  onPropertyEditorCreated: CreatorEvent;
382
396
  /**
383
- * The event is called after a property editor setups its title actions.
384
- * You can use this event to modify the property editor title actions
385
- *- options.obj the survey object that is currently editing in the property grid
386
- *- options.property the property that the current property editor is editing
387
- *- options.editor the property editor. In fact it is a survey question. We are using a heavily customizable survey as a property grid in Creator V2. It means that every property editor is a question.
388
- *- options.titleActions the list of title actions.
397
+ * An event that is raised when title actions are added to a property editor. Title actions are most often used to reveal hints for properties configured by users. Handle this event you want to add, remove, or modify the title actions.
398
+ *
399
+ * Parameters:
400
+ *
401
+ * - `sender`: `CreatorBase`\
402
+ * A Survey Creator instance that raised the event.
403
+ * - `options.object`: `any`\
404
+ * A survey element being edited in the Property Grid.
405
+ * - `options.editor`: [`Question`](https://surveyjs.io/form-library/documentation/api-reference/question)\
406
+ * A property editor that contains the title actions. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys).
407
+ * - `options.property`: `JsonObjectProperty`\
408
+ * A property that corresponds to the property editor.
409
+ * - `options.titleActions`: [`IAction[]`](https://surveyjs.io/form-library/documentation/api-reference/iaction)\
410
+ * A list of title actions.
389
411
  */
390
412
  onPropertyEditorUpdateTitleActions: CreatorEvent;
391
413
  /**
392
- * An event that is raised before Survey Creator displays a pop-up window called from the Property Grid. This window allows users to edit choices, conditions, and so on.
393
- *
394
- * Use this event to customize the pop-up window, for example, add custom action buttons.
414
+ * An event that is raised before Survey Creator displays a pop-up window called from the Property Grid. This window allows users to edit choices, conditions, etc. Use this event to customize the pop-up window, for example, add custom action buttons.
395
415
  *
396
416
  * Parameters:
397
417
  *
398
- * - `sender` - A Survey Creator instance that raised the event.
399
- * - `options.obj` - An instance of a survey element (question or panel) that users are configuring in the Property Grid.
400
- * - `options.property`- A `JsonObjectProperty` object with metadata about the property being edited.
401
- * - `options.editor` - A property editor. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys).
402
- * - `options.popupEditor` - An editor inside the pop-up window.
403
- * - `options.popupModel` - A `PopupBaseViewModel` object that describes the pop-up window model. Use `options.popupModel.footerToolbar` to access the actions at the bottom of the window.
418
+ * - `sender`: `CreatorBase`\
419
+ * A Survey Creator instance that raised the event.
420
+ * - `options.obj`: `any`\
421
+ * The instance of a survey element (question or panel) that users are configuring in the Property Grid.
422
+ * - `options.property`: `JsonObjectProperty`\
423
+ * A property being edited.
424
+ * - `options.editor`: [`Question`](https://surveyjs.io/form-library/documentation/api-reference/question)\
425
+ * A property editor. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys).
426
+ * - `options.popupEditor`: `any`\
427
+ * An editor inside the pop-up window.
428
+ * - `options.popupModel`: `PopupBaseViewModel`\
429
+ * A pop-up window model. Use `options.popupModel.footerToolbar` to access the actions at the bottom of the window.
404
430
  */
405
431
  onPropertyGridShowModal: CreatorEvent;
406
432
  onCanDeleteItem: CreatorEvent;
@@ -449,12 +475,6 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
449
475
  *- options.editorOptions.itemsEntryType a string property, 'form' by default. Set it 'fast' to show "Manual Entry" tab for "choices" property by default.
450
476
  */
451
477
  onSetPropertyEditorOptions: CreatorEvent;
452
- /**
453
- * The event is called on generation a new name for a new created element.
454
- *- sender the survey creator object that fires the event
455
- *- options.element a new created survey element. It can be question, panel or page
456
- *- options.name a new suggested name, that is unique for the current survey. You can suggest your own name. If it is unique, creator will assign it to the element.
457
- */
458
478
  onGenerateNewName: CreatorEvent;
459
479
  /**
460
480
  * An event that is raised when Survey Creator validates a modified value of a survey element property. Use this event to display a custom error message when the value is incorrect.
@@ -627,7 +647,7 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
627
647
  * The question users added.
628
648
  * - `options.page`: [`PageModel`](https://surveyjs.io/form-library/documentation/api-reference/page-model)\
629
649
  * A page to which the question was added.
630
- * - `options.reason`: `"DROPPED_FROM_TOOLBOX"` | `"ADDED_FROM_PAGEBUTTON"` | `"ELEMENT_COPIED"`\
650
+ * - `options.reason`: `"DROPPED_FROM_TOOLBOX"` | `"ADDED_FROM_PAGEBUTTON"` | `"ELEMENT_COPIED"` | `"ELEMENT_CONVERTED"`\
631
651
  * A value that indicates how the question was added: dragged from the [Toolbox](https://surveyjs.io/survey-creator/documentation/toolbox-customization), created using the Add Question button, or duplicated.
632
652
  *
633
653
  * [Customize Survey Elements on Creation](https://surveyjs.io/survey-creator/documentation/customize-survey-creation-process#customize-survey-elements-on-creation (linkStyle))
@@ -950,6 +970,63 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
950
970
  * @see onDragEnd
951
971
  */
952
972
  onDragDropAllow: CreatorEvent;
973
+ /**
974
+ * An event that allows you to create a custom message panel.
975
+ *
976
+ * Parameters:
977
+ *
978
+ * - `sender`: `CreatorBase`\
979
+ * A Survey Creator instance that raised the event.
980
+ * - `options.question`: [`Question`](https://surveyjs.io/form-library/documentation/question)\
981
+ * A question for which the event is raised.
982
+ * - `options.messageText`: `string`\
983
+ * A notification message that you want to display. Assign a custom string value to this parameter.
984
+ * - `options.actionText`: `string`\
985
+ * A caption text for the action button. Assign a custom string value to this parameter.
986
+ * - `options.onClick`: `function`\
987
+ * A function that is called when users click the action button. Assign a custom function to this parameter.
988
+ *
989
+ * A message panel displays a notification message instead of a question box on the design surface. A message panel contains a message and an action button. For instance, the following image illustrates a built-in message panel notifying survey authors that choice options are loaded from a web service:
990
+ *
991
+ * <img src="https://surveyjs.io/stay-updated/release-notes/articles/v1.9.126/creator-message-panel.png" alt="Survey Creator: A message panel" width="75%">
992
+ *
993
+ * To create a custom message panel, handle the `onCreateCustomMessagePanel` event. This event is raised for questions whose `isMessagePanelVisible` property set to `true`. The following code shows how to enable this property based on a condition. This code implements a custom data source selector for select-based questions (Dropdown, Checkboxes, Radio Button Group). When a survey author selects any data source other than "Custom", the `isMessagePanelVisible` property becomes enabled, indicating that the `onCreateCustomMessagePanel` event must be raised. A function that handles this event specifies custom message and action button texts and `onClick` event handler:
994
+ *
995
+ * ```js
996
+ * import { Serializer } from "survey-core";
997
+ * import { SurveyCreatorModel } from "survey-creator-core";
998
+ *
999
+ * Serializer.addProperty("selectbase", {
1000
+ * name: "choicesDataSource",
1001
+ * displayName: "Data source",
1002
+ * category: "choices",
1003
+ * choices: [
1004
+ * { text: "Country", value: "country" },
1005
+ * { text: "Region", value: "region" },
1006
+ * { text: "City", value: "city" },
1007
+ * { text: "Custom", value: "custom" }
1008
+ * ],
1009
+ * onSetValue: function (obj: any, value: any) {
1010
+ * // Set the custom property value
1011
+ * obj.setPropertyValue("choicesDataSource", value);
1012
+ * // Display the message panel based on a condition
1013
+ * obj.setPropertyValue("isMessagePanelVisible", value !== "custom");
1014
+ * }
1015
+ * });
1016
+ *
1017
+ * const creator = new SurveyCreatorModel({});
1018
+ *
1019
+ * creator.onCreateCustomMessagePanel.add((_, options) => {
1020
+ * options.messageText = "Choices for this question are loaded from a predefined data source. ";
1021
+ * options.actionText = "Go to settings";
1022
+ * // Focus the "Data source" editor within the Property Grid
1023
+ * options.onClick = () => {
1024
+ * creator.selectElement(options.question, "choicesDataSource");
1025
+ * };
1026
+ * });
1027
+ * ```
1028
+ */
1029
+ onCreateCustomMessagePanel: CreatorEvent;
953
1030
  getSurveyJSONTextCallback: () => {
954
1031
  text: string;
955
1032
  isModified: boolean;
@@ -50,6 +50,7 @@ export declare var settings: {
50
50
  showAddQuestionButton: boolean;
51
51
  };
52
52
  logic: {
53
+ questionSortOrder: string;
53
54
  defaultOperator: string;
54
55
  defaultOperators: {
55
56
  default: string;
@@ -1058,8 +1058,8 @@ export declare var defaultStrings: {
1058
1058
  "--primary-foreground": string;
1059
1059
  "--foreground": string;
1060
1060
  "--base-unit": string;
1061
+ advancedMode: string;
1061
1062
  groupGeneral: string;
1062
- groupAdvanced: string;
1063
1063
  groupHeader: string;
1064
1064
  groupBackground: string;
1065
1065
  groupAppearance: string;
@@ -1088,11 +1088,9 @@ export declare var defaultStrings: {
1088
1088
  backgroundImageAttachmentScroll: string;
1089
1089
  panelBackgroundTransparency: string;
1090
1090
  questionBackgroundTransparency: string;
1091
- questionPanel: string;
1092
1091
  questionTitle: string;
1093
- questionDescription: string;
1094
1092
  editorPanel: string;
1095
- editorFont: string;
1093
+ backgroundCornerRadius: string;
1096
1094
  backcolor: string;
1097
1095
  hovercolor: string;
1098
1096
  borderDecoration: string;
@@ -1100,7 +1098,9 @@ export declare var defaultStrings: {
1100
1098
  accentForeground: string;
1101
1099
  primaryForecolor: string;
1102
1100
  primaryForecolorLight: string;
1103
- linesColors: string;
1101
+ colorsTitle: string;
1102
+ font: string;
1103
+ lines: string;
1104
1104
  borderDefault: string;
1105
1105
  borderLight: string;
1106
1106
  fontFamily: string;
@@ -1117,7 +1117,8 @@ export declare var defaultStrings: {
1117
1117
  surveyTitle: string;
1118
1118
  surveyDescription: string;
1119
1119
  pageTitle: string;
1120
- pageDescription: string;
1120
+ titleFont: string;
1121
+ descriptionFont: string;
1121
1122
  boxShadowX: string;
1122
1123
  boxShadowY: string;
1123
1124
  boxShadowAddRule: string;
@@ -1126,8 +1127,7 @@ export declare var defaultStrings: {
1126
1127
  boxShadowSpread: string;
1127
1128
  boxShadowDrop: string;
1128
1129
  boxShadowInner: string;
1129
- questionShadow: string;
1130
- editorShadow: string;
1130
+ shadow: string;
1131
1131
  headerView: string;
1132
1132
  headerViewBasic: string;
1133
1133
  headerViewAdvanced: string;
@@ -66,6 +66,7 @@ export * from "../textWorker";
66
66
  export * from "../toolbox";
67
67
  export * from "../components/side-bar/side-bar-model";
68
68
  export * from "../components/side-bar/side-bar-tab-model";
69
+ export * from "../components/switcher/switcher";
69
70
  export * from "../utils/events";
70
71
  export * from "../utils/utils";
71
72
  export * from "../question-editor/definition";
@@ -1027,8 +1027,8 @@ export declare var enStrings: {
1027
1027
  "--primary-foreground": string;
1028
1028
  "--foreground": string;
1029
1029
  "--base-unit": string;
1030
+ advancedMode: string;
1030
1031
  groupGeneral: string;
1031
- groupAdvanced: string;
1032
1032
  groupHeader: string;
1033
1033
  groupBackground: string;
1034
1034
  groupAppearance: string;
@@ -1057,11 +1057,9 @@ export declare var enStrings: {
1057
1057
  backgroundImageAttachmentScroll: string;
1058
1058
  panelBackgroundTransparency: string;
1059
1059
  questionBackgroundTransparency: string;
1060
- questionPanel: string;
1061
1060
  questionTitle: string;
1062
- questionDescription: string;
1063
1061
  editorPanel: string;
1064
- editorFont: string;
1062
+ backgroundCornerRadius: string;
1065
1063
  backcolor: string;
1066
1064
  hovercolor: string;
1067
1065
  borderDecoration: string;
@@ -1069,7 +1067,9 @@ export declare var enStrings: {
1069
1067
  accentForeground: string;
1070
1068
  primaryForecolor: string;
1071
1069
  primaryForecolorLight: string;
1072
- linesColors: string;
1070
+ colorsTitle: string;
1071
+ font: string;
1072
+ lines: string;
1073
1073
  borderDefault: string;
1074
1074
  borderLight: string;
1075
1075
  fontFamily: string;
@@ -1086,7 +1086,8 @@ export declare var enStrings: {
1086
1086
  surveyTitle: string;
1087
1087
  surveyDescription: string;
1088
1088
  pageTitle: string;
1089
- pageDescription: string;
1089
+ titleFont: string;
1090
+ descriptionFont: string;
1090
1091
  boxShadowX: string;
1091
1092
  boxShadowY: string;
1092
1093
  boxShadowAddRule: string;
@@ -1095,8 +1096,7 @@ export declare var enStrings: {
1095
1096
  boxShadowSpread: string;
1096
1097
  boxShadowDrop: string;
1097
1098
  boxShadowInner: string;
1098
- questionShadow: string;
1099
- editorShadow: string;
1099
+ shadow: string;
1100
1100
  headerView: string;
1101
1101
  headerViewBasic: string;
1102
1102
  headerViewAdvanced: string;