survey-react-ui 1.9.49 → 1.9.51
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 +3 -3
- package/survey-react-ui.js +80 -46
- 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.51
|
|
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
|
*/
|
|
@@ -428,7 +428,7 @@ export declare class TagboxFilterString extends SurveyElementBase<ITagboxFilterP
|
|
|
428
428
|
componentDidMount(): void;
|
|
429
429
|
updateDomElement(): void;
|
|
430
430
|
onChange(e: any): void;
|
|
431
|
-
|
|
431
|
+
keyhandler(e: any): void;
|
|
432
432
|
onBlur(e: any): void;
|
|
433
433
|
getStateElement(): DropdownMultiSelectListModel;
|
|
434
434
|
render(): JSX.Element;
|
|
@@ -862,7 +862,7 @@ export declare class SurveyQuestionDropdownBase<T> extends SurveyQuestionUncontr
|
|
|
862
862
|
inputElement: any;
|
|
863
863
|
click: (event: any) => void;
|
|
864
864
|
clear: (event: any) => void;
|
|
865
|
-
|
|
865
|
+
keyhandler: (event: any) => void;
|
|
866
866
|
blur: (event: any) => void;
|
|
867
867
|
protected setValueCore(newValue: any): void;
|
|
868
868
|
protected getValueCore(): any;
|