survey-react 1.12.8 → 1.12.10
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 +41 -31
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +23 -8
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +24 -9
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +97 -23
- package/survey.react.js +1738 -721
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -741,11 +741,21 @@ declare module "packages/survey-core/src/utils/animation" {
|
|
741
741
|
isDeletingRunning: boolean;
|
742
742
|
isAddingRunning: boolean;
|
743
743
|
}
|
744
|
+
interface IGroupAnimationCompareInfo<T> {
|
745
|
+
addedItems: Array<T>;
|
746
|
+
deletedItems: Array<T>;
|
747
|
+
reorderedItems: Array<{
|
748
|
+
item: T;
|
749
|
+
movedForward: boolean;
|
750
|
+
}>;
|
751
|
+
mergedItems: Array<T>;
|
752
|
+
}
|
744
753
|
export interface IAnimationGroupConsumer<T> extends IAnimationConsumer<[T]> {
|
745
754
|
getLeaveOptions?(item: T, info?: IGroupAnimationInfo): AnimationOptions;
|
746
755
|
getEnterOptions?(item: T, info?: IGroupAnimationInfo): AnimationOptions;
|
747
756
|
getReorderOptions?(item: T, movedForward: boolean, info?: IGroupAnimationInfo): AnimationOptions;
|
748
757
|
getKey?: (item: T) => any;
|
758
|
+
onCompareArrays?(options: IGroupAnimationCompareInfo<T>): void;
|
749
759
|
allowSyncRemovalAddition?: boolean;
|
750
760
|
}
|
751
761
|
export class AnimationUtils {
|
@@ -903,7 +913,11 @@ declare module "packages/survey-core/src/utils/utils" {
|
|
903
913
|
function activateLazyRenderingChecks(id: string): void;
|
904
914
|
function navigateToUrl(url: string): void;
|
905
915
|
function wrapUrlForBackgroundImage(url: string): string;
|
916
|
+
function isBase64URL(url: string): boolean;
|
917
|
+
const renamedIcons: any;
|
906
918
|
function getIconNameFromProxy(iconName: string): string;
|
919
|
+
export function getNewIconName(iconName: string): string;
|
920
|
+
export function getCustomNewIconNameIfExists(iconName: string): string;
|
907
921
|
function createSvg(size: number | string, width: number, height: number, iconName: string, svgElem: any, title: string): void;
|
908
922
|
export function getSafeUrl(url: string): string;
|
909
923
|
export function unwrap<T>(value: T | (() => T)): T;
|
@@ -959,7 +973,7 @@ declare module "packages/survey-core/src/utils/utils" {
|
|
959
973
|
export function prepareElementForVerticalAnimation(el: HTMLElement): void;
|
960
974
|
export function cleanHtmlElementAfterAnimation(el: HTMLElement): void;
|
961
975
|
export function roundTo2Decimals(number: number): number;
|
962
|
-
export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, activateLazyRenderingChecks, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, chooseFiles };
|
976
|
+
export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, activateLazyRenderingChecks, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, chooseFiles, isBase64URL, renamedIcons };
|
963
977
|
}
|
964
978
|
declare module "packages/survey-core/src/actions/container" {
|
965
979
|
import { Base } from "packages/survey-core/src/base";
|
@@ -1357,7 +1371,7 @@ declare module "packages/survey-core/src/actions/action" {
|
|
1357
1371
|
id: string;
|
1358
1372
|
removePriority: number;
|
1359
1373
|
iconName: string;
|
1360
|
-
iconSize: number;
|
1374
|
+
iconSize: number | string;
|
1361
1375
|
markerIconName: string;
|
1362
1376
|
markerIconSize: number;
|
1363
1377
|
css?: string;
|
@@ -1472,7 +1486,7 @@ declare module "packages/survey-core/src/utils/responsivity-manager" {
|
|
1472
1486
|
offset: number;
|
1473
1487
|
}
|
1474
1488
|
export class ResponsivityManager {
|
1475
|
-
|
1489
|
+
container: HTMLDivElement;
|
1476
1490
|
private model;
|
1477
1491
|
private itemsSelector;
|
1478
1492
|
private dotsItemSize;
|
@@ -1484,6 +1498,8 @@ declare module "packages/survey-core/src/utils/responsivity-manager" {
|
|
1484
1498
|
private separatorAddConst;
|
1485
1499
|
private paddingSizeConst;
|
1486
1500
|
private dotsSizeConst;
|
1501
|
+
private dotsIconClass;
|
1502
|
+
private iconClass;
|
1487
1503
|
protected recalcMinDimensionConst: boolean;
|
1488
1504
|
getComputedStyle: (elt: Element) => CSSStyleDeclaration;
|
1489
1505
|
constructor(container: HTMLDivElement, model: AdaptiveActionContainer, itemsSelector: string, dotsItemSize?: number, delayedUpdateFunction?: (callback: () => void) => void);
|
@@ -1610,6 +1626,7 @@ declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
|
|
1610
1626
|
number: string;
|
1611
1627
|
title: string;
|
1612
1628
|
titleExpandable: string;
|
1629
|
+
titleExpandableSvg: string;
|
1613
1630
|
titleNumInline: string;
|
1614
1631
|
titleExpanded: string;
|
1615
1632
|
titleCollapsed: string;
|
@@ -1755,6 +1772,7 @@ declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
|
|
1755
1772
|
titleOnError: string;
|
1756
1773
|
title: string;
|
1757
1774
|
titleExpandable: string;
|
1775
|
+
titleExpandableSvg: string;
|
1758
1776
|
titleExpanded: string;
|
1759
1777
|
titleCollapsed: string;
|
1760
1778
|
titleDisabled: string;
|
@@ -3873,6 +3891,7 @@ declare module "packages/survey-core/src/panel" {
|
|
3873
3891
|
get hasEditButton(): boolean;
|
3874
3892
|
cancelPreview(): void;
|
3875
3893
|
get cssTitle(): string;
|
3894
|
+
getCssTitleExpandableSvg(): string;
|
3876
3895
|
get showErrorsAbovePanel(): boolean;
|
3877
3896
|
protected getCssError(cssClasses: any): string;
|
3878
3897
|
protected onVisibleChanged(): void;
|
@@ -7573,6 +7592,10 @@ declare module "packages/survey-core/src/survey-events-api" {
|
|
7573
7592
|
* The `name` of the question whose value is being changed. If you use the [`valueName`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model#valueName) property, this parameter contains its value.
|
7574
7593
|
*/
|
7575
7594
|
name: string;
|
7595
|
+
/**
|
7596
|
+
* A value that indicates what caused the value change: an [expression](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions) evaluation or a run of a [trigger](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#conditional-survey-logic-triggers). If the value is changed for other reasons, this parameter is `undefined`.
|
7597
|
+
*/
|
7598
|
+
reason: "trigger" | "expression" | undefined;
|
7576
7599
|
}
|
7577
7600
|
export interface ValueChangedEvent extends ValueChangeBaseEvent {
|
7578
7601
|
/**
|
@@ -8497,6 +8520,7 @@ declare module "packages/survey-core/src/page" {
|
|
8497
8520
|
get isPage(): boolean;
|
8498
8521
|
get no(): string;
|
8499
8522
|
get cssTitleNumber(): string;
|
8523
|
+
getCssTitleExpandableSvg(): string;
|
8500
8524
|
get cssRequiredText(): string;
|
8501
8525
|
protected canShowPageNumber(): boolean;
|
8502
8526
|
protected canShowTitle(): boolean;
|
@@ -8597,6 +8621,12 @@ declare module "packages/survey-core/src/page" {
|
|
8597
8621
|
dragDropMoveTo(destination: ISurveyElement, isBottom?: boolean, isEdge?: boolean): boolean;
|
8598
8622
|
dragDropFinish(isCancel?: boolean): IElement;
|
8599
8623
|
ensureRowsVisibility(): void;
|
8624
|
+
private _isReadyForClean;
|
8625
|
+
get isReadyForClean(): boolean;
|
8626
|
+
set isReadyForClean(val: boolean);
|
8627
|
+
isReadyForCleanChangedCallback: () => void;
|
8628
|
+
enableOnElementRerenderedEvent(): void;
|
8629
|
+
disableOnElementRerenderedEvent(): void;
|
8600
8630
|
}
|
8601
8631
|
}
|
8602
8632
|
declare module "packages/survey-core/src/dxSurveyService" {
|
@@ -9652,6 +9682,27 @@ declare module "packages/survey-core/src/surveyToc" {
|
|
9652
9682
|
dispose(): void;
|
9653
9683
|
}
|
9654
9684
|
}
|
9685
|
+
declare module "packages/survey-core/src/svgbundle" {
|
9686
|
+
class SvgIconData {
|
9687
|
+
[key: string]: string;
|
9688
|
+
}
|
9689
|
+
export class SvgIconRegistry {
|
9690
|
+
icons: SvgIconData;
|
9691
|
+
private iconPrefix;
|
9692
|
+
private processId;
|
9693
|
+
registerIconFromSymbol(iconId: string, iconSymbolSvg: string): void;
|
9694
|
+
registerIconFromSvgViaElement(iconId: string, iconSvg: string, iconPrefix?: string): void;
|
9695
|
+
registerIconFromSvg(iconId: string, iconSvg: string, iconPrefix?: string): boolean;
|
9696
|
+
registerIconsFromFolder(r: any): void;
|
9697
|
+
iconsRenderedHtml(): string;
|
9698
|
+
}
|
9699
|
+
export var SvgRegistry: SvgIconRegistry;
|
9700
|
+
export var SvgBundleViewModel: any;
|
9701
|
+
export var svgBundle: {
|
9702
|
+
V1?: string;
|
9703
|
+
V2?: string;
|
9704
|
+
};
|
9705
|
+
}
|
9655
9706
|
declare module "packages/survey-core/src/survey" {
|
9656
9707
|
import { JsonError } from "packages/survey-core/src/jsonobject";
|
9657
9708
|
import { Base, EventBase } from "packages/survey-core/src/base";
|
@@ -10363,7 +10414,7 @@ declare module "packages/survey-core/src/survey" {
|
|
10363
10414
|
*/
|
10364
10415
|
onGetPageTitleActions: EventBase<SurveyModel, GetPageTitleActionsEvent>;
|
10365
10416
|
/**
|
10366
|
-
* An event that allows you to add, delete, or modify actions in the footer of a [Panel](https://surveyjs.io/form-library/documentation/panelmodel).
|
10417
|
+
* An event that allows you to add, delete, or modify actions in the footer of a [Panel](https://surveyjs.io/form-library/documentation/panelmodel). This panel may belong to a [Dynamic Panel](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model) or be a standalone survey element.
|
10367
10418
|
* @see [IAction](https://surveyjs.io/form-library/documentation/api-reference/iaction)
|
10368
10419
|
*/
|
10369
10420
|
onGetPanelFooterActions: EventBase<SurveyModel, GetPanelFooterActionsEvent>;
|
@@ -11036,6 +11087,10 @@ declare module "packages/survey-core/src/survey" {
|
|
11036
11087
|
* @param callback A callback function that you can use to access the calculation result if the expression uses asynchronous functions.
|
11037
11088
|
*/
|
11038
11089
|
runExpression(expression: string, callback?: (res: any) => void): any;
|
11090
|
+
private setValueOnExpressionCounter;
|
11091
|
+
get isSettingValueOnExpression(): boolean;
|
11092
|
+
startSetValueOnExpression(): void;
|
11093
|
+
finishSetValueOnExpression(): void;
|
11039
11094
|
/**
|
11040
11095
|
* Calculates a given [expression](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions) and returns `true` or `false`.
|
11041
11096
|
* @param expression An expression to calculate.
|
@@ -11928,6 +11983,7 @@ declare module "packages/survey-core/src/survey" {
|
|
11928
11983
|
matrixCellValidate(question: QuestionMatrixDropdownModelBase, options: MatrixCellValidateEvent): SurveyError;
|
11929
11984
|
dynamicPanelAdded(question: QuestionPanelDynamicModel, panelIndex?: number, panel?: PanelModel): void;
|
11930
11985
|
dynamicPanelRemoved(question: QuestionPanelDynamicModel, panelIndex: number, panel: PanelModel): void;
|
11986
|
+
private hasQuestionVisibleIndeces;
|
11931
11987
|
dynamicPanelRemoving(question: QuestionPanelDynamicModel, panelIndex: number, panel: PanelModel): boolean;
|
11932
11988
|
dynamicPanelItemValueChanged(question: IQuestion, options: any): void;
|
11933
11989
|
dynamicPanelGetTabTitle(question: IQuestion, options: any): void;
|
@@ -12120,11 +12176,13 @@ declare module "packages/survey-core/src/survey" {
|
|
12120
12176
|
* @see addNewPage
|
12121
12177
|
*/
|
12122
12178
|
createNewPage(name: string): PageModel;
|
12179
|
+
private getValueChangeReason;
|
12123
12180
|
protected questionOnValueChanging(valueName: string, newValue: any, questionValueName?: string): any;
|
12124
12181
|
protected updateQuestionValue(valueName: string, newValue: any): void;
|
12125
12182
|
private checkQuestionErrorOnValueChanged;
|
12126
12183
|
private checkQuestionErrorOnValueChangedCore;
|
12127
12184
|
private checkErrorsOnValueChanging;
|
12185
|
+
private fireOnValueChanged;
|
12128
12186
|
protected notifyQuestionOnValueChanged(valueName: string, newValue: any, questionName: string): void;
|
12129
12187
|
private isRunningElementsBindings;
|
12130
12188
|
private updateVisibleIndexAfterBindings;
|
@@ -12180,6 +12238,8 @@ declare module "packages/survey-core/src/survey" {
|
|
12180
12238
|
protected onLoadSurveyFromService(): void;
|
12181
12239
|
private resetVisibleIndexes;
|
12182
12240
|
private updateVisibleIndexes;
|
12241
|
+
private updatePageElementsVisibleIndexes;
|
12242
|
+
private getStartVisibleIndex;
|
12183
12243
|
private updatePageVisibleIndexes;
|
12184
12244
|
fromJSON(json: any, options?: ILoadFromJSONOptions): void;
|
12185
12245
|
startLoadingFromJson(json?: any): void;
|
@@ -12526,6 +12586,10 @@ declare module "packages/survey-core/src/survey" {
|
|
12526
12586
|
setTriggerValue(name: string, value: any, isVariable: boolean): void;
|
12527
12587
|
copyTriggerValue(name: string, fromName: string, copyDisplayValue: boolean): void;
|
12528
12588
|
triggerExecuted(trigger: Trigger): void;
|
12589
|
+
private setValueFromTriggerCounter;
|
12590
|
+
get isSettingValueFromTrigger(): boolean;
|
12591
|
+
private startSetValueFromTrigger;
|
12592
|
+
private finishSetValueFromTrigger;
|
12529
12593
|
private focusingQuestionInfo;
|
12530
12594
|
private isMovingQuestion;
|
12531
12595
|
startMovingQuestion(): void;
|
@@ -12585,6 +12649,7 @@ declare module "packages/survey-core/src/survey" {
|
|
12585
12649
|
getContainerContent(container: LayoutElementContainer): any[];
|
12586
12650
|
processPopupVisiblityChanged(question: Question, popup: PopupModel<any>, visible: boolean): void;
|
12587
12651
|
processOpenDropdownMenu(question: Question, options: IDropdownMenuOptions): void;
|
12652
|
+
getCssTitleExpandableSvg(): string;
|
12588
12653
|
/**
|
12589
12654
|
* Applies a specified theme to the survey.
|
12590
12655
|
*
|
@@ -12607,6 +12672,7 @@ declare module "packages/survey-core/src/survey" {
|
|
12607
12672
|
addScrollEventListener(): void;
|
12608
12673
|
removeScrollEventListener(): void;
|
12609
12674
|
questionErrorComponent: string;
|
12675
|
+
protected registerIcons(): void;
|
12610
12676
|
}
|
12611
12677
|
}
|
12612
12678
|
declare module "packages/survey-core/src/survey-element" {
|
@@ -12740,6 +12806,7 @@ declare module "packages/survey-core/src/survey-element" {
|
|
12740
12806
|
get parentQuestion(): E;
|
12741
12807
|
setParentQuestion(val: E): void;
|
12742
12808
|
protected onParentQuestionChanged(): void;
|
12809
|
+
updateElementVisibility(): void;
|
12743
12810
|
get skeletonComponentName(): string;
|
12744
12811
|
/**
|
12745
12812
|
* Gets and sets the survey element's expand state.
|
@@ -12876,6 +12943,7 @@ declare module "packages/survey-core/src/survey-element" {
|
|
12876
12943
|
get cssClasses(): any;
|
12877
12944
|
get cssTitleNumber(): any;
|
12878
12945
|
get cssRequiredText(): any;
|
12946
|
+
getCssTitleExpandableSvg(): string;
|
12879
12947
|
protected calcCssClasses(css: any): any;
|
12880
12948
|
protected updateElementCssCore(cssClasses: any): void;
|
12881
12949
|
get cssError(): string;
|
@@ -13265,6 +13333,7 @@ declare module "packages/survey-core/src/question" {
|
|
13265
13333
|
set visible(val: boolean);
|
13266
13334
|
protected onVisibleChanged(): void;
|
13267
13335
|
protected notifyStateChanged(prevState: string): void;
|
13336
|
+
updateElementVisibility(): void;
|
13268
13337
|
private updateIsVisibleProp;
|
13269
13338
|
/**
|
13270
13339
|
* Specifies whether to use display names for question values in placeholders.
|
@@ -13875,6 +13944,8 @@ declare module "packages/survey-core/src/question" {
|
|
13875
13944
|
protected convertFuncValuetoQuestionValue(val: any): any;
|
13876
13945
|
private runExpressionSetValueCore;
|
13877
13946
|
private runExpressionSetValue;
|
13947
|
+
protected startSetValueOnExpression(): void;
|
13948
|
+
protected finishSetValueOnExpression(): void;
|
13878
13949
|
private runDefaultValueExpression;
|
13879
13950
|
/**
|
13880
13951
|
* A comment to the selected question value. Enable the `showCommentArea` property to allow users to leave comments.
|
@@ -14399,6 +14470,7 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14399
14470
|
getFilteredProperties(): any;
|
14400
14471
|
private applyRowVariablesToValues;
|
14401
14472
|
runCondition(values: HashTable<any>, properties: HashTable<any>, rowsVisibleIf?: string): void;
|
14473
|
+
updateElementVisibility(): void;
|
14402
14474
|
protected setRowsVisibleIfValues(values: any): void;
|
14403
14475
|
getNamesWithDefaultValues(): Array<string>;
|
14404
14476
|
clearValue(keepComment?: boolean): void;
|
@@ -14667,6 +14739,7 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14667
14739
|
private runFuncForCellQuestions;
|
14668
14740
|
runCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
14669
14741
|
runTriggers(name: string, value: any): void;
|
14742
|
+
updateElementVisibility(): void;
|
14670
14743
|
protected shouldRunColumnExpression(): boolean;
|
14671
14744
|
protected runCellsCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
14672
14745
|
protected runConditionsForColumns(values: HashTable<any>, properties: HashTable<any>): boolean;
|
@@ -15027,6 +15100,8 @@ declare module "packages/survey-core/src/base-interfaces" {
|
|
15027
15100
|
dragAndDropAllow(options: DragDropAllowEvent): boolean;
|
15028
15101
|
scrollElementToTop(element: ISurveyElement, question: IQuestion, page: IPage, id: string, scrollIfVisible?: boolean, scrollIntoViewOptions?: ScrollIntoViewOptions, passedRootElement?: HTMLElement, onScolledCallback?: () => void): any;
|
15029
15102
|
runExpression(expression: string, callback?: (res: any) => void): any;
|
15103
|
+
startSetValueOnExpression(): void;
|
15104
|
+
finishSetValueOnExpression(): void;
|
15030
15105
|
elementContentVisibilityChanged(element: ISurveyElement): void;
|
15031
15106
|
onCorrectQuestionAnswer(question: IQuestion, options: any): void;
|
15032
15107
|
processPopupVisiblityChanged(question: IQuestion, popupModel: PopupModel, visible: boolean): void;
|
@@ -15098,6 +15173,7 @@ declare module "packages/survey-core/src/base-interfaces" {
|
|
15098
15173
|
dispose(): void;
|
15099
15174
|
needResponsiveWidth(): boolean;
|
15100
15175
|
updateRootStyle(): void;
|
15176
|
+
updateElementVisibility(): void;
|
15101
15177
|
}
|
15102
15178
|
export interface IQuestion extends IElement, ISurveyErrorOwner {
|
15103
15179
|
hasTitle: boolean;
|
@@ -16800,6 +16876,7 @@ declare module "packages/survey-core/src/settings" {
|
|
16800
16876
|
* @see [settings.serialization](https://surveyjs.io/form-library/documentation/api-reference/settings#serialization)
|
16801
16877
|
*/
|
16802
16878
|
parseNumber: (stringValue: any, numericValue: number) => number;
|
16879
|
+
useLegacyIcons: boolean;
|
16803
16880
|
};
|
16804
16881
|
}
|
16805
16882
|
declare module "packages/survey-core/src/question_matrixdropdown" {
|
@@ -18935,7 +19012,7 @@ declare module "packages/survey-core/src/question_buttongroup" {
|
|
18935
19012
|
constructor(question: QuestionButtonGroupModel, item: ItemValue, index: number);
|
18936
19013
|
get value(): any;
|
18937
19014
|
get iconName(): string;
|
18938
|
-
get iconSize(): number;
|
19015
|
+
get iconSize(): string | number;
|
18939
19016
|
get caption(): LocalizableString;
|
18940
19017
|
get showCaption(): any;
|
18941
19018
|
get isRequired(): boolean;
|
@@ -19352,7 +19429,7 @@ declare module "packages/survey-core/entries/chunks/model" {
|
|
19352
19429
|
export { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
|
19353
19430
|
export { QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue } from "packages/survey-core/src/question_buttongroup";
|
19354
19431
|
export { IsMobile, IsTouch, _setIsTouch } from "packages/survey-core/src/utils/devices";
|
19355
|
-
export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, prepareElementForVerticalAnimation, cleanHtmlElementAfterAnimation, classesToSelector, IAttachKey2clickOptions } from "packages/survey-core/src/utils/utils";
|
19432
|
+
export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, prepareElementForVerticalAnimation, cleanHtmlElementAfterAnimation, classesToSelector, IAttachKey2clickOptions, renamedIcons, getIconNameFromProxy } from "packages/survey-core/src/utils/utils";
|
19356
19433
|
export { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
19357
19434
|
export { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
|
19358
19435
|
export { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
|
@@ -19490,6 +19567,7 @@ declare module "src/defaultCss/cssstandard" {
|
|
19490
19567
|
requiredText: string;
|
19491
19568
|
title: string;
|
19492
19569
|
titleExpandable: string;
|
19570
|
+
titleExpandableSvg: string;
|
19493
19571
|
titleExpanded: string;
|
19494
19572
|
titleCollapsed: string;
|
19495
19573
|
number: string;
|
@@ -19509,6 +19587,7 @@ declare module "src/defaultCss/cssstandard" {
|
|
19509
19587
|
panel: {
|
19510
19588
|
title: string;
|
19511
19589
|
titleExpandable: string;
|
19590
|
+
titleExpandableSvg: string;
|
19512
19591
|
titleExpanded: string;
|
19513
19592
|
titleCollapsed: string;
|
19514
19593
|
titleOnError: string;
|
@@ -19873,6 +19952,7 @@ declare module "src/defaultCss/cssmodern" {
|
|
19873
19952
|
panel: {
|
19874
19953
|
title: string;
|
19875
19954
|
titleExpandable: string;
|
19955
|
+
titleExpandableSvg: string;
|
19876
19956
|
titleExpanded: string;
|
19877
19957
|
titleCollapsed: string;
|
19878
19958
|
titleOnError: string;
|
@@ -19950,6 +20030,7 @@ declare module "src/defaultCss/cssmodern" {
|
|
19950
20030
|
titleOnError: string;
|
19951
20031
|
title: string;
|
19952
20032
|
titleExpandable: string;
|
20033
|
+
titleExpandableSvg: string;
|
19953
20034
|
titleExpanded: string;
|
19954
20035
|
titleCollapsed: string;
|
19955
20036
|
icon: string;
|
@@ -20300,23 +20381,6 @@ declare module "src/defaultCss/cssmodern" {
|
|
20300
20381
|
};
|
20301
20382
|
};
|
20302
20383
|
}
|
20303
|
-
declare module "packages/survey-core/src/svgbundle" {
|
20304
|
-
class SvgIconData {
|
20305
|
-
[key: string]: string;
|
20306
|
-
}
|
20307
|
-
export class SvgIconRegistry {
|
20308
|
-
icons: SvgIconData;
|
20309
|
-
private iconPrefix;
|
20310
|
-
private processId;
|
20311
|
-
registerIconFromSymbol(iconId: string, iconSymbolSvg: string): void;
|
20312
|
-
registerIconFromSvgViaElement(iconId: string, iconSvg: string, iconPrefix?: string): void;
|
20313
|
-
registerIconFromSvg(iconId: string, iconSvg: string, iconPrefix?: string): boolean;
|
20314
|
-
registerIconsFromFolder(r: any): void;
|
20315
|
-
iconsRenderedHtml(): string;
|
20316
|
-
}
|
20317
|
-
export var SvgRegistry: SvgIconRegistry;
|
20318
|
-
export var SvgBundleViewModel: any;
|
20319
|
-
}
|
20320
20384
|
declare module "packages/survey-core/entries/chunks/core-wo-model" {
|
20321
20385
|
export * from "packages/survey-core/entries/chunks/model";
|
20322
20386
|
export * from "packages/survey-core/src/svgbundle";
|
@@ -20396,6 +20460,7 @@ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
|
20396
20460
|
titleLeftRoot: string;
|
20397
20461
|
title: string;
|
20398
20462
|
titleExpandable: string;
|
20463
|
+
titleExpandableSvg: string;
|
20399
20464
|
titleExpanded: string;
|
20400
20465
|
titleCollapsed: string;
|
20401
20466
|
number: string;
|
@@ -20413,6 +20478,7 @@ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
|
20413
20478
|
panel: {
|
20414
20479
|
title: string;
|
20415
20480
|
titleExpandable: string;
|
20481
|
+
titleExpandableSvg: string;
|
20416
20482
|
titleExpanded: string;
|
20417
20483
|
titleCollapsed: string;
|
20418
20484
|
titleOnError: string;
|
@@ -20757,6 +20823,7 @@ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapma
|
|
20757
20823
|
requiredText: string;
|
20758
20824
|
title: string;
|
20759
20825
|
titleExpandable: string;
|
20826
|
+
titleExpandableSvg: string;
|
20760
20827
|
titleExpanded: string;
|
20761
20828
|
titleCollapsed: string;
|
20762
20829
|
number: string;
|
@@ -20773,6 +20840,7 @@ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapma
|
|
20773
20840
|
panel: {
|
20774
20841
|
title: string;
|
20775
20842
|
titleExpandable: string;
|
20843
|
+
titleExpandableSvg: string;
|
20776
20844
|
titleExpanded: string;
|
20777
20845
|
titleCollapsed: string;
|
20778
20846
|
titleOnError: string;
|
@@ -21231,6 +21299,7 @@ declare module "src/entries/plugins" {
|
|
21231
21299
|
titleLeftRoot: string;
|
21232
21300
|
title: string;
|
21233
21301
|
titleExpandable: string;
|
21302
|
+
titleExpandableSvg: string;
|
21234
21303
|
titleExpanded: string;
|
21235
21304
|
titleCollapsed: string;
|
21236
21305
|
number: string;
|
@@ -21248,6 +21317,7 @@ declare module "src/entries/plugins" {
|
|
21248
21317
|
panel: {
|
21249
21318
|
title: string;
|
21250
21319
|
titleExpandable: string;
|
21320
|
+
titleExpandableSvg: string;
|
21251
21321
|
titleExpanded: string;
|
21252
21322
|
titleCollapsed: string;
|
21253
21323
|
titleOnError: string;
|
@@ -21590,6 +21660,7 @@ declare module "src/entries/plugins" {
|
|
21590
21660
|
requiredText: string;
|
21591
21661
|
title: string;
|
21592
21662
|
titleExpandable: string;
|
21663
|
+
titleExpandableSvg: string;
|
21593
21664
|
titleExpanded: string;
|
21594
21665
|
titleCollapsed: string;
|
21595
21666
|
number: string;
|
@@ -21606,6 +21677,7 @@ declare module "src/entries/plugins" {
|
|
21606
21677
|
panel: {
|
21607
21678
|
title: string;
|
21608
21679
|
titleExpandable: string;
|
21680
|
+
titleExpandableSvg: string;
|
21609
21681
|
titleExpanded: string;
|
21610
21682
|
titleCollapsed: string;
|
21611
21683
|
titleOnError: string;
|
@@ -27464,6 +27536,7 @@ declare module "packages/survey-react-ui/src/components/title/title-element" {
|
|
27464
27536
|
export class TitleElement extends React.Component<any, any> {
|
27465
27537
|
constructor(props: any);
|
27466
27538
|
private get element();
|
27539
|
+
renderTitleExpandableSvg(): JSX.Element;
|
27467
27540
|
render(): JSX.Element | any;
|
27468
27541
|
}
|
27469
27542
|
}
|
@@ -28082,6 +28155,7 @@ declare module "packages/survey-react-ui/src/dropdown-base" {
|
|
28082
28155
|
protected renderOther(cssClasses: any): JSX.Element;
|
28083
28156
|
componentDidUpdate(prevProps: any, prevState: any): void;
|
28084
28157
|
componentDidMount(): void;
|
28158
|
+
componentWillUnmount(): void;
|
28085
28159
|
updateInputDomElement(): void;
|
28086
28160
|
}
|
28087
28161
|
}
|