survey-react-ui 2.1.0 → 2.1.1
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/fesm/survey-react-ui.mjs +35 -43
- package/fesm/survey-react-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/survey-react-ui.js +47 -49
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +1 -1
- package/survey-react-ui.min.js.LICENSE.txt +1 -1
- package/typings/src/dropdown-base.d.ts +4 -4
- package/typings/src/dropdown-select.d.ts +1 -0
- package/typings/src/reactquestion_tagbox.d.ts +2 -3
|
@@ -9,16 +9,16 @@ export declare class SurveyQuestionDropdownBase<T extends Question> extends Surv
|
|
|
9
9
|
keyhandler: (event: any) => void;
|
|
10
10
|
blur: (event: any) => void;
|
|
11
11
|
focus: (event: any) => void;
|
|
12
|
+
protected get dropdownListModel(): DropdownListModel;
|
|
12
13
|
protected getStateElement(): any;
|
|
13
14
|
protected setValueCore(newValue: any): void;
|
|
14
15
|
protected getValueCore(): any;
|
|
15
16
|
protected renderReadOnlyElement(): React.JSX.Element | null;
|
|
16
17
|
protected renderSelect(cssClasses: any): React.JSX.Element;
|
|
17
|
-
renderValueElement(
|
|
18
|
-
protected renderInput(
|
|
19
|
-
createClearButton(): React.JSX.Element | null;
|
|
20
|
-
createChevronButton(): React.JSX.Element | null;
|
|
18
|
+
renderValueElement(): React.JSX.Element | null;
|
|
19
|
+
protected renderInput(): React.JSX.Element;
|
|
21
20
|
protected renderOther(cssClasses: any): React.JSX.Element;
|
|
21
|
+
protected renderEditorButtons(): React.JSX.Element | null;
|
|
22
22
|
componentDidUpdate(prevProps: any, prevState: any): void;
|
|
23
23
|
componentDidMount(): void;
|
|
24
24
|
componentWillUnmount(): void;
|
|
@@ -3,4 +3,5 @@ import { SurveyQuestionDropdown } from "./reactquestion_dropdown";
|
|
|
3
3
|
export declare class SurveyQuestionDropdownSelect extends SurveyQuestionDropdown {
|
|
4
4
|
constructor(props: any);
|
|
5
5
|
protected renderSelect(cssClasses: any): React.JSX.Element;
|
|
6
|
+
createChevronButton(): React.JSX.Element | null;
|
|
6
7
|
}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { QuestionTagboxModel
|
|
2
|
+
import { QuestionTagboxModel } from "survey-core";
|
|
3
3
|
import { SurveyQuestionDropdownBase } from "./dropdown-base";
|
|
4
4
|
export declare class SurveyQuestionTagbox extends SurveyQuestionDropdownBase<QuestionTagboxModel> {
|
|
5
5
|
constructor(props: any);
|
|
6
6
|
protected renderItem(key: string, item: any): React.JSX.Element;
|
|
7
|
-
protected renderInput(
|
|
7
|
+
protected renderInput(): React.JSX.Element;
|
|
8
8
|
protected renderElement(): React.JSX.Element;
|
|
9
|
-
protected renderReadOnlyElement(): React.JSX.Element | null;
|
|
10
9
|
}
|