survey-react 1.9.128 → 1.9.129
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 +154 -48
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +61 -14
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +61 -14
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +99 -6
- package/survey.react.js +371 -59
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -816,7 +816,7 @@ declare module "popup-view-model" {
|
|
816
816
|
declare module "utils/utils" {
|
817
817
|
function compareVersions(a: any, b: any): number;
|
818
818
|
function confirmAction(message: string): boolean;
|
819
|
-
function confirmActionAsync(message: string, funcOnYes: () => void, funcOnNo?: () => void, locale?: string): void;
|
819
|
+
function confirmActionAsync(message: string, funcOnYes: () => void, funcOnNo?: () => void, locale?: string, rootElement?: HTMLElement): void;
|
820
820
|
function detectIEBrowser(): boolean;
|
821
821
|
function detectIEOrEdge(): boolean;
|
822
822
|
function loadFileFromBase64(b64Data: string, fileName: string): void;
|
@@ -856,8 +856,9 @@ declare module "utils/utils" {
|
|
856
856
|
log(action: string): void;
|
857
857
|
get result(): string;
|
858
858
|
}
|
859
|
-
export function showConfirmDialog(message: string, callback: (res: boolean) => void, applyTitle?: string, locale?: string): boolean;
|
860
|
-
|
859
|
+
export function showConfirmDialog(message: string, callback: (res: boolean) => void, applyTitle?: string, locale?: string, rootElement?: HTMLElement): boolean;
|
860
|
+
function chooseFiles(input: HTMLInputElement, callback: (files: File[]) => void): void;
|
861
|
+
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 };
|
861
862
|
}
|
862
863
|
declare module "actions/container" {
|
863
864
|
import { Base } from "base";
|
@@ -2042,6 +2043,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
2042
2043
|
window: {
|
2043
2044
|
root: string;
|
2044
2045
|
rootCollapsedMod: string;
|
2046
|
+
rootFullScreenMode: string;
|
2045
2047
|
rootContent: string;
|
2046
2048
|
body: string;
|
2047
2049
|
header: {
|
@@ -2053,6 +2055,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
2053
2055
|
buttonCollapsed: string;
|
2054
2056
|
collapseButton: string;
|
2055
2057
|
closeButton: string;
|
2058
|
+
fullScreenButton: string;
|
2056
2059
|
};
|
2057
2060
|
};
|
2058
2061
|
ranking: {
|
@@ -2746,6 +2749,7 @@ declare module "question_custom" {
|
|
2746
2749
|
getDynamicType(): string;
|
2747
2750
|
getOriginalObj(): Base;
|
2748
2751
|
protected createWrapper(): void;
|
2752
|
+
private getDynamicProperty;
|
2749
2753
|
protected getElement(): SurveyElement;
|
2750
2754
|
onAnyValueChanged(name: string, questionName: string): void;
|
2751
2755
|
protected getQuestionByName(name: string): IQuestion;
|
@@ -2804,6 +2808,7 @@ declare module "question_custom" {
|
|
2804
2808
|
protected getQuestionByName(name: string): IQuestion;
|
2805
2809
|
private settingNewValue;
|
2806
2810
|
setValue(name: string, newValue: any, locNotification: any, allowNotifyValueChanged?: boolean): any;
|
2811
|
+
getFilteredValues(): any;
|
2807
2812
|
private updateValueCoreWithPanelValue;
|
2808
2813
|
private getContentPanelValue;
|
2809
2814
|
private getValueForContentPanel;
|
@@ -3681,6 +3686,7 @@ declare module "question_file" {
|
|
3681
3686
|
*/
|
3682
3687
|
get maxSize(): number;
|
3683
3688
|
set maxSize(val: number);
|
3689
|
+
chooseFile(): void;
|
3684
3690
|
/**
|
3685
3691
|
* Specifies whether users should confirm file deletion.
|
3686
3692
|
*
|
@@ -5072,6 +5078,24 @@ declare module "question_matrixdropdowncolumn" {
|
|
5072
5078
|
*/
|
5073
5079
|
get totalDisplayStyle(): string;
|
5074
5080
|
set totalDisplayStyle(val: string);
|
5081
|
+
/**
|
5082
|
+
* An alignment for calculated total values.
|
5083
|
+
*
|
5084
|
+
* Possible values:
|
5085
|
+
*
|
5086
|
+
* - `"left"`
|
5087
|
+
* - `"center"`
|
5088
|
+
* - `"right"`
|
5089
|
+
* - `"auto"` (default) - Applies one of the values above based on the column's [cell type](#cellType).
|
5090
|
+
*
|
5091
|
+
* [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
|
5092
|
+
* @see totalType
|
5093
|
+
* @see totalFormat
|
5094
|
+
* @see totalCurrency
|
5095
|
+
* @see totalDisplayStyle
|
5096
|
+
*/
|
5097
|
+
get totalAlignment(): string;
|
5098
|
+
set totalAlignment(val: string);
|
5075
5099
|
/**
|
5076
5100
|
* Specifies a currency used to display calculated total values. Applies only if [`totalDisplayStyle`](#totalDisplayStyle) is set to `"currency"`.
|
5077
5101
|
* @see totalType
|
@@ -5309,6 +5333,7 @@ declare module "question_matrixdropdownrendered" {
|
|
5309
5333
|
get isFirstChoice(): boolean;
|
5310
5334
|
set className(val: string);
|
5311
5335
|
get className(): string;
|
5336
|
+
get cellQuestionWrapperClassName(): string;
|
5312
5337
|
get headers(): string;
|
5313
5338
|
getTitle(): string;
|
5314
5339
|
calculateFinalClassName(matrixCssClasses: any): string;
|
@@ -7217,6 +7242,25 @@ declare module "survey-events-api" {
|
|
7217
7242
|
*/
|
7218
7243
|
files: Array<File>;
|
7219
7244
|
}
|
7245
|
+
export interface OpenFileChooserEvent {
|
7246
|
+
/**
|
7247
|
+
* A file input HTML element.
|
7248
|
+
*/
|
7249
|
+
input: HTMLInputElement;
|
7250
|
+
/**
|
7251
|
+
* A question, panel, page, or survey for which this event is raised.
|
7252
|
+
*/
|
7253
|
+
element: Base;
|
7254
|
+
/**
|
7255
|
+
* A choice item for which the event is raised. This parameter has a value only when the dialog window is opened to select images for an [Image Picker](https://surveyjs.io/form-library/documentation/api-reference/image-picker-question-model) question.
|
7256
|
+
*/
|
7257
|
+
item: ItemValue;
|
7258
|
+
/**
|
7259
|
+
* A callback function to which you should pass selected files.
|
7260
|
+
* @param files An array of selected files.
|
7261
|
+
*/
|
7262
|
+
callback: (files: Array<File>) => void;
|
7263
|
+
}
|
7220
7264
|
export interface DownloadFileEvent extends LoadFilesEvent {
|
7221
7265
|
/**
|
7222
7266
|
* A callback function that you should call when a file is downloaded successfully or when deletion fails. Pass `"success"` or `"error"` as the first argument to indicate the operation status. As the second argument, you can pass the downloaded file's data as a Base64 string if file download was successful or an error message if file download failed.
|
@@ -8586,6 +8630,7 @@ declare module "header" {
|
|
8586
8630
|
private updateContentClasses;
|
8587
8631
|
private updateBackgroundImageClasses;
|
8588
8632
|
fromTheme(theme: ITheme): void;
|
8633
|
+
private init;
|
8589
8634
|
constructor();
|
8590
8635
|
getType(): string;
|
8591
8636
|
cells: CoverCell[];
|
@@ -8596,6 +8641,8 @@ declare module "header" {
|
|
8596
8641
|
textGlowEnabled: boolean;
|
8597
8642
|
overlapEnabled: boolean;
|
8598
8643
|
backgroundColor: string;
|
8644
|
+
titleColor: string;
|
8645
|
+
descriptionColor: string;
|
8599
8646
|
backgroundImage: string;
|
8600
8647
|
renderBackgroundImage: string;
|
8601
8648
|
backgroundImageFit: "cover" | "fill" | "contain" | "tile";
|
@@ -8740,7 +8787,7 @@ declare module "survey" {
|
|
8740
8787
|
import { ActionContainer } from "actions/container";
|
8741
8788
|
import { QuestionPanelDynamicModel } from "question_paneldynamic";
|
8742
8789
|
import { Notifier } from "notifier";
|
8743
|
-
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, 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 } from "survey-events-api";
|
8790
|
+
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, 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 } from "survey-events-api";
|
8744
8791
|
import { QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
|
8745
8792
|
import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
|
8746
8793
|
import { QuestionFileModel } from "question_file";
|
@@ -9083,6 +9130,12 @@ declare module "survey" {
|
|
9083
9130
|
* @see getResult
|
9084
9131
|
*/
|
9085
9132
|
onGetResult: EventBase<SurveyModel, GetResultEvent>;
|
9133
|
+
/**
|
9134
|
+
* An event that is raised when Survey Creator opens a dialog window for users to select files.
|
9135
|
+
* @see onUploadFile
|
9136
|
+
* @see uploadFiles
|
9137
|
+
*/
|
9138
|
+
onOpenFileChooser: EventBase<SurveyModel, OpenFileChooserEvent>;
|
9086
9139
|
/**
|
9087
9140
|
* An event that is raised when a File Upload or Signature Pad question starts to upload a file. Applies only if [`storeDataAsText`](https://surveyjs.io/form-library/documentation/api-reference/file-model#storeDataAsText) is `false`. Use this event to upload files to your server.
|
9088
9141
|
*
|
@@ -10876,6 +10929,17 @@ declare module "survey" {
|
|
10876
10929
|
private getUpdatedPageTitleActions;
|
10877
10930
|
getUpdatedMatrixRowActions(question: QuestionMatrixDropdownModelBase, row: any, actions: Array<IAction>): IAction[];
|
10878
10931
|
scrollElementToTop(element: ISurveyElement, question: Question, page: PageModel, id: string, scrollIfVisible?: boolean): any;
|
10932
|
+
/**
|
10933
|
+
* Opens a dialog window for users to select files.
|
10934
|
+
* @param input A [file input HTML element](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
|
10935
|
+
* @param callback A callback function that you can use to process selected files. Accepts an array of JavaScript <a href="https://developer.mozilla.org/en-US/docs/Web/API/File" target="_blank">File</a> objects.
|
10936
|
+
* @see onOpenFileChooser
|
10937
|
+
* @see onUploadFile
|
10938
|
+
*/
|
10939
|
+
chooseFiles(input: HTMLInputElement, callback: (files: File[]) => void, context?: {
|
10940
|
+
element: ISurveyElement;
|
10941
|
+
item?: any;
|
10942
|
+
}): void;
|
10879
10943
|
/**
|
10880
10944
|
* Uploads files to a server.
|
10881
10945
|
*
|
@@ -13136,6 +13200,7 @@ declare module "question_matrixdropdownbase" {
|
|
13136
13200
|
get question(): Question;
|
13137
13201
|
get value(): any;
|
13138
13202
|
set value(value: any);
|
13203
|
+
getQuestionWrapperClassName(className: string): string;
|
13139
13204
|
runCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
13140
13205
|
}
|
13141
13206
|
export class MatrixDropdownTotalCell extends MatrixDropdownCell {
|
@@ -13146,6 +13211,7 @@ declare module "question_matrixdropdownbase" {
|
|
13146
13211
|
protected createQuestion(column: MatrixDropdownColumn, row: MatrixDropdownRowModelBase, data: IMatrixDropdownData): Question;
|
13147
13212
|
locStrsChanged(): void;
|
13148
13213
|
updateCellQuestion(): void;
|
13214
|
+
getQuestionWrapperClassName(className: string): string;
|
13149
13215
|
getTotalExpression(): string;
|
13150
13216
|
}
|
13151
13217
|
export class MatrixDropdownRowModelBase implements ISurveyData, ISurveyImpl, ILocalizableOwner {
|
@@ -13763,6 +13829,10 @@ declare module "base-interfaces" {
|
|
13763
13829
|
elementContentVisibilityChanged(element: ISurveyElement): void;
|
13764
13830
|
onCorrectQuestionAnswer(question: IQuestion, options: any): void;
|
13765
13831
|
processPopupVisiblityChanged(question: IQuestion, popupModel: PopupModel, visible: boolean): void;
|
13832
|
+
chooseFiles(input: HTMLInputElement, callback: (files: File[]) => void, context?: {
|
13833
|
+
element: ISurveyElement;
|
13834
|
+
item?: any;
|
13835
|
+
}): void;
|
13766
13836
|
}
|
13767
13837
|
export interface ISurveyImpl {
|
13768
13838
|
getSurveyData(): ISurveyData;
|
@@ -13999,6 +14069,7 @@ declare module "jsonobject" {
|
|
13999
14069
|
onSettingValue: (obj: any, value: any) => any;
|
14000
14070
|
onSetValue: (obj: any, value: any, jsonConv: JsonObject) => any;
|
14001
14071
|
visibleIf: (obj: any) => boolean;
|
14072
|
+
enableIf: (obj: any) => boolean;
|
14002
14073
|
onExecuteExpression: (obj: any, res: any) => any;
|
14003
14074
|
onPropertyEditorUpdate: (obj: any, propEditor: any) => any;
|
14004
14075
|
constructor(classInfo: JsonMetadataClass, name: string, isRequired?: boolean);
|
@@ -14038,7 +14109,9 @@ declare module "jsonobject" {
|
|
14038
14109
|
setBaseValue(val: any): void;
|
14039
14110
|
get readOnly(): boolean;
|
14040
14111
|
set readOnly(val: boolean);
|
14112
|
+
isEnable(obj: any): boolean;
|
14041
14113
|
isVisible(layout: string, obj?: any): boolean;
|
14114
|
+
private getOriginalObj;
|
14042
14115
|
get visible(): boolean;
|
14043
14116
|
set visible(val: boolean);
|
14044
14117
|
isAvailableInVersion(ver: string): boolean;
|
@@ -15013,7 +15086,7 @@ declare module "settings" {
|
|
15013
15086
|
* @param message A message to be displayed in the confirm dialog window.
|
15014
15087
|
* @param callback A callback function that should be called with `true` if a user confirms an action or `false` otherwise.
|
15015
15088
|
*/
|
15016
|
-
confirmActionAsync: (message: string, callback: (res: boolean) => void, applyTitle?: string, locale?: string) => boolean;
|
15089
|
+
confirmActionAsync: (message: string, callback: (res: boolean) => void, applyTitle?: string, locale?: string, rootElement?: HTMLElement) => boolean;
|
15017
15090
|
/**
|
15018
15091
|
* A minimum width value for all survey elements.
|
15019
15092
|
*
|
@@ -15248,6 +15321,7 @@ declare module "dropdownListModel" {
|
|
15248
15321
|
protected onSelectionChanged?: (item: IAction, ...params: any[]) => void;
|
15249
15322
|
readonly minPageSize = 25;
|
15250
15323
|
readonly loadingItemHeight = 40;
|
15324
|
+
private htmlCleanerElement;
|
15251
15325
|
private _markdownMode;
|
15252
15326
|
private _popupModel;
|
15253
15327
|
private filteredItems;
|
@@ -15284,6 +15358,7 @@ declare module "dropdownListModel" {
|
|
15284
15358
|
showInputFieldComponent: boolean;
|
15285
15359
|
ariaActivedescendant: string;
|
15286
15360
|
private applyInputString;
|
15361
|
+
private cleanHtml;
|
15287
15362
|
protected fixInputCase(): void;
|
15288
15363
|
protected applyHintString(item: ItemValue): void;
|
15289
15364
|
get inputStringRendered(): string;
|
@@ -16965,6 +17040,8 @@ declare module "popup-survey" {
|
|
16965
17040
|
*/
|
16966
17041
|
get isShowing(): boolean;
|
16967
17042
|
set isShowing(val: boolean);
|
17043
|
+
get isFullScreen(): boolean;
|
17044
|
+
set isFullScreen(val: boolean);
|
16968
17045
|
/**
|
16969
17046
|
* Shows the pop-up survey. The survey may appear [expanded or collapsed](#isExpanded).
|
16970
17047
|
*
|
@@ -16981,6 +17058,7 @@ declare module "popup-survey" {
|
|
16981
17058
|
* @see collapse
|
16982
17059
|
*/
|
16983
17060
|
hide(): void;
|
17061
|
+
toggleFullScreen(): void;
|
16984
17062
|
/**
|
16985
17063
|
* Indicates whether the pop-up window is expanded or collapsed.
|
16986
17064
|
*
|
@@ -17024,6 +17102,14 @@ declare module "popup-survey" {
|
|
17024
17102
|
*/
|
17025
17103
|
get allowClose(): boolean;
|
17026
17104
|
set allowClose(val: boolean);
|
17105
|
+
/**
|
17106
|
+
* Specifies whether to display a button that allow showing pop-up in full-screen mode.
|
17107
|
+
*
|
17108
|
+
* Default value: `false`
|
17109
|
+
*
|
17110
|
+
*/
|
17111
|
+
get allowFullScreen(): boolean;
|
17112
|
+
set allowFullScreen(val: boolean);
|
17027
17113
|
get css(): any;
|
17028
17114
|
get cssButton(): string;
|
17029
17115
|
get cssRoot(): string;
|
@@ -17035,9 +17121,11 @@ declare module "popup-survey" {
|
|
17035
17121
|
get cssHeaderButtonsContainer(): string;
|
17036
17122
|
get cssHeaderCollapseButton(): string;
|
17037
17123
|
get cssHeaderCloseButton(): string;
|
17124
|
+
get cssHeaderFullScreenButton(): string;
|
17038
17125
|
get renderedWidth(): string;
|
17039
17126
|
width: string;
|
17040
17127
|
private updateCss;
|
17128
|
+
private setCssRoot;
|
17041
17129
|
private updateCssButton;
|
17042
17130
|
private setCssButton;
|
17043
17131
|
protected createSurvey(jsonObj: any): SurveyModel;
|
@@ -17253,7 +17341,7 @@ declare module "entries/chunks/model" {
|
|
17253
17341
|
export { DropdownMultiSelectListModel } from "dropdownMultiSelectListModel";
|
17254
17342
|
export { QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue } from "question_buttongroup";
|
17255
17343
|
export { IsMobile, IsTouch, _setIsTouch } from "utils/devices";
|
17256
|
-
export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, IAttachKey2clickOptions } from "utils/utils";
|
17344
|
+
export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, IAttachKey2clickOptions } from "utils/utils";
|
17257
17345
|
export * from "utils/cssClassBuilder";
|
17258
17346
|
export { surveyCss, defaultV2Css, defaultV2ThemeName } from "defaultCss/defaultV2Css";
|
17259
17347
|
export { DragDropCore } from "dragdrop/core";
|
@@ -17623,6 +17711,7 @@ declare module "defaultCss/cssstandard" {
|
|
17623
17711
|
window: {
|
17624
17712
|
root: string;
|
17625
17713
|
rootCollapsedMod: string;
|
17714
|
+
rootFullScreenMode: string;
|
17626
17715
|
rootContent: string;
|
17627
17716
|
body: string;
|
17628
17717
|
header: {
|
@@ -17634,6 +17723,7 @@ declare module "defaultCss/cssstandard" {
|
|
17634
17723
|
buttonCollapsed: string;
|
17635
17724
|
collapseButton: string;
|
17636
17725
|
closeButton: string;
|
17726
|
+
fullScreenButton: string;
|
17637
17727
|
};
|
17638
17728
|
};
|
17639
17729
|
variables: {
|
@@ -18093,6 +18183,7 @@ declare module "defaultCss/cssmodern" {
|
|
18093
18183
|
window: {
|
18094
18184
|
root: string;
|
18095
18185
|
rootCollapsedMod: string;
|
18186
|
+
rootFullScreenMode: string;
|
18096
18187
|
rootContent: string;
|
18097
18188
|
body: string;
|
18098
18189
|
header: {
|
@@ -18104,6 +18195,7 @@ declare module "defaultCss/cssmodern" {
|
|
18104
18195
|
buttonCollapsed: string;
|
18105
18196
|
collapseButton: string;
|
18106
18197
|
closeButton: string;
|
18198
|
+
fullScreenButton: string;
|
18107
18199
|
};
|
18108
18200
|
};
|
18109
18201
|
variables: {
|
@@ -26005,6 +26097,7 @@ declare module "react/react-popup-survey" {
|
|
26005
26097
|
protected renderExpandIcon(): JSX.Element;
|
26006
26098
|
protected renderCollapseIcon(): JSX.Element;
|
26007
26099
|
protected renderCloseButton(popup: PopupSurveyModel): JSX.Element;
|
26100
|
+
protected renderAllowFullScreenButon(popup: PopupSurveyModel): JSX.Element;
|
26008
26101
|
protected renderBody(): JSX.Element;
|
26009
26102
|
protected createSurvey(newProps: any): void;
|
26010
26103
|
}
|