survey-react-ui 1.9.28 → 1.9.29
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/package.json +1 -1
- package/survey-react-ui.d.ts +11 -6
- package/survey-react-ui.js +91 -43
- package/survey-react-ui.min.js +2 -2
package/package.json
CHANGED
package/survey-react-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Type definition for Survey JavaScript library for React (without core) v1.9.
|
|
2
|
+
* Type definition for Survey JavaScript library for React (without core) v1.9.29
|
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
@@ -8,10 +8,10 @@ import { SurveyModel, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownM
|
|
|
8
8
|
import { QuestionRowModel, SurveyElement, QuestionSelectBase, ItemValue, QuestionMatrixDropdownRenderedCell } from "survey-core";
|
|
9
9
|
import { LocalizableString, Base, ITitleOwner, PopupBaseViewModel, PageModel } from "survey-core";
|
|
10
10
|
import { ButtonGroupItemModel, QuestionButtonGroupModel, ButtonGroupItemValue, PanelModelBase, SurveyProgressButtonsModel } from "survey-core";
|
|
11
|
-
import { IElement, ActionDropdownViewModel, TooltipManager,
|
|
12
|
-
import { QuestionCheckboxModel, QuestionEmptyModel, QuestionExpressionModel, QuestionFileModel
|
|
13
|
-
import { QuestionImageModel, QuestionImagePickerModel, ImageItemValue, QuestionMatrixModel
|
|
14
|
-
import {
|
|
11
|
+
import { IElement, ActionDropdownViewModel, TooltipManager, MultipleTextItemModel, PanelModel } from "survey-core";
|
|
12
|
+
import { QuestionBooleanModel, QuestionCheckboxModel, QuestionEmptyModel, QuestionExpressionModel, QuestionFileModel } from "survey-core";
|
|
13
|
+
import { QuestionHtmlModel, QuestionImageModel, QuestionImagePickerModel, ImageItemValue, QuestionMatrixModel } from "survey-core";
|
|
14
|
+
import { AdaptiveActionContainer, QuestionMultipleTextModel, QuestionPanelDynamicModel, QuestionRadiogroupModel, QuestionRankingModel } from "survey-core";
|
|
15
15
|
import { QuestionRatingModel, RenderedRatingItem, QuestionSignaturePadModel, SurveyTimerModel, SurveyWindowModel } from "survey-core";
|
|
16
16
|
import { FlowPanelModel, QuestionCommentModel, QuestionCompositeModel, QuestionCustomModel, QuestionMatrixDynamicModel } from "survey-core";
|
|
17
17
|
import { QuestionTextModel } from "survey-core";
|
|
@@ -429,6 +429,12 @@ export declare class SurveyElementErrors extends ReactSurveyElement {
|
|
|
429
429
|
componentWillUnmount(): void;
|
|
430
430
|
protected renderElement(): any;
|
|
431
431
|
}
|
|
432
|
+
export declare class SurveyMultipleTextItem extends ReactSurveyElement {
|
|
433
|
+
constructor(props: any);
|
|
434
|
+
protected getStateElements(): any;
|
|
435
|
+
protected renderElement(): any;
|
|
436
|
+
protected renderItemTooltipError(item: MultipleTextItemModel, cssClasses: any): any;
|
|
437
|
+
}
|
|
432
438
|
export declare class SurveyNavigationButton extends ReactSurveyElement {
|
|
433
439
|
constructor(props: any);
|
|
434
440
|
protected get item(): Action;
|
|
@@ -637,7 +643,6 @@ export declare class SurveyQuestionMultipleText extends SurveyQuestionElementBas
|
|
|
637
643
|
constructor(props: any);
|
|
638
644
|
protected get question(): QuestionMultipleTextModel;
|
|
639
645
|
protected renderElement(): any;
|
|
640
|
-
protected renderItemTooltipError(item: MultipleTextItemModel, cssClasses: any): any;
|
|
641
646
|
protected renderRow(rowIndex: number, items: any, cssClasses: any): any;
|
|
642
647
|
}
|
|
643
648
|
export declare class SurveyQuestionOptionItem extends ReactSurveyElement {
|