survey-react 1.11.1 → 1.11.3

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
@@ -169,6 +169,7 @@ declare module "localization/english" {
169
169
  emptyMessage: string;
170
170
  noEntriesText: string;
171
171
  noEntriesReadonlyText: string;
172
+ tabTitlePlaceholder: string;
172
173
  more: string;
173
174
  tagboxDoneButtonCaption: string;
174
175
  selectToRankEmptyRankedAreaText: string;
@@ -294,6 +295,7 @@ declare module "surveyStrings" {
294
295
  emptyMessage: string;
295
296
  noEntriesText: string;
296
297
  noEntriesReadonlyText: string;
298
+ tabTitlePlaceholder: string;
297
299
  more: string;
298
300
  tagboxDoneButtonCaption: string;
299
301
  selectToRankEmptyRankedAreaText: string;
@@ -1982,6 +1984,7 @@ declare module "defaultCss/defaultV2Css" {
1982
1984
  tableWrapper: string;
1983
1985
  rootAlternateRows: string;
1984
1986
  cell: string;
1987
+ cellResponsiveTitle: string;
1985
1988
  errorsCell: string;
1986
1989
  errorsCellTop: string;
1987
1990
  errorsCellBottom: string;
@@ -2026,6 +2029,7 @@ declare module "defaultCss/defaultV2Css" {
2026
2029
  rootAlternateRows: string;
2027
2030
  content: string;
2028
2031
  cell: string;
2032
+ cellResponsiveTitle: string;
2029
2033
  row: string;
2030
2034
  rowFadeIn: string;
2031
2035
  rowFadeOut: string;
@@ -3004,6 +3008,7 @@ declare module "question_custom" {
3004
3008
  addElement(element: IElement, index: number): void;
3005
3009
  removeElement(element: IElement): boolean;
3006
3010
  getQuestionTitleLocation(): string;
3011
+ getQuestionTitleWidth(): string;
3007
3012
  getQuestionStartIndex(): string;
3008
3013
  getChildrenLayoutType(): string;
3009
3014
  elementWidthChanged(el: IElement): void;
@@ -3107,7 +3112,7 @@ declare module "questionfactory" {
3107
3112
  static get DefaultColums(): string[];
3108
3113
  static get DefaultRows(): string[];
3109
3114
  static get DefaultMutlipleTextItems(): string[];
3110
- registerQuestion(questionType: string, questionCreator: (name: string) => Question): void;
3115
+ registerQuestion(questionType: string, questionCreator: (name: string) => Question, showInToolbox?: boolean): void;
3111
3116
  registerCustomQuestion(questionType: string): void;
3112
3117
  unregisterElement(elementType: string, removeFromSerializer?: boolean): void;
3113
3118
  clear(): void;
@@ -3117,12 +3122,14 @@ declare module "questionfactory" {
3117
3122
  export class ElementFactory {
3118
3123
  static Instance: ElementFactory;
3119
3124
  private creatorHash;
3120
- registerElement(elementType: string, elementCreator: (name: string) => IElement): void;
3121
- registerCustomQuestion: (questionType: string) => void;
3125
+ registerElement(elementType: string, elementCreator: (name: string) => IElement, showInToolbox?: boolean): void;
3126
+ registerCustomQuestion: (questionType: string, showInToolbox?: boolean) => void;
3122
3127
  clear(): void;
3123
3128
  unregisterElement(elementType: string, removeFromSerializer?: boolean): void;
3129
+ getAllToolboxTypes(): Array<string>;
3124
3130
  getAllTypes(): Array<string>;
3125
3131
  createElement(elementType: string, name: string): IElement;
3132
+ private getAllTypesCore;
3126
3133
  }
3127
3134
  }
3128
3135
  declare module "drag-drop-helper-v1" {
@@ -3447,6 +3454,13 @@ declare module "panel" {
3447
3454
  get questionTitleLocation(): string;
3448
3455
  set questionTitleLocation(value: string);
3449
3456
  getQuestionTitleLocation(): string;
3457
+ /**
3458
+ * Sets consistent width for question titles in CSS values. Applies only when [`questionTitleLocation`](#questionTitleLocation) evaluates to `"left"`.
3459
+ *
3460
+ * Default value: `undefined`
3461
+ */
3462
+ questionTitleWidth: string;
3463
+ getQuestionTitleWidth(): string;
3450
3464
  protected getStartIndex(): string;
3451
3465
  getQuestionStartIndex(): string;
3452
3466
  getChildrenLayoutType(): string;
@@ -5562,6 +5576,9 @@ declare module "question_matrixdropdownrendered" {
5562
5576
  set className(val: string);
5563
5577
  get className(): string;
5564
5578
  get cellQuestionWrapperClassName(): string;
5579
+ get showResponsiveTitle(): boolean;
5580
+ get responsiveTitleCss(): string;
5581
+ get responsiveLocTitle(): LocalizableString;
5565
5582
  get headers(): string;
5566
5583
  getTitle(): string;
5567
5584
  calculateFinalClassName(matrixCssClasses: any): string;
@@ -6313,11 +6330,20 @@ declare module "question_paneldynamic" {
6313
6330
  *
6314
6331
  * [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/ (linkStyle))
6315
6332
  * @see templateTitle
6333
+ * @see tabTitlePlaceholder
6316
6334
  * @see renderMode
6317
6335
  */
6318
6336
  get templateTabTitle(): string;
6319
6337
  set templateTabTitle(newValue: string);
6320
6338
  get locTemplateTabTitle(): LocalizableString;
6339
+ /**
6340
+ * A placeholder for tab titles that applies when the [`templateTabTitle`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#templateTabTitle) expression doesn't produce a meaningful value.
6341
+ *
6342
+ * Default value: `"New Panel"` (taken from a [localization dictionary](https://github.com/surveyjs/survey-library/tree/master/src/localization))
6343
+ */
6344
+ get tabTitlePlaceholder(): string;
6345
+ set tabTitlePlaceholder(newValue: string);
6346
+ get locTabTitlePlaceholder(): LocalizableString;
6321
6347
  /**
6322
6348
  * A template for panel descriptions.
6323
6349
  * @see template
@@ -8031,6 +8057,18 @@ declare module "survey-events-api" {
8031
8057
  */
8032
8058
  visible: boolean;
8033
8059
  }
8060
+ export interface ElementWrapperComponentEventMixin {
8061
+ element: any;
8062
+ wrapperName: string;
8063
+ reason?: string;
8064
+ item?: ItemValue;
8065
+ }
8066
+ export interface ElementWrapperComponentNameEvent extends ElementWrapperComponentEventMixin {
8067
+ componentName: string;
8068
+ }
8069
+ export interface ElementWrapperComponentDataEvent extends ElementWrapperComponentEventMixin {
8070
+ data: any;
8071
+ }
8034
8072
  }
8035
8073
  declare module "drag-drop-page-helper-v1" {
8036
8074
  import { IElement, ISurveyElement } from "base-interfaces";
@@ -9028,6 +9066,7 @@ declare module "question_multipletext" {
9028
9066
  addElement(element: IElement, index: number): void;
9029
9067
  removeElement(element: IElement): boolean;
9030
9068
  getQuestionTitleLocation(): string;
9069
+ getQuestionTitleWidth(): string;
9031
9070
  getQuestionStartIndex(): string;
9032
9071
  getChildrenLayoutType(): string;
9033
9072
  elementWidthChanged(el: IElement): void;
@@ -9254,7 +9293,7 @@ declare module "survey" {
9254
9293
  import { ActionContainer } from "actions/container";
9255
9294
  import { QuestionPanelDynamicModel } from "question_paneldynamic";
9256
9295
  import { Notifier } from "notifier";
9257
- 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, MatrixDetailPanelVisibleChangedEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, DynamicPanelCurrentIndexChangedEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ChoicesSearchEvent, OpenFileChooserEvent } from "survey-events-api";
9296
+ 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, MatrixDetailPanelVisibleChangedEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, DynamicPanelCurrentIndexChangedEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ChoicesSearchEvent, OpenFileChooserEvent, ElementWrapperComponentNameEvent, ElementWrapperComponentDataEvent } from "survey-events-api";
9258
9297
  import { QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
9259
9298
  import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
9260
9299
  import { QuestionFileModel } from "question_file";
@@ -9952,6 +9991,8 @@ declare module "survey" {
9952
9991
  * An event that is raised after the visibility of a popup is changed. This event can be raised for [Single-](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model) and [Multi-Select Dropdown](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model) questions and [Rating](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model) questions [rendered as drop-down menus](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model#displayMode).
9953
9992
  */
9954
9993
  onPopupVisibleChanged: EventBase<SurveyModel, PopupVisibleChangedEvent>;
9994
+ onElementWrapperComponentName: EventBase<SurveyModel, ElementWrapperComponentNameEvent>;
9995
+ onElementWrapperComponentData: EventBase<SurveyModel, ElementWrapperComponentDataEvent>;
9955
9996
  constructor(jsonObj?: any, renderedElement?: any);
9956
9997
  processClosedPopup(question: IQuestion, popupModel: PopupModel<any>): void;
9957
9998
  protected createTryAgainAction(): IAction;
@@ -10385,9 +10426,9 @@ declare module "survey" {
10385
10426
  locStrsChanged(): void;
10386
10427
  getMarkdownHtml(text: string, name: string): string;
10387
10428
  getRenderer(name: string): string;
10388
- getRendererContext(locStr: LocalizableString): LocalizableString;
10429
+ getRendererContext(locStr: LocalizableString): any;
10389
10430
  getRendererForString(element: Question | PanelModel | PageModel | SurveyModel, name: string): string;
10390
- getRendererContextForString(element: Base, locStr: LocalizableString): LocalizableString;
10431
+ getRendererContextForString(element: Base, locStr: LocalizableString): any;
10391
10432
  getExpressionDisplayValue(question: Question, value: any, displayValue: string): string;
10392
10433
  private getBuiltInRendererForString;
10393
10434
  getProcessedText(text: string): string;
@@ -12013,12 +12054,14 @@ declare module "survey" {
12013
12054
  focusQuestionByInstance(question: Question, onError?: boolean): boolean;
12014
12055
  private focusQuestionInfo;
12015
12056
  questionEditFinishCallback(question: Question, event: any): void;
12057
+ private elementWrapperComponentNameCore;
12058
+ private elementWrapperDataCore;
12016
12059
  getElementWrapperComponentName(element: any, reason?: string): string;
12017
12060
  getQuestionContentWrapperComponentName(element: any): string;
12018
12061
  getRowWrapperComponentName(row: QuestionRowModel): string;
12062
+ getItemValueWrapperComponentName(item: ItemValue, question: QuestionSelectBase): string;
12019
12063
  getElementWrapperComponentData(element: any, reason?: string): any;
12020
12064
  getRowWrapperComponentData(row: QuestionRowModel): any;
12021
- getItemValueWrapperComponentName(item: ItemValue, question: QuestionSelectBase): string;
12022
12065
  getItemValueWrapperComponentData(item: ItemValue, question: QuestionSelectBase): any;
12023
12066
  getMatrixCellTemplateData(cell: any): any;
12024
12067
  searchText(text: string): Array<IFindElement>;
@@ -12886,6 +12929,7 @@ declare module "question" {
12886
12929
  protected notifySurveyOnChildrenVisibilityChanged(): boolean;
12887
12930
  private notifySurveyVisibilityChanged;
12888
12931
  protected clearValueOnHidding(isClearOnHidden: boolean): void;
12932
+ get titleWidth(): string;
12889
12933
  /**
12890
12934
  * Returns title location calculated based on the question's `titleLocation` property and the `questionTitleLocation` property of the question's containers (survey, page, or panel).
12891
12935
  * @see titleLocation
@@ -14510,6 +14554,7 @@ declare module "base-interfaces" {
14510
14554
  export interface IPanel extends ISurveyElement, IParentElement {
14511
14555
  getChildrenLayoutType(): string;
14512
14556
  getQuestionTitleLocation(): string;
14557
+ getQuestionTitleWidth(): string;
14513
14558
  getQuestionStartIndex(): string;
14514
14559
  getQuestionErrorLocation(): string;
14515
14560
  parent: IPanel;
@@ -18828,6 +18873,7 @@ declare module "defaultCss/cssstandard" {
18828
18873
  matrixdropdown: {
18829
18874
  root: string;
18830
18875
  cell: string;
18876
+ cellResponsiveTitle: string;
18831
18877
  headerCell: string;
18832
18878
  row: string;
18833
18879
  rowAdditional: string;
@@ -18852,6 +18898,7 @@ declare module "defaultCss/cssstandard" {
18852
18898
  iconRemove: string;
18853
18899
  iconDrag: string;
18854
18900
  cell: string;
18901
+ cellResponsiveTitle: string;
18855
18902
  headerCell: string;
18856
18903
  row: string;
18857
18904
  detailRow: string;
@@ -19356,6 +19403,7 @@ declare module "defaultCss/cssmodern" {
19356
19403
  matrixdropdown: {
19357
19404
  root: string;
19358
19405
  cell: string;
19406
+ cellResponsiveTitle: string;
19359
19407
  headerCell: string;
19360
19408
  row: string;
19361
19409
  rowTextCell: string;
@@ -19374,6 +19422,7 @@ declare module "defaultCss/cssmodern" {
19374
19422
  matrixdynamic: {
19375
19423
  root: string;
19376
19424
  cell: string;
19425
+ cellResponsiveTitle: string;
19377
19426
  headerCell: string;
19378
19427
  button: string;
19379
19428
  buttonAdd: string;
@@ -21171,6 +21220,7 @@ declare module "localization/arabic" {
21171
21220
  emptyMessage: string;
21172
21221
  noEntriesText: string;
21173
21222
  noEntriesReadonlyText: string;
21223
+ tabTitlePlaceholder: string;
21174
21224
  more: string;
21175
21225
  tagboxDoneButtonCaption: string;
21176
21226
  selectToRankEmptyRankedAreaText: string;
@@ -21279,6 +21329,7 @@ declare module "localization/basque" {
21279
21329
  emptyMessage: string;
21280
21330
  noEntriesText: string;
21281
21331
  noEntriesReadonlyText: string;
21332
+ tabTitlePlaceholder: string;
21282
21333
  more: string;
21283
21334
  tagboxDoneButtonCaption: string;
21284
21335
  selectToRankEmptyRankedAreaText: string;
@@ -21387,6 +21438,7 @@ declare module "localization/bulgarian" {
21387
21438
  emptyMessage: string;
21388
21439
  noEntriesText: string;
21389
21440
  noEntriesReadonlyText: string;
21441
+ tabTitlePlaceholder: string;
21390
21442
  more: string;
21391
21443
  tagboxDoneButtonCaption: string;
21392
21444
  selectToRankEmptyRankedAreaText: string;
@@ -21495,6 +21547,7 @@ declare module "localization/catalan" {
21495
21547
  emptyMessage: string;
21496
21548
  noEntriesText: string;
21497
21549
  noEntriesReadonlyText: string;
21550
+ tabTitlePlaceholder: string;
21498
21551
  more: string;
21499
21552
  tagboxDoneButtonCaption: string;
21500
21553
  selectToRankEmptyRankedAreaText: string;
@@ -21603,6 +21656,7 @@ declare module "localization/croatian" {
21603
21656
  emptyMessage: string;
21604
21657
  noEntriesText: string;
21605
21658
  noEntriesReadonlyText: string;
21659
+ tabTitlePlaceholder: string;
21606
21660
  more: string;
21607
21661
  tagboxDoneButtonCaption: string;
21608
21662
  selectToRankEmptyRankedAreaText: string;
@@ -21711,6 +21765,7 @@ declare module "localization/czech" {
21711
21765
  emptyMessage: string;
21712
21766
  noEntriesText: string;
21713
21767
  noEntriesReadonlyText: string;
21768
+ tabTitlePlaceholder: string;
21714
21769
  more: string;
21715
21770
  tagboxDoneButtonCaption: string;
21716
21771
  selectToRankEmptyRankedAreaText: string;
@@ -21819,6 +21874,7 @@ declare module "localization/danish" {
21819
21874
  emptyMessage: string;
21820
21875
  noEntriesText: string;
21821
21876
  noEntriesReadonlyText: string;
21877
+ tabTitlePlaceholder: string;
21822
21878
  more: string;
21823
21879
  tagboxDoneButtonCaption: string;
21824
21880
  selectToRankEmptyRankedAreaText: string;
@@ -21927,6 +21983,7 @@ declare module "localization/dutch" {
21927
21983
  emptyMessage: string;
21928
21984
  noEntriesText: string;
21929
21985
  noEntriesReadonlyText: string;
21986
+ tabTitlePlaceholder: string;
21930
21987
  more: string;
21931
21988
  tagboxDoneButtonCaption: string;
21932
21989
  selectToRankEmptyRankedAreaText: string;
@@ -22036,6 +22093,7 @@ declare module "localization/estonian" {
22036
22093
  emptyMessage: string;
22037
22094
  noEntriesText: string;
22038
22095
  noEntriesReadonlyText: string;
22096
+ tabTitlePlaceholder: string;
22039
22097
  more: string;
22040
22098
  tagboxDoneButtonCaption: string;
22041
22099
  selectToRankEmptyRankedAreaText: string;
@@ -22144,6 +22202,7 @@ declare module "localization/finnish" {
22144
22202
  emptyMessage: string;
22145
22203
  noEntriesText: string;
22146
22204
  noEntriesReadonlyText: string;
22205
+ tabTitlePlaceholder: string;
22147
22206
  more: string;
22148
22207
  tagboxDoneButtonCaption: string;
22149
22208
  selectToRankEmptyRankedAreaText: string;
@@ -22252,6 +22311,7 @@ declare module "localization/french" {
22252
22311
  emptyMessage: string;
22253
22312
  noEntriesText: string;
22254
22313
  noEntriesReadonlyText: string;
22314
+ tabTitlePlaceholder: string;
22255
22315
  more: string;
22256
22316
  tagboxDoneButtonCaption: string;
22257
22317
  selectToRankEmptyRankedAreaText: string;
@@ -22360,6 +22420,7 @@ declare module "localization/georgian" {
22360
22420
  emptyMessage: string;
22361
22421
  noEntriesText: string;
22362
22422
  noEntriesReadonlyText: string;
22423
+ tabTitlePlaceholder: string;
22363
22424
  more: string;
22364
22425
  tagboxDoneButtonCaption: string;
22365
22426
  selectToRankEmptyRankedAreaText: string;
@@ -22468,6 +22529,7 @@ declare module "localization/german" {
22468
22529
  emptyMessage: string;
22469
22530
  noEntriesText: string;
22470
22531
  noEntriesReadonlyText: string;
22532
+ tabTitlePlaceholder: string;
22471
22533
  more: string;
22472
22534
  tagboxDoneButtonCaption: string;
22473
22535
  selectToRankEmptyRankedAreaText: string;
@@ -22576,6 +22638,7 @@ declare module "localization/greek" {
22576
22638
  emptyMessage: string;
22577
22639
  noEntriesText: string;
22578
22640
  noEntriesReadonlyText: string;
22641
+ tabTitlePlaceholder: string;
22579
22642
  more: string;
22580
22643
  tagboxDoneButtonCaption: string;
22581
22644
  selectToRankEmptyRankedAreaText: string;
@@ -22684,6 +22747,7 @@ declare module "localization/hebrew" {
22684
22747
  emptyMessage: string;
22685
22748
  noEntriesText: string;
22686
22749
  noEntriesReadonlyText: string;
22750
+ tabTitlePlaceholder: string;
22687
22751
  more: string;
22688
22752
  tagboxDoneButtonCaption: string;
22689
22753
  selectToRankEmptyRankedAreaText: string;
@@ -22792,6 +22856,7 @@ declare module "localization/hindi" {
22792
22856
  emptyMessage: string;
22793
22857
  noEntriesText: string;
22794
22858
  noEntriesReadonlyText: string;
22859
+ tabTitlePlaceholder: string;
22795
22860
  more: string;
22796
22861
  tagboxDoneButtonCaption: string;
22797
22862
  selectToRankEmptyRankedAreaText: string;
@@ -22900,6 +22965,7 @@ declare module "localization/hungarian" {
22900
22965
  emptyMessage: string;
22901
22966
  noEntriesText: string;
22902
22967
  noEntriesReadonlyText: string;
22968
+ tabTitlePlaceholder: string;
22903
22969
  more: string;
22904
22970
  tagboxDoneButtonCaption: string;
22905
22971
  selectToRankEmptyRankedAreaText: string;
@@ -23008,6 +23074,7 @@ declare module "localization/icelandic" {
23008
23074
  emptyMessage: string;
23009
23075
  noEntriesText: string;
23010
23076
  noEntriesReadonlyText: string;
23077
+ tabTitlePlaceholder: string;
23011
23078
  more: string;
23012
23079
  tagboxDoneButtonCaption: string;
23013
23080
  selectToRankEmptyRankedAreaText: string;
@@ -23116,6 +23183,7 @@ declare module "localization/indonesian" {
23116
23183
  emptyMessage: string;
23117
23184
  noEntriesText: string;
23118
23185
  noEntriesReadonlyText: string;
23186
+ tabTitlePlaceholder: string;
23119
23187
  more: string;
23120
23188
  tagboxDoneButtonCaption: string;
23121
23189
  selectToRankEmptyRankedAreaText: string;
@@ -23224,6 +23292,7 @@ declare module "localization/italian" {
23224
23292
  emptyMessage: string;
23225
23293
  noEntriesText: string;
23226
23294
  noEntriesReadonlyText: string;
23295
+ tabTitlePlaceholder: string;
23227
23296
  more: string;
23228
23297
  tagboxDoneButtonCaption: string;
23229
23298
  selectToRankEmptyRankedAreaText: string;
@@ -23332,6 +23401,7 @@ declare module "localization/japanese" {
23332
23401
  emptyMessage: string;
23333
23402
  noEntriesText: string;
23334
23403
  noEntriesReadonlyText: string;
23404
+ tabTitlePlaceholder: string;
23335
23405
  more: string;
23336
23406
  tagboxDoneButtonCaption: string;
23337
23407
  selectToRankEmptyRankedAreaText: string;
@@ -23440,6 +23510,7 @@ declare module "localization/kazakh" {
23440
23510
  emptyMessage: string;
23441
23511
  noEntriesText: string;
23442
23512
  noEntriesReadonlyText: string;
23513
+ tabTitlePlaceholder: string;
23443
23514
  more: string;
23444
23515
  tagboxDoneButtonCaption: string;
23445
23516
  selectToRankEmptyRankedAreaText: string;
@@ -23548,6 +23619,7 @@ declare module "localization/korean" {
23548
23619
  emptyMessage: string;
23549
23620
  noEntriesText: string;
23550
23621
  noEntriesReadonlyText: string;
23622
+ tabTitlePlaceholder: string;
23551
23623
  more: string;
23552
23624
  tagboxDoneButtonCaption: string;
23553
23625
  selectToRankEmptyRankedAreaText: string;
@@ -23656,6 +23728,7 @@ declare module "localization/latvian" {
23656
23728
  emptyMessage: string;
23657
23729
  noEntriesText: string;
23658
23730
  noEntriesReadonlyText: string;
23731
+ tabTitlePlaceholder: string;
23659
23732
  more: string;
23660
23733
  tagboxDoneButtonCaption: string;
23661
23734
  selectToRankEmptyRankedAreaText: string;
@@ -23764,6 +23837,7 @@ declare module "localization/lithuanian" {
23764
23837
  emptyMessage: string;
23765
23838
  noEntriesText: string;
23766
23839
  noEntriesReadonlyText: string;
23840
+ tabTitlePlaceholder: string;
23767
23841
  more: string;
23768
23842
  tagboxDoneButtonCaption: string;
23769
23843
  selectToRankEmptyRankedAreaText: string;
@@ -23872,6 +23946,7 @@ declare module "localization/macedonian" {
23872
23946
  emptyMessage: string;
23873
23947
  noEntriesText: string;
23874
23948
  noEntriesReadonlyText: string;
23949
+ tabTitlePlaceholder: string;
23875
23950
  more: string;
23876
23951
  tagboxDoneButtonCaption: string;
23877
23952
  selectToRankEmptyRankedAreaText: string;
@@ -23980,6 +24055,7 @@ declare module "localization/malay" {
23980
24055
  emptyMessage: string;
23981
24056
  noEntriesText: string;
23982
24057
  noEntriesReadonlyText: string;
24058
+ tabTitlePlaceholder: string;
23983
24059
  more: string;
23984
24060
  tagboxDoneButtonCaption: string;
23985
24061
  selectToRankEmptyRankedAreaText: string;
@@ -24088,6 +24164,7 @@ declare module "localization/norwegian" {
24088
24164
  emptyMessage: string;
24089
24165
  noEntriesText: string;
24090
24166
  noEntriesReadonlyText: string;
24167
+ tabTitlePlaceholder: string;
24091
24168
  more: string;
24092
24169
  tagboxDoneButtonCaption: string;
24093
24170
  selectToRankEmptyRankedAreaText: string;
@@ -24196,6 +24273,7 @@ declare module "localization/persian" {
24196
24273
  emptyMessage: string;
24197
24274
  noEntriesText: string;
24198
24275
  noEntriesReadonlyText: string;
24276
+ tabTitlePlaceholder: string;
24199
24277
  more: string;
24200
24278
  tagboxDoneButtonCaption: string;
24201
24279
  selectToRankEmptyRankedAreaText: string;
@@ -24304,6 +24382,7 @@ declare module "localization/polish" {
24304
24382
  emptyMessage: string;
24305
24383
  noEntriesText: string;
24306
24384
  noEntriesReadonlyText: string;
24385
+ tabTitlePlaceholder: string;
24307
24386
  more: string;
24308
24387
  tagboxDoneButtonCaption: string;
24309
24388
  selectToRankEmptyRankedAreaText: string;
@@ -24412,6 +24491,7 @@ declare module "localization/portuguese" {
24412
24491
  emptyMessage: string;
24413
24492
  noEntriesText: string;
24414
24493
  noEntriesReadonlyText: string;
24494
+ tabTitlePlaceholder: string;
24415
24495
  more: string;
24416
24496
  tagboxDoneButtonCaption: string;
24417
24497
  selectToRankEmptyRankedAreaText: string;
@@ -24523,6 +24603,7 @@ declare module "localization/portuguese-br" {
24523
24603
  emptyMessage: string;
24524
24604
  noEntriesText: string;
24525
24605
  noEntriesReadonlyText: string;
24606
+ tabTitlePlaceholder: string;
24526
24607
  more: string;
24527
24608
  tagboxDoneButtonCaption: string;
24528
24609
  selectToRankEmptyRankedAreaText: string;
@@ -24634,6 +24715,7 @@ declare module "localization/russian" {
24634
24715
  emptyMessage: string;
24635
24716
  noEntriesText: string;
24636
24717
  noEntriesReadonlyText: string;
24718
+ tabTitlePlaceholder: string;
24637
24719
  more: string;
24638
24720
  tagboxDoneButtonCaption: string;
24639
24721
  selectToRankEmptyRankedAreaText: string;
@@ -24742,6 +24824,7 @@ declare module "localization/serbian" {
24742
24824
  emptyMessage: string;
24743
24825
  noEntriesText: string;
24744
24826
  noEntriesReadonlyText: string;
24827
+ tabTitlePlaceholder: string;
24745
24828
  more: string;
24746
24829
  tagboxDoneButtonCaption: string;
24747
24830
  selectToRankEmptyRankedAreaText: string;
@@ -24850,6 +24933,7 @@ declare module "localization/simplified-chinese" {
24850
24933
  emptyMessage: string;
24851
24934
  noEntriesText: string;
24852
24935
  noEntriesReadonlyText: string;
24936
+ tabTitlePlaceholder: string;
24853
24937
  more: string;
24854
24938
  tagboxDoneButtonCaption: string;
24855
24939
  selectToRankEmptyRankedAreaText: string;
@@ -24958,6 +25042,7 @@ declare module "localization/slovak" {
24958
25042
  emptyMessage: string;
24959
25043
  noEntriesText: string;
24960
25044
  noEntriesReadonlyText: string;
25045
+ tabTitlePlaceholder: string;
24961
25046
  more: string;
24962
25047
  tagboxDoneButtonCaption: string;
24963
25048
  selectToRankEmptyRankedAreaText: string;
@@ -25066,6 +25151,7 @@ declare module "localization/spanish" {
25066
25151
  emptyMessage: string;
25067
25152
  noEntriesText: string;
25068
25153
  noEntriesReadonlyText: string;
25154
+ tabTitlePlaceholder: string;
25069
25155
  more: string;
25070
25156
  tagboxDoneButtonCaption: string;
25071
25157
  selectToRankEmptyRankedAreaText: string;
@@ -25174,6 +25260,7 @@ declare module "localization/swahili" {
25174
25260
  emptyMessage: string;
25175
25261
  noEntriesText: string;
25176
25262
  noEntriesReadonlyText: string;
25263
+ tabTitlePlaceholder: string;
25177
25264
  more: string;
25178
25265
  tagboxDoneButtonCaption: string;
25179
25266
  selectToRankEmptyRankedAreaText: string;
@@ -25282,6 +25369,7 @@ declare module "localization/swedish" {
25282
25369
  emptyMessage: string;
25283
25370
  noEntriesText: string;
25284
25371
  noEntriesReadonlyText: string;
25372
+ tabTitlePlaceholder: string;
25285
25373
  more: string;
25286
25374
  tagboxDoneButtonCaption: string;
25287
25375
  selectToRankEmptyRankedAreaText: string;
@@ -25454,6 +25542,7 @@ declare module "localization/thai" {
25454
25542
  emptyMessage: string;
25455
25543
  noEntriesText: string;
25456
25544
  noEntriesReadonlyText: string;
25545
+ tabTitlePlaceholder: string;
25457
25546
  more: string;
25458
25547
  tagboxDoneButtonCaption: string;
25459
25548
  selectToRankEmptyRankedAreaText: string;
@@ -25562,6 +25651,7 @@ declare module "localization/traditional-chinese" {
25562
25651
  emptyMessage: string;
25563
25652
  noEntriesText: string;
25564
25653
  noEntriesReadonlyText: string;
25654
+ tabTitlePlaceholder: string;
25565
25655
  more: string;
25566
25656
  tagboxDoneButtonCaption: string;
25567
25657
  selectToRankEmptyRankedAreaText: string;
@@ -25670,6 +25760,7 @@ declare module "localization/turkish" {
25670
25760
  emptyMessage: string;
25671
25761
  noEntriesText: string;
25672
25762
  noEntriesReadonlyText: string;
25763
+ tabTitlePlaceholder: string;
25673
25764
  more: string;
25674
25765
  tagboxDoneButtonCaption: string;
25675
25766
  selectToRankEmptyRankedAreaText: string;
@@ -25778,6 +25869,7 @@ declare module "localization/ukrainian" {
25778
25869
  emptyMessage: string;
25779
25870
  noEntriesText: string;
25780
25871
  noEntriesReadonlyText: string;
25872
+ tabTitlePlaceholder: string;
25781
25873
  more: string;
25782
25874
  tagboxDoneButtonCaption: string;
25783
25875
  selectToRankEmptyRankedAreaText: string;
@@ -25886,6 +25978,7 @@ declare module "localization/vietnamese" {
25886
25978
  emptyMessage: string;
25887
25979
  noEntriesText: string;
25888
25980
  noEntriesReadonlyText: string;
25981
+ tabTitlePlaceholder: string;
25889
25982
  more: string;
25890
25983
  tagboxDoneButtonCaption: string;
25891
25984
  selectToRankEmptyRankedAreaText: string;
@@ -25994,6 +26087,7 @@ declare module "localization/welsh" {
25994
26087
  emptyMessage: string;
25995
26088
  noEntriesText: string;
25996
26089
  noEntriesReadonlyText: string;
26090
+ tabTitlePlaceholder: string;
25997
26091
  more: string;
25998
26092
  tagboxDoneButtonCaption: string;
25999
26093
  selectToRankEmptyRankedAreaText: string;
@@ -26102,6 +26196,7 @@ declare module "localization/telugu" {
26102
26196
  emptyMessage: string;
26103
26197
  noEntriesText: string;
26104
26198
  noEntriesReadonlyText: string;
26199
+ tabTitlePlaceholder: string;
26105
26200
  more: string;
26106
26201
  tagboxDoneButtonCaption: string;
26107
26202
  selectToRankEmptyRankedAreaText: string;
@@ -26210,6 +26305,7 @@ declare module "localization/philippines" {
26210
26305
  emptyMessage: string;
26211
26306
  noEntriesText: string;
26212
26307
  noEntriesReadonlyText: string;
26308
+ tabTitlePlaceholder: string;
26213
26309
  more: string;
26214
26310
  tagboxDoneButtonCaption: string;
26215
26311
  selectToRankEmptyRankedAreaText: string;
@@ -26569,6 +26665,7 @@ declare module "react/reactquestion" {
26569
26665
  protected cellRef: React.RefObject<HTMLTableCellElement>;
26570
26666
  constructor(props: any);
26571
26667
  componentWillUnmount(): void;
26668
+ protected renderCellContent(): JSX.Element;
26572
26669
  protected renderElement(): JSX.Element;
26573
26670
  protected getCellStyle(): any;
26574
26671
  protected getHeaderText(): string;
@@ -27369,6 +27466,7 @@ declare module "react/reactquestion_matrixdropdownbase" {
27369
27466
  protected getShowErrors(): boolean;
27370
27467
  protected getCellStyle(): any;
27371
27468
  protected getHeaderText(): string;
27469
+ protected renderCellContent(): JSX.Element;
27372
27470
  protected renderQuestion(): JSX.Element;
27373
27471
  private renderOtherComment;
27374
27472
  private renderCellCheckboxButton;