survey-react-ui 1.9.35 → 1.9.38
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 +6 -2
- package/survey-react-ui.js +134 -59
- 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.38
|
|
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
|
*/
|
|
@@ -833,7 +833,6 @@ export declare class SurveyQuestionPanelDynamicItem extends SurveyPanel {
|
|
|
833
833
|
constructor(props: any);
|
|
834
834
|
protected getSurvey(): SurveyModel;
|
|
835
835
|
protected getCss(): any;
|
|
836
|
-
handleOnPanelRemoveClick(event: any): void;
|
|
837
836
|
render(): JSX.Element;
|
|
838
837
|
protected renderButton(): JSX.Element;
|
|
839
838
|
}
|
|
@@ -851,6 +850,11 @@ export declare class SurveyQuestionPanelDynamicProgressText extends SurveyQuesti
|
|
|
851
850
|
constructor(props: any);
|
|
852
851
|
protected renderElement(): JSX.Element;
|
|
853
852
|
}
|
|
853
|
+
export declare class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
|
|
854
|
+
constructor(props: any);
|
|
855
|
+
protected handleClick: (event: any) => void;
|
|
856
|
+
protected renderElement(): JSX.Element;
|
|
857
|
+
}
|
|
854
858
|
export declare class SurveyQuestionText extends SurveyQuestionUncontrolledElement<QuestionTextModel> {
|
|
855
859
|
constructor(props: any);
|
|
856
860
|
_isWaitingForEnter: boolean;
|