survey-react-ui 1.9.13 → 1.9.14
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 -8
- package/survey-react-ui.js +190 -101
- 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.14
|
|
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
|
*/
|
|
@@ -14,7 +14,6 @@ import { QuestionImageModel, QuestionImagePickerModel, QuestionMatrixModel, Adap
|
|
|
14
14
|
import { MultipleTextItemModel, QuestionPanelDynamicModel, QuestionRadiogroupModel, QuestionRankingModel, QuestionRatingModel } from "survey-core";
|
|
15
15
|
import { RenderedRatingItem, QuestionSignaturePadModel, SurveyWindowModel, FlowPanelModel, QuestionCommentModel } from "survey-core";
|
|
16
16
|
import { QuestionCompositeModel, QuestionCustomModel, QuestionDropdownModel, QuestionMatrixDynamicModel, QuestionTextModel } from "survey-core";
|
|
17
|
-
import { IArrayPropertyDecoratorOptions } from "survey-core";
|
|
18
17
|
import * as React from "react";
|
|
19
18
|
|
|
20
19
|
export enum DragTypeOverMeEnum {
|
|
@@ -751,6 +750,11 @@ export declare class SurveyQuestionBooleanCheckbox extends SurveyQuestionBoolean
|
|
|
751
750
|
constructor(props: any);
|
|
752
751
|
protected renderElement(): any;
|
|
753
752
|
}
|
|
753
|
+
export declare class SurveyQuestionBooleanRadio extends SurveyQuestionBoolean {
|
|
754
|
+
constructor(props: any);
|
|
755
|
+
handleOnChange: any;
|
|
756
|
+
protected renderElement(): any;
|
|
757
|
+
}
|
|
754
758
|
export declare class SurveyQuestionComment extends SurveyQuestionUncontrolledElement<QuestionCommentModel> {
|
|
755
759
|
constructor(props: any);
|
|
756
760
|
protected renderElement(): any;
|
|
@@ -809,11 +813,5 @@ export declare class SurveyQuestionMatrixDropdownCell extends SurveyQuestionAndE
|
|
|
809
813
|
protected getHeaderText(): string;
|
|
810
814
|
protected renderQuestion(): any;
|
|
811
815
|
}
|
|
812
|
-
export declare function property(options?: any): any;
|
|
813
|
-
export declare function propertyArray(options?: IArrayPropertyDecoratorOptions): any;
|
|
814
|
-
export declare function createPopupModalViewModel(componentName: string, data: any, onApply: any, onCancel?: any, onHide?: any, onShow?: any, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
|
|
815
|
-
export declare function unwrap<T>(value: any): T;
|
|
816
|
-
export declare function getSize(value: any): any;
|
|
817
|
-
export declare function getCurrecyCodes(): Array<any>;
|
|
818
816
|
export declare function showModal(componentName: string, data: any, onApply: any, onCancel?: any, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): void;
|
|
819
817
|
export declare function attachKey2click(element: any, viewModel?: any, options?: any): any;
|