survey-react 1.9.138 → 1.10.1
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 +646 -66
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +20 -3
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.css.map +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +361 -39
- package/survey.react.js +1364 -341
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -139,6 +139,7 @@ declare module "localization/english" {
|
|
139
139
|
savingData: string;
|
140
140
|
savingDataError: string;
|
141
141
|
savingDataSuccess: string;
|
142
|
+
savingExceedSize: string;
|
142
143
|
saveAgainButton: string;
|
143
144
|
timerMin: string;
|
144
145
|
timerSec: string;
|
@@ -150,6 +151,7 @@ declare module "localization/english" {
|
|
150
151
|
timerLimitSurvey: string;
|
151
152
|
clearCaption: string;
|
152
153
|
signaturePlaceHolder: string;
|
154
|
+
signaturePlaceHolderReadOnly: string;
|
153
155
|
chooseFileCaption: string;
|
154
156
|
takePhotoCaption: string;
|
155
157
|
photoPlaceholder: string;
|
@@ -262,6 +264,7 @@ declare module "surveyStrings" {
|
|
262
264
|
savingData: string;
|
263
265
|
savingDataError: string;
|
264
266
|
savingDataSuccess: string;
|
267
|
+
savingExceedSize: string;
|
265
268
|
saveAgainButton: string;
|
266
269
|
timerMin: string;
|
267
270
|
timerSec: string;
|
@@ -273,6 +276,7 @@ declare module "surveyStrings" {
|
|
273
276
|
timerLimitSurvey: string;
|
274
277
|
clearCaption: string;
|
275
278
|
signaturePlaceHolder: string;
|
279
|
+
signaturePlaceHolderReadOnly: string;
|
276
280
|
chooseFileCaption: string;
|
277
281
|
takePhotoCaption: string;
|
278
282
|
photoPlaceholder: string;
|
@@ -694,28 +698,31 @@ declare module "utils/animation" {
|
|
694
698
|
}
|
695
699
|
export class AnimationUtils {
|
696
700
|
private getMsFromRule;
|
701
|
+
private reflow;
|
697
702
|
private getAnimationsCount;
|
698
703
|
private getAnimationDuration;
|
699
704
|
private cancelQueue;
|
705
|
+
private addCancelCallback;
|
706
|
+
private removeCancelCallback;
|
700
707
|
protected onAnimationEnd(element: HTMLElement, callback: (isCancel?: boolean) => void, options: AnimationOptions): void;
|
701
708
|
protected beforeAnimationRun(element: HTMLElement, options: AnimationOptions | AnimationOptions): void;
|
702
|
-
protected
|
703
|
-
protected
|
709
|
+
protected runAnimation(element: HTMLElement, options: AnimationOptions, callback: (isCancel?: boolean) => void): void;
|
710
|
+
protected clearHtmlElement(element: HTMLElement, options: AnimationOptions): void;
|
711
|
+
protected onNextRender(callback: () => void, runEarly?: () => boolean, isCancel?: boolean): void;
|
704
712
|
cancel(): void;
|
705
713
|
}
|
706
714
|
export class AnimationPropertyUtils extends AnimationUtils {
|
707
|
-
onEnter(
|
708
|
-
onLeave(
|
715
|
+
onEnter(options: IAnimationConsumer): void;
|
716
|
+
onLeave(options: IAnimationConsumer, callback: () => void): void;
|
709
717
|
}
|
710
718
|
export class AnimationGroupUtils<T> extends AnimationUtils {
|
711
|
-
|
712
|
-
onLeave(getElement: (el: T) => HTMLElement, callback: () => void, getOptions: (el: T) => AnimationOptions, elements: Array<T>): void;
|
719
|
+
runGroupAnimation(options: IAnimationConsumer<[T]>, addedElements: Array<T>, removedElements: Array<T>, callback?: () => void): void;
|
713
720
|
}
|
714
|
-
abstract class AnimationProperty<T, S extends Array<any> = []> {
|
721
|
+
export abstract class AnimationProperty<T, S extends Array<any> = []> {
|
715
722
|
protected animationOptions: IAnimationConsumer<S>;
|
716
|
-
protected update: (val: T) => void;
|
723
|
+
protected update: (val: T, isTempUpdate?: boolean) => void;
|
717
724
|
protected getCurrentValue: () => T;
|
718
|
-
constructor(animationOptions: IAnimationConsumer<S>, update: (val: T) => void, getCurrentValue: () => T);
|
725
|
+
constructor(animationOptions: IAnimationConsumer<S>, update: (val: T, isTempUpdate?: boolean) => void, getCurrentValue: () => T);
|
719
726
|
protected animation: AnimationUtils;
|
720
727
|
protected abstract _sync(newValue: T): void;
|
721
728
|
private _debouncedSync;
|
@@ -730,6 +737,12 @@ declare module "utils/animation" {
|
|
730
737
|
protected animation: AnimationGroupUtils<T>;
|
731
738
|
protected _sync(newValue: Array<T>): void;
|
732
739
|
}
|
740
|
+
export class AnimationTab<T> extends AnimationProperty<Array<T>, [T]> {
|
741
|
+
protected mergeValues?: (newValue: Array<T>, oldValue: Array<T>) => Array<T>;
|
742
|
+
protected animation: AnimationGroupUtils<T>;
|
743
|
+
constructor(animationOptions: IAnimationConsumer<[T]>, update: (val: Array<T>, isTempUpdate?: boolean) => void, getCurrentValue: () => Array<T>, mergeValues?: (newValue: Array<T>, oldValue: Array<T>) => Array<T>);
|
744
|
+
protected _sync(newValue: [T]): void;
|
745
|
+
}
|
733
746
|
}
|
734
747
|
declare module "popup-view-model" {
|
735
748
|
import { Base, EventBase } from "base";
|
@@ -796,6 +809,8 @@ declare module "popup-view-model" {
|
|
796
809
|
onKeyDown(event: any): void;
|
797
810
|
private trapFocus;
|
798
811
|
switchFocus(): void;
|
812
|
+
protected _isPositionSetValue: boolean;
|
813
|
+
get isPositionSet(): boolean;
|
799
814
|
updateOnShowing(): void;
|
800
815
|
updateOnHiding(): void;
|
801
816
|
private focusContainer;
|
@@ -1201,7 +1216,11 @@ declare module "actions/action" {
|
|
1201
1216
|
export function createDropdownActionModelAdvanced(actionOptions: IAction, listOptions: IListModel, popupOptions?: IPopupOptionsBase, locOwner?: ILocalizableOwner): Action;
|
1202
1217
|
export function getActionDropdownButtonTarget(container: HTMLElement): HTMLElement;
|
1203
1218
|
export abstract class BaseAction extends Base implements IAction {
|
1219
|
+
private static renderedId;
|
1220
|
+
private static getNextRendredId;
|
1204
1221
|
private cssClassesValue;
|
1222
|
+
private rendredIdValue;
|
1223
|
+
private ownerValue;
|
1205
1224
|
tooltip: string;
|
1206
1225
|
showTitle: boolean;
|
1207
1226
|
innerCss: string;
|
@@ -1212,7 +1231,6 @@ declare module "actions/action" {
|
|
1212
1231
|
needSeparator: boolean;
|
1213
1232
|
template: string;
|
1214
1233
|
mode: actionModeType;
|
1215
|
-
owner: ILocalizableOwner;
|
1216
1234
|
visibleIndex: number;
|
1217
1235
|
disableTabStop: boolean;
|
1218
1236
|
disableShrink: boolean;
|
@@ -1228,6 +1246,9 @@ declare module "actions/action" {
|
|
1228
1246
|
css?: string;
|
1229
1247
|
minDimension: number;
|
1230
1248
|
maxDimension: number;
|
1249
|
+
get renderedId(): number;
|
1250
|
+
get owner(): ILocalizableOwner;
|
1251
|
+
set owner(val: ILocalizableOwner);
|
1231
1252
|
get visible(): boolean;
|
1232
1253
|
set visible(val: boolean);
|
1233
1254
|
get enabled(): boolean;
|
@@ -1508,7 +1529,11 @@ declare module "defaultCss/defaultV2Css" {
|
|
1508
1529
|
footer: string;
|
1509
1530
|
panelFooter: string;
|
1510
1531
|
footerButtonsContainer: string;
|
1532
|
+
panelsContainer: string;
|
1511
1533
|
panelWrapperInRow: string;
|
1534
|
+
panelWrapperFadeIn: string;
|
1535
|
+
panelWrapperFadeOut: string;
|
1536
|
+
panelWrapperList: string;
|
1512
1537
|
progressBtnIcon: string;
|
1513
1538
|
noEntriesPlaceholder: string;
|
1514
1539
|
compact: string;
|
@@ -1596,6 +1621,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
1596
1621
|
titleExpanded: string;
|
1597
1622
|
titleCollapsed: string;
|
1598
1623
|
titleDisabled: string;
|
1624
|
+
titleReadOnly: string;
|
1599
1625
|
titleBar: string;
|
1600
1626
|
requiredText: string;
|
1601
1627
|
number: string;
|
@@ -1620,6 +1646,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1620
1646
|
invisible: string;
|
1621
1647
|
composite: string;
|
1622
1648
|
disabled: string;
|
1649
|
+
readOnly: string;
|
1650
|
+
preview: string;
|
1623
1651
|
errorsContainer: string;
|
1624
1652
|
errorsContainerTop: string;
|
1625
1653
|
errorsContainerBottom: string;
|
@@ -1656,6 +1684,9 @@ declare module "defaultCss/defaultV2Css" {
|
|
1656
1684
|
itemSelectAll: string;
|
1657
1685
|
itemNone: string;
|
1658
1686
|
itemDisabled: string;
|
1687
|
+
itemReadOnly: string;
|
1688
|
+
itemPreview: string;
|
1689
|
+
itemPreviewSvgIconId: string;
|
1659
1690
|
itemChecked: string;
|
1660
1691
|
itemHover: string;
|
1661
1692
|
itemInline: string;
|
@@ -1680,6 +1711,9 @@ declare module "defaultCss/defaultV2Css" {
|
|
1680
1711
|
label: string;
|
1681
1712
|
labelChecked: string;
|
1682
1713
|
itemDisabled: string;
|
1714
|
+
itemReadOnly: string;
|
1715
|
+
itemPreview: string;
|
1716
|
+
itemPreviewSvgIconId: string;
|
1683
1717
|
itemChecked: string;
|
1684
1718
|
itemHover: string;
|
1685
1719
|
itemControl: string;
|
@@ -1701,17 +1735,25 @@ declare module "defaultCss/defaultV2Css" {
|
|
1701
1735
|
itemExchanged: string;
|
1702
1736
|
itemIndeterminate: string;
|
1703
1737
|
itemDisabled: string;
|
1738
|
+
itemReadOnly: string;
|
1739
|
+
itemPreview: string;
|
1704
1740
|
itemHover: string;
|
1705
1741
|
label: string;
|
1706
1742
|
labelTrue: string;
|
1707
1743
|
labelFalse: string;
|
1708
1744
|
switch: string;
|
1709
1745
|
disabledLabel: string;
|
1746
|
+
labelReadOnly: string;
|
1747
|
+
labelPreview: string;
|
1710
1748
|
sliderText: string;
|
1711
1749
|
slider: string;
|
1712
1750
|
sliderGhost: string;
|
1713
1751
|
radioItem: string;
|
1714
1752
|
radioItemChecked: string;
|
1753
|
+
radioItemDisabled: string;
|
1754
|
+
radioItemReadOnly: string;
|
1755
|
+
radioItemPreview: string;
|
1756
|
+
itemPreviewSvgIconId: string;
|
1715
1757
|
radioLabel: string;
|
1716
1758
|
radioControlLabel: string;
|
1717
1759
|
radioFieldset: string;
|
@@ -1726,6 +1768,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1726
1768
|
checkboxItemChecked: string;
|
1727
1769
|
checkboxItemDecorator: string;
|
1728
1770
|
checkboxItemDisabled: string;
|
1771
|
+
checkboxItemReadOnly: string;
|
1772
|
+
checkboxItemPreview: string;
|
1729
1773
|
controlCheckbox: string;
|
1730
1774
|
checkboxMaterialDecorator: string;
|
1731
1775
|
checkboxControlLabel: string;
|
@@ -1735,6 +1779,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1735
1779
|
root: string;
|
1736
1780
|
small: string;
|
1737
1781
|
controlDisabled: string;
|
1782
|
+
controlReadOnly: string;
|
1783
|
+
controlPreview: string;
|
1738
1784
|
constrolWithCharacterCounter: string;
|
1739
1785
|
characterCounterBig: string;
|
1740
1786
|
content: string;
|
@@ -1745,6 +1791,9 @@ declare module "defaultCss/defaultV2Css" {
|
|
1745
1791
|
root: string;
|
1746
1792
|
rootMobile: string;
|
1747
1793
|
itemLabel: string;
|
1794
|
+
itemLabelReadOnly: string;
|
1795
|
+
itemLabelDisabled: string;
|
1796
|
+
itemLabelPreview: string;
|
1748
1797
|
itemLabelOnError: string;
|
1749
1798
|
itemLabelAllowFocus: string;
|
1750
1799
|
itemLabelAnswered: string;
|
@@ -1782,6 +1831,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1782
1831
|
controlInputFieldComponent: string;
|
1783
1832
|
controlValue: string;
|
1784
1833
|
controlDisabled: string;
|
1834
|
+
controlReadOnly: string;
|
1835
|
+
controlPreview: string;
|
1785
1836
|
controlEmpty: string;
|
1786
1837
|
controlLabel: string;
|
1787
1838
|
filterStringInput: string;
|
@@ -1798,6 +1849,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1798
1849
|
itemInline: string;
|
1799
1850
|
itemChecked: string;
|
1800
1851
|
itemDisabled: string;
|
1852
|
+
itemReadOnly: string;
|
1853
|
+
itemPreview: string;
|
1801
1854
|
itemHover: string;
|
1802
1855
|
label: string;
|
1803
1856
|
itemDecorator: string;
|
@@ -1827,6 +1880,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
1827
1880
|
cell: string;
|
1828
1881
|
row: string;
|
1829
1882
|
rowDisabled: string;
|
1883
|
+
rowReadOnly: string;
|
1830
1884
|
headerCell: string;
|
1831
1885
|
rowTextCell: string;
|
1832
1886
|
label: string;
|
@@ -1834,6 +1888,9 @@ declare module "defaultCss/defaultV2Css" {
|
|
1834
1888
|
itemValue: string;
|
1835
1889
|
itemChecked: string;
|
1836
1890
|
itemDisabled: string;
|
1891
|
+
itemReadOnly: string;
|
1892
|
+
itemPreview: string;
|
1893
|
+
itemPreviewSvgIconId: string;
|
1837
1894
|
itemHover: string;
|
1838
1895
|
materialDecorator: string;
|
1839
1896
|
itemDecorator: string;
|
@@ -1860,6 +1917,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1860
1917
|
errorsCellBottom: string;
|
1861
1918
|
itemCell: string;
|
1862
1919
|
row: string;
|
1920
|
+
rowFadeIn: string;
|
1921
|
+
rowFadeOut: string;
|
1863
1922
|
expandedRow: string;
|
1864
1923
|
rowHasPanel: string;
|
1865
1924
|
rowHasEndActions: string;
|
@@ -1898,6 +1957,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1898
1957
|
content: string;
|
1899
1958
|
cell: string;
|
1900
1959
|
row: string;
|
1960
|
+
rowFadeIn: string;
|
1961
|
+
rowFadeOut: string;
|
1901
1962
|
rowHasPanel: string;
|
1902
1963
|
rowHasEndActions: string;
|
1903
1964
|
expandedRow: string;
|
@@ -1954,6 +2015,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1954
2015
|
itemStarHover: string;
|
1955
2016
|
itemStarSelected: string;
|
1956
2017
|
itemStarDisabled: string;
|
2018
|
+
itemStarReadOnly: string;
|
2019
|
+
itemStarPreview: string;
|
1957
2020
|
itemStarHighlighted: string;
|
1958
2021
|
itemStarUnhighlighted: string;
|
1959
2022
|
itemStarSmall: string;
|
@@ -1962,6 +2025,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1962
2025
|
itemSmileyHover: string;
|
1963
2026
|
itemSmileySelected: string;
|
1964
2027
|
itemSmileyDisabled: string;
|
2028
|
+
itemSmileyReadOnly: string;
|
2029
|
+
itemSmileyPreview: string;
|
1965
2030
|
itemSmileyHighlighted: string;
|
1966
2031
|
itemSmileyScaleColored: string;
|
1967
2032
|
itemSmileyRateColored: string;
|
@@ -1970,6 +2035,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1970
2035
|
itemText: string;
|
1971
2036
|
maxText: string;
|
1972
2037
|
itemDisabled: string;
|
2038
|
+
itemReadOnly: string;
|
2039
|
+
itemPreview: string;
|
1973
2040
|
itemFixedSize: string;
|
1974
2041
|
control: string;
|
1975
2042
|
itemSmall: string;
|
@@ -1988,6 +2055,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1988
2055
|
root: string;
|
1989
2056
|
small: string;
|
1990
2057
|
controlDisabled: string;
|
2058
|
+
controlReadOnly: string;
|
2059
|
+
controlPreview: string;
|
1991
2060
|
content: string;
|
1992
2061
|
remainingCharacterCounter: string;
|
1993
2062
|
onError: string;
|
@@ -1997,9 +2066,12 @@ declare module "defaultCss/defaultV2Css" {
|
|
1997
2066
|
root: string;
|
1998
2067
|
rootDragging: string;
|
1999
2068
|
rootAnswered: string;
|
2069
|
+
rootDisabled: string;
|
2070
|
+
rootReadOnly: string;
|
2071
|
+
rootPreview: string;
|
2000
2072
|
other: string;
|
2001
2073
|
placeholderInput: string;
|
2002
|
-
|
2074
|
+
previewItem: string;
|
2003
2075
|
fileSign: string;
|
2004
2076
|
fileList: string;
|
2005
2077
|
fileSignBottom: string;
|
@@ -2088,9 +2160,12 @@ declare module "defaultCss/defaultV2Css" {
|
|
2088
2160
|
rootMobileMod: string;
|
2089
2161
|
rootDragMod: string;
|
2090
2162
|
rootDisabled: string;
|
2163
|
+
rootReadOnly: string;
|
2164
|
+
rootPreview: string;
|
2091
2165
|
rootDesignMode: string;
|
2092
2166
|
rootDragHandleAreaIcon: string;
|
2093
2167
|
rootSelectToRankMod: string;
|
2168
|
+
rootSelectToRankEmptyValueMod: string;
|
2094
2169
|
rootSelectToRankAlignVertical: string;
|
2095
2170
|
rootSelectToRankAlignHorizontal: string;
|
2096
2171
|
item: string;
|
@@ -2098,6 +2173,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
2098
2173
|
itemIndex: string;
|
2099
2174
|
itemIndexEmptyMode: string;
|
2100
2175
|
itemDisabled: string;
|
2176
|
+
itemReadOnly: string;
|
2177
|
+
itemPreview: string;
|
2101
2178
|
controlLabel: string;
|
2102
2179
|
itemGhostNode: string;
|
2103
2180
|
itemIconContainer: string;
|
@@ -2174,7 +2251,10 @@ declare module "defaultCss/defaultV2Css" {
|
|
2174
2251
|
controlValue: string;
|
2175
2252
|
controlValueItems: string;
|
2176
2253
|
placeholderInput: string;
|
2254
|
+
controlEditable: string;
|
2177
2255
|
controlDisabled: string;
|
2256
|
+
controlReadOnly: string;
|
2257
|
+
controlPreview: string;
|
2178
2258
|
controlEmpty: string;
|
2179
2259
|
controlLabel: string;
|
2180
2260
|
filterStringInput: string;
|
@@ -2322,7 +2402,8 @@ declare module "trigger" {
|
|
2322
2402
|
set setToName(val: string);
|
2323
2403
|
get runExpression(): string;
|
2324
2404
|
set runExpression(val: string);
|
2325
|
-
protected
|
2405
|
+
protected canBeExecuted(isOnNextPage: boolean): boolean;
|
2406
|
+
protected onSuccess(values: HashTable<any>, properties: HashTable<any>): boolean;
|
2326
2407
|
private onCompleteRunExpression;
|
2327
2408
|
}
|
2328
2409
|
/**
|
@@ -2880,6 +2961,7 @@ declare module "question_custom" {
|
|
2880
2961
|
afterRenderCore(el: any): void;
|
2881
2962
|
get contentQuestion(): Question;
|
2882
2963
|
protected createQuestion(): Question;
|
2964
|
+
private checkCreatedQuestion;
|
2883
2965
|
onSurveyLoad(): void;
|
2884
2966
|
runCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
2885
2967
|
protected convertDataName(name: string): string;
|
@@ -3030,6 +3112,7 @@ declare module "panel" {
|
|
3030
3112
|
get id(): string;
|
3031
3113
|
protected equalsCore(obj: Base): boolean;
|
3032
3114
|
get elements(): Array<IElement>;
|
3115
|
+
protected getIsAnimationAllowed(): boolean;
|
3033
3116
|
private getVisibleElementsAnimationOptions;
|
3034
3117
|
visibleElementsAnimation: AnimationGroup<IElement>;
|
3035
3118
|
set visibleElements(val: Array<IElement>);
|
@@ -3558,7 +3641,7 @@ declare module "panel" {
|
|
3558
3641
|
focusIn(): void;
|
3559
3642
|
protected getHasFrameV2(): boolean;
|
3560
3643
|
protected getIsNested(): boolean;
|
3561
|
-
|
3644
|
+
get showPanelAsPage(): boolean;
|
3562
3645
|
protected getCssRoot(cssClasses: {
|
3563
3646
|
[index: string]: string;
|
3564
3647
|
}): string;
|
@@ -5409,6 +5492,7 @@ declare module "question_matrixdropdownrendered" {
|
|
5409
5492
|
isGhostRow: boolean;
|
5410
5493
|
isAdditionalClasses: boolean;
|
5411
5494
|
visible: boolean;
|
5495
|
+
onVisibilityChangedCallback: () => void;
|
5412
5496
|
hasEndActions: boolean;
|
5413
5497
|
row: MatrixDropdownRowModelBase;
|
5414
5498
|
isErrorsRow: boolean;
|
@@ -5423,6 +5507,9 @@ declare module "question_matrixdropdownrendered" {
|
|
5423
5507
|
"data-sv-drop-target-matrix-row": string;
|
5424
5508
|
};
|
5425
5509
|
get className(): string;
|
5510
|
+
private rootElement;
|
5511
|
+
setRootElement(val: HTMLTableRowElement): void;
|
5512
|
+
getRootElement(): HTMLTableRowElement;
|
5426
5513
|
}
|
5427
5514
|
export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
|
5428
5515
|
isErrorsRow: boolean;
|
@@ -5440,6 +5527,13 @@ declare module "question_matrixdropdownrendered" {
|
|
5440
5527
|
private cssClasses;
|
5441
5528
|
renderedRowsChangedCallback: () => void;
|
5442
5529
|
rows: Array<QuestionMatrixDropdownRenderedRow>;
|
5530
|
+
protected getIsAnimationAllowed(): boolean;
|
5531
|
+
private getRenderedRowsAnimationOptions;
|
5532
|
+
private _renderedRows;
|
5533
|
+
updateRenderedRows(): void;
|
5534
|
+
private renderedRowsAnimation;
|
5535
|
+
get renderedRows(): Array<QuestionMatrixDropdownRenderedRow>;
|
5536
|
+
set renderedRows(val: Array<QuestionMatrixDropdownRenderedRow>);
|
5443
5537
|
constructor(matrix: QuestionMatrixDropdownModelBase);
|
5444
5538
|
get showTable(): boolean;
|
5445
5539
|
get showHeader(): boolean;
|
@@ -6025,6 +6119,7 @@ declare module "question_paneldynamic" {
|
|
6025
6119
|
import { IAction } from "actions/action";
|
6026
6120
|
import { AdaptiveActionContainer } from "actions/adaptive-container";
|
6027
6121
|
import { ITheme } from "themes";
|
6122
|
+
import { AnimationProperty } from "utils/animation";
|
6028
6123
|
export interface IQuestionPanelDynamicData {
|
6029
6124
|
getItemIndex(item: ISurveyData): number;
|
6030
6125
|
getVisibleItemIndex(item: ISurveyData): number;
|
@@ -6208,6 +6303,17 @@ declare module "question_paneldynamic" {
|
|
6208
6303
|
*/
|
6209
6304
|
get currentPanel(): PanelModel;
|
6210
6305
|
set currentPanel(val: PanelModel);
|
6306
|
+
private _renderedPanels;
|
6307
|
+
private updateRenderedPanels;
|
6308
|
+
set renderedPanels(val: Array<PanelModel>);
|
6309
|
+
get renderedPanels(): Array<PanelModel>;
|
6310
|
+
private isPanelsAnimationRunning;
|
6311
|
+
private getPanelsAnimationOptions;
|
6312
|
+
private _panelsAnimations;
|
6313
|
+
private disablePanelsAnimations;
|
6314
|
+
private enablePanelsAnimations;
|
6315
|
+
private updatePanelsAnimation;
|
6316
|
+
get panelsAnimation(): AnimationProperty<Array<PanelModel>, [PanelModel]>;
|
6211
6317
|
onHidingContent(): void;
|
6212
6318
|
/**
|
6213
6319
|
* Specifies whether to display a confirmation dialog when a respondent wants to delete a panel.
|
@@ -6415,6 +6521,7 @@ declare module "question_paneldynamic" {
|
|
6415
6521
|
*/
|
6416
6522
|
get showQuestionNumbers(): string;
|
6417
6523
|
set showQuestionNumbers(val: string);
|
6524
|
+
protected notifySurveyOnChildrenVisibilityChanged(): boolean;
|
6418
6525
|
/**
|
6419
6526
|
* Specifies the location of the Delete Panel button relative to panel content.
|
6420
6527
|
*
|
@@ -6514,6 +6621,8 @@ declare module "question_paneldynamic" {
|
|
6514
6621
|
* @see canAddPanel
|
6515
6622
|
*/
|
6516
6623
|
addPanelUI(): PanelModel;
|
6624
|
+
private focusNewPanelCallback;
|
6625
|
+
private focusNewPanel;
|
6517
6626
|
/**
|
6518
6627
|
* Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
|
6519
6628
|
* @param index *(Optional)* An index at which to insert the new panel. `undefined` adds the panel to the end or inserts it after the current panel if [`renderMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`. A negative index (for instance, -1) adds the panel to the end in all cases, regardless of the `renderMode` value.
|
@@ -6552,6 +6661,7 @@ declare module "question_paneldynamic" {
|
|
6552
6661
|
* @see panels
|
6553
6662
|
* @see template
|
6554
6663
|
*/
|
6664
|
+
private removedPanelIndex;
|
6555
6665
|
removePanel(value: any): void;
|
6556
6666
|
private getVisualPanelIndex;
|
6557
6667
|
private getPanelIndexById;
|
@@ -6637,6 +6747,7 @@ declare module "question_paneldynamic" {
|
|
6637
6747
|
getShowNoEntriesPlaceholder(): boolean;
|
6638
6748
|
needResponsiveWidth(): boolean;
|
6639
6749
|
private additionalTitleToolbarValue;
|
6750
|
+
get hasAdditionalTitleToolbar(): boolean;
|
6640
6751
|
protected getAdditionalTitleToolbar(): AdaptiveActionContainer | null;
|
6641
6752
|
private footerToolbarValue;
|
6642
6753
|
get footerToolbar(): ActionContainer;
|
@@ -6778,17 +6889,24 @@ declare module "question_signaturepad" {
|
|
6778
6889
|
set backgroundImage(val: string);
|
6779
6890
|
get clearButtonCaption(): string;
|
6780
6891
|
/**
|
6781
|
-
* A Boolean value that specifies whether to show the
|
6892
|
+
* A Boolean value that specifies whether to show the placeholder text in the signature area.
|
6782
6893
|
*
|
6783
6894
|
* Default value: `true`
|
6895
|
+
*
|
6896
|
+
* Use the [`placeholder`](#placeholder) and [`placeholderReadOnly`](#placeholderReadOnly) properties to specify placeholder texts for the signature area in edit mode and in read-only or preview mode.
|
6784
6897
|
*/
|
6785
6898
|
showPlaceholder: boolean;
|
6899
|
+
get locRenderedPlaceholder(): any;
|
6786
6900
|
nothingIsDrawn(): boolean;
|
6787
6901
|
needShowPlaceholder(): boolean;
|
6788
6902
|
/**
|
6789
|
-
* A placeholder for the signature area. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
|
6903
|
+
* A placeholder text for the signature area. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
|
6790
6904
|
*/
|
6791
6905
|
placeholder: string;
|
6906
|
+
/**
|
6907
|
+
* A placeholder text for the signature area in read-only or preview mode. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
|
6908
|
+
*/
|
6909
|
+
placeholderReadOnly: string;
|
6792
6910
|
onBlur: (event: any) => void;
|
6793
6911
|
protected uploadResultItemToValue(r: any): any;
|
6794
6912
|
protected setValueFromResult(arg: any): void;
|
@@ -7971,15 +8089,19 @@ declare module "dxSurveyService" {
|
|
7971
8089
|
* The class contains methods to work with api.surveyjs.io service.
|
7972
8090
|
*/
|
7973
8091
|
export class dxSurveyService {
|
8092
|
+
locale: string;
|
7974
8093
|
static get serviceUrl(): string;
|
7975
8094
|
static set serviceUrl(val: string);
|
7976
|
-
constructor();
|
7977
8095
|
loadSurvey(surveyId: string, onLoad: (success: boolean, result: string, response: any) => void): void;
|
7978
8096
|
getSurveyJsonAndIsCompleted(surveyId: string, clientId: string, onLoad: (success: boolean, surveyJson: any, result: string, response: any) => void): void;
|
8097
|
+
canSendResult(result: JSON): boolean;
|
8098
|
+
get isSurveJSIOService(): boolean;
|
7979
8099
|
sendResult(postId: string, result: JSON, onSendResult: (success: boolean, response: any, request?: any) => void, clientId?: string, isPartialCompleted?: boolean): void;
|
8100
|
+
protected sendResultCore(postId: string, result: JSON, onSendResult: (success: boolean, response: any, request?: any) => void, clientId?: string, isPartialCompleted?: boolean): void;
|
7980
8101
|
sendFile(postId: string, file: File, onSendFile: (success: boolean, response: any) => void): void;
|
7981
8102
|
getResult(resultId: string, name: string, onGetResult: (success: boolean, data: any, dataList: Array<any>, response: any) => void): void;
|
7982
8103
|
isCompleted(resultId: string, clientId: string, onIsCompleted: (success: boolean, result: string, response: any) => void): void;
|
8104
|
+
private get serviceUrl();
|
7983
8105
|
}
|
7984
8106
|
}
|
7985
8107
|
declare module "stylesmanager" {
|
@@ -8286,6 +8408,7 @@ declare module "mask/mask_utils" {
|
|
8286
8408
|
getMaskedValue(src: any): string;
|
8287
8409
|
getUnmaskedValue(src: string): any;
|
8288
8410
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
8411
|
+
getTextAlignment(): "left" | "right" | "auto";
|
8289
8412
|
}
|
8290
8413
|
}
|
8291
8414
|
declare module "mask/mask_base" {
|
@@ -8312,6 +8435,7 @@ declare module "mask/mask_base" {
|
|
8312
8435
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
8313
8436
|
getUnmaskedValue(src: string): any;
|
8314
8437
|
getMaskedValue(src: any): string;
|
8438
|
+
getTextAlignment(): "left" | "right" | "auto";
|
8315
8439
|
}
|
8316
8440
|
}
|
8317
8441
|
declare module "mask/input_element_adapter" {
|
@@ -8321,7 +8445,7 @@ declare module "mask/input_element_adapter" {
|
|
8321
8445
|
private inputMaskInstance;
|
8322
8446
|
private inputElement;
|
8323
8447
|
private prevUnmaskedValue;
|
8324
|
-
constructor(inputMaskInstance: InputMaskBase, inputElement: HTMLInputElement, value?:
|
8448
|
+
constructor(inputMaskInstance: InputMaskBase, inputElement: HTMLInputElement, value?: any);
|
8325
8449
|
inputMaskInstancePropertyChangedHandler: (sender: any, options: any) => void;
|
8326
8450
|
clickHandler: (event: any) => void;
|
8327
8451
|
beforeInputHandler: (event: any) => void;
|
@@ -11587,7 +11711,7 @@ declare module "survey" {
|
|
11587
11711
|
get clearValueOnDisableItems(): boolean;
|
11588
11712
|
set clearValueOnDisableItems(val: boolean);
|
11589
11713
|
getQuestionClearIfInvisible(questionClearIf: string): string;
|
11590
|
-
questionVisibilityChanged(question: Question, newValue: boolean): void;
|
11714
|
+
questionVisibilityChanged(question: Question, newValue: boolean, resetIndexes: boolean): void;
|
11591
11715
|
pageVisibilityChanged(page: PageModel, newValue: boolean): void;
|
11592
11716
|
panelVisibilityChanged(panel: PanelModel, newValue: boolean): void;
|
11593
11717
|
questionCreated(question: Question): any;
|
@@ -11866,6 +11990,55 @@ declare module "survey" {
|
|
11866
11990
|
removeScrollEventListener(): void;
|
11867
11991
|
}
|
11868
11992
|
}
|
11993
|
+
declare module "knockout/kobase" {
|
11994
|
+
import { Base } from "entries/core";
|
11995
|
+
export class ImplementorBase {
|
11996
|
+
element: Base;
|
11997
|
+
private static doIterateProperties;
|
11998
|
+
readonly implementedMark = "__surveyImplementedKo";
|
11999
|
+
constructor(element: Base);
|
12000
|
+
dispose(): void;
|
12001
|
+
}
|
12002
|
+
}
|
12003
|
+
declare module "knockout/kopage" {
|
12004
|
+
import { PageModel } from "entries/core";
|
12005
|
+
import { PanelModelBase, PanelModel, QuestionRowModel } from "entries/core";
|
12006
|
+
import { SurveyElement } from "entries/core";
|
12007
|
+
import { ImplementorBase } from "knockout/kobase";
|
12008
|
+
export class QuestionRow extends QuestionRowModel {
|
12009
|
+
panel: PanelModelBase;
|
12010
|
+
koElementAfterRender: any;
|
12011
|
+
constructor(panel: PanelModelBase);
|
12012
|
+
getElementType(el: any): "survey-panel" | "survey-question";
|
12013
|
+
koAfterRender(htmlElements: any, element: SurveyElement): void;
|
12014
|
+
private elementAfterRender;
|
12015
|
+
rowAfterRender(elements: HTMLElement[], model: QuestionRow): void;
|
12016
|
+
dispose(): void;
|
12017
|
+
}
|
12018
|
+
export class PanelImplementorBase extends ImplementorBase {
|
12019
|
+
panel: PanelModelBase;
|
12020
|
+
constructor(panel: PanelModelBase);
|
12021
|
+
}
|
12022
|
+
export class Panel extends PanelModel {
|
12023
|
+
private _implementor;
|
12024
|
+
koElementType: any;
|
12025
|
+
constructor(name?: string);
|
12026
|
+
protected onBaseCreating(): void;
|
12027
|
+
createRow(): QuestionRowModel;
|
12028
|
+
protected onCreating(): void;
|
12029
|
+
protected onNumChanged(value: number): void;
|
12030
|
+
dispose(): void;
|
12031
|
+
}
|
12032
|
+
export class Page extends PageModel {
|
12033
|
+
private _implementor;
|
12034
|
+
constructor(name?: string);
|
12035
|
+
protected onBaseCreating(): void;
|
12036
|
+
createRow(): QuestionRowModel;
|
12037
|
+
protected onCreating(): void;
|
12038
|
+
protected onNumChanged(value: number): void;
|
12039
|
+
dispose(): void;
|
12040
|
+
}
|
12041
|
+
}
|
11869
12042
|
declare module "survey-element" {
|
11870
12043
|
import { Base } from "base";
|
11871
12044
|
import { IAction } from "actions/action";
|
@@ -11953,7 +12126,7 @@ declare module "survey-element" {
|
|
11953
12126
|
isDragMe: boolean;
|
11954
12127
|
readOnlyChangedCallback: () => void;
|
11955
12128
|
static ScrollElementToTop(elementId: string, scrollIfVisible?: boolean): boolean;
|
11956
|
-
|
12129
|
+
static ScrollElementToViewCore(el: HTMLElement, checkLeft: boolean, scrollIfVisible?: boolean, scrollIntoViewOptions?: ScrollIntoViewOptions): boolean;
|
11957
12130
|
static GetFirstNonTextElement(elements: any, removeSpaces?: boolean): any;
|
11958
12131
|
static FocusElement(elementId: string): boolean;
|
11959
12132
|
private static focusElementCore;
|
@@ -12197,6 +12370,7 @@ declare module "survey-element" {
|
|
12197
12370
|
isSingleInRow: boolean;
|
12198
12371
|
private shouldAddRunnerStyles;
|
12199
12372
|
protected get isCompact(): boolean;
|
12373
|
+
private canHaveFrameStyles;
|
12200
12374
|
protected getHasFrameV2(): boolean;
|
12201
12375
|
protected getIsNested(): boolean;
|
12202
12376
|
protected getCssRoot(cssClasses: {
|
@@ -12264,9 +12438,14 @@ declare module "survey-element" {
|
|
12264
12438
|
get clickTitleFunction(): any;
|
12265
12439
|
protected needClickTitleFunction(): boolean;
|
12266
12440
|
protected processTitleClick(): void;
|
12441
|
+
get hasAdditionalTitleToolbar(): boolean;
|
12267
12442
|
get additionalTitleToolbar(): ActionContainer;
|
12268
12443
|
protected getAdditionalTitleToolbar(): ActionContainer | null;
|
12269
12444
|
protected getCssTitle(cssClasses: any): string;
|
12445
|
+
get isDisabledStyle(): boolean;
|
12446
|
+
get isReadOnlyStyle(): boolean;
|
12447
|
+
protected getIsDisableAndReadOnlyStyles(itemReadOnly: boolean): Array<boolean>;
|
12448
|
+
get isPreviewStyle(): boolean;
|
12270
12449
|
localeChanged(): void;
|
12271
12450
|
private wrapperElement?;
|
12272
12451
|
setWrapperElement(element?: HTMLElement): void;
|
@@ -12279,9 +12458,7 @@ declare module "survey-element" {
|
|
12279
12458
|
private animationCollapsed;
|
12280
12459
|
set renderedIsExpanded(val: boolean);
|
12281
12460
|
get renderedIsExpanded(): boolean;
|
12282
|
-
|
12283
|
-
get animationAllowed(): boolean;
|
12284
|
-
set animationAllowed(val: boolean);
|
12461
|
+
protected getIsAnimationAllowed(): boolean;
|
12285
12462
|
dispose(): void;
|
12286
12463
|
}
|
12287
12464
|
}
|
@@ -12619,6 +12796,7 @@ declare module "question" {
|
|
12619
12796
|
set titleLocation(value: string);
|
12620
12797
|
getTitleOwner(): ITitleOwner;
|
12621
12798
|
protected getIsTitleRenderedAsString(): boolean;
|
12799
|
+
protected notifySurveyOnChildrenVisibilityChanged(): boolean;
|
12622
12800
|
private notifySurveyVisibilityChanged;
|
12623
12801
|
protected clearValueOnHidding(isClearOnHidden: boolean): void;
|
12624
12802
|
/**
|
@@ -12910,6 +13088,7 @@ declare module "question" {
|
|
12910
13088
|
set value(newValue: any);
|
12911
13089
|
get hasFilteredValue(): boolean;
|
12912
13090
|
getFilteredValue(): any;
|
13091
|
+
getFilteredName(): any;
|
12913
13092
|
get valueForSurvey(): any;
|
12914
13093
|
/**
|
12915
13094
|
* Sets the question's `value` and `comment` properties to `undefined`.
|
@@ -14023,7 +14202,7 @@ declare module "base-interfaces" {
|
|
14023
14202
|
getQuestionByName(name: string): IQuestion;
|
14024
14203
|
pageVisibilityChanged(page: IPage, newValue: boolean): any;
|
14025
14204
|
panelVisibilityChanged(panel: IPanel, newValue: boolean): any;
|
14026
|
-
questionVisibilityChanged(question: IQuestion, newValue: boolean): any;
|
14205
|
+
questionVisibilityChanged(question: IQuestion, newValue: boolean, resetIndexes: boolean): any;
|
14027
14206
|
isEditingSurveyElement: boolean;
|
14028
14207
|
getQuestionClearIfInvisible(questionClearIf: string): string;
|
14029
14208
|
questionsOrder: string;
|
@@ -15094,6 +15273,11 @@ declare module "base" {
|
|
15094
15273
|
protected copyCssClasses(dest: any, source: any): void;
|
15095
15274
|
private getValueInLowCase;
|
15096
15275
|
getElementsInDesign(includeHidden?: boolean): Array<IElement>;
|
15276
|
+
get animationAllowed(): boolean;
|
15277
|
+
protected getIsAnimationAllowed(): boolean;
|
15278
|
+
private animationAllowedLock;
|
15279
|
+
blockAnimations(): void;
|
15280
|
+
releaseAnimations(): void;
|
15097
15281
|
}
|
15098
15282
|
export class ArrayChanges<T = any> {
|
15099
15283
|
index: number;
|
@@ -15181,6 +15365,7 @@ declare module "popup" {
|
|
15181
15365
|
private onDispose;
|
15182
15366
|
setWidthByTarget: boolean;
|
15183
15367
|
focusFirstInputSelector: string;
|
15368
|
+
locale: string;
|
15184
15369
|
contentComponentName: string;
|
15185
15370
|
contentComponentData: T;
|
15186
15371
|
verticalPosition: VerticalPosition;
|
@@ -16099,6 +16284,7 @@ declare module "question_matrix" {
|
|
16099
16284
|
onMatrixRowChanged(row: MatrixRowModel): void;
|
16100
16285
|
getCorrectedRowValue(value: any): any;
|
16101
16286
|
cssClasses: any;
|
16287
|
+
isDisabledStyle: boolean;
|
16102
16288
|
isInputReadOnly: boolean;
|
16103
16289
|
hasErrorInRow(row: MatrixRowModel): boolean;
|
16104
16290
|
}
|
@@ -16437,6 +16623,7 @@ declare module "question_checkbox" {
|
|
16437
16623
|
get selectedChoices(): Array<ItemValue>;
|
16438
16624
|
get selectedItems(): Array<ItemValue>;
|
16439
16625
|
get hasFilteredValue(): boolean;
|
16626
|
+
getFilteredName(): any;
|
16440
16627
|
getFilteredValue(): any;
|
16441
16628
|
protected getMultipleSelectedItems(): Array<ItemValue>;
|
16442
16629
|
protected validateItemValues(itemValues: Array<ItemValue>): Array<ItemValue>;
|
@@ -16893,12 +17080,14 @@ declare module "question_ranking" {
|
|
16893
17080
|
*/
|
16894
17081
|
export class QuestionRankingModel extends QuestionCheckboxModel {
|
16895
17082
|
private domNode;
|
17083
|
+
private dragOrClickHelper;
|
16896
17084
|
constructor(name: string);
|
16897
17085
|
protected getDefaultItemComponent(): string;
|
16898
17086
|
getType(): string;
|
16899
17087
|
getItemTabIndex(item: ItemValue): number;
|
16900
17088
|
protected supportContainerQueries(): boolean;
|
16901
17089
|
get rootClass(): string;
|
17090
|
+
protected isItemSelectedCore(item: ItemValue): boolean;
|
16902
17091
|
protected getItemClassCore(item: ItemValue, options: any): string;
|
16903
17092
|
getContainerClasses(containerType?: string): string;
|
16904
17093
|
protected isItemCurrentDropTarget(item: ItemValue): boolean;
|
@@ -16932,7 +17121,11 @@ declare module "question_ranking" {
|
|
16932
17121
|
endLoadingFromJson(): void;
|
16933
17122
|
private setDragDropRankingChoices;
|
16934
17123
|
protected createDragDropRankingChoices(): DragDropRankingChoices | DragDropRankingSelectToRank;
|
17124
|
+
private draggedChoise;
|
17125
|
+
private draggedTargetNode;
|
16935
17126
|
handlePointerDown: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
17127
|
+
startDrag: (event: PointerEvent) => void;
|
17128
|
+
handlePointerUp: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
16936
17129
|
private isDragStartNodeValid;
|
16937
17130
|
private get allowStartDrag();
|
16938
17131
|
private canStartDragDueMaxSelectedChoices;
|
@@ -16947,7 +17140,7 @@ declare module "question_ranking" {
|
|
16947
17140
|
supportRefuse(): boolean;
|
16948
17141
|
supportDontKnow(): boolean;
|
16949
17142
|
private handleArrowKeys;
|
16950
|
-
handleKeydownSelectToRank(event: KeyboardEvent, movedElement: ItemValue): void;
|
17143
|
+
handleKeydownSelectToRank(event: KeyboardEvent, movedElement: ItemValue, hardKey?: string, isNeedFocus?: boolean): void;
|
16951
17144
|
private setValueAfterKeydown;
|
16952
17145
|
private focusItem;
|
16953
17146
|
isValueSetByUser: boolean;
|
@@ -17249,6 +17442,7 @@ declare module "question_rating" {
|
|
17249
17442
|
getType(): string;
|
17250
17443
|
protected getFirstInputElementId(): string;
|
17251
17444
|
getInputId(index: number): string;
|
17445
|
+
get questionName(): string;
|
17252
17446
|
supportGoNextPageAutomatic(): boolean;
|
17253
17447
|
supportOther(): boolean;
|
17254
17448
|
protected getPlainDataCalculatedValue(propName: string): any;
|
@@ -17455,6 +17649,13 @@ declare module "question_boolean" {
|
|
17455
17649
|
set labelTrue(val: string);
|
17456
17650
|
get locLabelTrue(): LocalizableString;
|
17457
17651
|
get isDeterminated(): boolean;
|
17652
|
+
/**
|
17653
|
+
* Specifies whether to swap the order of the Yes and No answers.
|
17654
|
+
*
|
17655
|
+
* Default value: `false`
|
17656
|
+
*
|
17657
|
+
* By default, the order is [ "No", "Yes"]. Enable this property to reorder the answers as follows: [ "Yes", "No" ].
|
17658
|
+
*/
|
17458
17659
|
swapOrder: boolean;
|
17459
17660
|
get locLabelLeft(): LocalizableString;
|
17460
17661
|
get locLabelRight(): LocalizableString;
|
@@ -17494,6 +17695,7 @@ declare module "question_boolean" {
|
|
17494
17695
|
getCheckboxItemCss(): string;
|
17495
17696
|
getLabelCss(checked: boolean): string;
|
17496
17697
|
get svgIcon(): string;
|
17698
|
+
get itemSvgIcon(): string;
|
17497
17699
|
get allowClick(): boolean;
|
17498
17700
|
getCheckedLabel(): LocalizableString;
|
17499
17701
|
protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
|
@@ -17903,8 +18105,16 @@ declare module "mask/mask_pattern" {
|
|
17903
18105
|
* - `dd` - Day of the month, with leading zero for single-digit values.
|
17904
18106
|
* - `yy` - Last two digits of the year.
|
17905
18107
|
* - `yyyy` - A four-digit year.
|
18108
|
+
* - `H` - Hours in 24-hour format.
|
18109
|
+
* - `HH` - Hours in 24-hour format, with leading zero for single-digit values.
|
18110
|
+
* - `h` - Hours in 12-hour format.
|
18111
|
+
* - `hh` - Hours in 12-hour format, with leading zero for single-digit values.
|
18112
|
+
* - `MM` - Minutes.
|
18113
|
+
* - `ss` - Seconds.
|
18114
|
+
* - `TT` - 12-hour clock period in upper case (AM/PM).
|
18115
|
+
* - `tt` - 12-hour clock period in lower case (am/pm).
|
17906
18116
|
*
|
17907
|
-
* Example: `mm/dd/yyyy`
|
18117
|
+
* Example: `mm/dd/yyyy HH:MM:ss`
|
17908
18118
|
*
|
17909
18119
|
* [View Demo](https://surveyjs.io/form-library/examples/masked-input-fields/ (linkStyle))
|
17910
18120
|
* @see [settings.maskSettings](https://surveyjs.io/form-library/documentation/api-reference/settings#maskSettings)
|
@@ -18000,9 +18210,10 @@ declare module "mask/mask_numeric" {
|
|
18000
18210
|
displayNumber(parsedNumber: INumericalComposition, insertThousandsSeparator?: boolean, matchWholeMask?: boolean): string;
|
18001
18211
|
convertNumber(parsedNumber: INumericalComposition): number;
|
18002
18212
|
validateNumber(number: INumericalComposition, matchWholeMask: boolean): boolean;
|
18003
|
-
parseNumber(src: string
|
18004
|
-
getNumberMaskedValue(src: string
|
18213
|
+
parseNumber(src: string): INumericalComposition;
|
18214
|
+
getNumberMaskedValue(src: string, matchWholeMask?: boolean): string;
|
18005
18215
|
private getNumberUnmaskedValue;
|
18216
|
+
getTextAlignment(): "left" | "right" | "auto";
|
18006
18217
|
getMaskedValue(src: any): string;
|
18007
18218
|
getUnmaskedValue(src: string): any;
|
18008
18219
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
@@ -18013,11 +18224,13 @@ declare module "mask/mask_numeric" {
|
|
18013
18224
|
declare module "mask/mask_datetime" {
|
18014
18225
|
import { InputMaskPattern } from "mask/mask_pattern";
|
18015
18226
|
import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
|
18227
|
+
type DateTimeMaskLexemType = "month" | "day" | "year" | "hour" | "minute" | "second" | "timeMarker" | "separator";
|
18016
18228
|
export interface IDateTimeMaskLexem {
|
18017
|
-
type:
|
18229
|
+
type: DateTimeMaskLexemType;
|
18018
18230
|
value: any;
|
18019
18231
|
count: number;
|
18020
18232
|
maxCount: number;
|
18233
|
+
upperCase: boolean;
|
18021
18234
|
}
|
18022
18235
|
interface IDateTimeComposition {
|
18023
18236
|
day: number;
|
@@ -18026,6 +18239,7 @@ declare module "mask/mask_datetime" {
|
|
18026
18239
|
hour?: number;
|
18027
18240
|
minute?: number;
|
18028
18241
|
second?: number;
|
18242
|
+
timeMarker?: string;
|
18029
18243
|
min?: Date;
|
18030
18244
|
max?: Date;
|
18031
18245
|
}
|
@@ -18051,9 +18265,12 @@ declare module "mask/mask_datetime" {
|
|
18051
18265
|
* [View Demo](https://surveyjs.io/form-library/examples/masked-input-fields/ (linkStyle))
|
18052
18266
|
*/
|
18053
18267
|
export class InputMaskDateTime extends InputMaskPattern {
|
18268
|
+
private defaultDate;
|
18054
18269
|
private turnOfTheCentury;
|
18270
|
+
private twelve;
|
18055
18271
|
private lexems;
|
18056
18272
|
private inputDateTimeData;
|
18273
|
+
private validBeginningOfNumbers;
|
18057
18274
|
/**
|
18058
18275
|
* A minimum date and time value that respondents can enter.
|
18059
18276
|
* @see max
|
@@ -18064,6 +18281,9 @@ declare module "mask/mask_datetime" {
|
|
18064
18281
|
* @see min
|
18065
18282
|
*/
|
18066
18283
|
max: string;
|
18284
|
+
get hasDatePart(): boolean;
|
18285
|
+
get hasTimePart(): boolean;
|
18286
|
+
private get is12Hours();
|
18067
18287
|
getType(): string;
|
18068
18288
|
protected updateLiterals(): void;
|
18069
18289
|
private leaveOnlyNumbers;
|
@@ -18071,13 +18291,19 @@ declare module "mask/mask_datetime" {
|
|
18071
18291
|
private initInputDateTimeData;
|
18072
18292
|
getISO_8601Format(dateTime: IDateTimeComposition): string;
|
18073
18293
|
private isYearValid;
|
18294
|
+
private createIDateTimeCompositionWithDefaults;
|
18295
|
+
private getMaxDateForMonth;
|
18074
18296
|
private isDateValid;
|
18075
18297
|
private getPlaceholder;
|
18298
|
+
private isDateValid12;
|
18299
|
+
private updateTimeMarkerInputDateTimeData;
|
18076
18300
|
private updateInputDateTimeData;
|
18301
|
+
private checkValidationDateTimePart;
|
18077
18302
|
private getCorrectDatePartFormat;
|
18078
18303
|
private createIDateTimeComposition;
|
18079
18304
|
private parseTwoDigitYear;
|
18080
18305
|
private getFormatedString;
|
18306
|
+
private cleanTimeMarker;
|
18081
18307
|
private setInputDateTimeData;
|
18082
18308
|
_getMaskedValue(src: string, matchWholeMask?: boolean): string;
|
18083
18309
|
private getParts;
|
@@ -18565,7 +18791,7 @@ declare module "defaultCss/cssstandard" {
|
|
18565
18791
|
file: {
|
18566
18792
|
root: string;
|
18567
18793
|
placeholderInput: string;
|
18568
|
-
|
18794
|
+
previewItem: string;
|
18569
18795
|
removeButton: string;
|
18570
18796
|
fileInput: string;
|
18571
18797
|
removeFile: string;
|
@@ -19032,7 +19258,7 @@ declare module "defaultCss/cssmodern" {
|
|
19032
19258
|
root: string;
|
19033
19259
|
other: string;
|
19034
19260
|
placeholderInput: string;
|
19035
|
-
|
19261
|
+
previewItem: string;
|
19036
19262
|
fileSignBottom: string;
|
19037
19263
|
fileDecorator: string;
|
19038
19264
|
fileInput: string;
|
@@ -20747,6 +20973,7 @@ declare module "localization/arabic" {
|
|
20747
20973
|
savingData: string;
|
20748
20974
|
savingDataError: string;
|
20749
20975
|
savingDataSuccess: string;
|
20976
|
+
savingExceedSize: string;
|
20750
20977
|
saveAgainButton: string;
|
20751
20978
|
timerMin: string;
|
20752
20979
|
timerSec: string;
|
@@ -20758,6 +20985,7 @@ declare module "localization/arabic" {
|
|
20758
20985
|
timerLimitSurvey: string;
|
20759
20986
|
clearCaption: string;
|
20760
20987
|
signaturePlaceHolder: string;
|
20988
|
+
signaturePlaceHolderReadOnly: string;
|
20761
20989
|
chooseFileCaption: string;
|
20762
20990
|
takePhotoCaption: string;
|
20763
20991
|
photoPlaceholder: string;
|
@@ -20853,6 +21081,7 @@ declare module "localization/basque" {
|
|
20853
21081
|
savingData: string;
|
20854
21082
|
savingDataError: string;
|
20855
21083
|
savingDataSuccess: string;
|
21084
|
+
savingExceedSize: string;
|
20856
21085
|
saveAgainButton: string;
|
20857
21086
|
timerMin: string;
|
20858
21087
|
timerSec: string;
|
@@ -20864,6 +21093,7 @@ declare module "localization/basque" {
|
|
20864
21093
|
timerLimitSurvey: string;
|
20865
21094
|
clearCaption: string;
|
20866
21095
|
signaturePlaceHolder: string;
|
21096
|
+
signaturePlaceHolderReadOnly: string;
|
20867
21097
|
chooseFileCaption: string;
|
20868
21098
|
takePhotoCaption: string;
|
20869
21099
|
photoPlaceholder: string;
|
@@ -20959,6 +21189,7 @@ declare module "localization/bulgarian" {
|
|
20959
21189
|
savingData: string;
|
20960
21190
|
savingDataError: string;
|
20961
21191
|
savingDataSuccess: string;
|
21192
|
+
savingExceedSize: string;
|
20962
21193
|
saveAgainButton: string;
|
20963
21194
|
timerMin: string;
|
20964
21195
|
timerSec: string;
|
@@ -20970,6 +21201,7 @@ declare module "localization/bulgarian" {
|
|
20970
21201
|
timerLimitSurvey: string;
|
20971
21202
|
clearCaption: string;
|
20972
21203
|
signaturePlaceHolder: string;
|
21204
|
+
signaturePlaceHolderReadOnly: string;
|
20973
21205
|
chooseFileCaption: string;
|
20974
21206
|
takePhotoCaption: string;
|
20975
21207
|
photoPlaceholder: string;
|
@@ -21065,6 +21297,7 @@ declare module "localization/catalan" {
|
|
21065
21297
|
savingData: string;
|
21066
21298
|
savingDataError: string;
|
21067
21299
|
savingDataSuccess: string;
|
21300
|
+
savingExceedSize: string;
|
21068
21301
|
saveAgainButton: string;
|
21069
21302
|
timerMin: string;
|
21070
21303
|
timerSec: string;
|
@@ -21076,6 +21309,7 @@ declare module "localization/catalan" {
|
|
21076
21309
|
timerLimitSurvey: string;
|
21077
21310
|
clearCaption: string;
|
21078
21311
|
signaturePlaceHolder: string;
|
21312
|
+
signaturePlaceHolderReadOnly: string;
|
21079
21313
|
chooseFileCaption: string;
|
21080
21314
|
takePhotoCaption: string;
|
21081
21315
|
photoPlaceholder: string;
|
@@ -21171,6 +21405,7 @@ declare module "localization/croatian" {
|
|
21171
21405
|
savingData: string;
|
21172
21406
|
savingDataError: string;
|
21173
21407
|
savingDataSuccess: string;
|
21408
|
+
savingExceedSize: string;
|
21174
21409
|
saveAgainButton: string;
|
21175
21410
|
timerMin: string;
|
21176
21411
|
timerSec: string;
|
@@ -21182,6 +21417,7 @@ declare module "localization/croatian" {
|
|
21182
21417
|
timerLimitSurvey: string;
|
21183
21418
|
clearCaption: string;
|
21184
21419
|
signaturePlaceHolder: string;
|
21420
|
+
signaturePlaceHolderReadOnly: string;
|
21185
21421
|
chooseFileCaption: string;
|
21186
21422
|
takePhotoCaption: string;
|
21187
21423
|
photoPlaceholder: string;
|
@@ -21277,6 +21513,7 @@ declare module "localization/czech" {
|
|
21277
21513
|
savingData: string;
|
21278
21514
|
savingDataError: string;
|
21279
21515
|
savingDataSuccess: string;
|
21516
|
+
savingExceedSize: string;
|
21280
21517
|
saveAgainButton: string;
|
21281
21518
|
timerMin: string;
|
21282
21519
|
timerSec: string;
|
@@ -21288,6 +21525,7 @@ declare module "localization/czech" {
|
|
21288
21525
|
timerLimitSurvey: string;
|
21289
21526
|
clearCaption: string;
|
21290
21527
|
signaturePlaceHolder: string;
|
21528
|
+
signaturePlaceHolderReadOnly: string;
|
21291
21529
|
chooseFileCaption: string;
|
21292
21530
|
takePhotoCaption: string;
|
21293
21531
|
photoPlaceholder: string;
|
@@ -21383,6 +21621,7 @@ declare module "localization/danish" {
|
|
21383
21621
|
savingData: string;
|
21384
21622
|
savingDataError: string;
|
21385
21623
|
savingDataSuccess: string;
|
21624
|
+
savingExceedSize: string;
|
21386
21625
|
saveAgainButton: string;
|
21387
21626
|
timerMin: string;
|
21388
21627
|
timerSec: string;
|
@@ -21394,6 +21633,7 @@ declare module "localization/danish" {
|
|
21394
21633
|
timerLimitSurvey: string;
|
21395
21634
|
clearCaption: string;
|
21396
21635
|
signaturePlaceHolder: string;
|
21636
|
+
signaturePlaceHolderReadOnly: string;
|
21397
21637
|
chooseFileCaption: string;
|
21398
21638
|
takePhotoCaption: string;
|
21399
21639
|
photoPlaceholder: string;
|
@@ -21489,6 +21729,7 @@ declare module "localization/dutch" {
|
|
21489
21729
|
savingData: string;
|
21490
21730
|
savingDataError: string;
|
21491
21731
|
savingDataSuccess: string;
|
21732
|
+
savingExceedSize: string;
|
21492
21733
|
saveAgainButton: string;
|
21493
21734
|
timerMin: string;
|
21494
21735
|
timerSec: string;
|
@@ -21500,6 +21741,7 @@ declare module "localization/dutch" {
|
|
21500
21741
|
timerLimitSurvey: string;
|
21501
21742
|
clearCaption: string;
|
21502
21743
|
signaturePlaceHolder: string;
|
21744
|
+
signaturePlaceHolderReadOnly: string;
|
21503
21745
|
chooseFileCaption: string;
|
21504
21746
|
takePhotoCaption: string;
|
21505
21747
|
photoPlaceholder: string;
|
@@ -21596,6 +21838,7 @@ declare module "localization/estonian" {
|
|
21596
21838
|
savingData: string;
|
21597
21839
|
savingDataError: string;
|
21598
21840
|
savingDataSuccess: string;
|
21841
|
+
savingExceedSize: string;
|
21599
21842
|
saveAgainButton: string;
|
21600
21843
|
timerMin: string;
|
21601
21844
|
timerSec: string;
|
@@ -21607,6 +21850,7 @@ declare module "localization/estonian" {
|
|
21607
21850
|
timerLimitSurvey: string;
|
21608
21851
|
clearCaption: string;
|
21609
21852
|
signaturePlaceHolder: string;
|
21853
|
+
signaturePlaceHolderReadOnly: string;
|
21610
21854
|
chooseFileCaption: string;
|
21611
21855
|
takePhotoCaption: string;
|
21612
21856
|
photoPlaceholder: string;
|
@@ -21702,6 +21946,7 @@ declare module "localization/finnish" {
|
|
21702
21946
|
savingData: string;
|
21703
21947
|
savingDataError: string;
|
21704
21948
|
savingDataSuccess: string;
|
21949
|
+
savingExceedSize: string;
|
21705
21950
|
saveAgainButton: string;
|
21706
21951
|
timerMin: string;
|
21707
21952
|
timerSec: string;
|
@@ -21713,6 +21958,7 @@ declare module "localization/finnish" {
|
|
21713
21958
|
timerLimitSurvey: string;
|
21714
21959
|
clearCaption: string;
|
21715
21960
|
signaturePlaceHolder: string;
|
21961
|
+
signaturePlaceHolderReadOnly: string;
|
21716
21962
|
chooseFileCaption: string;
|
21717
21963
|
takePhotoCaption: string;
|
21718
21964
|
photoPlaceholder: string;
|
@@ -21808,6 +22054,7 @@ declare module "localization/french" {
|
|
21808
22054
|
savingData: string;
|
21809
22055
|
savingDataError: string;
|
21810
22056
|
savingDataSuccess: string;
|
22057
|
+
savingExceedSize: string;
|
21811
22058
|
saveAgainButton: string;
|
21812
22059
|
timerMin: string;
|
21813
22060
|
timerSec: string;
|
@@ -21819,6 +22066,7 @@ declare module "localization/french" {
|
|
21819
22066
|
timerLimitSurvey: string;
|
21820
22067
|
clearCaption: string;
|
21821
22068
|
signaturePlaceHolder: string;
|
22069
|
+
signaturePlaceHolderReadOnly: string;
|
21822
22070
|
chooseFileCaption: string;
|
21823
22071
|
takePhotoCaption: string;
|
21824
22072
|
photoPlaceholder: string;
|
@@ -21914,6 +22162,7 @@ declare module "localization/georgian" {
|
|
21914
22162
|
savingData: string;
|
21915
22163
|
savingDataError: string;
|
21916
22164
|
savingDataSuccess: string;
|
22165
|
+
savingExceedSize: string;
|
21917
22166
|
saveAgainButton: string;
|
21918
22167
|
timerMin: string;
|
21919
22168
|
timerSec: string;
|
@@ -21925,6 +22174,7 @@ declare module "localization/georgian" {
|
|
21925
22174
|
timerLimitSurvey: string;
|
21926
22175
|
clearCaption: string;
|
21927
22176
|
signaturePlaceHolder: string;
|
22177
|
+
signaturePlaceHolderReadOnly: string;
|
21928
22178
|
chooseFileCaption: string;
|
21929
22179
|
takePhotoCaption: string;
|
21930
22180
|
photoPlaceholder: string;
|
@@ -22020,6 +22270,7 @@ declare module "localization/german" {
|
|
22020
22270
|
savingData: string;
|
22021
22271
|
savingDataError: string;
|
22022
22272
|
savingDataSuccess: string;
|
22273
|
+
savingExceedSize: string;
|
22023
22274
|
saveAgainButton: string;
|
22024
22275
|
timerMin: string;
|
22025
22276
|
timerSec: string;
|
@@ -22031,6 +22282,7 @@ declare module "localization/german" {
|
|
22031
22282
|
timerLimitSurvey: string;
|
22032
22283
|
clearCaption: string;
|
22033
22284
|
signaturePlaceHolder: string;
|
22285
|
+
signaturePlaceHolderReadOnly: string;
|
22034
22286
|
chooseFileCaption: string;
|
22035
22287
|
takePhotoCaption: string;
|
22036
22288
|
photoPlaceholder: string;
|
@@ -22126,6 +22378,7 @@ declare module "localization/greek" {
|
|
22126
22378
|
savingData: string;
|
22127
22379
|
savingDataError: string;
|
22128
22380
|
savingDataSuccess: string;
|
22381
|
+
savingExceedSize: string;
|
22129
22382
|
saveAgainButton: string;
|
22130
22383
|
timerMin: string;
|
22131
22384
|
timerSec: string;
|
@@ -22137,6 +22390,7 @@ declare module "localization/greek" {
|
|
22137
22390
|
timerLimitSurvey: string;
|
22138
22391
|
clearCaption: string;
|
22139
22392
|
signaturePlaceHolder: string;
|
22393
|
+
signaturePlaceHolderReadOnly: string;
|
22140
22394
|
chooseFileCaption: string;
|
22141
22395
|
takePhotoCaption: string;
|
22142
22396
|
photoPlaceholder: string;
|
@@ -22232,6 +22486,7 @@ declare module "localization/hebrew" {
|
|
22232
22486
|
savingData: string;
|
22233
22487
|
savingDataError: string;
|
22234
22488
|
savingDataSuccess: string;
|
22489
|
+
savingExceedSize: string;
|
22235
22490
|
saveAgainButton: string;
|
22236
22491
|
timerMin: string;
|
22237
22492
|
timerSec: string;
|
@@ -22243,6 +22498,7 @@ declare module "localization/hebrew" {
|
|
22243
22498
|
timerLimitSurvey: string;
|
22244
22499
|
clearCaption: string;
|
22245
22500
|
signaturePlaceHolder: string;
|
22501
|
+
signaturePlaceHolderReadOnly: string;
|
22246
22502
|
chooseFileCaption: string;
|
22247
22503
|
takePhotoCaption: string;
|
22248
22504
|
photoPlaceholder: string;
|
@@ -22338,6 +22594,7 @@ declare module "localization/hindi" {
|
|
22338
22594
|
savingData: string;
|
22339
22595
|
savingDataError: string;
|
22340
22596
|
savingDataSuccess: string;
|
22597
|
+
savingExceedSize: string;
|
22341
22598
|
saveAgainButton: string;
|
22342
22599
|
timerMin: string;
|
22343
22600
|
timerSec: string;
|
@@ -22349,6 +22606,7 @@ declare module "localization/hindi" {
|
|
22349
22606
|
timerLimitSurvey: string;
|
22350
22607
|
clearCaption: string;
|
22351
22608
|
signaturePlaceHolder: string;
|
22609
|
+
signaturePlaceHolderReadOnly: string;
|
22352
22610
|
chooseFileCaption: string;
|
22353
22611
|
takePhotoCaption: string;
|
22354
22612
|
photoPlaceholder: string;
|
@@ -22444,6 +22702,7 @@ declare module "localization/hungarian" {
|
|
22444
22702
|
savingData: string;
|
22445
22703
|
savingDataError: string;
|
22446
22704
|
savingDataSuccess: string;
|
22705
|
+
savingExceedSize: string;
|
22447
22706
|
saveAgainButton: string;
|
22448
22707
|
timerMin: string;
|
22449
22708
|
timerSec: string;
|
@@ -22455,6 +22714,7 @@ declare module "localization/hungarian" {
|
|
22455
22714
|
timerLimitSurvey: string;
|
22456
22715
|
clearCaption: string;
|
22457
22716
|
signaturePlaceHolder: string;
|
22717
|
+
signaturePlaceHolderReadOnly: string;
|
22458
22718
|
chooseFileCaption: string;
|
22459
22719
|
takePhotoCaption: string;
|
22460
22720
|
photoPlaceholder: string;
|
@@ -22550,6 +22810,7 @@ declare module "localization/icelandic" {
|
|
22550
22810
|
savingData: string;
|
22551
22811
|
savingDataError: string;
|
22552
22812
|
savingDataSuccess: string;
|
22813
|
+
savingExceedSize: string;
|
22553
22814
|
saveAgainButton: string;
|
22554
22815
|
timerMin: string;
|
22555
22816
|
timerSec: string;
|
@@ -22561,6 +22822,7 @@ declare module "localization/icelandic" {
|
|
22561
22822
|
timerLimitSurvey: string;
|
22562
22823
|
clearCaption: string;
|
22563
22824
|
signaturePlaceHolder: string;
|
22825
|
+
signaturePlaceHolderReadOnly: string;
|
22564
22826
|
chooseFileCaption: string;
|
22565
22827
|
takePhotoCaption: string;
|
22566
22828
|
photoPlaceholder: string;
|
@@ -22656,6 +22918,7 @@ declare module "localization/indonesian" {
|
|
22656
22918
|
savingData: string;
|
22657
22919
|
savingDataError: string;
|
22658
22920
|
savingDataSuccess: string;
|
22921
|
+
savingExceedSize: string;
|
22659
22922
|
saveAgainButton: string;
|
22660
22923
|
timerMin: string;
|
22661
22924
|
timerSec: string;
|
@@ -22667,6 +22930,7 @@ declare module "localization/indonesian" {
|
|
22667
22930
|
timerLimitSurvey: string;
|
22668
22931
|
clearCaption: string;
|
22669
22932
|
signaturePlaceHolder: string;
|
22933
|
+
signaturePlaceHolderReadOnly: string;
|
22670
22934
|
chooseFileCaption: string;
|
22671
22935
|
takePhotoCaption: string;
|
22672
22936
|
photoPlaceholder: string;
|
@@ -22762,6 +23026,7 @@ declare module "localization/italian" {
|
|
22762
23026
|
savingData: string;
|
22763
23027
|
savingDataError: string;
|
22764
23028
|
savingDataSuccess: string;
|
23029
|
+
savingExceedSize: string;
|
22765
23030
|
saveAgainButton: string;
|
22766
23031
|
timerMin: string;
|
22767
23032
|
timerSec: string;
|
@@ -22773,6 +23038,7 @@ declare module "localization/italian" {
|
|
22773
23038
|
timerLimitSurvey: string;
|
22774
23039
|
clearCaption: string;
|
22775
23040
|
signaturePlaceHolder: string;
|
23041
|
+
signaturePlaceHolderReadOnly: string;
|
22776
23042
|
chooseFileCaption: string;
|
22777
23043
|
takePhotoCaption: string;
|
22778
23044
|
photoPlaceholder: string;
|
@@ -22868,6 +23134,7 @@ declare module "localization/japanese" {
|
|
22868
23134
|
savingData: string;
|
22869
23135
|
savingDataError: string;
|
22870
23136
|
savingDataSuccess: string;
|
23137
|
+
savingExceedSize: string;
|
22871
23138
|
saveAgainButton: string;
|
22872
23139
|
timerMin: string;
|
22873
23140
|
timerSec: string;
|
@@ -22879,6 +23146,7 @@ declare module "localization/japanese" {
|
|
22879
23146
|
timerLimitSurvey: string;
|
22880
23147
|
clearCaption: string;
|
22881
23148
|
signaturePlaceHolder: string;
|
23149
|
+
signaturePlaceHolderReadOnly: string;
|
22882
23150
|
chooseFileCaption: string;
|
22883
23151
|
takePhotoCaption: string;
|
22884
23152
|
photoPlaceholder: string;
|
@@ -22974,6 +23242,7 @@ declare module "localization/kazakh" {
|
|
22974
23242
|
savingData: string;
|
22975
23243
|
savingDataError: string;
|
22976
23244
|
savingDataSuccess: string;
|
23245
|
+
savingExceedSize: string;
|
22977
23246
|
saveAgainButton: string;
|
22978
23247
|
timerMin: string;
|
22979
23248
|
timerSec: string;
|
@@ -22985,6 +23254,7 @@ declare module "localization/kazakh" {
|
|
22985
23254
|
timerLimitSurvey: string;
|
22986
23255
|
clearCaption: string;
|
22987
23256
|
signaturePlaceHolder: string;
|
23257
|
+
signaturePlaceHolderReadOnly: string;
|
22988
23258
|
chooseFileCaption: string;
|
22989
23259
|
takePhotoCaption: string;
|
22990
23260
|
photoPlaceholder: string;
|
@@ -23080,6 +23350,7 @@ declare module "localization/korean" {
|
|
23080
23350
|
savingData: string;
|
23081
23351
|
savingDataError: string;
|
23082
23352
|
savingDataSuccess: string;
|
23353
|
+
savingExceedSize: string;
|
23083
23354
|
saveAgainButton: string;
|
23084
23355
|
timerMin: string;
|
23085
23356
|
timerSec: string;
|
@@ -23091,6 +23362,7 @@ declare module "localization/korean" {
|
|
23091
23362
|
timerLimitSurvey: string;
|
23092
23363
|
clearCaption: string;
|
23093
23364
|
signaturePlaceHolder: string;
|
23365
|
+
signaturePlaceHolderReadOnly: string;
|
23094
23366
|
chooseFileCaption: string;
|
23095
23367
|
takePhotoCaption: string;
|
23096
23368
|
photoPlaceholder: string;
|
@@ -23186,6 +23458,7 @@ declare module "localization/latvian" {
|
|
23186
23458
|
savingData: string;
|
23187
23459
|
savingDataError: string;
|
23188
23460
|
savingDataSuccess: string;
|
23461
|
+
savingExceedSize: string;
|
23189
23462
|
saveAgainButton: string;
|
23190
23463
|
timerMin: string;
|
23191
23464
|
timerSec: string;
|
@@ -23197,6 +23470,7 @@ declare module "localization/latvian" {
|
|
23197
23470
|
timerLimitSurvey: string;
|
23198
23471
|
clearCaption: string;
|
23199
23472
|
signaturePlaceHolder: string;
|
23473
|
+
signaturePlaceHolderReadOnly: string;
|
23200
23474
|
chooseFileCaption: string;
|
23201
23475
|
takePhotoCaption: string;
|
23202
23476
|
photoPlaceholder: string;
|
@@ -23292,6 +23566,7 @@ declare module "localization/lithuanian" {
|
|
23292
23566
|
savingData: string;
|
23293
23567
|
savingDataError: string;
|
23294
23568
|
savingDataSuccess: string;
|
23569
|
+
savingExceedSize: string;
|
23295
23570
|
saveAgainButton: string;
|
23296
23571
|
timerMin: string;
|
23297
23572
|
timerSec: string;
|
@@ -23303,6 +23578,7 @@ declare module "localization/lithuanian" {
|
|
23303
23578
|
timerLimitSurvey: string;
|
23304
23579
|
clearCaption: string;
|
23305
23580
|
signaturePlaceHolder: string;
|
23581
|
+
signaturePlaceHolderReadOnly: string;
|
23306
23582
|
chooseFileCaption: string;
|
23307
23583
|
takePhotoCaption: string;
|
23308
23584
|
photoPlaceholder: string;
|
@@ -23398,6 +23674,7 @@ declare module "localization/macedonian" {
|
|
23398
23674
|
savingData: string;
|
23399
23675
|
savingDataError: string;
|
23400
23676
|
savingDataSuccess: string;
|
23677
|
+
savingExceedSize: string;
|
23401
23678
|
saveAgainButton: string;
|
23402
23679
|
timerMin: string;
|
23403
23680
|
timerSec: string;
|
@@ -23409,6 +23686,7 @@ declare module "localization/macedonian" {
|
|
23409
23686
|
timerLimitSurvey: string;
|
23410
23687
|
clearCaption: string;
|
23411
23688
|
signaturePlaceHolder: string;
|
23689
|
+
signaturePlaceHolderReadOnly: string;
|
23412
23690
|
chooseFileCaption: string;
|
23413
23691
|
takePhotoCaption: string;
|
23414
23692
|
photoPlaceholder: string;
|
@@ -23504,6 +23782,7 @@ declare module "localization/malay" {
|
|
23504
23782
|
savingData: string;
|
23505
23783
|
savingDataError: string;
|
23506
23784
|
savingDataSuccess: string;
|
23785
|
+
savingExceedSize: string;
|
23507
23786
|
saveAgainButton: string;
|
23508
23787
|
timerMin: string;
|
23509
23788
|
timerSec: string;
|
@@ -23515,6 +23794,7 @@ declare module "localization/malay" {
|
|
23515
23794
|
timerLimitSurvey: string;
|
23516
23795
|
clearCaption: string;
|
23517
23796
|
signaturePlaceHolder: string;
|
23797
|
+
signaturePlaceHolderReadOnly: string;
|
23518
23798
|
chooseFileCaption: string;
|
23519
23799
|
takePhotoCaption: string;
|
23520
23800
|
photoPlaceholder: string;
|
@@ -23610,6 +23890,7 @@ declare module "localization/norwegian" {
|
|
23610
23890
|
savingData: string;
|
23611
23891
|
savingDataError: string;
|
23612
23892
|
savingDataSuccess: string;
|
23893
|
+
savingExceedSize: string;
|
23613
23894
|
saveAgainButton: string;
|
23614
23895
|
timerMin: string;
|
23615
23896
|
timerSec: string;
|
@@ -23621,6 +23902,7 @@ declare module "localization/norwegian" {
|
|
23621
23902
|
timerLimitSurvey: string;
|
23622
23903
|
clearCaption: string;
|
23623
23904
|
signaturePlaceHolder: string;
|
23905
|
+
signaturePlaceHolderReadOnly: string;
|
23624
23906
|
chooseFileCaption: string;
|
23625
23907
|
takePhotoCaption: string;
|
23626
23908
|
photoPlaceholder: string;
|
@@ -23716,6 +23998,7 @@ declare module "localization/persian" {
|
|
23716
23998
|
savingData: string;
|
23717
23999
|
savingDataError: string;
|
23718
24000
|
savingDataSuccess: string;
|
24001
|
+
savingExceedSize: string;
|
23719
24002
|
saveAgainButton: string;
|
23720
24003
|
timerMin: string;
|
23721
24004
|
timerSec: string;
|
@@ -23727,6 +24010,7 @@ declare module "localization/persian" {
|
|
23727
24010
|
timerLimitSurvey: string;
|
23728
24011
|
clearCaption: string;
|
23729
24012
|
signaturePlaceHolder: string;
|
24013
|
+
signaturePlaceHolderReadOnly: string;
|
23730
24014
|
chooseFileCaption: string;
|
23731
24015
|
takePhotoCaption: string;
|
23732
24016
|
photoPlaceholder: string;
|
@@ -23822,6 +24106,7 @@ declare module "localization/polish" {
|
|
23822
24106
|
savingData: string;
|
23823
24107
|
savingDataError: string;
|
23824
24108
|
savingDataSuccess: string;
|
24109
|
+
savingExceedSize: string;
|
23825
24110
|
saveAgainButton: string;
|
23826
24111
|
timerMin: string;
|
23827
24112
|
timerSec: string;
|
@@ -23833,6 +24118,7 @@ declare module "localization/polish" {
|
|
23833
24118
|
timerLimitSurvey: string;
|
23834
24119
|
clearCaption: string;
|
23835
24120
|
signaturePlaceHolder: string;
|
24121
|
+
signaturePlaceHolderReadOnly: string;
|
23836
24122
|
chooseFileCaption: string;
|
23837
24123
|
takePhotoCaption: string;
|
23838
24124
|
photoPlaceholder: string;
|
@@ -23928,6 +24214,7 @@ declare module "localization/portuguese" {
|
|
23928
24214
|
savingData: string;
|
23929
24215
|
savingDataError: string;
|
23930
24216
|
savingDataSuccess: string;
|
24217
|
+
savingExceedSize: string;
|
23931
24218
|
saveAgainButton: string;
|
23932
24219
|
timerMin: string;
|
23933
24220
|
timerSec: string;
|
@@ -23939,6 +24226,7 @@ declare module "localization/portuguese" {
|
|
23939
24226
|
timerLimitSurvey: string;
|
23940
24227
|
clearCaption: string;
|
23941
24228
|
signaturePlaceHolder: string;
|
24229
|
+
signaturePlaceHolderReadOnly: string;
|
23942
24230
|
chooseFileCaption: string;
|
23943
24231
|
takePhotoCaption: string;
|
23944
24232
|
photoPlaceholder: string;
|
@@ -24037,6 +24325,7 @@ declare module "localization/portuguese-br" {
|
|
24037
24325
|
savingData: string;
|
24038
24326
|
savingDataError: string;
|
24039
24327
|
savingDataSuccess: string;
|
24328
|
+
savingExceedSize: string;
|
24040
24329
|
saveAgainButton: string;
|
24041
24330
|
timerMin: string;
|
24042
24331
|
timerSec: string;
|
@@ -24048,6 +24337,7 @@ declare module "localization/portuguese-br" {
|
|
24048
24337
|
timerLimitSurvey: string;
|
24049
24338
|
clearCaption: string;
|
24050
24339
|
signaturePlaceHolder: string;
|
24340
|
+
signaturePlaceHolderReadOnly: string;
|
24051
24341
|
chooseFileCaption: string;
|
24052
24342
|
takePhotoCaption: string;
|
24053
24343
|
photoPlaceholder: string;
|
@@ -24146,6 +24436,7 @@ declare module "localization/russian" {
|
|
24146
24436
|
savingData: string;
|
24147
24437
|
savingDataError: string;
|
24148
24438
|
savingDataSuccess: string;
|
24439
|
+
savingExceedSize: string;
|
24149
24440
|
saveAgainButton: string;
|
24150
24441
|
timerMin: string;
|
24151
24442
|
timerSec: string;
|
@@ -24157,6 +24448,7 @@ declare module "localization/russian" {
|
|
24157
24448
|
timerLimitSurvey: string;
|
24158
24449
|
clearCaption: string;
|
24159
24450
|
signaturePlaceHolder: string;
|
24451
|
+
signaturePlaceHolderReadOnly: string;
|
24160
24452
|
chooseFileCaption: string;
|
24161
24453
|
takePhotoCaption: string;
|
24162
24454
|
photoPlaceholder: string;
|
@@ -24252,6 +24544,7 @@ declare module "localization/serbian" {
|
|
24252
24544
|
savingData: string;
|
24253
24545
|
savingDataError: string;
|
24254
24546
|
savingDataSuccess: string;
|
24547
|
+
savingExceedSize: string;
|
24255
24548
|
saveAgainButton: string;
|
24256
24549
|
timerMin: string;
|
24257
24550
|
timerSec: string;
|
@@ -24263,6 +24556,7 @@ declare module "localization/serbian" {
|
|
24263
24556
|
timerLimitSurvey: string;
|
24264
24557
|
clearCaption: string;
|
24265
24558
|
signaturePlaceHolder: string;
|
24559
|
+
signaturePlaceHolderReadOnly: string;
|
24266
24560
|
chooseFileCaption: string;
|
24267
24561
|
takePhotoCaption: string;
|
24268
24562
|
photoPlaceholder: string;
|
@@ -24358,6 +24652,7 @@ declare module "localization/simplified-chinese" {
|
|
24358
24652
|
savingData: string;
|
24359
24653
|
savingDataError: string;
|
24360
24654
|
savingDataSuccess: string;
|
24655
|
+
savingExceedSize: string;
|
24361
24656
|
saveAgainButton: string;
|
24362
24657
|
timerMin: string;
|
24363
24658
|
timerSec: string;
|
@@ -24369,6 +24664,7 @@ declare module "localization/simplified-chinese" {
|
|
24369
24664
|
timerLimitSurvey: string;
|
24370
24665
|
clearCaption: string;
|
24371
24666
|
signaturePlaceHolder: string;
|
24667
|
+
signaturePlaceHolderReadOnly: string;
|
24372
24668
|
chooseFileCaption: string;
|
24373
24669
|
takePhotoCaption: string;
|
24374
24670
|
photoPlaceholder: string;
|
@@ -24464,6 +24760,7 @@ declare module "localization/slovak" {
|
|
24464
24760
|
savingData: string;
|
24465
24761
|
savingDataError: string;
|
24466
24762
|
savingDataSuccess: string;
|
24763
|
+
savingExceedSize: string;
|
24467
24764
|
saveAgainButton: string;
|
24468
24765
|
timerMin: string;
|
24469
24766
|
timerSec: string;
|
@@ -24475,6 +24772,7 @@ declare module "localization/slovak" {
|
|
24475
24772
|
timerLimitSurvey: string;
|
24476
24773
|
clearCaption: string;
|
24477
24774
|
signaturePlaceHolder: string;
|
24775
|
+
signaturePlaceHolderReadOnly: string;
|
24478
24776
|
chooseFileCaption: string;
|
24479
24777
|
takePhotoCaption: string;
|
24480
24778
|
photoPlaceholder: string;
|
@@ -24570,6 +24868,7 @@ declare module "localization/spanish" {
|
|
24570
24868
|
savingData: string;
|
24571
24869
|
savingDataError: string;
|
24572
24870
|
savingDataSuccess: string;
|
24871
|
+
savingExceedSize: string;
|
24573
24872
|
saveAgainButton: string;
|
24574
24873
|
timerMin: string;
|
24575
24874
|
timerSec: string;
|
@@ -24581,6 +24880,7 @@ declare module "localization/spanish" {
|
|
24581
24880
|
timerLimitSurvey: string;
|
24582
24881
|
clearCaption: string;
|
24583
24882
|
signaturePlaceHolder: string;
|
24883
|
+
signaturePlaceHolderReadOnly: string;
|
24584
24884
|
chooseFileCaption: string;
|
24585
24885
|
takePhotoCaption: string;
|
24586
24886
|
photoPlaceholder: string;
|
@@ -24676,6 +24976,7 @@ declare module "localization/swahili" {
|
|
24676
24976
|
savingData: string;
|
24677
24977
|
savingDataError: string;
|
24678
24978
|
savingDataSuccess: string;
|
24979
|
+
savingExceedSize: string;
|
24679
24980
|
saveAgainButton: string;
|
24680
24981
|
timerMin: string;
|
24681
24982
|
timerSec: string;
|
@@ -24687,6 +24988,7 @@ declare module "localization/swahili" {
|
|
24687
24988
|
timerLimitSurvey: string;
|
24688
24989
|
clearCaption: string;
|
24689
24990
|
signaturePlaceHolder: string;
|
24991
|
+
signaturePlaceHolderReadOnly: string;
|
24690
24992
|
chooseFileCaption: string;
|
24691
24993
|
takePhotoCaption: string;
|
24692
24994
|
photoPlaceholder: string;
|
@@ -24782,6 +25084,7 @@ declare module "localization/swedish" {
|
|
24782
25084
|
savingData: string;
|
24783
25085
|
savingDataError: string;
|
24784
25086
|
savingDataSuccess: string;
|
25087
|
+
savingExceedSize: string;
|
24785
25088
|
saveAgainButton: string;
|
24786
25089
|
timerMin: string;
|
24787
25090
|
timerSec: string;
|
@@ -24793,6 +25096,7 @@ declare module "localization/swedish" {
|
|
24793
25096
|
timerLimitSurvey: string;
|
24794
25097
|
clearCaption: string;
|
24795
25098
|
signaturePlaceHolder: string;
|
25099
|
+
signaturePlaceHolderReadOnly: string;
|
24796
25100
|
chooseFileCaption: string;
|
24797
25101
|
takePhotoCaption: string;
|
24798
25102
|
photoPlaceholder: string;
|
@@ -24952,6 +25256,7 @@ declare module "localization/thai" {
|
|
24952
25256
|
savingData: string;
|
24953
25257
|
savingDataError: string;
|
24954
25258
|
savingDataSuccess: string;
|
25259
|
+
savingExceedSize: string;
|
24955
25260
|
saveAgainButton: string;
|
24956
25261
|
timerMin: string;
|
24957
25262
|
timerSec: string;
|
@@ -24963,6 +25268,7 @@ declare module "localization/thai" {
|
|
24963
25268
|
timerLimitSurvey: string;
|
24964
25269
|
clearCaption: string;
|
24965
25270
|
signaturePlaceHolder: string;
|
25271
|
+
signaturePlaceHolderReadOnly: string;
|
24966
25272
|
chooseFileCaption: string;
|
24967
25273
|
takePhotoCaption: string;
|
24968
25274
|
photoPlaceholder: string;
|
@@ -25058,6 +25364,7 @@ declare module "localization/traditional-chinese" {
|
|
25058
25364
|
savingData: string;
|
25059
25365
|
savingDataError: string;
|
25060
25366
|
savingDataSuccess: string;
|
25367
|
+
savingExceedSize: string;
|
25061
25368
|
saveAgainButton: string;
|
25062
25369
|
timerMin: string;
|
25063
25370
|
timerSec: string;
|
@@ -25069,6 +25376,7 @@ declare module "localization/traditional-chinese" {
|
|
25069
25376
|
timerLimitSurvey: string;
|
25070
25377
|
clearCaption: string;
|
25071
25378
|
signaturePlaceHolder: string;
|
25379
|
+
signaturePlaceHolderReadOnly: string;
|
25072
25380
|
chooseFileCaption: string;
|
25073
25381
|
takePhotoCaption: string;
|
25074
25382
|
photoPlaceholder: string;
|
@@ -25164,6 +25472,7 @@ declare module "localization/turkish" {
|
|
25164
25472
|
savingData: string;
|
25165
25473
|
savingDataError: string;
|
25166
25474
|
savingDataSuccess: string;
|
25475
|
+
savingExceedSize: string;
|
25167
25476
|
saveAgainButton: string;
|
25168
25477
|
timerMin: string;
|
25169
25478
|
timerSec: string;
|
@@ -25175,6 +25484,7 @@ declare module "localization/turkish" {
|
|
25175
25484
|
timerLimitSurvey: string;
|
25176
25485
|
clearCaption: string;
|
25177
25486
|
signaturePlaceHolder: string;
|
25487
|
+
signaturePlaceHolderReadOnly: string;
|
25178
25488
|
chooseFileCaption: string;
|
25179
25489
|
takePhotoCaption: string;
|
25180
25490
|
photoPlaceholder: string;
|
@@ -25270,6 +25580,7 @@ declare module "localization/ukrainian" {
|
|
25270
25580
|
savingData: string;
|
25271
25581
|
savingDataError: string;
|
25272
25582
|
savingDataSuccess: string;
|
25583
|
+
savingExceedSize: string;
|
25273
25584
|
saveAgainButton: string;
|
25274
25585
|
timerMin: string;
|
25275
25586
|
timerSec: string;
|
@@ -25281,6 +25592,7 @@ declare module "localization/ukrainian" {
|
|
25281
25592
|
timerLimitSurvey: string;
|
25282
25593
|
clearCaption: string;
|
25283
25594
|
signaturePlaceHolder: string;
|
25595
|
+
signaturePlaceHolderReadOnly: string;
|
25284
25596
|
chooseFileCaption: string;
|
25285
25597
|
takePhotoCaption: string;
|
25286
25598
|
photoPlaceholder: string;
|
@@ -25376,6 +25688,7 @@ declare module "localization/vietnamese" {
|
|
25376
25688
|
savingData: string;
|
25377
25689
|
savingDataError: string;
|
25378
25690
|
savingDataSuccess: string;
|
25691
|
+
savingExceedSize: string;
|
25379
25692
|
saveAgainButton: string;
|
25380
25693
|
timerMin: string;
|
25381
25694
|
timerSec: string;
|
@@ -25387,6 +25700,7 @@ declare module "localization/vietnamese" {
|
|
25387
25700
|
timerLimitSurvey: string;
|
25388
25701
|
clearCaption: string;
|
25389
25702
|
signaturePlaceHolder: string;
|
25703
|
+
signaturePlaceHolderReadOnly: string;
|
25390
25704
|
chooseFileCaption: string;
|
25391
25705
|
takePhotoCaption: string;
|
25392
25706
|
photoPlaceholder: string;
|
@@ -25482,6 +25796,7 @@ declare module "localization/welsh" {
|
|
25482
25796
|
savingData: string;
|
25483
25797
|
savingDataError: string;
|
25484
25798
|
savingDataSuccess: string;
|
25799
|
+
savingExceedSize: string;
|
25485
25800
|
saveAgainButton: string;
|
25486
25801
|
timerMin: string;
|
25487
25802
|
timerSec: string;
|
@@ -25493,6 +25808,7 @@ declare module "localization/welsh" {
|
|
25493
25808
|
timerLimitSurvey: string;
|
25494
25809
|
clearCaption: string;
|
25495
25810
|
signaturePlaceHolder: string;
|
25811
|
+
signaturePlaceHolderReadOnly: string;
|
25496
25812
|
chooseFileCaption: string;
|
25497
25813
|
takePhotoCaption: string;
|
25498
25814
|
photoPlaceholder: string;
|
@@ -25588,6 +25904,7 @@ declare module "localization/telugu" {
|
|
25588
25904
|
savingData: string;
|
25589
25905
|
savingDataError: string;
|
25590
25906
|
savingDataSuccess: string;
|
25907
|
+
savingExceedSize: string;
|
25591
25908
|
saveAgainButton: string;
|
25592
25909
|
timerMin: string;
|
25593
25910
|
timerSec: string;
|
@@ -25599,6 +25916,7 @@ declare module "localization/telugu" {
|
|
25599
25916
|
timerLimitSurvey: string;
|
25600
25917
|
clearCaption: string;
|
25601
25918
|
signaturePlaceHolder: string;
|
25919
|
+
signaturePlaceHolderReadOnly: string;
|
25602
25920
|
chooseFileCaption: string;
|
25603
25921
|
takePhotoCaption: string;
|
25604
25922
|
photoPlaceholder: string;
|
@@ -25821,7 +26139,6 @@ declare module "react/components/popup/popup" {
|
|
25821
26139
|
render(): JSX.Element;
|
25822
26140
|
}
|
25823
26141
|
export class PopupContainer extends SurveyElementBase<any, any> {
|
25824
|
-
prevIsVisible: boolean;
|
25825
26142
|
constructor(props: any);
|
25826
26143
|
handleKeydown: (event: any) => void;
|
25827
26144
|
get model(): PopupBaseViewModel;
|
@@ -26351,7 +26668,7 @@ declare module "react/reactquestion_ranking" {
|
|
26351
26668
|
protected get question(): QuestionRankingModel;
|
26352
26669
|
protected renderElement(): JSX.Element;
|
26353
26670
|
protected getItems(choices?: any, unrankedItem?: boolean): Array<any>;
|
26354
|
-
protected renderItem(item: ItemValue, i: number, handleKeydown: (event: any) => void, handlePointerDown: (event: PointerEvent) => void, cssClasses: any, itemClass: string, question: QuestionRankingModel, unrankedItem?: boolean): JSX.Element;
|
26671
|
+
protected renderItem(item: ItemValue, i: number, handleKeydown: (event: any) => void, handlePointerDown: (event: PointerEvent) => void, handlePointerUp: (event: PointerEvent) => void, cssClasses: any, itemClass: string, question: QuestionRankingModel, unrankedItem?: boolean): JSX.Element;
|
26355
26672
|
}
|
26356
26673
|
export class SurveyQuestionRankingItem extends ReactSurveyElement {
|
26357
26674
|
protected get text(): string;
|
@@ -26359,6 +26676,7 @@ declare module "react/reactquestion_ranking" {
|
|
26359
26676
|
protected get indexText(): string;
|
26360
26677
|
protected get handleKeydown(): (event: any) => void;
|
26361
26678
|
protected get handlePointerDown(): (event: any) => void;
|
26679
|
+
protected get handlePointerUp(): (event: any) => void;
|
26362
26680
|
protected get cssClasses(): any;
|
26363
26681
|
protected get itemClass(): string;
|
26364
26682
|
protected get itemTabIndex(): number;
|
@@ -26726,11 +27044,15 @@ declare module "react/components/matrix/row" {
|
|
26726
27044
|
parentMatrix: QuestionMatrixDropdownModelBase;
|
26727
27045
|
}
|
26728
27046
|
export class MatrixRow extends SurveyElementBase<IMatrixRowProps, any> {
|
27047
|
+
private root;
|
26729
27048
|
constructor(props: IMatrixRowProps);
|
26730
27049
|
get model(): QuestionMatrixDropdownRenderedRow;
|
26731
27050
|
get parentMatrix(): QuestionMatrixDropdownModelBase;
|
26732
27051
|
protected getStateElement(): QuestionMatrixDropdownRenderedRow;
|
26733
27052
|
protected onPointerDownHandler: (event: any) => void;
|
27053
|
+
componentDidMount(): void;
|
27054
|
+
componentWillUnmount(): void;
|
27055
|
+
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
|
26734
27056
|
render(): JSX.Element;
|
26735
27057
|
}
|
26736
27058
|
}
|
@@ -26836,13 +27158,6 @@ declare module "react/components/paneldynamic-actions/paneldynamic-progress-text
|
|
26836
27158
|
protected renderElement(): JSX.Element;
|
26837
27159
|
}
|
26838
27160
|
}
|
26839
|
-
declare module "react/components/paneldynamic-actions/paneldynamic-remove-btn" {
|
26840
|
-
import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
|
26841
|
-
export class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
|
26842
|
-
protected handleClick: (event: any) => void;
|
26843
|
-
protected renderElement(): JSX.Element;
|
26844
|
-
}
|
26845
|
-
}
|
26846
27161
|
declare module "react/reactquestion_paneldynamic" {
|
26847
27162
|
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
26848
27163
|
import { SurveyModel, QuestionPanelDynamicModel } from "entries/core";
|
@@ -27122,6 +27437,13 @@ declare module "react/components/matrix-actions/detail-button/detail-button" {
|
|
27122
27437
|
protected renderElement(): JSX.Element;
|
27123
27438
|
}
|
27124
27439
|
}
|
27440
|
+
declare module "react/components/paneldynamic-actions/paneldynamic-remove-btn" {
|
27441
|
+
import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
|
27442
|
+
export class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
|
27443
|
+
protected handleClick: (event: any) => void;
|
27444
|
+
protected renderElement(): JSX.Element;
|
27445
|
+
}
|
27446
|
+
}
|
27125
27447
|
declare module "react/components/survey-actions/survey-nav-button" {
|
27126
27448
|
import { Action } from "entries/core";
|
27127
27449
|
import { ReactSurveyElement } from "react/reactquestion_element";
|