survey-react-ui
Advanced tools
Comparing version 1.9.4 to 1.9.5
{ | ||
"name": "survey-react-ui", | ||
"version": "1.9.4", | ||
"version": "1.9.5", | ||
"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,0 +5,0 @@ "keywords": [ |
/* | ||
* Type definition for Survey JavaScript library for React (without core) v1.9.4 | ||
* Copyright (c) 2015-2021 Devsoft Baltic OÜ - https://surveyjs.io/ | ||
* Type definition for Survey JavaScript library for React (without core) v1.9.5 | ||
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/ | ||
* License: MIT (http://www.opensource.org/licenses/mit-license.php) | ||
@@ -77,3 +77,3 @@ */ | ||
registerElement(elementType: string, elementCreator: any): void; | ||
getAllTypes(): any; | ||
getAllTypes(): Array<any>; | ||
isElementRegistered(elementType: string): boolean; | ||
@@ -87,3 +87,3 @@ createElement(elementType: string, params: any): any; | ||
registerQuestion(questionType: string, questionCreator: any): void; | ||
getAllTypes(): any; | ||
getAllTypes(): Array<any>; | ||
createQuestion(questionType: string, params: any): any; | ||
@@ -114,3 +114,3 @@ } | ||
protected get changedStatePropName(): string; | ||
protected getStateElements(): any; | ||
protected getStateElements(): Array<Base>; | ||
protected getStateElement(): Base; | ||
@@ -176,3 +176,3 @@ protected get isDisplayMode(): boolean; | ||
render(): any; | ||
protected renderTitleSpans(element: ITitleOwner, cssClasses: any): any; | ||
protected renderTitleSpans(element: ITitleOwner, cssClasses: any): Array<Element>; | ||
} | ||
@@ -340,3 +340,3 @@ export declare class TitleElement extends React.Component<any, any> { | ||
renderedRowsCache: any; | ||
protected renderRows(css: any): any; | ||
protected renderRows(css: any): Array<Element>; | ||
protected createRow(row: QuestionRowModel, css: any): any; | ||
@@ -357,3 +357,3 @@ } | ||
render(): any; | ||
protected getListElements(): any; | ||
protected getListElements(): Array<Element>; | ||
protected renderListElement(page: PageModel, index: number): any; | ||
@@ -507,3 +507,3 @@ protected isListElementClickable(index: number): boolean; | ||
protected getColumns(cssClasses: any): any; | ||
protected getItems(cssClasses: any): any; | ||
protected getItems(cssClasses: any): Array<any>; | ||
protected get textStyle(): any; | ||
@@ -575,3 +575,3 @@ protected renderItem(key: string, item: any, isFirst: boolean, cssClasses: any, index: string): any; | ||
protected renderElement(): any; | ||
protected getItems(cssClasses: any): any; | ||
protected getItems(cssClasses: any): Array<any>; | ||
protected get textStyle(): any; | ||
@@ -681,3 +681,3 @@ protected renderItem(key: string, item: ItemValue, cssClasses: any): any; | ||
protected getColumns(cssClasses: any): any; | ||
protected getItems(cssClasses: any): any; | ||
protected getItems(cssClasses: any): Array<any>; | ||
protected get textStyle(): any; | ||
@@ -689,3 +689,3 @@ } | ||
protected renderElement(): any; | ||
protected getItems(): any; | ||
protected getItems(): Array<any>; | ||
protected renderItem(item: ItemValue, i: number, handleKeydown: any, handlePointerDown: any, cssClasses: any, itemClass: string, question: QuestionRankingModel): any; | ||
@@ -729,3 +729,3 @@ } | ||
protected window: ReactWindowModel; | ||
protected getStateElements(): any; | ||
protected getStateElements(): Array<Base>; | ||
handleOnExpanded(event: any): void; | ||
@@ -760,6 +760,6 @@ protected canRender(): boolean; | ||
protected renderQuestion(question: Question): string; | ||
protected renderRows(): any; | ||
protected renderRows(): Array<Element>; | ||
renderedIndex: number; | ||
protected renderHtml(): any; | ||
protected renderNodes(domNodes: any): any; | ||
protected renderNodes(domNodes: any): Array<Element>; | ||
protected renderParentNode(node: any): any; | ||
@@ -797,3 +797,3 @@ protected renderNode(node: any): any; | ||
constructor(props: any); | ||
protected getStateElements(): any; | ||
protected getStateElements(): Array<Base>; | ||
protected renderElement(): any; | ||
@@ -850,4 +850,4 @@ } | ||
export declare function getSize(value: any): any; | ||
export declare function getCurrecyCodes(): any; | ||
export declare function getCurrecyCodes(): Array<any>; | ||
export declare function showModal(componentName: string, data: any, onApply: any, onCancel?: any, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): void; | ||
export declare function attachKey2click(element: any, viewModel?: any, options?: any): any; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1213844
8531