New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

survey-knockout

Package Overview
Dependencies
Maintainers
1
Versions
523
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

survey-knockout - npm Package Compare versions

Comparing version

to
0.12.6

2

package.json
{
"name": "survey-knockout",
"version": "0.12.5",
"version": "0.12.6",
"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.5
/*Type definitions for Survey JavaScript library v0.12.6
Project: http://surveyjs.org/

@@ -10,2 +10,3 @@ Definitions by: Devsoft Baltic O� <https://github.com/surveyjs/>

import "../../main.scss";
export let Version: string;

@@ -201,17 +202,37 @@ export var __assign: any;

export declare class QuestionRow extends QuestionRowModel {
page: PageModel;
question: QuestionBase;
panel: PanelModelBase;
koVisible: any;
constructor(page: PageModel, question: QuestionBase);
koElements: any;
constructor(panel: PanelModelBase);
addElement(q: IElement): void;
protected onVisibleChanged(): void;
koAfterRender(el: any, con: any): void;
}
export declare class Page extends PageModel {
export declare class PanelImplementorBase {
panel: PanelModelBase;
koRows: any;
constructor(panel: PanelModelBase);
protected koQuestionAfterRender(elements: any, con: any): void;
protected koPanelAfterRender(elements: any, con: any): void;
}
export declare class PageImplementor extends PanelImplementorBase {
panel: PanelModelBase;
koNo: any;
koQuestionAfterRender: any;
constructor(panel: PanelModelBase);
}
export declare class Panel extends PanelModel {
koInnerMargin: any;
constructor(name?: string);
protected createRow(question: QuestionBase): QuestionRowModel;
protected createRow(): QuestionRowModel;
protected onCreating(): void;
protected onNumChanged(value: number): void;
protected onRenderWidthChanged(): void;
}
export declare class Page extends PageModel {
constructor(name?: string);
protected createRow(): QuestionRowModel;
protected createNewPanel(name: string): PanelModel;
protected onCreating(): void;
protected onNumChanged(value: number): void;
}

@@ -241,3 +262,2 @@ export declare class QuestionImplementorBase {

protected onCommentChanged(): void;
protected onVisibilityChanged(): void;
protected onVisibleIndexChanged(): void;

@@ -466,4 +486,6 @@ protected onErrorsChanged(): void;

questionVisibilityChanged(question: IQuestion, newValue: boolean): any;
questionAdded(question: IQuestion, index: number): any;
questionAdded(question: IQuestion, index: number, parentPanel: any, rootPanel: any): any;
panelAdded(panel: IElement, index: number, parentPanel: any, rootPanel: any): any;
questionRemoved(question: IQuestion): any;
panelRemoved(panel: IElement): any;
validateQuestion(name: string): SurveyError;

@@ -473,2 +495,3 @@ processHtml(html: string): string;

isDesignMode: boolean;
isLoadingFromJson: boolean;
requiredText: string;

@@ -480,2 +503,3 @@ questionStartIndex: string;

afterRenderQuestion(question: IQuestion, htmlElement: any): any;
afterRenderPanel(panel: IElement, htmlElement: any): any;
}

@@ -485,4 +509,16 @@ export interface IConditionRunner {

}
export interface IQuestion extends IConditionRunner {
export interface IElement extends IConditionRunner {
name: string;
isVisible: boolean;
setData(newValue: ISurveyData): any;
rowVisibilityChangedCallback: () => void;
startWithNewLineChangedCallback: () => void;
renderWidth: string;
width: string;
rightIndent: number;
startWithNewLine: boolean;
isPanel: boolean;
onSurveyLoad(): any;
}
export interface IQuestion extends IElement {
visible: boolean;

@@ -492,7 +528,10 @@ hasTitle: boolean;

onSurveyValueChanged(newValue: any): any;
onSurveyLoad(): any;
supportGoNextPageAutomatic(): boolean;
clearUnusedValues(): any;
}
export interface IPanel extends IElement {
}
export interface IPage extends IConditionRunner {
visible: boolean;
onSurveyLoad(): any;
}

@@ -604,2 +643,3 @@ export declare class ItemValue {

readOnly: boolean;
visible: boolean;
onGetValue: (obj: any) => any;

@@ -849,5 +889,7 @@ onSetValue: (obj: any, value: any, jsonConv: JsonObject) => any;

setMultipleTextValue(name: string, value: any): any;
getIsRequiredText(): string;
}
export declare class MultipleTextItemModel extends Base implements IValidatorOwner {
name: any;
isRequired: boolean;
placeHolder: string;

@@ -859,2 +901,3 @@ validators: Array<SurveyValidator>;

title: string;
readonly fullTitle: string;
value: any;

@@ -879,42 +922,78 @@ onValueChanged(newValue: any): void;

protected runValidators(): SurveyError;
hasErrors(fireCallback?: boolean): boolean;
protected hasErrorInItems(fireCallback: boolean): boolean;
getMultipleTextValue(name: string): any;
setMultipleTextValue(name: string, value: any): void;
getIsRequiredText(): string;
}
export declare class QuestionRowModel {
page: PageModel;
question: QuestionBase;
panel: PanelModelBase;
visibilityChangedCallback: () => void;
constructor(page: PageModel, question: QuestionBase);
questions: Array<QuestionBase>;
constructor(panel: PanelModelBase);
elements: Array<IElement>;
readonly questions: Array<IElement>;
visible: boolean;
updateVisible(): void;
addQuestion(q: QuestionBase): void;
addElement(q: IElement): void;
protected onVisibleChanged(): void;
setWidth(): void;
}
export declare class PageModel extends Base implements IPage, IConditionRunner {
export declare class PanelModelBase extends Base implements IConditionRunner {
name: string;
questions: Array<QuestionBase>;
data: ISurvey;
parent: PanelModelBase;
visibleIf: string;
navigationButtonsVisibility: string;
rowsChangedCallback: () => void;
title: string;
visibleIndex: number;
constructor(name?: string);
data: ISurvey;
readonly id: string;
readonly questions: Array<QuestionBase>;
readonly elements: Array<IElement>;
containsElement(element: IElement): boolean;
readonly rows: Array<QuestionRowModel>;
readonly isActive: boolean;
isQuestionVisible(question: QuestionBase): boolean;
protected createRow(question: QuestionBase): QuestionRowModel;
onRowVisibilityChanged(row: QuestionRowModel): void;
protected readonly root: PanelModelBase;
protected createRow(): QuestionRowModel;
onSurveyLoad(): void;
protected readonly isLoadingFromJson: boolean;
protected onRowsChanged(): void;
readonly processedTitle: string;
num: number;
visible: boolean;
getType(): string;
protected onVisibleChanged(): void;
readonly isVisible: boolean;
getIsPageVisible(exceptionQuestion: IQuestion): boolean;
addElement(element: IElement, index?: number): void;
addQuestion(question: QuestionBase, index?: number): void;
addPanel(panel: PanelModel, index?: number): void;
addNewQuestion(questionType: string, name: string): QuestionBase;
addNewPanel(name: string): PanelModel;
protected createNewPanel(name: string): PanelModel;
removeElement(element: IElement): void;
removeQuestion(question: QuestionBase): void;
runCondition(values: HashTable<any>): void;
}
export declare class PanelModel extends PanelModelBase implements IElement {
name: string;
width: string;
renderWidthChangedCallback: () => void;
rowVisibilityChangedCallback: () => void;
startWithNewLineChangedCallback: () => void;
constructor(name?: string);
getType(): string;
setData(newValue: ISurveyData): void;
readonly isPanel: boolean;
innerIndent: number;
renderWidth: string;
startWithNewLine: boolean;
rightIndent: number;
protected onVisibleChanged(): void;
}
export declare class PageModel extends PanelModelBase implements IPage {
name: string;
navigationButtonsVisibility: string;
constructor(name?: string);
getType(): string;
num: number;
focusFirstQuestion(): void;

@@ -925,4 +1004,4 @@ focusFirstErrorQuestion(): void;

addQuestionsToList(list: Array<IQuestion>, visibleOnly?: boolean): void;
runCondition(values: HashTable<any>): void;
protected onNumChanged(value: number): void;
protected onVisibleChanged(): void;
}

@@ -986,3 +1065,2 @@

visibleIf: string;
startWithNewLine: boolean;
width: string;

@@ -993,6 +1071,9 @@ indent: number;

rowVisibilityChangedCallback: () => void;
startWithNewLineChangedCallback: () => void;
visibilityChangedCallback: () => void;
visibleIndexChangedCallback: () => void;
constructor(name: string);
readonly isPanel: boolean;
visible: boolean;
readonly isVisible: boolean;
readonly visibleIndex: number;

@@ -1005,2 +1086,3 @@ hasErrors(fireCallback?: boolean): boolean;

readonly id: string;
startWithNewLine: boolean;
renderWidth: string;

@@ -1019,2 +1101,3 @@ rightIndent: number;

supportGoNextPageAutomatic(): boolean;
clearUnusedValues(): void;
}

@@ -1051,2 +1134,3 @@

onSurveyLoad(): void;
clearUnusedValues(): void;
}

@@ -1091,5 +1175,13 @@ export declare class QuestionCheckboxBase extends QuestionSelectBase {

registerQuestion(questionType: string, questionCreator: (name: string) => QuestionBase): void;
clear(): void;
getAllTypes(): Array<string>;
createQuestion(questionType: string, name: string): QuestionBase;
}
export declare class ElementFactory {
static Instance: ElementFactory;
registerElement(elementType: string, elementCreator: (name: string) => IElement): void;
clear(): void;
getAllTypes(): Array<string>;
createElement(elementType: string, name: string): IElement;
}

@@ -1186,2 +1278,4 @@ export declare class QuestionFileModel extends Question {

onQuestionRemoved: Event<(sender: SurveyModel, options: any) => any, any>;
onPanelAdded: Event<(sender: SurveyModel, options: any) => any, any>;
onPanelRemoved: Event<(sender: SurveyModel, options: any) => any, any>;
onValidateQuestion: Event<(sender: SurveyModel, options: any) => any, any>;

@@ -1196,2 +1290,3 @@ onServerValidateQuestions: (sender: SurveyModel, options: any) => any;

onAfterRenderQuestion: Event<(sender: SurveyModel, options: any) => any, any>;
onAfterRenderPanel: Event<(sender: SurveyModel, options: any) => any, any>;
jsonErrors: Array<JsonError>;

@@ -1253,2 +1348,3 @@ constructor(jsonObj?: any);

afterRenderQuestion(question: IQuestion, htmlElement: any): void;
afterRenderPanel(panel: IElement, htmlElement: any): void;
uploadFile(name: string, file: File, storeDataAsText: boolean, uploadingCallback: (status: string) => any): boolean;

@@ -1262,2 +1358,3 @@ protected uploadFileCore(name: string, file: File, uploadingCallback: (status: string) => any): void;

getQuestionsByNames(names: string[], caseInsensitive?: boolean): IQuestion[];
getPageByElement(element: IElement): PageModel;
getPageByQuestion(question: IQuestion): PageModel;

@@ -1274,2 +1371,3 @@ getPageByName(name: string): PageModel;

protected onLoadSurveyFromService(): void;
readonly isLoadingFromJson: boolean;
protected onBeforeCreating(): void;

@@ -1288,4 +1386,6 @@ protected onCreating(): void;

pageVisibilityChanged(page: IPage, newValue: boolean): void;
questionAdded(question: IQuestion, index: number): void;
questionAdded(question: IQuestion, index: number, parentPanel: any, rootPanel: any): void;
questionRemoved(question: IQuestion): void;
panelAdded(panel: IElement, index: number, parentPanel: any, rootPanel: any): void;
panelRemoved(panel: IElement): void;
validateQuestion(name: string): SurveyError;

@@ -1292,0 +1392,0 @@ processHtml(html: string): string;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display