survey-react 1.11.2 → 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/defaultV2.css +12 -13
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +11 -23
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +11 -23
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +82 -2
- package/survey.react.js +244 -76
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
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;
|
@@ -3449,6 +3454,13 @@ declare module "panel" {
|
|
3449
3454
|
get questionTitleLocation(): string;
|
3450
3455
|
set questionTitleLocation(value: string);
|
3451
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;
|
3452
3464
|
protected getStartIndex(): string;
|
3453
3465
|
getQuestionStartIndex(): string;
|
3454
3466
|
getChildrenLayoutType(): string;
|
@@ -5564,6 +5576,9 @@ declare module "question_matrixdropdownrendered" {
|
|
5564
5576
|
set className(val: string);
|
5565
5577
|
get className(): string;
|
5566
5578
|
get cellQuestionWrapperClassName(): string;
|
5579
|
+
get showResponsiveTitle(): boolean;
|
5580
|
+
get responsiveTitleCss(): string;
|
5581
|
+
get responsiveLocTitle(): LocalizableString;
|
5567
5582
|
get headers(): string;
|
5568
5583
|
getTitle(): string;
|
5569
5584
|
calculateFinalClassName(matrixCssClasses: any): string;
|
@@ -6315,11 +6330,20 @@ declare module "question_paneldynamic" {
|
|
6315
6330
|
*
|
6316
6331
|
* [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/ (linkStyle))
|
6317
6332
|
* @see templateTitle
|
6333
|
+
* @see tabTitlePlaceholder
|
6318
6334
|
* @see renderMode
|
6319
6335
|
*/
|
6320
6336
|
get templateTabTitle(): string;
|
6321
6337
|
set templateTabTitle(newValue: string);
|
6322
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;
|
6323
6347
|
/**
|
6324
6348
|
* A template for panel descriptions.
|
6325
6349
|
* @see template
|
@@ -9042,6 +9066,7 @@ declare module "question_multipletext" {
|
|
9042
9066
|
addElement(element: IElement, index: number): void;
|
9043
9067
|
removeElement(element: IElement): boolean;
|
9044
9068
|
getQuestionTitleLocation(): string;
|
9069
|
+
getQuestionTitleWidth(): string;
|
9045
9070
|
getQuestionStartIndex(): string;
|
9046
9071
|
getChildrenLayoutType(): string;
|
9047
9072
|
elementWidthChanged(el: IElement): void;
|
@@ -10401,9 +10426,9 @@ declare module "survey" {
|
|
10401
10426
|
locStrsChanged(): void;
|
10402
10427
|
getMarkdownHtml(text: string, name: string): string;
|
10403
10428
|
getRenderer(name: string): string;
|
10404
|
-
getRendererContext(locStr: LocalizableString):
|
10429
|
+
getRendererContext(locStr: LocalizableString): any;
|
10405
10430
|
getRendererForString(element: Question | PanelModel | PageModel | SurveyModel, name: string): string;
|
10406
|
-
getRendererContextForString(element: Base, locStr: LocalizableString):
|
10431
|
+
getRendererContextForString(element: Base, locStr: LocalizableString): any;
|
10407
10432
|
getExpressionDisplayValue(question: Question, value: any, displayValue: string): string;
|
10408
10433
|
private getBuiltInRendererForString;
|
10409
10434
|
getProcessedText(text: string): string;
|
@@ -12904,6 +12929,7 @@ declare module "question" {
|
|
12904
12929
|
protected notifySurveyOnChildrenVisibilityChanged(): boolean;
|
12905
12930
|
private notifySurveyVisibilityChanged;
|
12906
12931
|
protected clearValueOnHidding(isClearOnHidden: boolean): void;
|
12932
|
+
get titleWidth(): string;
|
12907
12933
|
/**
|
12908
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).
|
12909
12935
|
* @see titleLocation
|
@@ -14528,6 +14554,7 @@ declare module "base-interfaces" {
|
|
14528
14554
|
export interface IPanel extends ISurveyElement, IParentElement {
|
14529
14555
|
getChildrenLayoutType(): string;
|
14530
14556
|
getQuestionTitleLocation(): string;
|
14557
|
+
getQuestionTitleWidth(): string;
|
14531
14558
|
getQuestionStartIndex(): string;
|
14532
14559
|
getQuestionErrorLocation(): string;
|
14533
14560
|
parent: IPanel;
|
@@ -18846,6 +18873,7 @@ declare module "defaultCss/cssstandard" {
|
|
18846
18873
|
matrixdropdown: {
|
18847
18874
|
root: string;
|
18848
18875
|
cell: string;
|
18876
|
+
cellResponsiveTitle: string;
|
18849
18877
|
headerCell: string;
|
18850
18878
|
row: string;
|
18851
18879
|
rowAdditional: string;
|
@@ -18870,6 +18898,7 @@ declare module "defaultCss/cssstandard" {
|
|
18870
18898
|
iconRemove: string;
|
18871
18899
|
iconDrag: string;
|
18872
18900
|
cell: string;
|
18901
|
+
cellResponsiveTitle: string;
|
18873
18902
|
headerCell: string;
|
18874
18903
|
row: string;
|
18875
18904
|
detailRow: string;
|
@@ -19374,6 +19403,7 @@ declare module "defaultCss/cssmodern" {
|
|
19374
19403
|
matrixdropdown: {
|
19375
19404
|
root: string;
|
19376
19405
|
cell: string;
|
19406
|
+
cellResponsiveTitle: string;
|
19377
19407
|
headerCell: string;
|
19378
19408
|
row: string;
|
19379
19409
|
rowTextCell: string;
|
@@ -19392,6 +19422,7 @@ declare module "defaultCss/cssmodern" {
|
|
19392
19422
|
matrixdynamic: {
|
19393
19423
|
root: string;
|
19394
19424
|
cell: string;
|
19425
|
+
cellResponsiveTitle: string;
|
19395
19426
|
headerCell: string;
|
19396
19427
|
button: string;
|
19397
19428
|
buttonAdd: string;
|
@@ -21189,6 +21220,7 @@ declare module "localization/arabic" {
|
|
21189
21220
|
emptyMessage: string;
|
21190
21221
|
noEntriesText: string;
|
21191
21222
|
noEntriesReadonlyText: string;
|
21223
|
+
tabTitlePlaceholder: string;
|
21192
21224
|
more: string;
|
21193
21225
|
tagboxDoneButtonCaption: string;
|
21194
21226
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21297,6 +21329,7 @@ declare module "localization/basque" {
|
|
21297
21329
|
emptyMessage: string;
|
21298
21330
|
noEntriesText: string;
|
21299
21331
|
noEntriesReadonlyText: string;
|
21332
|
+
tabTitlePlaceholder: string;
|
21300
21333
|
more: string;
|
21301
21334
|
tagboxDoneButtonCaption: string;
|
21302
21335
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21405,6 +21438,7 @@ declare module "localization/bulgarian" {
|
|
21405
21438
|
emptyMessage: string;
|
21406
21439
|
noEntriesText: string;
|
21407
21440
|
noEntriesReadonlyText: string;
|
21441
|
+
tabTitlePlaceholder: string;
|
21408
21442
|
more: string;
|
21409
21443
|
tagboxDoneButtonCaption: string;
|
21410
21444
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21513,6 +21547,7 @@ declare module "localization/catalan" {
|
|
21513
21547
|
emptyMessage: string;
|
21514
21548
|
noEntriesText: string;
|
21515
21549
|
noEntriesReadonlyText: string;
|
21550
|
+
tabTitlePlaceholder: string;
|
21516
21551
|
more: string;
|
21517
21552
|
tagboxDoneButtonCaption: string;
|
21518
21553
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21621,6 +21656,7 @@ declare module "localization/croatian" {
|
|
21621
21656
|
emptyMessage: string;
|
21622
21657
|
noEntriesText: string;
|
21623
21658
|
noEntriesReadonlyText: string;
|
21659
|
+
tabTitlePlaceholder: string;
|
21624
21660
|
more: string;
|
21625
21661
|
tagboxDoneButtonCaption: string;
|
21626
21662
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21729,6 +21765,7 @@ declare module "localization/czech" {
|
|
21729
21765
|
emptyMessage: string;
|
21730
21766
|
noEntriesText: string;
|
21731
21767
|
noEntriesReadonlyText: string;
|
21768
|
+
tabTitlePlaceholder: string;
|
21732
21769
|
more: string;
|
21733
21770
|
tagboxDoneButtonCaption: string;
|
21734
21771
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21837,6 +21874,7 @@ declare module "localization/danish" {
|
|
21837
21874
|
emptyMessage: string;
|
21838
21875
|
noEntriesText: string;
|
21839
21876
|
noEntriesReadonlyText: string;
|
21877
|
+
tabTitlePlaceholder: string;
|
21840
21878
|
more: string;
|
21841
21879
|
tagboxDoneButtonCaption: string;
|
21842
21880
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21945,6 +21983,7 @@ declare module "localization/dutch" {
|
|
21945
21983
|
emptyMessage: string;
|
21946
21984
|
noEntriesText: string;
|
21947
21985
|
noEntriesReadonlyText: string;
|
21986
|
+
tabTitlePlaceholder: string;
|
21948
21987
|
more: string;
|
21949
21988
|
tagboxDoneButtonCaption: string;
|
21950
21989
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22054,6 +22093,7 @@ declare module "localization/estonian" {
|
|
22054
22093
|
emptyMessage: string;
|
22055
22094
|
noEntriesText: string;
|
22056
22095
|
noEntriesReadonlyText: string;
|
22096
|
+
tabTitlePlaceholder: string;
|
22057
22097
|
more: string;
|
22058
22098
|
tagboxDoneButtonCaption: string;
|
22059
22099
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22162,6 +22202,7 @@ declare module "localization/finnish" {
|
|
22162
22202
|
emptyMessage: string;
|
22163
22203
|
noEntriesText: string;
|
22164
22204
|
noEntriesReadonlyText: string;
|
22205
|
+
tabTitlePlaceholder: string;
|
22165
22206
|
more: string;
|
22166
22207
|
tagboxDoneButtonCaption: string;
|
22167
22208
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22270,6 +22311,7 @@ declare module "localization/french" {
|
|
22270
22311
|
emptyMessage: string;
|
22271
22312
|
noEntriesText: string;
|
22272
22313
|
noEntriesReadonlyText: string;
|
22314
|
+
tabTitlePlaceholder: string;
|
22273
22315
|
more: string;
|
22274
22316
|
tagboxDoneButtonCaption: string;
|
22275
22317
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22378,6 +22420,7 @@ declare module "localization/georgian" {
|
|
22378
22420
|
emptyMessage: string;
|
22379
22421
|
noEntriesText: string;
|
22380
22422
|
noEntriesReadonlyText: string;
|
22423
|
+
tabTitlePlaceholder: string;
|
22381
22424
|
more: string;
|
22382
22425
|
tagboxDoneButtonCaption: string;
|
22383
22426
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22486,6 +22529,7 @@ declare module "localization/german" {
|
|
22486
22529
|
emptyMessage: string;
|
22487
22530
|
noEntriesText: string;
|
22488
22531
|
noEntriesReadonlyText: string;
|
22532
|
+
tabTitlePlaceholder: string;
|
22489
22533
|
more: string;
|
22490
22534
|
tagboxDoneButtonCaption: string;
|
22491
22535
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22594,6 +22638,7 @@ declare module "localization/greek" {
|
|
22594
22638
|
emptyMessage: string;
|
22595
22639
|
noEntriesText: string;
|
22596
22640
|
noEntriesReadonlyText: string;
|
22641
|
+
tabTitlePlaceholder: string;
|
22597
22642
|
more: string;
|
22598
22643
|
tagboxDoneButtonCaption: string;
|
22599
22644
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22702,6 +22747,7 @@ declare module "localization/hebrew" {
|
|
22702
22747
|
emptyMessage: string;
|
22703
22748
|
noEntriesText: string;
|
22704
22749
|
noEntriesReadonlyText: string;
|
22750
|
+
tabTitlePlaceholder: string;
|
22705
22751
|
more: string;
|
22706
22752
|
tagboxDoneButtonCaption: string;
|
22707
22753
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22810,6 +22856,7 @@ declare module "localization/hindi" {
|
|
22810
22856
|
emptyMessage: string;
|
22811
22857
|
noEntriesText: string;
|
22812
22858
|
noEntriesReadonlyText: string;
|
22859
|
+
tabTitlePlaceholder: string;
|
22813
22860
|
more: string;
|
22814
22861
|
tagboxDoneButtonCaption: string;
|
22815
22862
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22918,6 +22965,7 @@ declare module "localization/hungarian" {
|
|
22918
22965
|
emptyMessage: string;
|
22919
22966
|
noEntriesText: string;
|
22920
22967
|
noEntriesReadonlyText: string;
|
22968
|
+
tabTitlePlaceholder: string;
|
22921
22969
|
more: string;
|
22922
22970
|
tagboxDoneButtonCaption: string;
|
22923
22971
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23026,6 +23074,7 @@ declare module "localization/icelandic" {
|
|
23026
23074
|
emptyMessage: string;
|
23027
23075
|
noEntriesText: string;
|
23028
23076
|
noEntriesReadonlyText: string;
|
23077
|
+
tabTitlePlaceholder: string;
|
23029
23078
|
more: string;
|
23030
23079
|
tagboxDoneButtonCaption: string;
|
23031
23080
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23134,6 +23183,7 @@ declare module "localization/indonesian" {
|
|
23134
23183
|
emptyMessage: string;
|
23135
23184
|
noEntriesText: string;
|
23136
23185
|
noEntriesReadonlyText: string;
|
23186
|
+
tabTitlePlaceholder: string;
|
23137
23187
|
more: string;
|
23138
23188
|
tagboxDoneButtonCaption: string;
|
23139
23189
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23242,6 +23292,7 @@ declare module "localization/italian" {
|
|
23242
23292
|
emptyMessage: string;
|
23243
23293
|
noEntriesText: string;
|
23244
23294
|
noEntriesReadonlyText: string;
|
23295
|
+
tabTitlePlaceholder: string;
|
23245
23296
|
more: string;
|
23246
23297
|
tagboxDoneButtonCaption: string;
|
23247
23298
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23350,6 +23401,7 @@ declare module "localization/japanese" {
|
|
23350
23401
|
emptyMessage: string;
|
23351
23402
|
noEntriesText: string;
|
23352
23403
|
noEntriesReadonlyText: string;
|
23404
|
+
tabTitlePlaceholder: string;
|
23353
23405
|
more: string;
|
23354
23406
|
tagboxDoneButtonCaption: string;
|
23355
23407
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23458,6 +23510,7 @@ declare module "localization/kazakh" {
|
|
23458
23510
|
emptyMessage: string;
|
23459
23511
|
noEntriesText: string;
|
23460
23512
|
noEntriesReadonlyText: string;
|
23513
|
+
tabTitlePlaceholder: string;
|
23461
23514
|
more: string;
|
23462
23515
|
tagboxDoneButtonCaption: string;
|
23463
23516
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23566,6 +23619,7 @@ declare module "localization/korean" {
|
|
23566
23619
|
emptyMessage: string;
|
23567
23620
|
noEntriesText: string;
|
23568
23621
|
noEntriesReadonlyText: string;
|
23622
|
+
tabTitlePlaceholder: string;
|
23569
23623
|
more: string;
|
23570
23624
|
tagboxDoneButtonCaption: string;
|
23571
23625
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23674,6 +23728,7 @@ declare module "localization/latvian" {
|
|
23674
23728
|
emptyMessage: string;
|
23675
23729
|
noEntriesText: string;
|
23676
23730
|
noEntriesReadonlyText: string;
|
23731
|
+
tabTitlePlaceholder: string;
|
23677
23732
|
more: string;
|
23678
23733
|
tagboxDoneButtonCaption: string;
|
23679
23734
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23782,6 +23837,7 @@ declare module "localization/lithuanian" {
|
|
23782
23837
|
emptyMessage: string;
|
23783
23838
|
noEntriesText: string;
|
23784
23839
|
noEntriesReadonlyText: string;
|
23840
|
+
tabTitlePlaceholder: string;
|
23785
23841
|
more: string;
|
23786
23842
|
tagboxDoneButtonCaption: string;
|
23787
23843
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23890,6 +23946,7 @@ declare module "localization/macedonian" {
|
|
23890
23946
|
emptyMessage: string;
|
23891
23947
|
noEntriesText: string;
|
23892
23948
|
noEntriesReadonlyText: string;
|
23949
|
+
tabTitlePlaceholder: string;
|
23893
23950
|
more: string;
|
23894
23951
|
tagboxDoneButtonCaption: string;
|
23895
23952
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23998,6 +24055,7 @@ declare module "localization/malay" {
|
|
23998
24055
|
emptyMessage: string;
|
23999
24056
|
noEntriesText: string;
|
24000
24057
|
noEntriesReadonlyText: string;
|
24058
|
+
tabTitlePlaceholder: string;
|
24001
24059
|
more: string;
|
24002
24060
|
tagboxDoneButtonCaption: string;
|
24003
24061
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24106,6 +24164,7 @@ declare module "localization/norwegian" {
|
|
24106
24164
|
emptyMessage: string;
|
24107
24165
|
noEntriesText: string;
|
24108
24166
|
noEntriesReadonlyText: string;
|
24167
|
+
tabTitlePlaceholder: string;
|
24109
24168
|
more: string;
|
24110
24169
|
tagboxDoneButtonCaption: string;
|
24111
24170
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24214,6 +24273,7 @@ declare module "localization/persian" {
|
|
24214
24273
|
emptyMessage: string;
|
24215
24274
|
noEntriesText: string;
|
24216
24275
|
noEntriesReadonlyText: string;
|
24276
|
+
tabTitlePlaceholder: string;
|
24217
24277
|
more: string;
|
24218
24278
|
tagboxDoneButtonCaption: string;
|
24219
24279
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24322,6 +24382,7 @@ declare module "localization/polish" {
|
|
24322
24382
|
emptyMessage: string;
|
24323
24383
|
noEntriesText: string;
|
24324
24384
|
noEntriesReadonlyText: string;
|
24385
|
+
tabTitlePlaceholder: string;
|
24325
24386
|
more: string;
|
24326
24387
|
tagboxDoneButtonCaption: string;
|
24327
24388
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24430,6 +24491,7 @@ declare module "localization/portuguese" {
|
|
24430
24491
|
emptyMessage: string;
|
24431
24492
|
noEntriesText: string;
|
24432
24493
|
noEntriesReadonlyText: string;
|
24494
|
+
tabTitlePlaceholder: string;
|
24433
24495
|
more: string;
|
24434
24496
|
tagboxDoneButtonCaption: string;
|
24435
24497
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24541,6 +24603,7 @@ declare module "localization/portuguese-br" {
|
|
24541
24603
|
emptyMessage: string;
|
24542
24604
|
noEntriesText: string;
|
24543
24605
|
noEntriesReadonlyText: string;
|
24606
|
+
tabTitlePlaceholder: string;
|
24544
24607
|
more: string;
|
24545
24608
|
tagboxDoneButtonCaption: string;
|
24546
24609
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24652,6 +24715,7 @@ declare module "localization/russian" {
|
|
24652
24715
|
emptyMessage: string;
|
24653
24716
|
noEntriesText: string;
|
24654
24717
|
noEntriesReadonlyText: string;
|
24718
|
+
tabTitlePlaceholder: string;
|
24655
24719
|
more: string;
|
24656
24720
|
tagboxDoneButtonCaption: string;
|
24657
24721
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24760,6 +24824,7 @@ declare module "localization/serbian" {
|
|
24760
24824
|
emptyMessage: string;
|
24761
24825
|
noEntriesText: string;
|
24762
24826
|
noEntriesReadonlyText: string;
|
24827
|
+
tabTitlePlaceholder: string;
|
24763
24828
|
more: string;
|
24764
24829
|
tagboxDoneButtonCaption: string;
|
24765
24830
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24868,6 +24933,7 @@ declare module "localization/simplified-chinese" {
|
|
24868
24933
|
emptyMessage: string;
|
24869
24934
|
noEntriesText: string;
|
24870
24935
|
noEntriesReadonlyText: string;
|
24936
|
+
tabTitlePlaceholder: string;
|
24871
24937
|
more: string;
|
24872
24938
|
tagboxDoneButtonCaption: string;
|
24873
24939
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24976,6 +25042,7 @@ declare module "localization/slovak" {
|
|
24976
25042
|
emptyMessage: string;
|
24977
25043
|
noEntriesText: string;
|
24978
25044
|
noEntriesReadonlyText: string;
|
25045
|
+
tabTitlePlaceholder: string;
|
24979
25046
|
more: string;
|
24980
25047
|
tagboxDoneButtonCaption: string;
|
24981
25048
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25084,6 +25151,7 @@ declare module "localization/spanish" {
|
|
25084
25151
|
emptyMessage: string;
|
25085
25152
|
noEntriesText: string;
|
25086
25153
|
noEntriesReadonlyText: string;
|
25154
|
+
tabTitlePlaceholder: string;
|
25087
25155
|
more: string;
|
25088
25156
|
tagboxDoneButtonCaption: string;
|
25089
25157
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25192,6 +25260,7 @@ declare module "localization/swahili" {
|
|
25192
25260
|
emptyMessage: string;
|
25193
25261
|
noEntriesText: string;
|
25194
25262
|
noEntriesReadonlyText: string;
|
25263
|
+
tabTitlePlaceholder: string;
|
25195
25264
|
more: string;
|
25196
25265
|
tagboxDoneButtonCaption: string;
|
25197
25266
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25300,6 +25369,7 @@ declare module "localization/swedish" {
|
|
25300
25369
|
emptyMessage: string;
|
25301
25370
|
noEntriesText: string;
|
25302
25371
|
noEntriesReadonlyText: string;
|
25372
|
+
tabTitlePlaceholder: string;
|
25303
25373
|
more: string;
|
25304
25374
|
tagboxDoneButtonCaption: string;
|
25305
25375
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25472,6 +25542,7 @@ declare module "localization/thai" {
|
|
25472
25542
|
emptyMessage: string;
|
25473
25543
|
noEntriesText: string;
|
25474
25544
|
noEntriesReadonlyText: string;
|
25545
|
+
tabTitlePlaceholder: string;
|
25475
25546
|
more: string;
|
25476
25547
|
tagboxDoneButtonCaption: string;
|
25477
25548
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25580,6 +25651,7 @@ declare module "localization/traditional-chinese" {
|
|
25580
25651
|
emptyMessage: string;
|
25581
25652
|
noEntriesText: string;
|
25582
25653
|
noEntriesReadonlyText: string;
|
25654
|
+
tabTitlePlaceholder: string;
|
25583
25655
|
more: string;
|
25584
25656
|
tagboxDoneButtonCaption: string;
|
25585
25657
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25688,6 +25760,7 @@ declare module "localization/turkish" {
|
|
25688
25760
|
emptyMessage: string;
|
25689
25761
|
noEntriesText: string;
|
25690
25762
|
noEntriesReadonlyText: string;
|
25763
|
+
tabTitlePlaceholder: string;
|
25691
25764
|
more: string;
|
25692
25765
|
tagboxDoneButtonCaption: string;
|
25693
25766
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25796,6 +25869,7 @@ declare module "localization/ukrainian" {
|
|
25796
25869
|
emptyMessage: string;
|
25797
25870
|
noEntriesText: string;
|
25798
25871
|
noEntriesReadonlyText: string;
|
25872
|
+
tabTitlePlaceholder: string;
|
25799
25873
|
more: string;
|
25800
25874
|
tagboxDoneButtonCaption: string;
|
25801
25875
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25904,6 +25978,7 @@ declare module "localization/vietnamese" {
|
|
25904
25978
|
emptyMessage: string;
|
25905
25979
|
noEntriesText: string;
|
25906
25980
|
noEntriesReadonlyText: string;
|
25981
|
+
tabTitlePlaceholder: string;
|
25907
25982
|
more: string;
|
25908
25983
|
tagboxDoneButtonCaption: string;
|
25909
25984
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26012,6 +26087,7 @@ declare module "localization/welsh" {
|
|
26012
26087
|
emptyMessage: string;
|
26013
26088
|
noEntriesText: string;
|
26014
26089
|
noEntriesReadonlyText: string;
|
26090
|
+
tabTitlePlaceholder: string;
|
26015
26091
|
more: string;
|
26016
26092
|
tagboxDoneButtonCaption: string;
|
26017
26093
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26120,6 +26196,7 @@ declare module "localization/telugu" {
|
|
26120
26196
|
emptyMessage: string;
|
26121
26197
|
noEntriesText: string;
|
26122
26198
|
noEntriesReadonlyText: string;
|
26199
|
+
tabTitlePlaceholder: string;
|
26123
26200
|
more: string;
|
26124
26201
|
tagboxDoneButtonCaption: string;
|
26125
26202
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26228,6 +26305,7 @@ declare module "localization/philippines" {
|
|
26228
26305
|
emptyMessage: string;
|
26229
26306
|
noEntriesText: string;
|
26230
26307
|
noEntriesReadonlyText: string;
|
26308
|
+
tabTitlePlaceholder: string;
|
26231
26309
|
more: string;
|
26232
26310
|
tagboxDoneButtonCaption: string;
|
26233
26311
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26587,6 +26665,7 @@ declare module "react/reactquestion" {
|
|
26587
26665
|
protected cellRef: React.RefObject<HTMLTableCellElement>;
|
26588
26666
|
constructor(props: any);
|
26589
26667
|
componentWillUnmount(): void;
|
26668
|
+
protected renderCellContent(): JSX.Element;
|
26590
26669
|
protected renderElement(): JSX.Element;
|
26591
26670
|
protected getCellStyle(): any;
|
26592
26671
|
protected getHeaderText(): string;
|
@@ -27387,6 +27466,7 @@ declare module "react/reactquestion_matrixdropdownbase" {
|
|
27387
27466
|
protected getShowErrors(): boolean;
|
27388
27467
|
protected getCellStyle(): any;
|
27389
27468
|
protected getHeaderText(): string;
|
27469
|
+
protected renderCellContent(): JSX.Element;
|
27390
27470
|
protected renderQuestion(): JSX.Element;
|
27391
27471
|
private renderOtherComment;
|
27392
27472
|
private renderCellCheckboxButton;
|