survey-react-ui 1.9.54 → 1.9.56
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 +5 -2
- package/survey-react-ui.js +40 -22
- 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.56
|
|
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
|
*/
|
|
@@ -110,6 +110,7 @@ export declare class SurveyActionBarSeparator extends React.Component<any, any>
|
|
|
110
110
|
export declare class SurveyElementBase<P, S> extends React.Component<P, S> {
|
|
111
111
|
constructor(props: any);
|
|
112
112
|
static renderLocString(locStr: LocalizableString, style?: any, key?: string): JSX.Element;
|
|
113
|
+
static renderQuestionDescription(question: Question | PanelModel): JSX.Element;
|
|
113
114
|
changedStatePropNameValue: string;
|
|
114
115
|
componentDidMount(): void;
|
|
115
116
|
componentWillUnmount(): void;
|
|
@@ -135,7 +136,6 @@ export declare class SurveyElementHeader extends React.Component<any, any> {
|
|
|
135
136
|
constructor(props: any);
|
|
136
137
|
constructor(props: any, context: any);
|
|
137
138
|
render(): JSX.Element;
|
|
138
|
-
protected renderDescription(): JSX.Element;
|
|
139
139
|
}
|
|
140
140
|
export declare class SurveyHeader extends React.Component<ISurveyHeaderProps, any> {
|
|
141
141
|
constructor(props: ISurveyHeaderProps);
|
|
@@ -196,10 +196,12 @@ export declare class TitleElement extends React.Component<any, any> {
|
|
|
196
196
|
}
|
|
197
197
|
export declare class List extends SurveyElementBase<IListProps, any> {
|
|
198
198
|
constructor(props: any);
|
|
199
|
+
listContainerRef: any;
|
|
199
200
|
get model(): ListModel;
|
|
200
201
|
handleKeydown: (event: any) => void;
|
|
201
202
|
handleMouseMove: (event: any) => void;
|
|
202
203
|
getStateElement(): ListModel;
|
|
204
|
+
componentDidMount(): void;
|
|
203
205
|
renderElement(): JSX.Element;
|
|
204
206
|
renderItems(): any;
|
|
205
207
|
searchElementContent(): JSX.Element;
|
|
@@ -212,6 +214,7 @@ export declare class ListItem extends SurveyElementBase<IListItemProps, any> {
|
|
|
212
214
|
handleKeydown: (event: any) => void;
|
|
213
215
|
getStateElement(): any;
|
|
214
216
|
render(): JSX.Element;
|
|
217
|
+
componentDidMount(): void;
|
|
215
218
|
}
|
|
216
219
|
export declare class MatrixRow extends SurveyElementBase<IMatrixRowProps, any> {
|
|
217
220
|
constructor(props: IMatrixRowProps);
|