Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

survey-knockout-ui

Package Overview
Dependencies
Maintainers
1
Versions
209
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

survey-knockout-ui - npm Package Compare versions

Comparing version 1.9.83 to 1.9.84

ts3.4/typings/entries/knockout-ui-model.d.ts

4

package.json
{
"name": "survey-knockout-ui",
"version": "1.9.83",
"version": "1.9.84",
"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.",

@@ -31,5 +31,5 @@ "keywords": [

"dependencies": {
"survey-core": "1.9.83",
"survey-core": "1.9.84",
"knockout": "^3.5.0"
}
}

@@ -1,734 +0,2 @@

declare module "knockout/templateText" {
export var koTemplate: any;
export class SurveyTemplateText {
constructor();
addText(newText: string, id: string, name: string): void;
replaceText(replaceText: string, id: string, questionType?: string): void;
protected getId(id: string, questionType: string): string;
protected get text(): string;
protected set text(value: string);
}
}
declare module "knockout/kobase" {
import { Base } from "survey-core";
export class ImplementorBase {
element: Base;
private static doIterateProperties;
readonly implementedMark = "__surveyImplementedKo";
constructor(element: Base);
dispose(): void;
}
}
declare module "knockout/kosurvey" {
import { Base, SurveyModel } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class SurveyImplementor extends ImplementorBase {
survey: SurveyModel;
private renderedElement;
constructor(survey: SurveyModel);
render(element?: any): void;
private applyBinding;
koEventAfterRender(element: any, survey: any): void;
dispose(): void;
}
export class Survey extends SurveyModel {
implementor: SurveyImplementor;
constructor(jsonObj?: any, renderedElement?: any);
render(element?: any): void;
getHtmlTemplate(): string;
makeReactive(obj: Base): void;
}
export var registerTemplateEngine: (ko: any, platform: string) => void;
}
declare module "knockout/koPopupSurvey" {
import { SurveyModel, PopupSurveyModel } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class PopupSurveyImplementor extends ImplementorBase {
window: PopupSurveyModel;
constructor(window: PopupSurveyModel);
private doShowingChanged;
private get template();
}
export class PopupSurvey extends PopupSurveyModel {
constructor(jsonObj: any, initialModel?: SurveyModel);
}
export class SurveyWindow extends PopupSurvey {
}
}
declare module "knockout/kopage" {
import { PageModel } from "survey-core";
import { PanelModelBase, PanelModel, QuestionRowModel } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class QuestionRow extends QuestionRowModel {
panel: PanelModelBase;
koElementAfterRender: any;
constructor(panel: PanelModelBase);
getElementType(el: any): "survey-panel" | "survey-question";
koAfterRender(el: any, con: any): void;
private elementAfterRender;
rowAfterRender(elements: HTMLElement[], model: QuestionRow): void;
dispose(): void;
}
export class PanelImplementorBase extends ImplementorBase {
panel: PanelModelBase;
constructor(panel: PanelModelBase);
}
export class Panel extends PanelModel {
private _implementor;
koElementType: any;
koCss: any;
koErrorClass: any;
constructor(name?: string);
protected onBaseCreating(): void;
createRow(): QuestionRowModel;
protected onCreating(): void;
protected onNumChanged(value: number): void;
dispose(): void;
}
export class Page extends PageModel {
private _implementor;
constructor(name?: string);
protected onBaseCreating(): void;
createRow(): QuestionRowModel;
protected onCreating(): void;
protected onNumChanged(value: number): void;
dispose(): void;
}
}
declare module "knockout/koflowpanel" {
import { FlowPanelModel } from "survey-core";
import { Question } from "survey-core";
export class FlowPanel extends FlowPanelModel {
koElementType: any;
koElementAfterRender: any;
placeHolder: string;
constructor(name?: string);
protected onCreating(): void;
protected getHtmlForQuestion(question: Question): string;
private elementAfterRender;
}
}
declare module "knockout/koquestion" {
import { Question } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class QuestionImplementor extends ImplementorBase {
question: Question;
private disposedObjects;
private callBackFunctions;
private koDummy;
koElementType: any;
private _koValue;
constructor(question: Question);
protected setObservaleObj(name: string, obj: any, addToQuestion?: boolean): any;
protected setCallbackFunc(name: string, func: any): void;
protected getKoValue(): any;
protected setKoValue(val: any): void;
protected onSurveyLoad(): void;
protected getQuestionTemplate(): string;
private getTemplateName;
protected getNo(): string;
protected updateKoDummy(): void;
protected koQuestionAfterRender(elements: any, con: any): void;
dispose(): void;
}
}
declare module "knockout/koquestion_baseselect" {
import { QuestionImplementor } from "knockout/koquestion";
import { Question } from "survey-core";
export class QuestionSelectBaseImplementor extends QuestionImplementor {
protected onCreated(): void;
constructor(question: Question);
protected get isOtherSelected(): boolean;
}
export class QuestionCheckboxBaseImplementor extends QuestionSelectBaseImplementor {
constructor(question: Question);
private koAfterRender;
}
}
declare module "knockout/koquestion_checkbox" {
import { QuestionCheckboxBaseImplementor } from "knockout/koquestion_baseselect";
import { QuestionCheckboxModel } from "survey-core";
import { Question } from "survey-core";
export class QuestionCheckboxImplementor extends QuestionCheckboxBaseImplementor {
constructor(question: Question);
protected getKoValue(): any;
protected setKoValue(val: any): void;
}
export class QuestionCheckbox extends QuestionCheckboxModel {
koAllSelected: any;
private isAllSelectedUpdating;
private _implementor;
private _selectAllItemImpl;
private _otherItemImpl;
constructor(name: string);
protected onBaseCreating(): void;
onSurveyValueChanged(newValue: any): void;
protected onVisibleChoicesChanged(): void;
protected updateAllSelected(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_tagbox" {
import { QuestionTagboxModel } from "survey-core";
export class QuestionTagbox extends QuestionTagboxModel {
koAllSelected: any;
private isAllSelectedUpdating;
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
onSurveyValueChanged(newValue: any): void;
protected onVisibleChoicesChanged(): void;
protected updateAllSelected(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_ranking" {
import { QuestionRankingModel, ItemValue } from "survey-core";
export class QuestionRanking extends QuestionRankingModel {
private _implementor;
protected onBaseCreating(): void;
dispose(): void;
koHandleKeydown: (data: ItemValue, event: KeyboardEvent) => boolean;
koHandlePointerDown: (data: ItemValue, event: PointerEvent) => boolean;
}
}
declare module "knockout/koquestion_comment" {
import { QuestionCommentModel } from "survey-core";
export class QuestionComment extends QuestionCommentModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_dropdown" {
import { QuestionDropdownModel } from "survey-core";
export class QuestionDropdown extends QuestionDropdownModel {
private _implementor;
koDisableOption: any;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_file" {
import { QuestionFileModel } from "survey-core";
export class QuestionFile extends QuestionFileModel {
private _implementor;
private updateState;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_html" {
import { QuestionHtmlModel } from "survey-core";
export class QuestionHtml extends QuestionHtmlModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_matrix" {
import { QuestionMatrixModel, MatrixRowModel } from "survey-core";
export class QuestionMatrix extends QuestionMatrixModel {
private _implementor;
koVisibleRows: any;
koVisibleColumns: any;
constructor(name: string);
protected onBaseCreating(): void;
protected onColumnsChanged(): void;
protected onRowsChanged(): void;
onSurveyLoad(): void;
protected onMatrixRowCreated(row: MatrixRowModel): void;
protected getVisibleRows(): Array<MatrixRowModel>;
dispose(): void;
}
}
declare module "knockout/koquestion_matrixdropdown" {
import { QuestionMatrixDropdownRenderedRow } from "survey-core";
import { QuestionMatrixDropdownModel } from "survey-core";
import { MatrixDropdownRowModelBase, QuestionMatrixDropdownRenderedTable } from "survey-core";
import { Question } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class QuestionMatrixBaseImplementor extends QuestionImplementor {
private _tableImplementor;
koRecalc: any;
constructor(question: Question);
get matrix(): QuestionMatrixDropdownModel;
private cellAfterRender;
private cellQuestionAfterRender;
protected isAddRowTop(): boolean;
protected isAddRowBottom(): boolean;
protected addRow(): void;
protected removeRow(row: MatrixDropdownRowModelBase): void;
private panelAfterRender;
dispose(): void;
}
export class QuestionMatrixDropdown extends QuestionMatrixDropdownModel {
private _implementor;
constructor(name: string);
protected createRenderedTable(): QuestionMatrixDropdownRenderedTable;
protected onBaseCreating(): void;
dispose(): void;
}
export class KoQuestionMatrixDropdownRenderedTable extends QuestionMatrixDropdownRenderedTable {
protected createRenderedRow(cssClasses: any, isDetailRow?: boolean): QuestionMatrixDropdownRenderedRow;
}
}
declare module "knockout/koquestion_matrixdynamic" {
import { QuestionMatrixDropdownRenderedTable } from "survey-core";
import { QuestionMatrixBaseImplementor } from "knockout/koquestion_matrixdropdown";
import { QuestionMatrixDynamicModel } from "survey-core";
import { Question } from "survey-core";
import { MatrixDropdownRowModelBase } from "survey-core";
import { MatrixDynamicRowModel } from "survey-core";
export class QuestionMatrixDynamicImplementor extends QuestionMatrixBaseImplementor {
constructor(question: Question);
protected addRow(): void;
protected removeRow(row: MatrixDynamicRowModel): void;
getKoPopupIsVisible(row: MatrixDropdownRowModelBase): any;
dispose(): void;
}
export class QuestionMatrixDynamic extends QuestionMatrixDynamicModel {
private _implementor;
constructor(name: string);
protected createRenderedTable(): QuestionMatrixDropdownRenderedTable;
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_paneldynamic" {
import { QuestionPanelDynamicModel } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class QuestionPanelDynamicImplementor extends QuestionImplementor {
koRecalc: any;
constructor(question: QuestionPanelDynamic);
protected onPanelCountChanged(): void;
protected onRenderModeChanged(): void;
protected onCurrentIndexChanged(): void;
protected addPanel(): void;
protected removePanel(val: any): void;
private panelAfterRender;
dispose(): void;
}
export class QuestionPanelDynamic extends QuestionPanelDynamicModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_text" {
import { QuestionTextModel } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class QuestionTextImplementor extends QuestionImplementor {
constructor(question: QuestionTextModel);
}
export class QuestionText extends QuestionTextModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_multipletext" {
import { QuestionMultipleTextModel, MultipleTextItemModel } from "survey-core";
import { QuestionTextModel } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class MultipleTextItem extends MultipleTextItemModel {
constructor(name?: any, title?: string);
protected createEditor(name: string): QuestionTextModel;
}
export class QuestionMultipleTextImplementor extends QuestionImplementor {
koRecalc: any;
constructor(question: QuestionMultipleText);
}
export class QuestionMultipleText extends QuestionMultipleTextModel {
private _implementor;
koRows: any;
constructor(name: string);
protected onBaseCreating(): void;
protected onColCountChanged(): void;
protected createTextItem(name: string, title: string): MultipleTextItemModel;
dispose(): void;
}
}
declare module "knockout/koquestion_radiogroup" {
import { QuestionRadiogroupModel } from "survey-core";
export class QuestionRadiogroup extends QuestionRadiogroupModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_rating" {
import { QuestionImplementor } from "knockout/koquestion";
import { QuestionRatingModel, Question } from "survey-core";
export class QuestionRatingImplementor extends QuestionImplementor {
protected onCreated(): void;
constructor(question: Question);
}
export class QuestionRating extends QuestionRatingModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_boolean" {
import { QuestionBooleanModel } from "survey-core";
export class QuestionBoolean extends QuestionBooleanModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
onSwitchClick(data: any, event: any): boolean;
onTrueLabelClick(data: any, event: any): boolean;
onFalseLabelClick(data: any, event: any): boolean;
onKeyDown(data: any, event: any): boolean;
dispose(): void;
}
}
declare module "knockout/koquestion_empty" {
import { QuestionEmptyModel } from "survey-core";
export class QuestionEmpty extends QuestionEmptyModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_expression" {
import { QuestionExpressionModel } from "survey-core";
export class QuestionExpression extends QuestionExpressionModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_imagepicker" {
import { QuestionImagePickerModel } from "survey-core";
export class QuestionImagePicker extends QuestionImagePickerModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_image" {
import { QuestionImageModel } from "survey-core";
export class QuestionImage extends QuestionImageModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_signaturepad" {
import { QuestionSignaturePadModel } from "survey-core";
export class QuestionSignaturePad extends QuestionSignaturePadModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_custom" {
import { QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON } from "survey-core";
export class QuestionCustom extends QuestionCustomModel {
private _implementor;
constructor(name: string, questionJSON: ComponentQuestionJSON);
protected onBaseCreating(): void;
dispose(): void;
}
export class QuestionComposite extends QuestionCompositeModel {
private _implementor;
constructor(name: string, questionJSON: ComponentQuestionJSON);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_buttongroup" {
import { QuestionButtonGroupModel } from "survey-core";
export class QuestionButtonGroup extends QuestionButtonGroupModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/components/action-bar/action" { }
declare module "knockout/components/action-bar/action-bar-item" {
export let ActionBarItemViewModel: any;
}
declare module "knockout/components/action-bar/action-bar-item-dropdown" {
export let ActionBarItemDropdownViewModel: any;
}
declare module "knockout/components/action-bar/action-bar-separator" {
export var ActionBarSeparatorViewModel: any;
}
declare module "knockout/components/action-bar/action-bar" {
import { ActionContainer } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export * from "knockout/components/action-bar/action";
export * from "knockout/components/action-bar/action-bar-item";
export * from "knockout/components/action-bar/action-bar-item-dropdown";
export * from "knockout/components/action-bar/action-bar-separator";
export class ActionContainerImplementor extends ImplementorBase {
private model;
handleClick: boolean;
private itemsSubscription;
constructor(model: ActionContainer, handleClick?: boolean);
dispose(): void;
}
}
declare module "knockout/components/boolean-checkbox/boolean-checkbox" {
export var CheckboxViewModel: any;
}
declare module "knockout/components/boolean-radio/boolean-radio-item" {
export var BooleanRadioItemViewModel: any;
}
declare module "knockout/components/boolean-radio/boolean-radio" {
export * from "knockout/components/boolean-radio/boolean-radio-item";
export var BooleanRadioViewModel: any;
}
declare module "knockout/components/panel/panel" {
import { PanelModel } from "survey-core";
export class PanelViewModel {
question: PanelModel;
targetElement: HTMLElement;
constructor(question: PanelModel, targetElement: HTMLElement);
}
}
declare module "knockout/components/popup/popup" {
import { PopupBaseViewModel, IDialogOptions } from "survey-core";
export class PopupViewModel {
popupViewModel: PopupBaseViewModel;
constructor(popupViewModel: PopupBaseViewModel);
dispose(): void;
visibilityChangedHandler: (s: any, option: {
isVisible: boolean;
}) => void;
}
export function showModal(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
export function showDialog(dialogOptions: IDialogOptions): PopupBaseViewModel;
}
declare module "knockout/components/progress/buttons" {
import { SurveyModel } from "survey-core";
export class ProgressButtonsViewModel {
private survey;
private progressButtonsModel;
private scrollButtonCssKo;
private hasScroller;
private updateScroller;
constructor(survey: SurveyModel, element: any);
isListElementClickable(index: any): boolean;
getListElementCss(index: any): string;
clickListElement(index: any): void;
getScrollButtonCss(isLeftScroll: boolean): any;
clickScrollButton(listContainerElement: Element, isLeftScroll: boolean): void;
dispose(): void;
}
}
declare module "knockout/components/progress/progress" {
export class ProgressViewModel {
model: any;
constructor(model: any);
getProgressTextInBarCss(css: any): string;
getProgressTextUnderBarCss(css: any): string;
}
}
declare module "knockout/components/progress/toc" { }
declare module "knockout/components/components-container/components-container" {
import { SurveyModel } from "survey-core";
export class ComponentsContainer {
survey: SurveyModel;
private container;
needRenderWrapper: boolean;
constructor(survey: SurveyModel, container: any, needRenderWrapper?: boolean);
css: string;
get components(): Array<any>;
}
}
declare module "knockout/components/template-renderer/template-renderer" { }
declare module "knockout/components/title/title-element" {
export var TitleElementViewModel: any;
}
declare module "knockout/components/title/title-content" {
export var TitleContentViewModel: any;
}
declare module "knockout/components/title/title-actions" {
export var TitleActionViewModel: any;
}
declare module "knockout/components/string-editor/string-editor" {
export class StringEditorViewModel {
locString: any;
constructor(locString: any);
get koHasHtml(): any;
get editValue(): any;
set editValue(value: any);
onInput(sender: StringEditorViewModel, event: any): void;
onClick(sender: StringEditorViewModel, event: any): void;
dispose(): void;
}
}
declare module "knockout/components/string-viewer/string-viewer" {
export var StringViewerViewModel: any;
}
declare module "knockout/components/logo-image/logo-image" {
export let LogoImageViewModel: any;
}
declare module "knockout/components/skeleton/skeleton" {
export var Skeleton: any;
}
declare module "knockout/components/character-counter/character-counter" {
export var CharacterCounterComponent: any;
}
declare module "knockout/components/rating-dropdown/rating-dropdown" {
export var RatingDropdownViewModel: any;
}
declare module "knockout/components/rating/rating-item" {
export var RatingItemViewModel: any;
}
declare module "knockout/components/rating/rating-item-star" {
export var RatingItemStarViewModel: any;
}
declare module "knockout/components/rating/rating-item-smiley" {
export var RatingItemSmileyViewModel: any;
}
declare module "knockout/components/dropdown/dropdown" {
export var DropdownViewModel: any;
}
declare module "knockout/components/dropdown-select/dropdown-select" {
export var DropdownSelectViewModel: any;
}
declare module "knockout/components/tagbox/tagbox-item" {
export var TagboxViewComponent: any;
}
declare module "knockout/components/tagbox/tagbox" {
export var TagboxViewModel: any;
}
declare module "knockout/components/list/list-item" {
export var ListItemViewComponent: any;
}
declare module "knockout/components/list/list" {
export * from "knockout/components/list/list-item";
export var ListViewComponent: any;
}
declare module "knockout/components/svg-icon/svg-icon" {
export var SvgIconViewModel: any;
}
declare module "knockout/components/matrix-actions/remove-button/remove-button" {
export let SurveyQuestionMatrixDynamicRemoveButton: any;
}
declare module "knockout/components/matrix-actions/detail-button/detail-button" {
export var SurveyQuestionMatrixDetailButton: any;
}
declare module "knockout/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
export var SurveyQuestionMatrixDynamicDragDropIcon: any;
}
declare module "knockout/components/button-group/button-group-item" {
import { ButtonGroupItemModel } from "survey-core";
export class ButtonGroupItemViewModel {
model: ButtonGroupItemModel;
constructor(model: ButtonGroupItemModel);
}
}
declare module "knockout/components/tooltip-error/tooltip-error" {
import { Question } from "survey-core";
export class TooltipErrorViewModel {
question: Question;
private tooltipManager;
constructor(question: Question);
afterRender: (elements: HTMLElement[]) => void;
}
}
declare module "knockout/components/survey-actions/survey-nav-button" {
export var SurveyNavigationButton: any;
}
declare module "knockout/components/paneldynamic-actions/paneldynamic-actions" {
export var SurveyQuestionPaneldynamicActioons: any;
}
declare module "knockout/components/brand-info/brand-info" {
export var BrandInfoComponent: any;
}
declare module "knockout/components/notifier/notifier" {
export var NotifierViewModel: any;
}
declare module "entries/knockout-ui-model" {
export { Survey, Survey as Model } from "knockout/kosurvey";
export { PopupSurvey, SurveyWindow } from "knockout/koPopupSurvey";
export { ImplementorBase } from "knockout/kobase";
export { QuestionRow, Page, Panel } from "knockout/kopage";
export { FlowPanel } from "knockout/koflowpanel";
export { QuestionImplementor } from "knockout/koquestion";
export { QuestionSelectBaseImplementor } from "knockout/koquestion_baseselect";
export { QuestionCheckboxBaseImplementor } from "knockout/koquestion_baseselect";
export { QuestionCheckbox } from "knockout/koquestion_checkbox";
export { QuestionTagbox } from "knockout/koquestion_tagbox";
export { QuestionRanking } from "knockout/koquestion_ranking";
export { QuestionComment } from "knockout/koquestion_comment";
export { QuestionDropdown } from "knockout/koquestion_dropdown";
export { QuestionFile } from "knockout/koquestion_file";
export { QuestionHtml } from "knockout/koquestion_html";
export { QuestionMatrix } from "knockout/koquestion_matrix";
export { QuestionMatrixDropdown } from "knockout/koquestion_matrixdropdown";
export { QuestionMatrixDynamicImplementor, QuestionMatrixDynamic, } from "knockout/koquestion_matrixdynamic";
export { QuestionPanelDynamic } from "knockout/koquestion_paneldynamic";
export { MultipleTextItem, QuestionMultipleText, } from "knockout/koquestion_multipletext";
export { QuestionRadiogroup } from "knockout/koquestion_radiogroup";
export { QuestionRating, QuestionRatingImplementor, } from "knockout/koquestion_rating";
export { QuestionText } from "knockout/koquestion_text";
export { QuestionBoolean } from "knockout/koquestion_boolean";
export { QuestionEmpty } from "knockout/koquestion_empty";
export { QuestionExpression } from "knockout/koquestion_expression";
export { QuestionImagePicker } from "knockout/koquestion_imagepicker";
export { PopupSurveyImplementor } from "knockout/koPopupSurvey";
export { SurveyTemplateText } from "knockout/templateText";
export { QuestionImage } from "knockout/koquestion_image";
export { QuestionSignaturePad } from "knockout/koquestion_signaturepad";
export { QuestionCustom } from "knockout/koquestion_custom";
export { QuestionButtonGroup } from "knockout/koquestion_buttongroup";
export * from "knockout/components/action-bar/action-bar";
export * from "knockout/components/boolean-checkbox/boolean-checkbox";
export * from "knockout/components/boolean-radio/boolean-radio";
export * from "knockout/components/panel/panel";
export * from "knockout/components/popup/popup";
export * from "knockout/components/progress/buttons";
export * from "knockout/components/progress/progress";
export * from "knockout/components/progress/toc";
export * from "knockout/components/components-container/components-container";
export * from "knockout/components/template-renderer/template-renderer";
export * from "knockout/components/title/title-element";
export * from "knockout/components/title/title-content";
export * from "knockout/components/title/title-actions";
export * from "knockout/components/string-editor/string-editor";
export * from "knockout/components/string-viewer/string-viewer";
export * from "knockout/components/logo-image/logo-image";
export * from "knockout/components/skeleton/skeleton";
export * from "knockout/components/character-counter/character-counter";
export * from "knockout/components/rating-dropdown/rating-dropdown";
export * from "knockout/components/rating/rating-item";
export * from "knockout/components/rating/rating-item-star";
export * from "knockout/components/rating/rating-item-smiley";
export * from "knockout/components/dropdown/dropdown";
export * from "knockout/components/dropdown-select/dropdown-select";
export * from "knockout/components/tagbox/tagbox-item";
export * from "knockout/components/tagbox/tagbox";
export * from "knockout/components/list/list";
export * from "knockout/components/svg-icon/svg-icon";
export { SurveyQuestionMatrixDynamicRemoveButton } from "knockout/components/matrix-actions/remove-button/remove-button";
export { SurveyQuestionMatrixDetailButton } from "knockout/components/matrix-actions/detail-button/detail-button";
export { SurveyQuestionMatrixDynamicDragDropIcon } from "knockout/components/matrix-actions/drag-drop-icon/drag-drop-icon";
export { ButtonGroupItemViewModel } from "knockout/components/button-group/button-group-item";
export { TooltipErrorViewModel } from "knockout/components/tooltip-error/tooltip-error";
export { SurveyNavigationButton } from "knockout/components/survey-actions/survey-nav-button";
export * from "knockout/components/paneldynamic-actions/paneldynamic-actions";
export * from "knockout/components/brand-info/brand-info";
export * from "knockout/components/notifier/notifier";
}
declare module "survey-knockout-ui" { import main = require("entries/knockout-ui-model"); export = main; }
export * from "./typings/entries/knockout-ui-model";

@@ -1,734 +0,1 @@

declare module "knockout/templateText" {
export var koTemplate: any;
export class SurveyTemplateText {
constructor();
addText(newText: string, id: string, name: string): void;
replaceText(replaceText: string, id: string, questionType?: string): void;
protected getId(id: string, questionType: string): string;
protected text: string;
}
}
declare module "knockout/kobase" {
import { Base } from "survey-core";
export class ImplementorBase {
element: Base;
private static doIterateProperties;
readonly implementedMark = "__surveyImplementedKo";
constructor(element: Base);
dispose(): void;
}
}
declare module "knockout/kosurvey" {
import { Base, SurveyModel } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class SurveyImplementor extends ImplementorBase {
survey: SurveyModel;
private renderedElement;
constructor(survey: SurveyModel);
render(element?: any): void;
private applyBinding;
koEventAfterRender(element: any, survey: any): void;
dispose(): void;
}
export class Survey extends SurveyModel {
implementor: SurveyImplementor;
constructor(jsonObj?: any, renderedElement?: any);
render(element?: any): void;
getHtmlTemplate(): string;
makeReactive(obj: Base): void;
}
export var registerTemplateEngine: (ko: any, platform: string) => void;
}
declare module "knockout/koPopupSurvey" {
import { SurveyModel, PopupSurveyModel } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class PopupSurveyImplementor extends ImplementorBase {
window: PopupSurveyModel;
constructor(window: PopupSurveyModel);
private doShowingChanged;
private readonly template: any;
}
export class PopupSurvey extends PopupSurveyModel {
constructor(jsonObj: any, initialModel?: SurveyModel);
}
export class SurveyWindow extends PopupSurvey {
}
}
declare module "knockout/kopage" {
import { PageModel } from "survey-core";
import { PanelModelBase, PanelModel, QuestionRowModel } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class QuestionRow extends QuestionRowModel {
panel: PanelModelBase;
koElementAfterRender: any;
constructor(panel: PanelModelBase);
getElementType(el: any): "survey-panel" | "survey-question";
koAfterRender(el: any, con: any): void;
private elementAfterRender;
rowAfterRender(elements: HTMLElement[], model: QuestionRow): void;
dispose(): void;
}
export class PanelImplementorBase extends ImplementorBase {
panel: PanelModelBase;
constructor(panel: PanelModelBase);
}
export class Panel extends PanelModel {
private _implementor;
koElementType: any;
koCss: any;
koErrorClass: any;
constructor(name?: string);
protected onBaseCreating(): void;
createRow(): QuestionRowModel;
protected onCreating(): void;
protected onNumChanged(value: number): void;
dispose(): void;
}
export class Page extends PageModel {
private _implementor;
constructor(name?: string);
protected onBaseCreating(): void;
createRow(): QuestionRowModel;
protected onCreating(): void;
protected onNumChanged(value: number): void;
dispose(): void;
}
}
declare module "knockout/koflowpanel" {
import { FlowPanelModel } from "survey-core";
import { Question } from "survey-core";
export class FlowPanel extends FlowPanelModel {
koElementType: any;
koElementAfterRender: any;
placeHolder: string;
constructor(name?: string);
protected onCreating(): void;
protected getHtmlForQuestion(question: Question): string;
private elementAfterRender;
}
}
declare module "knockout/koquestion" {
import { Question } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export class QuestionImplementor extends ImplementorBase {
question: Question;
private disposedObjects;
private callBackFunctions;
private koDummy;
koElementType: any;
private _koValue;
constructor(question: Question);
protected setObservaleObj(name: string, obj: any, addToQuestion?: boolean): any;
protected setCallbackFunc(name: string, func: any): void;
protected getKoValue(): any;
protected setKoValue(val: any): void;
protected onSurveyLoad(): void;
protected getQuestionTemplate(): string;
private getTemplateName;
protected getNo(): string;
protected updateKoDummy(): void;
protected koQuestionAfterRender(elements: any, con: any): void;
dispose(): void;
}
}
declare module "knockout/koquestion_baseselect" {
import { QuestionImplementor } from "knockout/koquestion";
import { Question } from "survey-core";
export class QuestionSelectBaseImplementor extends QuestionImplementor {
protected onCreated(): void;
constructor(question: Question);
protected readonly isOtherSelected: boolean;
}
export class QuestionCheckboxBaseImplementor extends QuestionSelectBaseImplementor {
constructor(question: Question);
private koAfterRender;
}
}
declare module "knockout/koquestion_checkbox" {
import { QuestionCheckboxBaseImplementor } from "knockout/koquestion_baseselect";
import { QuestionCheckboxModel } from "survey-core";
import { Question } from "survey-core";
export class QuestionCheckboxImplementor extends QuestionCheckboxBaseImplementor {
constructor(question: Question);
protected getKoValue(): any;
protected setKoValue(val: any): void;
}
export class QuestionCheckbox extends QuestionCheckboxModel {
koAllSelected: any;
private isAllSelectedUpdating;
private _implementor;
private _selectAllItemImpl;
private _otherItemImpl;
constructor(name: string);
protected onBaseCreating(): void;
onSurveyValueChanged(newValue: any): void;
protected onVisibleChoicesChanged(): void;
protected updateAllSelected(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_tagbox" {
import { QuestionTagboxModel } from "survey-core";
export class QuestionTagbox extends QuestionTagboxModel {
koAllSelected: any;
private isAllSelectedUpdating;
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
onSurveyValueChanged(newValue: any): void;
protected onVisibleChoicesChanged(): void;
protected updateAllSelected(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_ranking" {
import { QuestionRankingModel, ItemValue } from "survey-core";
export class QuestionRanking extends QuestionRankingModel {
private _implementor;
protected onBaseCreating(): void;
dispose(): void;
koHandleKeydown: (data: ItemValue, event: KeyboardEvent) => boolean;
koHandlePointerDown: (data: ItemValue, event: PointerEvent) => boolean;
}
}
declare module "knockout/koquestion_comment" {
import { QuestionCommentModel } from "survey-core";
export class QuestionComment extends QuestionCommentModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_dropdown" {
import { QuestionDropdownModel } from "survey-core";
export class QuestionDropdown extends QuestionDropdownModel {
private _implementor;
koDisableOption: any;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_file" {
import { QuestionFileModel } from "survey-core";
export class QuestionFile extends QuestionFileModel {
private _implementor;
private updateState;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_html" {
import { QuestionHtmlModel } from "survey-core";
export class QuestionHtml extends QuestionHtmlModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_matrix" {
import { QuestionMatrixModel, MatrixRowModel } from "survey-core";
export class QuestionMatrix extends QuestionMatrixModel {
private _implementor;
koVisibleRows: any;
koVisibleColumns: any;
constructor(name: string);
protected onBaseCreating(): void;
protected onColumnsChanged(): void;
protected onRowsChanged(): void;
onSurveyLoad(): void;
protected onMatrixRowCreated(row: MatrixRowModel): void;
protected getVisibleRows(): Array<MatrixRowModel>;
dispose(): void;
}
}
declare module "knockout/koquestion_matrixdropdown" {
import { QuestionMatrixDropdownRenderedRow } from "survey-core";
import { QuestionMatrixDropdownModel } from "survey-core";
import { MatrixDropdownRowModelBase, QuestionMatrixDropdownRenderedTable } from "survey-core";
import { Question } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class QuestionMatrixBaseImplementor extends QuestionImplementor {
private _tableImplementor;
koRecalc: any;
constructor(question: Question);
readonly matrix: QuestionMatrixDropdownModel;
private cellAfterRender;
private cellQuestionAfterRender;
protected isAddRowTop(): boolean;
protected isAddRowBottom(): boolean;
protected addRow(): void;
protected removeRow(row: MatrixDropdownRowModelBase): void;
private panelAfterRender;
dispose(): void;
}
export class QuestionMatrixDropdown extends QuestionMatrixDropdownModel {
private _implementor;
constructor(name: string);
protected createRenderedTable(): QuestionMatrixDropdownRenderedTable;
protected onBaseCreating(): void;
dispose(): void;
}
export class KoQuestionMatrixDropdownRenderedTable extends QuestionMatrixDropdownRenderedTable {
protected createRenderedRow(cssClasses: any, isDetailRow?: boolean): QuestionMatrixDropdownRenderedRow;
}
}
declare module "knockout/koquestion_matrixdynamic" {
import { QuestionMatrixDropdownRenderedTable } from "survey-core";
import { QuestionMatrixBaseImplementor } from "knockout/koquestion_matrixdropdown";
import { QuestionMatrixDynamicModel } from "survey-core";
import { Question } from "survey-core";
import { MatrixDropdownRowModelBase } from "survey-core";
import { MatrixDynamicRowModel } from "survey-core";
export class QuestionMatrixDynamicImplementor extends QuestionMatrixBaseImplementor {
constructor(question: Question);
protected addRow(): void;
protected removeRow(row: MatrixDynamicRowModel): void;
getKoPopupIsVisible(row: MatrixDropdownRowModelBase): any;
dispose(): void;
}
export class QuestionMatrixDynamic extends QuestionMatrixDynamicModel {
private _implementor;
constructor(name: string);
protected createRenderedTable(): QuestionMatrixDropdownRenderedTable;
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_paneldynamic" {
import { QuestionPanelDynamicModel } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class QuestionPanelDynamicImplementor extends QuestionImplementor {
koRecalc: any;
constructor(question: QuestionPanelDynamic);
protected onPanelCountChanged(): void;
protected onRenderModeChanged(): void;
protected onCurrentIndexChanged(): void;
protected addPanel(): void;
protected removePanel(val: any): void;
private panelAfterRender;
dispose(): void;
}
export class QuestionPanelDynamic extends QuestionPanelDynamicModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_text" {
import { QuestionTextModel } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class QuestionTextImplementor extends QuestionImplementor {
constructor(question: QuestionTextModel);
}
export class QuestionText extends QuestionTextModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_multipletext" {
import { QuestionMultipleTextModel, MultipleTextItemModel } from "survey-core";
import { QuestionTextModel } from "survey-core";
import { QuestionImplementor } from "knockout/koquestion";
export class MultipleTextItem extends MultipleTextItemModel {
constructor(name?: any, title?: string);
protected createEditor(name: string): QuestionTextModel;
}
export class QuestionMultipleTextImplementor extends QuestionImplementor {
koRecalc: any;
constructor(question: QuestionMultipleText);
}
export class QuestionMultipleText extends QuestionMultipleTextModel {
private _implementor;
koRows: any;
constructor(name: string);
protected onBaseCreating(): void;
protected onColCountChanged(): void;
protected createTextItem(name: string, title: string): MultipleTextItemModel;
dispose(): void;
}
}
declare module "knockout/koquestion_radiogroup" {
import { QuestionRadiogroupModel } from "survey-core";
export class QuestionRadiogroup extends QuestionRadiogroupModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_rating" {
import { QuestionImplementor } from "knockout/koquestion";
import { QuestionRatingModel, Question } from "survey-core";
export class QuestionRatingImplementor extends QuestionImplementor {
protected onCreated(): void;
constructor(question: Question);
}
export class QuestionRating extends QuestionRatingModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_boolean" {
import { QuestionBooleanModel } from "survey-core";
export class QuestionBoolean extends QuestionBooleanModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
onSwitchClick(data: any, event: any): boolean;
onTrueLabelClick(data: any, event: any): boolean;
onFalseLabelClick(data: any, event: any): boolean;
onKeyDown(data: any, event: any): boolean;
dispose(): void;
}
}
declare module "knockout/koquestion_empty" {
import { QuestionEmptyModel } from "survey-core";
export class QuestionEmpty extends QuestionEmptyModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_expression" {
import { QuestionExpressionModel } from "survey-core";
export class QuestionExpression extends QuestionExpressionModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_imagepicker" {
import { QuestionImagePickerModel } from "survey-core";
export class QuestionImagePicker extends QuestionImagePickerModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_image" {
import { QuestionImageModel } from "survey-core";
export class QuestionImage extends QuestionImageModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_signaturepad" {
import { QuestionSignaturePadModel } from "survey-core";
export class QuestionSignaturePad extends QuestionSignaturePadModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_custom" {
import { QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON } from "survey-core";
export class QuestionCustom extends QuestionCustomModel {
private _implementor;
constructor(name: string, questionJSON: ComponentQuestionJSON);
protected onBaseCreating(): void;
dispose(): void;
}
export class QuestionComposite extends QuestionCompositeModel {
private _implementor;
constructor(name: string, questionJSON: ComponentQuestionJSON);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/koquestion_buttongroup" {
import { QuestionButtonGroupModel } from "survey-core";
export class QuestionButtonGroup extends QuestionButtonGroupModel {
private _implementor;
constructor(name: string);
protected onBaseCreating(): void;
dispose(): void;
}
}
declare module "knockout/components/action-bar/action" { }
declare module "knockout/components/action-bar/action-bar-item" {
export let ActionBarItemViewModel: any;
}
declare module "knockout/components/action-bar/action-bar-item-dropdown" {
export let ActionBarItemDropdownViewModel: any;
}
declare module "knockout/components/action-bar/action-bar-separator" {
export var ActionBarSeparatorViewModel: any;
}
declare module "knockout/components/action-bar/action-bar" {
import { ActionContainer } from "survey-core";
import { ImplementorBase } from "knockout/kobase";
export * from "knockout/components/action-bar/action";
export * from "knockout/components/action-bar/action-bar-item";
export * from "knockout/components/action-bar/action-bar-item-dropdown";
export * from "knockout/components/action-bar/action-bar-separator";
export class ActionContainerImplementor extends ImplementorBase {
private model;
handleClick: boolean;
private itemsSubscription;
constructor(model: ActionContainer, handleClick?: boolean);
dispose(): void;
}
}
declare module "knockout/components/boolean-checkbox/boolean-checkbox" {
export var CheckboxViewModel: any;
}
declare module "knockout/components/boolean-radio/boolean-radio-item" {
export var BooleanRadioItemViewModel: any;
}
declare module "knockout/components/boolean-radio/boolean-radio" {
export * from "knockout/components/boolean-radio/boolean-radio-item";
export var BooleanRadioViewModel: any;
}
declare module "knockout/components/panel/panel" {
import { PanelModel } from "survey-core";
export class PanelViewModel {
question: PanelModel;
targetElement: HTMLElement;
constructor(question: PanelModel, targetElement: HTMLElement);
}
}
declare module "knockout/components/popup/popup" {
import { PopupBaseViewModel, IDialogOptions } from "survey-core";
export class PopupViewModel {
popupViewModel: PopupBaseViewModel;
constructor(popupViewModel: PopupBaseViewModel);
dispose(): void;
visibilityChangedHandler: (s: any, option: {
isVisible: boolean;
}) => void;
}
export function showModal(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
export function showDialog(dialogOptions: IDialogOptions): PopupBaseViewModel;
}
declare module "knockout/components/progress/buttons" {
import { SurveyModel } from "survey-core";
export class ProgressButtonsViewModel {
private survey;
private progressButtonsModel;
private scrollButtonCssKo;
private hasScroller;
private updateScroller;
constructor(survey: SurveyModel, element: any);
isListElementClickable(index: any): boolean;
getListElementCss(index: any): string;
clickListElement(index: any): void;
getScrollButtonCss(isLeftScroll: boolean): any;
clickScrollButton(listContainerElement: Element, isLeftScroll: boolean): void;
dispose(): void;
}
}
declare module "knockout/components/progress/progress" {
export class ProgressViewModel {
model: any;
constructor(model: any);
getProgressTextInBarCss(css: any): string;
getProgressTextUnderBarCss(css: any): string;
}
}
declare module "knockout/components/progress/toc" { }
declare module "knockout/components/components-container/components-container" {
import { SurveyModel } from "survey-core";
export class ComponentsContainer {
survey: SurveyModel;
private container;
needRenderWrapper: boolean;
constructor(survey: SurveyModel, container: any, needRenderWrapper?: boolean);
css: string;
readonly components: Array<any>;
}
}
declare module "knockout/components/template-renderer/template-renderer" { }
declare module "knockout/components/title/title-element" {
export var TitleElementViewModel: any;
}
declare module "knockout/components/title/title-content" {
export var TitleContentViewModel: any;
}
declare module "knockout/components/title/title-actions" {
export var TitleActionViewModel: any;
}
declare module "knockout/components/string-editor/string-editor" {
export class StringEditorViewModel {
locString: any;
constructor(locString: any);
readonly koHasHtml: any;
editValue: any;
onInput(sender: StringEditorViewModel, event: any): void;
onClick(sender: StringEditorViewModel, event: any): void;
dispose(): void;
}
}
declare module "knockout/components/string-viewer/string-viewer" {
export var StringViewerViewModel: any;
}
declare module "knockout/components/logo-image/logo-image" {
export let LogoImageViewModel: any;
}
declare module "knockout/components/skeleton/skeleton" {
export var Skeleton: any;
}
declare module "knockout/components/character-counter/character-counter" {
export var CharacterCounterComponent: any;
}
declare module "knockout/components/rating-dropdown/rating-dropdown" {
export var RatingDropdownViewModel: any;
}
declare module "knockout/components/rating/rating-item" {
export var RatingItemViewModel: any;
}
declare module "knockout/components/rating/rating-item-star" {
export var RatingItemStarViewModel: any;
}
declare module "knockout/components/rating/rating-item-smiley" {
export var RatingItemSmileyViewModel: any;
}
declare module "knockout/components/dropdown/dropdown" {
export var DropdownViewModel: any;
}
declare module "knockout/components/dropdown-select/dropdown-select" {
export var DropdownSelectViewModel: any;
}
declare module "knockout/components/tagbox/tagbox-item" {
export var TagboxViewComponent: any;
}
declare module "knockout/components/tagbox/tagbox" {
export var TagboxViewModel: any;
}
declare module "knockout/components/list/list-item" {
export var ListItemViewComponent: any;
}
declare module "knockout/components/list/list" {
export * from "knockout/components/list/list-item";
export var ListViewComponent: any;
}
declare module "knockout/components/svg-icon/svg-icon" {
export var SvgIconViewModel: any;
}
declare module "knockout/components/matrix-actions/remove-button/remove-button" {
export let SurveyQuestionMatrixDynamicRemoveButton: any;
}
declare module "knockout/components/matrix-actions/detail-button/detail-button" {
export var SurveyQuestionMatrixDetailButton: any;
}
declare module "knockout/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
export var SurveyQuestionMatrixDynamicDragDropIcon: any;
}
declare module "knockout/components/button-group/button-group-item" {
import { ButtonGroupItemModel } from "survey-core";
export class ButtonGroupItemViewModel {
model: ButtonGroupItemModel;
constructor(model: ButtonGroupItemModel);
}
}
declare module "knockout/components/tooltip-error/tooltip-error" {
import { Question } from "survey-core";
export class TooltipErrorViewModel {
question: Question;
private tooltipManager;
constructor(question: Question);
afterRender: (elements: HTMLElement[]) => void;
}
}
declare module "knockout/components/survey-actions/survey-nav-button" {
export var SurveyNavigationButton: any;
}
declare module "knockout/components/paneldynamic-actions/paneldynamic-actions" {
export var SurveyQuestionPaneldynamicActioons: any;
}
declare module "knockout/components/brand-info/brand-info" {
export var BrandInfoComponent: any;
}
declare module "knockout/components/notifier/notifier" {
export var NotifierViewModel: any;
}
declare module "entries/knockout-ui-model" {
export { Survey, Survey as Model } from "knockout/kosurvey";
export { PopupSurvey, SurveyWindow } from "knockout/koPopupSurvey";
export { ImplementorBase } from "knockout/kobase";
export { QuestionRow, Page, Panel } from "knockout/kopage";
export { FlowPanel } from "knockout/koflowpanel";
export { QuestionImplementor } from "knockout/koquestion";
export { QuestionSelectBaseImplementor } from "knockout/koquestion_baseselect";
export { QuestionCheckboxBaseImplementor } from "knockout/koquestion_baseselect";
export { QuestionCheckbox } from "knockout/koquestion_checkbox";
export { QuestionTagbox } from "knockout/koquestion_tagbox";
export { QuestionRanking } from "knockout/koquestion_ranking";
export { QuestionComment } from "knockout/koquestion_comment";
export { QuestionDropdown } from "knockout/koquestion_dropdown";
export { QuestionFile } from "knockout/koquestion_file";
export { QuestionHtml } from "knockout/koquestion_html";
export { QuestionMatrix } from "knockout/koquestion_matrix";
export { QuestionMatrixDropdown } from "knockout/koquestion_matrixdropdown";
export { QuestionMatrixDynamicImplementor, QuestionMatrixDynamic, } from "knockout/koquestion_matrixdynamic";
export { QuestionPanelDynamic } from "knockout/koquestion_paneldynamic";
export { MultipleTextItem, QuestionMultipleText, } from "knockout/koquestion_multipletext";
export { QuestionRadiogroup } from "knockout/koquestion_radiogroup";
export { QuestionRating, QuestionRatingImplementor, } from "knockout/koquestion_rating";
export { QuestionText } from "knockout/koquestion_text";
export { QuestionBoolean } from "knockout/koquestion_boolean";
export { QuestionEmpty } from "knockout/koquestion_empty";
export { QuestionExpression } from "knockout/koquestion_expression";
export { QuestionImagePicker } from "knockout/koquestion_imagepicker";
export { PopupSurveyImplementor } from "knockout/koPopupSurvey";
export { SurveyTemplateText } from "knockout/templateText";
export { QuestionImage } from "knockout/koquestion_image";
export { QuestionSignaturePad } from "knockout/koquestion_signaturepad";
export { QuestionCustom } from "knockout/koquestion_custom";
export { QuestionButtonGroup } from "knockout/koquestion_buttongroup";
export * from "knockout/components/action-bar/action-bar";
export * from "knockout/components/boolean-checkbox/boolean-checkbox";
export * from "knockout/components/boolean-radio/boolean-radio";
export * from "knockout/components/panel/panel";
export * from "knockout/components/popup/popup";
export * from "knockout/components/progress/buttons";
export * from "knockout/components/progress/progress";
export * from "knockout/components/progress/toc";
export * from "knockout/components/components-container/components-container";
export * from "knockout/components/template-renderer/template-renderer";
export * from "knockout/components/title/title-element";
export * from "knockout/components/title/title-content";
export * from "knockout/components/title/title-actions";
export * from "knockout/components/string-editor/string-editor";
export * from "knockout/components/string-viewer/string-viewer";
export * from "knockout/components/logo-image/logo-image";
export * from "knockout/components/skeleton/skeleton";
export * from "knockout/components/character-counter/character-counter";
export * from "knockout/components/rating-dropdown/rating-dropdown";
export * from "knockout/components/rating/rating-item";
export * from "knockout/components/rating/rating-item-star";
export * from "knockout/components/rating/rating-item-smiley";
export * from "knockout/components/dropdown/dropdown";
export * from "knockout/components/dropdown-select/dropdown-select";
export * from "knockout/components/tagbox/tagbox-item";
export * from "knockout/components/tagbox/tagbox";
export * from "knockout/components/list/list";
export * from "knockout/components/svg-icon/svg-icon";
export { SurveyQuestionMatrixDynamicRemoveButton } from "knockout/components/matrix-actions/remove-button/remove-button";
export { SurveyQuestionMatrixDetailButton } from "knockout/components/matrix-actions/detail-button/detail-button";
export { SurveyQuestionMatrixDynamicDragDropIcon } from "knockout/components/matrix-actions/drag-drop-icon/drag-drop-icon";
export { ButtonGroupItemViewModel } from "knockout/components/button-group/button-group-item";
export { TooltipErrorViewModel } from "knockout/components/tooltip-error/tooltip-error";
export { SurveyNavigationButton } from "knockout/components/survey-actions/survey-nav-button";
export * from "knockout/components/paneldynamic-actions/paneldynamic-actions";
export * from "knockout/components/brand-info/brand-info";
export * from "knockout/components/notifier/notifier";
}
declare module "survey-knockout-ui" {
import main = require("entries/knockout-ui-model");
export = main;
}
export * from "./typings/entries/knockout-ui-model";

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

Sorry, the diff of this file is not supported yet

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc