survey-react 1.11.9 → 1.11.11
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 +59 -8
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +31 -7
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +43 -11
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +1343 -1218
- package/survey.react.js +76741 -83144
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare module "global_variables_utils" {
|
2
|
+
declare module "packages/survey-core/src/global_variables_utils" {
|
3
3
|
export class DomWindowHelper {
|
4
4
|
static isAvailable(): boolean;
|
5
5
|
static isFileReaderAvailable(): boolean;
|
@@ -31,7 +31,7 @@ declare module "global_variables_utils" {
|
|
31
31
|
static removeEventListener(type: string, listener: (e?: any) => void): void;
|
32
32
|
}
|
33
33
|
}
|
34
|
-
declare module "helpers" {
|
34
|
+
declare module "packages/survey-core/src/helpers" {
|
35
35
|
export interface HashTable<T = any> {
|
36
36
|
[key: string]: T;
|
37
37
|
}
|
@@ -52,6 +52,8 @@ declare module "helpers" {
|
|
52
52
|
static isValueObject(val: any, excludeArray?: boolean): boolean;
|
53
53
|
static isNumber(value: any): boolean;
|
54
54
|
static getNumber(value: any): number;
|
55
|
+
private static getNumberCore;
|
56
|
+
private static isStringHasOperator;
|
55
57
|
private static prepareStringToNumber;
|
56
58
|
static getMaxLength(maxLength: number, surveyLength: number): any;
|
57
59
|
static getRemainingCharacterCounterText(newValue: string | undefined, maxLength: number | null): string;
|
@@ -72,7 +74,7 @@ declare module "helpers" {
|
|
72
74
|
static compareVerions(ver1: string, ver2: string): number;
|
73
75
|
}
|
74
76
|
}
|
75
|
-
declare module "localization/english" {
|
77
|
+
declare module "packages/survey-core/src/localization/english" {
|
76
78
|
export var englishStrings: {
|
77
79
|
pagePrevText: string;
|
78
80
|
pageNextText: string;
|
@@ -181,7 +183,7 @@ declare module "localization/english" {
|
|
181
183
|
cancel: string;
|
182
184
|
};
|
183
185
|
}
|
184
|
-
declare module "surveyStrings" {
|
186
|
+
declare module "packages/survey-core/src/surveyStrings" {
|
185
187
|
export var surveyLocalization: {
|
186
188
|
currentLocaleValue: string;
|
187
189
|
defaultLocaleValue: string;
|
@@ -310,8 +312,8 @@ declare module "surveyStrings" {
|
|
310
312
|
cancel: string;
|
311
313
|
};
|
312
314
|
}
|
313
|
-
declare module "conditionProcessValue" {
|
314
|
-
import { HashTable } from "helpers";
|
315
|
+
declare module "packages/survey-core/src/conditionProcessValue" {
|
316
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
315
317
|
export class ProcessValue {
|
316
318
|
values: HashTable<any>;
|
317
319
|
properties: HashTable<any>;
|
@@ -335,7 +337,7 @@ declare module "conditionProcessValue" {
|
|
335
337
|
private getIntValue;
|
336
338
|
}
|
337
339
|
}
|
338
|
-
declare module "console-warnings" {
|
340
|
+
declare module "packages/survey-core/src/console-warnings" {
|
339
341
|
export class ConsoleWarnings {
|
340
342
|
static disposedObjectChangedProperty(propName: string, objType: string): void;
|
341
343
|
static inCorrectQuestionValue(questionName: string, val: any): void;
|
@@ -343,8 +345,8 @@ declare module "console-warnings" {
|
|
343
345
|
static error(text: string): void;
|
344
346
|
}
|
345
347
|
}
|
346
|
-
declare module "functionsfactory" {
|
347
|
-
import { HashTable } from "helpers";
|
348
|
+
declare module "packages/survey-core/src/functionsfactory" {
|
349
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
348
350
|
export class FunctionFactory {
|
349
351
|
static Instance: FunctionFactory;
|
350
352
|
private functionHash;
|
@@ -359,9 +361,9 @@ declare module "functionsfactory" {
|
|
359
361
|
}
|
360
362
|
export var registerFunction: (name: string, func: (params: any[], originalParams?: any[]) => any, isAsync?: boolean) => void;
|
361
363
|
}
|
362
|
-
declare module "expressions/expressions" {
|
363
|
-
import { HashTable } from "helpers";
|
364
|
-
import { ProcessValue } from "conditionProcessValue";
|
364
|
+
declare module "packages/survey-core/src/expressions/expressions" {
|
365
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
366
|
+
import { ProcessValue } from "packages/survey-core/src/conditionProcessValue";
|
365
367
|
export abstract class Operand {
|
366
368
|
toString(func?: (op: Operand) => string): string;
|
367
369
|
abstract getType(): string;
|
@@ -439,7 +441,6 @@ declare module "expressions/expressions" {
|
|
439
441
|
protected getCorrectValue(value: any): any;
|
440
442
|
protected isContentEqual(op: Operand): boolean;
|
441
443
|
private isQuote;
|
442
|
-
private isBooleanValue;
|
443
444
|
}
|
444
445
|
export class Variable extends Const {
|
445
446
|
private variableName;
|
@@ -480,8 +481,6 @@ declare module "expressions/expressions" {
|
|
480
481
|
static throwInvalidOperatorError(op: string): void;
|
481
482
|
static safeToString(operand: Operand, func: (op: Operand) => string): string;
|
482
483
|
static toOperandString(value: string): string;
|
483
|
-
static isSpaceString(str: string): boolean;
|
484
|
-
static isNumeric(value: string): boolean;
|
485
484
|
static isBooleanValue(value: string): boolean;
|
486
485
|
static countDecimals(value: number): number;
|
487
486
|
static plusMinus(a: number, b: number, res: number): number;
|
@@ -493,7 +492,7 @@ declare module "expressions/expressions" {
|
|
493
492
|
static signs: HashTable<string>;
|
494
493
|
}
|
495
494
|
}
|
496
|
-
declare module "expressions/expressionParser" {
|
495
|
+
declare module "packages/survey-core/src/expressions/expressionParser" {
|
497
496
|
export interface IFilePosition {
|
498
497
|
offset: number;
|
499
498
|
line: number;
|
@@ -549,8 +548,8 @@ declare module "expressions/expressionParser" {
|
|
549
548
|
export type ParseFunction = (input: string, options?: IParseOptions) => any;
|
550
549
|
export const parse: ParseFunction;
|
551
550
|
}
|
552
|
-
declare module "conditionsParser" {
|
553
|
-
import { Operand } from "expressions/expressions";
|
551
|
+
declare module "packages/survey-core/src/conditionsParser" {
|
552
|
+
import { Operand } from "packages/survey-core/src/expressions/expressions";
|
554
553
|
export class ConditionsParserError {
|
555
554
|
at: number;
|
556
555
|
code: string;
|
@@ -565,8 +564,8 @@ declare module "conditionsParser" {
|
|
565
564
|
get error(): ConditionsParserError;
|
566
565
|
}
|
567
566
|
}
|
568
|
-
declare module "conditions" {
|
569
|
-
import { HashTable } from "helpers";
|
567
|
+
declare module "packages/survey-core/src/conditions" {
|
568
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
570
569
|
/**
|
571
570
|
* Base interface for expression execution
|
572
571
|
*/
|
@@ -654,7 +653,7 @@ declare module "conditions" {
|
|
654
653
|
protected doOnComplete(res: any): void;
|
655
654
|
}
|
656
655
|
}
|
657
|
-
declare module "utils/cssClassBuilder" {
|
656
|
+
declare module "packages/survey-core/src/utils/cssClassBuilder" {
|
658
657
|
export class CssClassBuilder {
|
659
658
|
private classes;
|
660
659
|
isEmpty(): boolean;
|
@@ -662,7 +661,7 @@ declare module "utils/cssClassBuilder" {
|
|
662
661
|
toString(): string;
|
663
662
|
}
|
664
663
|
}
|
665
|
-
declare module "utils/taskmanager" {
|
664
|
+
declare module "packages/survey-core/src/utils/taskmanager" {
|
666
665
|
export interface IExecutable {
|
667
666
|
id?: string;
|
668
667
|
execute: () => void;
|
@@ -692,8 +691,8 @@ declare module "utils/taskmanager" {
|
|
692
691
|
cancel: () => void;
|
693
692
|
};
|
694
693
|
}
|
695
|
-
declare module "utils/animation" {
|
696
|
-
import { EventBase, Base } from "base";
|
694
|
+
declare module "packages/survey-core/src/utils/animation" {
|
695
|
+
import { EventBase, Base } from "packages/survey-core/src/base";
|
697
696
|
export interface AnimationOptions {
|
698
697
|
cssClass: string;
|
699
698
|
onBeforeRunAnimation?: (element: HTMLElement) => void;
|
@@ -773,12 +772,12 @@ declare module "utils/animation" {
|
|
773
772
|
protected _sync(newValue: [T]): void;
|
774
773
|
}
|
775
774
|
}
|
776
|
-
declare module "popup-view-model" {
|
777
|
-
import { Base, EventBase } from "base";
|
778
|
-
import { PopupModel } from "popup";
|
779
|
-
import { CssClassBuilder } from "utils/cssClassBuilder";
|
780
|
-
import { ActionContainer } from "actions/container";
|
781
|
-
import { AnimationOptions, IAnimationConsumer } from "utils/animation";
|
775
|
+
declare module "packages/survey-core/src/popup-view-model" {
|
776
|
+
import { Base, EventBase } from "packages/survey-core/src/base";
|
777
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
778
|
+
import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
|
779
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
780
|
+
import { AnimationOptions, IAnimationConsumer } from "packages/survey-core/src/utils/animation";
|
782
781
|
export const FOCUS_INPUT_SELECTOR = "input:not(:disabled):not([readonly]):not([type=hidden]),select:not(:disabled):not([readonly]),textarea:not(:disabled):not([readonly]), button:not(:disabled):not([readonly]), [tabindex]:not([tabindex^=\"-\"])";
|
783
782
|
export class PopupBaseViewModel extends Base implements IAnimationConsumer {
|
784
783
|
protected popupSelector: string;
|
@@ -856,8 +855,8 @@ declare module "popup-view-model" {
|
|
856
855
|
protected preventScrollOuside(event: any, deltaY: number): void;
|
857
856
|
}
|
858
857
|
}
|
859
|
-
declare module "utils/utils" {
|
860
|
-
import { PopupBaseViewModel } from "popup-view-model";
|
858
|
+
declare module "packages/survey-core/src/utils/utils" {
|
859
|
+
import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
|
861
860
|
function compareVersions(a: any, b: any): number;
|
862
861
|
function confirmAction(message: string): boolean;
|
863
862
|
function confirmActionAsync(message: string, funcOnYes: () => void, funcOnNo?: () => void, locale?: string, rootElement?: HTMLElement): void;
|
@@ -874,6 +873,7 @@ declare module "utils/utils" {
|
|
874
873
|
function wrapUrlForBackgroundImage(url: string): string;
|
875
874
|
function getIconNameFromProxy(iconName: string): string;
|
876
875
|
function createSvg(size: number | string, width: number, height: number, iconName: string, svgElem: any, title: string): void;
|
876
|
+
export function getSafeUrl(url: string): string;
|
877
877
|
export function unwrap<T>(value: T | (() => T)): T;
|
878
878
|
export function getRenderedSize(val: string | number): number;
|
879
879
|
export function getRenderedStyleSize(val: string | number): string;
|
@@ -915,10 +915,10 @@ declare module "utils/utils" {
|
|
915
915
|
export function roundTo2Decimals(number: number): number;
|
916
916
|
export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, scrollElementByChildId, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, chooseFiles };
|
917
917
|
}
|
918
|
-
declare module "actions/container" {
|
919
|
-
import { Base } from "base";
|
920
|
-
import { IAction, Action, BaseAction } from "actions/action";
|
921
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
918
|
+
declare module "packages/survey-core/src/actions/container" {
|
919
|
+
import { Base } from "packages/survey-core/src/base";
|
920
|
+
import { IAction, Action, BaseAction } from "packages/survey-core/src/actions/action";
|
921
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
922
922
|
export let defaultActionBarCss: {
|
923
923
|
root: string;
|
924
924
|
defaultSizeMode: string;
|
@@ -973,7 +973,7 @@ declare module "actions/container" {
|
|
973
973
|
dispose(): void;
|
974
974
|
}
|
975
975
|
}
|
976
|
-
declare module "element-helper" {
|
976
|
+
declare module "packages/survey-core/src/element-helper" {
|
977
977
|
export class ElementHelper {
|
978
978
|
static focusElement(element: Element): void;
|
979
979
|
static visibility(node: Element): boolean;
|
@@ -983,10 +983,10 @@ declare module "element-helper" {
|
|
983
983
|
static hasVerticalScroller(element: HTMLElement): boolean;
|
984
984
|
}
|
985
985
|
}
|
986
|
-
declare module "list" {
|
987
|
-
import { ActionContainer } from "actions/container";
|
988
|
-
import { Action, BaseAction, IAction } from "actions/action";
|
989
|
-
import { ILocalizableOwner } from "localizablestring";
|
986
|
+
declare module "packages/survey-core/src/list" {
|
987
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
988
|
+
import { Action, BaseAction, IAction } from "packages/survey-core/src/actions/action";
|
989
|
+
import { ILocalizableOwner } from "packages/survey-core/src/localizablestring";
|
990
990
|
export let defaultListCss: {
|
991
991
|
root: string;
|
992
992
|
item: string;
|
@@ -1120,11 +1120,11 @@ declare module "list" {
|
|
1120
1120
|
dispose(): void;
|
1121
1121
|
}
|
1122
1122
|
}
|
1123
|
-
declare module "actions/action" {
|
1124
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
1125
|
-
import { Base, ComputedUpdater } from "base";
|
1126
|
-
import { IListModel } from "list";
|
1127
|
-
import { IPopupOptionsBase, PopupModel } from "popup";
|
1123
|
+
declare module "packages/survey-core/src/actions/action" {
|
1124
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
1125
|
+
import { Base, ComputedUpdater } from "packages/survey-core/src/base";
|
1126
|
+
import { IListModel } from "packages/survey-core/src/list";
|
1127
|
+
import { IPopupOptionsBase, PopupModel } from "packages/survey-core/src/popup";
|
1128
1128
|
export type actionModeType = "large" | "small" | "popup" | "removed";
|
1129
1129
|
/**
|
1130
1130
|
* An action item.
|
@@ -1417,9 +1417,9 @@ declare module "actions/action" {
|
|
1417
1417
|
dispose(): void;
|
1418
1418
|
}
|
1419
1419
|
}
|
1420
|
-
declare module "utils/responsivity-manager" {
|
1421
|
-
import { Action } from "actions/action";
|
1422
|
-
import { AdaptiveActionContainer } from "actions/adaptive-container";
|
1420
|
+
declare module "packages/survey-core/src/utils/responsivity-manager" {
|
1421
|
+
import { Action } from "packages/survey-core/src/actions/action";
|
1422
|
+
import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
|
1423
1423
|
interface IDimensions {
|
1424
1424
|
scroll: number;
|
1425
1425
|
offset: number;
|
@@ -1459,10 +1459,10 @@ declare module "utils/responsivity-manager" {
|
|
1459
1459
|
protected calcActionDimensions(currentAction: Action, item: HTMLDivElement): void;
|
1460
1460
|
}
|
1461
1461
|
}
|
1462
|
-
declare module "actions/adaptive-container" {
|
1463
|
-
import { ListModel } from "list";
|
1464
|
-
import { Action, actionModeType } from "actions/action";
|
1465
|
-
import { ActionContainer } from "actions/container";
|
1462
|
+
declare module "packages/survey-core/src/actions/adaptive-container" {
|
1463
|
+
import { ListModel } from "packages/survey-core/src/list";
|
1464
|
+
import { Action, actionModeType } from "packages/survey-core/src/actions/action";
|
1465
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
1466
1466
|
export class AdaptiveActionContainer<T extends Action = Action> extends ActionContainer<T> {
|
1467
1467
|
dotsItem: Action;
|
1468
1468
|
private responsivityManager;
|
@@ -1486,9 +1486,9 @@ declare module "actions/adaptive-container" {
|
|
1486
1486
|
dispose(): void;
|
1487
1487
|
}
|
1488
1488
|
}
|
1489
|
-
declare module "survey-error" {
|
1490
|
-
import { ISurveyErrorOwner } from "base-interfaces";
|
1491
|
-
import { LocalizableString } from "localizablestring";
|
1489
|
+
declare module "packages/survey-core/src/survey-error" {
|
1490
|
+
import { ISurveyErrorOwner } from "packages/survey-core/src/base-interfaces";
|
1491
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
1492
1492
|
export class SurveyError {
|
1493
1493
|
text: string;
|
1494
1494
|
protected errorOwner: ISurveyErrorOwner;
|
@@ -1506,7 +1506,7 @@ declare module "survey-error" {
|
|
1506
1506
|
updateText(): void;
|
1507
1507
|
}
|
1508
1508
|
}
|
1509
|
-
declare module "defaultCss/defaultV2Css" {
|
1509
|
+
declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
|
1510
1510
|
export var surveyCss: any;
|
1511
1511
|
export var defaultV2Css: {
|
1512
1512
|
root: string;
|
@@ -1581,6 +1581,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
1581
1581
|
footer: string;
|
1582
1582
|
requiredText: string;
|
1583
1583
|
header: string;
|
1584
|
+
headerHidden: string;
|
1584
1585
|
collapsed: string;
|
1585
1586
|
expanded: string;
|
1586
1587
|
expandable: string;
|
@@ -2362,10 +2363,10 @@ declare module "defaultCss/defaultV2Css" {
|
|
2362
2363
|
};
|
2363
2364
|
export const defaultV2ThemeName = "defaultV2";
|
2364
2365
|
}
|
2365
|
-
declare module "trigger" {
|
2366
|
-
import { HashTable } from "helpers";
|
2367
|
-
import { Base } from "base";
|
2368
|
-
import { ISurvey } from "base-interfaces";
|
2366
|
+
declare module "packages/survey-core/src/trigger" {
|
2367
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
2368
|
+
import { Base } from "packages/survey-core/src/base";
|
2369
|
+
import { ISurvey } from "packages/survey-core/src/base-interfaces";
|
2369
2370
|
/**
|
2370
2371
|
* A base class for all triggers.
|
2371
2372
|
* A trigger calls a method when the expression change the result: from false to true or from true to false.
|
@@ -2519,10 +2520,10 @@ declare module "trigger" {
|
|
2519
2520
|
protected getUsedVariables(): string[];
|
2520
2521
|
}
|
2521
2522
|
}
|
2522
|
-
declare module "calculatedValue" {
|
2523
|
-
import { HashTable } from "helpers";
|
2524
|
-
import { Base } from "base";
|
2525
|
-
import { ISurvey, ISurveyData } from "base-interfaces";
|
2523
|
+
declare module "packages/survey-core/src/calculatedValue" {
|
2524
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
2525
|
+
import { Base } from "packages/survey-core/src/base";
|
2526
|
+
import { ISurvey, ISurveyData } from "packages/survey-core/src/base-interfaces";
|
2526
2527
|
/**
|
2527
2528
|
* The calculated value is a way to define the variable in Survey Creator.
|
2528
2529
|
* It has two main properties: name and expression. Based on expression the value read-only property is automatically calculated.
|
@@ -2570,8 +2571,8 @@ declare module "calculatedValue" {
|
|
2570
2571
|
private ensureExpression;
|
2571
2572
|
}
|
2572
2573
|
}
|
2573
|
-
declare module "panel-layout-column" {
|
2574
|
-
import { Base } from "base";
|
2574
|
+
declare module "packages/survey-core/src/panel-layout-column" {
|
2575
|
+
import { Base } from "packages/survey-core/src/base";
|
2575
2576
|
export class PanelLayoutColumnModel extends Base {
|
2576
2577
|
width: number;
|
2577
2578
|
effectiveWidth: number;
|
@@ -2581,10 +2582,10 @@ declare module "panel-layout-column" {
|
|
2581
2582
|
isEmpty(): boolean;
|
2582
2583
|
}
|
2583
2584
|
}
|
2584
|
-
declare module "textPreProcessor" {
|
2585
|
-
import { Question } from "question";
|
2586
|
-
import { PanelModel } from "panel";
|
2587
|
-
import { ISurvey, ITextProcessor } from "base-interfaces";
|
2585
|
+
declare module "packages/survey-core/src/textPreProcessor" {
|
2586
|
+
import { Question } from "packages/survey-core/src/question";
|
2587
|
+
import { PanelModel } from "packages/survey-core/src/panel";
|
2588
|
+
import { ISurvey, ITextProcessor } from "packages/survey-core/src/base-interfaces";
|
2588
2589
|
export class TextPreProcessorItem {
|
2589
2590
|
start: number;
|
2590
2591
|
end: number;
|
@@ -2626,9 +2627,9 @@ declare module "textPreProcessor" {
|
|
2626
2627
|
private processTextCore;
|
2627
2628
|
}
|
2628
2629
|
}
|
2629
|
-
declare module "error" {
|
2630
|
-
import { SurveyError } from "survey-error";
|
2631
|
-
import { ISurveyErrorOwner } from "base-interfaces";
|
2630
|
+
declare module "packages/survey-core/src/error" {
|
2631
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
2632
|
+
import { ISurveyErrorOwner } from "packages/survey-core/src/base-interfaces";
|
2632
2633
|
export class AnswerRequiredError extends SurveyError {
|
2633
2634
|
text: string;
|
2634
2635
|
constructor(text?: string, errorOwner?: ISurveyErrorOwner);
|
@@ -2709,17 +2710,17 @@ declare module "error" {
|
|
2709
2710
|
getErrorType(): string;
|
2710
2711
|
}
|
2711
2712
|
}
|
2712
|
-
declare module "question_custom" {
|
2713
|
-
import { Question, IConditionObject } from "question";
|
2714
|
-
import { JsonObjectProperty } from "jsonobject";
|
2715
|
-
import { Base } from "base";
|
2716
|
-
import { ISurveyImpl, ISurveyData, ITextProcessor, IPanel, IElement, IQuestion, IProgressInfo } from "base-interfaces";
|
2717
|
-
import { SurveyElement } from "survey-element";
|
2718
|
-
import { PanelModel } from "panel";
|
2719
|
-
import { PanelLayoutColumnModel } from "panel-layout-column";
|
2720
|
-
import { HashTable } from "helpers";
|
2721
|
-
import { ItemValue } from "itemvalue";
|
2722
|
-
import { SurveyError } from "survey-error";
|
2713
|
+
declare module "packages/survey-core/src/question_custom" {
|
2714
|
+
import { Question, IConditionObject } from "packages/survey-core/src/question";
|
2715
|
+
import { JsonObjectProperty } from "packages/survey-core/src/jsonobject";
|
2716
|
+
import { Base } from "packages/survey-core/src/base";
|
2717
|
+
import { ISurveyImpl, ISurveyData, ITextProcessor, IPanel, IElement, IQuestion, IProgressInfo } from "packages/survey-core/src/base-interfaces";
|
2718
|
+
import { SurveyElement } from "packages/survey-core/src/survey-element";
|
2719
|
+
import { PanelModel } from "packages/survey-core/src/panel";
|
2720
|
+
import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
|
2721
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
2722
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
2723
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
2723
2724
|
/**
|
2724
2725
|
* An interface used to create custom question types.
|
2725
2726
|
*
|
@@ -3161,9 +3162,9 @@ declare module "question_custom" {
|
|
3161
3162
|
private setAfterRenderCallbacks;
|
3162
3163
|
}
|
3163
3164
|
}
|
3164
|
-
declare module "questionfactory" {
|
3165
|
-
import { Question } from "question";
|
3166
|
-
import { IElement } from "base-interfaces";
|
3165
|
+
declare module "packages/survey-core/src/questionfactory" {
|
3166
|
+
import { Question } from "packages/survey-core/src/question";
|
3167
|
+
import { IElement } from "packages/survey-core/src/base-interfaces";
|
3167
3168
|
export class QuestionFactory {
|
3168
3169
|
static Instance: QuestionFactory;
|
3169
3170
|
static get DefaultChoices(): string[];
|
@@ -3190,8 +3191,8 @@ declare module "questionfactory" {
|
|
3190
3191
|
private getAllTypesCore;
|
3191
3192
|
}
|
3192
3193
|
}
|
3193
|
-
declare module "drag-drop-helper-v1" {
|
3194
|
-
import { IElement, ISurveyElement } from "base-interfaces";
|
3194
|
+
declare module "packages/survey-core/src/drag-drop-helper-v1" {
|
3195
|
+
import { IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
|
3195
3196
|
export class DragDropInfo {
|
3196
3197
|
source: IElement;
|
3197
3198
|
target: IElement;
|
@@ -3202,10 +3203,10 @@ declare module "drag-drop-helper-v1" {
|
|
3202
3203
|
isEdge: boolean;
|
3203
3204
|
}
|
3204
3205
|
}
|
3205
|
-
declare module "drag-drop-panel-helper-v1" {
|
3206
|
-
import { IElement, ISurveyElement } from "base-interfaces";
|
3207
|
-
import { DragDropInfo } from "drag-drop-helper-v1";
|
3208
|
-
import { PanelModelBase, QuestionRowModel } from "panel";
|
3206
|
+
declare module "packages/survey-core/src/drag-drop-panel-helper-v1" {
|
3207
|
+
import { IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
|
3208
|
+
import { DragDropInfo } from "packages/survey-core/src/drag-drop-helper-v1";
|
3209
|
+
import { PanelModelBase, QuestionRowModel } from "packages/survey-core/src/panel";
|
3209
3210
|
export class DragDropPanelHelperV1 {
|
3210
3211
|
private panel;
|
3211
3212
|
constructor(panel: PanelModelBase);
|
@@ -3220,20 +3221,20 @@ declare module "drag-drop-panel-helper-v1" {
|
|
3220
3221
|
private dragDropAddTargetToEmptyPanelCore;
|
3221
3222
|
}
|
3222
3223
|
}
|
3223
|
-
declare module "panel" {
|
3224
|
-
import { HashTable } from "helpers";
|
3225
|
-
import { Base } from "base";
|
3226
|
-
import { ISurveyImpl, IPage, IPanel, IConditionRunner, IElement, ISurveyElement, IQuestion, ISurveyErrorOwner, ITitleOwner, IProgressInfo, ISurvey, IFindElement } from "base-interfaces";
|
3227
|
-
import { DragTypeOverMeEnum, SurveyElement } from "survey-element";
|
3228
|
-
import { Question } from "question";
|
3229
|
-
import { LocalizableString } from "localizablestring";
|
3230
|
-
import { findScrollableParent } from "utils/utils";
|
3231
|
-
import { SurveyError } from "survey-error";
|
3232
|
-
import { IAction } from "actions/action";
|
3233
|
-
import { ActionContainer } from "actions/container";
|
3234
|
-
import { DragDropInfo } from "drag-drop-helper-v1";
|
3235
|
-
import { AnimationGroup } from "utils/animation";
|
3236
|
-
import { PanelLayoutColumnModel } from "panel-layout-column";
|
3224
|
+
declare module "packages/survey-core/src/panel" {
|
3225
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
3226
|
+
import { Base } from "packages/survey-core/src/base";
|
3227
|
+
import { ISurveyImpl, IPage, IPanel, IConditionRunner, IElement, ISurveyElement, IQuestion, ISurveyErrorOwner, ITitleOwner, IProgressInfo, ISurvey, IFindElement } from "packages/survey-core/src/base-interfaces";
|
3228
|
+
import { DragTypeOverMeEnum, SurveyElement } from "packages/survey-core/src/survey-element";
|
3229
|
+
import { Question } from "packages/survey-core/src/question";
|
3230
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
3231
|
+
import { findScrollableParent } from "packages/survey-core/src/utils/utils";
|
3232
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
3233
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
3234
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
3235
|
+
import { DragDropInfo } from "packages/survey-core/src/drag-drop-helper-v1";
|
3236
|
+
import { AnimationGroup } from "packages/survey-core/src/utils/animation";
|
3237
|
+
import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
|
3237
3238
|
export class QuestionRowModel extends Base {
|
3238
3239
|
panel: PanelModelBase;
|
3239
3240
|
private static rowCounter;
|
@@ -3704,6 +3705,7 @@ declare module "panel" {
|
|
3704
3705
|
private calcHasTextInTitle;
|
3705
3706
|
onSurveyLoad(): void;
|
3706
3707
|
protected onSetData(): void;
|
3708
|
+
get cssHeader(): string;
|
3707
3709
|
get isPanel(): boolean;
|
3708
3710
|
/**
|
3709
3711
|
* Returns a page to which the panel belongs and allows you to move this panel to a different page.
|
@@ -3815,7 +3817,7 @@ declare module "panel" {
|
|
3815
3817
|
getContainerCss(): string;
|
3816
3818
|
}
|
3817
3819
|
}
|
3818
|
-
declare module "utils/camera" {
|
3820
|
+
declare module "packages/survey-core/src/utils/camera" {
|
3819
3821
|
export class Camera {
|
3820
3822
|
static mediaDevicesCallback: ((callback: (devices: Array<MediaDeviceInfo>) => void) => void) | undefined;
|
3821
3823
|
static clear(): void;
|
@@ -3844,15 +3846,15 @@ declare module "utils/camera" {
|
|
3844
3846
|
private setVideoInputs;
|
3845
3847
|
}
|
3846
3848
|
}
|
3847
|
-
declare module "question_file" {
|
3848
|
-
import { IPlainDataOptions } from "base-interfaces";
|
3849
|
-
import { IQuestionPlainData, Question } from "question";
|
3850
|
-
import { EventBase } from "base";
|
3851
|
-
import { SurveyError } from "survey-error";
|
3852
|
-
import { ActionContainer } from "actions/container";
|
3853
|
-
import { Action } from "actions/action";
|
3854
|
-
import { Camera } from "utils/camera";
|
3855
|
-
import { LocalizableString } from "localizablestring";
|
3849
|
+
declare module "packages/survey-core/src/question_file" {
|
3850
|
+
import { IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
|
3851
|
+
import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
|
3852
|
+
import { EventBase } from "packages/survey-core/src/base";
|
3853
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
3854
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
3855
|
+
import { Action } from "packages/survey-core/src/actions/action";
|
3856
|
+
import { Camera } from "packages/survey-core/src/utils/camera";
|
3857
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
3856
3858
|
export function dataUrl2File(dataUrl: string, fileName: string, type: string): File;
|
3857
3859
|
/**
|
3858
3860
|
* A base class for question types that support file upload: `QuestionFileModel` and `QuestionSignaturePadModel`.
|
@@ -3892,6 +3894,8 @@ declare module "question_file" {
|
|
3892
3894
|
clearOnDeletingContainer(): void;
|
3893
3895
|
protected onCheckForErrors(errors: Array<SurveyError>, isOnValueChanged: boolean): void;
|
3894
3896
|
protected uploadFiles(files: File[]): void;
|
3897
|
+
protected loadPreview(newValue: any): void;
|
3898
|
+
protected onChangeQuestionValue(newValue: any): void;
|
3895
3899
|
}
|
3896
3900
|
/**
|
3897
3901
|
* A class that describes the File Upload question type.
|
@@ -3929,6 +3933,9 @@ declare module "question_file" {
|
|
3929
3933
|
startCameraAction: Action;
|
3930
3934
|
cleanAction: Action;
|
3931
3935
|
actionsContainer: ActionContainer;
|
3936
|
+
private isFileLoadingValue;
|
3937
|
+
protected get isFileLoading(): boolean;
|
3938
|
+
protected set isFileLoading(val: boolean);
|
3932
3939
|
get fileNavigatorVisible(): boolean;
|
3933
3940
|
private get pagesCount();
|
3934
3941
|
get actionsContainerVisible(): boolean;
|
@@ -4071,9 +4078,6 @@ declare module "question_file" {
|
|
4071
4078
|
protected get camera(): Camera;
|
4072
4079
|
canPreviewImage(fileItem: any): boolean;
|
4073
4080
|
protected loadPreview(newValue: any): void;
|
4074
|
-
private isFileLoadingValue;
|
4075
|
-
protected get isFileLoading(): boolean;
|
4076
|
-
protected set isFileLoading(val: boolean);
|
4077
4081
|
protected getIsQuestionReady(): boolean;
|
4078
4082
|
private allFilesOk;
|
4079
4083
|
private isFileImage;
|
@@ -4086,7 +4090,6 @@ declare module "question_file" {
|
|
4086
4090
|
get fileRootCss(): string;
|
4087
4091
|
getFileDecoratorCss(): string;
|
4088
4092
|
private onChange;
|
4089
|
-
protected onChangeQuestionValue(newValue: any): void;
|
4090
4093
|
protected calcCssClasses(css: any): any;
|
4091
4094
|
onSurveyLoad(): void;
|
4092
4095
|
protected needResponsiveness(): boolean;
|
@@ -4120,17 +4123,17 @@ declare module "question_file" {
|
|
4120
4123
|
export class FileLoader {
|
4121
4124
|
private fileQuestion;
|
4122
4125
|
private callback;
|
4123
|
-
constructor(fileQuestion:
|
4126
|
+
constructor(fileQuestion: QuestionFileModelBase, callback: (status: string, files: any[]) => void);
|
4124
4127
|
loaded: any[];
|
4125
4128
|
load(files: Array<any>): void;
|
4126
4129
|
dispose(): void;
|
4127
4130
|
}
|
4128
4131
|
}
|
4129
|
-
declare module "choicesRestful" {
|
4130
|
-
import { Base } from "base";
|
4131
|
-
import { ITextProcessor, IQuestion, ISurvey } from "base-interfaces";
|
4132
|
-
import { ItemValue } from "itemvalue";
|
4133
|
-
import { SurveyError } from "survey-error";
|
4132
|
+
declare module "packages/survey-core/src/choicesRestful" {
|
4133
|
+
import { Base } from "packages/survey-core/src/base";
|
4134
|
+
import { ITextProcessor, IQuestion, ISurvey } from "packages/survey-core/src/base-interfaces";
|
4135
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
4136
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
4134
4137
|
/**
|
4135
4138
|
* Configures access to a RESTful service that returns choices for [Checkbox](https://surveyjs.io/Examples/Library?id=questiontype-checkbox), [Dropdown](https://surveyjs.io/Examples/Library?id=questiontype-dropdown), [Radiogroup](https://surveyjs.io/Examples/Library?id=questiontype-radiogroup), and other multiple-choice question types.
|
4136
4139
|
*
|
@@ -4304,14 +4307,14 @@ declare module "choicesRestful" {
|
|
4304
4307
|
}) => void);
|
4305
4308
|
}
|
4306
4309
|
}
|
4307
|
-
declare module "question_baseselect" {
|
4308
|
-
import { SurveyError } from "survey-error";
|
4309
|
-
import { ISurveyImpl, ISurvey, ISurveyData, IPlainDataOptions } from "base-interfaces";
|
4310
|
-
import { IQuestionPlainData, Question } from "question";
|
4311
|
-
import { ItemValue } from "itemvalue";
|
4312
|
-
import { ChoicesRestful } from "choicesRestful";
|
4313
|
-
import { LocalizableString } from "localizablestring";
|
4314
|
-
import { HashTable } from "helpers";
|
4310
|
+
declare module "packages/survey-core/src/question_baseselect" {
|
4311
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
4312
|
+
import { ISurveyImpl, ISurvey, ISurveyData, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
|
4313
|
+
import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
|
4314
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
4315
|
+
import { ChoicesRestful } from "packages/survey-core/src/choicesRestful";
|
4316
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
4317
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
4315
4318
|
/**
|
4316
4319
|
* A base class for multiple-choice question types ([Checkboxes](https://surveyjs.io/form-library/documentation/questioncheckboxmodel), [Dropdown](https://surveyjs.io/form-library/documentation/questiondropdownmodel), [Radio Button Group](https://surveyjs.io/form-library/documentation/questionradiogroupmodel), etc.).
|
4317
4320
|
*/
|
@@ -4793,6 +4796,7 @@ declare module "question_baseselect" {
|
|
4793
4796
|
get hasHeadItems(): boolean;
|
4794
4797
|
get hasFootItems(): boolean;
|
4795
4798
|
get columns(): any[];
|
4799
|
+
getItemsColumnKey(itemsColumn: Array<ItemValue>): string;
|
4796
4800
|
get hasColumns(): boolean;
|
4797
4801
|
get rowLayout(): boolean;
|
4798
4802
|
get blockedRow(): boolean;
|
@@ -4846,11 +4850,11 @@ declare module "question_baseselect" {
|
|
4846
4850
|
protected getSearchableItemValueKeys(keys: Array<string>): void;
|
4847
4851
|
}
|
4848
4852
|
}
|
4849
|
-
declare module "validator" {
|
4850
|
-
import { Base } from "base";
|
4851
|
-
import { ISurveyErrorOwner, ISurvey } from "base-interfaces";
|
4852
|
-
import { SurveyError } from "survey-error";
|
4853
|
-
import { LocalizableString } from "localizablestring";
|
4853
|
+
declare module "packages/survey-core/src/validator" {
|
4854
|
+
import { Base } from "packages/survey-core/src/base";
|
4855
|
+
import { ISurveyErrorOwner, ISurvey } from "packages/survey-core/src/base-interfaces";
|
4856
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
4857
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
4854
4858
|
export class ValidatorResult {
|
4855
4859
|
value: any;
|
4856
4860
|
error: SurveyError;
|
@@ -5007,10 +5011,10 @@ declare module "validator" {
|
|
5007
5011
|
set expression(val: string);
|
5008
5012
|
}
|
5009
5013
|
}
|
5010
|
-
declare module "question_expression" {
|
5011
|
-
import { HashTable } from "helpers";
|
5012
|
-
import { Question } from "question";
|
5013
|
-
import { LocalizableString } from "localizablestring";
|
5014
|
+
declare module "packages/survey-core/src/question_expression" {
|
5015
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
5016
|
+
import { Question } from "packages/survey-core/src/question";
|
5017
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
5014
5018
|
/**
|
5015
5019
|
* A class that describes the Expression question type. It is a read-only question type that calculates a value based on a specified expression.
|
5016
5020
|
*
|
@@ -5119,14 +5123,14 @@ declare module "question_expression" {
|
|
5119
5123
|
}
|
5120
5124
|
export function getCurrecyCodes(): Array<string>;
|
5121
5125
|
}
|
5122
|
-
declare module "question_matrixdropdowncolumn" {
|
5123
|
-
import { Question } from "question";
|
5124
|
-
import { Base } from "base";
|
5125
|
-
import { ISurvey, IWrapperObject } from "base-interfaces";
|
5126
|
-
import { ItemValue } from "itemvalue";
|
5127
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
5128
|
-
import { SurveyValidator } from "validator";
|
5129
|
-
import { MatrixDropdownRowModelBase } from "question_matrixdropdownbase";
|
5126
|
+
declare module "packages/survey-core/src/question_matrixdropdowncolumn" {
|
5127
|
+
import { Question } from "packages/survey-core/src/question";
|
5128
|
+
import { Base } from "packages/survey-core/src/base";
|
5129
|
+
import { ISurvey, IWrapperObject } from "packages/survey-core/src/base-interfaces";
|
5130
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
5131
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
5132
|
+
import { SurveyValidator } from "packages/survey-core/src/validator";
|
5133
|
+
import { MatrixDropdownRowModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
5130
5134
|
export interface IMatrixColumnOwner extends ILocalizableOwner {
|
5131
5135
|
getRequiredText(): string;
|
5132
5136
|
hasChoices(): boolean;
|
@@ -5465,7 +5469,7 @@ declare module "question_matrixdropdowncolumn" {
|
|
5465
5469
|
private addProperties;
|
5466
5470
|
}
|
5467
5471
|
}
|
5468
|
-
declare module "dragdrop/engine" {
|
5472
|
+
declare module "packages/survey-core/src/dragdrop/engine" {
|
5469
5473
|
export interface IDragDropEngine {
|
5470
5474
|
dragInit(event: PointerEvent, draggedElement: any, parentElement: any, draggedElementNode: HTMLElement): void;
|
5471
5475
|
dragOver(event: PointerEvent): void;
|
@@ -5473,7 +5477,7 @@ declare module "dragdrop/engine" {
|
|
5473
5477
|
clear(): void;
|
5474
5478
|
}
|
5475
5479
|
}
|
5476
|
-
declare module "utils/devices" {
|
5480
|
+
declare module "packages/survey-core/src/utils/devices" {
|
5477
5481
|
export const IsMobile: boolean;
|
5478
5482
|
export var mouseInfo: {
|
5479
5483
|
readonly isTouch: boolean;
|
@@ -5487,13 +5491,14 @@ declare module "utils/devices" {
|
|
5487
5491
|
} | null) | null;
|
5488
5492
|
export function detectMouseSupport(matchMedia: MatchMediaMethod): boolean;
|
5489
5493
|
}
|
5490
|
-
declare module "dragdrop/dom-adapter" {
|
5491
|
-
import { IDragDropEngine } from "dragdrop/engine";
|
5494
|
+
declare module "packages/survey-core/src/dragdrop/dom-adapter" {
|
5495
|
+
import { IDragDropEngine } from "packages/survey-core/src/dragdrop/engine";
|
5492
5496
|
export interface IDragDropDOMAdapter {
|
5493
5497
|
startDrag(event: PointerEvent, draggedElement: any, parentElement: any, draggedElementNode: HTMLElement, preventSaveTargetNode: boolean): void;
|
5494
5498
|
draggedElementShortcut: HTMLElement;
|
5495
5499
|
rootContainer: HTMLElement;
|
5496
5500
|
documentOrShadowRoot: Document | ShadowRoot;
|
5501
|
+
rootElement?: HTMLElement;
|
5497
5502
|
}
|
5498
5503
|
export class DragDropDOMAdapter implements IDragDropDOMAdapter {
|
5499
5504
|
private dd;
|
@@ -5511,7 +5516,7 @@ declare module "dragdrop/dom-adapter" {
|
|
5511
5516
|
private scrollIntervalId;
|
5512
5517
|
constructor(dd: IDragDropEngine, longTap?: boolean, fitToContainer?: boolean);
|
5513
5518
|
get documentOrShadowRoot(): Document | ShadowRoot;
|
5514
|
-
|
5519
|
+
get rootElement(): any;
|
5515
5520
|
private stopLongTapIfMoveEnough;
|
5516
5521
|
private get isMicroMovement();
|
5517
5522
|
private stopLongTap;
|
@@ -5537,12 +5542,12 @@ declare module "dragdrop/dom-adapter" {
|
|
5537
5542
|
private insertNodeToParentAtIndex;
|
5538
5543
|
}
|
5539
5544
|
}
|
5540
|
-
declare module "dragdrop/core" {
|
5541
|
-
import { SurveyModel } from "survey";
|
5542
|
-
import { EventBase } from "base";
|
5543
|
-
import { IShortcutText, ISurvey } from "base-interfaces";
|
5544
|
-
import { IDragDropEngine } from "dragdrop/engine";
|
5545
|
-
import { IDragDropDOMAdapter } from "dragdrop/dom-adapter";
|
5545
|
+
declare module "packages/survey-core/src/dragdrop/core" {
|
5546
|
+
import { SurveyModel } from "packages/survey-core/src/survey";
|
5547
|
+
import { EventBase } from "packages/survey-core/src/base";
|
5548
|
+
import { IShortcutText, ISurvey } from "packages/survey-core/src/base-interfaces";
|
5549
|
+
import { IDragDropEngine } from "packages/survey-core/src/dragdrop/engine";
|
5550
|
+
import { IDragDropDOMAdapter } from "packages/survey-core/src/dragdrop/dom-adapter";
|
5546
5551
|
export abstract class DragDropCore<T> implements IDragDropEngine {
|
5547
5552
|
private surveyValue?;
|
5548
5553
|
private creator?;
|
@@ -5553,6 +5558,7 @@ declare module "dragdrop/core" {
|
|
5553
5558
|
protected ghostPositionChanged(): void;
|
5554
5559
|
onDragStart: EventBase<DragDropCore<T>>;
|
5555
5560
|
onDragEnd: EventBase<DragDropCore<T>>;
|
5561
|
+
onDragClear: EventBase<DragDropCore<T>>;
|
5556
5562
|
onBeforeDrop: EventBase<DragDropCore<T>, any>;
|
5557
5563
|
onAfterDrop: EventBase<DragDropCore<T>, any>;
|
5558
5564
|
draggedElement: any;
|
@@ -5593,10 +5599,10 @@ declare module "dragdrop/core" {
|
|
5593
5599
|
clear(): void;
|
5594
5600
|
}
|
5595
5601
|
}
|
5596
|
-
declare module "dragdrop/matrix-rows" {
|
5597
|
-
import { MatrixDropdownRowModelBase } from "question_matrixdropdownbase";
|
5598
|
-
import { QuestionMatrixDynamicModel, MatrixDynamicRowModel } from "question_matrixdynamic";
|
5599
|
-
import { DragDropCore } from "dragdrop/core";
|
5602
|
+
declare module "packages/survey-core/src/dragdrop/matrix-rows" {
|
5603
|
+
import { MatrixDropdownRowModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
5604
|
+
import { QuestionMatrixDynamicModel, MatrixDynamicRowModel } from "packages/survey-core/src/question_matrixdynamic";
|
5605
|
+
import { DragDropCore } from "packages/survey-core/src/dragdrop/core";
|
5600
5606
|
export class DragDropMatrixRows extends DragDropCore<QuestionMatrixDynamicModel> {
|
5601
5607
|
protected get draggedElementType(): string;
|
5602
5608
|
protected restoreUserSelectValue: string;
|
@@ -5613,15 +5619,15 @@ declare module "dragdrop/matrix-rows" {
|
|
5613
5619
|
clear(): void;
|
5614
5620
|
}
|
5615
5621
|
}
|
5616
|
-
declare module "question_matrixdropdownrendered" {
|
5617
|
-
import { Question } from "question";
|
5618
|
-
import { Base } from "base";
|
5619
|
-
import { ItemValue } from "itemvalue";
|
5620
|
-
import { LocalizableString } from "localizablestring";
|
5621
|
-
import { PanelModel } from "panel";
|
5622
|
-
import { IAction } from "actions/action";
|
5623
|
-
import { MatrixDropdownColumn } from "question_matrixdropdowncolumn";
|
5624
|
-
import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
|
5622
|
+
declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
5623
|
+
import { Question } from "packages/survey-core/src/question";
|
5624
|
+
import { Base } from "packages/survey-core/src/base";
|
5625
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
5626
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
5627
|
+
import { PanelModel } from "packages/survey-core/src/panel";
|
5628
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
5629
|
+
import { MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
|
5630
|
+
import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
5625
5631
|
export class QuestionMatrixDropdownRenderedCell {
|
5626
5632
|
private static counter;
|
5627
5633
|
private idValue;
|
@@ -5783,7 +5789,7 @@ declare module "question_matrixdropdownrendered" {
|
|
5783
5789
|
private createEmptyCell;
|
5784
5790
|
}
|
5785
5791
|
}
|
5786
|
-
declare module "utils/dragOrClickHelper" {
|
5792
|
+
declare module "packages/survey-core/src/utils/dragOrClickHelper" {
|
5787
5793
|
export class DragOrClickHelper {
|
5788
5794
|
private dragHandler;
|
5789
5795
|
private pointerDownEvent;
|
@@ -5801,12 +5807,12 @@ declare module "utils/dragOrClickHelper" {
|
|
5801
5807
|
private clearListeners;
|
5802
5808
|
}
|
5803
5809
|
}
|
5804
|
-
declare module "question_matrixdynamic" {
|
5805
|
-
import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "question_matrixdropdownbase";
|
5806
|
-
import { SurveyError } from "survey-error";
|
5807
|
-
import { DragDropMatrixRows } from "dragdrop/matrix-rows";
|
5808
|
-
import { IShortcutText, ISurveyImpl, IProgressInfo } from "base-interfaces";
|
5809
|
-
import { QuestionMatrixDropdownRenderedTable } from "question_matrixdropdownrendered";
|
5810
|
+
declare module "packages/survey-core/src/question_matrixdynamic" {
|
5811
|
+
import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "packages/survey-core/src/question_matrixdropdownbase";
|
5812
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
5813
|
+
import { DragDropMatrixRows } from "packages/survey-core/src/dragdrop/matrix-rows";
|
5814
|
+
import { IShortcutText, ISurveyImpl, IProgressInfo } from "packages/survey-core/src/base-interfaces";
|
5815
|
+
import { QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
|
5810
5816
|
export class MatrixDynamicRowModel extends MatrixDropdownRowModelBase implements IShortcutText {
|
5811
5817
|
index: number;
|
5812
5818
|
private dragOrClickHelper;
|
@@ -6003,14 +6009,14 @@ declare module "question_matrixdynamic" {
|
|
6003
6009
|
*/
|
6004
6010
|
get confirmDeleteText(): string;
|
6005
6011
|
set confirmDeleteText(val: string);
|
6006
|
-
get locConfirmDeleteText(): import("
|
6012
|
+
get locConfirmDeleteText(): import("src/entries/core-wo-model").LocalizableString;
|
6007
6013
|
/**
|
6008
6014
|
* A caption for the Add Row button.
|
6009
6015
|
* @see addRowLocation
|
6010
6016
|
*/
|
6011
6017
|
get addRowText(): string;
|
6012
6018
|
set addRowText(val: string);
|
6013
|
-
get locAddRowText(): import("
|
6019
|
+
get locAddRowText(): import("src/entries/core-wo-model").LocalizableString;
|
6014
6020
|
private get defaultAddRowText();
|
6015
6021
|
/**
|
6016
6022
|
* Specifies the location of the Add Row button.
|
@@ -6041,14 +6047,14 @@ declare module "question_matrixdynamic" {
|
|
6041
6047
|
*/
|
6042
6048
|
get removeRowText(): string;
|
6043
6049
|
set removeRowText(val: string);
|
6044
|
-
get locRemoveRowText(): import("
|
6050
|
+
get locRemoveRowText(): import("src/entries/core-wo-model").LocalizableString;
|
6045
6051
|
/**
|
6046
6052
|
* A message displayed when the matrix does not contain any rows. Applies only if `hideColumnsIfEmpty` is enabled.
|
6047
6053
|
* @see hideColumnsIfEmpty
|
6048
6054
|
*/
|
6049
6055
|
get emptyRowsText(): string;
|
6050
6056
|
set emptyRowsText(val: string);
|
6051
|
-
get locEmptyRowsText(): import("
|
6057
|
+
get locEmptyRowsText(): import("src/entries/core-wo-model").LocalizableString;
|
6052
6058
|
protected getDisplayValueCore(keysAsText: boolean, value: any): any;
|
6053
6059
|
protected getConditionObjectRowName(index: number): string;
|
6054
6060
|
protected getConditionObjectsRowIndeces(): Array<number>;
|
@@ -6073,8 +6079,8 @@ declare module "question_matrixdynamic" {
|
|
6073
6079
|
getRootCss(): string;
|
6074
6080
|
}
|
6075
6081
|
}
|
6076
|
-
declare module "themes" {
|
6077
|
-
import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
|
6082
|
+
declare module "packages/survey-core/src/themes" {
|
6083
|
+
import { HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
|
6078
6084
|
export type ImageFit = "auto" | "contain" | "cover";
|
6079
6085
|
export type ImageAttachment = "fixed" | "scroll";
|
6080
6086
|
/**
|
@@ -6291,19 +6297,19 @@ declare module "themes" {
|
|
6291
6297
|
descriptionPositionY: VerticalAlignment;
|
6292
6298
|
}
|
6293
6299
|
}
|
6294
|
-
declare module "question_paneldynamic" {
|
6295
|
-
import { HashTable } from "helpers";
|
6296
|
-
import { IElement, IQuestion, IPanel, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPlainDataOptions } from "base-interfaces";
|
6297
|
-
import { LocalizableString } from "localizablestring";
|
6298
|
-
import { Base } from "base";
|
6299
|
-
import { Question, IConditionObject, IQuestionPlainData } from "question";
|
6300
|
-
import { PanelModel } from "panel";
|
6301
|
-
import { SurveyError } from "survey-error";
|
6302
|
-
import { ActionContainer } from "actions/container";
|
6303
|
-
import { IAction } from "actions/action";
|
6304
|
-
import { AdaptiveActionContainer } from "actions/adaptive-container";
|
6305
|
-
import { ITheme } from "themes";
|
6306
|
-
import { AnimationProperty, IAnimationGroupConsumer } from "utils/animation";
|
6300
|
+
declare module "packages/survey-core/src/question_paneldynamic" {
|
6301
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
6302
|
+
import { IElement, IQuestion, IPanel, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
|
6303
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
6304
|
+
import { Base } from "packages/survey-core/src/base";
|
6305
|
+
import { Question, IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
|
6306
|
+
import { PanelModel } from "packages/survey-core/src/panel";
|
6307
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
6308
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
6309
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
6310
|
+
import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
|
6311
|
+
import { ITheme } from "packages/survey-core/src/themes";
|
6312
|
+
import { AnimationProperty, IAnimationGroupConsumer } from "packages/survey-core/src/utils/animation";
|
6307
6313
|
export interface IQuestionPanelDynamicData {
|
6308
6314
|
getItemIndex(item: ISurveyData): number;
|
6309
6315
|
getVisibleItemIndex(item: ISurveyData): number;
|
@@ -6961,9 +6967,9 @@ declare module "question_paneldynamic" {
|
|
6961
6967
|
protected calcCssClasses(css: any): any;
|
6962
6968
|
}
|
6963
6969
|
}
|
6964
|
-
declare module "question_signaturepad" {
|
6965
|
-
import { ITheme } from "themes";
|
6966
|
-
import { QuestionFileModelBase } from "question_file";
|
6970
|
+
declare module "packages/survey-core/src/question_signaturepad" {
|
6971
|
+
import { ITheme } from "packages/survey-core/src/themes";
|
6972
|
+
import { QuestionFileModelBase } from "packages/survey-core/src/question_file";
|
6967
6973
|
/**
|
6968
6974
|
* A class that describes the Signature question type.
|
6969
6975
|
*
|
@@ -6993,6 +6999,8 @@ declare module "question_signaturepad" {
|
|
6993
6999
|
private fromUrl;
|
6994
7000
|
private refreshCanvas;
|
6995
7001
|
private updateValueHandler;
|
7002
|
+
protected loadPreview(newValue: any): void;
|
7003
|
+
onSurveyLoad(): void;
|
6996
7004
|
initSignaturePad(el: HTMLElement): void;
|
6997
7005
|
destroySignaturePad(el: HTMLElement): void;
|
6998
7006
|
/**
|
@@ -7101,31 +7109,31 @@ declare module "question_signaturepad" {
|
|
7101
7109
|
* A placeholder text for the signature area in read-only or preview mode. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
|
7102
7110
|
*/
|
7103
7111
|
placeholderReadOnly: string;
|
7104
|
-
|
7112
|
+
protected onBlurCore(event: any): void;
|
7105
7113
|
protected uploadResultItemToValue(r: any): any;
|
7106
7114
|
protected setValueFromResult(arg: any): void;
|
7107
7115
|
clearValue(keepComment?: boolean): void;
|
7108
7116
|
endLoadingFromJson(): void;
|
7109
7117
|
}
|
7110
7118
|
}
|
7111
|
-
declare module "survey-events-api" {
|
7112
|
-
import { IAction } from "actions/action";
|
7113
|
-
import { Base } from "base";
|
7114
|
-
import { IElement, IPanel, ISurveyElement, IValueItemCustomPropValues } from "base-interfaces";
|
7115
|
-
import { ItemValue } from "itemvalue";
|
7116
|
-
import { PageModel } from "page";
|
7117
|
-
import { PanelModel, PanelModelBase } from "panel";
|
7118
|
-
import { PopupModel } from "popup";
|
7119
|
-
import { Question } from "question";
|
7120
|
-
import { QuestionFileModel } from "question_file";
|
7121
|
-
import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
|
7122
|
-
import { MatrixDropdownColumn } from "question_matrixdropdowncolumn";
|
7123
|
-
import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
|
7124
|
-
import { QuestionPanelDynamicModel } from "question_paneldynamic";
|
7125
|
-
import { QuestionSignaturePadModel } from "question_signaturepad";
|
7126
|
-
import { SurveyModel } from "survey";
|
7127
|
-
import { SurveyError } from "survey-error";
|
7128
|
-
import { Trigger } from "trigger";
|
7119
|
+
declare module "packages/survey-core/src/survey-events-api" {
|
7120
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
7121
|
+
import { Base } from "packages/survey-core/src/base";
|
7122
|
+
import { IElement, IPanel, ISurveyElement, IValueItemCustomPropValues } from "packages/survey-core/src/base-interfaces";
|
7123
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
7124
|
+
import { PageModel } from "packages/survey-core/src/page";
|
7125
|
+
import { PanelModel, PanelModelBase } from "packages/survey-core/src/panel";
|
7126
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
7127
|
+
import { Question } from "packages/survey-core/src/question";
|
7128
|
+
import { QuestionFileModel } from "packages/survey-core/src/question_file";
|
7129
|
+
import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
7130
|
+
import { MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
|
7131
|
+
import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
|
7132
|
+
import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
|
7133
|
+
import { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
|
7134
|
+
import { SurveyModel } from "packages/survey-core/src/survey";
|
7135
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
7136
|
+
import { Trigger } from "packages/survey-core/src/trigger";
|
7129
7137
|
export interface QuestionEventMixin {
|
7130
7138
|
/**
|
7131
7139
|
* A Question instance for which the event is raised.
|
@@ -8147,6 +8155,32 @@ declare module "survey-events-api" {
|
|
8147
8155
|
*/
|
8148
8156
|
visible: boolean;
|
8149
8157
|
}
|
8158
|
+
export interface OpenDropdownMenuEvent extends QuestionEventMixin {
|
8159
|
+
/**
|
8160
|
+
* A question for which the event is raised.
|
8161
|
+
*/
|
8162
|
+
question: Question;
|
8163
|
+
/**
|
8164
|
+
* A device type.
|
8165
|
+
*/
|
8166
|
+
deviceType: "mobile" | "tablet" | "desktop";
|
8167
|
+
/**
|
8168
|
+
* A Boolean value that indicates whether the current device supports touch gestures.
|
8169
|
+
*/
|
8170
|
+
hasTouchScreen: boolean;
|
8171
|
+
/**
|
8172
|
+
* The height of the device screen in pixels.
|
8173
|
+
*/
|
8174
|
+
screenHeight: number;
|
8175
|
+
/**
|
8176
|
+
* The width of the device screen in pixels.
|
8177
|
+
*/
|
8178
|
+
screenWidth: number;
|
8179
|
+
/**
|
8180
|
+
* A menu type to use for the question: a classic dropdown, a pop-up dialog, or an overlay window. You can modify this parameter's value.
|
8181
|
+
*/
|
8182
|
+
menuType: "dropdown" | "popup" | "overlay";
|
8183
|
+
}
|
8150
8184
|
export interface ElementWrapperComponentEventMixin {
|
8151
8185
|
element: any;
|
8152
8186
|
wrapperName: string;
|
@@ -8160,9 +8194,9 @@ declare module "survey-events-api" {
|
|
8160
8194
|
data: any;
|
8161
8195
|
}
|
8162
8196
|
}
|
8163
|
-
declare module "drag-drop-page-helper-v1" {
|
8164
|
-
import { IElement, ISurveyElement } from "base-interfaces";
|
8165
|
-
import { PageModel } from "page";
|
8197
|
+
declare module "packages/survey-core/src/drag-drop-page-helper-v1" {
|
8198
|
+
import { IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
|
8199
|
+
import { PageModel } from "packages/survey-core/src/page";
|
8166
8200
|
export class DragDropPageHelperV1 {
|
8167
8201
|
private page;
|
8168
8202
|
constructor(page: PageModel);
|
@@ -8181,10 +8215,10 @@ declare module "drag-drop-page-helper-v1" {
|
|
8181
8215
|
private dragDropIsSameElement;
|
8182
8216
|
}
|
8183
8217
|
}
|
8184
|
-
declare module "page" {
|
8185
|
-
import { IPage, IPanel, IElement, ISurveyElement } from "base-interfaces";
|
8186
|
-
import { PanelModelBase } from "panel";
|
8187
|
-
import { LocalizableString } from "localizablestring";
|
8218
|
+
declare module "packages/survey-core/src/page" {
|
8219
|
+
import { IPage, IPanel, IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
|
8220
|
+
import { PanelModelBase } from "packages/survey-core/src/panel";
|
8221
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
8188
8222
|
/**
|
8189
8223
|
* The `PageModel` object describes a survey page and contains properties and methods that allow you to control the page and access its elements (panels and questions).
|
8190
8224
|
*
|
@@ -8290,7 +8324,7 @@ declare module "page" {
|
|
8290
8324
|
ensureRowsVisibility(): void;
|
8291
8325
|
}
|
8292
8326
|
}
|
8293
|
-
declare module "dxSurveyService" {
|
8327
|
+
declare module "packages/survey-core/src/dxSurveyService" {
|
8294
8328
|
/**
|
8295
8329
|
* The class contains methods to work with api.surveyjs.io service.
|
8296
8330
|
*/
|
@@ -8310,70 +8344,8 @@ declare module "dxSurveyService" {
|
|
8310
8344
|
private get serviceUrl();
|
8311
8345
|
}
|
8312
8346
|
}
|
8313
|
-
declare module "
|
8314
|
-
import {
|
8315
|
-
export const modernThemeColors: {
|
8316
|
-
[key: string]: string;
|
8317
|
-
};
|
8318
|
-
export const defaultThemeColors: {
|
8319
|
-
[key: string]: string;
|
8320
|
-
};
|
8321
|
-
export const orangeThemeColors: {
|
8322
|
-
[key: string]: string;
|
8323
|
-
};
|
8324
|
-
export const darkblueThemeColors: {
|
8325
|
-
[key: string]: string;
|
8326
|
-
};
|
8327
|
-
export const darkroseThemeColors: {
|
8328
|
-
[key: string]: string;
|
8329
|
-
};
|
8330
|
-
export const stoneThemeColors: {
|
8331
|
-
[key: string]: string;
|
8332
|
-
};
|
8333
|
-
export const winterThemeColors: {
|
8334
|
-
[key: string]: string;
|
8335
|
-
};
|
8336
|
-
export const winterstoneThemeColors: {
|
8337
|
-
[key: string]: string;
|
8338
|
-
};
|
8339
|
-
export class StylesManager {
|
8340
|
-
private static SurveyJSStylesSheetId;
|
8341
|
-
static Logger: Logger;
|
8342
|
-
static Styles: {
|
8343
|
-
[key: string]: string;
|
8344
|
-
};
|
8345
|
-
static Media: {
|
8346
|
-
[key: string]: {
|
8347
|
-
media: string;
|
8348
|
-
style: string;
|
8349
|
-
};
|
8350
|
-
};
|
8351
|
-
static ThemeColors: {
|
8352
|
-
[key: string]: {
|
8353
|
-
[key: string]: string;
|
8354
|
-
};
|
8355
|
-
};
|
8356
|
-
static ThemeCss: {
|
8357
|
-
[key: string]: {
|
8358
|
-
[key: string]: string;
|
8359
|
-
};
|
8360
|
-
};
|
8361
|
-
static ThemeSelector: {
|
8362
|
-
[key: string]: string;
|
8363
|
-
};
|
8364
|
-
static autoApplyTheme(): void;
|
8365
|
-
static getAvailableThemes(): Array<any>;
|
8366
|
-
static getIncludedThemeCss(): Array<any>;
|
8367
|
-
static findSheet(styleSheetId: string): any;
|
8368
|
-
static createSheet(styleSheetId: string): any;
|
8369
|
-
static applyTheme(themeName?: string, themeSelector?: string): void;
|
8370
|
-
static Enabled: boolean;
|
8371
|
-
constructor();
|
8372
|
-
static insertStylesRulesIntoDocument(): any;
|
8373
|
-
}
|
8374
|
-
}
|
8375
|
-
declare module "surveytimer" {
|
8376
|
-
import { EventBase } from "base";
|
8347
|
+
declare module "packages/survey-core/src/surveytimer" {
|
8348
|
+
import { EventBase } from "packages/survey-core/src/base";
|
8377
8349
|
export var surveyTimerFunctions: {
|
8378
8350
|
setTimeout: (func: () => any) => number;
|
8379
8351
|
clearTimeout: (timerId: number) => void;
|
@@ -8395,11 +8367,11 @@ declare module "surveytimer" {
|
|
8395
8367
|
doTimer(): void;
|
8396
8368
|
}
|
8397
8369
|
}
|
8398
|
-
declare module "surveyTimerModel" {
|
8399
|
-
import { ISurvey } from "base-interfaces";
|
8400
|
-
import { Base, EventBase } from "base";
|
8401
|
-
import { PageModel } from "page";
|
8402
|
-
import { SurveyModel } from "survey";
|
8370
|
+
declare module "packages/survey-core/src/surveyTimerModel" {
|
8371
|
+
import { ISurvey } from "packages/survey-core/src/base-interfaces";
|
8372
|
+
import { Base, EventBase } from "packages/survey-core/src/base";
|
8373
|
+
import { PageModel } from "packages/survey-core/src/page";
|
8374
|
+
import { SurveyModel } from "packages/survey-core/src/survey";
|
8403
8375
|
export interface ISurveyTimerText {
|
8404
8376
|
timerInfoText: string;
|
8405
8377
|
timerInfo: {
|
@@ -8444,10 +8416,10 @@ declare module "surveyTimerModel" {
|
|
8444
8416
|
get majorTextCss(): string;
|
8445
8417
|
}
|
8446
8418
|
}
|
8447
|
-
declare module "expressionItems" {
|
8448
|
-
import { Base } from "base";
|
8449
|
-
import { ISurvey } from "base-interfaces";
|
8450
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
8419
|
+
declare module "packages/survey-core/src/expressionItems" {
|
8420
|
+
import { Base } from "packages/survey-core/src/base";
|
8421
|
+
import { ISurvey } from "packages/survey-core/src/base-interfaces";
|
8422
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
8451
8423
|
/**
|
8452
8424
|
* Base class for HtmlConditionItem and UrlConditionItem classes.
|
8453
8425
|
*/
|
@@ -8503,10 +8475,10 @@ declare module "expressionItems" {
|
|
8503
8475
|
get locUrl(): LocalizableString;
|
8504
8476
|
}
|
8505
8477
|
}
|
8506
|
-
declare module "notifier" {
|
8507
|
-
import { Base } from "base";
|
8508
|
-
import { ActionContainer } from "actions/container";
|
8509
|
-
import { IAction } from "actions/action";
|
8478
|
+
declare module "packages/survey-core/src/notifier" {
|
8479
|
+
import { Base } from "packages/survey-core/src/base";
|
8480
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
8481
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
8510
8482
|
interface INotifierCssClasses {
|
8511
8483
|
root: string;
|
8512
8484
|
rootWithButtons: string;
|
@@ -8534,12 +8506,12 @@ declare module "notifier" {
|
|
8534
8506
|
addAction(action: IAction, notificationType: string): void;
|
8535
8507
|
}
|
8536
8508
|
}
|
8537
|
-
declare module "question_textbase" {
|
8538
|
-
import { Question } from "question";
|
8539
|
-
import { CssClassBuilder } from "utils/cssClassBuilder";
|
8540
|
-
import { LocalizableString } from "localizablestring";
|
8541
|
-
import { Base } from "base";
|
8542
|
-
import { ISurveyImpl } from "base-interfaces";
|
8509
|
+
declare module "packages/survey-core/src/question_textbase" {
|
8510
|
+
import { Question } from "packages/survey-core/src/question";
|
8511
|
+
import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
|
8512
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
8513
|
+
import { Base } from "packages/survey-core/src/base";
|
8514
|
+
import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
|
8543
8515
|
export class CharacterCounter extends Base {
|
8544
8516
|
remainingCharacterCounter: string;
|
8545
8517
|
updateRemainingCharacterCounter(newValue: string, maxLength: number): void;
|
@@ -8589,6 +8561,7 @@ declare module "question_textbase" {
|
|
8589
8561
|
onSurveyLoad(): void;
|
8590
8562
|
localeChanged(): void;
|
8591
8563
|
setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
|
8564
|
+
protected supportEmptyValidation(): boolean;
|
8592
8565
|
protected calcRenderedPlaceholder(): void;
|
8593
8566
|
protected hasPlaceholder(): boolean;
|
8594
8567
|
protected setNewValue(newValue: any): void;
|
@@ -8601,7 +8574,7 @@ declare module "question_textbase" {
|
|
8601
8574
|
onKeyDownPreprocess: (event: any) => void;
|
8602
8575
|
}
|
8603
8576
|
}
|
8604
|
-
declare module "mask/mask_utils" {
|
8577
|
+
declare module "packages/survey-core/src/mask/mask_utils" {
|
8605
8578
|
export var numberDefinition: RegExp;
|
8606
8579
|
export interface IMaskedInputResult {
|
8607
8580
|
value: string;
|
@@ -8622,10 +8595,10 @@ declare module "mask/mask_utils" {
|
|
8622
8595
|
getTextAlignment(): "left" | "right" | "auto";
|
8623
8596
|
}
|
8624
8597
|
}
|
8625
|
-
declare module "mask/mask_base" {
|
8626
|
-
import { Base } from "base";
|
8627
|
-
import { ISurvey } from "base-interfaces";
|
8628
|
-
import { IInputMask, IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
|
8598
|
+
declare module "packages/survey-core/src/mask/mask_base" {
|
8599
|
+
import { Base } from "packages/survey-core/src/base";
|
8600
|
+
import { ISurvey } from "packages/survey-core/src/base-interfaces";
|
8601
|
+
import { IInputMask, IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
|
8629
8602
|
/**
|
8630
8603
|
* A base class for classes that implement input masks:
|
8631
8604
|
*
|
@@ -8652,9 +8625,9 @@ declare module "mask/mask_base" {
|
|
8652
8625
|
getTextAlignment(): "left" | "right" | "auto";
|
8653
8626
|
}
|
8654
8627
|
}
|
8655
|
-
declare module "mask/input_element_adapter" {
|
8656
|
-
import { InputMaskBase } from "mask/mask_base";
|
8657
|
-
import { ITextInputParams } from "mask/mask_utils";
|
8628
|
+
declare module "packages/survey-core/src/mask/input_element_adapter" {
|
8629
|
+
import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
8630
|
+
import { ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
|
8658
8631
|
export class InputElementAdapter {
|
8659
8632
|
private inputMaskInstance;
|
8660
8633
|
private inputElement;
|
@@ -8670,14 +8643,14 @@ declare module "mask/input_element_adapter" {
|
|
8670
8643
|
dispose(): void;
|
8671
8644
|
}
|
8672
8645
|
}
|
8673
|
-
declare module "question_text" {
|
8674
|
-
import { LocalizableString, LocalizableStrings } from "localizablestring";
|
8675
|
-
import { HashTable } from "helpers";
|
8676
|
-
import { SurveyError } from "survey-error";
|
8677
|
-
import { QuestionTextBase } from "question_textbase";
|
8678
|
-
import { CssClassBuilder } from "utils/cssClassBuilder";
|
8679
|
-
import { InputMaskBase } from "mask/mask_base";
|
8680
|
-
import { IInputMask } from "mask/mask_utils";
|
8646
|
+
declare module "packages/survey-core/src/question_text" {
|
8647
|
+
import { LocalizableString, LocalizableStrings } from "packages/survey-core/src/localizablestring";
|
8648
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
8649
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
8650
|
+
import { QuestionTextBase } from "packages/survey-core/src/question_textbase";
|
8651
|
+
import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
|
8652
|
+
import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
8653
|
+
import { IInputMask } from "packages/survey-core/src/mask/mask_utils";
|
8681
8654
|
/**
|
8682
8655
|
* A class that describes the Single-Line Input question type.
|
8683
8656
|
*
|
@@ -8856,24 +8829,24 @@ declare module "question_text" {
|
|
8856
8829
|
private updateDateValidationMessage;
|
8857
8830
|
onKeyDown: (event: any) => void;
|
8858
8831
|
onChange: (event: any) => void;
|
8859
|
-
|
8860
|
-
|
8832
|
+
protected onBlurCore(event: any): void;
|
8833
|
+
protected onFocusCore(event: any): void;
|
8861
8834
|
afterRenderQuestionElement(el: HTMLElement): void;
|
8862
8835
|
beforeDestroyQuestionElement(el: HTMLElement): void;
|
8863
8836
|
}
|
8864
8837
|
export function isMinMaxType(obj: any): boolean;
|
8865
8838
|
}
|
8866
|
-
declare module "question_multipletext" {
|
8867
|
-
import { Base } from "base";
|
8868
|
-
import { ISurveyData, ISurveyImpl, ISurvey, IPanel, IElement, IQuestion, ITextProcessor, IProgressInfo } from "base-interfaces";
|
8869
|
-
import { SurveyValidator, IValidatorOwner } from "validator";
|
8870
|
-
import { Question, IConditionObject } from "question";
|
8871
|
-
import { QuestionTextModel } from "question_text";
|
8872
|
-
import { SurveyError } from "survey-error";
|
8873
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
8874
|
-
import { HashTable } from "helpers";
|
8875
|
-
import { InputMaskBase } from "mask/mask_base";
|
8876
|
-
import { PanelLayoutColumnModel } from "panel-layout-column";
|
8839
|
+
declare module "packages/survey-core/src/question_multipletext" {
|
8840
|
+
import { Base } from "packages/survey-core/src/base";
|
8841
|
+
import { ISurveyData, ISurveyImpl, ISurvey, IPanel, IElement, IQuestion, ITextProcessor, IProgressInfo } from "packages/survey-core/src/base-interfaces";
|
8842
|
+
import { SurveyValidator, IValidatorOwner } from "packages/survey-core/src/validator";
|
8843
|
+
import { Question, IConditionObject } from "packages/survey-core/src/question";
|
8844
|
+
import { QuestionTextModel } from "packages/survey-core/src/question_text";
|
8845
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
8846
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
8847
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
8848
|
+
import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
8849
|
+
import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
|
8877
8850
|
export interface IMultipleTextData extends ILocalizableOwner, IPanel {
|
8878
8851
|
getSurvey(): ISurvey;
|
8879
8852
|
getTextProcessor(): ITextProcessor;
|
@@ -9209,11 +9182,11 @@ declare module "question_multipletext" {
|
|
9209
9182
|
protected getClassName(): string;
|
9210
9183
|
}
|
9211
9184
|
}
|
9212
|
-
declare module "header" {
|
9213
|
-
import { Base } from "base";
|
9214
|
-
import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
|
9215
|
-
import { SurveyModel } from "survey";
|
9216
|
-
import { ITheme } from "themes";
|
9185
|
+
declare module "packages/survey-core/src/header" {
|
9186
|
+
import { Base } from "packages/survey-core/src/base";
|
9187
|
+
import { HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
|
9188
|
+
import { SurveyModel } from "packages/survey-core/src/survey";
|
9189
|
+
import { ITheme } from "packages/survey-core/src/themes";
|
9217
9190
|
export class CoverCell {
|
9218
9191
|
private cover;
|
9219
9192
|
private positionX;
|
@@ -9295,8 +9268,8 @@ declare module "header" {
|
|
9295
9268
|
get hasBackground(): boolean;
|
9296
9269
|
}
|
9297
9270
|
}
|
9298
|
-
declare module "surveyTaskManager" {
|
9299
|
-
import { Base } from "base";
|
9271
|
+
declare module "packages/survey-core/src/surveyTaskManager" {
|
9272
|
+
import { Base } from "packages/survey-core/src/base";
|
9300
9273
|
class SurveyTaskModel {
|
9301
9274
|
type: string;
|
9302
9275
|
private timestamp;
|
@@ -9312,10 +9285,10 @@ declare module "surveyTaskManager" {
|
|
9312
9285
|
private taskFinished;
|
9313
9286
|
}
|
9314
9287
|
}
|
9315
|
-
declare module "progress-buttons" {
|
9316
|
-
import { Base, EventBase } from "base";
|
9317
|
-
import { PageModel } from "page";
|
9318
|
-
import { SurveyModel } from "survey";
|
9288
|
+
declare module "packages/survey-core/src/progress-buttons" {
|
9289
|
+
import { Base, EventBase } from "packages/survey-core/src/base";
|
9290
|
+
import { PageModel } from "packages/survey-core/src/page";
|
9291
|
+
import { SurveyModel } from "packages/survey-core/src/survey";
|
9319
9292
|
export class ProgressButtons extends Base {
|
9320
9293
|
survey: SurveyModel;
|
9321
9294
|
constructor(survey: SurveyModel);
|
@@ -9358,12 +9331,12 @@ declare module "progress-buttons" {
|
|
9358
9331
|
dispose(): void;
|
9359
9332
|
}
|
9360
9333
|
}
|
9361
|
-
declare module "surveyToc" {
|
9362
|
-
import { Action } from "actions/action";
|
9363
|
-
import { ListModel } from "list";
|
9364
|
-
import { PanelModelBase } from "panel";
|
9365
|
-
import { PopupModel } from "popup";
|
9366
|
-
import { SurveyModel } from "survey";
|
9334
|
+
declare module "packages/survey-core/src/surveyToc" {
|
9335
|
+
import { Action } from "packages/survey-core/src/actions/action";
|
9336
|
+
import { ListModel } from "packages/survey-core/src/list";
|
9337
|
+
import { PanelModelBase } from "packages/survey-core/src/panel";
|
9338
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
9339
|
+
import { SurveyModel } from "packages/survey-core/src/survey";
|
9367
9340
|
export function tryFocusPage(survey: SurveyModel, panel: PanelModelBase): boolean;
|
9368
9341
|
export function createTOCListModel(survey: SurveyModel, onAction?: () => void): ListModel<Action>;
|
9369
9342
|
export function getTocRootCss(survey: SurveyModel, isMobile?: boolean): string;
|
@@ -9383,36 +9356,36 @@ declare module "surveyToc" {
|
|
9383
9356
|
dispose(): void;
|
9384
9357
|
}
|
9385
9358
|
}
|
9386
|
-
declare module "survey" {
|
9387
|
-
import { JsonError } from "jsonobject";
|
9388
|
-
import { Base, EventBase } from "base";
|
9389
|
-
import { ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, IQuestion, IPanel, IElement, IPage, ISurveyErrorOwner, ISurveyElement, IProgressInfo, IFindElement, ISurveyLayoutElement, IPlainDataOptions, LayoutElementContainer, IValueItemCustomPropValues, ILoadFromJSONOptions } from "base-interfaces";
|
9390
|
-
import { SurveyElementCore } from "survey-element";
|
9391
|
-
import { ISurveyTriggerOwner, SurveyTrigger, Trigger } from "trigger";
|
9392
|
-
import { CalculatedValue } from "calculatedValue";
|
9393
|
-
import { PageModel } from "page";
|
9394
|
-
import { dxSurveyService } from "dxSurveyService";
|
9395
|
-
import { LocalizableString } from "localizablestring";
|
9396
|
-
import { SurveyTimerModel, ISurveyTimerText } from "surveyTimerModel";
|
9397
|
-
import { IQuestionPlainData, Question } from "question";
|
9398
|
-
import { QuestionSelectBase } from "question_baseselect";
|
9399
|
-
import { ItemValue } from "itemvalue";
|
9400
|
-
import { PanelModel, QuestionRowModel } from "panel";
|
9401
|
-
import { HtmlConditionItem, UrlConditionItem } from "expressionItems";
|
9402
|
-
import { SurveyError } from "survey-error";
|
9403
|
-
import { IAction, Action } from "actions/action";
|
9404
|
-
import { ActionContainer } from "actions/container";
|
9405
|
-
import { QuestionPanelDynamicModel } from "question_paneldynamic";
|
9406
|
-
import { Notifier } from "notifier";
|
9407
|
-
import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent, GetQuestionNoEvent, ProgressTextEvent, TextMarkdownEvent, TextRenderAsEvent, SendResultEvent, GetResultEvent, UploadFilesEvent, DownloadFileEvent, ClearFilesEvent, LoadChoicesFromServerEvent, ProcessTextValueEvent, UpdateQuestionCssClassesEvent, UpdatePanelCssClassesEvent, UpdatePageCssClassesEvent, UpdateChoiceItemCssEvent, AfterRenderSurveyEvent, AfterRenderHeaderEvent, AfterRenderPageEvent, AfterRenderQuestionEvent, AfterRenderQuestionInputEvent, AfterRenderPanelEvent, FocusInQuestionEvent, FocusInPanelEvent, ShowingChoiceItemEvent, ChoicesLazyLoadEvent, GetChoiceDisplayValueEvent, MatrixRowAddedEvent, MatrixBeforeRowAddedEvent, MatrixRowRemovingEvent, MatrixRowRemovedEvent, MatrixAllowRemoveRowEvent, MatrixDetailPanelVisibleChangedEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, DynamicPanelCurrentIndexChangedEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ChoicesSearchEvent, OpenFileChooserEvent, ElementWrapperComponentNameEvent, ElementWrapperComponentDataEvent } from "survey-events-api";
|
9408
|
-
import { QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
|
9409
|
-
import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
|
9410
|
-
import { QuestionFileModel } from "question_file";
|
9411
|
-
import { QuestionMultipleTextModel } from "question_multipletext";
|
9412
|
-
import { ITheme, ImageFit, ImageAttachment } from "themes";
|
9413
|
-
import { PopupModel } from "popup";
|
9414
|
-
import { Cover } from "header";
|
9415
|
-
import { QuestionSignaturePadModel } from "question_signaturepad";
|
9359
|
+
declare module "packages/survey-core/src/survey" {
|
9360
|
+
import { JsonError } from "packages/survey-core/src/jsonobject";
|
9361
|
+
import { Base, EventBase } from "packages/survey-core/src/base";
|
9362
|
+
import { ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, IQuestion, IPanel, IElement, IPage, ISurveyErrorOwner, ISurveyElement, IProgressInfo, IFindElement, ISurveyLayoutElement, IPlainDataOptions, LayoutElementContainer, IValueItemCustomPropValues, ILoadFromJSONOptions, IDropdownMenuOptions } from "packages/survey-core/src/base-interfaces";
|
9363
|
+
import { SurveyElementCore } from "packages/survey-core/src/survey-element";
|
9364
|
+
import { ISurveyTriggerOwner, SurveyTrigger, Trigger } from "packages/survey-core/src/trigger";
|
9365
|
+
import { CalculatedValue } from "packages/survey-core/src/calculatedValue";
|
9366
|
+
import { PageModel } from "packages/survey-core/src/page";
|
9367
|
+
import { dxSurveyService } from "packages/survey-core/src/dxSurveyService";
|
9368
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
9369
|
+
import { SurveyTimerModel, ISurveyTimerText } from "packages/survey-core/src/surveyTimerModel";
|
9370
|
+
import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
|
9371
|
+
import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
|
9372
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
9373
|
+
import { PanelModel, QuestionRowModel } from "packages/survey-core/src/panel";
|
9374
|
+
import { HtmlConditionItem, UrlConditionItem } from "packages/survey-core/src/expressionItems";
|
9375
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
9376
|
+
import { IAction, Action } from "packages/survey-core/src/actions/action";
|
9377
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
9378
|
+
import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
|
9379
|
+
import { Notifier } from "packages/survey-core/src/notifier";
|
9380
|
+
import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent, GetQuestionNoEvent, ProgressTextEvent, TextMarkdownEvent, TextRenderAsEvent, SendResultEvent, GetResultEvent, UploadFilesEvent, DownloadFileEvent, ClearFilesEvent, LoadChoicesFromServerEvent, ProcessTextValueEvent, UpdateQuestionCssClassesEvent, UpdatePanelCssClassesEvent, UpdatePageCssClassesEvent, UpdateChoiceItemCssEvent, AfterRenderSurveyEvent, AfterRenderHeaderEvent, AfterRenderPageEvent, AfterRenderQuestionEvent, AfterRenderQuestionInputEvent, AfterRenderPanelEvent, FocusInQuestionEvent, FocusInPanelEvent, ShowingChoiceItemEvent, ChoicesLazyLoadEvent, GetChoiceDisplayValueEvent, MatrixRowAddedEvent, MatrixBeforeRowAddedEvent, MatrixRowRemovingEvent, MatrixRowRemovedEvent, MatrixAllowRemoveRowEvent, MatrixDetailPanelVisibleChangedEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, DynamicPanelCurrentIndexChangedEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ChoicesSearchEvent, OpenFileChooserEvent, ElementWrapperComponentNameEvent, ElementWrapperComponentDataEvent, OpenDropdownMenuEvent } from "packages/survey-core/src/survey-events-api";
|
9381
|
+
import { QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
9382
|
+
import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
|
9383
|
+
import { QuestionFileModel } from "packages/survey-core/src/question_file";
|
9384
|
+
import { QuestionMultipleTextModel } from "packages/survey-core/src/question_multipletext";
|
9385
|
+
import { ITheme, ImageFit, ImageAttachment } from "packages/survey-core/src/themes";
|
9386
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
9387
|
+
import { Cover } from "packages/survey-core/src/header";
|
9388
|
+
import { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
|
9416
9389
|
/**
|
9417
9390
|
* The `SurveyModel` object contains properties and methods that allow you to control the survey and access its elements.
|
9418
9391
|
*
|
@@ -9420,10 +9393,7 @@ declare module "survey" {
|
|
9420
9393
|
*/
|
9421
9394
|
export class SurveyModel extends SurveyElementCore implements ISurvey, ISurveyData, ISurveyImpl, ISurveyTriggerOwner, ISurveyErrorOwner, ISurveyTimerText {
|
9422
9395
|
static readonly TemplateRendererComponentName: string;
|
9423
|
-
static get cssType(): string;
|
9424
|
-
static set cssType(value: string);
|
9425
9396
|
[index: string]: any;
|
9426
|
-
private static stylesManager;
|
9427
9397
|
static platform: string;
|
9428
9398
|
get platformName(): string;
|
9429
9399
|
notifier: Notifier;
|
@@ -10099,9 +10069,17 @@ declare module "survey" {
|
|
10099
10069
|
*/
|
10100
10070
|
onGetExpressionDisplayValue: EventBase<SurveyModel, GetExpressionDisplayValueEvent>;
|
10101
10071
|
/**
|
10102
|
-
* An event that is raised after the visibility of a popup is changed.
|
10072
|
+
* An event that is raised after the visibility of a popup is changed.
|
10073
|
+
*
|
10074
|
+
* This event can be raised for [Single-](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model) and [Multi-Select Dropdown](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model) questions and [Rating Scale](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model) questions [rendered as drop-down menus](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model#displayMode), and [Multi-Select Matrix](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list) questions that contain columns of the `"dropdown"` or `"tagbox"` [`cellType`](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list#cellType).
|
10103
10075
|
*/
|
10104
10076
|
onPopupVisibleChanged: EventBase<SurveyModel, PopupVisibleChangedEvent>;
|
10077
|
+
/**
|
10078
|
+
* An event that is raised when users open a drop-down menu.
|
10079
|
+
*
|
10080
|
+
* This event can be raised for [Single-](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model) and [Multi-Select Dropdown](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model) questions, [Rating Scale](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model) questions [rendered as drop-down menus](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model#displayMode), and [Multi-Select Matrix](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list) questions that contain columns of the `"dropdown"` or `"tagbox"` [`cellType`](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list#cellType). Handle this event to change the drop-down menu type for specific questions or device types.
|
10081
|
+
*/
|
10082
|
+
onOpenDropdownMenu: EventBase<SurveyModel, OpenDropdownMenuEvent>;
|
10105
10083
|
onElementWrapperComponentName: EventBase<SurveyModel, ElementWrapperComponentNameEvent>;
|
10106
10084
|
onElementWrapperComponentData: EventBase<SurveyModel, ElementWrapperComponentDataEvent>;
|
10107
10085
|
constructor(jsonObj?: any, renderedElement?: any);
|
@@ -10446,6 +10424,24 @@ declare module "survey" {
|
|
10446
10424
|
*/
|
10447
10425
|
get checkErrorsMode(): string;
|
10448
10426
|
set checkErrorsMode(val: string);
|
10427
|
+
/**
|
10428
|
+
* Specifies whether to trigger validation when a user focuses on an empty input field and then leaves it without making any changes. Applies only if [`checkErrorsMode`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#checkErrorsMode) is set to `"onValueChanged"`.
|
10429
|
+
*
|
10430
|
+
* Default value: `false`
|
10431
|
+
*
|
10432
|
+
* This property changes validation behavior for the following question types:
|
10433
|
+
*
|
10434
|
+
* - [Single-Line Input](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model)
|
10435
|
+
* - [Long Text](https://surveyjs.io/form-library/documentation/api-reference/comment-field-model)
|
10436
|
+
* - [Dropdown](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model)
|
10437
|
+
* @see validationEnabled
|
10438
|
+
* @see validationAllowSwitchPages
|
10439
|
+
* @see validationAllowComplete
|
10440
|
+
* @see validate
|
10441
|
+
*/
|
10442
|
+
get validateVisitedEmptyFields(): boolean;
|
10443
|
+
set validateVisitedEmptyFields(val: boolean);
|
10444
|
+
getValidateVisitedEmptyFields(): boolean;
|
10449
10445
|
/**
|
10450
10446
|
* Specifies whether to increase the height of [Long Text](https://surveyjs.io/form-library/examples/add-open-ended-question-to-a-form/) questions and other text areas to accommodate multi-line text content.
|
10451
10447
|
*
|
@@ -11586,6 +11582,7 @@ declare module "survey" {
|
|
11586
11582
|
matrixCellValueChanging(question: QuestionMatrixDropdownModelBase, options: MatrixCellValueChangingEvent): void;
|
11587
11583
|
get isValidateOnValueChanging(): boolean;
|
11588
11584
|
get isValidateOnValueChanged(): boolean;
|
11585
|
+
private get isValidateOnValueChange();
|
11589
11586
|
private get isValidateOnComplete();
|
11590
11587
|
matrixCellValidate(question: QuestionMatrixDropdownModelBase, options: MatrixCellValidateEvent): SurveyError;
|
11591
11588
|
dynamicPanelAdded(question: QuestionPanelDynamicModel, panelIndex?: number, panel?: PanelModel): void;
|
@@ -11882,6 +11879,7 @@ declare module "survey" {
|
|
11882
11879
|
private updateNavigationBarCss;
|
11883
11880
|
protected createNavigationBar(): ActionContainer;
|
11884
11881
|
protected createNavigationActions(): Array<IAction>;
|
11882
|
+
protected onBeforeRunConstructor(): void;
|
11885
11883
|
protected onBeforeCreating(): void;
|
11886
11884
|
protected onCreating(): void;
|
11887
11885
|
private getProcessedTextValue;
|
@@ -12241,6 +12239,7 @@ declare module "survey" {
|
|
12241
12239
|
removeLayoutElement(layoutElementId: string): ISurveyLayoutElement;
|
12242
12240
|
getContainerContent(container: LayoutElementContainer): any[];
|
12243
12241
|
processPopupVisiblityChanged(question: Question, popup: PopupModel<any>, visible: boolean): void;
|
12242
|
+
processOpenDropdownMenu(question: Question, options: IDropdownMenuOptions): void;
|
12244
12243
|
/**
|
12245
12244
|
* Applies a specified theme to the survey.
|
12246
12245
|
*
|
@@ -12265,14 +12264,14 @@ declare module "survey" {
|
|
12265
12264
|
questionErrorComponent: string;
|
12266
12265
|
}
|
12267
12266
|
}
|
12268
|
-
declare module "survey-element" {
|
12269
|
-
import { Base } from "base";
|
12270
|
-
import { IAction } from "actions/action";
|
12271
|
-
import { AdaptiveActionContainer } from "actions/adaptive-container";
|
12272
|
-
import { ISurveyElement, IPage, IPanel, IProgressInfo, ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, ITitleOwner } from "base-interfaces";
|
12273
|
-
import { SurveyError } from "survey-error";
|
12274
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
12275
|
-
import { ActionContainer } from "actions/container";
|
12267
|
+
declare module "packages/survey-core/src/survey-element" {
|
12268
|
+
import { Base } from "packages/survey-core/src/base";
|
12269
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
12270
|
+
import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
|
12271
|
+
import { ISurveyElement, IPage, IPanel, IProgressInfo, ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, ITitleOwner } from "packages/survey-core/src/base-interfaces";
|
12272
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
12273
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
12274
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
12276
12275
|
/**
|
12277
12276
|
* A base class for the [`SurveyElement`](https://surveyjs.io/form-library/documentation/surveyelement) and [`SurveyModel`](https://surveyjs.io/form-library/documentation/surveymodel) classes.
|
12278
12277
|
*/
|
@@ -12697,9 +12696,9 @@ declare module "survey-element" {
|
|
12697
12696
|
dispose(): void;
|
12698
12697
|
}
|
12699
12698
|
}
|
12700
|
-
declare module "questionCustomWidgets" {
|
12701
|
-
import { Event } from "base";
|
12702
|
-
import { IQuestion } from "base-interfaces";
|
12699
|
+
declare module "packages/survey-core/src/questionCustomWidgets" {
|
12700
|
+
import { Event } from "packages/survey-core/src/base";
|
12701
|
+
import { IQuestion } from "packages/survey-core/src/base-interfaces";
|
12703
12702
|
export class QuestionCustomWidget {
|
12704
12703
|
name: string;
|
12705
12704
|
widgetJson: any;
|
@@ -12745,8 +12744,8 @@ declare module "questionCustomWidgets" {
|
|
12745
12744
|
getCustomWidget(question: IQuestion): QuestionCustomWidget;
|
12746
12745
|
}
|
12747
12746
|
}
|
12748
|
-
declare module "rendererFactory" {
|
12749
|
-
import { Question } from "question";
|
12747
|
+
declare module "packages/survey-core/src/rendererFactory" {
|
12748
|
+
import { Question } from "packages/survey-core/src/question";
|
12750
12749
|
export class RendererFactory {
|
12751
12750
|
static Instance: RendererFactory;
|
12752
12751
|
private renderersHash;
|
@@ -12758,19 +12757,19 @@ declare module "rendererFactory" {
|
|
12758
12757
|
clear(): void;
|
12759
12758
|
}
|
12760
12759
|
}
|
12761
|
-
declare module "question" {
|
12762
|
-
import { HashTable } from "helpers";
|
12763
|
-
import { EventBase } from "base";
|
12764
|
-
import { IElement, IQuestion, IPanel, IConditionRunner, ISurveyImpl, IPage, ITitleOwner, IProgressInfo, ISurvey, IPlainDataOptions } from "base-interfaces";
|
12765
|
-
import { SurveyElement } from "survey-element";
|
12766
|
-
import { SurveyValidator, IValidatorOwner } from "validator";
|
12767
|
-
import { TextPreProcessorValue } from "textPreProcessor";
|
12768
|
-
import { LocalizableString } from "localizablestring";
|
12769
|
-
import { ExpressionRunner } from "conditions";
|
12770
|
-
import { QuestionCustomWidget } from "questionCustomWidgets";
|
12771
|
-
import { SurveyError } from "survey-error";
|
12772
|
-
import { PopupModel } from "popup";
|
12773
|
-
import { ITheme } from "themes";
|
12760
|
+
declare module "packages/survey-core/src/question" {
|
12761
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
12762
|
+
import { EventBase } from "packages/survey-core/src/base";
|
12763
|
+
import { IElement, IQuestion, IPanel, IConditionRunner, ISurveyImpl, IPage, ITitleOwner, IProgressInfo, ISurvey, IPlainDataOptions, IDropdownMenuOptions } from "packages/survey-core/src/base-interfaces";
|
12764
|
+
import { SurveyElement } from "packages/survey-core/src/survey-element";
|
12765
|
+
import { SurveyValidator, IValidatorOwner } from "packages/survey-core/src/validator";
|
12766
|
+
import { TextPreProcessorValue } from "packages/survey-core/src/textPreProcessor";
|
12767
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
12768
|
+
import { ExpressionRunner } from "packages/survey-core/src/conditions";
|
12769
|
+
import { QuestionCustomWidget } from "packages/survey-core/src/questionCustomWidgets";
|
12770
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
12771
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
12772
|
+
import { ITheme } from "packages/survey-core/src/themes";
|
12774
12773
|
export interface IConditionObject {
|
12775
12774
|
name: string;
|
12776
12775
|
text: string;
|
@@ -13192,6 +13191,13 @@ declare module "question" {
|
|
13192
13191
|
focus(onError?: boolean, scrollIfVisible?: boolean): void;
|
13193
13192
|
private focuscore;
|
13194
13193
|
focusInputElement(onError: boolean): void;
|
13194
|
+
private get isValidateVisitedEmptyFields();
|
13195
|
+
private isFocusEmpty;
|
13196
|
+
protected supportEmptyValidation(): boolean;
|
13197
|
+
onBlur(event: any): void;
|
13198
|
+
onFocus(event: any): void;
|
13199
|
+
protected onBlurCore(event: any): void;
|
13200
|
+
protected onFocusCore(event: any): void;
|
13195
13201
|
expandAllParents(): void;
|
13196
13202
|
private expandAllParentsCore;
|
13197
13203
|
focusIn(): void;
|
@@ -13634,6 +13640,7 @@ declare module "question" {
|
|
13634
13640
|
set validatedValue(val: any);
|
13635
13641
|
getAllValues(): any;
|
13636
13642
|
processPopupVisiblilityChanged(popupModel: PopupModel, visible: boolean): void;
|
13643
|
+
processOpenDropdownMenu(options: IDropdownMenuOptions): void;
|
13637
13644
|
protected onTextKeyDownHandler(event: any): void;
|
13638
13645
|
transformToMobileView(): void;
|
13639
13646
|
transformToDesktopView(): void;
|
@@ -13673,11 +13680,11 @@ declare module "question" {
|
|
13673
13680
|
get a11y_input_ariaErrormessage(): string;
|
13674
13681
|
}
|
13675
13682
|
}
|
13676
|
-
declare module "itemvalue" {
|
13677
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
13678
|
-
import { ConditionRunner } from "conditions";
|
13679
|
-
import { IShortcutText, ISurvey } from "base-interfaces";
|
13680
|
-
import { BaseAction } from "actions/action";
|
13683
|
+
declare module "packages/survey-core/src/itemvalue" {
|
13684
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
13685
|
+
import { ConditionRunner } from "packages/survey-core/src/conditions";
|
13686
|
+
import { IShortcutText, ISurvey } from "packages/survey-core/src/base-interfaces";
|
13687
|
+
import { BaseAction } from "packages/survey-core/src/actions/action";
|
13681
13688
|
/**
|
13682
13689
|
* Array of ItemValue is used in checkbox, dropdown and radiogroup choices, matrix columns and rows.
|
13683
13690
|
* It has two main properties: value and text. If text is empty, value is used for displaying.
|
@@ -13764,10 +13771,10 @@ declare module "itemvalue" {
|
|
13764
13771
|
icon: string;
|
13765
13772
|
}
|
13766
13773
|
}
|
13767
|
-
declare module "martixBase" {
|
13768
|
-
import { HashTable } from "helpers";
|
13769
|
-
import { ItemValue } from "itemvalue";
|
13770
|
-
import { Question } from "question";
|
13774
|
+
declare module "packages/survey-core/src/martixBase" {
|
13775
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
13776
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
13777
|
+
import { Question } from "packages/survey-core/src/question";
|
13771
13778
|
/**
|
13772
13779
|
* A base class for all matrix question types.
|
13773
13780
|
*/
|
@@ -13886,18 +13893,18 @@ declare module "martixBase" {
|
|
13886
13893
|
get isNewA11yStructure(): boolean;
|
13887
13894
|
}
|
13888
13895
|
}
|
13889
|
-
declare module "question_matrixdropdownbase" {
|
13890
|
-
import { QuestionMatrixBaseModel } from "martixBase";
|
13891
|
-
import { Question, IConditionObject, IQuestionPlainData } from "question";
|
13892
|
-
import { HashTable } from "helpers";
|
13893
|
-
import { Base } from "base";
|
13894
|
-
import { IElement, IQuestion, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPanel, IPlainDataOptions } from "base-interfaces";
|
13895
|
-
import { ItemValue } from "itemvalue";
|
13896
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
13897
|
-
import { PanelModel } from "panel";
|
13898
|
-
import { SurveyError } from "survey-error";
|
13899
|
-
import { IMatrixColumnOwner, MatrixDropdownColumn } from "question_matrixdropdowncolumn";
|
13900
|
-
import { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable } from "question_matrixdropdownrendered";
|
13896
|
+
declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
13897
|
+
import { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
|
13898
|
+
import { Question, IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
|
13899
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
13900
|
+
import { Base } from "packages/survey-core/src/base";
|
13901
|
+
import { IElement, IQuestion, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPanel, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
|
13902
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
13903
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
13904
|
+
import { PanelModel } from "packages/survey-core/src/panel";
|
13905
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
13906
|
+
import { IMatrixColumnOwner, MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
|
13907
|
+
import { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
|
13901
13908
|
export interface IMatrixDropdownData {
|
13902
13909
|
value: any;
|
13903
13910
|
onRowChanged(row: MatrixDropdownRowModelBase, columnName: string, newRowValue: any, isDeletingValue: boolean): void;
|
@@ -14421,19 +14428,19 @@ declare module "question_matrixdropdownbase" {
|
|
14421
14428
|
getRootCss(): string;
|
14422
14429
|
}
|
14423
14430
|
}
|
14424
|
-
declare module "base-interfaces" {
|
14425
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
14426
|
-
import { HashTable } from "helpers";
|
14427
|
-
import { MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
|
14428
|
-
import { AdaptiveActionContainer } from "actions/adaptive-container";
|
14429
|
-
import { SurveyError } from "survey-error";
|
14430
|
-
import { Base } from "base";
|
14431
|
-
import { IAction } from "actions/action";
|
14432
|
-
import { PanelModel } from "panel";
|
14433
|
-
import { PanelLayoutColumnModel } from "panel-layout-column";
|
14434
|
-
import { QuestionPanelDynamicModel } from "question_paneldynamic";
|
14435
|
-
import { DragDropAllowEvent } from "survey-events-api";
|
14436
|
-
import { PopupModel } from "popup";
|
14431
|
+
declare module "packages/survey-core/src/base-interfaces" {
|
14432
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
14433
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
14434
|
+
import { MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
14435
|
+
import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
|
14436
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
14437
|
+
import { Base } from "packages/survey-core/src/base";
|
14438
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
14439
|
+
import { PanelModel } from "packages/survey-core/src/panel";
|
14440
|
+
import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
|
14441
|
+
import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
|
14442
|
+
import { DragDropAllowEvent } from "packages/survey-core/src/survey-events-api";
|
14443
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
14437
14444
|
export interface ISurveyData {
|
14438
14445
|
getValue(name: string): any;
|
14439
14446
|
setValue(name: string, newValue: any, locNotification: any, allowNotifyValueChanged?: boolean, questionName?: string): any;
|
@@ -14573,6 +14580,7 @@ declare module "base-interfaces" {
|
|
14573
14580
|
matrixCellValueChanging(question: IQuestion, options: any): any;
|
14574
14581
|
isValidateOnValueChanging: boolean;
|
14575
14582
|
isValidateOnValueChanged: boolean;
|
14583
|
+
getValidateVisitedEmptyFields(): boolean;
|
14576
14584
|
multipleTextItemAdded(question: IQuestion, item: any): void;
|
14577
14585
|
matrixCellValidate(question: IQuestion, options: any): SurveyError;
|
14578
14586
|
dynamicPanelAdded(question: IQuestion, panelIndex?: number, panel?: IPanel): void;
|
@@ -14587,6 +14595,7 @@ declare module "base-interfaces" {
|
|
14587
14595
|
elementContentVisibilityChanged(element: ISurveyElement): void;
|
14588
14596
|
onCorrectQuestionAnswer(question: IQuestion, options: any): void;
|
14589
14597
|
processPopupVisiblityChanged(question: IQuestion, popupModel: PopupModel, visible: boolean): void;
|
14598
|
+
processOpenDropdownMenu(question: IQuestion, options: IDropdownMenuOptions): void;
|
14590
14599
|
chooseFiles(input: HTMLInputElement, callback: (files: File[]) => void, context?: {
|
14591
14600
|
element: Base;
|
14592
14601
|
item?: any;
|
@@ -14754,10 +14763,17 @@ declare module "base-interfaces" {
|
|
14754
14763
|
storeDefaults?: boolean;
|
14755
14764
|
version?: string;
|
14756
14765
|
}
|
14766
|
+
export interface IDropdownMenuOptions {
|
14767
|
+
menuType: "dropdown" | "popup" | "overlay";
|
14768
|
+
deviceType: "mobile" | "tablet" | "desktop";
|
14769
|
+
hasTouchScreen: boolean;
|
14770
|
+
screenHeight: number;
|
14771
|
+
screenWidth: number;
|
14772
|
+
}
|
14757
14773
|
}
|
14758
|
-
declare module "jsonobject" {
|
14759
|
-
import { Base } from "base";
|
14760
|
-
import { ILoadFromJSONOptions, ISaveToJSONOptions } from "base-interfaces";
|
14774
|
+
declare module "packages/survey-core/src/jsonobject" {
|
14775
|
+
import { Base } from "packages/survey-core/src/base";
|
14776
|
+
import { ILoadFromJSONOptions, ISaveToJSONOptions } from "packages/survey-core/src/base-interfaces";
|
14761
14777
|
export interface IPropertyDecoratorOptions<T = any> {
|
14762
14778
|
defaultValue?: T;
|
14763
14779
|
defaultSource?: string;
|
@@ -15127,8 +15143,8 @@ declare module "jsonobject" {
|
|
15127
15143
|
*/
|
15128
15144
|
export var Serializer: JsonMetadata;
|
15129
15145
|
}
|
15130
|
-
declare module "localizablestring" {
|
15131
|
-
import { EventBase } from "base";
|
15146
|
+
declare module "packages/survey-core/src/localizablestring" {
|
15147
|
+
import { EventBase } from "packages/survey-core/src/base";
|
15132
15148
|
export interface ILocalizableOwner {
|
15133
15149
|
getLocale(): string;
|
15134
15150
|
getMarkdownHtml(text: string, name: string): string;
|
@@ -15253,13 +15269,13 @@ declare module "localizablestring" {
|
|
15253
15269
|
private getValuesKeys;
|
15254
15270
|
}
|
15255
15271
|
}
|
15256
|
-
declare module "base" {
|
15257
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
15258
|
-
import { HashTable } from "helpers";
|
15259
|
-
import { JsonObjectProperty } from "jsonobject";
|
15260
|
-
import { ItemValue } from "itemvalue";
|
15261
|
-
import { IElement, IFindElement, IProgressInfo, ISurvey, ILoadFromJSONOptions, ISaveToJSONOptions } from "base-interfaces";
|
15262
|
-
import { ExpressionRunner } from "conditions";
|
15272
|
+
declare module "packages/survey-core/src/base" {
|
15273
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
15274
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
15275
|
+
import { JsonObjectProperty } from "packages/survey-core/src/jsonobject";
|
15276
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
15277
|
+
import { IElement, IFindElement, IProgressInfo, ISurvey, ILoadFromJSONOptions, ISaveToJSONOptions } from "packages/survey-core/src/base-interfaces";
|
15278
|
+
import { ExpressionRunner } from "packages/survey-core/src/conditions";
|
15263
15279
|
export class Bindings {
|
15264
15280
|
private obj;
|
15265
15281
|
private properties;
|
@@ -15589,7 +15605,7 @@ declare module "base" {
|
|
15589
15605
|
export class EventBase<Sender, Options = any> extends Event<(sender: Sender, options: Options) => any, Sender, Options> {
|
15590
15606
|
}
|
15591
15607
|
}
|
15592
|
-
declare module "utils/popup" {
|
15608
|
+
declare module "packages/survey-core/src/utils/popup" {
|
15593
15609
|
export type VerticalPosition = "top" | "bottom" | "middle";
|
15594
15610
|
export type HorizontalPosition = "left" | "right" | "center";
|
15595
15611
|
export type PositionMode = "flex" | "fixed";
|
@@ -15633,10 +15649,10 @@ declare module "utils/popup" {
|
|
15633
15649
|
static calculatePointerTarget(targetRect: Rect, top: number, left: number, verticalPosition: VerticalPosition, horizontalPosition: HorizontalPosition, marginLeft?: number, marginRight?: number): INumberPosition;
|
15634
15650
|
}
|
15635
15651
|
}
|
15636
|
-
declare module "popup" {
|
15637
|
-
import { Base, EventBase } from "base";
|
15638
|
-
import { IAction } from "actions/action";
|
15639
|
-
import { VerticalPosition, HorizontalPosition, PositionMode } from "utils/popup";
|
15652
|
+
declare module "packages/survey-core/src/popup" {
|
15653
|
+
import { Base, EventBase } from "packages/survey-core/src/base";
|
15654
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
15655
|
+
import { VerticalPosition, HorizontalPosition, PositionMode } from "packages/survey-core/src/utils/popup";
|
15640
15656
|
export interface IPopupOptionsBase {
|
15641
15657
|
onHide?: () => void;
|
15642
15658
|
onShow?: () => void;
|
@@ -15677,7 +15693,7 @@ declare module "popup" {
|
|
15677
15693
|
isFocusedContainer: boolean;
|
15678
15694
|
cssClass: string;
|
15679
15695
|
title: string;
|
15680
|
-
overlayDisplayMode: "auto" | "overlay" | "dropdown-overlay";
|
15696
|
+
overlayDisplayMode: "auto" | "tablet-dropdown-overlay" | "dropdown-overlay" | "plain";
|
15681
15697
|
displayMode: "popup" | "overlay";
|
15682
15698
|
positionMode: PositionMode;
|
15683
15699
|
onVisibilityChanged: EventBase<PopupModel>;
|
@@ -15692,13 +15708,14 @@ declare module "popup" {
|
|
15692
15708
|
hide(): void;
|
15693
15709
|
recalculatePosition(isResetHeight: boolean): void;
|
15694
15710
|
updateFooterActions(footerActions: Array<IAction>): Array<IAction>;
|
15711
|
+
updateDisplayMode(menuType: "dropdown" | "popup" | "overlay"): void;
|
15695
15712
|
onHiding(): void;
|
15696
15713
|
dispose(): void;
|
15697
15714
|
}
|
15698
15715
|
export function createDialogOptions(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, onHide?: () => void, onShow?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): IDialogOptions;
|
15699
15716
|
}
|
15700
|
-
declare module "settings" {
|
15701
|
-
import { IDialogOptions } from "popup";
|
15717
|
+
declare module "packages/survey-core/src/settings" {
|
15718
|
+
import { IDialogOptions } from "packages/survey-core/src/popup";
|
15702
15719
|
export type ISurveyEnvironment = {
|
15703
15720
|
root: Document | ShadowRoot;
|
15704
15721
|
rootElement: HTMLElement | ShadowRoot;
|
@@ -15851,6 +15868,7 @@ declare module "settings" {
|
|
15851
15868
|
* const item = new ItemValue("item1");
|
15852
15869
|
* const itemString = item.toJSON(); // Produces { value: "item1", text: "item1" } instead of "item1"
|
15853
15870
|
* ```
|
15871
|
+
* @see [settings.parseNumber](https://surveyjs.io/form-library/documentation/api-reference/settings#parseNumber)
|
15854
15872
|
*/
|
15855
15873
|
serialization: {
|
15856
15874
|
itemValueSerializeAsObject: boolean;
|
@@ -16318,13 +16336,37 @@ declare module "settings" {
|
|
16318
16336
|
* ```
|
16319
16337
|
*/
|
16320
16338
|
storeUtcDates: boolean;
|
16339
|
+
/**
|
16340
|
+
* A function that allows you to define custom parsing rules for numbers represented as string values.
|
16341
|
+
*
|
16342
|
+
* The following code shows a template that you can use to implement the `parseNumber` function:
|
16343
|
+
*
|
16344
|
+
* ```js
|
16345
|
+
* import { settings } from "survey-core";
|
16346
|
+
*
|
16347
|
+
* settings.parseNumber = (stringValue, numericValue) => {
|
16348
|
+
* if (typeof stringValue !== "string" || !stringValue)
|
16349
|
+
* return numericValue;
|
16350
|
+
* let parsedNumber = numericValue;
|
16351
|
+
* // ...
|
16352
|
+
* // Parsing the number according to custom parsing rules
|
16353
|
+
* // ...
|
16354
|
+
* return parsedNumber;
|
16355
|
+
* };
|
16356
|
+
* ```
|
16357
|
+
* @param stringValue A number represented as a string value.
|
16358
|
+
* @param numericValue A number parsed using a default parsing function. `NaN` if the original string is not a number.
|
16359
|
+
* @returns A number that results from parsing the string value.
|
16360
|
+
* @see [settings.serialization](https://surveyjs.io/form-library/documentation/api-reference/settings#serialization)
|
16361
|
+
*/
|
16362
|
+
parseNumber: (stringValue: any, numericValue: number) => number;
|
16321
16363
|
};
|
16322
16364
|
}
|
16323
|
-
declare module "question_matrixdropdown" {
|
16324
|
-
import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "question_matrixdropdownbase";
|
16325
|
-
import { ItemValue } from "itemvalue";
|
16326
|
-
import { LocalizableString } from "localizablestring";
|
16327
|
-
import { IProgressInfo } from "base-interfaces";
|
16365
|
+
declare module "packages/survey-core/src/question_matrixdropdown" {
|
16366
|
+
import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "packages/survey-core/src/question_matrixdropdownbase";
|
16367
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
16368
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
16369
|
+
import { IProgressInfo } from "packages/survey-core/src/base-interfaces";
|
16328
16370
|
export class MatrixDropdownRowModel extends MatrixDropdownRowModelBase {
|
16329
16371
|
name: string;
|
16330
16372
|
private item;
|
@@ -16375,13 +16417,52 @@ declare module "question_matrixdropdown" {
|
|
16375
16417
|
protected updateProgressInfoByValues(res: IProgressInfo): void;
|
16376
16418
|
}
|
16377
16419
|
}
|
16378
|
-
declare module "
|
16379
|
-
import {
|
16380
|
-
import {
|
16381
|
-
import {
|
16382
|
-
import {
|
16383
|
-
|
16384
|
-
|
16420
|
+
declare module "packages/survey-core/src/popup-dropdown-view-model" {
|
16421
|
+
import { IPosition, Rect } from "packages/survey-core/src/utils/popup";
|
16422
|
+
import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
|
16423
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
16424
|
+
import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
|
16425
|
+
export function calculateIsTablet(windowWidth?: number, windowHeight?: number): boolean;
|
16426
|
+
export class PopupDropdownViewModel extends PopupBaseViewModel {
|
16427
|
+
targetElement?: HTMLElement;
|
16428
|
+
areaElement?: HTMLElement;
|
16429
|
+
static readonly tabletSizeBreakpoint = 600;
|
16430
|
+
private scrollEventCallBack;
|
16431
|
+
private calculateIsTablet;
|
16432
|
+
private resizeEventCallback;
|
16433
|
+
private resizeWindowCallback;
|
16434
|
+
private clientY;
|
16435
|
+
private isTablet;
|
16436
|
+
private touchStartEventCallback;
|
16437
|
+
private touchMoveEventCallback;
|
16438
|
+
protected getAvailableAreaRect(): Rect;
|
16439
|
+
protected getTargetElementRect(): Rect;
|
16440
|
+
private _updatePosition;
|
16441
|
+
protected getActualHorizontalPosition(): "left" | "center" | "right";
|
16442
|
+
protected getStyleClass(): CssClassBuilder;
|
16443
|
+
protected getShowHeader(): boolean;
|
16444
|
+
protected getPopupHeaderTemplate(): string;
|
16445
|
+
popupDirection: string;
|
16446
|
+
pointerTarget: IPosition;
|
16447
|
+
private recalculatePositionHandler;
|
16448
|
+
constructor(model: PopupModel, targetElement?: HTMLElement, areaElement?: HTMLElement);
|
16449
|
+
setComponentElement(componentRoot: HTMLElement, targetElement?: HTMLElement | null, areaElement?: HTMLElement | null): void;
|
16450
|
+
resetComponentElement(): void;
|
16451
|
+
updateOnShowing(): void;
|
16452
|
+
private get shouldCreateResizeCallback();
|
16453
|
+
updatePosition(isResetHeight: boolean, isDelayUpdating?: boolean): void;
|
16454
|
+
updateOnHiding(): void;
|
16455
|
+
protected onModelChanging(newModel: PopupModel): void;
|
16456
|
+
dispose(): void;
|
16457
|
+
}
|
16458
|
+
}
|
16459
|
+
declare module "packages/survey-core/src/dropdownListModel" {
|
16460
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
16461
|
+
import { Base } from "packages/survey-core/src/base";
|
16462
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
16463
|
+
import { ListModel } from "packages/survey-core/src/list";
|
16464
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
16465
|
+
import { Question } from "packages/survey-core/src/question";
|
16385
16466
|
export class DropdownListModel extends Base {
|
16386
16467
|
protected question: Question;
|
16387
16468
|
protected onSelectionChanged?: (item: IAction, ...params: any[]) => void;
|
@@ -16406,6 +16487,7 @@ declare module "dropdownListModel" {
|
|
16406
16487
|
private loadQuestionChoices;
|
16407
16488
|
private updateQuestionChoices;
|
16408
16489
|
private updatePopupFocusFirstInputSelector;
|
16490
|
+
private getDropdownMenuOptions;
|
16409
16491
|
protected createPopup(): void;
|
16410
16492
|
private setFilterStringToListModel;
|
16411
16493
|
private setTextWrapEnabled;
|
@@ -16472,13 +16554,13 @@ declare module "dropdownListModel" {
|
|
16472
16554
|
scrollToFocusedItem(): void;
|
16473
16555
|
}
|
16474
16556
|
}
|
16475
|
-
declare module "question_dropdown" {
|
16476
|
-
import { QuestionSelectBase } from "question_baseselect";
|
16477
|
-
import { LocalizableString } from "localizablestring";
|
16478
|
-
import { ItemValue } from "itemvalue";
|
16479
|
-
import { PopupModel } from "popup";
|
16480
|
-
import { EventBase } from "base";
|
16481
|
-
import { DropdownListModel } from "dropdownListModel";
|
16557
|
+
declare module "packages/survey-core/src/question_dropdown" {
|
16558
|
+
import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
|
16559
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
16560
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
16561
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
16562
|
+
import { EventBase } from "packages/survey-core/src/base";
|
16563
|
+
import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
|
16482
16564
|
/**
|
16483
16565
|
* A class that describes the Dropdown question type.
|
16484
16566
|
*
|
@@ -16621,18 +16703,21 @@ declare module "question_dropdown" {
|
|
16621
16703
|
afterRenderCore(el: any): void;
|
16622
16704
|
onClick(e: any): void;
|
16623
16705
|
onKeyUp(event: any): void;
|
16706
|
+
protected supportEmptyValidation(): boolean;
|
16707
|
+
protected onBlurCore(event: any): void;
|
16708
|
+
protected onFocusCore(event: any): void;
|
16624
16709
|
dispose(): void;
|
16625
16710
|
}
|
16626
16711
|
}
|
16627
|
-
declare module "question_matrix" {
|
16628
|
-
import { HashTable } from "helpers";
|
16629
|
-
import { ItemValue } from "itemvalue";
|
16630
|
-
import { QuestionMatrixBaseModel } from "martixBase";
|
16631
|
-
import { Base } from "base";
|
16632
|
-
import { SurveyError } from "survey-error";
|
16633
|
-
import { LocalizableString, ILocalizableOwner } from "localizablestring";
|
16634
|
-
import { IConditionObject, IQuestionPlainData } from "question";
|
16635
|
-
import { IPlainDataOptions } from "base-interfaces";
|
16712
|
+
declare module "packages/survey-core/src/question_matrix" {
|
16713
|
+
import { HashTable } from "packages/survey-core/src/helpers";
|
16714
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
16715
|
+
import { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
|
16716
|
+
import { Base } from "packages/survey-core/src/base";
|
16717
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
16718
|
+
import { LocalizableString, ILocalizableOwner } from "packages/survey-core/src/localizablestring";
|
16719
|
+
import { IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
|
16720
|
+
import { IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
|
16636
16721
|
export interface IMatrixData {
|
16637
16722
|
onMatrixRowChanged(row: MatrixRowModel): void;
|
16638
16723
|
getCorrectedRowValue(value: any): any;
|
@@ -16727,8 +16812,8 @@ declare module "question_matrix" {
|
|
16727
16812
|
*
|
16728
16813
|
* Possible values:
|
16729
16814
|
*
|
16730
|
-
* - "initial" (default) - Preserves the original order of the `rows` array.
|
16731
|
-
* - "random" - Arranges matrix rows in random order each time the question is displayed.
|
16815
|
+
* - `"initial"` (default) - Preserves the original order of the `rows` array.
|
16816
|
+
* - `"random"` - Arranges matrix rows in random order each time the question is displayed.
|
16732
16817
|
* @see rows
|
16733
16818
|
*/
|
16734
16819
|
get rowsOrder(): string;
|
@@ -16798,11 +16883,11 @@ declare module "question_matrix" {
|
|
16798
16883
|
getRowHeaderWrapperComponentData(cell: ItemValue): any;
|
16799
16884
|
}
|
16800
16885
|
}
|
16801
|
-
declare module "flowpanel" {
|
16802
|
-
import { IElement } from "base-interfaces";
|
16803
|
-
import { PanelModel } from "panel";
|
16804
|
-
import { LocalizableString } from "localizablestring";
|
16805
|
-
import { Question } from "question";
|
16886
|
+
declare module "packages/survey-core/src/flowpanel" {
|
16887
|
+
import { IElement } from "packages/survey-core/src/base-interfaces";
|
16888
|
+
import { PanelModel } from "packages/survey-core/src/panel";
|
16889
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
16890
|
+
import { Question } from "packages/survey-core/src/question";
|
16806
16891
|
/**
|
16807
16892
|
* The flow panel object. It is a container with flow layout where you can mix questions with markdown text.
|
16808
16893
|
*
|
@@ -16834,7 +16919,7 @@ declare module "flowpanel" {
|
|
16834
16919
|
getElementContentText(element: IElement): string;
|
16835
16920
|
}
|
16836
16921
|
}
|
16837
|
-
declare module "template-renderer" {
|
16922
|
+
declare module "packages/survey-core/src/template-renderer" {
|
16838
16923
|
export interface SurveyTemplateRendererTemplateData {
|
16839
16924
|
name: string;
|
16840
16925
|
data: any;
|
@@ -16846,14 +16931,14 @@ declare module "template-renderer" {
|
|
16846
16931
|
templateData: SurveyTemplateRendererTemplateData;
|
16847
16932
|
}
|
16848
16933
|
}
|
16849
|
-
declare module "defaultTitle" {
|
16934
|
+
declare module "packages/survey-core/src/defaultTitle" {
|
16850
16935
|
export class DefaultTitleModel {
|
16851
16936
|
static getIconCss(cssClasses: any, isCollapsed: boolean): string;
|
16852
16937
|
}
|
16853
16938
|
}
|
16854
|
-
declare module "questionnonvalue" {
|
16855
|
-
import { Question, IConditionObject } from "question";
|
16856
|
-
import { SurveyError } from "survey-error";
|
16939
|
+
declare module "packages/survey-core/src/questionnonvalue" {
|
16940
|
+
import { Question, IConditionObject } from "packages/survey-core/src/question";
|
16941
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
16857
16942
|
/**
|
16858
16943
|
* A base class for question types that cannot have a value ([Html](https://surveyjs.io/form-library/documentation/questionhtmlmodel), [Image](https://surveyjs.io/form-library/documentation/questionimagemodel)).
|
16859
16944
|
*
|
@@ -16875,8 +16960,8 @@ declare module "questionnonvalue" {
|
|
16875
16960
|
get ariaRequired(): any;
|
16876
16961
|
}
|
16877
16962
|
}
|
16878
|
-
declare module "question_empty" {
|
16879
|
-
import { Question } from "question";
|
16963
|
+
declare module "packages/survey-core/src/question_empty" {
|
16964
|
+
import { Question } from "packages/survey-core/src/question";
|
16880
16965
|
/**
|
16881
16966
|
* A Model for an question that renders empty "div" tag. It used as a base class for some custom widgets
|
16882
16967
|
*/
|
@@ -16885,12 +16970,12 @@ declare module "question_empty" {
|
|
16885
16970
|
getType(): string;
|
16886
16971
|
}
|
16887
16972
|
}
|
16888
|
-
declare module "question_checkbox" {
|
16889
|
-
import { QuestionCheckboxBase } from "question_baseselect";
|
16890
|
-
import { ItemValue } from "itemvalue";
|
16891
|
-
import { LocalizableString } from "localizablestring";
|
16892
|
-
import { IQuestion } from "base-interfaces";
|
16893
|
-
import { SurveyError } from "survey-error";
|
16973
|
+
declare module "packages/survey-core/src/question_checkbox" {
|
16974
|
+
import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
|
16975
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
16976
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
16977
|
+
import { IQuestion } from "packages/survey-core/src/base-interfaces";
|
16978
|
+
import { SurveyError } from "packages/survey-core/src/survey-error";
|
16894
16979
|
/**
|
16895
16980
|
* A class that describes the Checkboxes question type.
|
16896
16981
|
*
|
@@ -17040,9 +17125,9 @@ declare module "question_checkbox" {
|
|
17040
17125
|
get a11y_input_ariaRequired(): "true" | "false";
|
17041
17126
|
}
|
17042
17127
|
}
|
17043
|
-
declare module "multiSelectListModel" {
|
17044
|
-
import { Action, BaseAction, IAction } from "actions/action";
|
17045
|
-
import { IListModel, ListModel } from "list";
|
17128
|
+
declare module "packages/survey-core/src/multiSelectListModel" {
|
17129
|
+
import { Action, BaseAction, IAction } from "packages/survey-core/src/actions/action";
|
17130
|
+
import { IListModel, ListModel } from "packages/survey-core/src/list";
|
17046
17131
|
export interface IMultiSelectListModel extends IListModel {
|
17047
17132
|
selectedItems?: Array<IAction>;
|
17048
17133
|
}
|
@@ -17059,12 +17144,12 @@ declare module "multiSelectListModel" {
|
|
17059
17144
|
selectFocusedItem(): void;
|
17060
17145
|
}
|
17061
17146
|
}
|
17062
|
-
declare module "dropdownMultiSelectListModel" {
|
17063
|
-
import { IAction } from "actions/action";
|
17064
|
-
import { DropdownListModel } from "dropdownListModel";
|
17065
|
-
import { ItemValue } from "itemvalue";
|
17066
|
-
import { MultiSelectListModel } from "multiSelectListModel";
|
17067
|
-
import { Question } from "question";
|
17147
|
+
declare module "packages/survey-core/src/dropdownMultiSelectListModel" {
|
17148
|
+
import { IAction } from "packages/survey-core/src/actions/action";
|
17149
|
+
import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
|
17150
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17151
|
+
import { MultiSelectListModel } from "packages/survey-core/src/multiSelectListModel";
|
17152
|
+
import { Question } from "packages/survey-core/src/question";
|
17068
17153
|
export class DropdownMultiSelectListModel extends DropdownListModel {
|
17069
17154
|
protected popupCssClasses: string;
|
17070
17155
|
filterStringPlaceholder: string;
|
@@ -17098,13 +17183,13 @@ declare module "dropdownMultiSelectListModel" {
|
|
17098
17183
|
protected onPropertyChangedHandler(sender: any, options: any): void;
|
17099
17184
|
}
|
17100
17185
|
}
|
17101
|
-
declare module "question_tagbox" {
|
17102
|
-
import { LocalizableString } from "localizablestring";
|
17103
|
-
import { QuestionCheckboxModel } from "question_checkbox";
|
17104
|
-
import { PopupModel } from "popup";
|
17105
|
-
import { DropdownMultiSelectListModel } from "dropdownMultiSelectListModel";
|
17106
|
-
import { EventBase } from "base";
|
17107
|
-
import { ItemValue } from "itemvalue";
|
17186
|
+
declare module "packages/survey-core/src/question_tagbox" {
|
17187
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
17188
|
+
import { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
|
17189
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
17190
|
+
import { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
|
17191
|
+
import { EventBase } from "packages/survey-core/src/base";
|
17192
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17108
17193
|
/**
|
17109
17194
|
* A class that describes the Multi-Select Dropdown (Tag Box) question type.
|
17110
17195
|
*
|
@@ -17185,16 +17270,19 @@ declare module "question_tagbox" {
|
|
17185
17270
|
updateItemDisplayNameMap(): void;
|
17186
17271
|
protected getFirstInputElementId(): string;
|
17187
17272
|
getInputId(): string;
|
17273
|
+
protected supportEmptyValidation(): boolean;
|
17274
|
+
protected onBlurCore(event: any): void;
|
17275
|
+
protected onFocusCore(event: any): void;
|
17188
17276
|
dispose(): void;
|
17189
17277
|
clearValue(keepComment?: boolean): void;
|
17190
17278
|
get showClearButton(): boolean;
|
17191
17279
|
get isNewA11yStructure(): boolean;
|
17192
17280
|
}
|
17193
17281
|
}
|
17194
|
-
declare module "question_imagepicker" {
|
17195
|
-
import { QuestionCheckboxBase } from "question_baseselect";
|
17196
|
-
import { ItemValue } from "itemvalue";
|
17197
|
-
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
17282
|
+
declare module "packages/survey-core/src/question_imagepicker" {
|
17283
|
+
import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
|
17284
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17285
|
+
import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
|
17198
17286
|
export class ImageItemValue extends ItemValue implements ILocalizableOwner {
|
17199
17287
|
protected typeName: string;
|
17200
17288
|
private videoNotLoaded;
|
@@ -17359,10 +17447,10 @@ declare module "question_imagepicker" {
|
|
17359
17447
|
afterRender(el: HTMLElement): void;
|
17360
17448
|
}
|
17361
17449
|
}
|
17362
|
-
declare module "dragdrop/choices" {
|
17363
|
-
import { ItemValue } from "itemvalue";
|
17364
|
-
import { QuestionSelectBase } from "question_baseselect";
|
17365
|
-
import { DragDropCore } from "dragdrop/core";
|
17450
|
+
declare module "packages/survey-core/src/dragdrop/choices" {
|
17451
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17452
|
+
import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
|
17453
|
+
import { DragDropCore } from "packages/survey-core/src/dragdrop/core";
|
17366
17454
|
export class DragDropChoices extends DragDropCore<QuestionSelectBase> {
|
17367
17455
|
private imagepickerControlsNode;
|
17368
17456
|
protected get draggedElementType(): string;
|
@@ -17381,10 +17469,10 @@ declare module "dragdrop/choices" {
|
|
17381
17469
|
private updateVisibleChoices;
|
17382
17470
|
}
|
17383
17471
|
}
|
17384
|
-
declare module "dragdrop/ranking-choices" {
|
17385
|
-
import { ItemValue } from "itemvalue";
|
17386
|
-
import { DragDropChoices } from "dragdrop/choices";
|
17387
|
-
import { QuestionRankingModel } from "question_ranking";
|
17472
|
+
declare module "packages/survey-core/src/dragdrop/ranking-choices" {
|
17473
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17474
|
+
import { DragDropChoices } from "packages/survey-core/src/dragdrop/choices";
|
17475
|
+
import { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
|
17388
17476
|
export class DragDropRankingChoices extends DragDropChoices {
|
17389
17477
|
protected get draggedElementType(): string;
|
17390
17478
|
protected createDraggedElementShortcut(text: string, draggedElementNode: HTMLElement, event: PointerEvent): HTMLElement;
|
@@ -17409,10 +17497,10 @@ declare module "dragdrop/ranking-choices" {
|
|
17409
17497
|
clear(): void;
|
17410
17498
|
}
|
17411
17499
|
}
|
17412
|
-
declare module "dragdrop/ranking-select-to-rank" {
|
17413
|
-
import { ItemValue } from "itemvalue";
|
17414
|
-
import { DragDropRankingChoices } from "dragdrop/ranking-choices";
|
17415
|
-
import { QuestionRankingModel } from "question_ranking";
|
17500
|
+
declare module "packages/survey-core/src/dragdrop/ranking-select-to-rank" {
|
17501
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17502
|
+
import { DragDropRankingChoices } from "packages/survey-core/src/dragdrop/ranking-choices";
|
17503
|
+
import { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
|
17416
17504
|
export class DragDropRankingSelectToRank extends DragDropRankingChoices {
|
17417
17505
|
protected findDropTargetNodeByDragOverNode(dragOverNode: HTMLElement): HTMLElement;
|
17418
17506
|
protected getDropTargetByDataAttributeValue(dataAttributeValue: string): ItemValue;
|
@@ -17428,12 +17516,12 @@ declare module "dragdrop/ranking-select-to-rank" {
|
|
17428
17516
|
unselectFromRank: (questionModel: QuestionRankingModel, fromIndex: number, toIndex?: number) => void;
|
17429
17517
|
}
|
17430
17518
|
}
|
17431
|
-
declare module "question_ranking" {
|
17432
|
-
import { ISurveyImpl } from "base-interfaces";
|
17433
|
-
import { DragDropRankingChoices } from "dragdrop/ranking-choices";
|
17434
|
-
import { ItemValue } from "itemvalue";
|
17435
|
-
import { QuestionCheckboxModel } from "question_checkbox";
|
17436
|
-
import { AnimationGroup } from "utils/animation";
|
17519
|
+
declare module "packages/survey-core/src/question_ranking" {
|
17520
|
+
import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
|
17521
|
+
import { DragDropRankingChoices } from "packages/survey-core/src/dragdrop/ranking-choices";
|
17522
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17523
|
+
import { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
|
17524
|
+
import { AnimationGroup } from "packages/survey-core/src/utils/animation";
|
17437
17525
|
/**
|
17438
17526
|
* A class that describes the Ranking question type.
|
17439
17527
|
*
|
@@ -17493,7 +17581,7 @@ declare module "question_ranking" {
|
|
17493
17581
|
startDrag: (event: PointerEvent) => void;
|
17494
17582
|
handlePointerUp: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
17495
17583
|
private isDragStartNodeValid;
|
17496
|
-
private
|
17584
|
+
private isAllowStartDrag;
|
17497
17585
|
private canStartDragDueMaxSelectedChoices;
|
17498
17586
|
private canStartDragDueItemEnabled;
|
17499
17587
|
checkMaxSelectedChoicesUnreached(): boolean;
|
@@ -17562,8 +17650,8 @@ declare module "question_ranking" {
|
|
17562
17650
|
get isNewA11yStructure(): boolean;
|
17563
17651
|
}
|
17564
17652
|
}
|
17565
|
-
declare module "question_comment" {
|
17566
|
-
import { QuestionTextBase } from "question_textbase";
|
17653
|
+
declare module "packages/survey-core/src/question_comment" {
|
17654
|
+
import { QuestionTextBase } from "packages/survey-core/src/question_textbase";
|
17567
17655
|
/**
|
17568
17656
|
* A class that describes the Long Text question type.
|
17569
17657
|
*
|
@@ -17610,6 +17698,7 @@ declare module "question_comment" {
|
|
17610
17698
|
updateElement(): void;
|
17611
17699
|
beforeDestroyQuestionElement(el: HTMLElement): void;
|
17612
17700
|
onInput(event: any): void;
|
17701
|
+
protected onBlurCore(event: any): void;
|
17613
17702
|
onKeyDown(event: any): void;
|
17614
17703
|
protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
|
17615
17704
|
onValueChanged(): void;
|
@@ -17618,9 +17707,9 @@ declare module "question_comment" {
|
|
17618
17707
|
get className(): string;
|
17619
17708
|
}
|
17620
17709
|
}
|
17621
|
-
declare module "question_html" {
|
17622
|
-
import { QuestionNonValue } from "questionnonvalue";
|
17623
|
-
import { LocalizableString } from "localizablestring";
|
17710
|
+
declare module "packages/survey-core/src/question_html" {
|
17711
|
+
import { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
|
17712
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
17624
17713
|
/**
|
17625
17714
|
* A class that describes the HTML question type. Unlike other question types, HTML cannot have a title or value.
|
17626
17715
|
*
|
@@ -17646,10 +17735,10 @@ declare module "question_html" {
|
|
17646
17735
|
get renderCssRoot(): string;
|
17647
17736
|
}
|
17648
17737
|
}
|
17649
|
-
declare module "question_radiogroup" {
|
17650
|
-
import { QuestionCheckboxBase } from "question_baseselect";
|
17651
|
-
import { ItemValue } from "itemvalue";
|
17652
|
-
import { Action } from "actions/action";
|
17738
|
+
declare module "packages/survey-core/src/question_radiogroup" {
|
17739
|
+
import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
|
17740
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17741
|
+
import { Action } from "packages/survey-core/src/actions/action";
|
17653
17742
|
/**
|
17654
17743
|
* A class that describes the Radio Button Group question type.
|
17655
17744
|
*
|
@@ -17683,14 +17772,14 @@ declare module "question_radiogroup" {
|
|
17683
17772
|
get a11y_input_ariaRole(): string;
|
17684
17773
|
}
|
17685
17774
|
}
|
17686
|
-
declare module "question_rating" {
|
17687
|
-
import { ItemValue } from "itemvalue";
|
17688
|
-
import { Question } from "question";
|
17689
|
-
import { LocalizableString } from "localizablestring";
|
17690
|
-
import { Base } from "base";
|
17691
|
-
import { DropdownListModel } from "dropdownListModel";
|
17692
|
-
import { ISurveyImpl } from "base-interfaces";
|
17693
|
-
import { ITheme } from "themes";
|
17775
|
+
declare module "packages/survey-core/src/question_rating" {
|
17776
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
17777
|
+
import { Question } from "packages/survey-core/src/question";
|
17778
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
17779
|
+
import { Base } from "packages/survey-core/src/base";
|
17780
|
+
import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
|
17781
|
+
import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
|
17782
|
+
import { ITheme } from "packages/survey-core/src/themes";
|
17694
17783
|
export class RenderedRatingItem extends Base {
|
17695
17784
|
itemValue: ItemValue;
|
17696
17785
|
private locString;
|
@@ -17801,6 +17890,7 @@ declare module "question_rating" {
|
|
17801
17890
|
private updateColors;
|
17802
17891
|
protected getDisplayValueCore(keysAsText: boolean, value: any): any;
|
17803
17892
|
get visibleRateValues(): ItemValue[];
|
17893
|
+
protected supportEmptyValidation(): boolean;
|
17804
17894
|
itemValuePropertyChanged(item: ItemValue, name: string, oldValue: any, newValue: any): void;
|
17805
17895
|
private createRenderedRateItems;
|
17806
17896
|
renderedRateItems: Array<RenderedRatingItem>;
|
@@ -17974,10 +18064,10 @@ declare module "question_rating" {
|
|
17974
18064
|
dispose(): void;
|
17975
18065
|
}
|
17976
18066
|
}
|
17977
|
-
declare module "question_boolean" {
|
17978
|
-
import { Question } from "question";
|
17979
|
-
import { LocalizableString } from "localizablestring";
|
17980
|
-
import { ActionContainer } from "actions/container";
|
18067
|
+
declare module "packages/survey-core/src/question_boolean" {
|
18068
|
+
import { Question } from "packages/survey-core/src/question";
|
18069
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
18070
|
+
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
17981
18071
|
/**
|
17982
18072
|
* A class that describes the Yes/No (Boolean) question type.
|
17983
18073
|
*
|
@@ -18088,9 +18178,9 @@ declare module "question_boolean" {
|
|
18088
18178
|
get a11y_input_ariaRole(): string;
|
18089
18179
|
}
|
18090
18180
|
}
|
18091
|
-
declare module "question_image" {
|
18092
|
-
import { QuestionNonValue } from "questionnonvalue";
|
18093
|
-
import { LocalizableString } from "localizablestring";
|
18181
|
+
declare module "packages/survey-core/src/question_image" {
|
18182
|
+
import { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
|
18183
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
18094
18184
|
/**
|
18095
18185
|
* A class that describes the Image question type. Unlike other question types, Image cannot have a title or value.
|
18096
18186
|
*
|
@@ -18176,16 +18266,16 @@ declare module "question_image" {
|
|
18176
18266
|
private isVideo;
|
18177
18267
|
}
|
18178
18268
|
}
|
18179
|
-
declare module "surveyProgress" {
|
18269
|
+
declare module "packages/survey-core/src/surveyProgress" {
|
18180
18270
|
export class SurveyProgressModel {
|
18181
18271
|
static getProgressTextInBarCss(css: any): string;
|
18182
18272
|
static getProgressTextUnderBarCss(css: any): string;
|
18183
18273
|
}
|
18184
18274
|
}
|
18185
|
-
declare module "popup-survey" {
|
18186
|
-
import { Base } from "base";
|
18187
|
-
import { SurveyModel } from "survey";
|
18188
|
-
import { LocalizableString } from "localizablestring";
|
18275
|
+
declare module "packages/survey-core/src/popup-survey" {
|
18276
|
+
import { Base } from "packages/survey-core/src/base";
|
18277
|
+
import { SurveyModel } from "packages/survey-core/src/survey";
|
18278
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
18189
18279
|
/**
|
18190
18280
|
* A class that renders a survey in a pop-up window.
|
18191
18281
|
*
|
@@ -18316,48 +18406,10 @@ declare module "popup-survey" {
|
|
18316
18406
|
export class SurveyWindowModel extends PopupSurveyModel {
|
18317
18407
|
}
|
18318
18408
|
}
|
18319
|
-
declare module "popup-
|
18320
|
-
import {
|
18321
|
-
import {
|
18322
|
-
import {
|
18323
|
-
import { PopupBaseViewModel } from "popup-view-model";
|
18324
|
-
export class PopupDropdownViewModel extends PopupBaseViewModel {
|
18325
|
-
targetElement?: HTMLElement;
|
18326
|
-
areaElement?: HTMLElement;
|
18327
|
-
private scrollEventCallBack;
|
18328
|
-
private static readonly tabletSizeBreakpoint;
|
18329
|
-
private calculateIsTablet;
|
18330
|
-
private resizeEventCallback;
|
18331
|
-
private resizeWindowCallback;
|
18332
|
-
private clientY;
|
18333
|
-
private isTablet;
|
18334
|
-
private touchStartEventCallback;
|
18335
|
-
private touchMoveEventCallback;
|
18336
|
-
protected getAvailableAreaRect(): Rect;
|
18337
|
-
protected getTargetElementRect(): Rect;
|
18338
|
-
private _updatePosition;
|
18339
|
-
protected getActualHorizontalPosition(): "left" | "center" | "right";
|
18340
|
-
protected getStyleClass(): CssClassBuilder;
|
18341
|
-
protected getShowHeader(): boolean;
|
18342
|
-
protected getPopupHeaderTemplate(): string;
|
18343
|
-
popupDirection: string;
|
18344
|
-
pointerTarget: IPosition;
|
18345
|
-
private recalculatePositionHandler;
|
18346
|
-
constructor(model: PopupModel, targetElement?: HTMLElement, areaElement?: HTMLElement);
|
18347
|
-
setComponentElement(componentRoot: HTMLElement, targetElement?: HTMLElement | null, areaElement?: HTMLElement | null): void;
|
18348
|
-
resetComponentElement(): void;
|
18349
|
-
updateOnShowing(): void;
|
18350
|
-
private get shouldCreateResizeCallback();
|
18351
|
-
updatePosition(isResetHeight: boolean, isDelayUpdating?: boolean): void;
|
18352
|
-
updateOnHiding(): void;
|
18353
|
-
protected onModelChanging(newModel: PopupModel): void;
|
18354
|
-
dispose(): void;
|
18355
|
-
}
|
18356
|
-
}
|
18357
|
-
declare module "popup-modal-view-model" {
|
18358
|
-
import { CssClassBuilder } from "utils/cssClassBuilder";
|
18359
|
-
import { PopupModel } from "popup";
|
18360
|
-
import { PopupBaseViewModel } from "popup-view-model";
|
18409
|
+
declare module "packages/survey-core/src/popup-modal-view-model" {
|
18410
|
+
import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
|
18411
|
+
import { PopupModel } from "packages/survey-core/src/popup";
|
18412
|
+
import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
|
18361
18413
|
export class PopupModalViewModel extends PopupBaseViewModel {
|
18362
18414
|
protected getStyleClass(): CssClassBuilder;
|
18363
18415
|
protected getShowFooter(): boolean;
|
@@ -18372,16 +18424,16 @@ declare module "popup-modal-view-model" {
|
|
18372
18424
|
updateOnHiding(): void;
|
18373
18425
|
}
|
18374
18426
|
}
|
18375
|
-
declare module "popup-utils" {
|
18376
|
-
import { IDialogOptions, PopupModel } from "popup";
|
18377
|
-
import { PopupBaseViewModel } from "popup-view-model";
|
18427
|
+
declare module "packages/survey-core/src/popup-utils" {
|
18428
|
+
import { IDialogOptions, PopupModel } from "packages/survey-core/src/popup";
|
18429
|
+
import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
|
18378
18430
|
export function createPopupModalViewModel(options: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
|
18379
18431
|
export function createPopupViewModel(model: PopupModel, targetElement?: HTMLElement): PopupBaseViewModel;
|
18380
18432
|
}
|
18381
|
-
declare module "question_buttongroup" {
|
18382
|
-
import { ItemValue } from "itemvalue";
|
18383
|
-
import { QuestionCheckboxBase } from "question_baseselect";
|
18384
|
-
import { LocalizableString } from "localizablestring";
|
18433
|
+
declare module "packages/survey-core/src/question_buttongroup" {
|
18434
|
+
import { ItemValue } from "packages/survey-core/src/itemvalue";
|
18435
|
+
import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
|
18436
|
+
import { LocalizableString } from "packages/survey-core/src/localizablestring";
|
18385
18437
|
export class ButtonGroupItemValue extends ItemValue {
|
18386
18438
|
protected typeName: string;
|
18387
18439
|
constructor(value: any, text?: string, typeName?: string);
|
@@ -18431,10 +18483,10 @@ declare module "question_buttongroup" {
|
|
18431
18483
|
onChange(): void;
|
18432
18484
|
}
|
18433
18485
|
}
|
18434
|
-
declare module "mask/mask_pattern" {
|
18435
|
-
import { InputMaskBase } from "mask/mask_base";
|
18436
|
-
import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
|
18437
|
-
import { ILoadFromJSONOptions } from "base-interfaces";
|
18486
|
+
declare module "packages/survey-core/src/mask/mask_pattern" {
|
18487
|
+
import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
18488
|
+
import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
|
18489
|
+
import { ILoadFromJSONOptions } from "packages/survey-core/src/base-interfaces";
|
18438
18490
|
export interface IMaskLiteral {
|
18439
18491
|
type: "const" | "regex" | "fixed";
|
18440
18492
|
value: any;
|
@@ -18511,9 +18563,9 @@ declare module "mask/mask_pattern" {
|
|
18511
18563
|
getUnmaskedValue(src: string): any;
|
18512
18564
|
}
|
18513
18565
|
}
|
18514
|
-
declare module "mask/mask_numeric" {
|
18515
|
-
import { InputMaskBase } from "mask/mask_base";
|
18516
|
-
import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
|
18566
|
+
declare module "packages/survey-core/src/mask/mask_numeric" {
|
18567
|
+
import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
18568
|
+
import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
|
18517
18569
|
interface INumericalComposition {
|
18518
18570
|
integralPart: string;
|
18519
18571
|
fractionalPart: string;
|
@@ -18602,9 +18654,9 @@ declare module "mask/mask_numeric" {
|
|
18602
18654
|
protected isPropertyEmpty(value: any): boolean;
|
18603
18655
|
}
|
18604
18656
|
}
|
18605
|
-
declare module "mask/mask_datetime" {
|
18606
|
-
import { InputMaskPattern } from "mask/mask_pattern";
|
18607
|
-
import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
|
18657
|
+
declare module "packages/survey-core/src/mask/mask_datetime" {
|
18658
|
+
import { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
|
18659
|
+
import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
|
18608
18660
|
type DateTimeMaskLexemType = "month" | "day" | "year" | "hour" | "minute" | "second" | "timeMarker" | "separator";
|
18609
18661
|
export interface IDateTimeMaskLexem {
|
18610
18662
|
type: DateTimeMaskLexemType;
|
@@ -18693,9 +18745,9 @@ declare module "mask/mask_datetime" {
|
|
18693
18745
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
18694
18746
|
}
|
18695
18747
|
}
|
18696
|
-
declare module "mask/mask_currency" {
|
18697
|
-
import { InputMaskNumeric } from "mask/mask_numeric";
|
18698
|
-
import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
|
18748
|
+
declare module "packages/survey-core/src/mask/mask_currency" {
|
18749
|
+
import { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
|
18750
|
+
import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
|
18699
18751
|
/**
|
18700
18752
|
* A class that describes an input mask of the `"currency"` [`maskType`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model#maskType).
|
18701
18753
|
*
|
@@ -18736,110 +18788,175 @@ declare module "mask/mask_currency" {
|
|
18736
18788
|
getMaskedValue(src: any): string;
|
18737
18789
|
}
|
18738
18790
|
}
|
18739
|
-
declare module "entries/chunks/model" {
|
18791
|
+
declare module "packages/survey-core/entries/chunks/model" {
|
18740
18792
|
export var Version: string;
|
18741
18793
|
export var ReleaseDate: string;
|
18742
18794
|
export function checkLibraryVersion(ver: string, libraryName: string): void;
|
18743
18795
|
export function setLicenseKey(key: string): void;
|
18744
18796
|
export function slk(key: string): void;
|
18745
18797
|
export function hasLicense(index: number): boolean;
|
18746
|
-
export { settings, ISurveyEnvironment } from "settings";
|
18747
|
-
export { Helpers, HashTable } from "helpers";
|
18748
|
-
export { AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner } from "validator";
|
18749
|
-
export { ItemValue } from "itemvalue";
|
18750
|
-
export { Base, Event, EventBase, ArrayChanges, ComputedUpdater } from "base";
|
18751
|
-
export { ISurvey, ISurveyElement, IElement, IQuestion, IPage, IPanel, ISurveyData, ITitleOwner, ISurveyLayoutElement, IPlainDataOptions as IPlainData, IShortcutText, ILoadFromJSONOptions, ISaveToJSONOptions, HorizontalAlignment, VerticalAlignment } from "base-interfaces";
|
18752
|
-
export { SurveyError } from "survey-error";
|
18753
|
-
export { SurveyElementCore, SurveyElement, DragTypeOverMeEnum } from "survey-element";
|
18754
|
-
export { CalculatedValue } from "calculatedValue";
|
18755
|
-
export { CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError } from "error";
|
18756
|
-
export { ILocalizableOwner, ILocalizableString, LocalizableString, LocalizableStrings } from "localizablestring";
|
18757
|
-
export { HtmlConditionItem, UrlConditionItem } from "expressionItems";
|
18758
|
-
export { ChoicesRestful, ChoicesRestfull } from "choicesRestful";
|
18759
|
-
export { FunctionFactory, registerFunction } from "functionsfactory";
|
18760
|
-
export { ConditionRunner, ExpressionRunner, IExpresionExecutor, ExpressionExecutor } from "conditions";
|
18761
|
-
export { Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand } from "expressions/expressions";
|
18762
|
-
export { ConditionsParser } from "conditionsParser";
|
18763
|
-
export { ProcessValue } from "conditionProcessValue";
|
18764
|
-
export { JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, IJsonPropertyInfo, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray } from "jsonobject";
|
18765
|
-
export { IMatrixDropdownData, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
|
18766
|
-
export { MatrixDropdownColumn, matrixDropdownColumnTypes } from "question_matrixdropdowncolumn";
|
18767
|
-
export { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable } from "question_matrixdropdownrendered";
|
18768
|
-
export { MatrixDropdownRowModel, QuestionMatrixDropdownModel } from "question_matrixdropdown";
|
18769
|
-
export { MatrixDynamicRowModel, QuestionMatrixDynamicModel } from "question_matrixdynamic";
|
18770
|
-
export { MatrixRowModel, MatrixCells, QuestionMatrixModel, IMatrixData } from "question_matrix";
|
18771
|
-
export { QuestionMatrixBaseModel } from "martixBase";
|
18772
|
-
export { MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel } from "question_multipletext";
|
18773
|
-
export { PanelModel, PanelModelBase, QuestionRowModel } from "panel";
|
18774
|
-
export { FlowPanelModel } from "flowpanel";
|
18775
|
-
export { PageModel } from "page";
|
18776
|
-
export * from "template-renderer";
|
18777
|
-
export { DefaultTitleModel } from "defaultTitle";
|
18778
|
-
export { Question } from "question";
|
18779
|
-
export { QuestionNonValue } from "questionnonvalue";
|
18780
|
-
export { QuestionEmptyModel } from "question_empty";
|
18781
|
-
export { QuestionCheckboxBase, QuestionSelectBase } from "question_baseselect";
|
18782
|
-
export { QuestionCheckboxModel } from "question_checkbox";
|
18783
|
-
export { QuestionTagboxModel } from "question_tagbox";
|
18784
|
-
export { QuestionRankingModel } from "question_ranking";
|
18785
|
-
export { QuestionCommentModel } from "question_comment";
|
18786
|
-
export { QuestionDropdownModel } from "question_dropdown";
|
18787
|
-
export { QuestionFactory, ElementFactory } from "questionfactory";
|
18788
|
-
export { QuestionFileModel } from "question_file";
|
18789
|
-
export { QuestionHtmlModel } from "question_html";
|
18790
|
-
export { QuestionRadiogroupModel } from "question_radiogroup";
|
18791
|
-
export { QuestionRatingModel, RenderedRatingItem } from "question_rating";
|
18792
|
-
export { QuestionExpressionModel } from "question_expression";
|
18793
|
-
export { QuestionTextBase, CharacterCounter } from "question_textbase";
|
18794
|
-
export { QuestionTextModel } from "question_text";
|
18795
|
-
export { QuestionBooleanModel } from "question_boolean";
|
18796
|
-
export { QuestionImagePickerModel, ImageItemValue } from "question_imagepicker";
|
18797
|
-
export { QuestionImageModel } from "question_image";
|
18798
|
-
export { QuestionSignaturePadModel } from "question_signaturepad";
|
18799
|
-
export { QuestionPanelDynamicModel, QuestionPanelDynamicItem } from "question_paneldynamic";
|
18800
|
-
export { SurveyTimer } from "surveytimer";
|
18801
|
-
export { SurveyTimerModel } from "surveyTimerModel";
|
18802
|
-
export * from "surveyToc";
|
18803
|
-
export { SurveyProgressModel } from "surveyProgress";
|
18804
|
-
export { ProgressButtons, ProgressButtonsResponsivityManager, IProgressButtonsViewModel } from "progress-buttons";
|
18805
|
-
export * from "themes";
|
18806
|
-
export { SurveyModel } from "survey";
|
18807
|
-
export * from "survey-events-api";
|
18808
|
-
export { SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger } from "trigger";
|
18809
|
-
export { PopupSurveyModel, SurveyWindowModel } from "popup-survey";
|
18810
|
-
export { TextPreProcessor } from "textPreProcessor";
|
18811
|
-
export { Notifier } from "notifier";
|
18812
|
-
export { Cover, CoverCell } from "header";
|
18813
|
-
export { dxSurveyService } from "dxSurveyService";
|
18814
|
-
export { englishStrings } from "localization/english";
|
18815
|
-
export { surveyLocalization, surveyStrings } from "surveyStrings";
|
18816
|
-
export { QuestionCustomWidget, CustomWidgetCollection, } from "questionCustomWidgets";
|
18817
|
-
export { QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, ICustomQuestionTypeConfiguration } from "question_custom";
|
18818
|
-
export {
|
18819
|
-
export {
|
18820
|
-
export {
|
18821
|
-
export {
|
18822
|
-
export {
|
18823
|
-
export {
|
18824
|
-
export {
|
18825
|
-
export {
|
18826
|
-
export {
|
18827
|
-
export {
|
18828
|
-
export {
|
18829
|
-
export {
|
18830
|
-
export {
|
18831
|
-
export {
|
18832
|
-
export {
|
18833
|
-
export {
|
18834
|
-
export {
|
18835
|
-
export
|
18836
|
-
export
|
18837
|
-
export {
|
18838
|
-
export {
|
18839
|
-
export {
|
18840
|
-
|
18841
|
-
|
18842
|
-
|
18798
|
+
export { settings, ISurveyEnvironment } from "packages/survey-core/src/settings";
|
18799
|
+
export { Helpers, HashTable } from "packages/survey-core/src/helpers";
|
18800
|
+
export { AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner } from "packages/survey-core/src/validator";
|
18801
|
+
export { ItemValue } from "packages/survey-core/src/itemvalue";
|
18802
|
+
export { Base, Event, EventBase, ArrayChanges, ComputedUpdater } from "packages/survey-core/src/base";
|
18803
|
+
export { ISurvey, ISurveyElement, IElement, IQuestion, IPage, IPanel, ISurveyData, ITitleOwner, ISurveyLayoutElement, IPlainDataOptions as IPlainData, IShortcutText, ILoadFromJSONOptions, ISaveToJSONOptions, HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
|
18804
|
+
export { SurveyError } from "packages/survey-core/src/survey-error";
|
18805
|
+
export { SurveyElementCore, SurveyElement, DragTypeOverMeEnum } from "packages/survey-core/src/survey-element";
|
18806
|
+
export { CalculatedValue } from "packages/survey-core/src/calculatedValue";
|
18807
|
+
export { CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError } from "packages/survey-core/src/error";
|
18808
|
+
export { ILocalizableOwner, ILocalizableString, LocalizableString, LocalizableStrings } from "packages/survey-core/src/localizablestring";
|
18809
|
+
export { HtmlConditionItem, UrlConditionItem } from "packages/survey-core/src/expressionItems";
|
18810
|
+
export { ChoicesRestful, ChoicesRestfull } from "packages/survey-core/src/choicesRestful";
|
18811
|
+
export { FunctionFactory, registerFunction } from "packages/survey-core/src/functionsfactory";
|
18812
|
+
export { ConditionRunner, ExpressionRunner, IExpresionExecutor, ExpressionExecutor } from "packages/survey-core/src/conditions";
|
18813
|
+
export { Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand } from "packages/survey-core/src/expressions/expressions";
|
18814
|
+
export { ConditionsParser } from "packages/survey-core/src/conditionsParser";
|
18815
|
+
export { ProcessValue } from "packages/survey-core/src/conditionProcessValue";
|
18816
|
+
export { JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, IJsonPropertyInfo, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray } from "packages/survey-core/src/jsonobject";
|
18817
|
+
export { IMatrixDropdownData, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
18818
|
+
export { MatrixDropdownColumn, matrixDropdownColumnTypes } from "packages/survey-core/src/question_matrixdropdowncolumn";
|
18819
|
+
export { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
|
18820
|
+
export { MatrixDropdownRowModel, QuestionMatrixDropdownModel } from "packages/survey-core/src/question_matrixdropdown";
|
18821
|
+
export { MatrixDynamicRowModel, QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
|
18822
|
+
export { MatrixRowModel, MatrixCells, QuestionMatrixModel, IMatrixData } from "packages/survey-core/src/question_matrix";
|
18823
|
+
export { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
|
18824
|
+
export { MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel } from "packages/survey-core/src/question_multipletext";
|
18825
|
+
export { PanelModel, PanelModelBase, QuestionRowModel } from "packages/survey-core/src/panel";
|
18826
|
+
export { FlowPanelModel } from "packages/survey-core/src/flowpanel";
|
18827
|
+
export { PageModel } from "packages/survey-core/src/page";
|
18828
|
+
export * from "packages/survey-core/src/template-renderer";
|
18829
|
+
export { DefaultTitleModel } from "packages/survey-core/src/defaultTitle";
|
18830
|
+
export { Question } from "packages/survey-core/src/question";
|
18831
|
+
export { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
|
18832
|
+
export { QuestionEmptyModel } from "packages/survey-core/src/question_empty";
|
18833
|
+
export { QuestionCheckboxBase, QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
|
18834
|
+
export { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
|
18835
|
+
export { QuestionTagboxModel } from "packages/survey-core/src/question_tagbox";
|
18836
|
+
export { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
|
18837
|
+
export { QuestionCommentModel } from "packages/survey-core/src/question_comment";
|
18838
|
+
export { QuestionDropdownModel } from "packages/survey-core/src/question_dropdown";
|
18839
|
+
export { QuestionFactory, ElementFactory } from "packages/survey-core/src/questionfactory";
|
18840
|
+
export { QuestionFileModel } from "packages/survey-core/src/question_file";
|
18841
|
+
export { QuestionHtmlModel } from "packages/survey-core/src/question_html";
|
18842
|
+
export { QuestionRadiogroupModel } from "packages/survey-core/src/question_radiogroup";
|
18843
|
+
export { QuestionRatingModel, RenderedRatingItem } from "packages/survey-core/src/question_rating";
|
18844
|
+
export { QuestionExpressionModel } from "packages/survey-core/src/question_expression";
|
18845
|
+
export { QuestionTextBase, CharacterCounter } from "packages/survey-core/src/question_textbase";
|
18846
|
+
export { QuestionTextModel } from "packages/survey-core/src/question_text";
|
18847
|
+
export { QuestionBooleanModel } from "packages/survey-core/src/question_boolean";
|
18848
|
+
export { QuestionImagePickerModel, ImageItemValue } from "packages/survey-core/src/question_imagepicker";
|
18849
|
+
export { QuestionImageModel } from "packages/survey-core/src/question_image";
|
18850
|
+
export { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
|
18851
|
+
export { QuestionPanelDynamicModel, QuestionPanelDynamicItem } from "packages/survey-core/src/question_paneldynamic";
|
18852
|
+
export { SurveyTimer } from "packages/survey-core/src/surveytimer";
|
18853
|
+
export { SurveyTimerModel } from "packages/survey-core/src/surveyTimerModel";
|
18854
|
+
export * from "packages/survey-core/src/surveyToc";
|
18855
|
+
export { SurveyProgressModel } from "packages/survey-core/src/surveyProgress";
|
18856
|
+
export { ProgressButtons, ProgressButtonsResponsivityManager, IProgressButtonsViewModel } from "packages/survey-core/src/progress-buttons";
|
18857
|
+
export * from "packages/survey-core/src/themes";
|
18858
|
+
export { SurveyModel } from "packages/survey-core/src/survey";
|
18859
|
+
export * from "packages/survey-core/src/survey-events-api";
|
18860
|
+
export { SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger } from "packages/survey-core/src/trigger";
|
18861
|
+
export { PopupSurveyModel, SurveyWindowModel } from "packages/survey-core/src/popup-survey";
|
18862
|
+
export { TextPreProcessor } from "packages/survey-core/src/textPreProcessor";
|
18863
|
+
export { Notifier } from "packages/survey-core/src/notifier";
|
18864
|
+
export { Cover, CoverCell } from "packages/survey-core/src/header";
|
18865
|
+
export { dxSurveyService } from "packages/survey-core/src/dxSurveyService";
|
18866
|
+
export { englishStrings } from "packages/survey-core/src/localization/english";
|
18867
|
+
export { surveyLocalization, surveyStrings } from "packages/survey-core/src/surveyStrings";
|
18868
|
+
export { QuestionCustomWidget, CustomWidgetCollection, } from "packages/survey-core/src/questionCustomWidgets";
|
18869
|
+
export { QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, ICustomQuestionTypeConfiguration } from "packages/survey-core/src/question_custom";
|
18870
|
+
export { ListModel } from "packages/survey-core/src/list";
|
18871
|
+
export { MultiSelectListModel } from "packages/survey-core/src/multiSelectListModel";
|
18872
|
+
export { PopupModel, createDialogOptions, IDialogOptions } from "packages/survey-core/src/popup";
|
18873
|
+
export { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
|
18874
|
+
export { PopupDropdownViewModel } from "packages/survey-core/src/popup-dropdown-view-model";
|
18875
|
+
export { PopupModalViewModel } from "packages/survey-core/src/popup-modal-view-model";
|
18876
|
+
export { createPopupViewModel, createPopupModalViewModel } from "packages/survey-core/src/popup-utils";
|
18877
|
+
export { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
|
18878
|
+
export { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
|
18879
|
+
export { QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue } from "packages/survey-core/src/question_buttongroup";
|
18880
|
+
export { IsMobile, IsTouch, _setIsTouch } from "packages/survey-core/src/utils/devices";
|
18881
|
+
export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, IAttachKey2clickOptions } from "packages/survey-core/src/utils/utils";
|
18882
|
+
export { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
18883
|
+
export { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
|
18884
|
+
export { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
|
18885
|
+
export { InputMaskDateTime } from "packages/survey-core/src/mask/mask_datetime";
|
18886
|
+
export { InputMaskCurrency } from "packages/survey-core/src/mask/mask_currency";
|
18887
|
+
export * from "packages/survey-core/src/utils/cssClassBuilder";
|
18888
|
+
export { surveyCss, defaultV2Css, defaultV2ThemeName } from "packages/survey-core/src/defaultCss/defaultV2Css";
|
18889
|
+
export { DragDropCore } from "packages/survey-core/src/dragdrop/core";
|
18890
|
+
export { DragDropChoices } from "packages/survey-core/src/dragdrop/choices";
|
18891
|
+
export { DragDropRankingSelectToRank } from "packages/survey-core/src/dragdrop/ranking-select-to-rank";
|
18892
|
+
}
|
18893
|
+
declare module "src/stylesmanager" {
|
18894
|
+
import { Logger } from "packages/survey-core/src/utils/utils";
|
18895
|
+
export const modernThemeColors: {
|
18896
|
+
[key: string]: string;
|
18897
|
+
};
|
18898
|
+
export const defaultThemeColors: {
|
18899
|
+
[key: string]: string;
|
18900
|
+
};
|
18901
|
+
export const orangeThemeColors: {
|
18902
|
+
[key: string]: string;
|
18903
|
+
};
|
18904
|
+
export const darkblueThemeColors: {
|
18905
|
+
[key: string]: string;
|
18906
|
+
};
|
18907
|
+
export const darkroseThemeColors: {
|
18908
|
+
[key: string]: string;
|
18909
|
+
};
|
18910
|
+
export const stoneThemeColors: {
|
18911
|
+
[key: string]: string;
|
18912
|
+
};
|
18913
|
+
export const winterThemeColors: {
|
18914
|
+
[key: string]: string;
|
18915
|
+
};
|
18916
|
+
export const winterstoneThemeColors: {
|
18917
|
+
[key: string]: string;
|
18918
|
+
};
|
18919
|
+
export class StylesManager {
|
18920
|
+
private static SurveyJSStylesSheetId;
|
18921
|
+
static Logger: Logger;
|
18922
|
+
static Styles: {
|
18923
|
+
[key: string]: string;
|
18924
|
+
};
|
18925
|
+
static Media: {
|
18926
|
+
[key: string]: {
|
18927
|
+
media: string;
|
18928
|
+
style: string;
|
18929
|
+
};
|
18930
|
+
};
|
18931
|
+
static ThemeColors: {
|
18932
|
+
[key: string]: {
|
18933
|
+
[key: string]: string;
|
18934
|
+
};
|
18935
|
+
};
|
18936
|
+
static ThemeCss: {
|
18937
|
+
[key: string]: {
|
18938
|
+
[key: string]: string;
|
18939
|
+
};
|
18940
|
+
};
|
18941
|
+
static ThemeSelector: {
|
18942
|
+
[key: string]: string;
|
18943
|
+
};
|
18944
|
+
static autoApplyTheme(): void;
|
18945
|
+
static getAvailableThemes(): Array<any>;
|
18946
|
+
static getIncludedThemeCss(): Array<any>;
|
18947
|
+
static findSheet(styleSheetId: string): any;
|
18948
|
+
static createSheet(styleSheetId: string): any;
|
18949
|
+
static applyTheme(themeName?: string, themeSelector?: string): void;
|
18950
|
+
static Enabled: boolean;
|
18951
|
+
constructor();
|
18952
|
+
static insertStylesRulesIntoDocument(): any;
|
18953
|
+
}
|
18954
|
+
}
|
18955
|
+
declare module "src/entries/chunks/model" {
|
18956
|
+
export * from "packages/survey-core/entries/chunks/model";
|
18957
|
+
export { StylesManager } from "src/stylesmanager";
|
18958
|
+
}
|
18959
|
+
declare module "src/defaultCss/cssstandard" {
|
18843
18960
|
export var defaultStandardCss: {
|
18844
18961
|
root: string;
|
18845
18962
|
rootProgress: string;
|
@@ -19249,7 +19366,7 @@ declare module "defaultCss/cssstandard" {
|
|
19249
19366
|
};
|
19250
19367
|
};
|
19251
19368
|
}
|
19252
|
-
declare module "defaultCss/cssmodern" {
|
19369
|
+
declare module "src/defaultCss/cssmodern" {
|
19253
19370
|
export var modernCss: {
|
19254
19371
|
root: string;
|
19255
19372
|
rootProgress: string;
|
@@ -19703,7 +19820,7 @@ declare module "defaultCss/cssmodern" {
|
|
19703
19820
|
};
|
19704
19821
|
};
|
19705
19822
|
}
|
19706
|
-
declare module "svgbundle" {
|
19823
|
+
declare module "packages/survey-core/src/svgbundle" {
|
19707
19824
|
class SvgIconData {
|
19708
19825
|
[key: string]: string;
|
19709
19826
|
}
|
@@ -19720,25 +19837,29 @@ declare module "svgbundle" {
|
|
19720
19837
|
export var SvgRegistry: SvgIconRegistry;
|
19721
19838
|
export var SvgBundleViewModel: any;
|
19722
19839
|
}
|
19723
|
-
declare module "entries/core-wo-model" {
|
19724
|
-
export * from "entries/chunks/model";
|
19725
|
-
export
|
19726
|
-
export
|
19727
|
-
export * from "
|
19728
|
-
export
|
19729
|
-
export * from "
|
19730
|
-
export
|
19731
|
-
export * from "actions/
|
19732
|
-
export * from "
|
19733
|
-
export * from "
|
19734
|
-
|
19735
|
-
|
19736
|
-
|
19737
|
-
|
19738
|
-
export
|
19739
|
-
export
|
19740
|
-
}
|
19741
|
-
declare module "
|
19840
|
+
declare module "packages/survey-core/entries/chunks/core-wo-model" {
|
19841
|
+
export * from "packages/survey-core/entries/chunks/model";
|
19842
|
+
export * from "packages/survey-core/src/svgbundle";
|
19843
|
+
export * from "packages/survey-core/src/rendererFactory";
|
19844
|
+
export * from "packages/survey-core/src/utils/responsivity-manager";
|
19845
|
+
export { unwrap, getOriginalEvent, getElement } from "packages/survey-core/src/utils/utils";
|
19846
|
+
export * from "packages/survey-core/src/actions/action";
|
19847
|
+
export * from "packages/survey-core/src/utils/animation";
|
19848
|
+
export * from "packages/survey-core/src/actions/adaptive-container";
|
19849
|
+
export * from "packages/survey-core/src/actions/container";
|
19850
|
+
export * from "packages/survey-core/src/utils/dragOrClickHelper";
|
19851
|
+
}
|
19852
|
+
declare module "src/entries/core-wo-model" {
|
19853
|
+
export * from "src/entries/chunks/model";
|
19854
|
+
export { defaultStandardCss } from "src/defaultCss/cssstandard";
|
19855
|
+
export { modernCss } from "src/defaultCss/cssmodern";
|
19856
|
+
export * from "packages/survey-core/entries/chunks/core-wo-model";
|
19857
|
+
}
|
19858
|
+
declare module "src/entries/core" {
|
19859
|
+
export * from "src/entries/core-wo-model";
|
19860
|
+
export { SurveyModel as Model } from "packages/survey-core/src/survey";
|
19861
|
+
}
|
19862
|
+
declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
19742
19863
|
export var defaultCss: {
|
19743
19864
|
root: string;
|
19744
19865
|
container: string;
|
@@ -20097,7 +20218,7 @@ declare module "plugins/themes/bootstrap/cssbootstrap" {
|
|
20097
20218
|
};
|
20098
20219
|
};
|
20099
20220
|
}
|
20100
|
-
declare module "plugins/themes/
|
20221
|
+
declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapmaterial" {
|
20101
20222
|
export var defaultCss: {
|
20102
20223
|
root: string;
|
20103
20224
|
container: string;
|
@@ -20460,11 +20581,11 @@ declare module "plugins/themes/bootstrapmaterial/cssbootstrapmaterial" {
|
|
20460
20581
|
};
|
20461
20582
|
};
|
20462
20583
|
}
|
20463
|
-
declare module "plugins/themes/common-theme-settings" {
|
20584
|
+
declare module "src/plugins/themes/common-theme-settings" {
|
20464
20585
|
export function setMediaStyles(): void;
|
20465
20586
|
export function setStyles(): void;
|
20466
20587
|
}
|
20467
|
-
declare module "plugins/themes/bootstrap/theme-settings" {
|
20588
|
+
declare module "src/plugins/themes/bootstrap-integration/theme-settings" {
|
20468
20589
|
export const bootstrapThemeName = "bootstrap";
|
20469
20590
|
export const bootstrapThemeColors: {
|
20470
20591
|
[key: string]: string;
|
@@ -20507,7 +20628,7 @@ declare module "plugins/themes/bootstrap/theme-settings" {
|
|
20507
20628
|
".sv-skeleton-element": string;
|
20508
20629
|
};
|
20509
20630
|
}
|
20510
|
-
declare module "plugins/themes/
|
20631
|
+
declare module "src/plugins/themes/bootstrap-material-integration/theme-settings" {
|
20511
20632
|
export const bootstrapMaterialThemeName = "bootstrapmaterial";
|
20512
20633
|
export const bootstrapMaterialThemeColors: {
|
20513
20634
|
[key: string]: string;
|
@@ -20568,9 +20689,9 @@ declare module "plugins/themes/bootstrapmaterial/theme-settings" {
|
|
20568
20689
|
".sv-skeleton-element": string;
|
20569
20690
|
};
|
20570
20691
|
}
|
20571
|
-
declare module "entries/plugins" {
|
20572
|
-
export * from "plugins/themes/bootstrap/theme-settings";
|
20573
|
-
export * from "plugins/themes/
|
20692
|
+
declare module "src/entries/plugins" {
|
20693
|
+
export * from "src/plugins/themes/bootstrap-integration/theme-settings";
|
20694
|
+
export * from "src/plugins/themes/bootstrap-material-integration/theme-settings";
|
20574
20695
|
export var defaultBootstrapCss: {
|
20575
20696
|
root: string;
|
20576
20697
|
container: string;
|
@@ -21290,7 +21411,7 @@ declare module "entries/plugins" {
|
|
21290
21411
|
};
|
21291
21412
|
};
|
21292
21413
|
}
|
21293
|
-
declare module "localization/arabic" {
|
21414
|
+
declare module "packages/survey-core/src/localization/arabic" {
|
21294
21415
|
export var arabicSurveyStrings: {
|
21295
21416
|
pagePrevText: string;
|
21296
21417
|
pageNextText: string;
|
@@ -21399,7 +21520,7 @@ declare module "localization/arabic" {
|
|
21399
21520
|
cancel: string;
|
21400
21521
|
};
|
21401
21522
|
}
|
21402
|
-
declare module "localization/basque" {
|
21523
|
+
declare module "packages/survey-core/src/localization/basque" {
|
21403
21524
|
export var basqueSurveyStrings: {
|
21404
21525
|
pagePrevText: string;
|
21405
21526
|
pageNextText: string;
|
@@ -21508,7 +21629,7 @@ declare module "localization/basque" {
|
|
21508
21629
|
cancel: string;
|
21509
21630
|
};
|
21510
21631
|
}
|
21511
|
-
declare module "localization/bulgarian" {
|
21632
|
+
declare module "packages/survey-core/src/localization/bulgarian" {
|
21512
21633
|
export var bulgarianStrings: {
|
21513
21634
|
pagePrevText: string;
|
21514
21635
|
pageNextText: string;
|
@@ -21617,7 +21738,7 @@ declare module "localization/bulgarian" {
|
|
21617
21738
|
cancel: string;
|
21618
21739
|
};
|
21619
21740
|
}
|
21620
|
-
declare module "localization/catalan" {
|
21741
|
+
declare module "packages/survey-core/src/localization/catalan" {
|
21621
21742
|
export var catalanSurveyStrings: {
|
21622
21743
|
pagePrevText: string;
|
21623
21744
|
pageNextText: string;
|
@@ -21726,7 +21847,7 @@ declare module "localization/catalan" {
|
|
21726
21847
|
cancel: string;
|
21727
21848
|
};
|
21728
21849
|
}
|
21729
|
-
declare module "localization/croatian" {
|
21850
|
+
declare module "packages/survey-core/src/localization/croatian" {
|
21730
21851
|
export var croatianStrings: {
|
21731
21852
|
pagePrevText: string;
|
21732
21853
|
pageNextText: string;
|
@@ -21835,7 +21956,7 @@ declare module "localization/croatian" {
|
|
21835
21956
|
cancel: string;
|
21836
21957
|
};
|
21837
21958
|
}
|
21838
|
-
declare module "localization/czech" {
|
21959
|
+
declare module "packages/survey-core/src/localization/czech" {
|
21839
21960
|
export var czechSurveyStrings: {
|
21840
21961
|
pagePrevText: string;
|
21841
21962
|
pageNextText: string;
|
@@ -21944,7 +22065,7 @@ declare module "localization/czech" {
|
|
21944
22065
|
cancel: string;
|
21945
22066
|
};
|
21946
22067
|
}
|
21947
|
-
declare module "localization/danish" {
|
22068
|
+
declare module "packages/survey-core/src/localization/danish" {
|
21948
22069
|
export var danishSurveyStrings: {
|
21949
22070
|
pagePrevText: string;
|
21950
22071
|
pageNextText: string;
|
@@ -22053,7 +22174,7 @@ declare module "localization/danish" {
|
|
22053
22174
|
cancel: string;
|
22054
22175
|
};
|
22055
22176
|
}
|
22056
|
-
declare module "localization/dutch" {
|
22177
|
+
declare module "packages/survey-core/src/localization/dutch" {
|
22057
22178
|
export var dutchSurveyStrings: {
|
22058
22179
|
pagePrevText: string;
|
22059
22180
|
pageNextText: string;
|
@@ -22162,8 +22283,8 @@ declare module "localization/dutch" {
|
|
22162
22283
|
cancel: string;
|
22163
22284
|
};
|
22164
22285
|
}
|
22165
|
-
declare module "localization/nl-BE" { }
|
22166
|
-
declare module "localization/estonian" {
|
22286
|
+
declare module "packages/survey-core/src/localization/nl-BE" { }
|
22287
|
+
declare module "packages/survey-core/src/localization/estonian" {
|
22167
22288
|
export var estonianSurveyStrings: {
|
22168
22289
|
pagePrevText: string;
|
22169
22290
|
pageNextText: string;
|
@@ -22272,7 +22393,7 @@ declare module "localization/estonian" {
|
|
22272
22393
|
cancel: string;
|
22273
22394
|
};
|
22274
22395
|
}
|
22275
|
-
declare module "localization/finnish" {
|
22396
|
+
declare module "packages/survey-core/src/localization/finnish" {
|
22276
22397
|
export var finnishSurveyStrings: {
|
22277
22398
|
pagePrevText: string;
|
22278
22399
|
pageNextText: string;
|
@@ -22381,7 +22502,7 @@ declare module "localization/finnish" {
|
|
22381
22502
|
cancel: string;
|
22382
22503
|
};
|
22383
22504
|
}
|
22384
|
-
declare module "localization/french" {
|
22505
|
+
declare module "packages/survey-core/src/localization/french" {
|
22385
22506
|
export var frenchSurveyStrings: {
|
22386
22507
|
pagePrevText: string;
|
22387
22508
|
pageNextText: string;
|
@@ -22490,7 +22611,7 @@ declare module "localization/french" {
|
|
22490
22611
|
cancel: string;
|
22491
22612
|
};
|
22492
22613
|
}
|
22493
|
-
declare module "localization/georgian" {
|
22614
|
+
declare module "packages/survey-core/src/localization/georgian" {
|
22494
22615
|
export var georgianSurveyStrings: {
|
22495
22616
|
pagePrevText: string;
|
22496
22617
|
pageNextText: string;
|
@@ -22599,7 +22720,7 @@ declare module "localization/georgian" {
|
|
22599
22720
|
cancel: string;
|
22600
22721
|
};
|
22601
22722
|
}
|
22602
|
-
declare module "localization/german" {
|
22723
|
+
declare module "packages/survey-core/src/localization/german" {
|
22603
22724
|
export var germanSurveyStrings: {
|
22604
22725
|
pagePrevText: string;
|
22605
22726
|
pageNextText: string;
|
@@ -22708,7 +22829,7 @@ declare module "localization/german" {
|
|
22708
22829
|
cancel: string;
|
22709
22830
|
};
|
22710
22831
|
}
|
22711
|
-
declare module "localization/greek" {
|
22832
|
+
declare module "packages/survey-core/src/localization/greek" {
|
22712
22833
|
export var greekSurveyStrings: {
|
22713
22834
|
pagePrevText: string;
|
22714
22835
|
pageNextText: string;
|
@@ -22817,7 +22938,7 @@ declare module "localization/greek" {
|
|
22817
22938
|
cancel: string;
|
22818
22939
|
};
|
22819
22940
|
}
|
22820
|
-
declare module "localization/hebrew" {
|
22941
|
+
declare module "packages/survey-core/src/localization/hebrew" {
|
22821
22942
|
export var hebrewSurveyStrings: {
|
22822
22943
|
pagePrevText: string;
|
22823
22944
|
pageNextText: string;
|
@@ -22926,7 +23047,7 @@ declare module "localization/hebrew" {
|
|
22926
23047
|
cancel: string;
|
22927
23048
|
};
|
22928
23049
|
}
|
22929
|
-
declare module "localization/hindi" {
|
23050
|
+
declare module "packages/survey-core/src/localization/hindi" {
|
22930
23051
|
export var hindiStrings: {
|
22931
23052
|
pagePrevText: string;
|
22932
23053
|
pageNextText: string;
|
@@ -23035,7 +23156,7 @@ declare module "localization/hindi" {
|
|
23035
23156
|
cancel: string;
|
23036
23157
|
};
|
23037
23158
|
}
|
23038
|
-
declare module "localization/hungarian" {
|
23159
|
+
declare module "packages/survey-core/src/localization/hungarian" {
|
23039
23160
|
export var hungarianSurveyStrings: {
|
23040
23161
|
pagePrevText: string;
|
23041
23162
|
pageNextText: string;
|
@@ -23144,7 +23265,7 @@ declare module "localization/hungarian" {
|
|
23144
23265
|
cancel: string;
|
23145
23266
|
};
|
23146
23267
|
}
|
23147
|
-
declare module "localization/icelandic" {
|
23268
|
+
declare module "packages/survey-core/src/localization/icelandic" {
|
23148
23269
|
export var icelandicSurveyStrings: {
|
23149
23270
|
pagePrevText: string;
|
23150
23271
|
pageNextText: string;
|
@@ -23253,7 +23374,7 @@ declare module "localization/icelandic" {
|
|
23253
23374
|
cancel: string;
|
23254
23375
|
};
|
23255
23376
|
}
|
23256
|
-
declare module "localization/indonesian" {
|
23377
|
+
declare module "packages/survey-core/src/localization/indonesian" {
|
23257
23378
|
export var indonesianStrings: {
|
23258
23379
|
pagePrevText: string;
|
23259
23380
|
pageNextText: string;
|
@@ -23362,7 +23483,7 @@ declare module "localization/indonesian" {
|
|
23362
23483
|
cancel: string;
|
23363
23484
|
};
|
23364
23485
|
}
|
23365
|
-
declare module "localization/italian" {
|
23486
|
+
declare module "packages/survey-core/src/localization/italian" {
|
23366
23487
|
export var italianSurveyStrings: {
|
23367
23488
|
pagePrevText: string;
|
23368
23489
|
pageNextText: string;
|
@@ -23471,7 +23592,7 @@ declare module "localization/italian" {
|
|
23471
23592
|
cancel: string;
|
23472
23593
|
};
|
23473
23594
|
}
|
23474
|
-
declare module "localization/japanese" {
|
23595
|
+
declare module "packages/survey-core/src/localization/japanese" {
|
23475
23596
|
export var japaneseSurveyStrings: {
|
23476
23597
|
pagePrevText: string;
|
23477
23598
|
pageNextText: string;
|
@@ -23580,7 +23701,7 @@ declare module "localization/japanese" {
|
|
23580
23701
|
cancel: string;
|
23581
23702
|
};
|
23582
23703
|
}
|
23583
|
-
declare module "localization/kazakh" {
|
23704
|
+
declare module "packages/survey-core/src/localization/kazakh" {
|
23584
23705
|
export var kazakhStrings: {
|
23585
23706
|
pagePrevText: string;
|
23586
23707
|
pageNextText: string;
|
@@ -23689,7 +23810,7 @@ declare module "localization/kazakh" {
|
|
23689
23810
|
cancel: string;
|
23690
23811
|
};
|
23691
23812
|
}
|
23692
|
-
declare module "localization/korean" {
|
23813
|
+
declare module "packages/survey-core/src/localization/korean" {
|
23693
23814
|
export var koreanStrings: {
|
23694
23815
|
pagePrevText: string;
|
23695
23816
|
pageNextText: string;
|
@@ -23798,7 +23919,7 @@ declare module "localization/korean" {
|
|
23798
23919
|
cancel: string;
|
23799
23920
|
};
|
23800
23921
|
}
|
23801
|
-
declare module "localization/latvian" {
|
23922
|
+
declare module "packages/survey-core/src/localization/latvian" {
|
23802
23923
|
export var latvianSurveyStrings: {
|
23803
23924
|
pagePrevText: string;
|
23804
23925
|
pageNextText: string;
|
@@ -23907,7 +24028,7 @@ declare module "localization/latvian" {
|
|
23907
24028
|
cancel: string;
|
23908
24029
|
};
|
23909
24030
|
}
|
23910
|
-
declare module "localization/lithuanian" {
|
24031
|
+
declare module "packages/survey-core/src/localization/lithuanian" {
|
23911
24032
|
export var lithuaniaSurveyStrings: {
|
23912
24033
|
pagePrevText: string;
|
23913
24034
|
pageNextText: string;
|
@@ -24016,7 +24137,7 @@ declare module "localization/lithuanian" {
|
|
24016
24137
|
cancel: string;
|
24017
24138
|
};
|
24018
24139
|
}
|
24019
|
-
declare module "localization/macedonian" {
|
24140
|
+
declare module "packages/survey-core/src/localization/macedonian" {
|
24020
24141
|
export var macedonianSurveyStrings: {
|
24021
24142
|
pagePrevText: string;
|
24022
24143
|
pageNextText: string;
|
@@ -24125,7 +24246,7 @@ declare module "localization/macedonian" {
|
|
24125
24246
|
cancel: string;
|
24126
24247
|
};
|
24127
24248
|
}
|
24128
|
-
declare module "localization/malay" {
|
24249
|
+
declare module "packages/survey-core/src/localization/malay" {
|
24129
24250
|
export var malaySurveyStrings: {
|
24130
24251
|
pagePrevText: string;
|
24131
24252
|
pageNextText: string;
|
@@ -24234,7 +24355,7 @@ declare module "localization/malay" {
|
|
24234
24355
|
cancel: string;
|
24235
24356
|
};
|
24236
24357
|
}
|
24237
|
-
declare module "localization/norwegian" {
|
24358
|
+
declare module "packages/survey-core/src/localization/norwegian" {
|
24238
24359
|
export var norwegianSurveyStrings: {
|
24239
24360
|
pagePrevText: string;
|
24240
24361
|
pageNextText: string;
|
@@ -24343,7 +24464,7 @@ declare module "localization/norwegian" {
|
|
24343
24464
|
cancel: string;
|
24344
24465
|
};
|
24345
24466
|
}
|
24346
|
-
declare module "localization/persian" {
|
24467
|
+
declare module "packages/survey-core/src/localization/persian" {
|
24347
24468
|
export var persianSurveyStrings: {
|
24348
24469
|
pagePrevText: string;
|
24349
24470
|
pageNextText: string;
|
@@ -24452,7 +24573,7 @@ declare module "localization/persian" {
|
|
24452
24573
|
cancel: string;
|
24453
24574
|
};
|
24454
24575
|
}
|
24455
|
-
declare module "localization/polish" {
|
24576
|
+
declare module "packages/survey-core/src/localization/polish" {
|
24456
24577
|
export var polishSurveyStrings: {
|
24457
24578
|
pagePrevText: string;
|
24458
24579
|
pageNextText: string;
|
@@ -24561,7 +24682,7 @@ declare module "localization/polish" {
|
|
24561
24682
|
cancel: string;
|
24562
24683
|
};
|
24563
24684
|
}
|
24564
|
-
declare module "localization/portuguese" {
|
24685
|
+
declare module "packages/survey-core/src/localization/portuguese" {
|
24565
24686
|
export var portugueseSurveyStrings: {
|
24566
24687
|
pagePrevText: string;
|
24567
24688
|
pageNextText: string;
|
@@ -24670,7 +24791,7 @@ declare module "localization/portuguese" {
|
|
24670
24791
|
cancel: string;
|
24671
24792
|
};
|
24672
24793
|
}
|
24673
|
-
declare module "localization/portuguese-br" {
|
24794
|
+
declare module "packages/survey-core/src/localization/portuguese-br" {
|
24674
24795
|
/**
|
24675
24796
|
* You don't need to translate strings that have the same value as Portuguese translation
|
24676
24797
|
*/
|
@@ -24782,10 +24903,10 @@ declare module "localization/portuguese-br" {
|
|
24782
24903
|
cancel: string;
|
24783
24904
|
};
|
24784
24905
|
}
|
24785
|
-
declare module "localization/romanian" {
|
24906
|
+
declare module "packages/survey-core/src/localization/romanian" {
|
24786
24907
|
export var romanianSurveyStrings: any;
|
24787
24908
|
}
|
24788
|
-
declare module "localization/russian" {
|
24909
|
+
declare module "packages/survey-core/src/localization/russian" {
|
24789
24910
|
export var russianSurveyStrings: {
|
24790
24911
|
pagePrevText: string;
|
24791
24912
|
pageNextText: string;
|
@@ -24894,7 +25015,7 @@ declare module "localization/russian" {
|
|
24894
25015
|
cancel: string;
|
24895
25016
|
};
|
24896
25017
|
}
|
24897
|
-
declare module "localization/serbian" {
|
25018
|
+
declare module "packages/survey-core/src/localization/serbian" {
|
24898
25019
|
export var serbianStrings: {
|
24899
25020
|
pagePrevText: string;
|
24900
25021
|
pageNextText: string;
|
@@ -25003,7 +25124,7 @@ declare module "localization/serbian" {
|
|
25003
25124
|
cancel: string;
|
25004
25125
|
};
|
25005
25126
|
}
|
25006
|
-
declare module "localization/simplified-chinese" {
|
25127
|
+
declare module "packages/survey-core/src/localization/simplified-chinese" {
|
25007
25128
|
export var simplifiedChineseSurveyStrings: {
|
25008
25129
|
pagePrevText: string;
|
25009
25130
|
pageNextText: string;
|
@@ -25112,7 +25233,7 @@ declare module "localization/simplified-chinese" {
|
|
25112
25233
|
cancel: string;
|
25113
25234
|
};
|
25114
25235
|
}
|
25115
|
-
declare module "localization/slovak" {
|
25236
|
+
declare module "packages/survey-core/src/localization/slovak" {
|
25116
25237
|
export var slovakSurveyStrings: {
|
25117
25238
|
pagePrevText: string;
|
25118
25239
|
pageNextText: string;
|
@@ -25221,7 +25342,7 @@ declare module "localization/slovak" {
|
|
25221
25342
|
cancel: string;
|
25222
25343
|
};
|
25223
25344
|
}
|
25224
|
-
declare module "localization/spanish" {
|
25345
|
+
declare module "packages/survey-core/src/localization/spanish" {
|
25225
25346
|
export var spanishSurveyStrings: {
|
25226
25347
|
pagePrevText: string;
|
25227
25348
|
pageNextText: string;
|
@@ -25330,7 +25451,7 @@ declare module "localization/spanish" {
|
|
25330
25451
|
cancel: string;
|
25331
25452
|
};
|
25332
25453
|
}
|
25333
|
-
declare module "localization/swahili" {
|
25454
|
+
declare module "packages/survey-core/src/localization/swahili" {
|
25334
25455
|
export var swahiliStrings: {
|
25335
25456
|
pagePrevText: string;
|
25336
25457
|
pageNextText: string;
|
@@ -25439,7 +25560,7 @@ declare module "localization/swahili" {
|
|
25439
25560
|
cancel: string;
|
25440
25561
|
};
|
25441
25562
|
}
|
25442
|
-
declare module "localization/swedish" {
|
25563
|
+
declare module "packages/survey-core/src/localization/swedish" {
|
25443
25564
|
export var swedishSurveyStrings: {
|
25444
25565
|
pagePrevText: string;
|
25445
25566
|
pageNextText: string;
|
@@ -25548,7 +25669,7 @@ declare module "localization/swedish" {
|
|
25548
25669
|
cancel: string;
|
25549
25670
|
};
|
25550
25671
|
}
|
25551
|
-
declare module "localization/tajik" {
|
25672
|
+
declare module "packages/survey-core/src/localization/tajik" {
|
25552
25673
|
export var tajikSurveyStrings: {
|
25553
25674
|
pagePrevText: string;
|
25554
25675
|
pageNextText: string;
|
@@ -25612,7 +25733,7 @@ declare module "localization/tajik" {
|
|
25612
25733
|
removeFileCaption: string;
|
25613
25734
|
};
|
25614
25735
|
}
|
25615
|
-
declare module "localization/thai" {
|
25736
|
+
declare module "packages/survey-core/src/localization/thai" {
|
25616
25737
|
export var thaiStrings: {
|
25617
25738
|
pagePrevText: string;
|
25618
25739
|
pageNextText: string;
|
@@ -25721,7 +25842,7 @@ declare module "localization/thai" {
|
|
25721
25842
|
cancel: string;
|
25722
25843
|
};
|
25723
25844
|
}
|
25724
|
-
declare module "localization/traditional-chinese" {
|
25845
|
+
declare module "packages/survey-core/src/localization/traditional-chinese" {
|
25725
25846
|
export var traditionalChineseSurveyStrings: {
|
25726
25847
|
pagePrevText: string;
|
25727
25848
|
pageNextText: string;
|
@@ -25830,7 +25951,7 @@ declare module "localization/traditional-chinese" {
|
|
25830
25951
|
cancel: string;
|
25831
25952
|
};
|
25832
25953
|
}
|
25833
|
-
declare module "localization/turkish" {
|
25954
|
+
declare module "packages/survey-core/src/localization/turkish" {
|
25834
25955
|
export var turkishSurveyStrings: {
|
25835
25956
|
pagePrevText: string;
|
25836
25957
|
pageNextText: string;
|
@@ -25939,7 +26060,7 @@ declare module "localization/turkish" {
|
|
25939
26060
|
cancel: string;
|
25940
26061
|
};
|
25941
26062
|
}
|
25942
|
-
declare module "localization/ukrainian" {
|
26063
|
+
declare module "packages/survey-core/src/localization/ukrainian" {
|
25943
26064
|
export var ukrainianSurveyStrings: {
|
25944
26065
|
pagePrevText: string;
|
25945
26066
|
pageNextText: string;
|
@@ -26048,7 +26169,7 @@ declare module "localization/ukrainian" {
|
|
26048
26169
|
cancel: string;
|
26049
26170
|
};
|
26050
26171
|
}
|
26051
|
-
declare module "localization/vietnamese" {
|
26172
|
+
declare module "packages/survey-core/src/localization/vietnamese" {
|
26052
26173
|
export var vietnameseSurveyStrings: {
|
26053
26174
|
pagePrevText: string;
|
26054
26175
|
pageNextText: string;
|
@@ -26157,7 +26278,7 @@ declare module "localization/vietnamese" {
|
|
26157
26278
|
cancel: string;
|
26158
26279
|
};
|
26159
26280
|
}
|
26160
|
-
declare module "localization/welsh" {
|
26281
|
+
declare module "packages/survey-core/src/localization/welsh" {
|
26161
26282
|
export var welshSurveyStrings: {
|
26162
26283
|
pagePrevText: string;
|
26163
26284
|
pageNextText: string;
|
@@ -26266,7 +26387,7 @@ declare module "localization/welsh" {
|
|
26266
26387
|
cancel: string;
|
26267
26388
|
};
|
26268
26389
|
}
|
26269
|
-
declare module "localization/telugu" {
|
26390
|
+
declare module "packages/survey-core/src/localization/telugu" {
|
26270
26391
|
export var teluguStrings: {
|
26271
26392
|
pagePrevText: string;
|
26272
26393
|
pageNextText: string;
|
@@ -26375,7 +26496,7 @@ declare module "localization/telugu" {
|
|
26375
26496
|
cancel: string;
|
26376
26497
|
};
|
26377
26498
|
}
|
26378
|
-
declare module "localization/philippines" {
|
26499
|
+
declare module "packages/survey-core/src/localization/philippines" {
|
26379
26500
|
export var philippinesStrings: {
|
26380
26501
|
pagePrevText: string;
|
26381
26502
|
pageNextText: string;
|
@@ -26484,59 +26605,62 @@ declare module "localization/philippines" {
|
|
26484
26605
|
cancel: string;
|
26485
26606
|
};
|
26486
26607
|
}
|
26487
|
-
declare module "entries/chunks/localization" {
|
26488
|
-
import "localization/arabic";
|
26489
|
-
import "localization/basque";
|
26490
|
-
import "localization/bulgarian";
|
26491
|
-
import "localization/catalan";
|
26492
|
-
import "localization/croatian";
|
26493
|
-
import "localization/czech";
|
26494
|
-
import "localization/danish";
|
26495
|
-
import "localization/dutch";
|
26496
|
-
import "localization/nl-BE";
|
26497
|
-
import "localization/estonian";
|
26498
|
-
import "localization/finnish";
|
26499
|
-
import "localization/french";
|
26500
|
-
import "localization/georgian";
|
26501
|
-
import "localization/german";
|
26502
|
-
import "localization/greek";
|
26503
|
-
import "localization/hebrew";
|
26504
|
-
import "localization/hindi";
|
26505
|
-
import "localization/hungarian";
|
26506
|
-
import "localization/icelandic";
|
26507
|
-
import "localization/indonesian";
|
26508
|
-
import "localization/italian";
|
26509
|
-
import "localization/japanese";
|
26510
|
-
import "localization/kazakh";
|
26511
|
-
import "localization/korean";
|
26512
|
-
import "localization/latvian";
|
26513
|
-
import "localization/lithuanian";
|
26514
|
-
import "localization/macedonian";
|
26515
|
-
import "localization/malay";
|
26516
|
-
import "localization/norwegian";
|
26517
|
-
import "localization/persian";
|
26518
|
-
import "localization/polish";
|
26519
|
-
import "localization/portuguese";
|
26520
|
-
import "localization/portuguese-br";
|
26521
|
-
import "localization/romanian";
|
26522
|
-
import "localization/russian";
|
26523
|
-
import "localization/serbian";
|
26524
|
-
import "localization/simplified-chinese";
|
26525
|
-
import "localization/slovak";
|
26526
|
-
import "localization/spanish";
|
26527
|
-
import "localization/swahili";
|
26528
|
-
import "localization/swedish";
|
26529
|
-
import "localization/tajik";
|
26530
|
-
import "localization/thai";
|
26531
|
-
import "localization/traditional-chinese";
|
26532
|
-
import "localization/turkish";
|
26533
|
-
import "localization/ukrainian";
|
26534
|
-
import "localization/vietnamese";
|
26535
|
-
import "localization/welsh";
|
26536
|
-
import "localization/telugu";
|
26537
|
-
import "localization/philippines";
|
26538
|
-
}
|
26539
|
-
declare module "
|
26608
|
+
declare module "packages/survey-core/entries/chunks/localization" {
|
26609
|
+
import "packages/survey-core/src/localization/arabic";
|
26610
|
+
import "packages/survey-core/src/localization/basque";
|
26611
|
+
import "packages/survey-core/src/localization/bulgarian";
|
26612
|
+
import "packages/survey-core/src/localization/catalan";
|
26613
|
+
import "packages/survey-core/src/localization/croatian";
|
26614
|
+
import "packages/survey-core/src/localization/czech";
|
26615
|
+
import "packages/survey-core/src/localization/danish";
|
26616
|
+
import "packages/survey-core/src/localization/dutch";
|
26617
|
+
import "packages/survey-core/src/localization/nl-BE";
|
26618
|
+
import "packages/survey-core/src/localization/estonian";
|
26619
|
+
import "packages/survey-core/src/localization/finnish";
|
26620
|
+
import "packages/survey-core/src/localization/french";
|
26621
|
+
import "packages/survey-core/src/localization/georgian";
|
26622
|
+
import "packages/survey-core/src/localization/german";
|
26623
|
+
import "packages/survey-core/src/localization/greek";
|
26624
|
+
import "packages/survey-core/src/localization/hebrew";
|
26625
|
+
import "packages/survey-core/src/localization/hindi";
|
26626
|
+
import "packages/survey-core/src/localization/hungarian";
|
26627
|
+
import "packages/survey-core/src/localization/icelandic";
|
26628
|
+
import "packages/survey-core/src/localization/indonesian";
|
26629
|
+
import "packages/survey-core/src/localization/italian";
|
26630
|
+
import "packages/survey-core/src/localization/japanese";
|
26631
|
+
import "packages/survey-core/src/localization/kazakh";
|
26632
|
+
import "packages/survey-core/src/localization/korean";
|
26633
|
+
import "packages/survey-core/src/localization/latvian";
|
26634
|
+
import "packages/survey-core/src/localization/lithuanian";
|
26635
|
+
import "packages/survey-core/src/localization/macedonian";
|
26636
|
+
import "packages/survey-core/src/localization/malay";
|
26637
|
+
import "packages/survey-core/src/localization/norwegian";
|
26638
|
+
import "packages/survey-core/src/localization/persian";
|
26639
|
+
import "packages/survey-core/src/localization/polish";
|
26640
|
+
import "packages/survey-core/src/localization/portuguese";
|
26641
|
+
import "packages/survey-core/src/localization/portuguese-br";
|
26642
|
+
import "packages/survey-core/src/localization/romanian";
|
26643
|
+
import "packages/survey-core/src/localization/russian";
|
26644
|
+
import "packages/survey-core/src/localization/serbian";
|
26645
|
+
import "packages/survey-core/src/localization/simplified-chinese";
|
26646
|
+
import "packages/survey-core/src/localization/slovak";
|
26647
|
+
import "packages/survey-core/src/localization/spanish";
|
26648
|
+
import "packages/survey-core/src/localization/swahili";
|
26649
|
+
import "packages/survey-core/src/localization/swedish";
|
26650
|
+
import "packages/survey-core/src/localization/tajik";
|
26651
|
+
import "packages/survey-core/src/localization/thai";
|
26652
|
+
import "packages/survey-core/src/localization/traditional-chinese";
|
26653
|
+
import "packages/survey-core/src/localization/turkish";
|
26654
|
+
import "packages/survey-core/src/localization/ukrainian";
|
26655
|
+
import "packages/survey-core/src/localization/vietnamese";
|
26656
|
+
import "packages/survey-core/src/localization/welsh";
|
26657
|
+
import "packages/survey-core/src/localization/telugu";
|
26658
|
+
import "packages/survey-core/src/localization/philippines";
|
26659
|
+
}
|
26660
|
+
declare module "src/entries/chunks/localization" {
|
26661
|
+
import "packages/survey-core/entries/chunks/localization";
|
26662
|
+
}
|
26663
|
+
declare module "packages/survey-react-ui/src/element-factory" {
|
26540
26664
|
export class ReactElementFactory {
|
26541
26665
|
static Instance: ReactElementFactory;
|
26542
26666
|
private creatorHash;
|
@@ -26546,8 +26670,8 @@ declare module "react/element-factory" {
|
|
26546
26670
|
createElement(elementType: string, params: any): JSX.Element | any;
|
26547
26671
|
}
|
26548
26672
|
}
|
26549
|
-
declare module "react/reactsurveymodel" {
|
26550
|
-
import { SurveyModel, QuestionMatrixDropdownRenderedCell, SurveyElement, QuestionRowModel, ItemValue, QuestionSelectBase } from "entries/core";
|
26673
|
+
declare module "packages/survey-react-ui/src/reactsurveymodel" {
|
26674
|
+
import { SurveyModel, QuestionMatrixDropdownRenderedCell, SurveyElement, QuestionRowModel, ItemValue, QuestionSelectBase } from "src/entries/core";
|
26551
26675
|
export class ReactSurveyElementsWrapper {
|
26552
26676
|
static wrapRow(survey: SurveyModel, element: JSX.Element, row: QuestionRowModel): JSX.Element;
|
26553
26677
|
static wrapElement(survey: SurveyModel, element: JSX.Element, question: SurveyElement): JSX.Element;
|
@@ -26556,7 +26680,7 @@ declare module "react/reactsurveymodel" {
|
|
26556
26680
|
static wrapMatrixCell(survey: SurveyModel, element: JSX.Element, cell: QuestionMatrixDropdownRenderedCell, reason?: string): JSX.Element;
|
26557
26681
|
}
|
26558
26682
|
}
|
26559
|
-
declare module "react/reactquestion_factory" {
|
26683
|
+
declare module "packages/survey-react-ui/src/reactquestion_factory" {
|
26560
26684
|
export class ReactQuestionFactory {
|
26561
26685
|
static Instance: ReactQuestionFactory;
|
26562
26686
|
private creatorHash;
|
@@ -26565,9 +26689,9 @@ declare module "react/reactquestion_factory" {
|
|
26565
26689
|
createQuestion(questionType: string, params: any): JSX.Element | null;
|
26566
26690
|
}
|
26567
26691
|
}
|
26568
|
-
declare module "react/components/character-counter" {
|
26569
|
-
import { Base, CharacterCounter } from "entries/core";
|
26570
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
26692
|
+
declare module "packages/survey-react-ui/src/components/character-counter" {
|
26693
|
+
import { Base, CharacterCounter } from "src/entries/core";
|
26694
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26571
26695
|
export interface ICharacterCounterComponentProps {
|
26572
26696
|
counter: CharacterCounter;
|
26573
26697
|
remainingCharacterCounter: string;
|
@@ -26577,9 +26701,9 @@ declare module "react/components/character-counter" {
|
|
26577
26701
|
renderElement(): JSX.Element | null;
|
26578
26702
|
}
|
26579
26703
|
}
|
26580
|
-
declare module "react/reactquestion_comment" {
|
26581
|
-
import { ReactSurveyElement, SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
|
26582
|
-
import { QuestionCommentModel } from "entries/core";
|
26704
|
+
declare module "packages/survey-react-ui/src/reactquestion_comment" {
|
26705
|
+
import { ReactSurveyElement, SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
|
26706
|
+
import { QuestionCommentModel } from "src/entries/core";
|
26583
26707
|
export class SurveyQuestionComment extends SurveyQuestionUncontrolledElement<QuestionCommentModel> {
|
26584
26708
|
constructor(props: any);
|
26585
26709
|
protected renderElement(): JSX.Element;
|
@@ -26609,8 +26733,8 @@ declare module "react/reactquestion_comment" {
|
|
26609
26733
|
protected getPlaceholder(): string;
|
26610
26734
|
}
|
26611
26735
|
}
|
26612
|
-
declare module "react/custom-widget" {
|
26613
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
26736
|
+
declare module "packages/survey-react-ui/src/custom-widget" {
|
26737
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26614
26738
|
export class SurveyCustomWidget extends SurveyQuestionElementBase {
|
26615
26739
|
private widgetRef;
|
26616
26740
|
constructor(props: any);
|
@@ -26622,7 +26746,7 @@ declare module "react/custom-widget" {
|
|
26622
26746
|
protected renderElement(): JSX.Element;
|
26623
26747
|
}
|
26624
26748
|
}
|
26625
|
-
declare module "react/components/svg-icon/svg-icon" {
|
26749
|
+
declare module "packages/survey-react-ui/src/components/svg-icon/svg-icon" {
|
26626
26750
|
import React from "react";
|
26627
26751
|
export class SvgIcon extends React.Component<any, any> {
|
26628
26752
|
private svgIconRef;
|
@@ -26633,16 +26757,16 @@ declare module "react/components/svg-icon/svg-icon" {
|
|
26633
26757
|
componentDidMount(): void;
|
26634
26758
|
}
|
26635
26759
|
}
|
26636
|
-
declare module "react/components/action-bar/action-bar-separator" {
|
26760
|
+
declare module "packages/survey-react-ui/src/components/action-bar/action-bar-separator" {
|
26637
26761
|
import React from "react";
|
26638
26762
|
export class SurveyActionBarSeparator extends React.Component<any, any> {
|
26639
26763
|
constructor(props: any);
|
26640
26764
|
render(): JSX.Element;
|
26641
26765
|
}
|
26642
26766
|
}
|
26643
|
-
declare module "react/components/action-bar/action-bar-item" {
|
26644
|
-
import { Base, Action } from "entries/core";
|
26645
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
26767
|
+
declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item" {
|
26768
|
+
import { Base, Action } from "src/entries/core";
|
26769
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26646
26770
|
interface IActionBarItemProps {
|
26647
26771
|
item: Action;
|
26648
26772
|
}
|
@@ -26660,9 +26784,9 @@ declare module "react/components/action-bar/action-bar-item" {
|
|
26660
26784
|
renderInnerButton(): JSX.Element;
|
26661
26785
|
}
|
26662
26786
|
}
|
26663
|
-
declare module "react/components/popup/popup" {
|
26664
|
-
import { Base, PopupModel, PopupBaseViewModel, IDialogOptions } from "entries/core";
|
26665
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
26787
|
+
declare module "packages/survey-react-ui/src/components/popup/popup" {
|
26788
|
+
import { Base, PopupModel, PopupBaseViewModel, IDialogOptions } from "src/entries/core";
|
26789
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26666
26790
|
interface IPopupProps {
|
26667
26791
|
model: PopupModel;
|
26668
26792
|
getTarget?: (container: HTMLElement) => HTMLElement;
|
@@ -26702,8 +26826,8 @@ declare module "react/components/popup/popup" {
|
|
26702
26826
|
export function showModal(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
|
26703
26827
|
export function showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
|
26704
26828
|
}
|
26705
|
-
declare module "react/components/action-bar/action-bar-item-dropdown" {
|
26706
|
-
import { SurveyActionBarItem } from "react/components/action-bar/action-bar-item";
|
26829
|
+
declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown" {
|
26830
|
+
import { SurveyActionBarItem } from "packages/survey-react-ui/src/components/action-bar/action-bar-item";
|
26707
26831
|
export class SurveyActionBarItemDropdown extends SurveyActionBarItem {
|
26708
26832
|
private viewModel;
|
26709
26833
|
constructor(props: any);
|
@@ -26711,11 +26835,11 @@ declare module "react/components/action-bar/action-bar-item-dropdown" {
|
|
26711
26835
|
componentWillUnmount(): void;
|
26712
26836
|
}
|
26713
26837
|
}
|
26714
|
-
declare module "react/components/action-bar/action-bar" {
|
26715
|
-
import { Base, Action, ActionContainer } from "entries/core";
|
26716
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
26717
|
-
export * from "react/components/action-bar/action-bar-item-dropdown";
|
26718
|
-
export * from "react/components/action-bar/action-bar-separator";
|
26838
|
+
declare module "packages/survey-react-ui/src/components/action-bar/action-bar" {
|
26839
|
+
import { Base, Action, ActionContainer } from "src/entries/core";
|
26840
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26841
|
+
export * from "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown";
|
26842
|
+
export * from "packages/survey-react-ui/src/components/action-bar/action-bar-separator";
|
26719
26843
|
interface IActionBarProps {
|
26720
26844
|
model: ActionContainer<Action>;
|
26721
26845
|
handleClick?: boolean;
|
@@ -26733,9 +26857,9 @@ declare module "react/components/action-bar/action-bar" {
|
|
26733
26857
|
renderItems(): JSX.Element[];
|
26734
26858
|
}
|
26735
26859
|
}
|
26736
|
-
declare module "react/components/title/title-content" {
|
26860
|
+
declare module "packages/survey-react-ui/src/components/title/title-content" {
|
26737
26861
|
import React from "react";
|
26738
|
-
import { ITitleOwner } from "entries/core";
|
26862
|
+
import { ITitleOwner } from "src/entries/core";
|
26739
26863
|
export class TitleContent extends React.Component<any, any> {
|
26740
26864
|
constructor(props: any);
|
26741
26865
|
private get cssClasses();
|
@@ -26745,16 +26869,16 @@ declare module "react/components/title/title-content" {
|
|
26745
26869
|
private renderRequireText;
|
26746
26870
|
}
|
26747
26871
|
}
|
26748
|
-
declare module "react/components/title/title-actions" {
|
26872
|
+
declare module "packages/survey-react-ui/src/components/title/title-actions" {
|
26749
26873
|
import React from "react";
|
26750
|
-
import { SurveyElement } from "entries/core";
|
26874
|
+
import { SurveyElement } from "src/entries/core";
|
26751
26875
|
export class TitleActions extends React.Component<any, any> {
|
26752
26876
|
protected get cssClasses(): any;
|
26753
26877
|
protected get element(): SurveyElement;
|
26754
26878
|
render(): JSX.Element;
|
26755
26879
|
}
|
26756
26880
|
}
|
26757
|
-
declare module "react/components/title/title-element" {
|
26881
|
+
declare module "packages/survey-react-ui/src/components/title/title-element" {
|
26758
26882
|
import React from "react";
|
26759
26883
|
export class TitleElement extends React.Component<any, any> {
|
26760
26884
|
constructor(props: any);
|
@@ -26762,17 +26886,17 @@ declare module "react/components/title/title-element" {
|
|
26762
26886
|
render(): JSX.Element | any;
|
26763
26887
|
}
|
26764
26888
|
}
|
26765
|
-
declare module "react/element-header" {
|
26889
|
+
declare module "packages/survey-react-ui/src/element-header" {
|
26766
26890
|
import React from "react";
|
26767
26891
|
export class SurveyElementHeader extends React.Component<any, any> {
|
26768
26892
|
private get element();
|
26769
26893
|
render(): JSX.Element;
|
26770
26894
|
}
|
26771
26895
|
}
|
26772
|
-
declare module "react/reactquestion" {
|
26896
|
+
declare module "packages/survey-react-ui/src/reactquestion" {
|
26773
26897
|
import * as React from "react";
|
26774
|
-
import { Base, SurveyElement, SurveyError, Question, QuestionMatrixDropdownRenderedCell } from "entries/core";
|
26775
|
-
import { SurveyElementBase, ReactSurveyElement } from "react/reactquestion_element";
|
26898
|
+
import { Base, SurveyElement, SurveyError, Question, QuestionMatrixDropdownRenderedCell } from "src/entries/core";
|
26899
|
+
import { SurveyElementBase, ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
26776
26900
|
export interface ISurveyCreator {
|
26777
26901
|
createQuestionElement(question: Question): JSX.Element | null;
|
26778
26902
|
renderError(key: string, error: SurveyError, cssClasses: any, element?: any): JSX.Element;
|
@@ -26852,10 +26976,10 @@ declare module "react/reactquestion" {
|
|
26852
26976
|
render(): JSX.Element;
|
26853
26977
|
}
|
26854
26978
|
}
|
26855
|
-
declare module "react/reactquestion_element" {
|
26979
|
+
declare module "packages/survey-react-ui/src/reactquestion_element" {
|
26856
26980
|
import * as React from "react";
|
26857
|
-
import { Base, PanelModel, LocalizableString, Question } from "entries/core";
|
26858
|
-
import { ISurveyCreator } from "react/reactquestion";
|
26981
|
+
import { Base, PanelModel, LocalizableString, Question } from "src/entries/core";
|
26982
|
+
import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
|
26859
26983
|
export class SurveyElementBase<P, S> extends React.Component<P, S> {
|
26860
26984
|
static renderLocString(locStr: LocalizableString, style?: any, key?: string): JSX.Element;
|
26861
26985
|
static renderQuestionDescription(question: Question | PanelModel): JSX.Element;
|
@@ -26919,9 +27043,9 @@ declare module "react/reactquestion_element" {
|
|
26919
27043
|
private getValue;
|
26920
27044
|
}
|
26921
27045
|
}
|
26922
|
-
declare module "react/element" {
|
26923
|
-
import { IElement } from "entries/core";
|
26924
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27046
|
+
declare module "packages/survey-react-ui/src/element" {
|
27047
|
+
import { IElement } from "src/entries/core";
|
27048
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26925
27049
|
export class SurveyRowElement extends SurveyElementBase<any, any> {
|
26926
27050
|
private rootRef;
|
26927
27051
|
constructor(props: any);
|
@@ -26939,9 +27063,9 @@ declare module "react/element" {
|
|
26939
27063
|
protected createElement(element: IElement, elementIndex?: number): JSX.Element;
|
26940
27064
|
}
|
26941
27065
|
}
|
26942
|
-
declare module "react/row" {
|
26943
|
-
import { IElement, Base } from "entries/core";
|
26944
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27066
|
+
declare module "packages/survey-react-ui/src/row" {
|
27067
|
+
import { IElement, Base } from "src/entries/core";
|
27068
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26945
27069
|
export class SurveyRow extends SurveyElementBase<any, any> {
|
26946
27070
|
private rootRef;
|
26947
27071
|
constructor(props: any);
|
@@ -26961,11 +27085,11 @@ declare module "react/row" {
|
|
26961
27085
|
protected createElement(element: IElement, elementIndex?: number): JSX.Element;
|
26962
27086
|
}
|
26963
27087
|
}
|
26964
|
-
declare module "react/panel-base" {
|
27088
|
+
declare module "packages/survey-react-ui/src/panel-base" {
|
26965
27089
|
import * as React from "react";
|
26966
|
-
import { ISurveyCreator } from "react/reactquestion";
|
26967
|
-
import { Base, SurveyModel, QuestionRowModel, PanelModelBase } from "entries/core";
|
26968
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27090
|
+
import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
|
27091
|
+
import { Base, SurveyModel, QuestionRowModel, PanelModelBase } from "src/entries/core";
|
27092
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
26969
27093
|
export class SurveyPanelBase extends SurveyElementBase<any, any> {
|
26970
27094
|
protected rootRef: React.RefObject<HTMLDivElement>;
|
26971
27095
|
constructor(props: any);
|
@@ -26988,9 +27112,9 @@ declare module "react/panel-base" {
|
|
26988
27112
|
protected createRow(row: QuestionRowModel, css: any): JSX.Element;
|
26989
27113
|
}
|
26990
27114
|
}
|
26991
|
-
declare module "react/page" {
|
26992
|
-
import { PageModel, PanelModelBase } from "entries/core";
|
26993
|
-
import { SurveyPanelBase } from "react/panel-base";
|
27115
|
+
declare module "packages/survey-react-ui/src/page" {
|
27116
|
+
import { PageModel, PanelModelBase } from "src/entries/core";
|
27117
|
+
import { SurveyPanelBase } from "packages/survey-react-ui/src/panel-base";
|
26994
27118
|
export class SurveyPage extends SurveyPanelBase {
|
26995
27119
|
constructor(props: any);
|
26996
27120
|
protected getPanelBase(): PanelModelBase;
|
@@ -27000,7 +27124,7 @@ declare module "react/page" {
|
|
27000
27124
|
protected renderDescription(): JSX.Element | null;
|
27001
27125
|
}
|
27002
27126
|
}
|
27003
|
-
declare module "react/string-viewer" {
|
27127
|
+
declare module "packages/survey-react-ui/src/string-viewer" {
|
27004
27128
|
import React from "react";
|
27005
27129
|
export class SurveyLocStringViewer extends React.Component<any, any> {
|
27006
27130
|
constructor(props: any);
|
@@ -27017,9 +27141,9 @@ declare module "react/string-viewer" {
|
|
27017
27141
|
protected renderString(): JSX.Element;
|
27018
27142
|
}
|
27019
27143
|
}
|
27020
|
-
declare module "react/components/survey-header/survey-header" {
|
27144
|
+
declare module "packages/survey-react-ui/src/components/survey-header/survey-header" {
|
27021
27145
|
import React from "react";
|
27022
|
-
import { SurveyModel } from "entries/core";
|
27146
|
+
import { SurveyModel } from "src/entries/core";
|
27023
27147
|
interface ISurveyHeaderProps {
|
27024
27148
|
survey: SurveyModel;
|
27025
27149
|
}
|
@@ -27035,15 +27159,15 @@ declare module "react/components/survey-header/survey-header" {
|
|
27035
27159
|
render(): JSX.Element | null;
|
27036
27160
|
}
|
27037
27161
|
}
|
27038
|
-
declare module "react/components/brand-info" {
|
27162
|
+
declare module "packages/survey-react-ui/src/components/brand-info" {
|
27039
27163
|
import React from "react";
|
27040
27164
|
export class BrandInfo extends React.Component<any, any> {
|
27041
27165
|
render(): JSX.Element;
|
27042
27166
|
}
|
27043
27167
|
}
|
27044
|
-
declare module "react/components/notifier" {
|
27045
|
-
import { Base, Notifier } from "entries/core";
|
27046
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27168
|
+
declare module "packages/survey-react-ui/src/components/notifier" {
|
27169
|
+
import { Base, Notifier } from "src/entries/core";
|
27170
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27047
27171
|
export interface INotifierComponentProps {
|
27048
27172
|
notifier: Notifier;
|
27049
27173
|
}
|
@@ -27053,13 +27177,13 @@ declare module "react/components/notifier" {
|
|
27053
27177
|
renderElement(): JSX.Element | null;
|
27054
27178
|
}
|
27055
27179
|
}
|
27056
|
-
declare module "react/components/components-container" {
|
27180
|
+
declare module "packages/survey-react-ui/src/components/components-container" {
|
27057
27181
|
import React from "react";
|
27058
27182
|
export class ComponentsContainer extends React.Component<any, any> {
|
27059
27183
|
render(): JSX.Element | null;
|
27060
27184
|
}
|
27061
27185
|
}
|
27062
|
-
declare module "react/svgbundle" {
|
27186
|
+
declare module "packages/survey-react-ui/src/svgbundle" {
|
27063
27187
|
import React from "react";
|
27064
27188
|
export class SvgBundleComponent extends React.Component {
|
27065
27189
|
private containerRef;
|
@@ -27068,10 +27192,10 @@ declare module "react/svgbundle" {
|
|
27068
27192
|
render(): JSX.Element;
|
27069
27193
|
}
|
27070
27194
|
}
|
27071
|
-
declare module "react/reactSurvey" {
|
27072
|
-
import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "entries/core";
|
27073
|
-
import { ISurveyCreator } from "react/reactquestion";
|
27074
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27195
|
+
declare module "packages/survey-react-ui/src/reactSurvey" {
|
27196
|
+
import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "src/entries/core";
|
27197
|
+
import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
|
27198
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27075
27199
|
export class Survey extends SurveyElementBase<any, any> implements ISurveyCreator {
|
27076
27200
|
private previousJSON;
|
27077
27201
|
private rootRef;
|
@@ -27110,9 +27234,9 @@ declare module "react/reactSurvey" {
|
|
27110
27234
|
}
|
27111
27235
|
export function attachKey2click(element: JSX.Element, viewModel?: any, options?: IAttachKey2clickOptions): JSX.Element;
|
27112
27236
|
}
|
27113
|
-
declare module "react/reactSurveyNavigationBase" {
|
27237
|
+
declare module "packages/survey-react-ui/src/reactSurveyNavigationBase" {
|
27114
27238
|
import * as React from "react";
|
27115
|
-
import { SurveyModel } from "entries/core";
|
27239
|
+
import { SurveyModel } from "src/entries/core";
|
27116
27240
|
export class SurveyNavigationBase extends React.Component<any, any> {
|
27117
27241
|
constructor(props: any);
|
27118
27242
|
protected get survey(): SurveyModel;
|
@@ -27122,9 +27246,9 @@ declare module "react/reactSurveyNavigationBase" {
|
|
27122
27246
|
componentWillUnmount(): void;
|
27123
27247
|
}
|
27124
27248
|
}
|
27125
|
-
declare module "react/reacttimerpanel" {
|
27126
|
-
import { Base, SurveyTimerModel } from "entries/core";
|
27127
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27249
|
+
declare module "packages/survey-react-ui/src/reacttimerpanel" {
|
27250
|
+
import { Base, SurveyTimerModel } from "src/entries/core";
|
27251
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27128
27252
|
export class SurveyTimerPanel extends ReactSurveyElement {
|
27129
27253
|
constructor(props: any);
|
27130
27254
|
protected getStateElement(): Base;
|
@@ -27134,9 +27258,9 @@ declare module "react/reacttimerpanel" {
|
|
27134
27258
|
render(): JSX.Element | null;
|
27135
27259
|
}
|
27136
27260
|
}
|
27137
|
-
declare module "react/panel" {
|
27138
|
-
import { SurveyPanelBase } from "react/panel-base";
|
27139
|
-
import { PanelModel } from "entries/core";
|
27261
|
+
declare module "packages/survey-react-ui/src/panel" {
|
27262
|
+
import { SurveyPanelBase } from "packages/survey-react-ui/src/panel-base";
|
27263
|
+
import { PanelModel } from "src/entries/core";
|
27140
27264
|
export class SurveyPanel extends SurveyPanelBase {
|
27141
27265
|
private hasBeenExpanded;
|
27142
27266
|
constructor(props: any);
|
@@ -27151,9 +27275,9 @@ declare module "react/panel" {
|
|
27151
27275
|
protected getIsVisible(): boolean;
|
27152
27276
|
}
|
27153
27277
|
}
|
27154
|
-
declare module "react/flow-panel" {
|
27155
|
-
import { FlowPanelModel, Question } from "entries/core";
|
27156
|
-
import { SurveyPanel } from "react/panel";
|
27278
|
+
declare module "packages/survey-react-ui/src/flow-panel" {
|
27279
|
+
import { FlowPanelModel, Question } from "src/entries/core";
|
27280
|
+
import { SurveyPanel } from "packages/survey-react-ui/src/panel";
|
27157
27281
|
export class SurveyFlowPanel extends SurveyPanel {
|
27158
27282
|
constructor(props: any);
|
27159
27283
|
get flowPanel(): FlowPanelModel;
|
@@ -27174,9 +27298,9 @@ declare module "react/flow-panel" {
|
|
27174
27298
|
protected renderContent(style: any, rows: JSX.Element[]): JSX.Element;
|
27175
27299
|
}
|
27176
27300
|
}
|
27177
|
-
declare module "react/reactquestion_checkbox" {
|
27178
|
-
import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
|
27179
|
-
import { Base, ItemValue, QuestionCheckboxModel } from "entries/core";
|
27301
|
+
declare module "packages/survey-react-ui/src/reactquestion_checkbox" {
|
27302
|
+
import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27303
|
+
import { Base, ItemValue, QuestionCheckboxModel } from "src/entries/core";
|
27180
27304
|
export class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
|
27181
27305
|
constructor(props: any);
|
27182
27306
|
protected get question(): QuestionCheckboxModel;
|
@@ -27208,9 +27332,9 @@ declare module "react/reactquestion_checkbox" {
|
|
27208
27332
|
protected renderCheckbox(isChecked: boolean, otherItem: JSX.Element | null): JSX.Element;
|
27209
27333
|
}
|
27210
27334
|
}
|
27211
|
-
declare module "react/reactquestion_ranking" {
|
27212
|
-
import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
|
27213
|
-
import { QuestionRankingModel, ItemValue } from "entries/core";
|
27335
|
+
declare module "packages/survey-react-ui/src/reactquestion_ranking" {
|
27336
|
+
import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27337
|
+
import { QuestionRankingModel, ItemValue } from "src/entries/core";
|
27214
27338
|
export class SurveyQuestionRanking extends SurveyQuestionElementBase {
|
27215
27339
|
protected get question(): QuestionRankingModel;
|
27216
27340
|
protected renderElement(): JSX.Element;
|
@@ -27239,9 +27363,9 @@ declare module "react/reactquestion_ranking" {
|
|
27239
27363
|
protected renderElement(): JSX.Element;
|
27240
27364
|
}
|
27241
27365
|
}
|
27242
|
-
declare module "react/components/rating/rating-item" {
|
27243
|
-
import { Base, QuestionRatingModel, RenderedRatingItem } from "entries/core";
|
27244
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27366
|
+
declare module "packages/survey-react-ui/src/components/rating/rating-item" {
|
27367
|
+
import { Base, QuestionRatingModel, RenderedRatingItem } from "src/entries/core";
|
27368
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27245
27369
|
export interface IRatingItemProps {
|
27246
27370
|
question: QuestionRatingModel;
|
27247
27371
|
item: RenderedRatingItem;
|
@@ -27262,20 +27386,20 @@ declare module "react/components/rating/rating-item" {
|
|
27262
27386
|
componentDidMount(): void;
|
27263
27387
|
}
|
27264
27388
|
}
|
27265
|
-
declare module "react/components/rating/rating-item-star" {
|
27266
|
-
import { RatingItemBase } from "react/components/rating/rating-item";
|
27389
|
+
declare module "packages/survey-react-ui/src/components/rating/rating-item-star" {
|
27390
|
+
import { RatingItemBase } from "packages/survey-react-ui/src/components/rating/rating-item";
|
27267
27391
|
export class RatingItemStar extends RatingItemBase {
|
27268
27392
|
render(): JSX.Element | null;
|
27269
27393
|
}
|
27270
27394
|
}
|
27271
|
-
declare module "react/components/rating/rating-item-smiley" {
|
27272
|
-
import { RatingItemBase } from "react/components/rating/rating-item";
|
27395
|
+
declare module "packages/survey-react-ui/src/components/rating/rating-item-smiley" {
|
27396
|
+
import { RatingItemBase } from "packages/survey-react-ui/src/components/rating/rating-item";
|
27273
27397
|
export class RatingItemSmiley extends RatingItemBase {
|
27274
27398
|
render(): JSX.Element | null;
|
27275
27399
|
}
|
27276
27400
|
}
|
27277
|
-
declare module "react/components/rating/rating-dropdown-item" {
|
27278
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27401
|
+
declare module "packages/survey-react-ui/src/components/rating/rating-dropdown-item" {
|
27402
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27279
27403
|
interface IRatingItemProps {
|
27280
27404
|
item: any;
|
27281
27405
|
}
|
@@ -27286,9 +27410,9 @@ declare module "react/components/rating/rating-dropdown-item" {
|
|
27286
27410
|
renderDescription(item: any): JSX.Element;
|
27287
27411
|
}
|
27288
27412
|
}
|
27289
|
-
declare module "react/tagbox-filter" {
|
27290
|
-
import { DropdownMultiSelectListModel, QuestionTagboxModel } from "entries/core";
|
27291
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27413
|
+
declare module "packages/survey-react-ui/src/tagbox-filter" {
|
27414
|
+
import { DropdownMultiSelectListModel, QuestionTagboxModel } from "src/entries/core";
|
27415
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27292
27416
|
interface ITagboxFilterProps {
|
27293
27417
|
model: DropdownMultiSelectListModel;
|
27294
27418
|
question: QuestionTagboxModel;
|
@@ -27309,9 +27433,9 @@ declare module "react/tagbox-filter" {
|
|
27309
27433
|
render(): JSX.Element;
|
27310
27434
|
}
|
27311
27435
|
}
|
27312
|
-
declare module "react/dropdown-item" {
|
27313
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27314
|
-
import { Base } from "entries/core";
|
27436
|
+
declare module "packages/survey-react-ui/src/dropdown-item" {
|
27437
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27438
|
+
import { Base } from "src/entries/core";
|
27315
27439
|
export class SurveyQuestionOptionItem extends ReactSurveyElement {
|
27316
27440
|
constructor(props: any);
|
27317
27441
|
componentDidUpdate(prevProps: any, prevState: any): void;
|
@@ -27323,9 +27447,9 @@ declare module "react/dropdown-item" {
|
|
27323
27447
|
protected renderElement(): JSX.Element;
|
27324
27448
|
}
|
27325
27449
|
}
|
27326
|
-
declare module "react/dropdown-base" {
|
27327
|
-
import { Question, DropdownListModel } from "entries/core";
|
27328
|
-
import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
|
27450
|
+
declare module "packages/survey-react-ui/src/dropdown-base" {
|
27451
|
+
import { Question, DropdownListModel } from "src/entries/core";
|
27452
|
+
import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27329
27453
|
export class SurveyQuestionDropdownBase<T extends Question> extends SurveyQuestionUncontrolledElement<T> {
|
27330
27454
|
inputElement: HTMLInputElement | null;
|
27331
27455
|
click: (event: any) => void;
|
@@ -27349,17 +27473,17 @@ declare module "react/dropdown-base" {
|
|
27349
27473
|
updateInputDomElement(): void;
|
27350
27474
|
}
|
27351
27475
|
}
|
27352
|
-
declare module "react/reactquestion_dropdown" {
|
27353
|
-
import { Question } from "entries/core";
|
27354
|
-
import { SurveyQuestionDropdownBase } from "react/dropdown-base";
|
27476
|
+
declare module "packages/survey-react-ui/src/reactquestion_dropdown" {
|
27477
|
+
import { Question } from "src/entries/core";
|
27478
|
+
import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
|
27355
27479
|
export class SurveyQuestionDropdown extends SurveyQuestionDropdownBase<Question> {
|
27356
27480
|
constructor(props: any);
|
27357
27481
|
protected renderElement(): JSX.Element;
|
27358
27482
|
}
|
27359
27483
|
}
|
27360
|
-
declare module "react/tagbox-item" {
|
27361
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27362
|
-
import { QuestionTagboxModel, ItemValue } from "entries/core";
|
27484
|
+
declare module "packages/survey-react-ui/src/tagbox-item" {
|
27485
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27486
|
+
import { QuestionTagboxModel, ItemValue } from "src/entries/core";
|
27363
27487
|
export class SurveyQuestionTagboxItem extends ReactSurveyElement {
|
27364
27488
|
constructor(props: any);
|
27365
27489
|
protected get question(): QuestionTagboxModel;
|
@@ -27368,9 +27492,9 @@ declare module "react/tagbox-item" {
|
|
27368
27492
|
protected renderElement(): JSX.Element;
|
27369
27493
|
}
|
27370
27494
|
}
|
27371
|
-
declare module "react/reactquestion_tagbox" {
|
27372
|
-
import { QuestionTagboxModel, DropdownListModel } from "entries/core";
|
27373
|
-
import { SurveyQuestionDropdownBase } from "react/dropdown-base";
|
27495
|
+
declare module "packages/survey-react-ui/src/reactquestion_tagbox" {
|
27496
|
+
import { QuestionTagboxModel, DropdownListModel } from "src/entries/core";
|
27497
|
+
import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
|
27374
27498
|
export class SurveyQuestionTagbox extends SurveyQuestionDropdownBase<QuestionTagboxModel> {
|
27375
27499
|
constructor(props: any);
|
27376
27500
|
protected renderItem(key: string, item: any): JSX.Element;
|
@@ -27379,16 +27503,16 @@ declare module "react/reactquestion_tagbox" {
|
|
27379
27503
|
protected renderReadOnlyElement(): JSX.Element | null;
|
27380
27504
|
}
|
27381
27505
|
}
|
27382
|
-
declare module "react/dropdown-select" {
|
27383
|
-
import { SurveyQuestionDropdown } from "react/reactquestion_dropdown";
|
27506
|
+
declare module "packages/survey-react-ui/src/dropdown-select" {
|
27507
|
+
import { SurveyQuestionDropdown } from "packages/survey-react-ui/src/reactquestion_dropdown";
|
27384
27508
|
export class SurveyQuestionDropdownSelect extends SurveyQuestionDropdown {
|
27385
27509
|
constructor(props: any);
|
27386
27510
|
protected renderSelect(cssClasses: any): JSX.Element;
|
27387
27511
|
}
|
27388
27512
|
}
|
27389
|
-
declare module "react/reactquestion_matrix" {
|
27390
|
-
import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
|
27391
|
-
import { QuestionMatrixModel, Base } from "entries/core";
|
27513
|
+
declare module "packages/survey-react-ui/src/reactquestion_matrix" {
|
27514
|
+
import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27515
|
+
import { QuestionMatrixModel, Base } from "src/entries/core";
|
27392
27516
|
export class SurveyQuestionMatrix extends SurveyQuestionElementBase {
|
27393
27517
|
constructor(props: any);
|
27394
27518
|
protected get question(): QuestionMatrixModel;
|
@@ -27420,9 +27544,9 @@ declare module "react/reactquestion_matrix" {
|
|
27420
27544
|
protected renderInput(inputId: string, isChecked: boolean): JSX.Element;
|
27421
27545
|
}
|
27422
27546
|
}
|
27423
|
-
declare module "react/reactquestion_html" {
|
27424
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27425
|
-
import { QuestionHtmlModel } from "entries/core";
|
27547
|
+
declare module "packages/survey-react-ui/src/reactquestion_html" {
|
27548
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27549
|
+
import { QuestionHtmlModel } from "src/entries/core";
|
27426
27550
|
export class SurveyQuestionHtml extends SurveyQuestionElementBase {
|
27427
27551
|
constructor(props: any);
|
27428
27552
|
protected get question(): QuestionHtmlModel;
|
@@ -27434,24 +27558,24 @@ declare module "react/reactquestion_html" {
|
|
27434
27558
|
protected renderElement(): JSX.Element;
|
27435
27559
|
}
|
27436
27560
|
}
|
27437
|
-
declare module "react/components/loading-indicator" {
|
27561
|
+
declare module "packages/survey-react-ui/src/components/loading-indicator" {
|
27438
27562
|
import * as React from "react";
|
27439
27563
|
export class LoadingIndicatorComponent extends React.Component<any, any> {
|
27440
27564
|
render(): JSX.Element | null;
|
27441
27565
|
}
|
27442
27566
|
}
|
27443
|
-
declare module "react/components/file/file-choose-button" {
|
27444
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27445
|
-
import { QuestionFileModel } from "entries/core";
|
27567
|
+
declare module "packages/survey-react-ui/src/components/file/file-choose-button" {
|
27568
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27569
|
+
import { QuestionFileModel } from "src/entries/core";
|
27446
27570
|
export class SurveyFileChooseButton extends ReactSurveyElement {
|
27447
27571
|
constructor(props: any);
|
27448
27572
|
protected get question(): QuestionFileModel;
|
27449
27573
|
render(): JSX.Element;
|
27450
27574
|
}
|
27451
27575
|
}
|
27452
|
-
declare module "react/reactquestion_file" {
|
27453
|
-
import { QuestionFileModel } from "entries/core";
|
27454
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27576
|
+
declare module "packages/survey-react-ui/src/reactquestion_file" {
|
27577
|
+
import { QuestionFileModel } from "src/entries/core";
|
27578
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27455
27579
|
export class SurveyQuestionFile extends SurveyQuestionElementBase {
|
27456
27580
|
constructor(props: any);
|
27457
27581
|
protected get question(): QuestionFileModel;
|
@@ -27464,9 +27588,9 @@ declare module "react/reactquestion_file" {
|
|
27464
27588
|
protected renderVideo(): JSX.Element;
|
27465
27589
|
}
|
27466
27590
|
}
|
27467
|
-
declare module "react/components/file/file-preview" {
|
27468
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27469
|
-
import { QuestionFileModel } from "entries/core";
|
27591
|
+
declare module "packages/survey-react-ui/src/components/file/file-preview" {
|
27592
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27593
|
+
import { QuestionFileModel } from "src/entries/core";
|
27470
27594
|
export class SurveyFilePreview extends SurveyElementBase<{
|
27471
27595
|
question: QuestionFileModel;
|
27472
27596
|
}, {}> {
|
@@ -27476,11 +27600,11 @@ declare module "react/components/file/file-preview" {
|
|
27476
27600
|
protected canRender(): boolean;
|
27477
27601
|
}
|
27478
27602
|
}
|
27479
|
-
declare module "react/reactquestion_multipletext" {
|
27480
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27481
|
-
import { SurveyQuestionAndErrorsWrapped } from "react/reactquestion";
|
27482
|
-
import { QuestionMultipleTextModel, MultipleTextItemModel, MultipleTextCell } from "entries/core";
|
27483
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27603
|
+
declare module "packages/survey-react-ui/src/reactquestion_multipletext" {
|
27604
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27605
|
+
import { SurveyQuestionAndErrorsWrapped } from "packages/survey-react-ui/src/reactquestion";
|
27606
|
+
import { QuestionMultipleTextModel, MultipleTextItemModel, MultipleTextCell } from "src/entries/core";
|
27607
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27484
27608
|
export class SurveyQuestionMultipleText extends SurveyQuestionElementBase {
|
27485
27609
|
constructor(props: any);
|
27486
27610
|
protected get question(): QuestionMultipleTextModel;
|
@@ -27491,7 +27615,7 @@ declare module "react/reactquestion_multipletext" {
|
|
27491
27615
|
export class SurveyMultipleTextItem extends ReactSurveyElement {
|
27492
27616
|
private get question();
|
27493
27617
|
private get item();
|
27494
|
-
protected getStateElements(): (import("
|
27618
|
+
protected getStateElements(): (import("survey-core").MultipleTextEditorModel | MultipleTextItemModel)[];
|
27495
27619
|
private get creator();
|
27496
27620
|
protected renderElement(): JSX.Element;
|
27497
27621
|
}
|
@@ -27499,9 +27623,9 @@ declare module "react/reactquestion_multipletext" {
|
|
27499
27623
|
protected renderElement(): JSX.Element;
|
27500
27624
|
}
|
27501
27625
|
}
|
27502
|
-
declare module "react/reactquestion_radiogroup" {
|
27503
|
-
import { SurveyQuestionElementBase, ReactSurveyElement } from "react/reactquestion_element";
|
27504
|
-
import { QuestionRadiogroupModel, ItemValue, Base } from "entries/core";
|
27626
|
+
declare module "packages/survey-react-ui/src/reactquestion_radiogroup" {
|
27627
|
+
import { SurveyQuestionElementBase, ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27628
|
+
import { QuestionRadiogroupModel, ItemValue, Base } from "src/entries/core";
|
27505
27629
|
export class SurveyQuestionRadiogroup extends SurveyQuestionElementBase {
|
27506
27630
|
constructor(props: any);
|
27507
27631
|
protected get question(): QuestionRadiogroupModel;
|
@@ -27532,9 +27656,9 @@ declare module "react/reactquestion_radiogroup" {
|
|
27532
27656
|
protected renderElement(): JSX.Element;
|
27533
27657
|
}
|
27534
27658
|
}
|
27535
|
-
declare module "react/reactquestion_text" {
|
27536
|
-
import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
|
27537
|
-
import { QuestionTextModel } from "entries/core";
|
27659
|
+
declare module "packages/survey-react-ui/src/reactquestion_text" {
|
27660
|
+
import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27661
|
+
import { QuestionTextModel } from "src/entries/core";
|
27538
27662
|
export class SurveyQuestionText extends SurveyQuestionUncontrolledElement<QuestionTextModel> {
|
27539
27663
|
constructor(props: any);
|
27540
27664
|
protected renderInput(): JSX.Element;
|
@@ -27544,10 +27668,10 @@ declare module "react/reactquestion_text" {
|
|
27544
27668
|
private renderDataList;
|
27545
27669
|
}
|
27546
27670
|
}
|
27547
|
-
declare module "react/boolean" {
|
27671
|
+
declare module "packages/survey-react-ui/src/boolean" {
|
27548
27672
|
import * as React from "react";
|
27549
|
-
import { QuestionBooleanModel, Base } from "entries/core";
|
27550
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27673
|
+
import { QuestionBooleanModel, Base } from "src/entries/core";
|
27674
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27551
27675
|
export class SurveyQuestionBoolean extends SurveyQuestionElementBase {
|
27552
27676
|
protected checkRef: React.RefObject<HTMLInputElement>;
|
27553
27677
|
constructor(props: any);
|
@@ -27563,15 +27687,15 @@ declare module "react/boolean" {
|
|
27563
27687
|
protected renderElement(): JSX.Element;
|
27564
27688
|
}
|
27565
27689
|
}
|
27566
|
-
declare module "react/boolean-checkbox" {
|
27567
|
-
import { SurveyQuestionBoolean } from "react/boolean";
|
27690
|
+
declare module "packages/survey-react-ui/src/boolean-checkbox" {
|
27691
|
+
import { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
|
27568
27692
|
export class SurveyQuestionBooleanCheckbox extends SurveyQuestionBoolean {
|
27569
27693
|
constructor(props: any);
|
27570
27694
|
protected renderElement(): JSX.Element;
|
27571
27695
|
}
|
27572
27696
|
}
|
27573
|
-
declare module "react/boolean-radio" {
|
27574
|
-
import { SurveyQuestionBoolean } from "react/boolean";
|
27697
|
+
declare module "packages/survey-react-ui/src/boolean-radio" {
|
27698
|
+
import { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
|
27575
27699
|
export class SurveyQuestionBooleanRadio extends SurveyQuestionBoolean {
|
27576
27700
|
constructor(props: any);
|
27577
27701
|
private renderRadioItem;
|
@@ -27579,18 +27703,18 @@ declare module "react/boolean-radio" {
|
|
27579
27703
|
protected renderElement(): JSX.Element;
|
27580
27704
|
}
|
27581
27705
|
}
|
27582
|
-
declare module "react/reactquestion_empty" {
|
27583
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27584
|
-
import { QuestionEmptyModel } from "entries/core";
|
27706
|
+
declare module "packages/survey-react-ui/src/reactquestion_empty" {
|
27707
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27708
|
+
import { QuestionEmptyModel } from "src/entries/core";
|
27585
27709
|
export class SurveyQuestionEmpty extends SurveyQuestionElementBase {
|
27586
27710
|
constructor(props: any);
|
27587
27711
|
protected get question(): QuestionEmptyModel;
|
27588
27712
|
protected renderElement(): JSX.Element;
|
27589
27713
|
}
|
27590
27714
|
}
|
27591
|
-
declare module "react/components/matrix/row" {
|
27592
|
-
import { QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase } from "entries/core";
|
27593
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27715
|
+
declare module "packages/survey-react-ui/src/components/matrix/row" {
|
27716
|
+
import { QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase } from "src/entries/core";
|
27717
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27594
27718
|
interface IMatrixRowProps {
|
27595
27719
|
model: QuestionMatrixDropdownRenderedRow;
|
27596
27720
|
parentMatrix: QuestionMatrixDropdownModelBase;
|
@@ -27608,17 +27732,17 @@ declare module "react/components/matrix/row" {
|
|
27608
27732
|
render(): JSX.Element;
|
27609
27733
|
}
|
27610
27734
|
}
|
27611
|
-
declare module "react/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
|
27612
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27735
|
+
declare module "packages/survey-react-ui/src/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
|
27736
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27613
27737
|
export class SurveyQuestionMatrixDynamicDragDropIcon extends ReactSurveyElement {
|
27614
27738
|
private get question();
|
27615
27739
|
protected renderElement(): JSX.Element;
|
27616
27740
|
}
|
27617
27741
|
}
|
27618
|
-
declare module "react/reactquestion_matrixdropdownbase" {
|
27619
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27620
|
-
import { SurveyQuestionAndErrorsCell } from "react/reactquestion";
|
27621
|
-
import { QuestionMatrixDropdownModelBase, Question } from "entries/core";
|
27742
|
+
declare module "packages/survey-react-ui/src/reactquestion_matrixdropdownbase" {
|
27743
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27744
|
+
import { SurveyQuestionAndErrorsCell } from "packages/survey-react-ui/src/reactquestion";
|
27745
|
+
import { QuestionMatrixDropdownModelBase, Question } from "src/entries/core";
|
27622
27746
|
export class SurveyQuestionMatrixDropdownBase extends SurveyQuestionElementBase {
|
27623
27747
|
constructor(props: any);
|
27624
27748
|
protected get question(): QuestionMatrixDropdownModelBase;
|
@@ -27645,16 +27769,16 @@ declare module "react/reactquestion_matrixdropdownbase" {
|
|
27645
27769
|
private renderCellRadiogroupButton;
|
27646
27770
|
}
|
27647
27771
|
}
|
27648
|
-
declare module "react/reactquestion_matrixdropdown" {
|
27649
|
-
import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";
|
27772
|
+
declare module "packages/survey-react-ui/src/reactquestion_matrixdropdown" {
|
27773
|
+
import { SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
|
27650
27774
|
export class SurveyQuestionMatrixDropdown extends SurveyQuestionMatrixDropdownBase {
|
27651
27775
|
constructor(props: any);
|
27652
27776
|
}
|
27653
27777
|
}
|
27654
|
-
declare module "react/reactquestion_matrixdynamic" {
|
27655
|
-
import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";
|
27656
|
-
import { QuestionMatrixDynamicModel } from "entries/core";
|
27657
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27778
|
+
declare module "packages/survey-react-ui/src/reactquestion_matrixdynamic" {
|
27779
|
+
import { SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
|
27780
|
+
import { QuestionMatrixDynamicModel } from "src/entries/core";
|
27781
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27658
27782
|
export class SurveyQuestionMatrixDynamic extends SurveyQuestionMatrixDropdownBase {
|
27659
27783
|
constructor(props: any);
|
27660
27784
|
protected get matrix(): QuestionMatrixDynamicModel;
|
@@ -27672,9 +27796,9 @@ declare module "react/reactquestion_matrixdynamic" {
|
|
27672
27796
|
protected renderElement(): JSX.Element;
|
27673
27797
|
}
|
27674
27798
|
}
|
27675
|
-
declare module "react/components/paneldynamic-actions/paneldynamic-add-btn" {
|
27676
|
-
import { QuestionPanelDynamicModel } from "entries/core";
|
27677
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
27799
|
+
declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn" {
|
27800
|
+
import { QuestionPanelDynamicModel } from "src/entries/core";
|
27801
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27678
27802
|
export class SurveyQuestionPanelDynamicAction extends ReactSurveyElement {
|
27679
27803
|
constructor(props: any);
|
27680
27804
|
protected get data(): any;
|
@@ -27685,30 +27809,30 @@ declare module "react/components/paneldynamic-actions/paneldynamic-add-btn" {
|
|
27685
27809
|
protected renderElement(): JSX.Element | null;
|
27686
27810
|
}
|
27687
27811
|
}
|
27688
|
-
declare module "react/components/paneldynamic-actions/paneldynamic-next-btn" {
|
27689
|
-
import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
|
27812
|
+
declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-next-btn" {
|
27813
|
+
import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
|
27690
27814
|
export class SurveyQuestionPanelDynamicNextButton extends SurveyQuestionPanelDynamicAction {
|
27691
27815
|
protected handleClick: (event: any) => void;
|
27692
27816
|
protected renderElement(): JSX.Element;
|
27693
27817
|
}
|
27694
27818
|
}
|
27695
|
-
declare module "react/components/paneldynamic-actions/paneldynamic-prev-btn" {
|
27696
|
-
import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
|
27819
|
+
declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-prev-btn" {
|
27820
|
+
import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
|
27697
27821
|
export class SurveyQuestionPanelDynamicPrevButton extends SurveyQuestionPanelDynamicAction {
|
27698
27822
|
protected handleClick: (event: any) => void;
|
27699
27823
|
protected renderElement(): JSX.Element;
|
27700
27824
|
}
|
27701
27825
|
}
|
27702
|
-
declare module "react/components/paneldynamic-actions/paneldynamic-progress-text" {
|
27703
|
-
import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
|
27826
|
+
declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-progress-text" {
|
27827
|
+
import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
|
27704
27828
|
export class SurveyQuestionPanelDynamicProgressText extends SurveyQuestionPanelDynamicAction {
|
27705
27829
|
protected renderElement(): JSX.Element;
|
27706
27830
|
}
|
27707
27831
|
}
|
27708
|
-
declare module "react/reactquestion_paneldynamic" {
|
27709
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27710
|
-
import { SurveyModel, QuestionPanelDynamicModel } from "entries/core";
|
27711
|
-
import { SurveyPanel } from "react/panel";
|
27832
|
+
declare module "packages/survey-react-ui/src/reactquestion_paneldynamic" {
|
27833
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27834
|
+
import { SurveyModel, QuestionPanelDynamicModel } from "src/entries/core";
|
27835
|
+
import { SurveyPanel } from "packages/survey-react-ui/src/panel";
|
27712
27836
|
export class SurveyQuestionPanelDynamic extends SurveyQuestionElementBase {
|
27713
27837
|
constructor(props: any);
|
27714
27838
|
protected get question(): QuestionPanelDynamicModel;
|
@@ -27734,8 +27858,8 @@ declare module "react/reactquestion_paneldynamic" {
|
|
27734
27858
|
protected renderButton(): JSX.Element | null;
|
27735
27859
|
}
|
27736
27860
|
}
|
27737
|
-
declare module "react/progress" {
|
27738
|
-
import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
|
27861
|
+
declare module "packages/survey-react-ui/src/progress" {
|
27862
|
+
import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
|
27739
27863
|
export class SurveyProgress extends SurveyNavigationBase {
|
27740
27864
|
constructor(props: any);
|
27741
27865
|
protected get isTop(): boolean;
|
@@ -27744,9 +27868,9 @@ declare module "react/progress" {
|
|
27744
27868
|
render(): JSX.Element;
|
27745
27869
|
}
|
27746
27870
|
}
|
27747
|
-
declare module "react/progressButtons" {
|
27748
|
-
import { ProgressButtons, PageModel, IProgressButtonsViewModel } from "entries/core";
|
27749
|
-
import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
|
27871
|
+
declare module "packages/survey-react-ui/src/progressButtons" {
|
27872
|
+
import { ProgressButtons, PageModel, IProgressButtonsViewModel } from "src/entries/core";
|
27873
|
+
import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
|
27750
27874
|
export class SurveyProgressButtons extends SurveyNavigationBase implements IProgressButtonsViewModel {
|
27751
27875
|
private respManager;
|
27752
27876
|
private listContainerRef;
|
@@ -27764,9 +27888,9 @@ declare module "react/progressButtons" {
|
|
27764
27888
|
componentWillUnmount(): void;
|
27765
27889
|
}
|
27766
27890
|
}
|
27767
|
-
declare module "react/components/list/list-item" {
|
27768
|
-
import { ListModel } from "entries/core";
|
27769
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27891
|
+
declare module "packages/survey-react-ui/src/components/list/list-item" {
|
27892
|
+
import { ListModel } from "src/entries/core";
|
27893
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27770
27894
|
interface IListItemProps {
|
27771
27895
|
model: ListModel;
|
27772
27896
|
item: any;
|
@@ -27780,9 +27904,9 @@ declare module "react/components/list/list-item" {
|
|
27780
27904
|
componentDidMount(): void;
|
27781
27905
|
}
|
27782
27906
|
}
|
27783
|
-
declare module "react/components/list/list" {
|
27784
|
-
import { ListModel } from "entries/core";
|
27785
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27907
|
+
declare module "packages/survey-react-ui/src/components/list/list" {
|
27908
|
+
import { ListModel } from "src/entries/core";
|
27909
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27786
27910
|
interface IListProps {
|
27787
27911
|
model: ListModel;
|
27788
27912
|
}
|
@@ -27803,15 +27927,15 @@ declare module "react/components/list/list" {
|
|
27803
27927
|
emptyContent(): JSX.Element;
|
27804
27928
|
}
|
27805
27929
|
}
|
27806
|
-
declare module "react/progressToc" {
|
27807
|
-
import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
|
27930
|
+
declare module "packages/survey-react-ui/src/progressToc" {
|
27931
|
+
import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
|
27808
27932
|
export class SurveyProgressToc extends SurveyNavigationBase {
|
27809
27933
|
render(): JSX.Element;
|
27810
27934
|
}
|
27811
27935
|
}
|
27812
|
-
declare module "react/reactquestion_rating" {
|
27813
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27814
|
-
import { QuestionRatingModel } from "entries/core";
|
27936
|
+
declare module "packages/survey-react-ui/src/reactquestion_rating" {
|
27937
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27938
|
+
import { QuestionRatingModel } from "src/entries/core";
|
27815
27939
|
export class SurveyQuestionRating extends SurveyQuestionElementBase {
|
27816
27940
|
constructor(props: any);
|
27817
27941
|
protected get question(): QuestionRatingModel;
|
@@ -27820,27 +27944,27 @@ declare module "react/reactquestion_rating" {
|
|
27820
27944
|
protected renderElement(): JSX.Element;
|
27821
27945
|
}
|
27822
27946
|
}
|
27823
|
-
declare module "react/rating-dropdown" {
|
27824
|
-
import { QuestionRatingModel } from "entries/core";
|
27825
|
-
import { SurveyQuestionDropdownBase } from "react/dropdown-base";
|
27826
|
-
export * from "react/components/rating/rating-dropdown-item";
|
27947
|
+
declare module "packages/survey-react-ui/src/rating-dropdown" {
|
27948
|
+
import { QuestionRatingModel } from "src/entries/core";
|
27949
|
+
import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
|
27950
|
+
export * from "packages/survey-react-ui/src/components/rating/rating-dropdown-item";
|
27827
27951
|
export class SurveyQuestionRatingDropdown extends SurveyQuestionDropdownBase<QuestionRatingModel> {
|
27828
27952
|
constructor(props: any);
|
27829
27953
|
protected renderElement(): JSX.Element;
|
27830
27954
|
}
|
27831
27955
|
}
|
27832
|
-
declare module "react/reactquestion_expression" {
|
27833
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27834
|
-
import { QuestionExpressionModel } from "entries/core";
|
27956
|
+
declare module "packages/survey-react-ui/src/reactquestion_expression" {
|
27957
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27958
|
+
import { QuestionExpressionModel } from "src/entries/core";
|
27835
27959
|
export class SurveyQuestionExpression extends SurveyQuestionElementBase {
|
27836
27960
|
constructor(props: any);
|
27837
27961
|
protected get question(): QuestionExpressionModel;
|
27838
27962
|
protected renderElement(): JSX.Element;
|
27839
27963
|
}
|
27840
27964
|
}
|
27841
|
-
declare module "react/react-popup-survey" {
|
27842
|
-
import { Base, PopupSurveyModel } from "entries/core";
|
27843
|
-
import { Survey } from "react/reactSurvey";
|
27965
|
+
declare module "packages/survey-react-ui/src/react-popup-survey" {
|
27966
|
+
import { Base, PopupSurveyModel } from "src/entries/core";
|
27967
|
+
import { Survey } from "packages/survey-react-ui/src/reactSurvey";
|
27844
27968
|
export class PopupSurvey extends Survey {
|
27845
27969
|
protected popup: PopupSurveyModel;
|
27846
27970
|
constructor(props: any);
|
@@ -27863,9 +27987,9 @@ declare module "react/react-popup-survey" {
|
|
27863
27987
|
export class SurveyWindow extends PopupSurvey {
|
27864
27988
|
}
|
27865
27989
|
}
|
27866
|
-
declare module "react/imagepicker" {
|
27867
|
-
import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
|
27868
|
-
import { QuestionImagePickerModel, ImageItemValue } from "entries/core";
|
27990
|
+
declare module "packages/survey-react-ui/src/imagepicker" {
|
27991
|
+
import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27992
|
+
import { QuestionImagePickerModel, ImageItemValue } from "src/entries/core";
|
27869
27993
|
export class SurveyQuestionImagePicker extends SurveyQuestionElementBase {
|
27870
27994
|
constructor(props: any);
|
27871
27995
|
protected get question(): QuestionImagePickerModel;
|
@@ -27889,9 +28013,9 @@ declare module "react/imagepicker" {
|
|
27889
28013
|
protected renderElement(): JSX.Element;
|
27890
28014
|
}
|
27891
28015
|
}
|
27892
|
-
declare module "react/image" {
|
27893
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27894
|
-
import { QuestionImageModel } from "entries/core";
|
28016
|
+
declare module "packages/survey-react-ui/src/image" {
|
28017
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
28018
|
+
import { QuestionImageModel } from "src/entries/core";
|
27895
28019
|
export class SurveyQuestionImage extends SurveyQuestionElementBase {
|
27896
28020
|
constructor(props: any);
|
27897
28021
|
componentDidMount(): void;
|
@@ -27900,9 +28024,9 @@ declare module "react/image" {
|
|
27900
28024
|
protected renderElement(): JSX.Element;
|
27901
28025
|
}
|
27902
28026
|
}
|
27903
|
-
declare module "react/signaturepad" {
|
27904
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27905
|
-
import { QuestionSignaturePadModel } from "entries/core";
|
28027
|
+
declare module "packages/survey-react-ui/src/signaturepad" {
|
28028
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
28029
|
+
import { QuestionSignaturePadModel } from "src/entries/core";
|
27906
28030
|
export class SurveyQuestionSignaturePad extends SurveyQuestionElementBase {
|
27907
28031
|
constructor(props: any);
|
27908
28032
|
protected get question(): QuestionSignaturePadModel;
|
@@ -27912,10 +28036,10 @@ declare module "react/signaturepad" {
|
|
27912
28036
|
renderCleanButton(): JSX.Element | null;
|
27913
28037
|
}
|
27914
28038
|
}
|
27915
|
-
declare module "react/reactquestion_buttongroup" {
|
27916
|
-
import { SurveyQuestionElementBase } from "react/reactquestion_element";
|
27917
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
27918
|
-
import { QuestionButtonGroupModel, ButtonGroupItemValue, ButtonGroupItemModel } from "entries/core";
|
28039
|
+
declare module "packages/survey-react-ui/src/reactquestion_buttongroup" {
|
28040
|
+
import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
28041
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
28042
|
+
import { QuestionButtonGroupModel, ButtonGroupItemValue, ButtonGroupItemModel } from "src/entries/core";
|
27919
28043
|
export class SurveyQuestionButtonGroup extends SurveyQuestionElementBase {
|
27920
28044
|
constructor(props: any);
|
27921
28045
|
protected get question(): QuestionButtonGroupModel;
|
@@ -27936,9 +28060,9 @@ declare module "react/reactquestion_buttongroup" {
|
|
27936
28060
|
protected renderCaption(): JSX.Element;
|
27937
28061
|
}
|
27938
28062
|
}
|
27939
|
-
declare module "react/reactquestion_custom" {
|
27940
|
-
import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
|
27941
|
-
import { Base, QuestionCustomModel, QuestionCompositeModel } from "entries/core";
|
28063
|
+
declare module "packages/survey-react-ui/src/reactquestion_custom" {
|
28064
|
+
import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
|
28065
|
+
import { Base, QuestionCustomModel, QuestionCompositeModel } from "src/entries/core";
|
27942
28066
|
export class SurveyQuestionCustom extends SurveyQuestionUncontrolledElement<QuestionCustomModel> {
|
27943
28067
|
constructor(props: any);
|
27944
28068
|
protected getStateElements(): Array<Base>;
|
@@ -27950,9 +28074,9 @@ declare module "react/reactquestion_custom" {
|
|
27950
28074
|
protected renderElement(): JSX.Element;
|
27951
28075
|
}
|
27952
28076
|
}
|
27953
|
-
declare module "react/components/list/list-item-content" {
|
27954
|
-
import { ListModel } from "entries/core";
|
27955
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
28077
|
+
declare module "packages/survey-react-ui/src/components/list/list-item-content" {
|
28078
|
+
import { ListModel } from "src/entries/core";
|
28079
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27956
28080
|
interface IListItemProps {
|
27957
28081
|
model: ListModel;
|
27958
28082
|
item: any;
|
@@ -27964,9 +28088,9 @@ declare module "react/components/list/list-item-content" {
|
|
27964
28088
|
render(): JSX.Element | null;
|
27965
28089
|
}
|
27966
28090
|
}
|
27967
|
-
declare module "react/components/list/list-item-group" {
|
27968
|
-
import { ListModel } from "entries/core";
|
27969
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
28091
|
+
declare module "packages/survey-react-ui/src/components/list/list-item-group" {
|
28092
|
+
import { ListModel } from "src/entries/core";
|
28093
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27970
28094
|
interface IListItemProps {
|
27971
28095
|
model: ListModel;
|
27972
28096
|
item: any;
|
@@ -27978,9 +28102,9 @@ declare module "react/components/list/list-item-group" {
|
|
27978
28102
|
render(): JSX.Element | null;
|
27979
28103
|
}
|
27980
28104
|
}
|
27981
|
-
declare module "react/components/survey-header/logo-image" {
|
28105
|
+
declare module "packages/survey-react-ui/src/components/survey-header/logo-image" {
|
27982
28106
|
import React from "react";
|
27983
|
-
import { SurveyModel } from "entries/core";
|
28107
|
+
import { SurveyModel } from "src/entries/core";
|
27984
28108
|
interface ILogoImageProps {
|
27985
28109
|
data: SurveyModel;
|
27986
28110
|
}
|
@@ -27990,8 +28114,8 @@ declare module "react/components/survey-header/logo-image" {
|
|
27990
28114
|
render(): JSX.Element;
|
27991
28115
|
}
|
27992
28116
|
}
|
27993
|
-
declare module "react/components/matrix-actions/remove-button/remove-button" {
|
27994
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
28117
|
+
declare module "packages/survey-react-ui/src/components/matrix-actions/remove-button/remove-button" {
|
28118
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
27995
28119
|
export class SurveyQuestionMatrixDynamicRemoveButton extends ReactSurveyElement {
|
27996
28120
|
constructor(props: any);
|
27997
28121
|
private get question();
|
@@ -28000,9 +28124,9 @@ declare module "react/components/matrix-actions/remove-button/remove-button" {
|
|
28000
28124
|
protected renderElement(): JSX.Element;
|
28001
28125
|
}
|
28002
28126
|
}
|
28003
|
-
declare module "react/components/matrix-actions/detail-button/detail-button" {
|
28004
|
-
import { Action } from "entries/core";
|
28005
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
28127
|
+
declare module "packages/survey-react-ui/src/components/matrix-actions/detail-button/detail-button" {
|
28128
|
+
import { Action } from "src/entries/core";
|
28129
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
28006
28130
|
export class SurveyQuestionMatrixDetailButton extends ReactSurveyElement {
|
28007
28131
|
constructor(props: any);
|
28008
28132
|
protected getStateElement(): any;
|
@@ -28013,25 +28137,25 @@ declare module "react/components/matrix-actions/detail-button/detail-button" {
|
|
28013
28137
|
protected renderElement(): JSX.Element;
|
28014
28138
|
}
|
28015
28139
|
}
|
28016
|
-
declare module "react/components/paneldynamic-actions/paneldynamic-remove-btn" {
|
28017
|
-
import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
|
28140
|
+
declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-remove-btn" {
|
28141
|
+
import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
|
28018
28142
|
export class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
|
28019
28143
|
protected handleClick: (event: any) => void;
|
28020
28144
|
protected renderElement(): JSX.Element;
|
28021
28145
|
}
|
28022
28146
|
}
|
28023
|
-
declare module "react/components/survey-actions/survey-nav-button" {
|
28024
|
-
import { Action } from "entries/core";
|
28025
|
-
import { ReactSurveyElement } from "react/reactquestion_element";
|
28147
|
+
declare module "packages/survey-react-ui/src/components/survey-actions/survey-nav-button" {
|
28148
|
+
import { Action } from "src/entries/core";
|
28149
|
+
import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
|
28026
28150
|
export class SurveyNavigationButton extends ReactSurveyElement {
|
28027
28151
|
protected get item(): Action;
|
28028
28152
|
protected canRender(): boolean;
|
28029
28153
|
protected renderElement(): JSX.Element;
|
28030
28154
|
}
|
28031
28155
|
}
|
28032
|
-
declare module "react/components/question-error" {
|
28156
|
+
declare module "packages/survey-react-ui/src/components/question-error" {
|
28033
28157
|
import React from "react";
|
28034
|
-
import { SurveyError } from "entries/core";
|
28158
|
+
import { SurveyError } from "src/entries/core";
|
28035
28159
|
export interface IQuestionErrorComponentProps {
|
28036
28160
|
error: SurveyError;
|
28037
28161
|
cssClasses: any;
|
@@ -28041,16 +28165,16 @@ declare module "react/components/question-error" {
|
|
28041
28165
|
render(): JSX.Element | null;
|
28042
28166
|
}
|
28043
28167
|
}
|
28044
|
-
declare module "react/components/skeleton" {
|
28168
|
+
declare module "packages/survey-react-ui/src/components/skeleton" {
|
28045
28169
|
import React from "react";
|
28046
28170
|
export class Skeleton extends React.Component<any, any> {
|
28047
28171
|
render(): JSX.Element;
|
28048
28172
|
}
|
28049
28173
|
}
|
28050
|
-
declare module "react/components/header" {
|
28174
|
+
declare module "packages/survey-react-ui/src/components/header" {
|
28051
28175
|
import React from "react";
|
28052
|
-
import { Base, SurveyModel, Cover, CoverCell } from "entries/core";
|
28053
|
-
import { SurveyElementBase } from "react/reactquestion_element";
|
28176
|
+
import { Base, SurveyModel, Cover, CoverCell } from "src/entries/core";
|
28177
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
28054
28178
|
export interface ILayoutElementProps<T = Base> {
|
28055
28179
|
survey: SurveyModel;
|
28056
28180
|
model: T;
|
@@ -28071,7 +28195,7 @@ declare module "react/components/header" {
|
|
28071
28195
|
renderElement(): JSX.Element | null;
|
28072
28196
|
}
|
28073
28197
|
}
|
28074
|
-
declare module "react/string-editor" {
|
28198
|
+
declare module "packages/survey-react-ui/src/string-editor" {
|
28075
28199
|
import React from "react";
|
28076
28200
|
export class SurveyLocStringEditor extends React.Component<any, any> {
|
28077
28201
|
constructor(props: any);
|
@@ -28084,97 +28208,98 @@ declare module "react/string-editor" {
|
|
28084
28208
|
render(): JSX.Element | null;
|
28085
28209
|
}
|
28086
28210
|
}
|
28087
|
-
declare module "entries/react-ui-model" {
|
28088
|
-
export { Survey, attachKey2click } from "react/reactSurvey";
|
28089
|
-
export { ReactSurveyElementsWrapper } from "react/reactsurveymodel";
|
28090
|
-
export { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
|
28091
|
-
export { SurveyTimerPanel } from "react/reacttimerpanel";
|
28092
|
-
export { SurveyPage } from "react/page";
|
28093
|
-
export { SurveyRow } from "react/row";
|
28094
|
-
export { SurveyPanel } from "react/panel";
|
28095
|
-
export { SurveyFlowPanel } from "react/flow-panel";
|
28096
|
-
export { SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell,
|
28097
|
-
export {
|
28098
|
-
export {
|
28099
|
-
export {
|
28100
|
-
export {
|
28101
|
-
export {
|
28102
|
-
export {
|
28103
|
-
export {
|
28104
|
-
export {
|
28105
|
-
export {
|
28106
|
-
export {
|
28107
|
-
export {
|
28108
|
-
export {
|
28109
|
-
export {
|
28110
|
-
export {
|
28111
|
-
export {
|
28112
|
-
export {
|
28113
|
-
export {
|
28114
|
-
export {
|
28115
|
-
export {
|
28116
|
-
export {
|
28117
|
-
export {
|
28118
|
-
export {
|
28119
|
-
export {
|
28120
|
-
export {
|
28121
|
-
export {
|
28122
|
-
export {
|
28123
|
-
export {
|
28124
|
-
export {
|
28125
|
-
export {
|
28126
|
-
export {
|
28127
|
-
export {
|
28128
|
-
export {
|
28129
|
-
export {
|
28130
|
-
export {
|
28131
|
-
export {
|
28132
|
-
export {
|
28133
|
-
export {
|
28134
|
-
export {
|
28135
|
-
export {
|
28136
|
-
export {
|
28137
|
-
export {
|
28138
|
-
export {
|
28139
|
-
export {
|
28140
|
-
export {
|
28141
|
-
export {
|
28142
|
-
export {
|
28143
|
-
export {
|
28144
|
-
export {
|
28145
|
-
export {
|
28146
|
-
export {
|
28147
|
-
export {
|
28148
|
-
export {
|
28149
|
-
export {
|
28150
|
-
export {
|
28151
|
-
export {
|
28152
|
-
export {
|
28153
|
-
export {
|
28154
|
-
export {
|
28155
|
-
export {
|
28156
|
-
export {
|
28157
|
-
export {
|
28158
|
-
export {
|
28159
|
-
export {
|
28160
|
-
export {
|
28161
|
-
export {
|
28162
|
-
export {
|
28163
|
-
export {
|
28164
|
-
export {
|
28165
|
-
export {
|
28166
|
-
export {
|
28167
|
-
export
|
28168
|
-
export
|
28169
|
-
export {
|
28170
|
-
export {
|
28171
|
-
export {
|
28172
|
-
}
|
28173
|
-
|
28174
|
-
|
28175
|
-
export * from "entries/
|
28176
|
-
|
28177
|
-
|
28211
|
+
declare module "packages/survey-react-ui/entries/react-ui-model" {
|
28212
|
+
export { Survey, attachKey2click } from "packages/survey-react-ui/src/reactSurvey";
|
28213
|
+
export { ReactSurveyElementsWrapper } from "packages/survey-react-ui/src/reactsurveymodel";
|
28214
|
+
export { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
|
28215
|
+
export { SurveyTimerPanel } from "packages/survey-react-ui/src/reacttimerpanel";
|
28216
|
+
export { SurveyPage } from "packages/survey-react-ui/src/page";
|
28217
|
+
export { SurveyRow } from "packages/survey-react-ui/src/row";
|
28218
|
+
export { SurveyPanel } from "packages/survey-react-ui/src/panel";
|
28219
|
+
export { SurveyFlowPanel } from "packages/survey-react-ui/src/flow-panel";
|
28220
|
+
export { SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, } from "packages/survey-react-ui/src/reactquestion";
|
28221
|
+
export type { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
|
28222
|
+
export { ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, } from "packages/survey-react-ui/src/reactquestion_element";
|
28223
|
+
export { SurveyQuestionCommentItem, SurveyQuestionComment, } from "packages/survey-react-ui/src/reactquestion_comment";
|
28224
|
+
export { SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, } from "packages/survey-react-ui/src/reactquestion_checkbox";
|
28225
|
+
export { SurveyQuestionRanking, SurveyQuestionRankingItem, SurveyQuestionRankingItemContent } from "packages/survey-react-ui/src/reactquestion_ranking";
|
28226
|
+
export { RatingItem } from "packages/survey-react-ui/src/components/rating/rating-item";
|
28227
|
+
export { RatingItemStar } from "packages/survey-react-ui/src/components/rating/rating-item-star";
|
28228
|
+
export { RatingItemSmiley } from "packages/survey-react-ui/src/components/rating/rating-item-smiley";
|
28229
|
+
export { RatingDropdownItem } from "packages/survey-react-ui/src/components/rating/rating-dropdown-item";
|
28230
|
+
export { TagboxFilterString } from "packages/survey-react-ui/src/tagbox-filter";
|
28231
|
+
export { SurveyQuestionOptionItem } from "packages/survey-react-ui/src/dropdown-item";
|
28232
|
+
export { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
|
28233
|
+
export { SurveyQuestionDropdown } from "packages/survey-react-ui/src/reactquestion_dropdown";
|
28234
|
+
export { SurveyQuestionTagboxItem } from "packages/survey-react-ui/src/tagbox-item";
|
28235
|
+
export { SurveyQuestionTagbox } from "packages/survey-react-ui/src/reactquestion_tagbox";
|
28236
|
+
export { SurveyQuestionDropdownSelect } from "packages/survey-react-ui/src/dropdown-select";
|
28237
|
+
export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell } from "packages/survey-react-ui/src/reactquestion_matrix";
|
28238
|
+
export { SurveyQuestionHtml } from "packages/survey-react-ui/src/reactquestion_html";
|
28239
|
+
export { SurveyQuestionFile } from "packages/survey-react-ui/src/reactquestion_file";
|
28240
|
+
export { SurveyFileChooseButton } from "packages/survey-react-ui/src/components/file/file-choose-button";
|
28241
|
+
export { SurveyFilePreview } from "packages/survey-react-ui/src/components/file/file-preview";
|
28242
|
+
export { SurveyQuestionMultipleText } from "packages/survey-react-ui/src/reactquestion_multipletext";
|
28243
|
+
export { SurveyQuestionRadiogroup, SurveyQuestionRadioItem } from "packages/survey-react-ui/src/reactquestion_radiogroup";
|
28244
|
+
export { SurveyQuestionText } from "packages/survey-react-ui/src/reactquestion_text";
|
28245
|
+
export { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
|
28246
|
+
export { SurveyQuestionBooleanCheckbox } from "packages/survey-react-ui/src/boolean-checkbox";
|
28247
|
+
export { SurveyQuestionBooleanRadio } from "packages/survey-react-ui/src/boolean-radio";
|
28248
|
+
export { SurveyQuestionEmpty } from "packages/survey-react-ui/src/reactquestion_empty";
|
28249
|
+
export { SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
|
28250
|
+
export { SurveyQuestionMatrixDropdown } from "packages/survey-react-ui/src/reactquestion_matrixdropdown";
|
28251
|
+
export { SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton } from "packages/survey-react-ui/src/reactquestion_matrixdynamic";
|
28252
|
+
export { SurveyQuestionPanelDynamic } from "packages/survey-react-ui/src/reactquestion_paneldynamic";
|
28253
|
+
export { SurveyProgress } from "packages/survey-react-ui/src/progress";
|
28254
|
+
export { SurveyProgressButtons } from "packages/survey-react-ui/src/progressButtons";
|
28255
|
+
export { SurveyProgressToc } from "packages/survey-react-ui/src/progressToc";
|
28256
|
+
export { SurveyQuestionRating } from "packages/survey-react-ui/src/reactquestion_rating";
|
28257
|
+
export { SurveyQuestionRatingDropdown } from "packages/survey-react-ui/src/rating-dropdown";
|
28258
|
+
export { SurveyQuestionExpression } from "packages/survey-react-ui/src/reactquestion_expression";
|
28259
|
+
export { PopupSurvey, SurveyWindow } from "packages/survey-react-ui/src/react-popup-survey";
|
28260
|
+
export { ReactQuestionFactory } from "packages/survey-react-ui/src/reactquestion_factory";
|
28261
|
+
export { ReactElementFactory } from "packages/survey-react-ui/src/element-factory";
|
28262
|
+
export { SurveyQuestionImagePicker } from "packages/survey-react-ui/src/imagepicker";
|
28263
|
+
export { SurveyQuestionImage } from "packages/survey-react-ui/src/image";
|
28264
|
+
export { SurveyQuestionSignaturePad } from "packages/survey-react-ui/src/signaturepad";
|
28265
|
+
export { SurveyQuestionButtonGroup } from "packages/survey-react-ui/src/reactquestion_buttongroup";
|
28266
|
+
export { SurveyQuestionCustom, SurveyQuestionComposite } from "packages/survey-react-ui/src/reactquestion_custom";
|
28267
|
+
export { Popup } from "packages/survey-react-ui/src/components/popup/popup";
|
28268
|
+
export { ListItemContent } from "packages/survey-react-ui/src/components/list/list-item-content";
|
28269
|
+
export { ListItemGroup } from "packages/survey-react-ui/src/components/list/list-item-group";
|
28270
|
+
export { List } from "packages/survey-react-ui/src/components/list/list";
|
28271
|
+
export { TitleActions } from "packages/survey-react-ui/src/components/title/title-actions";
|
28272
|
+
export { TitleElement } from "packages/survey-react-ui/src/components/title/title-element";
|
28273
|
+
export { SurveyActionBar } from "packages/survey-react-ui/src/components/action-bar/action-bar";
|
28274
|
+
export { LogoImage } from "packages/survey-react-ui/src/components/survey-header/logo-image";
|
28275
|
+
export { SurveyHeader } from "packages/survey-react-ui/src/components/survey-header/survey-header";
|
28276
|
+
export { SvgIcon } from "packages/survey-react-ui/src/components/svg-icon/svg-icon";
|
28277
|
+
export { SurveyQuestionMatrixDynamicRemoveButton } from "packages/survey-react-ui/src/components/matrix-actions/remove-button/remove-button";
|
28278
|
+
export { SurveyQuestionMatrixDetailButton } from "packages/survey-react-ui/src/components/matrix-actions/detail-button/detail-button";
|
28279
|
+
export { SurveyQuestionMatrixDynamicDragDropIcon } from "packages/survey-react-ui/src/components/matrix-actions/drag-drop-icon/drag-drop-icon";
|
28280
|
+
export { SurveyQuestionPanelDynamicAddButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
|
28281
|
+
export { SurveyQuestionPanelDynamicRemoveButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-remove-btn";
|
28282
|
+
export { SurveyQuestionPanelDynamicPrevButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-prev-btn";
|
28283
|
+
export { SurveyQuestionPanelDynamicNextButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-next-btn";
|
28284
|
+
export { SurveyQuestionPanelDynamicProgressText } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-progress-text";
|
28285
|
+
export { SurveyNavigationButton } from "packages/survey-react-ui/src/components/survey-actions/survey-nav-button";
|
28286
|
+
export { QuestionErrorComponent } from "packages/survey-react-ui/src/components/question-error";
|
28287
|
+
export { MatrixRow } from "packages/survey-react-ui/src/components/matrix/row";
|
28288
|
+
export { Skeleton } from "packages/survey-react-ui/src/components/skeleton";
|
28289
|
+
export { NotifierComponent } from "packages/survey-react-ui/src/components/notifier";
|
28290
|
+
export { ComponentsContainer } from "packages/survey-react-ui/src/components/components-container";
|
28291
|
+
export { CharacterCounterComponent } from "packages/survey-react-ui/src/components/character-counter";
|
28292
|
+
export * from "packages/survey-react-ui/src/components/header";
|
28293
|
+
export { SurveyLocStringViewer } from "packages/survey-react-ui/src/string-viewer";
|
28294
|
+
export { SurveyLocStringEditor } from "packages/survey-react-ui/src/string-editor";
|
28295
|
+
export { LoadingIndicatorComponent } from "packages/survey-react-ui/src/components/loading-indicator";
|
28296
|
+
export { SvgBundleComponent } from "packages/survey-react-ui/src/svgbundle";
|
28297
|
+
}
|
28298
|
+
declare module "src/entries/react" {
|
28299
|
+
export * from "src/entries/core";
|
28300
|
+
export * from "src/entries/plugins";
|
28301
|
+
import "src/entries/chunks/localization";
|
28302
|
+
export * from "packages/survey-react-ui/entries/react-ui-model";
|
28178
28303
|
}
|
28179
28304
|
|
28180
|
-
declare module "survey-react" { import main = require("entries/react"); export = main; }
|
28305
|
+
declare module "survey-react" { import main = require("src/entries/react"); export = main; }
|