survey-react-ui 1.9.26 → 1.9.27
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 -1
- package/survey-react-ui.js +342 -115
- 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.27
|
|
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
|
*/
|
|
@@ -484,6 +484,7 @@ export declare class SurveyQuestionBoolean extends SurveyQuestionElementBase {
|
|
|
484
484
|
handleOnClick(event: any): void;
|
|
485
485
|
handleOnSwitchClick(event: any): void;
|
|
486
486
|
handleOnLabelClick(event: any, value: boolean): void;
|
|
487
|
+
handleOnKeyDown(event: any): void;
|
|
487
488
|
protected updateDomElement(): void;
|
|
488
489
|
protected renderElement(): any;
|
|
489
490
|
}
|
|
@@ -867,5 +868,9 @@ export declare class SurveyQuestionRatingDropdown extends SurveyQuestionDropdown
|
|
|
867
868
|
constructor(props: any);
|
|
868
869
|
protected renderElement(): any;
|
|
869
870
|
}
|
|
871
|
+
export declare class SurveyQuestionDropdownSelect extends SurveyQuestionDropdown {
|
|
872
|
+
constructor(props: any);
|
|
873
|
+
protected renderSelect(cssClasses: any): any;
|
|
874
|
+
}
|
|
870
875
|
export declare function showModal(componentName: string, data: any, onApply: any, onCancel?: any, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): void;
|
|
871
876
|
export declare function attachKey2click(element: any, viewModel?: any, options?: any): any;
|