survey-react 1.9.33 → 1.9.36

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
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Type definition for Survey JavaScript library for React v1.9.33
2
+ * Type definition for Survey JavaScript library for React v1.9.36
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -725,6 +725,7 @@ export declare class Base {
725
725
  itemValuePropertyChanged(item: ItemValue, name: string, oldValue: any, newValue: any): void;
726
726
  protected onPropertyValueChanged(name: string, oldValue: any, newValue: any): void;
727
727
  protected propertyValueChanged(name: string, oldValue: any, newValue: any, arrayChanges?: ArrayChanges, target?: Base): void;
728
+ onBindingChanged(oldValue: any, newValue: any): void;
728
729
  protected get isInternal(): boolean;
729
730
  addExpressionProperty(name: string, onExecute: (obj: Base, res: any) => void, canRun?: (obj: Base) => boolean): void;
730
731
  getDataFilteredValues(): any;
@@ -935,6 +936,8 @@ export declare class ElementFactory {
935
936
  getAllTypes(): Array<any>;
936
937
  createElement(elementType: string, name: string): IElement;
937
938
  }
939
+ export declare class ElementHelper {
940
+ }
938
941
  export declare class Event<T, Options> {
939
942
  onCallbacksChanged: any;
940
943
  protected callbacks: any;
@@ -988,6 +991,8 @@ export declare class Helpers {
988
991
  static isCharDigit(ch: string): boolean;
989
992
  static correctAfterPlusMinis(a: number, b: number, res: number): number;
990
993
  static correctAfterMultiple(a: number, b: number, res: number): number;
994
+ static convertArrayValueToObject(src: any, propName: string, dest?: any): Array<any>;
995
+ static convertArrayObjectToValue(src: any, propName: string): Array<any>;
991
996
  }
992
997
  export declare class JsonError {
993
998
  constructor(type: string, message: string);
@@ -1120,7 +1125,7 @@ export declare class PopupUtils {
1120
1125
  static updateVerticalPosition(targetRect: any, height: number, verticalPosition: any, showPointer: boolean, windowHeight: number): any;
1121
1126
  static calculatePopupDirection(verticalPosition: any, horizontalPosition: any): string;
1122
1127
  static calculatePointerTarget(targetRect: any, top: number, left: number, verticalPosition: any, horizontalPosition: any, marginLeft?: number, marginRight?: number): INumberPosition;
1123
- static updatePopupWidthBeforeShow(popupModel: any, e: any): void;
1128
+ static updatePopupWidthBeforeShow(popupModel: any, target: JSX.Element, e: any): void;
1124
1129
  }
1125
1130
  export declare class ProcessValue {
1126
1131
  constructor();
@@ -1520,6 +1525,7 @@ export declare class ActionContainer<T extends Action = Action> extends Base {
1520
1525
  protected getRenderedActions(): Array<T>;
1521
1526
  updateCallback: (isResetInitialized: boolean) => void;
1522
1527
  containerCss: string;
1528
+ sizeMode: "default" | "small";
1523
1529
  protected raiseUpdate(isResetInitialized: boolean): void;
1524
1530
  protected onSet(): void;
1525
1531
  protected onPush(item: T): void;
@@ -1600,7 +1606,7 @@ export declare class CalculatedValue extends Base {
1600
1606
  set includeIntoResult(val: boolean);
1601
1607
  /*
1602
1608
  * The Expression that used to calculate the value. You may use standard operators like +, -, * and /, squares (). Here is the example of accessing the question value {questionname}.
1603
- * <br/>Example: "({quantity} * {price}) * (100 - {discount}) / 100"
1609
+ * Example: "({quantity} * {price}) * (100 - {discount}) / 100"
1604
1610
  */
1605
1611
  get expression(): string;
1606
1612
  set expression(val: string);
@@ -3228,6 +3234,7 @@ export declare class ListModel extends ActionContainer {
3228
3234
  getItemClass: (itemValue: Action) => string;
3229
3235
  getItemIndent: (itemValue: any) => string;
3230
3236
  get filteredTextPlaceholder(): string;
3237
+ goToItems(event: any): void;
3231
3238
  onKeyDown(event: any): void;
3232
3239
  onPointerDown(event: any, item: any): void;
3233
3240
  refresh(): void;
@@ -3489,7 +3496,6 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
3489
3496
  protected setPage(parent: IPanel, newPage: IPage): void;
3490
3497
  protected getSearchableLocKeys(keys: any): void;
3491
3498
  protected get isDefaultV2Theme(): boolean;
3492
- get showErrorsAboveQuestion(): boolean;
3493
3499
  get isErrorsModeTooltip(): boolean;
3494
3500
  protected getIsErrorsModeTooltip(): boolean;
3495
3501
  get hasParent(): boolean;
@@ -3571,39 +3577,39 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
3571
3577
  navigationBarValue: any;
3572
3578
  /*
3573
3579
  * The event is fired after a trigger has been executed
3574
- * <br/> `sender` - the survey object that fires the event.
3575
- * <br/> `options.trigger` - An instance of a trigger that has been just perform it's action.
3580
+ * `sender` - the survey object that fires the event.
3581
+ * `options.trigger` - An instance of a trigger that has been just perform it's action.
3576
3582
  */
3577
3583
  onTriggerExecuted: EventBase<SurveyModel>;
3578
3584
  /*
3579
3585
  * The event is fired before the survey is completed and the `onComplete` event is fired. You can prevent the survey from completing by setting `options.allowComplete` to `false`
3580
- * <br/> `sender` - the survey object that fires the event.
3581
- * <br/> `options.allowComplete` - Specifies whether a user can complete a survey. Set this property to `false` to prevent the survey from completing. The default value is `true`.
3582
- * <br/> `options.isCompleteOnTrigger` - returns true if the survey is completing on "complete" trigger.
3586
+ * `sender` - the survey object that fires the event.
3587
+ * `options.allowComplete` - Specifies whether a user can complete a survey. Set this property to `false` to prevent the survey from completing. The default value is `true`.
3588
+ * `options.isCompleteOnTrigger` - returns true if the survey is completing on "complete" trigger.
3583
3589
  */
3584
3590
  onCompleting: EventBase<SurveyModel>;
3585
3591
  /*
3586
3592
  * The event is fired after a user clicks the 'Complete' button and finishes a survey. Use this event to send the survey data to your web server.
3587
- * <br/> `sender` - the survey object that fires the event.
3588
- * <br/> `options.showDataSaving(text)` - call this method to show that the survey is saving survey data on your server. The `text` is an optional parameter to show a custom message instead of default.
3589
- * <br/> `options.showDataSavingError(text)` - call this method to show that an error occurred while saving the data on your server. If you want to show a custom error, use an optional `text` parameter.
3590
- * <br/> `options.showDataSavingSuccess(text)` - call this method to show that the data was successfully saved on the server.
3591
- * <br/> `options.showDataSavingClear` - call this method to hide the text about the saving progress.
3592
- * <br/> `options.isCompleteOnTrigger` - returns true if the survey is completed on "complete" trigger.
3593
+ * `sender` - the survey object that fires the event.
3594
+ * `options.showDataSaving(text)` - call this method to show that the survey is saving survey data on your server. The `text` is an optional parameter to show a custom message instead of default.
3595
+ * `options.showDataSavingError(text)` - call this method to show that an error occurred while saving the data on your server. If you want to show a custom error, use an optional `text` parameter.
3596
+ * `options.showDataSavingSuccess(text)` - call this method to show that the data was successfully saved on the server.
3597
+ * `options.showDataSavingClear` - call this method to hide the text about the saving progress.
3598
+ * `options.isCompleteOnTrigger` - returns true if the survey is completed on "complete" trigger.
3593
3599
  */
3594
3600
  onComplete: EventBase<SurveyModel>;
3595
3601
  /*
3596
3602
  * The event is fired before the survey is going to preview mode, state equals to `preview`. It happens when a user click on "Preview" button. It shows when "showPreviewBeforeComplete" proeprty equals to "showAllQuestions" or "showAnsweredQuestions".
3597
3603
  * You can prevent showing it by setting allowShowPreview to `false`.
3598
- * <br/> `sender` - the survey object that fires the event.
3599
- * <br/> `options.allowShowPreview` - Specifies whether a user can see a preview. Set this property to `false` to prevent from showing the preview. The default value is `true`.
3604
+ * `sender` - the survey object that fires the event.
3605
+ * `options.allowShowPreview` - Specifies whether a user can see a preview. Set this property to `false` to prevent from showing the preview. The default value is `true`.
3600
3606
  */
3601
3607
  onShowingPreview: EventBase<SurveyModel>;
3602
3608
  /*
3603
3609
  * The event is fired after a user clicks the 'Complete' button. The event allows you to specify the URL opened after completing a survey.
3604
3610
  * Specify the `navigateToUrl` property to make survey navigate to another url.
3605
- * <br/> `sender` - the survey object that fires the event.
3606
- * <br/> `options.url` - Specifies a URL opened after completing a survey. Set this property to an empty string to cancel the navigation and show the completed survey page.
3611
+ * `sender` - the survey object that fires the event.
3612
+ * `options.url` - Specifies a URL opened after completing a survey. Set this property to an empty string to cancel the navigation and show the completed survey page.
3607
3613
  */
3608
3614
  onNavigateToUrl: EventBase<SurveyModel>;
3609
3615
  /*
@@ -3613,73 +3619,73 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
3613
3619
  onStarted: EventBase<SurveyModel>;
3614
3620
  /*
3615
3621
  * The event is fired on clicking the 'Next' button if the `sendResultOnPageNext` is set to `true`. You can use it to save the intermediate results, for example, if your survey is large enough.
3616
- * <br/> `sender` - the survey object that fires the event.
3622
+ * `sender` - the survey object that fires the event.
3617
3623
  */
3618
3624
  onPartialSend: EventBase<SurveyModel>;
3619
3625
  /*
3620
3626
  * The event is fired before the current page changes to another page. Typically it happens when a user click the 'Next' or 'Prev' buttons.
3621
- * <br/> `sender` - the survey object that fires the event.
3622
- * <br/> `option.oldCurrentPage` - the previous current/active page.
3623
- * <br/> `option.newCurrentPage` - a new current/active page.
3624
- * <br/> `option.allowChanging` - set it to `false` to disable the current page changing. It is `true` by default.
3625
- * <br/> `option.isNextPage` - commonly means, that end-user press the next page button. In general, it means that options.newCurrentPage is the next page after options.oldCurrentPage
3626
- * <br/> `option.isPrevPage` - commonly means, that end-user press the previous page button. In general, it means that options.newCurrentPage is the previous page before options.oldCurrentPage
3627
+ * `sender` - the survey object that fires the event.
3628
+ * `option.oldCurrentPage` - the previous current/active page.
3629
+ * `option.newCurrentPage` - a new current/active page.
3630
+ * `option.allowChanging` - set it to `false` to disable the current page changing. It is `true` by default.
3631
+ * `option.isNextPage` - commonly means, that end-user press the next page button. In general, it means that options.newCurrentPage is the next page after options.oldCurrentPage
3632
+ * `option.isPrevPage` - commonly means, that end-user press the previous page button. In general, it means that options.newCurrentPage is the previous page before options.oldCurrentPage
3627
3633
  */
3628
3634
  onCurrentPageChanging: EventBase<SurveyModel>;
3629
3635
  /*
3630
3636
  * The event is fired when the current page has been changed to another page. Typically it happens when a user click on 'Next' or 'Prev' buttons.
3631
- * <br/> `sender` - the survey object that fires the event.
3632
- * <br/> `option.oldCurrentPage` - a previous current/active page.
3633
- * <br/> `option.newCurrentPage` - a new current/active page.
3634
- * <br/> `option.isNextPage` - commonly means, that end-user press the next page button. In general, it means that options.newCurrentPage is the next page after options.oldCurrentPage
3635
- * <br/> `option.isPrevPage` - commonly means, that end-user press the previous page button. In general, it means that options.newCurrentPage is the previous page before options.oldCurrentPage
3637
+ * `sender` - the survey object that fires the event.
3638
+ * `option.oldCurrentPage` - a previous current/active page.
3639
+ * `option.newCurrentPage` - a new current/active page.
3640
+ * `option.isNextPage` - commonly means, that end-user press the next page button. In general, it means that options.newCurrentPage is the next page after options.oldCurrentPage
3641
+ * `option.isPrevPage` - commonly means, that end-user press the previous page button. In general, it means that options.newCurrentPage is the previous page before options.oldCurrentPage
3636
3642
  */
3637
3643
  onCurrentPageChanged: EventBase<SurveyModel>;
3638
3644
  /*
3639
3645
  * The event is fired before the question value (answer) is changed. It can be done via UI by a user or programmatically on calling the `setValue` method.
3640
- * <br/> `sender` - the survey object that fires the event.
3641
- * <br/> `options.name` - the value name that has being changed.
3642
- * <br/> `options.question` - a question which `question.name` equals to the value name. If there are several questions with the same name, the first question is used. If there is no such questions, the `options.question` is null.
3643
- * <br/> `options.oldValue` - an old, previous value.
3644
- * <br/> `options.value` - a new value. You can change it.
3646
+ * `sender` - the survey object that fires the event.
3647
+ * `options.name` - the value name that has being changed.
3648
+ * `options.question` - a question which `question.name` equals to the value name. If there are several questions with the same name, the first question is used. If there is no such questions, the `options.question` is null.
3649
+ * `options.oldValue` - an old, previous value.
3650
+ * `options.value` - a new value. You can change it.
3645
3651
  */
3646
3652
  onValueChanging: EventBase<SurveyModel>;
3647
3653
  /*
3648
3654
  * The event is fired when the question value (i.e., answer) has been changed. The question value can be changed in UI (by a user) or programmatically (on calling `setValue` method).
3649
3655
  * Use the `onDynamicPanelItemValueChanged` and `onMatrixCellValueChanged` events to handle changes in a question in the Panel Dynamic and a cell question in matrices.
3650
- * <br/> `sender` - the survey object that fires the event.
3651
- * <br/> `options.name` - the value name that has been changed.
3652
- * <br/> `options.question` - a question which `question.name` equals to the value name. If there are several questions with the same name, the first question is used. If there is no such questions, the `options.question` is `null`.
3653
- * <br/> `options.value` - a new value.
3656
+ * `sender` - the survey object that fires the event.
3657
+ * `options.name` - the value name that has been changed.
3658
+ * `options.question` - a question which `question.name` equals to the value name. If there are several questions with the same name, the first question is used. If there is no such questions, the `options.question` is `null`.
3659
+ * `options.value` - a new value.
3654
3660
  */
3655
3661
  onValueChanged: EventBase<SurveyModel>;
3656
3662
  /*
3657
3663
  * The event is fired when setVariable function is called. It can be called on changing a calculated value.
3658
- * <br/> `sender` - the survey object that fires the event.
3659
- * <br/> `options.name` - the variable name that has been changed.
3660
- * <br/> `options.value` - a new value.
3664
+ * `sender` - the survey object that fires the event.
3665
+ * `options.name` - the variable name that has been changed.
3666
+ * `options.value` - a new value.
3661
3667
  */
3662
3668
  onVariableChanged: EventBase<SurveyModel>;
3663
3669
  /*
3664
3670
  * The event is fired when a question visibility has been changed.
3665
- * <br/> `sender` - the survey object that fires the event.
3666
- * <br/> `options.question` - a question which visibility has been changed.
3667
- * <br/> `options.name` - a question name.
3668
- * <br/> `options.visible` - a question `visible` boolean value.
3671
+ * `sender` - the survey object that fires the event.
3672
+ * `options.question` - a question which visibility has been changed.
3673
+ * `options.name` - a question name.
3674
+ * `options.visible` - a question `visible` boolean value.
3669
3675
  */
3670
3676
  onVisibleChanged: EventBase<SurveyModel>;
3671
3677
  /*
3672
3678
  * The event is fired on changing a page visibility.
3673
- * <br/> `sender` - the survey object that fires the event.
3674
- * <br/> `options.page` - a page which visibility has been changed.
3675
- * <br/> `options.visible` - a page `visible` boolean value.
3679
+ * `sender` - the survey object that fires the event.
3680
+ * `options.page` - a page which visibility has been changed.
3681
+ * `options.visible` - a page `visible` boolean value.
3676
3682
  */
3677
3683
  onPageVisibleChanged: EventBase<SurveyModel>;
3678
3684
  /*
3679
3685
  * The event is fired on changing a panel visibility.
3680
- * <br/> `sender` - the survey object that fires the event.
3681
- * <br/> `options.panel` - a panel which visibility has been changed.
3682
- * <br/> `options.visible` - a panel `visible` boolean value.
3686
+ * `sender` - the survey object that fires the event.
3687
+ * `options.panel` - a panel which visibility has been changed.
3688
+ * `options.visible` - a panel `visible` boolean value.
3683
3689
  */
3684
3690
  onPanelVisibleChanged: EventBase<SurveyModel>;
3685
3691
  /*
@@ -3688,88 +3694,88 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
3688
3694
  * or inside a matrix cell or it can be a text question in multiple text items or inside a panel of a panel dynamic.
3689
3695
  * You can use this event to set up properties to a question based on it's type for all questions, regardless where they are located, on the page or inside a matrix cell.
3690
3696
  * Please note: If you want to use this event for questions loaded from JSON then you have to create survey with empty/null JSON parameter, assign the event and call survey.fromJSON(yourJSON) function.
3691
- * <br/> `sender` - the survey object that fires the event.
3692
- * <br/> `options.question` - a newly created question object.
3697
+ * `sender` - the survey object that fires the event.
3698
+ * `options.question` - a newly created question object.
3693
3699
  */
3694
3700
  onQuestionCreated: EventBase<SurveyModel>;
3695
3701
  /*
3696
3702
  * The event is fired on adding a new question into survey.
3697
- * <br/> `sender` - the survey object that fires the event.
3698
- * <br/> `options.question` - a newly added question object.
3699
- * <br/> `options.name` - a question name.
3700
- * <br/> `options.index` - an index of the question in the container (page or panel).
3701
- * <br/> `options.parentPanel` - a container where a new question is located. It can be a page or panel.
3702
- * <br/> `options.rootPanel` - typically, it is a page.
3703
+ * `sender` - the survey object that fires the event.
3704
+ * `options.question` - a newly added question object.
3705
+ * `options.name` - a question name.
3706
+ * `options.index` - an index of the question in the container (page or panel).
3707
+ * `options.parentPanel` - a container where a new question is located. It can be a page or panel.
3708
+ * `options.rootPanel` - typically, it is a page.
3703
3709
  */
3704
3710
  onQuestionAdded: EventBase<SurveyModel>;
3705
3711
  /*
3706
3712
  * The event is fired on removing a question from survey.
3707
- * <br/> `sender` - the survey object that fires the event.
3708
- * <br/> `options.question` - a removed question object.
3709
- * <br/> `options.name` - a question name.
3713
+ * `sender` - the survey object that fires the event.
3714
+ * `options.question` - a removed question object.
3715
+ * `options.name` - a question name.
3710
3716
  */
3711
3717
  onQuestionRemoved: EventBase<SurveyModel>;
3712
3718
  /*
3713
3719
  * The event is fired on adding a panel into survey.
3714
- * <br/> `sender` - the survey object that fires the event.
3715
- * <br/> `options.panel` - a newly added panel object.
3716
- * <br/> `options.name` - a panel name.
3717
- * <br/> `options.index` - an index of the panel in the container (a page or panel).
3718
- * <br/> `options.parentPanel` - a container (a page or panel) where a new panel is located.
3719
- * <br/> `options.rootPanel` - a root container, typically it is a page.
3720
+ * `sender` - the survey object that fires the event.
3721
+ * `options.panel` - a newly added panel object.
3722
+ * `options.name` - a panel name.
3723
+ * `options.index` - an index of the panel in the container (a page or panel).
3724
+ * `options.parentPanel` - a container (a page or panel) where a new panel is located.
3725
+ * `options.rootPanel` - a root container, typically it is a page.
3720
3726
  */
3721
3727
  onPanelAdded: EventBase<SurveyModel>;
3722
3728
  /*
3723
3729
  * The event is fired on removing a panel from survey.
3724
- * <br/> `sender` - the survey object that fires the event.
3725
- * <br/> `options.panel` - a removed panel object.
3726
- * <br/> `options.name` - a panel name.
3730
+ * `sender` - the survey object that fires the event.
3731
+ * `options.panel` - a removed panel object.
3732
+ * `options.name` - a panel name.
3727
3733
  */
3728
3734
  onPanelRemoved: EventBase<SurveyModel>;
3729
3735
  /*
3730
3736
  * The event is fired on adding a page into survey.
3731
- * <br/> `sender` - the survey object that fires the event.
3732
- * <br/> `options.page` - a newly added `panel` object.
3737
+ * `sender` - the survey object that fires the event.
3738
+ * `options.page` - a newly added `panel` object.
3733
3739
  */
3734
3740
  onPageAdded: EventBase<SurveyModel>;
3735
3741
  /*
3736
3742
  * The event is fired on validating value in a question. You can specify a custom error message using `options.error`. The survey blocks completing the survey or going to the next page when the error messages are displayed.
3737
- * <br/> `sender` - the survey object that fires the event.
3738
- * <br/> `options.question` - a validated question.
3739
- * <br/> `options.name` - a question name.
3740
- * <br/> `options.value` - the current question value (answer).
3741
- * <br/> `options.error` - an error string. It is empty by default.
3743
+ * `sender` - the survey object that fires the event.
3744
+ * `options.question` - a validated question.
3745
+ * `options.name` - a question name.
3746
+ * `options.value` - the current question value (answer).
3747
+ * `options.error` - an error string. It is empty by default.
3742
3748
  */
3743
3749
  onValidateQuestion: EventBase<SurveyModel>;
3744
3750
  /*
3745
3751
  * The event is fired before errors are assigned to a question. You may add/remove/modify errors for a question.
3746
- * <br/> `sender` - the survey object that fires the event.
3747
- * <br/> `options.question` - a validated question.
3748
- * <br/> `options.errors` - the list of errors. The list is empty by default and remains empty if a validated question has no errors.
3752
+ * `sender` - the survey object that fires the event.
3753
+ * `options.question` - a validated question.
3754
+ * `options.errors` - the list of errors. The list is empty by default and remains empty if a validated question has no errors.
3749
3755
  */
3750
3756
  onSettingQuestionErrors: EventBase<SurveyModel>;
3751
3757
  /*
3752
3758
  * Use this event to validate data on your server.
3753
- * <br/> `sender` - the survey object that fires the event.
3754
- * <br/> `options.data` - the values of all non-empty questions on the current page. You can get a question value as `options.data["myQuestionName"]`.
3755
- * <br/> `options.errors` - set your errors to this object as: `options.errors["myQuestionName"] = "Error text";`. It will be shown as a question error.
3756
- * <br/> `options.complete()` - call this function to tell survey that your server callback has been processed.
3759
+ * `sender` - the survey object that fires the event.
3760
+ * `options.data` - the values of all non-empty questions on the current page. You can get a question value as `options.data["myQuestionName"]`.
3761
+ * `options.errors` - set your errors to this object as: `options.errors["myQuestionName"] = "Error text";`. It will be shown as a question error.
3762
+ * `options.complete()` - call this function to tell survey that your server callback has been processed.
3757
3763
  */
3758
3764
  onServerValidateQuestions: any;
3759
3765
  /*
3760
3766
  * The event is fired on validating a panel. Set your error to `options.error` and survey will show the error for the panel and block completing the survey or going to the next page.
3761
- * <br/> `sender` - the survey object that fires the event.
3762
- * <br/> `options.name` - a panel name.
3763
- * <br/> `options.error` - an error string. It is empty by default.
3767
+ * `sender` - the survey object that fires the event.
3768
+ * `options.name` - a panel name.
3769
+ * `options.error` - an error string. It is empty by default.
3764
3770
  */
3765
3771
  onValidatePanel: EventBase<SurveyModel>;
3766
3772
  /*
3767
3773
  * Use the event to change the default error text.
3768
- * <br/> `sender` - the survey object that fires the event.
3769
- * <br/> `options.text` - an error text.
3770
- * <br/> `options.error` - an instance of the `SurveyError` object.
3771
- * <br/> `options.obj` - an instance of Question, Panel or Survey object to where error is located.
3772
- * <br/> `options.name` - the error name. The following error names are available:
3774
+ * `sender` - the survey object that fires the event.
3775
+ * `options.text` - an error text.
3776
+ * `options.error` - an instance of the `SurveyError` object.
3777
+ * `options.obj` - an instance of Question, Panel or Survey object to where error is located.
3778
+ * `options.name` - the error name. The following error names are available:
3773
3779
  * required, requireoneanswer, requirenumeric, exceedsize, webrequest, webrequestempty, otherempty,
3774
3780
  * uploadingfile, requiredinallrowserror, minrowcounterror, keyduplicationerror, custom
3775
3781
  */
@@ -3788,201 +3794,201 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
3788
3794
  onProcessHtml: EventBase<SurveyModel>;
3789
3795
  /*
3790
3796
  * Use this event to change the question title in code. If you want to remove question numbering then set showQuestionNumbers to "off".
3791
- * <br/> `sender` - the survey object that fires the event.
3792
- * <br/> `options.title` - a calculated question title, based on question `title`, `name`.
3793
- * <br/> `options.question` - a question object.
3797
+ * `sender` - the survey object that fires the event.
3798
+ * `options.title` - a calculated question title, based on question `title`, `name`.
3799
+ * `options.question` - a question object.
3794
3800
  */
3795
3801
  onGetQuestionTitle: EventBase<SurveyModel>;
3796
3802
  /*
3797
3803
  * Use this event to change the element title tag name that renders by default.
3798
- * <br/> `sender` - the survey object that fires the event.
3799
- * <br/> `options.element` - an element (question, panel, page and survey) that SurveyJS is going to render.
3800
- * <br/> `options.tagName` - an element title tagName that are used to render a title. You can change it from the default value.
3804
+ * `sender` - the survey object that fires the event.
3805
+ * `options.element` - an element (question, panel, page and survey) that SurveyJS is going to render.
3806
+ * `options.tagName` - an element title tagName that are used to render a title. You can change it from the default value.
3801
3807
  */
3802
3808
  onGetTitleTagName: EventBase<SurveyModel>;
3803
3809
  /*
3804
3810
  * Use this event to change the question no in code. If you want to remove question numbering then set showQuestionNumbers to "off".
3805
- * <br/> `sender` - the survey object that fires the event.
3806
- * <br/> `options.no` - a calculated question no, based on question `visibleIndex`, survey `.questionStartIndex` properties. You can change it.
3807
- * <br/> `options.question` - a question object.
3811
+ * `sender` - the survey object that fires the event.
3812
+ * `options.no` - a calculated question no, based on question `visibleIndex`, survey `.questionStartIndex` properties. You can change it.
3813
+ * `options.question` - a question object.
3808
3814
  */
3809
3815
  onGetQuestionNo: EventBase<SurveyModel>;
3810
3816
  /*
3811
3817
  * Use this event to change the progress text in code.
3812
- * <br/> `sender` - the survey object that fires the event.
3813
- * <br/> `options.text` - a progress text, that SurveyJS will render in progress bar.
3814
- * <br/> `options.questionCount` - a number of questions that have input(s). We do not count html or expression questions
3815
- * <br/> `options.answeredQuestionCount` - a number of questions that have input(s) and an user has answered.
3816
- * <br/> `options.requiredQuestionCount` - a number of required questions that have input(s). We do not count html or expression questions
3817
- * <br/> `options.requiredAnsweredQuestionCount` - a number of required questions that have input(s) and an user has answered.
3818
+ * `sender` - the survey object that fires the event.
3819
+ * `options.text` - a progress text, that SurveyJS will render in progress bar.
3820
+ * `options.questionCount` - a number of questions that have input(s). We do not count html or expression questions
3821
+ * `options.answeredQuestionCount` - a number of questions that have input(s) and an user has answered.
3822
+ * `options.requiredQuestionCount` - a number of required questions that have input(s). We do not count html or expression questions
3823
+ * `options.requiredAnsweredQuestionCount` - a number of required questions that have input(s) and an user has answered.
3818
3824
  */
3819
3825
  onProgressText: EventBase<SurveyModel>;
3820
3826
  /*
3821
3827
  * Use this event to process the markdown text.
3822
- * <br/> `sender` - the survey object that fires the event.
3823
- * <br/> `options.element` - SurveyJS element (a question, panel, page, or survey) where the string is going to be rendered.
3824
- * <br/> `options.name` - a property name is going to be rendered.
3825
- * <br/> `options.text` - a text that is going to be rendered.
3826
- * <br/> `options.html` - an HTML content. It is `null` by default. Use this property to specify the HTML content rendered instead of `options.text`.
3828
+ * `sender` - the survey object that fires the event.
3829
+ * `options.element` - SurveyJS element (a question, panel, page, or survey) where the string is going to be rendered.
3830
+ * `options.name` - a property name is going to be rendered.
3831
+ * `options.text` - a text that is going to be rendered.
3832
+ * `options.html` - an HTML content. It is `null` by default. Use this property to specify the HTML content rendered instead of `options.text`.
3827
3833
  */
3828
3834
  onTextMarkdown: EventBase<SurveyModel>;
3829
3835
  /*
3830
3836
  * Use this event to specity render component name used for text rendering.
3831
- * <br/> `sender` - the survey object that fires the event.
3832
- * <br/> `options.element` - SurveyJS element (a question, panel, page, or survey) where the string is going to be rendered.
3833
- * <br/> `options.name` - a property name is going to be rendered.
3834
- * <br/> `options.renderAs` - a component name used for text rendering.
3837
+ * `sender` - the survey object that fires the event.
3838
+ * `options.element` - SurveyJS element (a question, panel, page, or survey) where the string is going to be rendered.
3839
+ * `options.name` - a property name is going to be rendered.
3840
+ * `options.renderAs` - a component name used for text rendering.
3835
3841
  */
3836
3842
  onTextRenderAs: EventBase<SurveyModel>;
3837
3843
  /*
3838
3844
  * The event fires when it gets response from the [api.surveyjs.io](https://api.surveyjs.io) service on saving survey results. Use it to find out if the results have been saved successfully.
3839
- * <br/> `sender` - the survey object that fires the event.
3840
- * <br/> `options.success` - it is `true` if the results has been sent to the service successfully.
3841
- * <br/> `options.response` - a response from the service.
3845
+ * `sender` - the survey object that fires the event.
3846
+ * `options.success` - it is `true` if the results has been sent to the service successfully.
3847
+ * `options.response` - a response from the service.
3842
3848
  */
3843
3849
  onSendResult: EventBase<SurveyModel>;
3844
3850
  /*
3845
3851
  * Use it to get results after calling the `getResult` method. It returns a simple analytics from [api.surveyjs.io](https://api.surveyjs.io) service.
3846
- * <br/> `sender` - the survey object that fires the event.
3847
- * <br/> `options.success` - it is `true` if the results were got from the service successfully.
3848
- * <br/> `options.data` - the object `{AnswersCount, QuestionResult : {} }`. `AnswersCount` is the number of posted survey results. `QuestionResult` is an object with all possible unique answers to the question and number of these answers.
3849
- * <br/> `options.dataList` - an array of objects `{name, value}`, where `name` is a unique value/answer to the question and `value` is a number/count of such answers.
3850
- * <br/> `options.response` - the server response.
3852
+ * `sender` - the survey object that fires the event.
3853
+ * `options.success` - it is `true` if the results were got from the service successfully.
3854
+ * `options.data` - the object `{AnswersCount, QuestionResult : {} }`. `AnswersCount` is the number of posted survey results. `QuestionResult` is an object with all possible unique answers to the question and number of these answers.
3855
+ * `options.dataList` - an array of objects `{name, value}`, where `name` is a unique value/answer to the question and `value` is a number/count of such answers.
3856
+ * `options.response` - the server response.
3851
3857
  */
3852
3858
  onGetResult: EventBase<SurveyModel>;
3853
3859
  /*
3854
3860
  * The event is fired on uploading the file in QuestionFile when `storeDataAsText` is set to `false`. Use this event to change the uploaded file name or to prevent a particular file from being uploaded.
3855
- * <br/> `sender` - the survey object that fires the event.
3856
- * <br/> `options.question` - the file question instance.
3857
- * <br/> `options.name` - the question name.
3858
- * <br/> `options.files` - the Javascript File objects array to upload.
3859
- * <br/> `options.callback` - a callback function to get the file upload status and the updloaded file content.
3861
+ * `sender` - the survey object that fires the event.
3862
+ * `options.question` - the file question instance.
3863
+ * `options.name` - the question name.
3864
+ * `options.files` - the Javascript File objects array to upload.
3865
+ * `options.callback` - a callback function to get the file upload status and the updloaded file content.
3860
3866
  */
3861
3867
  onUploadFiles: EventBase<SurveyModel>;
3862
3868
  /*
3863
3869
  * The event is fired on downloading a file in QuestionFile. Use this event to pass the file to a preview.
3864
- * <br/> `sender` - the survey object that fires the event.
3865
- * <br/> `options.name` - the question name.
3866
- * <br/> `options.content` - the file content.
3867
- * <br/> `options.fileValue` - single file question value.
3868
- * <br/> `options.callback` - a callback function to get the file downloading status and the downloaded file content.
3870
+ * `sender` - the survey object that fires the event.
3871
+ * `options.name` - the question name.
3872
+ * `options.content` - the file content.
3873
+ * `options.fileValue` - single file question value.
3874
+ * `options.callback` - a callback function to get the file downloading status and the downloaded file content.
3869
3875
  */
3870
3876
  onDownloadFile: EventBase<SurveyModel>;
3871
3877
  /*
3872
3878
  * This event is fired on clearing the value in a QuestionFile. Use this event to remove files stored on your server.
3873
- * <br/> `sender` - the survey object that fires the event.
3874
- * <br/> `question` - the question instance.
3875
- * <br/> `options.name` - the question name.
3876
- * <br/> `options.value` - the question value.
3877
- * <br/> `options.fileName` - a removed file's name, set it to `null` to clear all files.
3878
- * <br/> `options.callback` - a callback function to get the operation status.
3879
+ * `sender` - the survey object that fires the event.
3880
+ * `question` - the question instance.
3881
+ * `options.name` - the question name.
3882
+ * `options.value` - the question value.
3883
+ * `options.fileName` - a removed file's name, set it to `null` to clear all files.
3884
+ * `options.callback` - a callback function to get the operation status.
3879
3885
  */
3880
3886
  onClearFiles: EventBase<SurveyModel>;
3881
3887
  /*
3882
3888
  * The event is fired after choices for radiogroup, checkbox, and dropdown has been loaded from a RESTful service and before they are assigned to a question.
3883
3889
  * You may change the choices, before they are assigned or disable/enabled make visible/invisible question, based on loaded results.
3884
- * <br/> `sender` - the survey object that fires the event.
3885
- * <br/> `question` - the question where loaded choices are going to be assigned.
3886
- * <br/> `choices` - the loaded choices. You can change the loaded choices to before they are assigned to question.
3887
- * <br/> `serverResult` - a result that comes from the server as it is.
3890
+ * `sender` - the survey object that fires the event.
3891
+ * `question` - the question where loaded choices are going to be assigned.
3892
+ * `choices` - the loaded choices. You can change the loaded choices to before they are assigned to question.
3893
+ * `serverResult` - a result that comes from the server as it is.
3888
3894
  */
3889
3895
  onLoadChoicesFromServer: EventBase<SurveyModel>;
3890
3896
  /*
3891
3897
  * The event is fired after survey is loaded from api.surveyjs.io service.
3892
3898
  * You can use this event to perform manipulation with the survey model after it was loaded from the web service.
3893
- * <br/> `sender` - the survey object that fires the event.
3899
+ * `sender` - the survey object that fires the event.
3894
3900
  */
3895
3901
  onLoadedSurveyFromService: EventBase<SurveyModel>;
3896
3902
  /*
3897
3903
  * The event is fired on processing the text when it finds a text in brackets: `{somevalue}`. By default, it uses the value of survey question values and variables.
3898
3904
  * For example, you may use the text processing in loading choices from the web. If your `choicesByUrl.url` equals to "UrlToServiceToGetAllCities/{country}/{state}",
3899
3905
  * you may set on this event `options.value` to "all" or empty string when the "state" value/question is non selected by a user.
3900
- * <br/> `sender` - the survey object that fires the event.
3901
- * <br/> `options.name` - the name of the processing value, for example, "state" in our example.
3902
- * <br/> `options.value` - the value of the processing text.
3903
- * <br/> `options.isExists` - a boolean value. Set it to `true` if you want to use the value and set it to `false` if you don't.
3906
+ * `sender` - the survey object that fires the event.
3907
+ * `options.name` - the name of the processing value, for example, "state" in our example.
3908
+ * `options.value` - the value of the processing text.
3909
+ * `options.isExists` - a boolean value. Set it to `true` if you want to use the value and set it to `false` if you don't.
3904
3910
  */
3905
3911
  onProcessTextValue: EventBase<SurveyModel>;
3906
3912
  /*
3907
3913
  * The event is fired before rendering a question. Use it to override the default question CSS classes.
3908
- * <br/> `sender` - the survey object that fires the event.
3909
- * <br/> `options.question` - a question for which you can change the CSS classes.
3910
- * <br/> `options.cssClasses` - an object with CSS classes. For example `{root: "table", button: "button"}`. You can change them to your own CSS classes.
3914
+ * `sender` - the survey object that fires the event.
3915
+ * `options.question` - a question for which you can change the CSS classes.
3916
+ * `options.cssClasses` - an object with CSS classes. For example `{root: "table", button: "button"}`. You can change them to your own CSS classes.
3911
3917
  */
3912
3918
  onUpdateQuestionCssClasses: EventBase<SurveyModel>;
3913
3919
  /*
3914
3920
  * The event is fired before rendering a panel. Use it to override the default panel CSS classes.
3915
- * <br/> `sender` - the survey object that fires the event.
3916
- * <br/> `options.panel` - a panel for which you can change the CSS classes.
3917
- * <br/> `options.cssClasses` - an object with CSS classes. For example `{title: "sv_p_title", description: "small"}`. You can change them to your own CSS classes.
3921
+ * `sender` - the survey object that fires the event.
3922
+ * `options.panel` - a panel for which you can change the CSS classes.
3923
+ * `options.cssClasses` - an object with CSS classes. For example `{title: "sv_p_title", description: "small"}`. You can change them to your own CSS classes.
3918
3924
  */
3919
3925
  onUpdatePanelCssClasses: EventBase<SurveyModel>;
3920
3926
  /*
3921
3927
  * The event is fired before rendering a page. Use it to override the default page CSS classes.
3922
- * <br/> `sender` - the survey object that fires the event.
3923
- * <br/> `options.page` - a page for which you can change the CSS classes.
3924
- * <br/> `options.cssClasses` - an object with CSS classes. For example `{title: "sv_p_title", description: "small"}`. You can change them to your own CSS classes.
3928
+ * `sender` - the survey object that fires the event.
3929
+ * `options.page` - a page for which you can change the CSS classes.
3930
+ * `options.cssClasses` - an object with CSS classes. For example `{title: "sv_p_title", description: "small"}`. You can change them to your own CSS classes.
3925
3931
  */
3926
3932
  onUpdatePageCssClasses: EventBase<SurveyModel>;
3927
3933
  /*
3928
3934
  * The event is fired before rendering a choice item in radiogroup, checkbox or dropdown questions. Use it to override the default choice item css.
3929
- * <br/> `sender` - the survey object that fires the event.
3930
- * <br/> `options.question` - a question where choice item is rendered.
3931
- * <br/> `options.item` - a choice item of ItemValue type. You can get value or text choice properties as options.item.value or options.choice.text
3932
- * <br/> `options.css` - a string with css classes divided by space. You can change it.
3935
+ * `sender` - the survey object that fires the event.
3936
+ * `options.question` - a question where choice item is rendered.
3937
+ * `options.item` - a choice item of ItemValue type. You can get value or text choice properties as options.item.value or options.choice.text
3938
+ * `options.css` - a string with css classes divided by space. You can change it.
3933
3939
  */
3934
3940
  onUpdateChoiceItemCss: EventBase<SurveyModel>;
3935
3941
  /*
3936
3942
  * The event is fired right after survey is rendered in DOM.
3937
- * <br/> `sender` - the survey object that fires the event.
3938
- * <br/> `options.htmlElement` - a root HTML element bound to the survey object.
3943
+ * `sender` - the survey object that fires the event.
3944
+ * `options.htmlElement` - a root HTML element bound to the survey object.
3939
3945
  */
3940
3946
  onAfterRenderSurvey: EventBase<SurveyModel>;
3941
3947
  /*
3942
3948
  * The event is fired right after a page is rendered in DOM. Use it to modify HTML elements.
3943
- * <br/> `sender` - the survey object that fires the event.
3944
- * <br/> `options.htmlElement` - an HTML element bound to the survey header object.
3949
+ * `sender` - the survey object that fires the event.
3950
+ * `options.htmlElement` - an HTML element bound to the survey header object.
3945
3951
  */
3946
3952
  onAfterRenderHeader: EventBase<SurveyModel>;
3947
3953
  /*
3948
3954
  * The event is fired right after a page is rendered in DOM. Use it to modify HTML elements.
3949
- * <br/> `sender` - the survey object that fires the event.
3950
- * <br/> `options.page` - a page object for which the event is fired. Typically the current/active page.
3951
- * <br/> `options.htmlElement` - an HTML element bound to the page object.
3955
+ * `sender` - the survey object that fires the event.
3956
+ * `options.page` - a page object for which the event is fired. Typically the current/active page.
3957
+ * `options.htmlElement` - an HTML element bound to the page object.
3952
3958
  */
3953
3959
  onAfterRenderPage: EventBase<SurveyModel>;
3954
3960
  /*
3955
3961
  * The event is fired right after a question is rendered in DOM. Use it to modify HTML elements.
3956
- * <br/> `sender` - the survey object that fires the event.
3957
- * <br/> `options.question` - a question object for which the event is fired.
3958
- * <br/> `options.htmlElement` - an HTML element bound to the question object.
3962
+ * `sender` - the survey object that fires the event.
3963
+ * `options.question` - a question object for which the event is fired.
3964
+ * `options.htmlElement` - an HTML element bound to the question object.
3959
3965
  */
3960
3966
  onAfterRenderQuestion: EventBase<SurveyModel>;
3961
3967
  /*
3962
3968
  * The event is fired right after a non-composite question (text, comment, dropdown, radiogroup, checkbox) is rendered in DOM. Use it to modify HTML elements.
3963
3969
  * This event is not fired for matrices, panels, multiple text and image picker.
3964
- * <br/> `sender` - the survey object that fires the event.
3965
- * <br/> `options.question` - a question object for which the event is fired.
3966
- * <br/> `options.htmlElement` - an HTML element bound to the question object.
3970
+ * `sender` - the survey object that fires the event.
3971
+ * `options.question` - a question object for which the event is fired.
3972
+ * `options.htmlElement` - an HTML element bound to the question object.
3967
3973
  */
3968
3974
  onAfterRenderQuestionInput: EventBase<SurveyModel>;
3969
3975
  /*
3970
3976
  * The event is fired right after a panel is rendered in DOM. Use it to modify HTML elements.
3971
- * <br/> `sender` - the survey object that fires the event
3972
- * <br/> `options.panel` - a panel object for which the event is fired
3973
- * <br/> `options.htmlElement` - an HTML element bound to the panel object
3977
+ * `sender` - the survey object that fires the event
3978
+ * `options.panel` - a panel object for which the event is fired
3979
+ * `options.htmlElement` - an HTML element bound to the panel object
3974
3980
  */
3975
3981
  onAfterRenderPanel: EventBase<SurveyModel>;
3976
3982
  /*
3977
3983
  * The event occurs when an element within a question gets focus.
3978
- * <br/> `sender` - A [survey](https://surveyjs.io/Documentation/Library?id=surveymodel) object that fires the event.
3979
- * <br/> `options.question` - A [question](https://surveyjs.io/Documentation/Library?id=Question) whose child element gets focus.
3984
+ * `sender` - A [survey](https://surveyjs.io/Documentation/Library?id=surveymodel) object that fires the event.
3985
+ * `options.question` - A [question](https://surveyjs.io/Documentation/Library?id=Question) whose child element gets focus.
3980
3986
  */
3981
3987
  onFocusInQuestion: EventBase<SurveyModel>;
3982
3988
  /*
3983
3989
  * The event occurs when an element within a panel gets focus.
3984
- * <br/> `sender` - A [survey](https://surveyjs.io/Documentation/Library?id=surveymodel) object that fires the event.
3985
- * <br/> `options.panel` - A [panel](https://surveyjs.io/Documentation/Library?id=PanelModelBase) whose child element gets focus.
3990
+ * `sender` - A [survey](https://surveyjs.io/Documentation/Library?id=surveymodel) object that fires the event.
3991
+ * `options.panel` - A [panel](https://surveyjs.io/Documentation/Library?id=PanelModelBase) whose child element gets focus.
3986
3992
  */
3987
3993
  onFocusInPanel: EventBase<SurveyModel>;
3988
3994
  /*
@@ -3998,123 +4004,123 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
3998
4004
  onShowingChoiceItem: EventBase<SurveyModel>;
3999
4005
  /*
4000
4006
  * The event is fired on adding a new row in Matrix Dynamic question.
4001
- * <br/> `sender` - the survey object that fires the event
4002
- * <br/> `options.question` - a matrix question.
4003
- * <br/> `options.row` - a new added row.
4007
+ * `sender` - the survey object that fires the event
4008
+ * `options.question` - a matrix question.
4009
+ * `options.row` - a new added row.
4004
4010
  */
4005
4011
  onMatrixRowAdded: EventBase<SurveyModel>;
4006
4012
  /*
4007
4013
  * The event is fired before adding a new row in Matrix Dynamic question.
4008
- * <br/> `sender` - the survey object that fires the event
4009
- * <br/> `options.question` - a matrix question.
4010
- * <br/> `options.canAddRow` - specifies whether a new row can be added
4014
+ * `sender` - the survey object that fires the event
4015
+ * `options.question` - a matrix question.
4016
+ * `options.canAddRow` - specifies whether a new row can be added
4011
4017
  */
4012
4018
  onMatrixBeforeRowAdded: EventBase<SurveyModel>;
4013
4019
  /*
4014
4020
  * The event is fired before removing a row from Matrix Dynamic question. You can disable removing and clear the data instead.
4015
- * <br/> `sender` - the survey object that fires the event
4016
- * <br/> `options.question` - a matrix question.
4017
- * <br/> `options.rowIndex` - a row index.
4018
- * <br/> `options.row` - a row object.
4019
- * <br/> `options.allow` - a boolean property. Set it to `false` to disable the row removing.
4021
+ * `sender` - the survey object that fires the event
4022
+ * `options.question` - a matrix question.
4023
+ * `options.rowIndex` - a row index.
4024
+ * `options.row` - a row object.
4025
+ * `options.allow` - a boolean property. Set it to `false` to disable the row removing.
4020
4026
  */
4021
4027
  onMatrixRowRemoving: EventBase<SurveyModel>;
4022
4028
  /*
4023
4029
  * The event is fired on removing a row from Matrix Dynamic question.
4024
- * <br/> `sender` - the survey object that fires the event
4025
- * <br/> `options.question` - a matrix question
4026
- * <br/> `options.rowIndex` - a removed row index
4027
- * <br/> `options.row` - a removed row object
4030
+ * `sender` - the survey object that fires the event
4031
+ * `options.question` - a matrix question
4032
+ * `options.rowIndex` - a removed row index
4033
+ * `options.row` - a removed row object
4028
4034
  */
4029
4035
  onMatrixRowRemoved: EventBase<SurveyModel>;
4030
4036
  /*
4031
4037
  * The event is fired before rendering "Remove" button for removing a row from Matrix Dynamic question.
4032
- * <br/> `sender` - the survey object that fires the event
4033
- * <br/> `options.question` - a matrix question.
4034
- * <br/> `options.rowIndex` - a row index.
4035
- * <br/> `options.row` - a row object.
4036
- * <br/> `options.allow` - a boolean property. Set it to `false` to disable the row removing.
4038
+ * `sender` - the survey object that fires the event
4039
+ * `options.question` - a matrix question.
4040
+ * `options.rowIndex` - a row index.
4041
+ * `options.row` - a row object.
4042
+ * `options.allow` - a boolean property. Set it to `false` to disable the row removing.
4037
4043
  */
4038
4044
  onMatrixAllowRemoveRow: EventBase<SurveyModel>;
4039
4045
  /*
4040
4046
  * The event is fired before creating cell question in the matrix. You can change the cell question type by setting different options.cellType.
4041
- * <br/> `sender` - the survey object that fires the event.
4042
- * <br/> `options.question` - the matrix question.
4043
- * <br/> `options.cellType` - the cell question type. You can change it.
4044
- * <br/> `options.rowValue` - the value of the current row. To access a particular column's value within the current row, use: `options.rowValue["columnValue"]`.
4045
- * <br/> `options.column` - the matrix column object.
4046
- * <br/> `options.columnName` - the matrix column name.
4047
- * <br/> `options.row` - the matrix row object.
4047
+ * `sender` - the survey object that fires the event.
4048
+ * `options.question` - the matrix question.
4049
+ * `options.cellType` - the cell question type. You can change it.
4050
+ * `options.rowValue` - the value of the current row. To access a particular column's value within the current row, use: `options.rowValue["columnValue"]`.
4051
+ * `options.column` - the matrix column object.
4052
+ * `options.columnName` - the matrix column name.
4053
+ * `options.row` - the matrix row object.
4048
4054
  */
4049
4055
  onMatrixCellCreating: EventBase<SurveyModel>;
4050
4056
  /*
4051
4057
  * The event is fired for every cell created in Matrix Dynamic and Matrix Dropdown questions.
4052
- * <br/> `sender` - the survey object that fires the event.
4053
- * <br/> `options.question` - the matrix question.
4054
- * <br/> `options.cell` - the matrix cell.
4055
- * <br/> `options.cellQuestion` - the question/editor in the cell. You may customize it, change it's properties, like choices or visible.
4056
- * <br/> `options.rowValue` - the value of the current row. To access a particular column's value within the current row, use: `options.rowValue["columnValue"]`.
4057
- * <br/> `options.column` - the matrix column object.
4058
- * <br/> `options.columnName` - the matrix column name.
4059
- * <br/> `options.row` - the matrix row object.
4058
+ * `sender` - the survey object that fires the event.
4059
+ * `options.question` - the matrix question.
4060
+ * `options.cell` - the matrix cell.
4061
+ * `options.cellQuestion` - the question/editor in the cell. You may customize it, change it's properties, like choices or visible.
4062
+ * `options.rowValue` - the value of the current row. To access a particular column's value within the current row, use: `options.rowValue["columnValue"]`.
4063
+ * `options.column` - the matrix column object.
4064
+ * `options.columnName` - the matrix column name.
4065
+ * `options.row` - the matrix row object.
4060
4066
  */
4061
4067
  onMatrixCellCreated: EventBase<SurveyModel>;
4062
4068
  /*
4063
4069
  * The event is fired for every cell after is has been rendered in DOM.
4064
- * <br/> `sender` - the survey object that fires the event.
4065
- * <br/> `options.question` - the matrix question.
4066
- * <br/> `options.cell` - the matrix cell.
4067
- * <br/> `options.cellQuestion` - the question/editor in the cell.
4068
- * <br/> `options.htmlElement` - an HTML element bound to the `cellQuestion` object.
4069
- * <br/> `options.column` - the matrix column object.
4070
- * <br/> `options.row` - the matrix row object.
4070
+ * `sender` - the survey object that fires the event.
4071
+ * `options.question` - the matrix question.
4072
+ * `options.cell` - the matrix cell.
4073
+ * `options.cellQuestion` - the question/editor in the cell.
4074
+ * `options.htmlElement` - an HTML element bound to the `cellQuestion` object.
4075
+ * `options.column` - the matrix column object.
4076
+ * `options.row` - the matrix row object.
4071
4077
  */
4072
4078
  onMatrixAfterCellRender: EventBase<SurveyModel>;
4073
4079
  /*
4074
4080
  * The event is fired when cell value is changed in Matrix Dynamic and Matrix Dropdown questions.
4075
- * <br/> `sender` - the survey object that fires the event.
4076
- * <br/> `options.question` - the matrix question.
4077
- * <br/> `options.columnName` - the matrix column name.
4078
- * <br/> `options.value` - a new value.
4079
- * <br/> `options.row` - the matrix row object.
4080
- * <br/> `options.getCellQuestion(columnName)` - the function that returns the cell question by column name.
4081
+ * `sender` - the survey object that fires the event.
4082
+ * `options.question` - the matrix question.
4083
+ * `options.columnName` - the matrix column name.
4084
+ * `options.value` - a new value.
4085
+ * `options.row` - the matrix row object.
4086
+ * `options.getCellQuestion(columnName)` - the function that returns the cell question by column name.
4081
4087
  */
4082
4088
  onMatrixCellValueChanged: EventBase<SurveyModel>;
4083
4089
  /*
4084
4090
  * The event is fired on changing cell value in Matrix Dynamic and Matrix Dropdown questions. You may change the `options.value` property to change a cell value.
4085
- * <br/> `sender` - the survey object that fires the event.
4086
- * <br/> `options.question` - the matrix question.
4087
- * <br/> `options.columnName` - the matrix column name.
4088
- * <br/> `options.value` - a new value.
4089
- * <br/> `options.oldValue` - the old value.
4090
- * <br/> `options.row` - the matrix row object.
4091
- * <br/> `options.getCellQuestion(columnName)` - the function that returns a cell question by column name.
4091
+ * `sender` - the survey object that fires the event.
4092
+ * `options.question` - the matrix question.
4093
+ * `options.columnName` - the matrix column name.
4094
+ * `options.value` - a new value.
4095
+ * `options.oldValue` - the old value.
4096
+ * `options.row` - the matrix row object.
4097
+ * `options.getCellQuestion(columnName)` - the function that returns a cell question by column name.
4092
4098
  */
4093
4099
  onMatrixCellValueChanging: EventBase<SurveyModel>;
4094
4100
  /*
4095
4101
  * The event is fired when Matrix Dynamic and Matrix Dropdown questions validate the cell value.
4096
- * <br/> `sender` - the survey object that fires the event.
4097
- * <br/> `options.error` - an error string. It is empty by default.
4098
- * <br/> `options.question` - the matrix question.
4099
- * <br/> `options.columnName` - the matrix column name.
4100
- * <br/> `options.value` - a cell value.
4101
- * <br/> `options.row` - the matrix row object.
4102
- * <br/> `options.getCellQuestion(columnName)` - the function that returns the cell question by column name.
4102
+ * `sender` - the survey object that fires the event.
4103
+ * `options.error` - an error string. It is empty by default.
4104
+ * `options.question` - the matrix question.
4105
+ * `options.columnName` - the matrix column name.
4106
+ * `options.value` - a cell value.
4107
+ * `options.row` - the matrix row object.
4108
+ * `options.getCellQuestion(columnName)` - the function that returns the cell question by column name.
4103
4109
  */
4104
4110
  onMatrixCellValidate: EventBase<SurveyModel>;
4105
4111
  /*
4106
4112
  * The event is fired on adding a new panel in Panel Dynamic question.
4107
- * <br/> `sender` - the survey object that fires the event.
4108
- * <br/> `options.question` - a panel question.
4109
- * <br/> `options.panel` - an added panel.
4113
+ * `sender` - the survey object that fires the event.
4114
+ * `options.question` - a panel question.
4115
+ * `options.panel` - an added panel.
4110
4116
  */
4111
4117
  onDynamicPanelAdded: EventBase<SurveyModel>;
4112
4118
  /*
4113
4119
  * The event is fired on removing a panel from Panel Dynamic question.
4114
- * <br/> `sender` - the survey object that fires the event.
4115
- * <br/> `options.question` - a panel question.
4116
- * <br/> `options.panelIndex` - a removed panel index.
4117
- * <br/> `options.panel` - a removed panel.
4120
+ * `sender` - the survey object that fires the event.
4121
+ * `options.question` - a panel question.
4122
+ * `options.panelIndex` - a removed panel index.
4123
+ * `options.panel` - a removed panel.
4118
4124
  */
4119
4125
  onDynamicPanelRemoved: EventBase<SurveyModel>;
4120
4126
  /*
@@ -4123,92 +4129,92 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4123
4129
  onTimer: EventBase<SurveyModel>;
4124
4130
  /*
4125
4131
  * The event is fired before displaying a new information in the Timer Panel. Use it to change the default text.
4126
- * <br/> `sender` - the survey object that fires the event.
4127
- * <br/> `options.text` - the timer panel info text.
4132
+ * `sender` - the survey object that fires the event.
4133
+ * `options.text` - the timer panel info text.
4128
4134
  */
4129
4135
  onTimerPanelInfoText: EventBase<SurveyModel>;
4130
4136
  /*
4131
4137
  * The event is fired when item value is changed in Panel Dynamic question.
4132
- * <br/> `sender` - the survey object that fires the event.
4133
- * <br/> `options.question` - the panel question.
4134
- * <br/> `options.panel` - the dynamic panel item.
4135
- * <br/> `options.name` - the item name.
4136
- * <br/> `options.value` - a new value.
4137
- * <br/> `options.itemIndex` - the panel item index.
4138
- * <br/> `options.itemValue` - the panel item object.
4138
+ * `sender` - the survey object that fires the event.
4139
+ * `options.question` - the panel question.
4140
+ * `options.panel` - the dynamic panel item.
4141
+ * `options.name` - the item name.
4142
+ * `options.value` - a new value.
4143
+ * `options.itemIndex` - the panel item index.
4144
+ * `options.itemValue` - the panel item object.
4139
4145
  */
4140
4146
  onDynamicPanelItemValueChanged: EventBase<SurveyModel>;
4141
4147
  /*
4142
4148
  * Use this event to define, whether an answer to a question is correct or not.
4143
- * <br/> `sender` - the survey object that fires the event.
4144
- * <br/> `options.question` - a question on which you have to decide if the answer is correct or not.
4145
- * <br/> `options.result` - returns `true`, if an answer is correct, or `false`, if the answer is not correct. Use questions' `value` and `correctAnswer` properties to return the correct value.
4146
- * <br/> `options.correctAnswers` - you may change the default number of correct or incorrect answers in the question, for example for matrix, where each row is a quiz question.
4149
+ * `sender` - the survey object that fires the event.
4150
+ * `options.question` - a question on which you have to decide if the answer is correct or not.
4151
+ * `options.result` - returns `true`, if an answer is correct, or `false`, if the answer is not correct. Use questions' `value` and `correctAnswer` properties to return the correct value.
4152
+ * `options.correctAnswers` - you may change the default number of correct or incorrect answers in the question, for example for matrix, where each row is a quiz question.
4147
4153
  */
4148
4154
  onIsAnswerCorrect: EventBase<SurveyModel>;
4149
4155
  /*
4150
4156
  * Use this event to control drag&drop operations during design mode.
4151
- * <br/> `sender` - the survey object that fires the event.
4152
- * <br/> `options.allow` - set it to `false` to disable dragging.
4153
- * <br/> `options.target` - a target element that is dragged.
4154
- * <br/> `options.source` - a source element. It can be `null`, if it is a new element, dragging from toolbox.
4155
- * <br/> `options.parent` - a page or panel where target element is dragging.
4156
- * <br/> `options.insertBefore` - an element before the target element is dragging. It can be `null` if parent container (page or panel) is empty or dragging an element after the last element in a container.
4157
- * <br/> `options.insertAfter` - an element after the target element is dragging. It can be `null` if parent container (page or panel) is empty or dragging element to the first position within the parent container.
4157
+ * `sender` - the survey object that fires the event.
4158
+ * `options.allow` - set it to `false` to disable dragging.
4159
+ * `options.target` - a target element that is dragged.
4160
+ * `options.source` - a source element. It can be `null`, if it is a new element, dragging from toolbox.
4161
+ * `options.parent` - a page or panel where target element is dragging.
4162
+ * `options.insertBefore` - an element before the target element is dragging. It can be `null` if parent container (page or panel) is empty or dragging an element after the last element in a container.
4163
+ * `options.insertAfter` - an element after the target element is dragging. It can be `null` if parent container (page or panel) is empty or dragging element to the first position within the parent container.
4158
4164
  */
4159
4165
  onDragDropAllow: EventBase<SurveyModel>;
4160
4166
  /*
4161
4167
  * Use this event to control scrolling element to top. You can cancel the default behavior by setting options.cancel property to true.
4162
- * <br/> `sender` - the survey object that fires the event.
4163
- * <br/> `options.element` - an element that is going to be scrolled on top.
4164
- * <br/> `options.question` - a question that is going to be scrolled on top. It can be null if options.page is not null.
4165
- * <br/> `options.page` - a page that is going to be scrolled on top. It can be null if options.question is not null.
4166
- * <br/> `options.elementId` - the unique element DOM Id.
4167
- * <br/> `options.cancel` - set this property to true to cancel the default scrolling.
4168
+ * `sender` - the survey object that fires the event.
4169
+ * `options.element` - an element that is going to be scrolled on top.
4170
+ * `options.question` - a question that is going to be scrolled on top. It can be null if options.page is not null.
4171
+ * `options.page` - a page that is going to be scrolled on top. It can be null if options.question is not null.
4172
+ * `options.elementId` - the unique element DOM Id.
4173
+ * `options.cancel` - set this property to true to cancel the default scrolling.
4168
4174
  */
4169
4175
  onScrollingElementToTop: EventBase<SurveyModel>;
4170
4176
  onLocaleChangedEvent: EventBase<SurveyModel>;
4171
4177
  /*
4172
4178
  * Use this event to create/customize actions to be displayed in a question's title.
4173
- * <br/> `sender` - A [Survey](https://surveyjs.io/Documentation/Library?id=SurveyModel) object that fires the event.
4174
- * <br/> `options.question` - A [Question](https://surveyjs.io/Documentation/Library?id=Question) object for which the event is fired.
4175
- * <br/> `options.titleActions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed question.
4179
+ * `sender` - A [Survey](https://surveyjs.io/Documentation/Library?id=SurveyModel) object that fires the event.
4180
+ * `options.question` - A [Question](https://surveyjs.io/Documentation/Library?id=Question) object for which the event is fired.
4181
+ * `options.titleActions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed question.
4176
4182
  */
4177
4183
  onGetQuestionTitleActions: EventBase<SurveyModel>;
4178
4184
  /*
4179
4185
  * Use this event to create/customize actions to be displayed in a panel's title.
4180
- * <br/> `sender` - A survey object that fires the event.
4181
- * <br/> `options.panel` - A panel ([PanelModel](https://surveyjs.io/Documentation/Library?id=panelmodel) object) for which the event is fired.
4182
- * <br/> `options.titleActions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed panel.
4186
+ * `sender` - A survey object that fires the event.
4187
+ * `options.panel` - A panel ([PanelModel](https://surveyjs.io/Documentation/Library?id=panelmodel) object) for which the event is fired.
4188
+ * `options.titleActions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed panel.
4183
4189
  */
4184
4190
  onGetPanelTitleActions: EventBase<SurveyModel>;
4185
4191
  /*
4186
4192
  * Use this event to create/customize actions to be displayed in a page's title.
4187
- * <br/> `sender` - A survey object that fires the event.
4188
- * <br/> `options.page` - A page ([PageModel](https://surveyjs.io/Documentation/Library?id=pagemodel) object) for which the event is fired.
4189
- * <br/> `options.titleActions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed page.
4193
+ * `sender` - A survey object that fires the event.
4194
+ * `options.page` - A page ([PageModel](https://surveyjs.io/Documentation/Library?id=pagemodel) object) for which the event is fired.
4195
+ * `options.titleActions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed page.
4190
4196
  */
4191
4197
  onGetPageTitleActions: EventBase<SurveyModel>;
4192
4198
  /*
4193
4199
  * Use this event to create/customize actions to be displayed in a matrix question's row.
4194
- * <br/> `sender` - A survey object that fires the event.
4195
- * <br/> `options.question` - A matrix question ([QuestionMatrixBaseModel](https://surveyjs.io/Documentation/Library?id=questionmatrixbasemodel) object) for which the event is fired.
4196
- * <br/> `options.row` - A matrix row for which the event is fired.
4197
- * <br/> `options.actions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed matrix question and row.
4200
+ * `sender` - A survey object that fires the event.
4201
+ * `options.question` - A matrix question ([QuestionMatrixBaseModel](https://surveyjs.io/Documentation/Library?id=questionmatrixbasemodel) object) for which the event is fired.
4202
+ * `options.row` - A matrix row for which the event is fired.
4203
+ * `options.actions` - A list of actions ([IAction](https://surveyjs.io/Documentation/Library?id=IAction) objects) associated with the processed matrix question and row.
4198
4204
  */
4199
4205
  onGetMatrixRowActions: EventBase<SurveyModel>;
4200
4206
  /*
4201
4207
  * The event is fired after the survey element content was collapsed or expanded.
4202
- * <br/> `sender` - the survey object that fires the event.
4203
- * <br/> `options.element` - Specifies which survey element content was collapsed or expanded.
4208
+ * `sender` - the survey object that fires the event.
4209
+ * `options.element` - Specifies which survey element content was collapsed or expanded.
4204
4210
  */
4205
4211
  onElementContentVisibilityChanged: EventBase<SurveyModel>;
4206
4212
  /*
4207
4213
  * The event is fired before expression question convert it's value into display value for rendering.
4208
- * <br/> `sender` - the survey object that fires the event.
4209
- * <br/> `options.question` - The expression question.
4210
- * <br/> `options.value` - The question value.
4211
- * <br/> `options.displayValue` - the display value that you can change before rendering.
4214
+ * `sender` - the survey object that fires the event.
4215
+ * `options.question` - The expression question.
4216
+ * `options.value` - The question value.
4217
+ * `options.displayValue` - the display value that you can change before rendering.
4212
4218
  */
4213
4219
  onGetExpressionDisplayValue: EventBase<SurveyModel>;
4214
4220
  /*
@@ -6113,9 +6119,9 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
6113
6119
  commentElement: any;
6114
6120
  /*
6115
6121
  * The event is fired when isReady property of question is changed.
6116
- * <br/> options.question - the question
6117
- * <br/> options.isReady - current value of isReady
6118
- * <br/> options.oldIsReady - old value of isReady
6122
+ * options.question - the question
6123
+ * options.isReady - current value of isReady
6124
+ * options.oldIsReady - old value of isReady
6119
6125
  */
6120
6126
  onReadyChanged: EventBase<Question>;
6121
6127
  isReadOnlyRenderDiv(): boolean;
@@ -6335,6 +6341,8 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
6335
6341
  showErrorOnCore(location: string): boolean;
6336
6342
  get showErrorOnTop(): boolean;
6337
6343
  get showErrorOnBottom(): boolean;
6344
+ get showErrorsAboveQuestion(): boolean;
6345
+ get showErrorsBelowQuestion(): boolean;
6338
6346
  get cssError(): string;
6339
6347
  protected setCssError(val: string): void;
6340
6348
  protected getCssError(cssClasses: any): string;
@@ -6843,6 +6851,7 @@ export declare class PageModel extends PanelModelBase implements IPage {
6843
6851
  get isStarted(): boolean;
6844
6852
  protected calcCssClasses(css: any): any;
6845
6853
  get cssTitle(): string;
6854
+ get cssRoot(): string;
6846
6855
  num: number;
6847
6856
  /*
6848
6857
  * Set this property to "hide" to make "Prev", "Next" and "Complete" buttons are invisible for this page. Set this property to "show" to make these buttons visible, even if survey showNavigationButtons property is false.
@@ -7117,7 +7126,7 @@ export declare class QuestionExpressionModel extends Question {
7117
7126
  get locFormat(): LocalizableString;
7118
7127
  /*
7119
7128
  * The Expression that used to calculate the question value. You may use standard operators like +, -, * and /, squares (). Here is the example of accessing the question value {questionname}.
7120
- * <br/>Example: "({quantity} * {price}) * (100 - {discount}) / 100"
7129
+ * Example: "({quantity} * {price}) * (100 - {discount}) / 100"
7121
7130
  */
7122
7131
  get expression(): string;
7123
7132
  set expression(val: string);
@@ -7170,8 +7179,8 @@ export declare class QuestionFileModel extends Question {
7170
7179
  isDragging: boolean;
7171
7180
  /*
7172
7181
  * The event is fired after question state has been changed.
7173
- * <br/> sender the question object that fires the event
7174
- * <br/> options.state new question state value.
7182
+ * sender the question object that fires the event
7183
+ * options.state new question state value.
7175
7184
  */
7176
7185
  onStateChanged: EventBase<QuestionFileModel>;
7177
7186
  previewValue: any;
@@ -7301,6 +7310,11 @@ export declare class QuestionFileModel extends Question {
7301
7310
  * Clear value programmatically.
7302
7311
  */
7303
7312
  clear(doneCallback?: any): void;
7313
+ get multipleRendered(): string;
7314
+ get showRemoveButton(): any;
7315
+ get showRemoveButtonBottom(): any;
7316
+ defaultImage(data: any): boolean;
7317
+ get imageWidthRendered(): string;
7304
7318
  /*
7305
7319
  * Remove file item programmatically.
7306
7320
  */
@@ -7383,6 +7397,9 @@ export declare class QuestionMatrixBaseModel<TRow, TColumn> extends Question {
7383
7397
  clearIncorrectValues(): void;
7384
7398
  protected clearInvisibleValuesInRows(): void;
7385
7399
  needResponsiveWidth(): boolean;
7400
+ getTableCss(): string;
7401
+ verticalAlign: "top" | "middle";
7402
+ alternateRows: boolean;
7386
7403
  }
7387
7404
  /*
7388
7405
  * A Model for a multiple text question.
@@ -7609,10 +7626,10 @@ export declare class QuestionPanelDynamicModel extends Question implements IQues
7609
7626
  set panelCount(val: number);
7610
7627
  /*
7611
7628
  * Use this property to allow the end-user to collapse/expand the panels. It works only if the renderMode property equals to "list" and templateTitle property is not empty. The following values are available:
7612
- * <br/> default - the default value. User can't collapse/expand panels
7613
- * <br/> expanded - User can collapse/expand panels and all panels are expanded by default
7614
- * <br/> collapsed - User can collapse/expand panels and all panels are collapsed by default
7615
- * <br/> firstExpanded - User can collapse/expand panels. The first panel is expanded and others are collapsed
7629
+ * default - the default value. User can't collapse/expand panels
7630
+ * expanded - User can collapse/expand panels and all panels are expanded by default
7631
+ * collapsed - User can collapse/expand panels and all panels are collapsed by default
7632
+ * firstExpanded - User can collapse/expand panels. The first panel is expanded and others are collapsed
7616
7633
  */
7617
7634
  get panelsState(): string;
7618
7635
  set panelsState(val: string);
@@ -7828,13 +7845,8 @@ export declare class QuestionRatingModel extends Question {
7828
7845
  get hasMinLabel(): boolean;
7829
7846
  get hasMaxLabel(): boolean;
7830
7847
  /*
7831
- * Specifies whether a Rating question displays the [minRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#minRateDescription)
7832
- * and [maxRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#maxRateDescription) property texts as buttons that correspond to
7833
- * the extreme (first and last) rate items. If any of these properties is empty, the corresponding rate item's value/text is used for display.<br/>
7834
- * When the `displayRateDescriptionsAsExtremeItems` property is disabled, the texts defined through
7835
- * the [minRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#minRateDescription)
7836
- * and [maxRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#maxRateDescription) properties
7837
- * are displayed as plain non-clickable texts.
7848
+ * Specifies whether a Rating question displays the [minRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#minRateDescription) and [maxRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#maxRateDescription) property texts as buttons that correspond to the extreme (first and last) rate items. If any of these properties is empty, the corresponding rate item's value/text is used for display.
7849
+ * When the `displayRateDescriptionsAsExtremeItems` property is disabled, the texts defined through the [minRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#minRateDescription) and [maxRateDescription](https://surveyjs.io/Documentation/Library?id=questionratingmodel#maxRateDescription) properties are displayed as plain non-clickable texts.
7838
7850
  */
7839
7851
  displayRateDescriptionsAsExtremeItems: boolean;
7840
7852
  useDropdown: "auto" | "always" | "never";
@@ -8033,6 +8045,7 @@ export declare class QuestionSelectBase extends Question {
8033
8045
  protected updateVisibleChoices(): void;
8034
8046
  protected canUseFilteredChoices(): boolean;
8035
8047
  setCanShowOptionItemCallback(func: (item: ItemValue) => boolean): void;
8048
+ get newItem(): ItemValue;
8036
8049
  protected addToVisibleChoices(items: any, isAddAll: boolean): void;
8037
8050
  protected canShowOptionItem(item: ItemValue, isAddAll: boolean, hasItem: boolean): boolean;
8038
8051
  /*
@@ -8136,13 +8149,15 @@ export declare class QuestionSignaturePadModel extends Question {
8136
8149
  /*
8137
8150
  * Use it to set the specific width for the signature pad.
8138
8151
  */
8139
- get width(): string;
8140
- set width(val: string);
8152
+ get signatureWidth(): number;
8153
+ set signatureWidth(val: number);
8141
8154
  /*
8142
8155
  * Use it to set the specific height for the signature pad.
8143
8156
  */
8144
- get height(): string;
8145
- set height(val: string);
8157
+ get signatureHeight(): number;
8158
+ set signatureHeight(val: number);
8159
+ get height(): number;
8160
+ set height(val: number);
8146
8161
  /*
8147
8162
  * Use it to clear content of the signature pad.
8148
8163
  */
@@ -8165,6 +8180,7 @@ export declare class QuestionSignaturePadModel extends Question {
8165
8180
  get clearButtonCaption(): string;
8166
8181
  needShowPlaceholder(): boolean;
8167
8182
  get placeHolderText(): string;
8183
+ endLoadingFromJson(): void;
8168
8184
  }
8169
8185
  /*
8170
8186
  * A Base Model for a comment and text questions
@@ -8363,8 +8379,6 @@ export declare class QuestionCustomModel extends QuestionCustomModelBase {
8363
8379
  */
8364
8380
  export declare class QuestionDropdownModel extends QuestionSelectBase {
8365
8381
  constructor(name: string);
8366
- onOpened: EventBase<QuestionDropdownModel>;
8367
- onOpenedCallBack(): void;
8368
8382
  /*
8369
8383
  * This flag controls whether to show options caption item ('Choose...').
8370
8384
  */
@@ -8412,6 +8426,9 @@ export declare class QuestionDropdownModel extends QuestionSelectBase {
8412
8426
  protected onVisibleChoicesChanged(): void;
8413
8427
  _popupModel: any;
8414
8428
  get popupModel(): any;
8429
+ onOpened: EventBase<QuestionDropdownModel>;
8430
+ onOpenedCallBack(): void;
8431
+ onClick(event: any): void;
8415
8432
  }
8416
8433
  /*
8417
8434
  * A Model for html question. Unlike other questions it doesn't have value and title.
@@ -8902,6 +8919,12 @@ export declare class QuestionCheckboxModel extends QuestionCheckboxBase {
8902
8919
  protected onCreating(): void;
8903
8920
  protected getFirstInputElementId(): string;
8904
8921
  /*
8922
+ * Set this property if you want to store the checkbox value as array of objects instead of array of values
8923
+ * For example: if "valuePropertyName" equals car, then instead of having ["Ford", "Tesla"], you will have [{car: "Ford"}, {car: "Tesla"}]
8924
+ */
8925
+ get valuePropertyName(): string;
8926
+ set valuePropertyName(val: string);
8927
+ /*
8905
8928
  * Returns the select all item. By using this property, you may change programmatically it's value and text.
8906
8929
  */
8907
8930
  get selectAllItem(): ItemValue;
@@ -8969,6 +8992,10 @@ export declare class QuestionCheckboxModel extends QuestionCheckboxBase {
8969
8992
  protected setDefaultValueWithOthers(): void;
8970
8993
  protected getHasOther(val: any): boolean;
8971
8994
  protected valueFromData(val: any): any;
8995
+ protected rendredValueFromData(val: any): any;
8996
+ protected rendredValueToData(val: any): any;
8997
+ protected convertValueFromObject(val: any): any;
8998
+ protected convertValueToObject(val: any): any;
8972
8999
  protected renderedValueFromDataCore(val: any): any;
8973
9000
  protected rendredValueToDataCore(val: any): any;
8974
9001
  get checkBoxSvgPath(): string;
@@ -9202,7 +9229,7 @@ export declare class QuestionMatrixDynamicModel extends QuestionMatrixDropdownMo
9202
9229
  set addRowText(val: string);
9203
9230
  get locAddRowText(): LocalizableString;
9204
9231
  /*
9205
- * By default the 'Add Row' button is shown on bottom if columnLayout is horizontal and on top if columnLayout is vertical. <br/>
9232
+ * By default the 'Add Row' button is shown on bottom if columnLayout is horizontal and on top if columnLayout is vertical.
9206
9233
  * You may set it to "top", "bottom" or "topBottom" (to show on top and bottom).
9207
9234
  */
9208
9235
  get addRowLocation(): string;
@@ -9539,6 +9566,8 @@ export declare var registerFunction: (name: string, func: any) => any;
9539
9566
  export declare var parse: any;
9540
9567
  export declare var defaultActionBarCss: {
9541
9568
  root: string,
9569
+ defaultSizeMode: string,
9570
+ smallSizeMode: string,
9542
9571
  item: string,
9543
9572
  itemActive: string,
9544
9573
  itemPressed: string,
@@ -9650,6 +9679,7 @@ export declare var defaultStandardCss: {
9650
9679
  rootRadio: string,
9651
9680
  item: string,
9652
9681
  control: string,
9682
+ controlCheckbox: string,
9653
9683
  itemChecked: string,
9654
9684
  itemIndeterminate: string,
9655
9685
  itemDisabled: string,
@@ -10012,6 +10042,7 @@ export declare var defaultBootstrapCss: {
10012
10042
  rootRadio: string,
10013
10043
  item: string,
10014
10044
  control: string,
10045
+ controlCheckbox: string,
10015
10046
  itemChecked: string,
10016
10047
  itemIndeterminate: string,
10017
10048
  itemDisabled: string,
@@ -10332,6 +10363,7 @@ export declare var defaultBootstrapMaterialCss: {
10332
10363
  rootRadio: string,
10333
10364
  item: string,
10334
10365
  control: string,
10366
+ controlCheckbox: string,
10335
10367
  itemChecked: string,
10336
10368
  itemIndeterminate: string,
10337
10369
  itemDisabled: string,
@@ -10576,6 +10608,7 @@ export declare var defaultV2Css: {
10576
10608
  logo: string,
10577
10609
  logoImage: string,
10578
10610
  headerText: string,
10611
+ headerClose: string,
10579
10612
  navigationButton: string,
10580
10613
  bodyNavigationButton: string,
10581
10614
  completedPage: string,
@@ -10652,6 +10685,7 @@ export declare var defaultV2Css: {
10652
10685
  progressTextInBar: string,
10653
10686
  page: {
10654
10687
  root: string,
10688
+ emptyHeaderRoot: string,
10655
10689
  title: string,
10656
10690
  description: string,
10657
10691
  },
@@ -10711,7 +10745,9 @@ export declare var defaultV2Css: {
10711
10745
  icon: string,
10712
10746
  item: string,
10713
10747
  tooltip: string,
10748
+ outsideQuestion: string,
10714
10749
  aboveQuestion: string,
10750
+ belowQuestion: string,
10715
10751
  locationTop: string,
10716
10752
  locationBottom: string,
10717
10753
  },
@@ -10767,6 +10803,7 @@ export declare var defaultV2Css: {
10767
10803
  radioFieldset: string,
10768
10804
  itemOnError: string,
10769
10805
  control: string,
10806
+ controlCheckbox: string,
10770
10807
  itemChecked: string,
10771
10808
  itemIndeterminate: string,
10772
10809
  itemDisabled: string,
@@ -10846,9 +10883,14 @@ export declare var defaultV2Css: {
10846
10883
  mainRoot: string,
10847
10884
  tableWrapper: string,
10848
10885
  root: string,
10886
+ rootVerticalAlignTop: string,
10887
+ rootVerticalAlignMiddle: string,
10888
+ rootAlternateRows: string,
10849
10889
  rowError: string,
10850
10890
  cell: string,
10891
+ row: string,
10851
10892
  headerCell: string,
10893
+ rowTextCell: string,
10852
10894
  label: string,
10853
10895
  itemOnError: string,
10854
10896
  itemValue: string,
@@ -10866,7 +10908,11 @@ export declare var defaultV2Css: {
10866
10908
  mainRoot: string,
10867
10909
  rootScroll: string,
10868
10910
  root: string,
10911
+ rootVerticalAlignTop: string,
10912
+ rootVerticalAlignMiddle: string,
10913
+ rootAlternateRows: string,
10869
10914
  cell: string,
10915
+ row: string,
10870
10916
  headerCell: string,
10871
10917
  rowTextCell: string,
10872
10918
  cellRequiredText: string,
@@ -10887,6 +10933,7 @@ export declare var defaultV2Css: {
10887
10933
  empty: string,
10888
10934
  root: string,
10889
10935
  cell: string,
10936
+ row: string,
10890
10937
  headerCell: string,
10891
10938
  rowTextCell: string,
10892
10939
  cellRequiredText: string,
@@ -11247,6 +11294,7 @@ export declare var modernCss: {
11247
11294
  small: string,
11248
11295
  item: string,
11249
11296
  control: string,
11297
+ controlCheckbox: string,
11250
11298
  itemChecked: string,
11251
11299
  itemIndeterminate: string,
11252
11300
  itemDisabled: string,
@@ -11259,6 +11307,9 @@ export declare var modernCss: {
11259
11307
  checkedPath: string,
11260
11308
  uncheckedPath: string,
11261
11309
  indeterminatePath: string,
11310
+ svgIconCheckedId: string,
11311
+ svgIconUncheckedId: string,
11312
+ svgIconIndId: string,
11262
11313
  },
11263
11314
  text: {
11264
11315
  root: string,