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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-react-ui",
3
- "version": "1.9.13",
3
+ "version": "1.9.14",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Type definition for Survey JavaScript library for React (without core) v1.9.13
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;