survey-react 1.11.2 → 1.11.4
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 +66 -27
- 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 +104 -10
- package/survey.react.js +358 -156
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -13,6 +13,9 @@ declare module "global_variables_utils" {
|
|
13
13
|
static requestAnimationFrame(callback: FrameRequestCallback): number;
|
14
14
|
static addEventListener(type: string, listener: (e?: any) => void): void;
|
15
15
|
static removeEventListener(type: string, listener: (e?: any) => void): void;
|
16
|
+
static matchMedia(mediaQueryString: string): {
|
17
|
+
matches: boolean;
|
18
|
+
} | null;
|
16
19
|
}
|
17
20
|
export class DomDocumentHelper {
|
18
21
|
static isAvailable(): boolean;
|
@@ -169,6 +172,7 @@ declare module "localization/english" {
|
|
169
172
|
emptyMessage: string;
|
170
173
|
noEntriesText: string;
|
171
174
|
noEntriesReadonlyText: string;
|
175
|
+
tabTitlePlaceholder: string;
|
172
176
|
more: string;
|
173
177
|
tagboxDoneButtonCaption: string;
|
174
178
|
selectToRankEmptyRankedAreaText: string;
|
@@ -294,6 +298,7 @@ declare module "surveyStrings" {
|
|
294
298
|
emptyMessage: string;
|
295
299
|
noEntriesText: string;
|
296
300
|
noEntriesReadonlyText: string;
|
301
|
+
tabTitlePlaceholder: string;
|
297
302
|
more: string;
|
298
303
|
tagboxDoneButtonCaption: string;
|
299
304
|
selectToRankEmptyRankedAreaText: string;
|
@@ -1492,6 +1497,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
1492
1497
|
export var surveyCss: any;
|
1493
1498
|
export var defaultV2Css: {
|
1494
1499
|
root: string;
|
1500
|
+
rootProgress: string;
|
1495
1501
|
rootMobile: string;
|
1496
1502
|
rootAnimationDisabled: string;
|
1497
1503
|
rootReadOnly: string;
|
@@ -1982,6 +1988,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
1982
1988
|
tableWrapper: string;
|
1983
1989
|
rootAlternateRows: string;
|
1984
1990
|
cell: string;
|
1991
|
+
cellResponsiveTitle: string;
|
1985
1992
|
errorsCell: string;
|
1986
1993
|
errorsCellTop: string;
|
1987
1994
|
errorsCellBottom: string;
|
@@ -2026,6 +2033,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
2026
2033
|
rootAlternateRows: string;
|
2027
2034
|
content: string;
|
2028
2035
|
cell: string;
|
2036
|
+
cellResponsiveTitle: string;
|
2029
2037
|
row: string;
|
2030
2038
|
rowFadeIn: string;
|
2031
2039
|
rowFadeOut: string;
|
@@ -3004,6 +3012,7 @@ declare module "question_custom" {
|
|
3004
3012
|
addElement(element: IElement, index: number): void;
|
3005
3013
|
removeElement(element: IElement): boolean;
|
3006
3014
|
getQuestionTitleLocation(): string;
|
3015
|
+
getQuestionTitleWidth(): string;
|
3007
3016
|
getQuestionStartIndex(): string;
|
3008
3017
|
getChildrenLayoutType(): string;
|
3009
3018
|
elementWidthChanged(el: IElement): void;
|
@@ -3238,6 +3247,7 @@ declare module "panel" {
|
|
3238
3247
|
showTitle: boolean;
|
3239
3248
|
get hasTitle(): boolean;
|
3240
3249
|
delete(doDispose?: boolean): void;
|
3250
|
+
private deletePanel;
|
3241
3251
|
protected removeFromParent(): void;
|
3242
3252
|
protected canShowTitle(): boolean;
|
3243
3253
|
showDescription: boolean;
|
@@ -3449,6 +3459,13 @@ declare module "panel" {
|
|
3449
3459
|
get questionTitleLocation(): string;
|
3450
3460
|
set questionTitleLocation(value: string);
|
3451
3461
|
getQuestionTitleLocation(): string;
|
3462
|
+
/**
|
3463
|
+
* Sets consistent width for question titles in CSS values. Applies only when [`questionTitleLocation`](#questionTitleLocation) evaluates to `"left"`.
|
3464
|
+
*
|
3465
|
+
* Default value: `undefined`
|
3466
|
+
*/
|
3467
|
+
questionTitleWidth: string;
|
3468
|
+
getQuestionTitleWidth(): string;
|
3452
3469
|
protected getStartIndex(): string;
|
3453
3470
|
getQuestionStartIndex(): string;
|
3454
3471
|
getChildrenLayoutType(): string;
|
@@ -3470,6 +3487,7 @@ declare module "panel" {
|
|
3470
3487
|
private updateRowsOnElementAdded;
|
3471
3488
|
protected onAddElement(element: IElement, index: number): void;
|
3472
3489
|
protected onRemoveElement(element: IElement): void;
|
3490
|
+
private onRemoveElementNotifySurvey;
|
3473
3491
|
private onElementVisibilityChanged;
|
3474
3492
|
private onElementStartWithNewLineChanged;
|
3475
3493
|
private updateRowsVisibility;
|
@@ -5387,6 +5405,10 @@ declare module "utils/devices" {
|
|
5387
5405
|
};
|
5388
5406
|
export let IsTouch: boolean;
|
5389
5407
|
export function _setIsTouch(val: boolean): void;
|
5408
|
+
export type MatchMediaMethod = ((query: string) => {
|
5409
|
+
matches: boolean;
|
5410
|
+
} | null) | null;
|
5411
|
+
export function detectMouseSupport(matchMedia: MatchMediaMethod): boolean;
|
5390
5412
|
}
|
5391
5413
|
declare module "dragdrop/dom-adapter" {
|
5392
5414
|
import { IDragDropEngine } from "dragdrop/engine";
|
@@ -5564,6 +5586,9 @@ declare module "question_matrixdropdownrendered" {
|
|
5564
5586
|
set className(val: string);
|
5565
5587
|
get className(): string;
|
5566
5588
|
get cellQuestionWrapperClassName(): string;
|
5589
|
+
get showResponsiveTitle(): boolean;
|
5590
|
+
get responsiveTitleCss(): string;
|
5591
|
+
get responsiveLocTitle(): LocalizableString;
|
5567
5592
|
get headers(): string;
|
5568
5593
|
getTitle(): string;
|
5569
5594
|
calculateFinalClassName(matrixCssClasses: any): string;
|
@@ -6315,11 +6340,20 @@ declare module "question_paneldynamic" {
|
|
6315
6340
|
*
|
6316
6341
|
* [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/ (linkStyle))
|
6317
6342
|
* @see templateTitle
|
6343
|
+
* @see tabTitlePlaceholder
|
6318
6344
|
* @see renderMode
|
6319
6345
|
*/
|
6320
6346
|
get templateTabTitle(): string;
|
6321
6347
|
set templateTabTitle(newValue: string);
|
6322
6348
|
get locTemplateTabTitle(): LocalizableString;
|
6349
|
+
/**
|
6350
|
+
* 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.
|
6351
|
+
*
|
6352
|
+
* Default value: `"New Panel"` (taken from a [localization dictionary](https://github.com/surveyjs/survey-library/tree/master/src/localization))
|
6353
|
+
*/
|
6354
|
+
get tabTitlePlaceholder(): string;
|
6355
|
+
set tabTitlePlaceholder(newValue: string);
|
6356
|
+
get locTabTitlePlaceholder(): LocalizableString;
|
6323
6357
|
/**
|
6324
6358
|
* A template for panel descriptions.
|
6325
6359
|
* @see template
|
@@ -8504,6 +8538,7 @@ declare module "mask/mask_utils" {
|
|
8504
8538
|
}
|
8505
8539
|
declare module "mask/mask_base" {
|
8506
8540
|
import { Base } from "base";
|
8541
|
+
import { ISurvey } from "base-interfaces";
|
8507
8542
|
import { IInputMask, IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
|
8508
8543
|
/**
|
8509
8544
|
* A base class for classes that implement input masks:
|
@@ -8520,6 +8555,8 @@ declare module "mask/mask_base" {
|
|
8520
8555
|
* Default value: `false`
|
8521
8556
|
*/
|
8522
8557
|
saveMaskedValue: boolean;
|
8558
|
+
owner: ISurvey;
|
8559
|
+
getSurvey(live?: boolean): ISurvey;
|
8523
8560
|
getType(): string;
|
8524
8561
|
setData(json: any): void;
|
8525
8562
|
getData(): any;
|
@@ -9042,6 +9079,7 @@ declare module "question_multipletext" {
|
|
9042
9079
|
addElement(element: IElement, index: number): void;
|
9043
9080
|
removeElement(element: IElement): boolean;
|
9044
9081
|
getQuestionTitleLocation(): string;
|
9082
|
+
getQuestionTitleWidth(): string;
|
9045
9083
|
getQuestionStartIndex(): string;
|
9046
9084
|
getChildrenLayoutType(): string;
|
9047
9085
|
elementWidthChanged(el: IElement): void;
|
@@ -9693,7 +9731,7 @@ declare module "survey" {
|
|
9693
9731
|
*/
|
9694
9732
|
onUpdatePageCssClasses: EventBase<SurveyModel, UpdatePageCssClassesEvent>;
|
9695
9733
|
/**
|
9696
|
-
* An event that is raised before rendering a choice item in Radio Button Group
|
9734
|
+
* An event that is raised before rendering a choice item in Radio Button Group and Checkboxes questions. Use it to override default CSS classes applied to choice items.
|
9697
9735
|
*
|
9698
9736
|
* For information on event handler parameters, refer to descriptions within the interface.
|
9699
9737
|
*
|
@@ -10300,6 +10338,8 @@ declare module "survey" {
|
|
10300
10338
|
* - `"onValueChanged"` - Triggers validation each time a question value is changed.
|
10301
10339
|
* - `"onComplete"` - Triggers validation when a user clicks the Complete button. If previous pages contain errors, the survey switches to the page with the first error.
|
10302
10340
|
*
|
10341
|
+
* > The `"onValueChanged"` doesn't work with date input fields because of the way browsers process date values. In most browsers, the value is considered changed as soon as a user starts entering the date in a text input field. This means that a user may only enter the day without having the chance to enter the month and year before validation is triggered. For this reason, date input fields are validated before the survey is switched to the next page or completed.
|
10342
|
+
*
|
10303
10343
|
* Refer to the following help topic for more information: [Data Validation](https://surveyjs.io/form-library/documentation/data-validation).
|
10304
10344
|
* @see validationEnabled
|
10305
10345
|
* @see validationAllowSwitchPages
|
@@ -10401,9 +10441,9 @@ declare module "survey" {
|
|
10401
10441
|
locStrsChanged(): void;
|
10402
10442
|
getMarkdownHtml(text: string, name: string): string;
|
10403
10443
|
getRenderer(name: string): string;
|
10404
|
-
getRendererContext(locStr: LocalizableString):
|
10444
|
+
getRendererContext(locStr: LocalizableString): any;
|
10405
10445
|
getRendererForString(element: Question | PanelModel | PageModel | SurveyModel, name: string): string;
|
10406
|
-
getRendererContextForString(element: Base, locStr: LocalizableString):
|
10446
|
+
getRendererContextForString(element: Base, locStr: LocalizableString): any;
|
10407
10447
|
getExpressionDisplayValue(question: Question, value: any, displayValue: string): string;
|
10408
10448
|
private getBuiltInRendererForString;
|
10409
10449
|
getProcessedText(text: string): string;
|
@@ -12904,6 +12944,7 @@ declare module "question" {
|
|
12904
12944
|
protected notifySurveyOnChildrenVisibilityChanged(): boolean;
|
12905
12945
|
private notifySurveyVisibilityChanged;
|
12906
12946
|
protected clearValueOnHidding(isClearOnHidden: boolean): void;
|
12947
|
+
get titleWidth(): string;
|
12907
12948
|
/**
|
12908
12949
|
* 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
12950
|
* @see titleLocation
|
@@ -14528,6 +14569,7 @@ declare module "base-interfaces" {
|
|
14528
14569
|
export interface IPanel extends ISurveyElement, IParentElement {
|
14529
14570
|
getChildrenLayoutType(): string;
|
14530
14571
|
getQuestionTitleLocation(): string;
|
14572
|
+
getQuestionTitleWidth(): string;
|
14531
14573
|
getQuestionStartIndex(): string;
|
14532
14574
|
getQuestionErrorLocation(): string;
|
14533
14575
|
parent: IPanel;
|
@@ -15882,6 +15924,7 @@ declare module "settings" {
|
|
15882
15924
|
* This setting applies to all TagBox questions on a page. You can use the [closeOnSelect](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model#closeOnSelect) property to specify the same setting for an individual TagBox question.
|
15883
15925
|
*/
|
15884
15926
|
tagboxCloseOnSelect: boolean;
|
15927
|
+
dropdownSearchDelay: number;
|
15885
15928
|
/**
|
15886
15929
|
* A function that activates a browser confirm dialog.
|
15887
15930
|
*
|
@@ -16189,6 +16232,7 @@ declare module "dropdownListModel" {
|
|
16189
16232
|
protected onSelectionChanged?: (item: IAction, ...params: any[]) => void;
|
16190
16233
|
readonly minPageSize = 25;
|
16191
16234
|
readonly loadingItemHeight = 40;
|
16235
|
+
timer: any;
|
16192
16236
|
private htmlCleanerElement;
|
16193
16237
|
private _markdownMode;
|
16194
16238
|
private _popupModel;
|
@@ -16205,6 +16249,7 @@ declare module "dropdownListModel" {
|
|
16205
16249
|
protected listModelFilterStringChanged: (newValue: string) => void;
|
16206
16250
|
private resetItemsSettings;
|
16207
16251
|
private setItems;
|
16252
|
+
private loadQuestionChoices;
|
16208
16253
|
private updateQuestionChoices;
|
16209
16254
|
private updatePopupFocusFirstInputSelector;
|
16210
16255
|
protected createPopup(): void;
|
@@ -17243,7 +17288,6 @@ declare module "question_ranking" {
|
|
17243
17288
|
private domNode;
|
17244
17289
|
private dragOrClickHelper;
|
17245
17290
|
constructor(name: string);
|
17246
|
-
protected getDefaultItemComponent(): string;
|
17247
17291
|
getType(): string;
|
17248
17292
|
getItemTabIndex(item: ItemValue): number;
|
17249
17293
|
protected supportContainerQueries(): boolean;
|
@@ -17325,8 +17369,7 @@ declare module "question_ranking" {
|
|
17325
17369
|
/**
|
17326
17370
|
* The name of a component used to render items.
|
17327
17371
|
*/
|
17328
|
-
|
17329
|
-
set itemContentComponent(value: string);
|
17372
|
+
protected getDefaultItemComponent(): string;
|
17330
17373
|
/**
|
17331
17374
|
* Specifies whether users can select choices they want to rank.
|
17332
17375
|
*
|
@@ -17809,10 +17852,6 @@ declare module "question_boolean" {
|
|
17809
17852
|
getDefaultValue(): any;
|
17810
17853
|
get locTitle(): LocalizableString;
|
17811
17854
|
get labelRenderedAriaID(): string;
|
17812
|
-
leftAnswerElement: HTMLElement;
|
17813
|
-
thumbMargin: string;
|
17814
|
-
updateThumbMargin(): void;
|
17815
|
-
afterRender(el: HTMLElement): void;
|
17816
17855
|
beforeDestroyQuestionElement(el: HTMLElement): void;
|
17817
17856
|
showTitle: boolean;
|
17818
17857
|
label: string;
|
@@ -18647,6 +18686,7 @@ declare module "entries/chunks/model" {
|
|
18647
18686
|
declare module "defaultCss/cssstandard" {
|
18648
18687
|
export var defaultStandardCss: {
|
18649
18688
|
root: string;
|
18689
|
+
rootProgress: string;
|
18650
18690
|
container: string;
|
18651
18691
|
header: string;
|
18652
18692
|
bodyContainer: string;
|
@@ -18846,6 +18886,7 @@ declare module "defaultCss/cssstandard" {
|
|
18846
18886
|
matrixdropdown: {
|
18847
18887
|
root: string;
|
18848
18888
|
cell: string;
|
18889
|
+
cellResponsiveTitle: string;
|
18849
18890
|
headerCell: string;
|
18850
18891
|
row: string;
|
18851
18892
|
rowAdditional: string;
|
@@ -18870,6 +18911,7 @@ declare module "defaultCss/cssstandard" {
|
|
18870
18911
|
iconRemove: string;
|
18871
18912
|
iconDrag: string;
|
18872
18913
|
cell: string;
|
18914
|
+
cellResponsiveTitle: string;
|
18873
18915
|
headerCell: string;
|
18874
18916
|
row: string;
|
18875
18917
|
detailRow: string;
|
@@ -19054,6 +19096,7 @@ declare module "defaultCss/cssstandard" {
|
|
19054
19096
|
declare module "defaultCss/cssmodern" {
|
19055
19097
|
export var modernCss: {
|
19056
19098
|
root: string;
|
19099
|
+
rootProgress: string;
|
19057
19100
|
timerRoot: string;
|
19058
19101
|
container: string;
|
19059
19102
|
header: string;
|
@@ -19374,6 +19417,7 @@ declare module "defaultCss/cssmodern" {
|
|
19374
19417
|
matrixdropdown: {
|
19375
19418
|
root: string;
|
19376
19419
|
cell: string;
|
19420
|
+
cellResponsiveTitle: string;
|
19377
19421
|
headerCell: string;
|
19378
19422
|
row: string;
|
19379
19423
|
rowTextCell: string;
|
@@ -19392,6 +19436,7 @@ declare module "defaultCss/cssmodern" {
|
|
19392
19436
|
matrixdynamic: {
|
19393
19437
|
root: string;
|
19394
19438
|
cell: string;
|
19439
|
+
cellResponsiveTitle: string;
|
19395
19440
|
headerCell: string;
|
19396
19441
|
button: string;
|
19397
19442
|
buttonAdd: string;
|
@@ -21189,6 +21234,7 @@ declare module "localization/arabic" {
|
|
21189
21234
|
emptyMessage: string;
|
21190
21235
|
noEntriesText: string;
|
21191
21236
|
noEntriesReadonlyText: string;
|
21237
|
+
tabTitlePlaceholder: string;
|
21192
21238
|
more: string;
|
21193
21239
|
tagboxDoneButtonCaption: string;
|
21194
21240
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21297,6 +21343,7 @@ declare module "localization/basque" {
|
|
21297
21343
|
emptyMessage: string;
|
21298
21344
|
noEntriesText: string;
|
21299
21345
|
noEntriesReadonlyText: string;
|
21346
|
+
tabTitlePlaceholder: string;
|
21300
21347
|
more: string;
|
21301
21348
|
tagboxDoneButtonCaption: string;
|
21302
21349
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21405,6 +21452,7 @@ declare module "localization/bulgarian" {
|
|
21405
21452
|
emptyMessage: string;
|
21406
21453
|
noEntriesText: string;
|
21407
21454
|
noEntriesReadonlyText: string;
|
21455
|
+
tabTitlePlaceholder: string;
|
21408
21456
|
more: string;
|
21409
21457
|
tagboxDoneButtonCaption: string;
|
21410
21458
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21513,6 +21561,7 @@ declare module "localization/catalan" {
|
|
21513
21561
|
emptyMessage: string;
|
21514
21562
|
noEntriesText: string;
|
21515
21563
|
noEntriesReadonlyText: string;
|
21564
|
+
tabTitlePlaceholder: string;
|
21516
21565
|
more: string;
|
21517
21566
|
tagboxDoneButtonCaption: string;
|
21518
21567
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21621,6 +21670,7 @@ declare module "localization/croatian" {
|
|
21621
21670
|
emptyMessage: string;
|
21622
21671
|
noEntriesText: string;
|
21623
21672
|
noEntriesReadonlyText: string;
|
21673
|
+
tabTitlePlaceholder: string;
|
21624
21674
|
more: string;
|
21625
21675
|
tagboxDoneButtonCaption: string;
|
21626
21676
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21729,6 +21779,7 @@ declare module "localization/czech" {
|
|
21729
21779
|
emptyMessage: string;
|
21730
21780
|
noEntriesText: string;
|
21731
21781
|
noEntriesReadonlyText: string;
|
21782
|
+
tabTitlePlaceholder: string;
|
21732
21783
|
more: string;
|
21733
21784
|
tagboxDoneButtonCaption: string;
|
21734
21785
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21837,6 +21888,7 @@ declare module "localization/danish" {
|
|
21837
21888
|
emptyMessage: string;
|
21838
21889
|
noEntriesText: string;
|
21839
21890
|
noEntriesReadonlyText: string;
|
21891
|
+
tabTitlePlaceholder: string;
|
21840
21892
|
more: string;
|
21841
21893
|
tagboxDoneButtonCaption: string;
|
21842
21894
|
selectToRankEmptyRankedAreaText: string;
|
@@ -21945,6 +21997,7 @@ declare module "localization/dutch" {
|
|
21945
21997
|
emptyMessage: string;
|
21946
21998
|
noEntriesText: string;
|
21947
21999
|
noEntriesReadonlyText: string;
|
22000
|
+
tabTitlePlaceholder: string;
|
21948
22001
|
more: string;
|
21949
22002
|
tagboxDoneButtonCaption: string;
|
21950
22003
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22054,6 +22107,7 @@ declare module "localization/estonian" {
|
|
22054
22107
|
emptyMessage: string;
|
22055
22108
|
noEntriesText: string;
|
22056
22109
|
noEntriesReadonlyText: string;
|
22110
|
+
tabTitlePlaceholder: string;
|
22057
22111
|
more: string;
|
22058
22112
|
tagboxDoneButtonCaption: string;
|
22059
22113
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22162,6 +22216,7 @@ declare module "localization/finnish" {
|
|
22162
22216
|
emptyMessage: string;
|
22163
22217
|
noEntriesText: string;
|
22164
22218
|
noEntriesReadonlyText: string;
|
22219
|
+
tabTitlePlaceholder: string;
|
22165
22220
|
more: string;
|
22166
22221
|
tagboxDoneButtonCaption: string;
|
22167
22222
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22270,6 +22325,7 @@ declare module "localization/french" {
|
|
22270
22325
|
emptyMessage: string;
|
22271
22326
|
noEntriesText: string;
|
22272
22327
|
noEntriesReadonlyText: string;
|
22328
|
+
tabTitlePlaceholder: string;
|
22273
22329
|
more: string;
|
22274
22330
|
tagboxDoneButtonCaption: string;
|
22275
22331
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22378,6 +22434,7 @@ declare module "localization/georgian" {
|
|
22378
22434
|
emptyMessage: string;
|
22379
22435
|
noEntriesText: string;
|
22380
22436
|
noEntriesReadonlyText: string;
|
22437
|
+
tabTitlePlaceholder: string;
|
22381
22438
|
more: string;
|
22382
22439
|
tagboxDoneButtonCaption: string;
|
22383
22440
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22486,6 +22543,7 @@ declare module "localization/german" {
|
|
22486
22543
|
emptyMessage: string;
|
22487
22544
|
noEntriesText: string;
|
22488
22545
|
noEntriesReadonlyText: string;
|
22546
|
+
tabTitlePlaceholder: string;
|
22489
22547
|
more: string;
|
22490
22548
|
tagboxDoneButtonCaption: string;
|
22491
22549
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22594,6 +22652,7 @@ declare module "localization/greek" {
|
|
22594
22652
|
emptyMessage: string;
|
22595
22653
|
noEntriesText: string;
|
22596
22654
|
noEntriesReadonlyText: string;
|
22655
|
+
tabTitlePlaceholder: string;
|
22597
22656
|
more: string;
|
22598
22657
|
tagboxDoneButtonCaption: string;
|
22599
22658
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22702,6 +22761,7 @@ declare module "localization/hebrew" {
|
|
22702
22761
|
emptyMessage: string;
|
22703
22762
|
noEntriesText: string;
|
22704
22763
|
noEntriesReadonlyText: string;
|
22764
|
+
tabTitlePlaceholder: string;
|
22705
22765
|
more: string;
|
22706
22766
|
tagboxDoneButtonCaption: string;
|
22707
22767
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22810,6 +22870,7 @@ declare module "localization/hindi" {
|
|
22810
22870
|
emptyMessage: string;
|
22811
22871
|
noEntriesText: string;
|
22812
22872
|
noEntriesReadonlyText: string;
|
22873
|
+
tabTitlePlaceholder: string;
|
22813
22874
|
more: string;
|
22814
22875
|
tagboxDoneButtonCaption: string;
|
22815
22876
|
selectToRankEmptyRankedAreaText: string;
|
@@ -22918,6 +22979,7 @@ declare module "localization/hungarian" {
|
|
22918
22979
|
emptyMessage: string;
|
22919
22980
|
noEntriesText: string;
|
22920
22981
|
noEntriesReadonlyText: string;
|
22982
|
+
tabTitlePlaceholder: string;
|
22921
22983
|
more: string;
|
22922
22984
|
tagboxDoneButtonCaption: string;
|
22923
22985
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23026,6 +23088,7 @@ declare module "localization/icelandic" {
|
|
23026
23088
|
emptyMessage: string;
|
23027
23089
|
noEntriesText: string;
|
23028
23090
|
noEntriesReadonlyText: string;
|
23091
|
+
tabTitlePlaceholder: string;
|
23029
23092
|
more: string;
|
23030
23093
|
tagboxDoneButtonCaption: string;
|
23031
23094
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23134,6 +23197,7 @@ declare module "localization/indonesian" {
|
|
23134
23197
|
emptyMessage: string;
|
23135
23198
|
noEntriesText: string;
|
23136
23199
|
noEntriesReadonlyText: string;
|
23200
|
+
tabTitlePlaceholder: string;
|
23137
23201
|
more: string;
|
23138
23202
|
tagboxDoneButtonCaption: string;
|
23139
23203
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23242,6 +23306,7 @@ declare module "localization/italian" {
|
|
23242
23306
|
emptyMessage: string;
|
23243
23307
|
noEntriesText: string;
|
23244
23308
|
noEntriesReadonlyText: string;
|
23309
|
+
tabTitlePlaceholder: string;
|
23245
23310
|
more: string;
|
23246
23311
|
tagboxDoneButtonCaption: string;
|
23247
23312
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23350,6 +23415,7 @@ declare module "localization/japanese" {
|
|
23350
23415
|
emptyMessage: string;
|
23351
23416
|
noEntriesText: string;
|
23352
23417
|
noEntriesReadonlyText: string;
|
23418
|
+
tabTitlePlaceholder: string;
|
23353
23419
|
more: string;
|
23354
23420
|
tagboxDoneButtonCaption: string;
|
23355
23421
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23458,6 +23524,7 @@ declare module "localization/kazakh" {
|
|
23458
23524
|
emptyMessage: string;
|
23459
23525
|
noEntriesText: string;
|
23460
23526
|
noEntriesReadonlyText: string;
|
23527
|
+
tabTitlePlaceholder: string;
|
23461
23528
|
more: string;
|
23462
23529
|
tagboxDoneButtonCaption: string;
|
23463
23530
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23566,6 +23633,7 @@ declare module "localization/korean" {
|
|
23566
23633
|
emptyMessage: string;
|
23567
23634
|
noEntriesText: string;
|
23568
23635
|
noEntriesReadonlyText: string;
|
23636
|
+
tabTitlePlaceholder: string;
|
23569
23637
|
more: string;
|
23570
23638
|
tagboxDoneButtonCaption: string;
|
23571
23639
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23674,6 +23742,7 @@ declare module "localization/latvian" {
|
|
23674
23742
|
emptyMessage: string;
|
23675
23743
|
noEntriesText: string;
|
23676
23744
|
noEntriesReadonlyText: string;
|
23745
|
+
tabTitlePlaceholder: string;
|
23677
23746
|
more: string;
|
23678
23747
|
tagboxDoneButtonCaption: string;
|
23679
23748
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23782,6 +23851,7 @@ declare module "localization/lithuanian" {
|
|
23782
23851
|
emptyMessage: string;
|
23783
23852
|
noEntriesText: string;
|
23784
23853
|
noEntriesReadonlyText: string;
|
23854
|
+
tabTitlePlaceholder: string;
|
23785
23855
|
more: string;
|
23786
23856
|
tagboxDoneButtonCaption: string;
|
23787
23857
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23890,6 +23960,7 @@ declare module "localization/macedonian" {
|
|
23890
23960
|
emptyMessage: string;
|
23891
23961
|
noEntriesText: string;
|
23892
23962
|
noEntriesReadonlyText: string;
|
23963
|
+
tabTitlePlaceholder: string;
|
23893
23964
|
more: string;
|
23894
23965
|
tagboxDoneButtonCaption: string;
|
23895
23966
|
selectToRankEmptyRankedAreaText: string;
|
@@ -23998,6 +24069,7 @@ declare module "localization/malay" {
|
|
23998
24069
|
emptyMessage: string;
|
23999
24070
|
noEntriesText: string;
|
24000
24071
|
noEntriesReadonlyText: string;
|
24072
|
+
tabTitlePlaceholder: string;
|
24001
24073
|
more: string;
|
24002
24074
|
tagboxDoneButtonCaption: string;
|
24003
24075
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24106,6 +24178,7 @@ declare module "localization/norwegian" {
|
|
24106
24178
|
emptyMessage: string;
|
24107
24179
|
noEntriesText: string;
|
24108
24180
|
noEntriesReadonlyText: string;
|
24181
|
+
tabTitlePlaceholder: string;
|
24109
24182
|
more: string;
|
24110
24183
|
tagboxDoneButtonCaption: string;
|
24111
24184
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24214,6 +24287,7 @@ declare module "localization/persian" {
|
|
24214
24287
|
emptyMessage: string;
|
24215
24288
|
noEntriesText: string;
|
24216
24289
|
noEntriesReadonlyText: string;
|
24290
|
+
tabTitlePlaceholder: string;
|
24217
24291
|
more: string;
|
24218
24292
|
tagboxDoneButtonCaption: string;
|
24219
24293
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24322,6 +24396,7 @@ declare module "localization/polish" {
|
|
24322
24396
|
emptyMessage: string;
|
24323
24397
|
noEntriesText: string;
|
24324
24398
|
noEntriesReadonlyText: string;
|
24399
|
+
tabTitlePlaceholder: string;
|
24325
24400
|
more: string;
|
24326
24401
|
tagboxDoneButtonCaption: string;
|
24327
24402
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24430,6 +24505,7 @@ declare module "localization/portuguese" {
|
|
24430
24505
|
emptyMessage: string;
|
24431
24506
|
noEntriesText: string;
|
24432
24507
|
noEntriesReadonlyText: string;
|
24508
|
+
tabTitlePlaceholder: string;
|
24433
24509
|
more: string;
|
24434
24510
|
tagboxDoneButtonCaption: string;
|
24435
24511
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24541,6 +24617,7 @@ declare module "localization/portuguese-br" {
|
|
24541
24617
|
emptyMessage: string;
|
24542
24618
|
noEntriesText: string;
|
24543
24619
|
noEntriesReadonlyText: string;
|
24620
|
+
tabTitlePlaceholder: string;
|
24544
24621
|
more: string;
|
24545
24622
|
tagboxDoneButtonCaption: string;
|
24546
24623
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24652,6 +24729,7 @@ declare module "localization/russian" {
|
|
24652
24729
|
emptyMessage: string;
|
24653
24730
|
noEntriesText: string;
|
24654
24731
|
noEntriesReadonlyText: string;
|
24732
|
+
tabTitlePlaceholder: string;
|
24655
24733
|
more: string;
|
24656
24734
|
tagboxDoneButtonCaption: string;
|
24657
24735
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24760,6 +24838,7 @@ declare module "localization/serbian" {
|
|
24760
24838
|
emptyMessage: string;
|
24761
24839
|
noEntriesText: string;
|
24762
24840
|
noEntriesReadonlyText: string;
|
24841
|
+
tabTitlePlaceholder: string;
|
24763
24842
|
more: string;
|
24764
24843
|
tagboxDoneButtonCaption: string;
|
24765
24844
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24868,6 +24947,7 @@ declare module "localization/simplified-chinese" {
|
|
24868
24947
|
emptyMessage: string;
|
24869
24948
|
noEntriesText: string;
|
24870
24949
|
noEntriesReadonlyText: string;
|
24950
|
+
tabTitlePlaceholder: string;
|
24871
24951
|
more: string;
|
24872
24952
|
tagboxDoneButtonCaption: string;
|
24873
24953
|
selectToRankEmptyRankedAreaText: string;
|
@@ -24976,6 +25056,7 @@ declare module "localization/slovak" {
|
|
24976
25056
|
emptyMessage: string;
|
24977
25057
|
noEntriesText: string;
|
24978
25058
|
noEntriesReadonlyText: string;
|
25059
|
+
tabTitlePlaceholder: string;
|
24979
25060
|
more: string;
|
24980
25061
|
tagboxDoneButtonCaption: string;
|
24981
25062
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25084,6 +25165,7 @@ declare module "localization/spanish" {
|
|
25084
25165
|
emptyMessage: string;
|
25085
25166
|
noEntriesText: string;
|
25086
25167
|
noEntriesReadonlyText: string;
|
25168
|
+
tabTitlePlaceholder: string;
|
25087
25169
|
more: string;
|
25088
25170
|
tagboxDoneButtonCaption: string;
|
25089
25171
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25192,6 +25274,7 @@ declare module "localization/swahili" {
|
|
25192
25274
|
emptyMessage: string;
|
25193
25275
|
noEntriesText: string;
|
25194
25276
|
noEntriesReadonlyText: string;
|
25277
|
+
tabTitlePlaceholder: string;
|
25195
25278
|
more: string;
|
25196
25279
|
tagboxDoneButtonCaption: string;
|
25197
25280
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25300,6 +25383,7 @@ declare module "localization/swedish" {
|
|
25300
25383
|
emptyMessage: string;
|
25301
25384
|
noEntriesText: string;
|
25302
25385
|
noEntriesReadonlyText: string;
|
25386
|
+
tabTitlePlaceholder: string;
|
25303
25387
|
more: string;
|
25304
25388
|
tagboxDoneButtonCaption: string;
|
25305
25389
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25472,6 +25556,7 @@ declare module "localization/thai" {
|
|
25472
25556
|
emptyMessage: string;
|
25473
25557
|
noEntriesText: string;
|
25474
25558
|
noEntriesReadonlyText: string;
|
25559
|
+
tabTitlePlaceholder: string;
|
25475
25560
|
more: string;
|
25476
25561
|
tagboxDoneButtonCaption: string;
|
25477
25562
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25580,6 +25665,7 @@ declare module "localization/traditional-chinese" {
|
|
25580
25665
|
emptyMessage: string;
|
25581
25666
|
noEntriesText: string;
|
25582
25667
|
noEntriesReadonlyText: string;
|
25668
|
+
tabTitlePlaceholder: string;
|
25583
25669
|
more: string;
|
25584
25670
|
tagboxDoneButtonCaption: string;
|
25585
25671
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25688,6 +25774,7 @@ declare module "localization/turkish" {
|
|
25688
25774
|
emptyMessage: string;
|
25689
25775
|
noEntriesText: string;
|
25690
25776
|
noEntriesReadonlyText: string;
|
25777
|
+
tabTitlePlaceholder: string;
|
25691
25778
|
more: string;
|
25692
25779
|
tagboxDoneButtonCaption: string;
|
25693
25780
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25796,6 +25883,7 @@ declare module "localization/ukrainian" {
|
|
25796
25883
|
emptyMessage: string;
|
25797
25884
|
noEntriesText: string;
|
25798
25885
|
noEntriesReadonlyText: string;
|
25886
|
+
tabTitlePlaceholder: string;
|
25799
25887
|
more: string;
|
25800
25888
|
tagboxDoneButtonCaption: string;
|
25801
25889
|
selectToRankEmptyRankedAreaText: string;
|
@@ -25904,6 +25992,7 @@ declare module "localization/vietnamese" {
|
|
25904
25992
|
emptyMessage: string;
|
25905
25993
|
noEntriesText: string;
|
25906
25994
|
noEntriesReadonlyText: string;
|
25995
|
+
tabTitlePlaceholder: string;
|
25907
25996
|
more: string;
|
25908
25997
|
tagboxDoneButtonCaption: string;
|
25909
25998
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26012,6 +26101,7 @@ declare module "localization/welsh" {
|
|
26012
26101
|
emptyMessage: string;
|
26013
26102
|
noEntriesText: string;
|
26014
26103
|
noEntriesReadonlyText: string;
|
26104
|
+
tabTitlePlaceholder: string;
|
26015
26105
|
more: string;
|
26016
26106
|
tagboxDoneButtonCaption: string;
|
26017
26107
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26120,6 +26210,7 @@ declare module "localization/telugu" {
|
|
26120
26210
|
emptyMessage: string;
|
26121
26211
|
noEntriesText: string;
|
26122
26212
|
noEntriesReadonlyText: string;
|
26213
|
+
tabTitlePlaceholder: string;
|
26123
26214
|
more: string;
|
26124
26215
|
tagboxDoneButtonCaption: string;
|
26125
26216
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26228,6 +26319,7 @@ declare module "localization/philippines" {
|
|
26228
26319
|
emptyMessage: string;
|
26229
26320
|
noEntriesText: string;
|
26230
26321
|
noEntriesReadonlyText: string;
|
26322
|
+
tabTitlePlaceholder: string;
|
26231
26323
|
more: string;
|
26232
26324
|
tagboxDoneButtonCaption: string;
|
26233
26325
|
selectToRankEmptyRankedAreaText: string;
|
@@ -26587,6 +26679,7 @@ declare module "react/reactquestion" {
|
|
26587
26679
|
protected cellRef: React.RefObject<HTMLTableCellElement>;
|
26588
26680
|
constructor(props: any);
|
26589
26681
|
componentWillUnmount(): void;
|
26682
|
+
protected renderCellContent(): JSX.Element;
|
26590
26683
|
protected renderElement(): JSX.Element;
|
26591
26684
|
protected getCellStyle(): any;
|
26592
26685
|
protected getHeaderText(): string;
|
@@ -27387,6 +27480,7 @@ declare module "react/reactquestion_matrixdropdownbase" {
|
|
27387
27480
|
protected getShowErrors(): boolean;
|
27388
27481
|
protected getCellStyle(): any;
|
27389
27482
|
protected getHeaderText(): string;
|
27483
|
+
protected renderCellContent(): JSX.Element;
|
27390
27484
|
protected renderQuestion(): JSX.Element;
|
27391
27485
|
private renderOtherComment;
|
27392
27486
|
private renderCellCheckboxButton;
|