survey-react 1.9.112 → 1.9.114

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/survey.react.d.ts CHANGED
@@ -87,7 +87,7 @@ declare module "localization/english" {
87
87
  loadingFile: string;
88
88
  chooseFile: string;
89
89
  noFileChosen: string;
90
- fileDragAreaPlaceholder: string;
90
+ filePlaceholder: string;
91
91
  confirmDelete: string;
92
92
  keyDuplicationError: string;
93
93
  addColumn: string;
@@ -116,8 +116,8 @@ declare module "localization/english" {
116
116
  signaturePlaceHolder: string;
117
117
  chooseFileCaption: string;
118
118
  takePhotoCaption: string;
119
- cameraPlaceHolder: string;
120
- fileCameraDragAreaPlaceHolder: string;
119
+ photoPlaceholder: string;
120
+ fileOrPhotoPlaceholder: string;
121
121
  replaceFileCaption: string;
122
122
  removeFileCaption: string;
123
123
  booleanCheckedLabel: string;
@@ -204,7 +204,7 @@ declare module "surveyStrings" {
204
204
  loadingFile: string;
205
205
  chooseFile: string;
206
206
  noFileChosen: string;
207
- fileDragAreaPlaceholder: string;
207
+ filePlaceholder: string;
208
208
  confirmDelete: string;
209
209
  keyDuplicationError: string;
210
210
  addColumn: string;
@@ -233,8 +233,8 @@ declare module "surveyStrings" {
233
233
  signaturePlaceHolder: string;
234
234
  chooseFileCaption: string;
235
235
  takePhotoCaption: string;
236
- cameraPlaceHolder: string;
237
- fileCameraDragAreaPlaceHolder: string;
236
+ photoPlaceholder: string;
237
+ fileOrPhotoPlaceholder: string;
238
238
  replaceFileCaption: string;
239
239
  removeFileCaption: string;
240
240
  booleanCheckedLabel: string;
@@ -438,7 +438,7 @@ declare module "jsonobject" {
438
438
  classNamePart: string;
439
439
  baseClassName: string;
440
440
  defaultValueValue: any;
441
- defaultValueFunc: () => any;
441
+ defaultValueFunc: (obj: Base) => any;
442
442
  serializationProperty: string;
443
443
  displayName: string;
444
444
  category: string;
@@ -471,9 +471,11 @@ declare module "jsonobject" {
471
471
  get uniquePropertyName(): string;
472
472
  set uniquePropertyName(val: string);
473
473
  get hasToUseGetValue(): string | ((obj: any) => any);
474
+ getDefaultValue(obj: Base): any;
474
475
  get defaultValue(): any;
475
476
  set defaultValue(newValue: any);
476
477
  isDefaultValue(value: any): boolean;
478
+ isDefaultValueByObj(obj: Base, value: any): boolean;
477
479
  getValue(obj: any): any;
478
480
  getPropertyValue(obj: any): any;
479
481
  get hasToUseSetValue(): string | ((obj: any, value: any, jsonConv: JsonObject) => any);
@@ -591,6 +593,7 @@ declare module "jsonobject" {
591
593
  private generateSchemaProperty;
592
594
  private getChemeRefName;
593
595
  private generateChemaClass;
596
+ private getChoicesValues;
594
597
  }
595
598
  export class JsonError {
596
599
  type: string;
@@ -1133,7 +1136,7 @@ declare module "utils/utils" {
1133
1136
  log(action: string): void;
1134
1137
  get result(): string;
1135
1138
  }
1136
- export function showConfirmDialog(message: string, callback: (res: boolean) => void): boolean;
1139
+ export function showConfirmDialog(message: string, callback: (res: boolean) => void, applyTitle?: string): boolean;
1137
1140
  export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, scrollElementByChildId, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, };
1138
1141
  }
1139
1142
  declare module "actions/container" {
@@ -1761,6 +1764,7 @@ declare module "defaultCss/defaultV2Css" {
1761
1764
  progressContainer: string;
1762
1765
  progress: string;
1763
1766
  progressBar: string;
1767
+ nested: string;
1764
1768
  progressText: string;
1765
1769
  separator: string;
1766
1770
  panelWrapper: string;
@@ -1827,6 +1831,9 @@ declare module "defaultCss/defaultV2Css" {
1827
1831
  contentLeft: string;
1828
1832
  titleNumInline: string;
1829
1833
  titleLeftRoot: string;
1834
+ titleTopRoot: string;
1835
+ descriptionUnderInputRoot: string;
1836
+ titleBottomRoot: string;
1830
1837
  titleOnAnswer: string;
1831
1838
  titleEmpty: string;
1832
1839
  titleOnError: string;
@@ -1849,6 +1856,8 @@ declare module "defaultCss/defaultV2Css" {
1849
1856
  commentArea: string;
1850
1857
  formGroup: string;
1851
1858
  hasError: string;
1859
+ hasErrorTop: string;
1860
+ hasErrorBottom: string;
1852
1861
  collapsed: string;
1853
1862
  expanded: string;
1854
1863
  nested: string;
@@ -1874,7 +1883,6 @@ declare module "defaultCss/defaultV2Css" {
1874
1883
  root: string;
1875
1884
  icon: string;
1876
1885
  item: string;
1877
- tooltip: string;
1878
1886
  outsideQuestion: string;
1879
1887
  aboveQuestion: string;
1880
1888
  belowQuestion: string;
@@ -3294,6 +3302,7 @@ declare module "question_file" {
3294
3302
  import { ActionContainer } from "actions/container";
3295
3303
  import { Action } from "actions/action";
3296
3304
  import { Camera } from "utils/camera";
3305
+ import { LocalizableString } from "localizablestring";
3297
3306
  /**
3298
3307
  * A class that describes the File Upload question type.
3299
3308
  *
@@ -3328,6 +3337,9 @@ declare module "question_file" {
3328
3337
  * - `"file"` (default) - Allows respondents to select a local file.
3329
3338
  * - `"camera"` - Allows respondents to capture and upload a photo.
3330
3339
  * - `"file-camera"` - Allows respondents to select a local file or capture a photo.
3340
+ * @see filePlaceholder
3341
+ * @see photoPlaceholder
3342
+ * @see fileOrPhotoPlaceholder
3331
3343
  */
3332
3344
  sourceType: string;
3333
3345
  fileNavigator: ActionContainer;
@@ -3441,11 +3453,26 @@ declare module "question_file" {
3441
3453
  removeFileCaption: string;
3442
3454
  loadingFileTitle: string;
3443
3455
  chooseFileTitle: string;
3444
- fileCameraDragAreaPlaceholder: string;
3445
- cameraPlaceholder: string;
3446
- dragAreaPlaceholder: string;
3447
- renderedPlaceholderValue: string;
3448
- get renderedPlaceholder(): string;
3456
+ /**
3457
+ * A placeholder text displayed when the File Upload question doesn't contain any files or photos to upload. Applies only when [`sourceType`](#sourceType) value is `"file-camera"`.
3458
+ * @see filePlaceholder
3459
+ * @see photoPlaceholder
3460
+ */
3461
+ fileOrPhotoPlaceholder: string;
3462
+ /**
3463
+ * A placeholder text displayed when the File Upload question doesn't contain any photos to upload. Applies only when the [`sourceType`](#sourceType) value is `"camera"`.
3464
+ * @see filePlaceholder
3465
+ * @see fileOrPhotoPlaceholder
3466
+ */
3467
+ photoPlaceholder: string;
3468
+ /**
3469
+ * A placeholder text displayed when the File Upload question doesn't contain any files to upload. Applies only when the [`sourceType`](#sourceType) value is `"file"`.
3470
+ * @see photoPlaceholder
3471
+ * @see fileOrPhotoPlaceholder
3472
+ */
3473
+ filePlaceholder: string;
3474
+ locRenderedPlaceholderValue: LocalizableString;
3475
+ get locRenderedPlaceholder(): LocalizableString;
3449
3476
  get currentMode(): string;
3450
3477
  get isPlayingVideo(): boolean;
3451
3478
  private setIsPlayingVideo;
@@ -4968,7 +4995,7 @@ declare module "question_matrixdynamic" {
4968
4995
  protected updateProgressInfoByValues(res: IProgressInfo): void;
4969
4996
  private getValueForNewRow;
4970
4997
  /**
4971
- * Specifies whether users can drag and drop matrix rows to reorder them.
4998
+ * Specifies whether users can drag and drop matrix rows to reorder them. Applies only if [`columnLayout`](#columnLayout) is `"horizontal"`.
4972
4999
  *
4973
5000
  * Default value: `false`
4974
5001
  */
@@ -5197,6 +5224,210 @@ declare module "textPreProcessor" {
5197
5224
  private processTextCore;
5198
5225
  }
5199
5226
  }
5227
+ declare module "themes" {
5228
+ import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
5229
+ export type ImageFit = "auto" | "contain" | "cover";
5230
+ export type ImageAttachment = "fixed" | "scroll";
5231
+ /**
5232
+ * A theme configuration interface.
5233
+ *
5234
+ * `ITheme` objects are used to apply predefined themes or create custom themes. Refer to the following help topic for more information:
5235
+ *
5236
+ * [Themes & Styles](https://surveyjs.io/form-library/documentation/manage-default-themes-and-styles (linkStyle))
5237
+ */
5238
+ export interface ITheme {
5239
+ /**
5240
+ * A theme name.
5241
+ */
5242
+ themeName?: string;
5243
+ /**
5244
+ * A color palette.
5245
+ *
5246
+ * Possible values:
5247
+ *
5248
+ * - `"light"`
5249
+ * - `"dark"`
5250
+ */
5251
+ colorPalette?: string;
5252
+ /**
5253
+ * A Boolean value that specifies whether survey questions are displayed within panels (`false`) or without them (`true`).
5254
+ */
5255
+ isPanelless?: boolean;
5256
+ /**
5257
+ * An image to display as survey background. This property accepts a hyperlink or a data URL.
5258
+ */
5259
+ backgroundImage?: string;
5260
+ /**
5261
+ * A string value that specifies how to resize the [background image](#backgroundImage) to fit it into its container.
5262
+ *
5263
+ * Possible values:
5264
+ *
5265
+ * - `"auto"`
5266
+ * - `"contain"`
5267
+ * - `"cover"`
5268
+ *
5269
+ * Refer to the description of the [`background-size`](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size#values) CSS property values on MDN for detailed information on the possible values.
5270
+ */
5271
+ backgroundImageFit?: ImageFit;
5272
+ /**
5273
+ * A string value that specifies whether the [background image](#backgroundImage) is fixed in its position or scrolled along with the survey.
5274
+ *
5275
+ * Possible values:
5276
+ *
5277
+ * - `"fixed"`
5278
+ * - `"scroll"`
5279
+ */
5280
+ backgroundImageAttachment?: ImageAttachment;
5281
+ /**
5282
+ * A value from 0 to 1 that specifies how transparent the [background image](#backgroundImage) should be: 0 makes the image completely transparent, and 1 makes it opaque.
5283
+ */
5284
+ backgroundOpacity?: number;
5285
+ /**
5286
+ * An object with [advanced survey header settings](https://surveyjs.io/form-library/documentation/api-reference/iheader). Applies when `SurveyModel`'s [`headerView`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#headerView) property is set to `"advanced"`.
5287
+ */
5288
+ header?: IHeader;
5289
+ /**
5290
+ * An object with CSS variables.
5291
+ */
5292
+ cssVariables?: {
5293
+ [index: string]: string;
5294
+ };
5295
+ }
5296
+ /**
5297
+ * A survey header configuration interface.
5298
+ *
5299
+ * An `IHeader` object configures advanced survey header appearance settings. To apply them, you need to assign the object to the [`header`](https://surveyjs.io/form-library/documentation/api-reference/itheme#header) property of your theme configuration and set `SurveyModel`'s [`headerView`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#headerView) property to `"advanced"`.
5300
+ */
5301
+ export interface IHeader {
5302
+ /**
5303
+ * The height of the survey header in pixels.
5304
+ *
5305
+ * Default value: 256
5306
+ */
5307
+ height: number;
5308
+ /**
5309
+ * A string value that specifies whether the header spans the width of the survey or that of the survey container.
5310
+ *
5311
+ * Possible values:
5312
+ *
5313
+ * - `"survey"` (default)\
5314
+ * The header width is the same as the survey width.
5315
+ * - `"container"`\
5316
+ * The header width is the same as the survey container width.
5317
+ *
5318
+ * @see [SurveyModel.width](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#width)
5319
+ * @see [SurveyModel.widthMode](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#widthMode)
5320
+ */
5321
+ inheritWidthFrom: "survey" | "container";
5322
+ /**
5323
+ * The width of the header area that contains the survey [title](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#title) and [description](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#description), measured in pixels.
5324
+ *
5325
+ * Default value: 512
5326
+ */
5327
+ textAreaWidth: number;
5328
+ /**
5329
+ * A Boolean value that specifies whether the header overlaps the survey content.
5330
+ *
5331
+ * Default value: `false`
5332
+ */
5333
+ overlapEnabled: boolean;
5334
+ /**
5335
+ * An image to display in the background of the header. Accepts a base64 or URL string value.
5336
+ */
5337
+ backgroundImage: string;
5338
+ /**
5339
+ * A value from 0 to 1 that specifies how transparent the [background image](#backgroundImage) should be: 0 makes the image completely transparent, and 1 makes it opaque.
5340
+ */
5341
+ backgroundImageOpacity: number;
5342
+ /**
5343
+ * A string value that specifies how to resize a [background image](#backgroundImage) to fit it into the header.
5344
+ *
5345
+ * Possible values:
5346
+ *
5347
+ * - `"cover"` (default)\
5348
+ * Scales the image to the smallest possible size that fills the header. The image preserves its aspect ratio but can be cropped if the header's proportions differ from that of the element.
5349
+ * - `"fill"`\
5350
+ * Stretches the image to fill the entire header.
5351
+ * - `"contain"`\
5352
+ * Scales the image to the largest possible size without cropping or stretching it.
5353
+ * - `"tile"`\
5354
+ * Tiles as many copies of the image as needed to fill the entire header.
5355
+ */
5356
+ backgroundImageFit: "cover" | "fill" | "contain" | "tile";
5357
+ /**
5358
+ * A string value that specifies the logo position within the header in the horizontal direction.
5359
+ *
5360
+ * Possible values:
5361
+ *
5362
+ * - `"right"` (default)
5363
+ * - `"left"`
5364
+ * - `"center"`
5365
+ *
5366
+ * To specify a logo, set `SurveyModel`'s [`logo`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#logo) property.
5367
+ */
5368
+ logoPositionX: HorizontalAlignment;
5369
+ /**
5370
+ * A string value that specifies the logo position within the header in the vertical direction.
5371
+ *
5372
+ * Possible values:
5373
+ *
5374
+ * - `"top"` (default)
5375
+ * - `"bottom"`
5376
+ * - `"middle"`
5377
+ *
5378
+ * To specify a logo, set `SurveyModel`'s [`logo`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#logo) property.
5379
+ */
5380
+ logoPositionY: VerticalAlignment;
5381
+ /**
5382
+ * A string value that specifies the survey title position within the header in the horizontal direction.
5383
+ *
5384
+ * Possible values:
5385
+ *
5386
+ * - `"left"` (default)
5387
+ * - `"right"`
5388
+ * - `"center"`
5389
+ *
5390
+ * To specify a survey title, set `SurveyModel`'s [`title`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#title) property.
5391
+ */
5392
+ titlePositionX: HorizontalAlignment;
5393
+ /**
5394
+ * A string value that specifies the survey title position within the header in the vertical direction.
5395
+ *
5396
+ * Possible values:
5397
+ *
5398
+ * - `"bottom"` (default)
5399
+ * - `"top"`
5400
+ * - `"middle"`
5401
+ *
5402
+ * To specify a survey title, set `SurveyModel`'s [`title`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#title) property.
5403
+ */
5404
+ titlePositionY: VerticalAlignment;
5405
+ /**
5406
+ * A string value that specifies the survey description position within the header in the horizontal direction.
5407
+ *
5408
+ * Possible values:
5409
+ *
5410
+ * - `"left"` (default)
5411
+ * - `"right"`
5412
+ * - `"center"`
5413
+ *
5414
+ * To specify a survey description, set `SurveyModel`'s [`description`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#description) property.
5415
+ */
5416
+ descriptionPositionX: HorizontalAlignment;
5417
+ /**
5418
+ * A string value that specifies the survey description position within the header in the vertical direction.
5419
+ *
5420
+ * Possible values:
5421
+ *
5422
+ * - `"bottom"` (default)
5423
+ * - `"top"`
5424
+ * - `"middle"`
5425
+ *
5426
+ * To specify a survey description, set `SurveyModel`'s [`description`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#description) property.
5427
+ */
5428
+ descriptionPositionY: VerticalAlignment;
5429
+ }
5430
+ }
5200
5431
  declare module "question_paneldynamic" {
5201
5432
  import { HashTable } from "helpers";
5202
5433
  import { IElement, IQuestion, IPanel, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPlainDataOptions } from "base-interfaces";
@@ -5207,6 +5438,7 @@ declare module "question_paneldynamic" {
5207
5438
  import { ActionContainer } from "actions/container";
5208
5439
  import { IAction } from "actions/action";
5209
5440
  import { AdaptiveActionContainer } from "actions/adaptive-container";
5441
+ import { ITheme } from "themes";
5210
5442
  export interface IQuestionPanelDynamicData {
5211
5443
  getItemIndex(item: ISurveyData): number;
5212
5444
  getVisibleItemIndex(item: ISurveyData): number;
@@ -5483,6 +5715,7 @@ declare module "question_paneldynamic" {
5483
5715
  protected getValueCore(): any;
5484
5716
  protected setValueCore(newValue: any): void;
5485
5717
  setIsMobile(val: boolean): void;
5718
+ themeChanged(theme: ITheme): void;
5486
5719
  /**
5487
5720
  * The number of panels in Dynamic Panel.
5488
5721
  * @see minPanelCount
@@ -5813,77 +6046,6 @@ declare module "question_paneldynamic" {
5813
6046
  protected calcCssClasses(css: any): any;
5814
6047
  }
5815
6048
  }
5816
- declare module "themes" {
5817
- export type ImageFit = "auto" | "contain" | "cover";
5818
- export type ImageAttachment = "fixed" | "scroll";
5819
- /**
5820
- * A theme configuration interface.
5821
- *
5822
- * `ITheme` objects are used to apply predefined themes or create custom themes. Refer to the following help topic for more information:
5823
- *
5824
- * [Themes & Styles](https://surveyjs.io/form-library/documentation/manage-default-themes-and-styles (linkStyle))
5825
- */
5826
- export interface ITheme {
5827
- /**
5828
- * A theme name.
5829
- */
5830
- themeName?: string;
5831
- /**
5832
- * A color palette.
5833
- *
5834
- * Possible values:
5835
- *
5836
- * - `"light"`
5837
- * - `"dark"`
5838
- */
5839
- colorPalette?: string;
5840
- /**
5841
- * A Boolean value that specifies whether survey questions are displayed within panels (`false`) or without them (`true`).
5842
- */
5843
- isPanelless?: boolean;
5844
- /**
5845
- * An image to display as survey background. This property accepts a hyperlink or a data URL.
5846
- */
5847
- backgroundImage?: string;
5848
- /**
5849
- * A string value that specifies how to resize the [background image](#backgroundImage) to fit it into its container.
5850
- *
5851
- * Possible values:
5852
- *
5853
- * - `"auto"`
5854
- * - `"contain"`
5855
- * - `"cover"`
5856
- *
5857
- * Refer to the description of the [`background-size`](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size#values) CSS property values on MDN for detailed information on the possible values.
5858
- */
5859
- backgroundImageFit?: ImageFit;
5860
- /**
5861
- * A string value that specifies whether the [background image](#backgroundImage) is fixed in its position or scrolled along with the survey.
5862
- *
5863
- * Possible values:
5864
- *
5865
- * - `"fixed"`
5866
- * - `"scroll"`
5867
- */
5868
- backgroundImageAttachment?: ImageAttachment;
5869
- /**
5870
- * A value from 0 to 1 that specifies how transparent the [background image](#backgroundImage) should be: 0 makes the image completely transparent, and 1 makes it opaque.
5871
- */
5872
- backgroundOpacity?: number;
5873
- /**
5874
- * An object with survey header settings.
5875
- */
5876
- header?: {
5877
- [index: string]: any;
5878
- };
5879
- /**
5880
- * An object with CSS variables.
5881
- */
5882
- cssVariables?: {
5883
- [index: string]: string;
5884
- };
5885
- }
5886
- }
5887
6049
  declare module "survey-events-api" {
5888
6050
  import { IAction } from "actions/action";
5889
6051
  import { Base } from "base";
@@ -5900,7 +6062,6 @@ declare module "survey-events-api" {
5900
6062
  import { QuestionPanelDynamicModel } from "question_paneldynamic";
5901
6063
  import { SurveyModel } from "survey";
5902
6064
  import { SurveyError } from "survey-error";
5903
- import { ITheme } from "themes";
5904
6065
  import { Trigger } from "trigger";
5905
6066
  export interface QuestionEventMixin {
5906
6067
  /**
@@ -6848,9 +7009,6 @@ declare module "survey-events-api" {
6848
7009
  */
6849
7010
  visible: boolean;
6850
7011
  }
6851
- export interface ThemeAppliedEvent {
6852
- theme: ITheme;
6853
- }
6854
7012
  }
6855
7013
  declare module "drag-drop-page-helper-v1" {
6856
7014
  import { IElement, ISurveyElement } from "base-interfaces";
@@ -6892,13 +7050,16 @@ declare module "page" {
6892
7050
  protected canShowPageNumber(): boolean;
6893
7051
  protected canShowTitle(): boolean;
6894
7052
  /**
6895
- * A caption displayed on a navigation button in the TOC or progress bar. Applies when [`showTOC`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showTOC) is `true` or when [`showProgressBar`](https://surveyjs.io/form-library/documentation/surveymodel#showProgressBar) is `true` and [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is `"buttons"`.
7053
+ * A caption displayed on a navigation button in the TOC or progress bar. Applies when [`showTOC`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showTOC) is `true` or when the [progress bar is visible](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showProgressBar) and [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is set to `"buttons"`.
6896
7054
  *
6897
7055
  * If navigation titles are unspecified, the navigation buttons display page [titles](https://surveyjs.io/form-library/documentation/api-reference/page-model#title) or [names](https://surveyjs.io/form-library/documentation/pagemodel#name).
6898
7056
  */
6899
7057
  get navigationTitle(): string;
6900
7058
  set navigationTitle(val: string);
6901
7059
  get locNavigationTitle(): LocalizableString;
7060
+ /**
7061
+ * Explanatory text displayed under a navigation button in the progress bar. Applies when the [progress bar is visible](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showProgressBar) and `SurveyModel`'s [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) property is set to `"buttons"`.
7062
+ */
6902
7063
  get navigationDescription(): string;
6903
7064
  set navigationDescription(val: string);
6904
7065
  get locNavigationDescription(): LocalizableString;
@@ -7062,6 +7223,7 @@ declare module "surveytimer" {
7062
7223
  export var surveyTimerFunctions: {
7063
7224
  setTimeout: (func: () => any) => number;
7064
7225
  clearTimeout: (timerId: number) => void;
7226
+ safeTimeOut: (func: () => any, delay: number) => number;
7065
7227
  };
7066
7228
  export class SurveyTimer {
7067
7229
  private static instanceValue;
@@ -7406,6 +7568,7 @@ declare module "question_text" {
7406
7568
  onBlur: (event: any) => void;
7407
7569
  onFocus: (event: any) => void;
7408
7570
  }
7571
+ export function isMinMaxType(obj: any): boolean;
7409
7572
  }
7410
7573
  declare module "question_multipletext" {
7411
7574
  import { Base } from "base";
@@ -7415,6 +7578,7 @@ declare module "question_multipletext" {
7415
7578
  import { QuestionTextModel } from "question_text";
7416
7579
  import { SurveyError } from "survey-error";
7417
7580
  import { ILocalizableOwner, LocalizableString } from "localizablestring";
7581
+ import { HashTable } from "helpers";
7418
7582
  export interface IMultipleTextData extends ILocalizableOwner, IPanel {
7419
7583
  getSurvey(): ISurvey;
7420
7584
  getTextProcessor(): ITextProcessor;
@@ -7500,6 +7664,16 @@ declare module "question_multipletext" {
7500
7664
  */
7501
7665
  get size(): number;
7502
7666
  set size(val: number);
7667
+ /**
7668
+ * The minimum value specified as an expression. For example, `"minValueExpression": "today(-1)"` sets the minimum value to yesterday.
7669
+ */
7670
+ get minValueExpression(): string;
7671
+ set minValueExpression(val: string);
7672
+ /**
7673
+ * The maximum value specified as an expression. For example, `"maxValueExpression": "today(1)"` sets the maximum value to tomorrow.
7674
+ */
7675
+ get maxValueExpression(): string;
7676
+ set maxValueExpression(val: string);
7503
7677
  /**
7504
7678
  * The list of question validators.
7505
7679
  */
@@ -7620,6 +7794,7 @@ declare module "question_multipletext" {
7620
7794
  protected onValueChanged(): void;
7621
7795
  protected createTextItem(name: string, title: string): MultipleTextItemModel;
7622
7796
  protected onItemValueChanged(): void;
7797
+ runCondition(values: HashTable<any>, properties: HashTable<any>): void;
7623
7798
  protected getIsRunningValidators(): boolean;
7624
7799
  hasErrors(fireCallback?: boolean, rec?: any): boolean;
7625
7800
  getAllErrors(): Array<SurveyError>;
@@ -7669,7 +7844,7 @@ declare module "question_multipletext" {
7669
7844
  protected getClassName(): string;
7670
7845
  }
7671
7846
  }
7672
- declare module "cover" {
7847
+ declare module "header" {
7673
7848
  import { Base } from "base";
7674
7849
  import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
7675
7850
  import { SurveyModel } from "survey";
@@ -7697,15 +7872,16 @@ declare module "cover" {
7697
7872
  export class Cover extends Base {
7698
7873
  private _survey;
7699
7874
  private calcBackgroundSize;
7700
- private updateCoverClasses;
7875
+ private updateHeaderClasses;
7701
7876
  private updateContentClasses;
7702
7877
  private updateBackgroundImageClasses;
7703
7878
  fromTheme(theme: ITheme): void;
7704
7879
  constructor();
7705
7880
  getType(): string;
7706
7881
  cells: CoverCell[];
7882
+ actualHeight: number;
7707
7883
  height: number;
7708
- inheritWidthFrom: "survey" | "page";
7884
+ inheritWidthFrom: "survey" | "container";
7709
7885
  textAreaWidth: number;
7710
7886
  textGlowEnabled: boolean;
7711
7887
  overlapEnabled: boolean;
@@ -7732,8 +7908,9 @@ declare module "cover" {
7732
7908
  gridColumn: number;
7733
7909
  gridRow: number;
7734
7910
  };
7735
- coverClasses: string;
7911
+ headerClasses: string;
7736
7912
  contentClasses: string;
7913
+ maxWidth: string;
7737
7914
  backgroundImageClasses: string;
7738
7915
  get renderedHeight(): string;
7739
7916
  get renderedtextAreaWidth(): string;
@@ -7745,6 +7922,8 @@ declare module "cover" {
7745
7922
  backgroundSize: string;
7746
7923
  };
7747
7924
  protected propertyValueChanged(name: string, oldValue: any, newValue: any): void;
7925
+ calculateActualHeight(logoHeight: number, titleHeight: number, descriptionHeight: number): number;
7926
+ processResponsiveness(width: number): void;
7748
7927
  }
7749
7928
  }
7750
7929
  declare module "survey" {
@@ -7768,7 +7947,7 @@ declare module "survey" {
7768
7947
  import { ActionContainer } from "actions/container";
7769
7948
  import { QuestionPanelDynamicModel } from "question_paneldynamic";
7770
7949
  import { Notifier } from "notifier";
7771
- import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent, GetQuestionNoEvent, ProgressTextEvent, TextMarkdownEvent, TextRenderAsEvent, SendResultEvent, GetResultEvent, UploadFilesEvent, DownloadFileEvent, ClearFilesEvent, LoadChoicesFromServerEvent, ProcessTextValueEvent, UpdateQuestionCssClassesEvent, UpdatePanelCssClassesEvent, UpdatePageCssClassesEvent, UpdateChoiceItemCssEvent, AfterRenderSurveyEvent, AfterRenderHeaderEvent, AfterRenderPageEvent, AfterRenderQuestionEvent, AfterRenderQuestionInputEvent, AfterRenderPanelEvent, FocusInQuestionEvent, FocusInPanelEvent, ShowingChoiceItemEvent, ChoicesLazyLoadEvent, GetChoiceDisplayValueEvent, MatrixRowAddedEvent, MatrixBeforeRowAddedEvent, MatrixRowRemovingEvent, MatrixRowRemovedEvent, MatrixAllowRemoveRowEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ThemeAppliedEvent } from "survey-events-api";
7950
+ import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent, GetQuestionNoEvent, ProgressTextEvent, TextMarkdownEvent, TextRenderAsEvent, SendResultEvent, GetResultEvent, UploadFilesEvent, DownloadFileEvent, ClearFilesEvent, LoadChoicesFromServerEvent, ProcessTextValueEvent, UpdateQuestionCssClassesEvent, UpdatePanelCssClassesEvent, UpdatePageCssClassesEvent, UpdateChoiceItemCssEvent, AfterRenderSurveyEvent, AfterRenderHeaderEvent, AfterRenderPageEvent, AfterRenderQuestionEvent, AfterRenderQuestionInputEvent, AfterRenderPanelEvent, FocusInQuestionEvent, FocusInPanelEvent, ShowingChoiceItemEvent, ChoicesLazyLoadEvent, GetChoiceDisplayValueEvent, MatrixRowAddedEvent, MatrixBeforeRowAddedEvent, MatrixRowRemovingEvent, MatrixRowRemovedEvent, MatrixAllowRemoveRowEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent } from "survey-events-api";
7772
7951
  import { QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
7773
7952
  import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
7774
7953
  import { QuestionFileModel } from "question_file";
@@ -7810,12 +7989,6 @@ declare module "survey" {
7810
7989
  private editingObjValue;
7811
7990
  private timerModelValue;
7812
7991
  private navigationBarValue;
7813
- onThemeApplying: EventBase<SurveyModel>;
7814
- /**
7815
- * An event that is raised after a [theme](/form-library/documentation/manage-default-themes-and-styles) is [applied](#applyTheme) to the survey.
7816
- * @see applyTheme
7817
- */
7818
- onThemeApplied: EventBase<SurveyModel, ThemeAppliedEvent>;
7819
7992
  /**
7820
7993
  * An event that is raised after a [trigger](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#triggers) is executed.
7821
7994
  *
@@ -8496,6 +8669,17 @@ declare module "survey" {
8496
8669
  loadingBodyCss: string;
8497
8670
  containerCss: string;
8498
8671
  fitToContainer: boolean;
8672
+ /**
8673
+ * Specifies whether the survey header uses only basic appearance settings or applies advanced settings from the survey theme.
8674
+ *
8675
+ * Possible values:
8676
+ *
8677
+ * - `"basic"` (default)\
8678
+ * A basic header view applies only the [`title`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#title), [`description`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#description), and logo-related properties ([`logo`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#logo), [`logoPosition`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#logoPosition), etc.).
8679
+ *
8680
+ * - `"advanced"`\
8681
+ * An advanced header view applies the same properties as the basic view, plus [header settings](https://surveyjs.io/form-library/documentation/api-reference/iheader) from the [survey theme](https://surveyjs.io/form-library/documentation/api-reference/itheme#header). The advanced view features a more flexible header layout, a capability to specify a background image, and other settings that give a more professional look to the survey header.
8682
+ */
8499
8683
  headerView: "advanced" | "basic";
8500
8684
  private getNavigationCss;
8501
8685
  private lazyRenderingValue;
@@ -8582,7 +8766,7 @@ declare module "survey" {
8582
8766
  /**
8583
8767
  * Specifies whether to focus the first question on the page on survey startup or when users switch between pages.
8584
8768
  *
8585
- * Default value: `true`
8769
+ * Default value: `false` in v1.9.114 and later, `true` in earlier versions
8586
8770
  * @see focusOnFirstError
8587
8771
  * @see focusFirstQuestion
8588
8772
  * @see focusQuestion
@@ -8743,6 +8927,7 @@ declare module "survey" {
8743
8927
  * > If any of the following questions is answered last, the survey does not switch to the next page: Checkboxes, Yes/No (Boolean) (rendered as Checkbox), Long Text, Signature, Image Picker (with Multi Select), File Upload, Single-Select Matrix (not all rows are answered), Dynamic Matrix, Dynamic Panel.
8744
8928
  *
8745
8929
  * [View Demo](https://surveyjs.io/form-library/examples/automatically-move-to-next-page-if-answer-selected/ (linkStyle))
8930
+ * @see [`settings.autoAdvanceDelay`](https://surveyjs.io/form-library/documentation/api-reference/settings#autoAdvanceDelay)
8746
8931
  */
8747
8932
  get goNextPageAutomatic(): boolean | "autogonext";
8748
8933
  set goNextPageAutomatic(val: boolean | "autogonext");
@@ -8750,6 +8935,7 @@ declare module "survey" {
8750
8935
  * Specifies whether to complete the survey automatically after a user answers all questions on the last page. Applies only if the [`goNextPageAutomatic`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#goNextPageAutomatic) property is `true`.
8751
8936
  *
8752
8937
  * Default value: `true`
8938
+ * @see [`settings.autoAdvanceDelay`](https://surveyjs.io/form-library/documentation/api-reference/settings#autoAdvanceDelay)
8753
8939
  */
8754
8940
  get allowCompleteSurveyAutomatic(): boolean;
8755
8941
  set allowCompleteSurveyAutomatic(val: boolean);
@@ -10441,9 +10627,9 @@ declare module "survey" {
10441
10627
  *
10442
10628
  * [Themes & Styles](/form-library/documentation/manage-default-themes-and-styles (linkStyle))
10443
10629
  * @param theme An [`ITheme`](/form-library/documentation/api-reference/itheme) object with theme settings.
10444
- * @see onThemeApplied
10445
10630
  */
10446
10631
  applyTheme(theme: ITheme): void;
10632
+ themeChanged(theme: ITheme): void;
10447
10633
  /**
10448
10634
  * Disposes of the survey model.
10449
10635
  *
@@ -10916,6 +11102,7 @@ declare module "question" {
10916
11102
  import { QuestionCustomWidget } from "questionCustomWidgets";
10917
11103
  import { SurveyError } from "survey-error";
10918
11104
  import { PopupModel } from "popup";
11105
+ import { ITheme } from "themes";
10919
11106
  export interface IConditionObject {
10920
11107
  name: string;
10921
11108
  text: string;
@@ -10950,6 +11137,7 @@ declare module "question" {
10950
11137
  focusCallback: () => void;
10951
11138
  surveyLoadCallback: () => void;
10952
11139
  displayValueCallback: (text: string) => string;
11140
+ hasCssErrorCallback: () => boolean;
10953
11141
  private defaultValueRunner;
10954
11142
  private isChangingViaDefaultValue;
10955
11143
  private isValueChangedDirectly;
@@ -10984,6 +11172,7 @@ declare module "question" {
10984
11172
  protected allowMobileInDesignMode(): boolean;
10985
11173
  updateIsMobileFromSurvey(): void;
10986
11174
  setIsMobile(val: boolean): void;
11175
+ themeChanged(theme: ITheme): void;
10987
11176
  isMobile: boolean;
10988
11177
  forceIsInputReadOnly: boolean;
10989
11178
  constructor(name: string);
@@ -11130,7 +11319,9 @@ declare module "question" {
11130
11319
  moveTo(container: IPanel, insertBefore?: any): boolean;
11131
11320
  getProgressInfo(): IProgressInfo;
11132
11321
  private setValueExpressionRunner;
11322
+ private ensureSetValueExpressionRunner;
11133
11323
  private runSetValueExpression;
11324
+ private checkExpressionIf;
11134
11325
  private triggersInfo;
11135
11326
  private addTriggerInfo;
11136
11327
  private runTriggerInfo;
@@ -11307,6 +11498,7 @@ declare module "question" {
11307
11498
  get cssError(): string;
11308
11499
  protected setCssError(val: string): void;
11309
11500
  protected getCssError(cssClasses: any): string;
11501
+ protected hasCssError(): boolean;
11310
11502
  getRootCss(): string;
11311
11503
  getQuestionRootCss(): string;
11312
11504
  updateElementCss(reNew?: boolean): void;
@@ -11554,7 +11746,9 @@ declare module "question" {
11554
11746
  get setValueIf(): string;
11555
11747
  set setValueIf(val: string);
11556
11748
  /**
11557
- * An expression used to calculate the question value. Applies only when the [`setValueIf`](#setValueIf) expression evaluates to `true`.
11749
+ * An expression used to calculate the question value.
11750
+ *
11751
+ * You can use `setValueExpression` as a standalone property or in conjunction with the [`setValueIf`](#setValueIf) expression, in which case the calculated question value applies only when `setValueIf` evaluates to `true`.
11558
11752
  *
11559
11753
  * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
11560
11754
  * @see defaultValueExpression
@@ -12702,6 +12896,7 @@ declare module "base-interfaces" {
12702
12896
  component?: string;
12703
12897
  template?: string;
12704
12898
  data?: any;
12899
+ processResponsiveness?: (width: number) => void;
12705
12900
  }
12706
12901
  export interface IPlainDataOptions {
12707
12902
  includeEmpty?: boolean;
@@ -13198,6 +13393,7 @@ declare module "popup" {
13198
13393
  onShow: () => void;
13199
13394
  cssClass: string;
13200
13395
  title: string;
13396
+ overlayDisplayMode: "auto" | "overlay" | "dropdown-overlay";
13201
13397
  displayMode: "popup" | "overlay";
13202
13398
  positionMode: PositionMode;
13203
13399
  onVisibilityChanged: EventBase<PopupModel>;
@@ -13647,7 +13843,7 @@ declare module "settings" {
13647
13843
  * @param message A message to be displayed in the confirm dialog window.
13648
13844
  * @param callback A callback function that should be called with `true` if a user confirms an action or `false` otherwise.
13649
13845
  */
13650
- confirmActionAsync: (message: string, callback: (res: boolean) => void) => boolean;
13846
+ confirmActionAsync: (message: string, callback: (res: boolean) => void, applyTitle?: string) => boolean;
13651
13847
  /**
13652
13848
  * A minimum width value for all survey elements.
13653
13849
  *
@@ -13681,6 +13877,12 @@ declare module "settings" {
13681
13877
  notifications: {
13682
13878
  lifetime: number;
13683
13879
  };
13880
+ /**
13881
+ * Specifies how many milliseconds a survey should wait before it automatically switches to the next page. Applies only when [auto-advance](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#goNextPageAutomatic) is enabled.
13882
+ *
13883
+ * Default value: 300
13884
+ */
13885
+ autoAdvanceDelay: number;
13684
13886
  /**
13685
13887
  * Specifies the direction in which to lay out Checkbox and Radiogroup items. This setting affects the resulting UI when items are arranged in [more than one column](https://surveyjs.io/form-library/documentation/api-reference/checkbox-question-model#colCount).
13686
13888
  *
@@ -13926,6 +14128,7 @@ declare module "question_dropdown" {
13926
14128
  locStrsChanged(): void;
13927
14129
  get showOptionsCaption(): boolean;
13928
14130
  set showOptionsCaption(val: boolean);
14131
+ get showClearButton(): boolean;
13929
14132
  get optionsCaption(): string;
13930
14133
  set optionsCaption(val: string);
13931
14134
  /**
@@ -14529,6 +14732,7 @@ declare module "question_tagbox" {
14529
14732
  getInputId(): string;
14530
14733
  dispose(): void;
14531
14734
  clearValue(): void;
14735
+ get showClearButton(): boolean;
14532
14736
  get isNewA11yStructure(): boolean;
14533
14737
  }
14534
14738
  }
@@ -14715,13 +14919,16 @@ declare module "dragdrop/ranking-select-to-rank" {
14715
14919
  import { DragDropRankingChoices } from "dragdrop/ranking-choices";
14716
14920
  import { QuestionRankingModel } from "question_ranking";
14717
14921
  export class DragDropRankingSelectToRank extends DragDropRankingChoices {
14718
- protected onStartDrag(event: PointerEvent): void;
14719
14922
  protected findDropTargetNodeByDragOverNode(dragOverNode: HTMLElement): HTMLElement;
14720
14923
  protected getDropTargetByDataAttributeValue(dataAttributeValue: string): ItemValue;
14721
14924
  protected getDropTargetByNode(dropTargetNode: HTMLElement, event: PointerEvent): any;
14722
14925
  protected isDropTargetValid(dropTarget: ItemValue | string, dropTargetNode?: HTMLElement): boolean;
14723
14926
  protected afterDragOver(dropTargetNode: HTMLElement): void;
14724
14927
  doRankBetween(dropTargetNode: HTMLElement, fromChoicesArray: Array<ItemValue>, toChoicesArray: Array<ItemValue>, rankFunction: Function): void;
14928
+ getIndixies(model: any, fromChoicesArray: Array<ItemValue>, toChoicesArray: Array<ItemValue>): {
14929
+ fromIndex: number;
14930
+ toIndex: number;
14931
+ };
14725
14932
  private doUIEffects;
14726
14933
  private get isDraggedElementRanked();
14727
14934
  private get isDropTargetRanked();
@@ -14785,8 +14992,7 @@ declare module "question_ranking" {
14785
14992
  protected supportSelectAll(): boolean;
14786
14993
  supportOther(): boolean;
14787
14994
  supportNone(): boolean;
14788
- private handleArrowUp;
14789
- private handleArrowDown;
14995
+ private handleArrowKeys;
14790
14996
  handleKeydownSelectToRank(event: KeyboardEvent, movedElement: ItemValue): void;
14791
14997
  private setValueAfterKeydown;
14792
14998
  private focusItem;
@@ -14827,6 +15033,9 @@ declare module "question_ranking" {
14827
15033
  selectToRankEmptyUnrankedAreaText: string;
14828
15034
  get useFullItemSizeForShortcut(): boolean;
14829
15035
  set useFullItemSizeForShortcut(val: boolean);
15036
+ get dragDropSvgIcon(): string;
15037
+ get arrowsSvgIcon(): string;
15038
+ get dashSvgIcon(): string;
14830
15039
  get isNewA11yStructure(): boolean;
14831
15040
  }
14832
15041
  }
@@ -14954,6 +15163,7 @@ declare module "question_rating" {
14954
15163
  import { Base } from "base";
14955
15164
  import { DropdownListModel } from "dropdownListModel";
14956
15165
  import { ISurveyImpl } from "base-interfaces";
15166
+ import { ITheme } from "themes";
14957
15167
  export class RenderedRatingItem extends Base {
14958
15168
  itemValue: ItemValue;
14959
15169
  private locString;
@@ -15165,7 +15375,12 @@ declare module "question_rating" {
15165
15375
  rateColorMode: "default" | "scale";
15166
15376
  get isStar(): boolean;
15167
15377
  get isSmiley(): boolean;
15168
- get itemComponentName(): "sv-rating-item-star" | "sv-rating-item-smiley" | "sv-rating-item";
15378
+ getDefaultItemComponent(): string;
15379
+ /**
15380
+ * The name of a component used to render items.
15381
+ */
15382
+ get itemComponent(): string;
15383
+ set itemComponent(value: string);
15169
15384
  protected valueToData(val: any): any;
15170
15385
  setValueFromClick(value: any): void;
15171
15386
  onItemMouseIn(item: RenderedRatingItem): void;
@@ -15205,6 +15420,7 @@ declare module "question_rating" {
15205
15420
  get dropdownListModel(): DropdownListModel;
15206
15421
  protected updateCssClasses(res: any, css: any): void;
15207
15422
  protected calcCssClasses(css: any): any;
15423
+ themeChanged(theme: ITheme): void;
15208
15424
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
15209
15425
  dispose(): void;
15210
15426
  }
@@ -15397,7 +15613,7 @@ declare module "question_image" {
15397
15613
  }
15398
15614
  declare module "question_signaturepad" {
15399
15615
  import { Question } from "question";
15400
- import { ISurveyImpl } from "base-interfaces";
15616
+ import { ITheme } from "themes";
15401
15617
  /**
15402
15618
  * A class that describes the Signature question type.
15403
15619
  *
@@ -15413,7 +15629,7 @@ declare module "question_signaturepad" {
15413
15629
  getType(): string;
15414
15630
  afterRenderQuestionElement(el: HTMLElement): void;
15415
15631
  beforeDestroyQuestionElement(el: HTMLElement): void;
15416
- setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
15632
+ themeChanged(theme: ITheme): void;
15417
15633
  initSignaturePad(el: HTMLElement): void;
15418
15634
  destroySignaturePad(el: HTMLElement): void;
15419
15635
  /**
@@ -15478,8 +15694,17 @@ declare module "question_signaturepad" {
15478
15694
  get backgroundImage(): string;
15479
15695
  set backgroundImage(val: string);
15480
15696
  get clearButtonCaption(): string;
15697
+ /**
15698
+ * A Boolean value that specifies whether to show the [placeholder](#placeholder).
15699
+ *
15700
+ * Default value: `true`
15701
+ */
15702
+ showPlaceholder: boolean;
15481
15703
  needShowPlaceholder(): boolean;
15482
- get placeHolderText(): string;
15704
+ /**
15705
+ * A placeholder for the signature area. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
15706
+ */
15707
+ placeholder: string;
15483
15708
  endLoadingFromJson(): void;
15484
15709
  }
15485
15710
  }
@@ -16105,6 +16330,7 @@ declare module "entries/chunks/model" {
16105
16330
  export var ReleaseDate: string;
16106
16331
  export function checkLibraryVersion(ver: string, libraryName: string): void;
16107
16332
  export function setLicenseKey(key: string): void;
16333
+ export function slk(key: string): void;
16108
16334
  export function hasLicense(index: number): boolean;
16109
16335
  export { settings, ISurveyEnvironment } from "settings";
16110
16336
  export { Helpers, HashTable } from "helpers";
@@ -16172,7 +16398,7 @@ declare module "entries/chunks/model" {
16172
16398
  export { PopupSurveyModel, SurveyWindowModel } from "popup-survey";
16173
16399
  export { TextPreProcessor } from "textPreProcessor";
16174
16400
  export { Notifier } from "notifier";
16175
- export { Cover, CoverCell } from "cover";
16401
+ export { Cover, CoverCell } from "header";
16176
16402
  export { dxSurveyService } from "dxSurveyService";
16177
16403
  export { englishStrings } from "localization/english";
16178
16404
  export { surveyLocalization, surveyStrings } from "surveyStrings";
@@ -18672,7 +18898,7 @@ declare module "localization/arabic" {
18672
18898
  loadingFile: string;
18673
18899
  chooseFile: string;
18674
18900
  noFileChosen: string;
18675
- fileDragAreaPlaceholder: string;
18901
+ filePlaceholder: string;
18676
18902
  confirmDelete: string;
18677
18903
  keyDuplicationError: string;
18678
18904
  addColumn: string;
@@ -18701,8 +18927,8 @@ declare module "localization/arabic" {
18701
18927
  signaturePlaceHolder: string;
18702
18928
  chooseFileCaption: string;
18703
18929
  takePhotoCaption: string;
18704
- cameraPlaceHolder: string;
18705
- fileCameraDragAreaPlaceHolder: string;
18930
+ photoPlaceholder: string;
18931
+ fileOrPhotoPlaceholder: string;
18706
18932
  replaceFileCaption: string;
18707
18933
  removeFileCaption: string;
18708
18934
  booleanCheckedLabel: string;
@@ -18770,7 +18996,7 @@ declare module "localization/basque" {
18770
18996
  loadingFile: string;
18771
18997
  chooseFile: string;
18772
18998
  noFileChosen: string;
18773
- fileDragAreaPlaceholder: string;
18999
+ filePlaceholder: string;
18774
19000
  confirmDelete: string;
18775
19001
  keyDuplicationError: string;
18776
19002
  addColumn: string;
@@ -18799,8 +19025,8 @@ declare module "localization/basque" {
18799
19025
  signaturePlaceHolder: string;
18800
19026
  chooseFileCaption: string;
18801
19027
  takePhotoCaption: string;
18802
- cameraPlaceHolder: string;
18803
- fileCameraDragAreaPlaceHolder: string;
19028
+ photoPlaceholder: string;
19029
+ fileOrPhotoPlaceholder: string;
18804
19030
  replaceFileCaption: string;
18805
19031
  removeFileCaption: string;
18806
19032
  booleanCheckedLabel: string;
@@ -18868,7 +19094,7 @@ declare module "localization/bulgarian" {
18868
19094
  loadingFile: string;
18869
19095
  chooseFile: string;
18870
19096
  noFileChosen: string;
18871
- fileDragAreaPlaceholder: string;
19097
+ filePlaceholder: string;
18872
19098
  confirmDelete: string;
18873
19099
  keyDuplicationError: string;
18874
19100
  addColumn: string;
@@ -18897,8 +19123,8 @@ declare module "localization/bulgarian" {
18897
19123
  signaturePlaceHolder: string;
18898
19124
  chooseFileCaption: string;
18899
19125
  takePhotoCaption: string;
18900
- cameraPlaceHolder: string;
18901
- fileCameraDragAreaPlaceHolder: string;
19126
+ photoPlaceholder: string;
19127
+ fileOrPhotoPlaceholder: string;
18902
19128
  replaceFileCaption: string;
18903
19129
  removeFileCaption: string;
18904
19130
  booleanCheckedLabel: string;
@@ -18966,7 +19192,7 @@ declare module "localization/catalan" {
18966
19192
  loadingFile: string;
18967
19193
  chooseFile: string;
18968
19194
  noFileChosen: string;
18969
- fileDragAreaPlaceholder: string;
19195
+ filePlaceholder: string;
18970
19196
  confirmDelete: string;
18971
19197
  keyDuplicationError: string;
18972
19198
  addColumn: string;
@@ -18995,8 +19221,8 @@ declare module "localization/catalan" {
18995
19221
  signaturePlaceHolder: string;
18996
19222
  chooseFileCaption: string;
18997
19223
  takePhotoCaption: string;
18998
- cameraPlaceHolder: string;
18999
- fileCameraDragAreaPlaceHolder: string;
19224
+ photoPlaceholder: string;
19225
+ fileOrPhotoPlaceholder: string;
19000
19226
  replaceFileCaption: string;
19001
19227
  removeFileCaption: string;
19002
19228
  booleanCheckedLabel: string;
@@ -19064,7 +19290,7 @@ declare module "localization/croatian" {
19064
19290
  loadingFile: string;
19065
19291
  chooseFile: string;
19066
19292
  noFileChosen: string;
19067
- fileDragAreaPlaceholder: string;
19293
+ filePlaceholder: string;
19068
19294
  confirmDelete: string;
19069
19295
  keyDuplicationError: string;
19070
19296
  addColumn: string;
@@ -19093,8 +19319,8 @@ declare module "localization/croatian" {
19093
19319
  signaturePlaceHolder: string;
19094
19320
  chooseFileCaption: string;
19095
19321
  takePhotoCaption: string;
19096
- cameraPlaceHolder: string;
19097
- fileCameraDragAreaPlaceHolder: string;
19322
+ photoPlaceholder: string;
19323
+ fileOrPhotoPlaceholder: string;
19098
19324
  replaceFileCaption: string;
19099
19325
  removeFileCaption: string;
19100
19326
  booleanCheckedLabel: string;
@@ -19162,7 +19388,7 @@ declare module "localization/czech" {
19162
19388
  loadingFile: string;
19163
19389
  chooseFile: string;
19164
19390
  noFileChosen: string;
19165
- fileDragAreaPlaceholder: string;
19391
+ filePlaceholder: string;
19166
19392
  confirmDelete: string;
19167
19393
  keyDuplicationError: string;
19168
19394
  addColumn: string;
@@ -19191,8 +19417,8 @@ declare module "localization/czech" {
19191
19417
  signaturePlaceHolder: string;
19192
19418
  chooseFileCaption: string;
19193
19419
  takePhotoCaption: string;
19194
- cameraPlaceHolder: string;
19195
- fileCameraDragAreaPlaceHolder: string;
19420
+ photoPlaceholder: string;
19421
+ fileOrPhotoPlaceholder: string;
19196
19422
  replaceFileCaption: string;
19197
19423
  removeFileCaption: string;
19198
19424
  booleanCheckedLabel: string;
@@ -19260,7 +19486,7 @@ declare module "localization/danish" {
19260
19486
  loadingFile: string;
19261
19487
  chooseFile: string;
19262
19488
  noFileChosen: string;
19263
- fileDragAreaPlaceholder: string;
19489
+ filePlaceholder: string;
19264
19490
  confirmDelete: string;
19265
19491
  keyDuplicationError: string;
19266
19492
  addColumn: string;
@@ -19289,8 +19515,8 @@ declare module "localization/danish" {
19289
19515
  signaturePlaceHolder: string;
19290
19516
  chooseFileCaption: string;
19291
19517
  takePhotoCaption: string;
19292
- cameraPlaceHolder: string;
19293
- fileCameraDragAreaPlaceHolder: string;
19518
+ photoPlaceholder: string;
19519
+ fileOrPhotoPlaceholder: string;
19294
19520
  replaceFileCaption: string;
19295
19521
  removeFileCaption: string;
19296
19522
  booleanCheckedLabel: string;
@@ -19358,7 +19584,7 @@ declare module "localization/dutch" {
19358
19584
  loadingFile: string;
19359
19585
  chooseFile: string;
19360
19586
  noFileChosen: string;
19361
- fileDragAreaPlaceholder: string;
19587
+ filePlaceholder: string;
19362
19588
  confirmDelete: string;
19363
19589
  keyDuplicationError: string;
19364
19590
  addColumn: string;
@@ -19387,8 +19613,8 @@ declare module "localization/dutch" {
19387
19613
  signaturePlaceHolder: string;
19388
19614
  chooseFileCaption: string;
19389
19615
  takePhotoCaption: string;
19390
- cameraPlaceHolder: string;
19391
- fileCameraDragAreaPlaceHolder: string;
19616
+ photoPlaceholder: string;
19617
+ fileOrPhotoPlaceholder: string;
19392
19618
  replaceFileCaption: string;
19393
19619
  removeFileCaption: string;
19394
19620
  booleanCheckedLabel: string;
@@ -19457,7 +19683,7 @@ declare module "localization/estonian" {
19457
19683
  loadingFile: string;
19458
19684
  chooseFile: string;
19459
19685
  noFileChosen: string;
19460
- fileDragAreaPlaceholder: string;
19686
+ filePlaceholder: string;
19461
19687
  confirmDelete: string;
19462
19688
  keyDuplicationError: string;
19463
19689
  addColumn: string;
@@ -19486,8 +19712,8 @@ declare module "localization/estonian" {
19486
19712
  signaturePlaceHolder: string;
19487
19713
  chooseFileCaption: string;
19488
19714
  takePhotoCaption: string;
19489
- cameraPlaceHolder: string;
19490
- fileCameraDragAreaPlaceHolder: string;
19715
+ photoPlaceholder: string;
19716
+ fileOrPhotoPlaceholder: string;
19491
19717
  replaceFileCaption: string;
19492
19718
  removeFileCaption: string;
19493
19719
  booleanCheckedLabel: string;
@@ -19555,7 +19781,7 @@ declare module "localization/finnish" {
19555
19781
  loadingFile: string;
19556
19782
  chooseFile: string;
19557
19783
  noFileChosen: string;
19558
- fileDragAreaPlaceholder: string;
19784
+ filePlaceholder: string;
19559
19785
  confirmDelete: string;
19560
19786
  keyDuplicationError: string;
19561
19787
  addColumn: string;
@@ -19584,8 +19810,8 @@ declare module "localization/finnish" {
19584
19810
  signaturePlaceHolder: string;
19585
19811
  chooseFileCaption: string;
19586
19812
  takePhotoCaption: string;
19587
- cameraPlaceHolder: string;
19588
- fileCameraDragAreaPlaceHolder: string;
19813
+ photoPlaceholder: string;
19814
+ fileOrPhotoPlaceholder: string;
19589
19815
  replaceFileCaption: string;
19590
19816
  removeFileCaption: string;
19591
19817
  booleanCheckedLabel: string;
@@ -19653,7 +19879,7 @@ declare module "localization/french" {
19653
19879
  loadingFile: string;
19654
19880
  chooseFile: string;
19655
19881
  noFileChosen: string;
19656
- fileDragAreaPlaceholder: string;
19882
+ filePlaceholder: string;
19657
19883
  confirmDelete: string;
19658
19884
  keyDuplicationError: string;
19659
19885
  addColumn: string;
@@ -19682,8 +19908,8 @@ declare module "localization/french" {
19682
19908
  signaturePlaceHolder: string;
19683
19909
  chooseFileCaption: string;
19684
19910
  takePhotoCaption: string;
19685
- cameraPlaceHolder: string;
19686
- fileCameraDragAreaPlaceHolder: string;
19911
+ photoPlaceholder: string;
19912
+ fileOrPhotoPlaceholder: string;
19687
19913
  replaceFileCaption: string;
19688
19914
  removeFileCaption: string;
19689
19915
  booleanCheckedLabel: string;
@@ -19751,7 +19977,7 @@ declare module "localization/georgian" {
19751
19977
  loadingFile: string;
19752
19978
  chooseFile: string;
19753
19979
  noFileChosen: string;
19754
- fileDragAreaPlaceholder: string;
19980
+ filePlaceholder: string;
19755
19981
  confirmDelete: string;
19756
19982
  keyDuplicationError: string;
19757
19983
  addColumn: string;
@@ -19780,8 +20006,8 @@ declare module "localization/georgian" {
19780
20006
  signaturePlaceHolder: string;
19781
20007
  chooseFileCaption: string;
19782
20008
  takePhotoCaption: string;
19783
- cameraPlaceHolder: string;
19784
- fileCameraDragAreaPlaceHolder: string;
20009
+ photoPlaceholder: string;
20010
+ fileOrPhotoPlaceholder: string;
19785
20011
  replaceFileCaption: string;
19786
20012
  removeFileCaption: string;
19787
20013
  booleanCheckedLabel: string;
@@ -19849,7 +20075,7 @@ declare module "localization/german" {
19849
20075
  loadingFile: string;
19850
20076
  chooseFile: string;
19851
20077
  noFileChosen: string;
19852
- fileDragAreaPlaceholder: string;
20078
+ filePlaceholder: string;
19853
20079
  confirmDelete: string;
19854
20080
  keyDuplicationError: string;
19855
20081
  addColumn: string;
@@ -19878,8 +20104,8 @@ declare module "localization/german" {
19878
20104
  signaturePlaceHolder: string;
19879
20105
  chooseFileCaption: string;
19880
20106
  takePhotoCaption: string;
19881
- cameraPlaceHolder: string;
19882
- fileCameraDragAreaPlaceHolder: string;
20107
+ photoPlaceholder: string;
20108
+ fileOrPhotoPlaceholder: string;
19883
20109
  replaceFileCaption: string;
19884
20110
  removeFileCaption: string;
19885
20111
  booleanCheckedLabel: string;
@@ -19947,7 +20173,7 @@ declare module "localization/greek" {
19947
20173
  loadingFile: string;
19948
20174
  chooseFile: string;
19949
20175
  noFileChosen: string;
19950
- fileDragAreaPlaceholder: string;
20176
+ filePlaceholder: string;
19951
20177
  confirmDelete: string;
19952
20178
  keyDuplicationError: string;
19953
20179
  addColumn: string;
@@ -19976,8 +20202,8 @@ declare module "localization/greek" {
19976
20202
  signaturePlaceHolder: string;
19977
20203
  chooseFileCaption: string;
19978
20204
  takePhotoCaption: string;
19979
- cameraPlaceHolder: string;
19980
- fileCameraDragAreaPlaceHolder: string;
20205
+ photoPlaceholder: string;
20206
+ fileOrPhotoPlaceholder: string;
19981
20207
  replaceFileCaption: string;
19982
20208
  removeFileCaption: string;
19983
20209
  booleanCheckedLabel: string;
@@ -20045,7 +20271,7 @@ declare module "localization/hebrew" {
20045
20271
  loadingFile: string;
20046
20272
  chooseFile: string;
20047
20273
  noFileChosen: string;
20048
- fileDragAreaPlaceholder: string;
20274
+ filePlaceholder: string;
20049
20275
  confirmDelete: string;
20050
20276
  keyDuplicationError: string;
20051
20277
  addColumn: string;
@@ -20074,8 +20300,8 @@ declare module "localization/hebrew" {
20074
20300
  signaturePlaceHolder: string;
20075
20301
  chooseFileCaption: string;
20076
20302
  takePhotoCaption: string;
20077
- cameraPlaceHolder: string;
20078
- fileCameraDragAreaPlaceHolder: string;
20303
+ photoPlaceholder: string;
20304
+ fileOrPhotoPlaceholder: string;
20079
20305
  replaceFileCaption: string;
20080
20306
  removeFileCaption: string;
20081
20307
  booleanCheckedLabel: string;
@@ -20143,7 +20369,7 @@ declare module "localization/hindi" {
20143
20369
  loadingFile: string;
20144
20370
  chooseFile: string;
20145
20371
  noFileChosen: string;
20146
- fileDragAreaPlaceholder: string;
20372
+ filePlaceholder: string;
20147
20373
  confirmDelete: string;
20148
20374
  keyDuplicationError: string;
20149
20375
  addColumn: string;
@@ -20172,8 +20398,8 @@ declare module "localization/hindi" {
20172
20398
  signaturePlaceHolder: string;
20173
20399
  chooseFileCaption: string;
20174
20400
  takePhotoCaption: string;
20175
- cameraPlaceHolder: string;
20176
- fileCameraDragAreaPlaceHolder: string;
20401
+ photoPlaceholder: string;
20402
+ fileOrPhotoPlaceholder: string;
20177
20403
  replaceFileCaption: string;
20178
20404
  removeFileCaption: string;
20179
20405
  booleanCheckedLabel: string;
@@ -20241,7 +20467,7 @@ declare module "localization/hungarian" {
20241
20467
  loadingFile: string;
20242
20468
  chooseFile: string;
20243
20469
  noFileChosen: string;
20244
- fileDragAreaPlaceholder: string;
20470
+ filePlaceholder: string;
20245
20471
  confirmDelete: string;
20246
20472
  keyDuplicationError: string;
20247
20473
  addColumn: string;
@@ -20270,8 +20496,8 @@ declare module "localization/hungarian" {
20270
20496
  signaturePlaceHolder: string;
20271
20497
  chooseFileCaption: string;
20272
20498
  takePhotoCaption: string;
20273
- cameraPlaceHolder: string;
20274
- fileCameraDragAreaPlaceHolder: string;
20499
+ photoPlaceholder: string;
20500
+ fileOrPhotoPlaceholder: string;
20275
20501
  replaceFileCaption: string;
20276
20502
  removeFileCaption: string;
20277
20503
  booleanCheckedLabel: string;
@@ -20339,7 +20565,7 @@ declare module "localization/icelandic" {
20339
20565
  loadingFile: string;
20340
20566
  chooseFile: string;
20341
20567
  noFileChosen: string;
20342
- fileDragAreaPlaceholder: string;
20568
+ filePlaceholder: string;
20343
20569
  confirmDelete: string;
20344
20570
  keyDuplicationError: string;
20345
20571
  addColumn: string;
@@ -20368,8 +20594,8 @@ declare module "localization/icelandic" {
20368
20594
  signaturePlaceHolder: string;
20369
20595
  chooseFileCaption: string;
20370
20596
  takePhotoCaption: string;
20371
- cameraPlaceHolder: string;
20372
- fileCameraDragAreaPlaceHolder: string;
20597
+ photoPlaceholder: string;
20598
+ fileOrPhotoPlaceholder: string;
20373
20599
  replaceFileCaption: string;
20374
20600
  removeFileCaption: string;
20375
20601
  booleanCheckedLabel: string;
@@ -20437,7 +20663,7 @@ declare module "localization/indonesian" {
20437
20663
  loadingFile: string;
20438
20664
  chooseFile: string;
20439
20665
  noFileChosen: string;
20440
- fileDragAreaPlaceholder: string;
20666
+ filePlaceholder: string;
20441
20667
  confirmDelete: string;
20442
20668
  keyDuplicationError: string;
20443
20669
  addColumn: string;
@@ -20466,8 +20692,8 @@ declare module "localization/indonesian" {
20466
20692
  signaturePlaceHolder: string;
20467
20693
  chooseFileCaption: string;
20468
20694
  takePhotoCaption: string;
20469
- cameraPlaceHolder: string;
20470
- fileCameraDragAreaPlaceHolder: string;
20695
+ photoPlaceholder: string;
20696
+ fileOrPhotoPlaceholder: string;
20471
20697
  replaceFileCaption: string;
20472
20698
  removeFileCaption: string;
20473
20699
  booleanCheckedLabel: string;
@@ -20535,7 +20761,7 @@ declare module "localization/italian" {
20535
20761
  loadingFile: string;
20536
20762
  chooseFile: string;
20537
20763
  noFileChosen: string;
20538
- fileDragAreaPlaceholder: string;
20764
+ filePlaceholder: string;
20539
20765
  confirmDelete: string;
20540
20766
  keyDuplicationError: string;
20541
20767
  addColumn: string;
@@ -20564,8 +20790,8 @@ declare module "localization/italian" {
20564
20790
  signaturePlaceHolder: string;
20565
20791
  chooseFileCaption: string;
20566
20792
  takePhotoCaption: string;
20567
- cameraPlaceHolder: string;
20568
- fileCameraDragAreaPlaceHolder: string;
20793
+ photoPlaceholder: string;
20794
+ fileOrPhotoPlaceholder: string;
20569
20795
  replaceFileCaption: string;
20570
20796
  removeFileCaption: string;
20571
20797
  booleanCheckedLabel: string;
@@ -20633,7 +20859,7 @@ declare module "localization/japanese" {
20633
20859
  loadingFile: string;
20634
20860
  chooseFile: string;
20635
20861
  noFileChosen: string;
20636
- fileDragAreaPlaceholder: string;
20862
+ filePlaceholder: string;
20637
20863
  confirmDelete: string;
20638
20864
  keyDuplicationError: string;
20639
20865
  addColumn: string;
@@ -20662,8 +20888,8 @@ declare module "localization/japanese" {
20662
20888
  signaturePlaceHolder: string;
20663
20889
  chooseFileCaption: string;
20664
20890
  takePhotoCaption: string;
20665
- cameraPlaceHolder: string;
20666
- fileCameraDragAreaPlaceHolder: string;
20891
+ photoPlaceholder: string;
20892
+ fileOrPhotoPlaceholder: string;
20667
20893
  replaceFileCaption: string;
20668
20894
  removeFileCaption: string;
20669
20895
  booleanCheckedLabel: string;
@@ -20731,7 +20957,7 @@ declare module "localization/kazakh" {
20731
20957
  loadingFile: string;
20732
20958
  chooseFile: string;
20733
20959
  noFileChosen: string;
20734
- fileDragAreaPlaceholder: string;
20960
+ filePlaceholder: string;
20735
20961
  confirmDelete: string;
20736
20962
  keyDuplicationError: string;
20737
20963
  addColumn: string;
@@ -20760,8 +20986,8 @@ declare module "localization/kazakh" {
20760
20986
  signaturePlaceHolder: string;
20761
20987
  chooseFileCaption: string;
20762
20988
  takePhotoCaption: string;
20763
- cameraPlaceHolder: string;
20764
- fileCameraDragAreaPlaceHolder: string;
20989
+ photoPlaceholder: string;
20990
+ fileOrPhotoPlaceholder: string;
20765
20991
  replaceFileCaption: string;
20766
20992
  removeFileCaption: string;
20767
20993
  booleanCheckedLabel: string;
@@ -20829,7 +21055,7 @@ declare module "localization/korean" {
20829
21055
  loadingFile: string;
20830
21056
  chooseFile: string;
20831
21057
  noFileChosen: string;
20832
- fileDragAreaPlaceholder: string;
21058
+ filePlaceholder: string;
20833
21059
  confirmDelete: string;
20834
21060
  keyDuplicationError: string;
20835
21061
  addColumn: string;
@@ -20858,8 +21084,8 @@ declare module "localization/korean" {
20858
21084
  signaturePlaceHolder: string;
20859
21085
  chooseFileCaption: string;
20860
21086
  takePhotoCaption: string;
20861
- cameraPlaceHolder: string;
20862
- fileCameraDragAreaPlaceHolder: string;
21087
+ photoPlaceholder: string;
21088
+ fileOrPhotoPlaceholder: string;
20863
21089
  replaceFileCaption: string;
20864
21090
  removeFileCaption: string;
20865
21091
  booleanCheckedLabel: string;
@@ -20927,7 +21153,7 @@ declare module "localization/latvian" {
20927
21153
  loadingFile: string;
20928
21154
  chooseFile: string;
20929
21155
  noFileChosen: string;
20930
- fileDragAreaPlaceholder: string;
21156
+ filePlaceholder: string;
20931
21157
  confirmDelete: string;
20932
21158
  keyDuplicationError: string;
20933
21159
  addColumn: string;
@@ -20956,8 +21182,8 @@ declare module "localization/latvian" {
20956
21182
  signaturePlaceHolder: string;
20957
21183
  chooseFileCaption: string;
20958
21184
  takePhotoCaption: string;
20959
- cameraPlaceHolder: string;
20960
- fileCameraDragAreaPlaceHolder: string;
21185
+ photoPlaceholder: string;
21186
+ fileOrPhotoPlaceholder: string;
20961
21187
  replaceFileCaption: string;
20962
21188
  removeFileCaption: string;
20963
21189
  booleanCheckedLabel: string;
@@ -21025,7 +21251,7 @@ declare module "localization/lithuanian" {
21025
21251
  loadingFile: string;
21026
21252
  chooseFile: string;
21027
21253
  noFileChosen: string;
21028
- fileDragAreaPlaceholder: string;
21254
+ filePlaceholder: string;
21029
21255
  confirmDelete: string;
21030
21256
  keyDuplicationError: string;
21031
21257
  addColumn: string;
@@ -21054,8 +21280,8 @@ declare module "localization/lithuanian" {
21054
21280
  signaturePlaceHolder: string;
21055
21281
  chooseFileCaption: string;
21056
21282
  takePhotoCaption: string;
21057
- cameraPlaceHolder: string;
21058
- fileCameraDragAreaPlaceHolder: string;
21283
+ photoPlaceholder: string;
21284
+ fileOrPhotoPlaceholder: string;
21059
21285
  replaceFileCaption: string;
21060
21286
  removeFileCaption: string;
21061
21287
  booleanCheckedLabel: string;
@@ -21123,7 +21349,7 @@ declare module "localization/macedonian" {
21123
21349
  loadingFile: string;
21124
21350
  chooseFile: string;
21125
21351
  noFileChosen: string;
21126
- fileDragAreaPlaceholder: string;
21352
+ filePlaceholder: string;
21127
21353
  confirmDelete: string;
21128
21354
  keyDuplicationError: string;
21129
21355
  addColumn: string;
@@ -21152,8 +21378,8 @@ declare module "localization/macedonian" {
21152
21378
  signaturePlaceHolder: string;
21153
21379
  chooseFileCaption: string;
21154
21380
  takePhotoCaption: string;
21155
- cameraPlaceHolder: string;
21156
- fileCameraDragAreaPlaceHolder: string;
21381
+ photoPlaceholder: string;
21382
+ fileOrPhotoPlaceholder: string;
21157
21383
  replaceFileCaption: string;
21158
21384
  removeFileCaption: string;
21159
21385
  booleanCheckedLabel: string;
@@ -21221,7 +21447,7 @@ declare module "localization/malay" {
21221
21447
  loadingFile: string;
21222
21448
  chooseFile: string;
21223
21449
  noFileChosen: string;
21224
- fileDragAreaPlaceholder: string;
21450
+ filePlaceholder: string;
21225
21451
  confirmDelete: string;
21226
21452
  keyDuplicationError: string;
21227
21453
  addColumn: string;
@@ -21250,8 +21476,8 @@ declare module "localization/malay" {
21250
21476
  signaturePlaceHolder: string;
21251
21477
  chooseFileCaption: string;
21252
21478
  takePhotoCaption: string;
21253
- cameraPlaceHolder: string;
21254
- fileCameraDragAreaPlaceHolder: string;
21479
+ photoPlaceholder: string;
21480
+ fileOrPhotoPlaceholder: string;
21255
21481
  replaceFileCaption: string;
21256
21482
  removeFileCaption: string;
21257
21483
  booleanCheckedLabel: string;
@@ -21319,7 +21545,7 @@ declare module "localization/norwegian" {
21319
21545
  loadingFile: string;
21320
21546
  chooseFile: string;
21321
21547
  noFileChosen: string;
21322
- fileDragAreaPlaceholder: string;
21548
+ filePlaceholder: string;
21323
21549
  confirmDelete: string;
21324
21550
  keyDuplicationError: string;
21325
21551
  addColumn: string;
@@ -21348,8 +21574,8 @@ declare module "localization/norwegian" {
21348
21574
  signaturePlaceHolder: string;
21349
21575
  chooseFileCaption: string;
21350
21576
  takePhotoCaption: string;
21351
- cameraPlaceHolder: string;
21352
- fileCameraDragAreaPlaceHolder: string;
21577
+ photoPlaceholder: string;
21578
+ fileOrPhotoPlaceholder: string;
21353
21579
  replaceFileCaption: string;
21354
21580
  removeFileCaption: string;
21355
21581
  booleanCheckedLabel: string;
@@ -21417,7 +21643,7 @@ declare module "localization/persian" {
21417
21643
  loadingFile: string;
21418
21644
  chooseFile: string;
21419
21645
  noFileChosen: string;
21420
- fileDragAreaPlaceholder: string;
21646
+ filePlaceholder: string;
21421
21647
  confirmDelete: string;
21422
21648
  keyDuplicationError: string;
21423
21649
  addColumn: string;
@@ -21446,8 +21672,8 @@ declare module "localization/persian" {
21446
21672
  signaturePlaceHolder: string;
21447
21673
  chooseFileCaption: string;
21448
21674
  takePhotoCaption: string;
21449
- cameraPlaceHolder: string;
21450
- fileCameraDragAreaPlaceHolder: string;
21675
+ photoPlaceholder: string;
21676
+ fileOrPhotoPlaceholder: string;
21451
21677
  replaceFileCaption: string;
21452
21678
  removeFileCaption: string;
21453
21679
  booleanCheckedLabel: string;
@@ -21515,7 +21741,7 @@ declare module "localization/polish" {
21515
21741
  loadingFile: string;
21516
21742
  chooseFile: string;
21517
21743
  noFileChosen: string;
21518
- fileDragAreaPlaceholder: string;
21744
+ filePlaceholder: string;
21519
21745
  confirmDelete: string;
21520
21746
  keyDuplicationError: string;
21521
21747
  addColumn: string;
@@ -21544,8 +21770,8 @@ declare module "localization/polish" {
21544
21770
  signaturePlaceHolder: string;
21545
21771
  chooseFileCaption: string;
21546
21772
  takePhotoCaption: string;
21547
- cameraPlaceHolder: string;
21548
- fileCameraDragAreaPlaceHolder: string;
21773
+ photoPlaceholder: string;
21774
+ fileOrPhotoPlaceholder: string;
21549
21775
  replaceFileCaption: string;
21550
21776
  removeFileCaption: string;
21551
21777
  booleanCheckedLabel: string;
@@ -21613,7 +21839,7 @@ declare module "localization/portuguese" {
21613
21839
  loadingFile: string;
21614
21840
  chooseFile: string;
21615
21841
  noFileChosen: string;
21616
- fileDragAreaPlaceholder: string;
21842
+ filePlaceholder: string;
21617
21843
  confirmDelete: string;
21618
21844
  keyDuplicationError: string;
21619
21845
  addColumn: string;
@@ -21642,8 +21868,8 @@ declare module "localization/portuguese" {
21642
21868
  signaturePlaceHolder: string;
21643
21869
  chooseFileCaption: string;
21644
21870
  takePhotoCaption: string;
21645
- cameraPlaceHolder: string;
21646
- fileCameraDragAreaPlaceHolder: string;
21871
+ photoPlaceholder: string;
21872
+ fileOrPhotoPlaceholder: string;
21647
21873
  replaceFileCaption: string;
21648
21874
  removeFileCaption: string;
21649
21875
  booleanCheckedLabel: string;
@@ -21714,7 +21940,7 @@ declare module "localization/portuguese-br" {
21714
21940
  loadingFile: string;
21715
21941
  chooseFile: string;
21716
21942
  noFileChosen: string;
21717
- fileDragAreaPlaceholder: string;
21943
+ filePlaceholder: string;
21718
21944
  confirmDelete: string;
21719
21945
  keyDuplicationError: string;
21720
21946
  addColumn: string;
@@ -21743,8 +21969,8 @@ declare module "localization/portuguese-br" {
21743
21969
  signaturePlaceHolder: string;
21744
21970
  chooseFileCaption: string;
21745
21971
  takePhotoCaption: string;
21746
- cameraPlaceHolder: string;
21747
- fileCameraDragAreaPlaceHolder: string;
21972
+ photoPlaceholder: string;
21973
+ fileOrPhotoPlaceholder: string;
21748
21974
  replaceFileCaption: string;
21749
21975
  removeFileCaption: string;
21750
21976
  booleanCheckedLabel: string;
@@ -21815,7 +22041,7 @@ declare module "localization/russian" {
21815
22041
  loadingFile: string;
21816
22042
  chooseFile: string;
21817
22043
  noFileChosen: string;
21818
- fileDragAreaPlaceholder: string;
22044
+ filePlaceholder: string;
21819
22045
  confirmDelete: string;
21820
22046
  keyDuplicationError: string;
21821
22047
  addColumn: string;
@@ -21844,8 +22070,8 @@ declare module "localization/russian" {
21844
22070
  signaturePlaceHolder: string;
21845
22071
  chooseFileCaption: string;
21846
22072
  takePhotoCaption: string;
21847
- cameraPlaceHolder: string;
21848
- fileCameraDragAreaPlaceHolder: string;
22073
+ photoPlaceholder: string;
22074
+ fileOrPhotoPlaceholder: string;
21849
22075
  replaceFileCaption: string;
21850
22076
  removeFileCaption: string;
21851
22077
  booleanCheckedLabel: string;
@@ -21913,7 +22139,7 @@ declare module "localization/serbian" {
21913
22139
  loadingFile: string;
21914
22140
  chooseFile: string;
21915
22141
  noFileChosen: string;
21916
- fileDragAreaPlaceholder: string;
22142
+ filePlaceholder: string;
21917
22143
  confirmDelete: string;
21918
22144
  keyDuplicationError: string;
21919
22145
  addColumn: string;
@@ -21942,8 +22168,8 @@ declare module "localization/serbian" {
21942
22168
  signaturePlaceHolder: string;
21943
22169
  chooseFileCaption: string;
21944
22170
  takePhotoCaption: string;
21945
- cameraPlaceHolder: string;
21946
- fileCameraDragAreaPlaceHolder: string;
22171
+ photoPlaceholder: string;
22172
+ fileOrPhotoPlaceholder: string;
21947
22173
  replaceFileCaption: string;
21948
22174
  removeFileCaption: string;
21949
22175
  booleanCheckedLabel: string;
@@ -22011,7 +22237,7 @@ declare module "localization/simplified-chinese" {
22011
22237
  loadingFile: string;
22012
22238
  chooseFile: string;
22013
22239
  noFileChosen: string;
22014
- fileDragAreaPlaceholder: string;
22240
+ filePlaceholder: string;
22015
22241
  confirmDelete: string;
22016
22242
  keyDuplicationError: string;
22017
22243
  addColumn: string;
@@ -22040,8 +22266,8 @@ declare module "localization/simplified-chinese" {
22040
22266
  signaturePlaceHolder: string;
22041
22267
  chooseFileCaption: string;
22042
22268
  takePhotoCaption: string;
22043
- cameraPlaceHolder: string;
22044
- fileCameraDragAreaPlaceHolder: string;
22269
+ photoPlaceholder: string;
22270
+ fileOrPhotoPlaceholder: string;
22045
22271
  replaceFileCaption: string;
22046
22272
  removeFileCaption: string;
22047
22273
  booleanCheckedLabel: string;
@@ -22109,7 +22335,7 @@ declare module "localization/slovak" {
22109
22335
  loadingFile: string;
22110
22336
  chooseFile: string;
22111
22337
  noFileChosen: string;
22112
- fileDragAreaPlaceholder: string;
22338
+ filePlaceholder: string;
22113
22339
  confirmDelete: string;
22114
22340
  keyDuplicationError: string;
22115
22341
  addColumn: string;
@@ -22138,8 +22364,8 @@ declare module "localization/slovak" {
22138
22364
  signaturePlaceHolder: string;
22139
22365
  chooseFileCaption: string;
22140
22366
  takePhotoCaption: string;
22141
- cameraPlaceHolder: string;
22142
- fileCameraDragAreaPlaceHolder: string;
22367
+ photoPlaceholder: string;
22368
+ fileOrPhotoPlaceholder: string;
22143
22369
  replaceFileCaption: string;
22144
22370
  removeFileCaption: string;
22145
22371
  booleanCheckedLabel: string;
@@ -22207,7 +22433,7 @@ declare module "localization/spanish" {
22207
22433
  loadingFile: string;
22208
22434
  chooseFile: string;
22209
22435
  noFileChosen: string;
22210
- fileDragAreaPlaceholder: string;
22436
+ filePlaceholder: string;
22211
22437
  confirmDelete: string;
22212
22438
  keyDuplicationError: string;
22213
22439
  addColumn: string;
@@ -22236,8 +22462,8 @@ declare module "localization/spanish" {
22236
22462
  signaturePlaceHolder: string;
22237
22463
  chooseFileCaption: string;
22238
22464
  takePhotoCaption: string;
22239
- cameraPlaceHolder: string;
22240
- fileCameraDragAreaPlaceHolder: string;
22465
+ photoPlaceholder: string;
22466
+ fileOrPhotoPlaceholder: string;
22241
22467
  replaceFileCaption: string;
22242
22468
  removeFileCaption: string;
22243
22469
  booleanCheckedLabel: string;
@@ -22305,7 +22531,7 @@ declare module "localization/swahili" {
22305
22531
  loadingFile: string;
22306
22532
  chooseFile: string;
22307
22533
  noFileChosen: string;
22308
- fileDragAreaPlaceholder: string;
22534
+ filePlaceholder: string;
22309
22535
  confirmDelete: string;
22310
22536
  keyDuplicationError: string;
22311
22537
  addColumn: string;
@@ -22334,8 +22560,8 @@ declare module "localization/swahili" {
22334
22560
  signaturePlaceHolder: string;
22335
22561
  chooseFileCaption: string;
22336
22562
  takePhotoCaption: string;
22337
- cameraPlaceHolder: string;
22338
- fileCameraDragAreaPlaceHolder: string;
22563
+ photoPlaceholder: string;
22564
+ fileOrPhotoPlaceholder: string;
22339
22565
  replaceFileCaption: string;
22340
22566
  removeFileCaption: string;
22341
22567
  booleanCheckedLabel: string;
@@ -22403,7 +22629,7 @@ declare module "localization/swedish" {
22403
22629
  loadingFile: string;
22404
22630
  chooseFile: string;
22405
22631
  noFileChosen: string;
22406
- fileDragAreaPlaceholder: string;
22632
+ filePlaceholder: string;
22407
22633
  confirmDelete: string;
22408
22634
  keyDuplicationError: string;
22409
22635
  addColumn: string;
@@ -22432,8 +22658,8 @@ declare module "localization/swedish" {
22432
22658
  signaturePlaceHolder: string;
22433
22659
  chooseFileCaption: string;
22434
22660
  takePhotoCaption: string;
22435
- cameraPlaceHolder: string;
22436
- fileCameraDragAreaPlaceHolder: string;
22661
+ photoPlaceholder: string;
22662
+ fileOrPhotoPlaceholder: string;
22437
22663
  replaceFileCaption: string;
22438
22664
  removeFileCaption: string;
22439
22665
  booleanCheckedLabel: string;
@@ -22565,7 +22791,7 @@ declare module "localization/thai" {
22565
22791
  loadingFile: string;
22566
22792
  chooseFile: string;
22567
22793
  noFileChosen: string;
22568
- fileDragAreaPlaceholder: string;
22794
+ filePlaceholder: string;
22569
22795
  confirmDelete: string;
22570
22796
  keyDuplicationError: string;
22571
22797
  addColumn: string;
@@ -22594,8 +22820,8 @@ declare module "localization/thai" {
22594
22820
  signaturePlaceHolder: string;
22595
22821
  chooseFileCaption: string;
22596
22822
  takePhotoCaption: string;
22597
- cameraPlaceHolder: string;
22598
- fileCameraDragAreaPlaceHolder: string;
22823
+ photoPlaceholder: string;
22824
+ fileOrPhotoPlaceholder: string;
22599
22825
  replaceFileCaption: string;
22600
22826
  removeFileCaption: string;
22601
22827
  booleanCheckedLabel: string;
@@ -22663,7 +22889,7 @@ declare module "localization/traditional-chinese" {
22663
22889
  loadingFile: string;
22664
22890
  chooseFile: string;
22665
22891
  noFileChosen: string;
22666
- fileDragAreaPlaceholder: string;
22892
+ filePlaceholder: string;
22667
22893
  confirmDelete: string;
22668
22894
  keyDuplicationError: string;
22669
22895
  addColumn: string;
@@ -22692,8 +22918,8 @@ declare module "localization/traditional-chinese" {
22692
22918
  signaturePlaceHolder: string;
22693
22919
  chooseFileCaption: string;
22694
22920
  takePhotoCaption: string;
22695
- cameraPlaceHolder: string;
22696
- fileCameraDragAreaPlaceHolder: string;
22921
+ photoPlaceholder: string;
22922
+ fileOrPhotoPlaceholder: string;
22697
22923
  replaceFileCaption: string;
22698
22924
  removeFileCaption: string;
22699
22925
  booleanCheckedLabel: string;
@@ -22761,7 +22987,7 @@ declare module "localization/turkish" {
22761
22987
  loadingFile: string;
22762
22988
  chooseFile: string;
22763
22989
  noFileChosen: string;
22764
- fileDragAreaPlaceholder: string;
22990
+ filePlaceholder: string;
22765
22991
  confirmDelete: string;
22766
22992
  keyDuplicationError: string;
22767
22993
  addColumn: string;
@@ -22790,8 +23016,8 @@ declare module "localization/turkish" {
22790
23016
  signaturePlaceHolder: string;
22791
23017
  chooseFileCaption: string;
22792
23018
  takePhotoCaption: string;
22793
- cameraPlaceHolder: string;
22794
- fileCameraDragAreaPlaceHolder: string;
23019
+ photoPlaceholder: string;
23020
+ fileOrPhotoPlaceholder: string;
22795
23021
  replaceFileCaption: string;
22796
23022
  removeFileCaption: string;
22797
23023
  booleanCheckedLabel: string;
@@ -22859,7 +23085,7 @@ declare module "localization/ukrainian" {
22859
23085
  loadingFile: string;
22860
23086
  chooseFile: string;
22861
23087
  noFileChosen: string;
22862
- fileDragAreaPlaceholder: string;
23088
+ filePlaceholder: string;
22863
23089
  confirmDelete: string;
22864
23090
  keyDuplicationError: string;
22865
23091
  addColumn: string;
@@ -22888,8 +23114,8 @@ declare module "localization/ukrainian" {
22888
23114
  signaturePlaceHolder: string;
22889
23115
  chooseFileCaption: string;
22890
23116
  takePhotoCaption: string;
22891
- cameraPlaceHolder: string;
22892
- fileCameraDragAreaPlaceHolder: string;
23117
+ photoPlaceholder: string;
23118
+ fileOrPhotoPlaceholder: string;
22893
23119
  replaceFileCaption: string;
22894
23120
  removeFileCaption: string;
22895
23121
  booleanCheckedLabel: string;
@@ -22957,7 +23183,7 @@ declare module "localization/vietnamese" {
22957
23183
  loadingFile: string;
22958
23184
  chooseFile: string;
22959
23185
  noFileChosen: string;
22960
- fileDragAreaPlaceholder: string;
23186
+ filePlaceholder: string;
22961
23187
  confirmDelete: string;
22962
23188
  keyDuplicationError: string;
22963
23189
  addColumn: string;
@@ -22986,8 +23212,8 @@ declare module "localization/vietnamese" {
22986
23212
  signaturePlaceHolder: string;
22987
23213
  chooseFileCaption: string;
22988
23214
  takePhotoCaption: string;
22989
- cameraPlaceHolder: string;
22990
- fileCameraDragAreaPlaceHolder: string;
23215
+ photoPlaceholder: string;
23216
+ fileOrPhotoPlaceholder: string;
22991
23217
  replaceFileCaption: string;
22992
23218
  removeFileCaption: string;
22993
23219
  booleanCheckedLabel: string;
@@ -23055,7 +23281,7 @@ declare module "localization/welsh" {
23055
23281
  loadingFile: string;
23056
23282
  chooseFile: string;
23057
23283
  noFileChosen: string;
23058
- fileDragAreaPlaceholder: string;
23284
+ filePlaceholder: string;
23059
23285
  confirmDelete: string;
23060
23286
  keyDuplicationError: string;
23061
23287
  addColumn: string;
@@ -23084,8 +23310,8 @@ declare module "localization/welsh" {
23084
23310
  signaturePlaceHolder: string;
23085
23311
  chooseFileCaption: string;
23086
23312
  takePhotoCaption: string;
23087
- cameraPlaceHolder: string;
23088
- fileCameraDragAreaPlaceHolder: string;
23313
+ photoPlaceholder: string;
23314
+ fileOrPhotoPlaceholder: string;
23089
23315
  replaceFileCaption: string;
23090
23316
  removeFileCaption: string;
23091
23317
  booleanCheckedLabel: string;
@@ -23153,7 +23379,7 @@ declare module "localization/telugu" {
23153
23379
  loadingFile: string;
23154
23380
  chooseFile: string;
23155
23381
  noFileChosen: string;
23156
- fileDragAreaPlaceholder: string;
23382
+ filePlaceholder: string;
23157
23383
  confirmDelete: string;
23158
23384
  keyDuplicationError: string;
23159
23385
  addColumn: string;
@@ -23182,8 +23408,8 @@ declare module "localization/telugu" {
23182
23408
  signaturePlaceHolder: string;
23183
23409
  chooseFileCaption: string;
23184
23410
  takePhotoCaption: string;
23185
- cameraPlaceHolder: string;
23186
- fileCameraDragAreaPlaceHolder: string;
23411
+ photoPlaceholder: string;
23412
+ fileOrPhotoPlaceholder: string;
23187
23413
  replaceFileCaption: string;
23188
23414
  removeFileCaption: string;
23189
23415
  booleanCheckedLabel: string;
@@ -23924,6 +24150,7 @@ declare module "react/reactquestion_ranking" {
23924
24150
  protected get question(): any;
23925
24151
  protected get unrankedItem(): any;
23926
24152
  protected get item(): any;
24153
+ protected renderEmptyIcon(): JSX.Element;
23927
24154
  protected renderElement(): JSX.Element;
23928
24155
  }
23929
24156
  }
@@ -24661,7 +24888,7 @@ declare module "react/components/skeleton" {
24661
24888
  render(): JSX.Element;
24662
24889
  }
24663
24890
  }
24664
- declare module "react/components/cover" {
24891
+ declare module "react/components/header" {
24665
24892
  import React from "react";
24666
24893
  import { Base, SurveyModel, Cover, CoverCell } from "entries/core";
24667
24894
  import { SurveyElementBase } from "react/reactquestion_element";
@@ -24669,12 +24896,17 @@ declare module "react/components/cover" {
24669
24896
  survey: SurveyModel;
24670
24897
  model: T;
24671
24898
  }
24672
- export class CoverCellComponent extends React.Component<any, any> {
24899
+ export class HeaderMobile extends React.Component<any, any> {
24900
+ get model(): Cover;
24901
+ private renderLogoImage;
24902
+ render(): JSX.Element | null;
24903
+ }
24904
+ export class HeaderCell extends React.Component<any, any> {
24673
24905
  get model(): CoverCell;
24674
24906
  private renderLogoImage;
24675
24907
  render(): JSX.Element | null;
24676
24908
  }
24677
- export class CoverComponent extends SurveyElementBase<ILayoutElementProps<Cover>, any> {
24909
+ export class Header extends SurveyElementBase<ILayoutElementProps<Cover>, any> {
24678
24910
  get model(): Cover;
24679
24911
  protected getStateElement(): Base;
24680
24912
  renderElement(): JSX.Element | null;
@@ -24769,7 +25001,7 @@ declare module "entries/react-ui-model" {
24769
25001
  export { NotifierComponent } from "react/components/notifier";
24770
25002
  export { ComponentsContainer } from "react/components/components-container";
24771
25003
  export { CharacterCounterComponent } from "react/components/character-counter";
24772
- export * from "react/components/cover";
25004
+ export * from "react/components/header";
24773
25005
  export { SurveyLocStringViewer } from "react/string-viewer";
24774
25006
  export { SurveyLocStringEditor } from "react/string-editor";
24775
25007
  export { LoadingIndicatorComponent } from "react/components/loading-indicator";