survey-react-ui 1.9.8 → 1.9.9
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 -9
- package/survey-react-ui.js +41 -33
- package/survey-react-ui.min.js +2 -2
package/package.json
CHANGED
package/survey-react-ui.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
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.9
|
|
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
|
*/
|
|
6
6
|
import { Action, PopupModel, ActionContainer, Question, SurveyError } from "survey-core";
|
|
7
|
-
import { SurveyModel, QuestionMatrixDropdownRenderedRow, ListModel, HashTable
|
|
8
|
-
import { Base, SurveyElement, ITitleOwner, PopupBaseViewModel
|
|
9
|
-
import { ButtonGroupItemModel, QuestionButtonGroupModel, ButtonGroupItemValue, PanelModelBase
|
|
10
|
-
import { SurveyProgressButtonsModel, IElement, SurveyWindowModel, TooltipManager
|
|
11
|
-
import { QuestionBooleanModel, QuestionCheckboxModel, ItemValue, QuestionEmptyModel
|
|
12
|
-
import { QuestionFileModel, QuestionHtmlModel, QuestionImageModel, QuestionImagePickerModel
|
|
13
|
-
import {
|
|
7
|
+
import { SurveyModel, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase, ListModel, HashTable } from "survey-core";
|
|
8
|
+
import { LocalizableString, Base, SurveyElement, ITitleOwner, PopupBaseViewModel } from "survey-core";
|
|
9
|
+
import { PageModel, ButtonGroupItemModel, QuestionButtonGroupModel, ButtonGroupItemValue, PanelModelBase } from "survey-core";
|
|
10
|
+
import { QuestionRowModel, SurveyProgressButtonsModel, IElement, SurveyWindowModel, TooltipManager } from "survey-core";
|
|
11
|
+
import { PanelModel, QuestionBooleanModel, QuestionCheckboxModel, ItemValue, QuestionEmptyModel } from "survey-core";
|
|
12
|
+
import { QuestionExpressionModel, QuestionFileModel, QuestionHtmlModel, QuestionImageModel, QuestionImagePickerModel } from "survey-core";
|
|
13
|
+
import { QuestionMatrixModel, AdaptiveActionContainer, QuestionMatrixDropdownRenderedCell, QuestionMultipleTextModel, MultipleTextItemModel } from "survey-core";
|
|
14
14
|
import { QuestionPanelDynamicModel, QuestionRadiogroupModel, QuestionRankingModel, QuestionRatingModel, RenderedRatingItem } from "survey-core";
|
|
15
15
|
import { QuestionSignaturePadModel, QuestionSelectBase, FlowPanelModel, QuestionCommentModel, QuestionCompositeModel } from "survey-core";
|
|
16
16
|
import { QuestionCustomModel, QuestionDropdownModel, QuestionMatrixDynamicModel, QuestionTextModel, IArrayPropertyDecoratorOptions } from "survey-core";
|
|
@@ -45,6 +45,7 @@ export interface ISurveyHeaderProps {
|
|
|
45
45
|
}
|
|
46
46
|
export interface IMAtrixRowProps {
|
|
47
47
|
model: QuestionMatrixDropdownRenderedRow;
|
|
48
|
+
parentMatrix: QuestionMatrixDropdownModelBase;
|
|
48
49
|
}
|
|
49
50
|
export interface IListItemProps {
|
|
50
51
|
model: ListModel;
|
|
@@ -194,7 +195,9 @@ export declare class ListItem extends SurveyElementBase<IListItemProps, any> {
|
|
|
194
195
|
export declare class MatrixRow extends SurveyElementBase<IMAtrixRowProps, any> {
|
|
195
196
|
constructor(props: IMAtrixRowProps);
|
|
196
197
|
get model(): QuestionMatrixDropdownRenderedRow;
|
|
198
|
+
get parentMatrix(): QuestionMatrixDropdownModelBase;
|
|
197
199
|
protected getStateElement(): QuestionMatrixDropdownRenderedRow;
|
|
200
|
+
protected onPointerDownHandler: any;
|
|
198
201
|
render(): any;
|
|
199
202
|
}
|
|
200
203
|
export declare class Popup extends SurveyElementBase<IPopupProps, any> {
|
|
@@ -603,7 +606,6 @@ export declare class SurveyQuestionMatrixDropdownBase extends SurveyQuestionElem
|
|
|
603
606
|
}
|
|
604
607
|
export declare class SurveyQuestionMatrixDynamicDragDropIcon extends ReactSurveyElement {
|
|
605
608
|
constructor(props: any);
|
|
606
|
-
onPointerDownHandler(event: any): void;
|
|
607
609
|
protected renderElement(): any;
|
|
608
610
|
}
|
|
609
611
|
export declare class SurveyQuestionMatrixDynamicRemoveButton extends ReactSurveyElement {
|