survey-angular-ui 1.9.43 → 1.9.44
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/README.md +214 -214
- package/angular-ui.d.ts +27 -0
- package/angular-ui.module.d.ts +92 -0
- package/base-angular.d.ts +25 -0
- package/comment.component.d.ts +8 -0
- package/component-factory.d.ts +9 -0
- package/components/action-bar/action-bar-item-dropdown.component.d.ts +12 -0
- package/components/action-bar/action-bar-item.component.d.ts +8 -0
- package/components/action-bar/action-bar.component.d.ts +16 -0
- package/components/action-bar/action.component.d.ts +11 -0
- package/components/brand-info/brand-info.component.d.ts +5 -0
- package/components/dropdown/dropdown.component.d.ts +16 -0
- package/components/element-header/element-header.component.d.ts +9 -0
- package/components/element-title/dynamic-head.component.d.ts +10 -0
- package/components/element-title/element-title.component.d.ts +7 -0
- package/components/list/list-item.component.d.ts +16 -0
- package/components/list/list.component.d.ts +11 -0
- package/components/matrix-actions/detail-button/detail-button.component.d.ts +11 -0
- package/components/matrix-actions/drag-drop-icon/drag-drop-icon.d.ts +10 -0
- package/components/matrix-actions/remove-button/remove-button.component.d.ts +10 -0
- package/components/paneldynamic-actions/paneldynamic-add-btn.component.d.ts +14 -0
- package/components/paneldynamic-actions/paneldynamic-next-btn.component.d.ts +7 -0
- package/components/paneldynamic-actions/paneldynamic-prev-btn.component.d.ts +7 -0
- package/components/paneldynamic-actions/paneldynamic-progress-text.component.d.ts +6 -0
- package/components/popup/popup-container.component.d.ts +16 -0
- package/components/popup/popup.component.d.ts +17 -0
- package/components/popup/popup.service.d.ts +13 -0
- package/components/progress/buttons/progress.component.d.ts +24 -0
- package/components/progress/default/progress.component.d.ts +9 -0
- package/components/renderAs/boolean-checkbox/boolean-checkbox.component.d.ts +6 -0
- package/components/renderAs/boolean-radio/boolean-radio-item.component.d.ts +10 -0
- package/components/renderAs/boolean-radio/boolean-radio.component.d.ts +7 -0
- package/components/renderAs/dropdown-select/dropdown-option-item.component.d.ts +8 -0
- package/components/renderAs/dropdown-select/dropdown-select.component.d.ts +10 -0
- package/components/renderAs/rating-dropdown/rating-dropdown.component.d.ts +6 -0
- package/components/skeleton.component.d.ts +6 -0
- package/components/survey-actions/survey-nav-btn.component.d.ts +10 -0
- package/components/survey-header/survey-header.component.d.ts +11 -0
- package/components/svg-icon/svg-icon.component.d.ts +20 -0
- package/components/tagbox/tagbox-item.component.d.ts +11 -0
- package/components/tagbox/tagbox.component.d.ts +16 -0
- package/element.component.d.ts +9 -0
- package/embedded-view-content.component.d.ts +11 -0
- package/errors.component.d.ts +19 -0
- package/esm2020/angular-ui.mjs +28 -0
- package/esm2020/angular-ui.module.mjs +138 -0
- package/esm2020/base-angular.mjs +101 -0
- package/esm2020/comment.component.mjs +16 -0
- package/esm2020/component-factory.mjs +26 -0
- package/esm2020/components/action-bar/action-bar-item-dropdown.component.mjs +32 -0
- package/esm2020/components/action-bar/action-bar-item.component.mjs +22 -0
- package/esm2020/components/action-bar/action-bar.component.mjs +43 -0
- package/esm2020/components/action-bar/action.component.mjs +27 -0
- package/esm2020/components/brand-info/brand-info.component.mjs +13 -0
- package/esm2020/components/dropdown/dropdown.component.mjs +39 -0
- package/esm2020/components/element-header/element-header.component.mjs +30 -0
- package/esm2020/components/element-title/dynamic-head.component.mjs +20 -0
- package/esm2020/components/element-title/element-title.component.mjs +18 -0
- package/esm2020/components/list/list-item.component.mjs +44 -0
- package/esm2020/components/list/list.component.mjs +32 -0
- package/esm2020/components/matrix-actions/detail-button/detail-button.component.mjs +25 -0
- package/esm2020/components/matrix-actions/drag-drop-icon/drag-drop-icon.mjs +24 -0
- package/esm2020/components/matrix-actions/remove-button/remove-button.component.mjs +25 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-add-btn.component.mjs +35 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-next-btn.component.mjs +18 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-prev-btn.component.mjs +18 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-progress-text.component.mjs +14 -0
- package/esm2020/components/popup/popup-container.component.mjs +48 -0
- package/esm2020/components/popup/popup.component.mjs +37 -0
- package/esm2020/components/popup/popup.service.mjs +26 -0
- package/esm2020/components/progress/buttons/progress.component.mjs +67 -0
- package/esm2020/components/progress/default/progress.component.mjs +27 -0
- package/esm2020/components/renderAs/boolean-checkbox/boolean-checkbox.component.mjs +20 -0
- package/esm2020/components/renderAs/boolean-radio/boolean-radio-item.component.mjs +22 -0
- package/esm2020/components/renderAs/boolean-radio/boolean-radio.component.mjs +18 -0
- package/esm2020/components/renderAs/dropdown-select/dropdown-option-item.component.mjs +23 -0
- package/esm2020/components/renderAs/dropdown-select/dropdown-select.component.mjs +38 -0
- package/esm2020/components/renderAs/rating-dropdown/rating-dropdown.component.mjs +18 -0
- package/esm2020/components/skeleton.component.mjs +15 -0
- package/esm2020/components/survey-actions/survey-nav-btn.component.mjs +22 -0
- package/esm2020/components/survey-header/survey-header.component.mjs +23 -0
- package/esm2020/components/svg-icon/svg-icon.component.mjs +68 -0
- package/esm2020/components/tagbox/tagbox-item.component.mjs +27 -0
- package/esm2020/components/tagbox/tagbox.component.mjs +40 -0
- package/esm2020/element.component.mjs +18 -0
- package/esm2020/embedded-view-content.component.mjs +24 -0
- package/esm2020/errors.component.mjs +58 -0
- package/esm2020/page.component.mjs +34 -0
- package/esm2020/panel.component.mjs +37 -0
- package/esm2020/question.component.mjs +41 -0
- package/esm2020/question.mjs +33 -0
- package/esm2020/questions/boolean.component.mjs +20 -0
- package/esm2020/questions/checkbox-item.component.mjs +36 -0
- package/esm2020/questions/checkbox.component.mjs +17 -0
- package/esm2020/questions/comment.component.mjs +18 -0
- package/esm2020/questions/composite.component.mjs +21 -0
- package/esm2020/questions/custom.component.mjs +27 -0
- package/esm2020/questions/customwidget.component.mjs +51 -0
- package/esm2020/questions/dropdown.component.mjs +17 -0
- package/esm2020/questions/expression.component.mjs +17 -0
- package/esm2020/questions/file.component.mjs +25 -0
- package/esm2020/questions/html.component.mjs +25 -0
- package/esm2020/questions/image.component.mjs +16 -0
- package/esm2020/questions/imagepicker-item.component.mjs +45 -0
- package/esm2020/questions/imagepicker.component.mjs +16 -0
- package/esm2020/questions/matrix.component.mjs +35 -0
- package/esm2020/questions/matrixcell.component.mjs +60 -0
- package/esm2020/questions/matrixdropdown.component.mjs +16 -0
- package/esm2020/questions/matrixdynamic.component.mjs +17 -0
- package/esm2020/questions/matrixrequiredheader.component.mjs +24 -0
- package/esm2020/questions/matrixtable.component.mjs +29 -0
- package/esm2020/questions/multipletext.component.mjs +25 -0
- package/esm2020/questions/multipletextitem.component.mjs +23 -0
- package/esm2020/questions/paneldynamic.component.mjs +55 -0
- package/esm2020/questions/radiogroup-item.component.mjs +18 -0
- package/esm2020/questions/radiogroup.component.mjs +22 -0
- package/esm2020/questions/ranking-item.component.mjs +22 -0
- package/esm2020/questions/ranking.component.mjs +22 -0
- package/esm2020/questions/rating.component.mjs +23 -0
- package/esm2020/questions/selectbase-item.mjs +32 -0
- package/esm2020/questions/selectbase.component.mjs +24 -0
- package/esm2020/questions/signature.component.mjs +17 -0
- package/esm2020/questions/tagbox.component.mjs +17 -0
- package/esm2020/questions/text.component.mjs +26 -0
- package/esm2020/row.component.mjs +22 -0
- package/esm2020/string-editor.component.mjs +26 -0
- package/esm2020/string-viewer.component.mjs +32 -0
- package/esm2020/survey-angular-ui.mjs +5 -0
- package/esm2020/survey-string.component.mjs +17 -0
- package/esm2020/survey.component.mjs +50 -0
- package/esm2020/utils/dynamic.directive.mjs +44 -0
- package/esm2020/utils/ng-key2click.directive.mjs +69 -0
- package/esm2020/utils/ng-show.directive.mjs +27 -0
- package/esm2020/utils/safe-html.pipe.mjs +18 -0
- package/esm2020/utils/safe-url.pipe.mjs +33 -0
- package/fesm2015/survey-angular-ui.mjs +2201 -0
- package/fesm2015/survey-angular-ui.mjs.map +1 -0
- package/fesm2020/survey-angular-ui.mjs +2181 -0
- package/fesm2020/survey-angular-ui.mjs.map +1 -0
- package/package.json +1 -11
- package/page.component.d.ts +14 -0
- package/panel.component.d.ts +13 -0
- package/question.component.d.ts +13 -0
- package/question.d.ts +13 -0
- package/questions/boolean.component.d.ts +8 -0
- package/questions/checkbox-item.component.d.ts +11 -0
- package/questions/checkbox.component.d.ts +7 -0
- package/questions/comment.component.d.ts +8 -0
- package/questions/composite.component.d.ts +8 -0
- package/questions/custom.component.d.ts +10 -0
- package/questions/customwidget.component.d.ts +18 -0
- package/questions/dropdown.component.d.ts +7 -0
- package/questions/expression.component.d.ts +7 -0
- package/questions/file.component.d.ts +8 -0
- package/questions/html.component.d.ts +9 -0
- package/questions/image.component.d.ts +7 -0
- package/questions/imagepicker-item.component.d.ts +14 -0
- package/questions/imagepicker.component.d.ts +7 -0
- package/questions/matrix.component.d.ts +11 -0
- package/questions/matrixcell.component.d.ts +20 -0
- package/questions/matrixdropdown.component.d.ts +7 -0
- package/questions/matrixdynamic.component.d.ts +7 -0
- package/questions/matrixrequiredheader.component.d.ts +10 -0
- package/questions/matrixtable.component.d.ts +12 -0
- package/questions/multipletext.component.d.ts +9 -0
- package/questions/multipletextitem.component.d.ts +10 -0
- package/questions/paneldynamic.component.d.ts +12 -0
- package/questions/radiogroup-item.component.d.ts +8 -0
- package/questions/radiogroup.component.d.ts +8 -0
- package/questions/ranking-item.component.d.ts +11 -0
- package/questions/ranking.component.d.ts +8 -0
- package/questions/rating.component.d.ts +9 -0
- package/questions/selectbase-item.d.ts +12 -0
- package/questions/selectbase.component.d.ts +10 -0
- package/questions/signature.component.d.ts +7 -0
- package/questions/tagbox.component.d.ts +7 -0
- package/questions/text.component.d.ts +9 -0
- package/row.component.d.ts +10 -0
- package/string-editor.component.d.ts +9 -0
- package/string-viewer.component.d.ts +13 -0
- package/survey-angular-ui.d.ts +5 -5
- package/survey-string.component.d.ts +7 -0
- package/survey.component.d.ts +16 -0
- package/utils/dynamic.directive.d.ts +19 -0
- package/utils/ng-key2click.directive.d.ts +21 -0
- package/utils/ng-show.directive.d.ts +12 -0
- package/utils/safe-html.pipe.d.ts +10 -0
- package/utils/safe-url.pipe.d.ts +17 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { BaseAngular } from "../../base-angular";
|
|
3
|
+
import { ActionContainer } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ActionBarComponent extends BaseAngular<ActionContainer> {
|
|
6
|
+
model: ActionContainer;
|
|
7
|
+
handleClick: any;
|
|
8
|
+
container: ElementRef<HTMLDivElement>;
|
|
9
|
+
getModel(): ActionContainer;
|
|
10
|
+
get allowOnClick(): boolean;
|
|
11
|
+
onClick(event: Event): void;
|
|
12
|
+
ngAfterViewInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionBarComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionBarComponent, "sv-action-bar, sv-ng-action-bar", never, { "model": "model"; "handleClick": "handleClick"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { BaseAngular } from "../../base-angular";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ActionComponent extends BaseAngular {
|
|
5
|
+
model: any;
|
|
6
|
+
actionContent: ViewContainerRef;
|
|
7
|
+
getModel(): any;
|
|
8
|
+
getComponentName(): any;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionComponent, "sv-ng-action", never, { "model": "model"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { PopupModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DropdownComponent implements OnDestroy, OnInit {
|
|
5
|
+
model: any;
|
|
6
|
+
private dropdownListModel;
|
|
7
|
+
get popupModel(): PopupModel;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
ngOnDestroy(): void;
|
|
10
|
+
click(event: any): void;
|
|
11
|
+
clear(event: any): void;
|
|
12
|
+
keyup(event: any): void;
|
|
13
|
+
blur(event: any): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "sv-ng-dropdown, '[sv-ng-dropdown]'", never, { "model": "model"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ElementHeaderComponent {
|
|
3
|
+
element: any;
|
|
4
|
+
constructor();
|
|
5
|
+
get rootClass(): string;
|
|
6
|
+
click(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElementHeaderComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElementHeaderComponent, "'[sv-ng-element-header]'", never, { "element": "element"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EmbeddedViewContentComponent } from "../../embedded-view-content.component";
|
|
2
|
+
import { SurveyElement } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicHeadComponent extends EmbeddedViewContentComponent {
|
|
5
|
+
tagName: string;
|
|
6
|
+
element: SurveyElement;
|
|
7
|
+
get ariaLabel(): string | null;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicHeadComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicHeadComponent, "sv-ng-dynamic-head", never, { "tagName": "tagName"; "element": "element"; }, {}, never, ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { EmbeddedViewContentComponent } from "../../embedded-view-content.component";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ElementTitleComponent extends EmbeddedViewContentComponent {
|
|
4
|
+
element: any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElementTitleComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElementTitleComponent, "sv-ng-element-title", never, { "element": "element"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ListModel, Action } from "survey-core";
|
|
2
|
+
import { BaseAngular } from "../../base-angular";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ListItemComponent extends BaseAngular {
|
|
5
|
+
element: any;
|
|
6
|
+
model: Action;
|
|
7
|
+
listModel: ListModel;
|
|
8
|
+
get ariaSelected(): boolean | string;
|
|
9
|
+
get class(): string;
|
|
10
|
+
get paddingLeft(): string;
|
|
11
|
+
click(event: any): void;
|
|
12
|
+
pointerdown(event: any): void;
|
|
13
|
+
getModel(): Action;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListItemComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListItemComponent, "sv-ng-list-item, '[sv-ng-list-item]'", never, { "element": "element"; "model": "model"; "listModel": "listModel"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseAngular } from "../../base-angular";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ListComponent extends BaseAngular {
|
|
4
|
+
model: any;
|
|
5
|
+
getModel(): any;
|
|
6
|
+
onGoToItems(event: Event): void;
|
|
7
|
+
onMouseDown(event: Event): void;
|
|
8
|
+
onKeyDown(event: Event): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "sv-ng-list, '[sv-ng-list]'", never, { "model": "model"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Action } from "survey-core";
|
|
2
|
+
import { Base } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatrixDetailButtonComponent {
|
|
5
|
+
model: Action;
|
|
6
|
+
get question(): any;
|
|
7
|
+
get row(): any;
|
|
8
|
+
getModel(): Base;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixDetailButtonComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixDetailButtonComponent, "sv-ng-matrix-detail-btn", never, { "model": "model"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Action } from "survey-core";
|
|
2
|
+
import { Base } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatrixDynamicDragDropIconComponent {
|
|
5
|
+
model: Action;
|
|
6
|
+
get question(): any;
|
|
7
|
+
getModel(): Base;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixDynamicDragDropIconComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixDynamicDragDropIconComponent, "sv-ng-drag-drop-icon", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Action, Base } from "survey-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MatrixDynamicRemoveButtonComponent {
|
|
4
|
+
model: Action;
|
|
5
|
+
get question(): any;
|
|
6
|
+
get row(): any;
|
|
7
|
+
getModel(): Base;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixDynamicRemoveButtonComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixDynamicRemoveButtonComponent, "sv-ng-matrix-remove-btn", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Action, QuestionPanelDynamicModel } from "survey-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PaneldynamicAction {
|
|
4
|
+
data: any;
|
|
5
|
+
model: Action;
|
|
6
|
+
get question(): QuestionPanelDynamicModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaneldynamicAction, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaneldynamicAction, "ng-component", never, { "data": "data"; "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
10
|
+
export declare class PanelDynamicAddBtn extends PaneldynamicAction {
|
|
11
|
+
addPanelClick(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelDynamicAddBtn, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelDynamicAddBtn, "sv-ng-paneldynamic-add-btn", never, {}, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PaneldynamicAction } from "./paneldynamic-add-btn.component";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PanelDynamicNextBtn extends PaneldynamicAction {
|
|
4
|
+
nextPanelClick(): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelDynamicNextBtn, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelDynamicNextBtn, "sv-ng-paneldynamic-next-btn", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PaneldynamicAction } from "./paneldynamic-add-btn.component";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PanelDynamicPrevBtn extends PaneldynamicAction {
|
|
4
|
+
prevPanelClick(): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelDynamicPrevBtn, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelDynamicPrevBtn, "sv-ng-paneldynamic-prev-btn", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaneldynamicAction } from "./paneldynamic-add-btn.component";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PanelDynamicProgressText extends PaneldynamicAction {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelDynamicProgressText, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelDynamicProgressText, "sv-ng-paneldynamic-progress-text", never, {}, {}, never, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from "@angular/core";
|
|
2
|
+
import { BaseAngular } from "../../base-angular";
|
|
3
|
+
import { PopupBaseViewModel } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PopupContainerComponent extends BaseAngular<PopupBaseViewModel> {
|
|
6
|
+
private prevIsVisible;
|
|
7
|
+
isShow: boolean;
|
|
8
|
+
model: PopupBaseViewModel;
|
|
9
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
10
|
+
protected getModel(): PopupBaseViewModel;
|
|
11
|
+
protected onModelChanged(): void;
|
|
12
|
+
protected beforeUpdate(): void;
|
|
13
|
+
protected afterUpdate(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopupContainerComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopupContainerComponent, "sv-ng-popup-container, '[sv-ng-popup-container]'", never, { "model": "model"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { BaseAngular } from "../../base-angular";
|
|
3
|
+
import { PopupBaseViewModel, PopupModel } from "survey-core";
|
|
4
|
+
import { PopupService } from "./popup.service";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PopupComponent extends BaseAngular<PopupModel> {
|
|
7
|
+
private popupService;
|
|
8
|
+
popupModel: PopupModel;
|
|
9
|
+
model: PopupBaseViewModel;
|
|
10
|
+
private portalHost;
|
|
11
|
+
protected getModel(): PopupModel;
|
|
12
|
+
constructor(viewContainerRef: ViewContainerRef, changeDetectorRef: ChangeDetectorRef, popupService: PopupService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopupComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopupComponent, "sv-ng-popup, '[sv-ng-popup]'", never, { "popupModel": "popupModel"; }, {}, never, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ApplicationRef, ComponentFactoryResolver, Injector } from "@angular/core";
|
|
2
|
+
import { DomPortalOutlet } from "@angular/cdk/portal";
|
|
3
|
+
import { PopupBaseViewModel } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PopupService {
|
|
6
|
+
private injector;
|
|
7
|
+
private applicationRef;
|
|
8
|
+
private componentFactoryResolver;
|
|
9
|
+
constructor(injector: Injector, applicationRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver);
|
|
10
|
+
createComponent(popupViewModel: PopupBaseViewModel): DomPortalOutlet;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopupService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PopupService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { SurveyModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ProgressButtonsComponent implements OnDestroy, AfterViewInit, OnChanges, OnInit {
|
|
5
|
+
private changeDetectorRef;
|
|
6
|
+
model: SurveyModel;
|
|
7
|
+
progressButtonsListContainer: ElementRef<HTMLDivElement>;
|
|
8
|
+
private progressButtonsModel;
|
|
9
|
+
private hasScroller;
|
|
10
|
+
private updateScroller;
|
|
11
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
12
|
+
private createProgressButtonsModel;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
15
|
+
isListElementClickable(index: number): boolean;
|
|
16
|
+
getListElementCss(index: number): string;
|
|
17
|
+
clickListElement(index: number): void;
|
|
18
|
+
getScrollButtonCss(isLeftScroll: boolean): string;
|
|
19
|
+
clickScrollButton(isLeftScroll: boolean): void;
|
|
20
|
+
ngAfterViewInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonsComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressButtonsComponent, "sv-ng-progress-buttons", never, { "model": "model"; }, {}, never, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { EmbeddedViewContentComponent } from "../../../embedded-view-content.component";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ProgressDefaultComponent extends EmbeddedViewContentComponent {
|
|
4
|
+
model: any;
|
|
5
|
+
getProgressTextInBarCss(css: any): string;
|
|
6
|
+
getProgressTextUnderBarCss(css: any): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressDefaultComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressDefaultComponent, "sv-ng-progress-default", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class BooleanCheckboxComponent {
|
|
3
|
+
model: any;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanCheckboxComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanCheckboxComponent, "sv-ng-boolean-checkbox-question", never, { "model": "model"; }, {}, never, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { LocalizableString, QuestionBooleanModel } from "survey-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BooleanRadioItemComponent {
|
|
4
|
+
question: QuestionBooleanModel;
|
|
5
|
+
value: boolean;
|
|
6
|
+
locText: LocalizableString;
|
|
7
|
+
constructor();
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanRadioItemComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanRadioItemComponent, "sv-ng-boolean-radio-item", never, { "question": "question"; "value": "value"; "locText": "locText"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionBooleanModel } from "survey-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BooleanRadioComponent {
|
|
4
|
+
model: QuestionBooleanModel;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanRadioComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanRadioComponent, "sv-ng-boolean-radio-question", never, { "model": "model"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseAngular } from "../../../base-angular";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DropdownOptionItemComponent extends BaseAngular {
|
|
4
|
+
item: any;
|
|
5
|
+
protected getModel(): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownOptionItemComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownOptionItemComponent, "sv-ng-dropdown-option-item, '[sv-ng-dropdown-option-item]'", never, { "item": "item"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DropdownSelectComponent {
|
|
3
|
+
model: any;
|
|
4
|
+
get editableValue(): any;
|
|
5
|
+
set editableValue(newValue: any);
|
|
6
|
+
click(event: any): void;
|
|
7
|
+
keyup(event: any): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownSelectComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownSelectComponent, "sv-ng-dropdown-select-question", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class RatingDropdownComponent {
|
|
3
|
+
model: any;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RatingDropdownComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RatingDropdownComponent, "sv-ng-rating-dropdown-question", never, { "model": "model"; }, {}, never, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class QuestionSkeletonComponent {
|
|
3
|
+
model: any;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionSkeletonComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionSkeletonComponent, "question-skeleton", never, { "model": "model"; }, {}, never, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Action } from "survey-core";
|
|
2
|
+
import { Base } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SurveyNavigationButton {
|
|
5
|
+
model: Action;
|
|
6
|
+
getModel(): Action;
|
|
7
|
+
buttonMouseDown(): Base;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyNavigationButton, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyNavigationButton, "sv-ng-nav-btn", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AfterViewInit, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { SurveyModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SurveyHeaderComponent implements AfterViewInit {
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
survey: SurveyModel;
|
|
7
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
8
|
+
ngAfterViewInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyHeaderComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyHeaderComponent, "'[sv-ng-survey-header]'", never, { "survey": "survey"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnChanges, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SvgIconComponent implements OnChanges {
|
|
4
|
+
private viewContaierRef;
|
|
5
|
+
size?: number | string;
|
|
6
|
+
width?: number;
|
|
7
|
+
height?: number;
|
|
8
|
+
iconName: string;
|
|
9
|
+
partCss?: string;
|
|
10
|
+
css?: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
constructor(viewContaierRef: ViewContainerRef);
|
|
13
|
+
private createSvg;
|
|
14
|
+
get rootClass(): string;
|
|
15
|
+
get rootRole(): string;
|
|
16
|
+
get ariaLabel(): string;
|
|
17
|
+
ngOnChanges(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SvgIconComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SvgIconComponent, "'[sv-ng-svg-icon]'", never, { "size": "size"; "width": "width"; "height": "height"; "iconName": "iconName"; "partCss": "partCss"; "css": "css"; "title": "title"; }, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ItemValue, QuestionTagboxModel } from "survey-core";
|
|
2
|
+
import { BaseAngular } from "../../base-angular";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TagboxItemComponent extends BaseAngular {
|
|
5
|
+
item: ItemValue;
|
|
6
|
+
question: QuestionTagboxModel;
|
|
7
|
+
removeItem(event: any): void;
|
|
8
|
+
getModel(): ItemValue;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagboxItemComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagboxItemComponent, "sv-ng-tagbox-item, '[sv-ng-tagbox-item]'", never, { "item": "item"; "question": "question"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { PopupModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TagboxComponent implements OnDestroy, OnInit {
|
|
5
|
+
model: any;
|
|
6
|
+
private dropdownListModel;
|
|
7
|
+
get popupModel(): PopupModel;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
ngOnDestroy(): void;
|
|
10
|
+
click(event: any): void;
|
|
11
|
+
clear(event: any): void;
|
|
12
|
+
keyup(event: any): void;
|
|
13
|
+
blur(event: any): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagboxComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagboxComponent, "sv-ng-tagbox, '[sv-ng-tagbox]'", never, { "model": "model"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PanelModel, Question } from "survey-core";
|
|
2
|
+
import { BaseAngular } from "./base-angular";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ElementComponent extends BaseAngular<PanelModel | Question> {
|
|
5
|
+
model: PanelModel | Question;
|
|
6
|
+
protected getModel(): PanelModel | Question;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElementComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElementComponent, "sv-ng-element", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EmbeddedViewRef, OnInit, TemplateRef, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EmbeddedViewContentComponent implements OnInit {
|
|
4
|
+
protected viewContainerRef?: ViewContainerRef | undefined;
|
|
5
|
+
templateRef: TemplateRef<HTMLElement>;
|
|
6
|
+
protected embeddedView?: EmbeddedViewRef<HTMLElement>;
|
|
7
|
+
constructor(viewContainerRef?: ViewContainerRef | undefined);
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmbeddedViewContentComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmbeddedViewContentComponent, "ng-component", never, {}, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { SurveyElement } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ErrorsComponent implements OnDestroy, OnInit {
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
element: SurveyElement | any;
|
|
7
|
+
location?: String;
|
|
8
|
+
errorsContainerRef: ElementRef<HTMLDivElement>;
|
|
9
|
+
private tooltipManager;
|
|
10
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
get role(): string;
|
|
14
|
+
get id(): string;
|
|
15
|
+
get ariaLive(): string;
|
|
16
|
+
get class(): string;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorsComponent, "'[sv-ng-errors]'", never, { "element": "element"; "location": "location"; }, {}, never, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export * from "./survey.component";
|
|
2
|
+
export * from "./page.component";
|
|
3
|
+
export * from "./question.component";
|
|
4
|
+
export * from "./string-viewer.component";
|
|
5
|
+
export * from "./components/popup/popup.service";
|
|
6
|
+
export * from "./components/popup/popup.component";
|
|
7
|
+
export * from "./components/popup/popup-container.component";
|
|
8
|
+
export * from "./components/skeleton.component";
|
|
9
|
+
export * from "./components/dropdown/dropdown.component";
|
|
10
|
+
export * from "./components/tagbox/tagbox.component";
|
|
11
|
+
export * from "./components/tagbox/tagbox-item.component";
|
|
12
|
+
export * from "./questions/text.component";
|
|
13
|
+
export * from "./questions/html.component";
|
|
14
|
+
export * from "./questions/radiogroup.component";
|
|
15
|
+
export * from "./questions/radiogroup-item.component";
|
|
16
|
+
export * from "./questions/checkbox.component";
|
|
17
|
+
export * from "./questions/checkbox-item.component";
|
|
18
|
+
export * from "./questions/dropdown.component";
|
|
19
|
+
export * from "./angular-ui.module";
|
|
20
|
+
export * from "./component-factory";
|
|
21
|
+
export * from "./components/action-bar/action-bar.component";
|
|
22
|
+
export * from "./components/action-bar/action.component";
|
|
23
|
+
export * from "./components/action-bar/action-bar-item.component";
|
|
24
|
+
export * from "./components/action-bar/action-bar-item-dropdown.component";
|
|
25
|
+
export * from "./components/list/list-item.component";
|
|
26
|
+
export * from "./components/list/list.component";
|
|
27
|
+
export * from "./components/svg-icon/svg-icon.component";
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ndWxhci11aS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3BhY2thZ2VzL3N1cnZleS1hbmd1bGFyLXVpL3NyYy9hbmd1bGFyLXVpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsMkJBQTJCLENBQUM7QUFFMUMsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsOENBQThDLENBQUM7QUFDN0QsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLGdDQUFnQyxDQUFDO0FBRS9DLGNBQWMscUJBQXFCLENBQUM7QUFFcEMsY0FBYyxxQkFBcUIsQ0FBQztBQUVwQyxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyxtREFBbUQsQ0FBQztBQUNsRSxjQUFjLDREQUE0RCxDQUFDO0FBRTNFLGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxrQ0FBa0MsQ0FBQztBQUVqRCxjQUFjLDBDQUEwQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vc3VydmV5LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcGFnZS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9uLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc3RyaW5nLXZpZXdlci5jb21wb25lbnRcIjtcblxuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9wb3B1cC9wb3B1cC5zZXJ2aWNlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3BvcHVwL3BvcHVwLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9wb3B1cC9wb3B1cC1jb250YWluZXIuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3NrZWxldG9uLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9kcm9wZG93bi9kcm9wZG93bi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvdGFnYm94L3RhZ2JveC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvdGFnYm94L3RhZ2JveC1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL3RleHQuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvaHRtbC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9yYWRpb2dyb3VwLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL3JhZGlvZ3JvdXAtaXRlbS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9jaGVja2JveC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9jaGVja2JveC1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL2Ryb3Bkb3duLmNvbXBvbmVudFwiO1xuXG5leHBvcnQgKiBmcm9tIFwiLi9hbmd1bGFyLXVpLm1vZHVsZVwiO1xuXG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnQtZmFjdG9yeVwiO1xuXG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL2FjdGlvbi1iYXIvYWN0aW9uLWJhci5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvYWN0aW9uLWJhci9hY3Rpb24uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL2FjdGlvbi1iYXIvYWN0aW9uLWJhci1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9hY3Rpb24tYmFyL2FjdGlvbi1iYXItaXRlbS1kcm9wZG93bi5jb21wb25lbnRcIjtcblxuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9saXN0L2xpc3QtaXRlbS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvbGlzdC9saXN0LmNvbXBvbmVudFwiO1xuXG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3N2Zy1pY29uL3N2Zy1pY29uLmNvbXBvbmVudFwiOyJdfQ==
|