survey-creator-core 1.9.109 → 1.9.111

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.
@@ -132,6 +132,8 @@ export declare var enStrings: {
132
132
  translationNoStrings: string;
133
133
  translationExportToSCVButton: string;
134
134
  translationImportFromSCVButton: string;
135
+ translateUsigAI: string;
136
+ translationDialogTitle: string;
135
137
  translationMergeLocaleWithDefault: string;
136
138
  translationPlaceHolder: string;
137
139
  themeExportButton: string;
@@ -162,9 +164,11 @@ export declare var enStrings: {
162
164
  question_visibilityName: string;
163
165
  question_enableName: string;
164
166
  question_requireName: string;
167
+ question_resetValue: string;
165
168
  column_visibilityName: string;
166
169
  column_enableName: string;
167
170
  column_requireName: string;
171
+ column_resetValue: string;
168
172
  trigger_completeName: string;
169
173
  trigger_setvalueName: string;
170
174
  trigger_copyvalueName: string;
@@ -258,6 +262,7 @@ export declare var enStrings: {
258
262
  fastEntry: string;
259
263
  fastEntryNonUniqueError: string;
260
264
  fastEntryChoicesCountError: string;
265
+ fastEntryChoicesMinCountError: string;
261
266
  fastEntryPlaceholder: string;
262
267
  formEntry: string;
263
268
  testService: string;
@@ -322,6 +327,8 @@ export declare var enStrings: {
322
327
  choicesOrder: string;
323
328
  visible: string;
324
329
  isRequired: string;
330
+ markRequired: string;
331
+ removeRequiredMark: string;
325
332
  isAllRowRequired: string;
326
333
  requiredErrorText: string;
327
334
  startWithNewLine: string;
@@ -403,7 +410,11 @@ export declare var enStrings: {
403
410
  imageHeight: string;
404
411
  imageWidth: string;
405
412
  };
413
+ survey: {
414
+ title: string;
415
+ };
406
416
  page: {
417
+ title: string;
407
418
  maxTimeToFinish: string;
408
419
  };
409
420
  question: {
@@ -639,6 +650,9 @@ export declare var enStrings: {
639
650
  pv: {
640
651
  true: string;
641
652
  false: string;
653
+ file: string;
654
+ camera: string;
655
+ "file-camera": string;
642
656
  inherit: string;
643
657
  show: string;
644
658
  hide: string;
@@ -897,6 +911,7 @@ export declare var enStrings: {
897
911
  descriptionLocation: string;
898
912
  defaultValueExpression: string;
899
913
  requiredIf: string;
914
+ resetValueIf: string;
900
915
  validators: string;
901
916
  bindings: string;
902
917
  renderAs: string;
@@ -973,6 +988,7 @@ export declare var enStrings: {
973
988
  "--base-unit": string;
974
989
  groupGeneral: string;
975
990
  groupAdvanced: string;
991
+ groupHeader: string;
976
992
  themeName: string;
977
993
  themeMode: string;
978
994
  themeModePanels: string;
@@ -983,11 +999,15 @@ export declare var enStrings: {
983
999
  primaryDefaultColor: string;
984
1000
  primaryDarkColor: string;
985
1001
  primaryLightColor: string;
1002
+ coverTitleForecolor: string;
1003
+ coverOverlap: string;
986
1004
  backgroundDimColor: string;
987
1005
  backgroundImage: string;
988
1006
  backgroundImageFitAuto: string;
989
1007
  backgroundImageFitCover: string;
990
1008
  backgroundImageFitContain: string;
1009
+ backgroundImageFitFill: string;
1010
+ backgroundImageFitTile: string;
991
1011
  backgroundOpacity: string;
992
1012
  backgroundImageAttachmentFixed: string;
993
1013
  backgroundImageAttachmentScroll: string;
@@ -1032,6 +1052,26 @@ export declare var enStrings: {
1032
1052
  boxShadowInner: string;
1033
1053
  questionShadow: string;
1034
1054
  editorShadow: string;
1055
+ headerView: string;
1056
+ headerViewTitle: string;
1057
+ headerViewCover: string;
1058
+ coverAreaWidth: string;
1059
+ coverAreaWidthSurvey: string;
1060
+ coverAreaWidthContainer: string;
1061
+ coverTextWidth: string;
1062
+ coverBackgroundColorSwitch: string;
1063
+ coverBackgroundColorNone: string;
1064
+ coverBackgroundColorAccentColor: string;
1065
+ coverBackgroundColorCustom: string;
1066
+ horizontalAlignmentLeft: string;
1067
+ horizontalAlignmentCenter: string;
1068
+ horizontalAlignmentRight: string;
1069
+ verticalAlignmentTop: string;
1070
+ verticalAlignmentMiddle: string;
1071
+ verticalAlignmentBottom: string;
1072
+ logoPosition: string;
1073
+ coverTitlePosition: string;
1074
+ coverDescriptionPosition: string;
1035
1075
  names: {
1036
1076
  default: string;
1037
1077
  sharp: string;
@@ -31,6 +31,7 @@ export declare abstract class PropertyGridEditorMatrix extends PropertyGridEdito
31
31
  getJSON(obj: Base, prop: JsonObjectProperty, options: ISurveyCreatorOptions): any;
32
32
  protected getMatrixJSON(obj: Base, prop: JsonObjectProperty, propNames: Array<string>, options: ISurveyCreatorOptions): any;
33
33
  protected getEmptyRowsText(prop: JsonObjectProperty): string;
34
+ protected getMinimumRowCount(obj: Base, prop: JsonObjectProperty, options: ISurveyCreatorOptions): number;
34
35
  protected getMaximumRowCount(obj: Base, prop: JsonObjectProperty, options: ISurveyCreatorOptions): number;
35
36
  protected filterPropertyNames(propNames: Array<string>): string[];
36
37
  protected getColumnsJSON(obj: Base, prop: JsonObjectProperty, propNames: Array<string>, options: ISurveyCreatorOptions): any;
@@ -51,6 +52,7 @@ export declare class PropertyGridEditorMatrixItemValues extends PropertyGridEdit
51
52
  protected getDefaulColumnNames(): Array<string>;
52
53
  protected getKeyValue(): string;
53
54
  protected getMatrixJSON(obj: Base, prop: JsonObjectProperty, propNames: Array<string>, options: ISurveyCreatorOptions): any;
55
+ protected getMinimumRowCount(obj: Base, prop: JsonObjectProperty, options: ISurveyCreatorOptions): number;
54
56
  protected getMaximumRowCount(obj: Base, prop: JsonObjectProperty, options: ISurveyCreatorOptions): number;
55
57
  private hasMultipleLanguage;
56
58
  private hasVisibleIfOrEnableIf;
@@ -16,6 +16,7 @@ export declare class DragDropSurveyElements extends DragDropCore<any> {
16
16
  protected dragOverLocation: DragTypeOverMeEnum;
17
17
  protected get draggedElementType(): string;
18
18
  protected isDraggedElementSelected: boolean;
19
+ maxNestedPanels: number;
19
20
  startDragToolboxItem(event: PointerEvent, draggedElementJson: JsonObject, toolboxItemModel: IQuestionToolboxItem): void;
20
21
  startDragSurveyElement(event: PointerEvent, draggedElement: any, isElementSelected?: boolean): void;
21
22
  protected getShortcutText(draggedElement: IShortcutText): string;
@@ -1,4 +1,4 @@
1
- import { Base, ISurveyElement, ItemValue, JsonObjectProperty, SurveyModel } from "survey-core";
1
+ import { Base, ISurveyElement, ItemValue, JsonObjectProperty, SurveyElement, SurveyModel } from "survey-core";
2
2
  import { ISurveyCreatorOptions } from "./creator-settings";
3
3
  export declare enum ObjType {
4
4
  Unknown = 0,
@@ -44,4 +44,5 @@ export declare class SurveyHelper {
44
44
  name: string;
45
45
  };
46
46
  static isSupportCellEditor(type: string): boolean;
47
+ static getElementDeepLength(element: SurveyElement): number;
47
48
  }
@@ -56,6 +56,8 @@ export declare class QuestionToolboxItem extends Action implements IQuestionTool
56
56
  isCopied: boolean;
57
57
  category: string;
58
58
  toJSON(): IQuestionToolboxItem;
59
+ get typeName(): string;
60
+ get isPanel(): boolean;
59
61
  }
60
62
  /**
61
63
  * The list of Toolbox items.