survey-angular
Advanced tools
Comparing version 0.12.7 to 0.12.8
{ | ||
"name": "survey-angular", | ||
"version": "0.12.7", | ||
"version": "0.12.8", | ||
"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": [ |
@@ -1,2 +0,2 @@ | ||
/*Type definitions for Survey JavaScript library v0.12.7 | ||
/*Type definitions for Survey JavaScript library v0.12.8 | ||
Project: http://surveyjs.org/ | ||
@@ -272,3 +272,2 @@ Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/> | ||
protected renderQuestion(): JSX.Element; | ||
protected shouldComponentUpdate(): boolean; | ||
protected renderTitle(): JSX.Element; | ||
@@ -298,2 +297,3 @@ protected renderComment(): JSX.Element; | ||
componentWillReceiveProps(nextProps: any): void; | ||
protected shouldComponentUpdate(): boolean; | ||
} | ||
@@ -472,3 +472,2 @@ | ||
static Instance: ReactQuestionFactory; | ||
static DefaultChoices: string[]; | ||
registerQuestion(questionType: string, questionCreator: (name: string) => JSX.Element): void; | ||
@@ -556,2 +555,3 @@ getAllTypes(): Array<string>; | ||
processText(text: string): string; | ||
isDisplayMode: boolean; | ||
isDesignMode: boolean; | ||
@@ -572,2 +572,3 @@ isLoadingFromJson: boolean; | ||
name: string; | ||
visible: boolean; | ||
isVisible: boolean; | ||
@@ -586,3 +587,2 @@ setData(newValue: ISurveyData): any; | ||
export interface IQuestion extends IElement { | ||
visible: boolean; | ||
hasTitle: boolean; | ||
@@ -1054,2 +1054,4 @@ setVisibleIndex(value: number): any; | ||
containsElement(element: IElement): boolean; | ||
hasErrors(fireCallback?: boolean, focuseOnFirstError?: boolean): boolean; | ||
addQuestionsToList(list: Array<IQuestion>, visibleOnly?: boolean): void; | ||
readonly rows: Array<QuestionRowModel>; | ||
@@ -1104,4 +1106,2 @@ readonly isActive: boolean; | ||
scrollToTop(): void; | ||
hasErrors(fireCallback?: boolean, focuseOnFirstError?: boolean): boolean; | ||
addQuestionsToList(list: Array<IQuestion>, visibleOnly?: boolean): void; | ||
protected onNumChanged(value: number): void; | ||
@@ -1140,2 +1140,5 @@ protected onVisibleChanged(): void; | ||
protected hasOtherChanged(): void; | ||
readonly isReadOnly: boolean; | ||
readOnly: boolean; | ||
protected readOnlyChanged(): void; | ||
protected readonly no: string; | ||
@@ -1178,2 +1181,3 @@ protected onSetData(): void; | ||
visibleIndexChangedCallback: () => void; | ||
readOnlyChangedCallback: () => void; | ||
constructor(name: string); | ||
@@ -1183,2 +1187,3 @@ readonly isPanel: boolean; | ||
readonly isVisible: boolean; | ||
readonly isReadOnly: boolean; | ||
readonly visibleIndex: number; | ||
@@ -1650,2 +1655,3 @@ hasErrors(fireCallback?: boolean): boolean; | ||
afterRender(question: IQuestion, el: any): void; | ||
willUnmount(question: IQuestion, el: any): void; | ||
isFit(question: IQuestion): boolean; | ||
@@ -1652,0 +1658,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1814175
12754