survey-angular-ui 1.9.75 → 1.9.77
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/angular-ui.d.ts +3 -0
- package/angular-ui.module.d.ts +82 -79
- package/bundles/survey-angular-ui.umd.js +246 -138
- package/bundles/survey-angular-ui.umd.js.map +1 -1
- package/components/progress/toc/progress.component.d.ts +14 -0
- package/components/rating/rating-item-star.component.d.ts +13 -0
- package/components/rating/rating-item.component.d.ts +1 -1
- package/components/timer-panel/timer-panel.component.d.ts +1 -1
- package/components-container.component.d.ts +12 -0
- package/esm2015/angular-ui.js +4 -1
- package/esm2015/angular-ui.module.js +14 -13
- package/esm2015/components/progress/default/progress.component.js +3 -3
- package/esm2015/components/progress/toc/progress.component.js +36 -0
- package/esm2015/components/rating/rating-item-star.component.js +34 -0
- package/esm2015/components/rating/rating-item.component.js +2 -2
- package/esm2015/components/timer-panel/timer-panel.component.js +5 -3
- package/esm2015/components-container.component.js +32 -0
- package/esm2015/question.component.js +2 -2
- package/esm2015/questions/checkbox-item.component.js +2 -2
- package/esm2015/questions/rating.component.js +2 -2
- package/esm2015/questions/signature.component.js +2 -2
- package/esm2015/survey-content.component.js +8 -10
- package/fesm2015/survey-angular-ui.js +201 -117
- package/fesm2015/survey-angular-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -1000,125 +1000,6 @@
|
|
|
1000
1000
|
type: i0.Input
|
|
1001
1001
|
}] } });
|
|
1002
1002
|
|
|
1003
|
-
var SvgIconComponent = /** @class */ (function () {
|
|
1004
|
-
function SvgIconComponent(viewContaierRef) {
|
|
1005
|
-
this.viewContaierRef = viewContaierRef;
|
|
1006
|
-
}
|
|
1007
|
-
SvgIconComponent.prototype.createSvg = function () {
|
|
1008
|
-
if (!!this.iconName) {
|
|
1009
|
-
Survey__namespace.createSvg(this.size, this.width, this.height, this.iconName, this.viewContaierRef.element.nativeElement, this.title);
|
|
1010
|
-
}
|
|
1011
|
-
};
|
|
1012
|
-
Object.defineProperty(SvgIconComponent.prototype, "rootClass", {
|
|
1013
|
-
get: function () {
|
|
1014
|
-
var className = "sv-svg-icon";
|
|
1015
|
-
if (!this.css && !!this.partCss) {
|
|
1016
|
-
className += " " + this.partCss;
|
|
1017
|
-
}
|
|
1018
|
-
else if (!!this.css) {
|
|
1019
|
-
className = this.css;
|
|
1020
|
-
}
|
|
1021
|
-
return className;
|
|
1022
|
-
},
|
|
1023
|
-
enumerable: false,
|
|
1024
|
-
configurable: true
|
|
1025
|
-
});
|
|
1026
|
-
Object.defineProperty(SvgIconComponent.prototype, "rootRole", {
|
|
1027
|
-
get: function () {
|
|
1028
|
-
return "img";
|
|
1029
|
-
},
|
|
1030
|
-
enumerable: false,
|
|
1031
|
-
configurable: true
|
|
1032
|
-
});
|
|
1033
|
-
Object.defineProperty(SvgIconComponent.prototype, "ariaLabel", {
|
|
1034
|
-
get: function () {
|
|
1035
|
-
return this.title;
|
|
1036
|
-
},
|
|
1037
|
-
enumerable: false,
|
|
1038
|
-
configurable: true
|
|
1039
|
-
});
|
|
1040
|
-
SvgIconComponent.prototype.ngOnChanges = function () {
|
|
1041
|
-
var el = this.viewContaierRef.element.nativeElement;
|
|
1042
|
-
el.innerHTML = "";
|
|
1043
|
-
el.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "use"));
|
|
1044
|
-
this.createSvg();
|
|
1045
|
-
};
|
|
1046
|
-
return SvgIconComponent;
|
|
1047
|
-
}());
|
|
1048
|
-
SvgIconComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SvgIconComponent, deps: [{ token: i0__namespace.ViewContainerRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1049
|
-
SvgIconComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: { size: "size", width: "width", height: "height", iconName: "iconName", partCss: "partCss", css: "css", title: "title" }, host: { properties: { "class": "this.rootClass", "[attr.role]": "this.rootRole", "[attr.aria-label]": "this.ariaLabel" } }, usesOnChanges: true, ngImport: i0__namespace, template: "", isInline: true });
|
|
1050
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SvgIconComponent, decorators: [{
|
|
1051
|
-
type: i0.Component,
|
|
1052
|
-
args: [{
|
|
1053
|
-
selector: "'[sv-ng-svg-icon]'",
|
|
1054
|
-
template: ""
|
|
1055
|
-
}]
|
|
1056
|
-
}], ctorParameters: function () { return [{ type: i0__namespace.ViewContainerRef }]; }, propDecorators: { size: [{
|
|
1057
|
-
type: i0.Input
|
|
1058
|
-
}], width: [{
|
|
1059
|
-
type: i0.Input
|
|
1060
|
-
}], height: [{
|
|
1061
|
-
type: i0.Input
|
|
1062
|
-
}], iconName: [{
|
|
1063
|
-
type: i0.Input
|
|
1064
|
-
}], partCss: [{
|
|
1065
|
-
type: i0.Input
|
|
1066
|
-
}], css: [{
|
|
1067
|
-
type: i0.Input
|
|
1068
|
-
}], title: [{
|
|
1069
|
-
type: i0.Input
|
|
1070
|
-
}], rootClass: [{
|
|
1071
|
-
type: i0.HostBinding,
|
|
1072
|
-
args: ["class"]
|
|
1073
|
-
}], rootRole: [{
|
|
1074
|
-
type: i0.HostBinding,
|
|
1075
|
-
args: ["[attr.role]"]
|
|
1076
|
-
}], ariaLabel: [{
|
|
1077
|
-
type: i0.HostBinding,
|
|
1078
|
-
args: ["[attr.aria-label]"]
|
|
1079
|
-
}] } });
|
|
1080
|
-
|
|
1081
|
-
var TimerPanelComponent = /** @class */ (function (_super) {
|
|
1082
|
-
__extends(TimerPanelComponent, _super);
|
|
1083
|
-
function TimerPanelComponent() {
|
|
1084
|
-
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
1085
|
-
_this.circleLengthValue = 440;
|
|
1086
|
-
return _this;
|
|
1087
|
-
}
|
|
1088
|
-
TimerPanelComponent.prototype.getStateElement = function () {
|
|
1089
|
-
return this.model;
|
|
1090
|
-
};
|
|
1091
|
-
TimerPanelComponent.prototype.getModel = function () {
|
|
1092
|
-
return this.model;
|
|
1093
|
-
};
|
|
1094
|
-
Object.defineProperty(TimerPanelComponent.prototype, "circleLength", {
|
|
1095
|
-
get: function () {
|
|
1096
|
-
return this.circleLengthValue;
|
|
1097
|
-
},
|
|
1098
|
-
enumerable: false,
|
|
1099
|
-
configurable: true
|
|
1100
|
-
});
|
|
1101
|
-
Object.defineProperty(TimerPanelComponent.prototype, "progress", {
|
|
1102
|
-
get: function () {
|
|
1103
|
-
return -this.model.progress * this.circleLength;
|
|
1104
|
-
},
|
|
1105
|
-
enumerable: false,
|
|
1106
|
-
configurable: true
|
|
1107
|
-
});
|
|
1108
|
-
return TimerPanelComponent;
|
|
1109
|
-
}(BaseAngular));
|
|
1110
|
-
TimerPanelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: TimerPanelComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1111
|
-
TimerPanelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TimerPanelComponent, selector: "sv-timer-panel", inputs: { model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<div *ngIf=\"model.showTimerAsClock\" [class]=\"model.rootCss\">\n <svg *ngIf=\"model.showProgress\" [class]=\"model.getProgressCss()\" [style.stroke-dasharray]=\"circleLength\" [style.stroke-dashoffset]=\"progress\" [size]=\"'auto'\" [iconName]=\"'icon-timercircle'\" sv-ng-svg-icon></svg>\n <div [class]=\"model.textContainerCss\">\n <span [class]=\"model.majorTextCss\">{{ model.clockMajorText }}</span>\n <span *ngIf=\"model.clockMinorText\" [class]=\"model.minorTextCss\">{{ model.clockMinorText }}</span>\n </div>\n</div>\n<div *ngIf=\"!model.showTimerAsClock\" [class]='model.survey.getCss().timerRoot'>{{model.text}}</div>", components: [{ type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1112
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: TimerPanelComponent, decorators: [{
|
|
1113
|
-
type: i0.Component,
|
|
1114
|
-
args: [{
|
|
1115
|
-
selector: "sv-timer-panel",
|
|
1116
|
-
templateUrl: "./timer-panel.component.html",
|
|
1117
|
-
}]
|
|
1118
|
-
}], propDecorators: { model: [{
|
|
1119
|
-
type: i0.Input
|
|
1120
|
-
}] } });
|
|
1121
|
-
|
|
1122
1003
|
var ElementComponent = /** @class */ (function (_super) {
|
|
1123
1004
|
__extends(ElementComponent, _super);
|
|
1124
1005
|
function ElementComponent() {
|
|
@@ -1381,7 +1262,7 @@
|
|
|
1381
1262
|
return SurveyContentComponent;
|
|
1382
1263
|
}(BaseAngular));
|
|
1383
1264
|
SurveyContentComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyContentComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1384
|
-
SurveyContentComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SurveyContentComponent, selector: "survey-content", inputs: { model: "model" }, viewQueries: [{ propertyName: "rootEl", first: true, predicate: ["surveyContainer"], descendants: true }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div #surveyContainer *ngIf=\"!!model\" [class]=\"model.getRootCss()\">\n <form onsubmit=\"return false;\">\n <div class=\"sv_custom_header\" [hidden]=\"model.hasLogo\"></div>\n <div [class]=\"model.css.container\">\n <div *ngIf=\"model.renderedHasHeader\" [class]=\"model.css.header\" [survey]=\"model\" sv-ng-survey-header></div>\n <ng-
|
|
1265
|
+
SurveyContentComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SurveyContentComponent, selector: "survey-content", inputs: { model: "model" }, viewQueries: [{ propertyName: "rootEl", first: true, predicate: ["surveyContainer"], descendants: true }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div #surveyContainer *ngIf=\"!!model\" [class]=\"model.getRootCss()\">\n <form onsubmit=\"return false;\">\n <div class=\"sv_custom_header\" [hidden]=\"model.hasLogo\"></div>\n <div [class]=\"model.css.container\">\n <div *ngIf=\"model.renderedHasHeader\" [class]=\"model.css.header\" [survey]=\"model\" sv-ng-survey-header></div>\n <ng-template [component]=\"{ name: 'sv-components-container', data: { survey: model, container: 'header', needRenderWrapper: false } }\"></ng-template>\n <div [class]=\"model.bodyContainerCss\">\n <ng-template [component]=\"{ name: 'sv-components-container', data: { survey: model, container: 'left' } }\"></ng-template>\n <div *ngIf=\"model.isShowingPage\" [class]=\"model.bodyCss\" [style.maxWidth]=\"model.renderedWidth\" [id]=\"model.activePage ? model.activePage.id : ''\">\n <ng-template [component]=\"{ name: 'sv-components-container', data: { survey: model, container: 'contentTop' } }\"></ng-template>\n <!-- ko if: activePage -->\n <ng-container *ngIf=\"model.activePage\">\n <sv-ng-page [model]=\"model.activePage\" [survey]=\"model\"></sv-ng-page>\n </ng-container>\n <!-- ko if: activePage.rows.length == 0 && $data.emptyPageTemplate -->\n <!-- ko template: { name: emptyPageTemplate, data: $data.emptyPageTemplateData || $data } -->\n <!-- /ko -->\n <!-- /ko -->\n <!-- /ko -->\n <ng-template [component]=\"{ name: 'sv-components-container', data: { survey: model, container: 'contentBottom' } }\"></ng-template>\n </div>\n <ng-template [component]=\"{ name: 'sv-components-container', data: { survey: model, container: 'right' } }\"></ng-template>\n </div>\n <ng-template [component]=\"{ name: 'sv-components-container', data: { survey: model, container: 'footer', needRenderWrapper: false } }\"></ng-template>\n <div *ngIf=\"model.state === 'completed' && model.showCompletedPage\" [class]=\"model.completedCss\"\n [innerHtml]=\"model.processedCompletedHtml\"></div>\n <div *ngIf=\"model.state === 'completedbefore'\" [class]=\"model.css.body\"\n [innerHtml]=\"model.processedCompletedBeforeHtml\"></div>\n <div *ngIf=\"model.state === 'loading'\" [class]=\"model.css.body\" [innerHtml]=\"model.processedLoadingHtml\"></div>\n <div *ngIf=\"model.state === 'empty'\" [class]=\"model.css.bodyEmpty\">{{model.emptySurveyText}}</div>\n </div>\n </form>\n <sv-brand-info *ngIf=\"model.showBrandInfo\"></sv-brand-info>\n <sv-notifier [notifier]=\"model.notifier\"></sv-notifier>\n </div>\n</ng-template>", components: [{ type: SurveyHeaderComponent, selector: "'[sv-ng-survey-header]'", inputs: ["survey"] }, { type: PageComponent, selector: "page, sv-ng-page", inputs: ["model", "survey"] }, { type: BrandInfoComponent, selector: "sv-brand-info" }, { type: NotifierComponent, selector: "sv-notifier", inputs: ["notifier"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3__namespace.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i3__namespace.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i3__namespace.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
|
|
1385
1266
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyContentComponent, decorators: [{
|
|
1386
1267
|
type: i0.Component,
|
|
1387
1268
|
args: [{
|
|
@@ -1643,7 +1524,7 @@
|
|
|
1643
1524
|
return QuestionComponent;
|
|
1644
1525
|
}(EmbeddedViewContentComponent));
|
|
1645
1526
|
QuestionComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1646
|
-
QuestionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionComponent, selector: "sv-ng-question", inputs: { model: "model" }, viewQueries: [{ propertyName: "rootEl", first: true, predicate: ["elementContainer"], descendants: true }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"!!model\" #elementContainer [class]=\"model.getRootCss()\" [style]=\"
|
|
1527
|
+
QuestionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionComponent, selector: "sv-ng-question", inputs: { model: "model" }, viewQueries: [{ propertyName: "rootEl", first: true, predicate: ["elementContainer"], descendants: true }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"!!model\" #elementContainer [class]=\"model.getRootCss()\" [style]=\"model.getRootStyle()\" [id]=\"model.id\" [attr.data-name]=\"model.name\" [attr.role]=\"model.ariaRole\" [attr.aria-required]=\"model.ariaRequired\" [attr.aria-invalid]=\"model.ariaInvalid\" [attr.aria-labelledby]=\"model.ariaLabelledBy\">\n <div *ngIf=\"model.showErrorsAboveQuestion && model.hasVisibleErrors\" [element]=\"model\" sv-ng-errors></div>\n <div [element]=\"model\" *ngIf=\"model.hasTitleOnLeftTop\" sv-ng-element-header></div>\n <div [class]=\"model.cssContent\" role=\"presentation\" [visible]=\"!model.isCollapsed\">\n <div *ngIf=\"model.showErrorOnTop && model.hasVisibleErrors\" [element]=\"model\" sv-ng-errors></div>\n <ng-template [component]=\"{ name: getQuestionContentWrapperComponentName(), data: getQuestionContentWrapperComponentData(), default: 'skeleton-question' }\">\n </ng-template>\n <div *ngIf=\"model.hasComment\" [class]=\"model.getCommentAreaCss(false)\">\n <div [model]=\"model.locCommentText\" sv-ng-string></div>\n <sv-ng-comment [question]=\"model\"></sv-ng-comment>\n </div>\n <div *ngIf=\"model.showErrorOnBottom && model.hasVisibleErrors\" [element]=\"model\" sv-ng-errors></div>\n <div *ngIf=\"model.isErrorsModeTooltip && model.hasVisibleErrors\" [element]=\"model\" [location]=\"'tooltip'\" sv-ng-errors></div>\n <div *ngIf=\"model.hasDescriptionUnderInput\" [class]=\"model.cssDescription\" [model]=\"model.locDescription\" sv-ng-string></div>\n </div>\n <div [element]=\"model\" *ngIf=\"model.hasTitleOnBottom\" sv-ng-element-header></div>\n <div *ngIf=\"model.showErrorsBelowQuestion && model.hasVisibleErrors\" [element]=\"model\" sv-ng-errors></div>\n </div>\n</ng-template>", components: [{ type: ErrorsComponent, selector: "'[sv-ng-errors]'", inputs: ["element", "location"] }, { type: ElementHeaderComponent, selector: "'[sv-ng-element-header]'", inputs: ["element"] }, { type: SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: SurveyCommentComponent, selector: "sv-ng-comment, '[sv-ng-comment]'", inputs: ["question"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: VisibleDirective, selector: "[visible]", inputs: ["visible"] }, { type: DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
|
|
1647
1528
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionComponent, decorators: [{
|
|
1648
1529
|
type: i0.Component,
|
|
1649
1530
|
args: [{
|
|
@@ -1788,6 +1669,84 @@
|
|
|
1788
1669
|
}] } });
|
|
1789
1670
|
AngularComponentFactory.Instance.registerComponent("skeleton-question", QuestionSkeletonComponent);
|
|
1790
1671
|
|
|
1672
|
+
var SvgIconComponent = /** @class */ (function () {
|
|
1673
|
+
function SvgIconComponent(viewContaierRef) {
|
|
1674
|
+
this.viewContaierRef = viewContaierRef;
|
|
1675
|
+
}
|
|
1676
|
+
SvgIconComponent.prototype.createSvg = function () {
|
|
1677
|
+
if (!!this.iconName) {
|
|
1678
|
+
Survey__namespace.createSvg(this.size, this.width, this.height, this.iconName, this.viewContaierRef.element.nativeElement, this.title);
|
|
1679
|
+
}
|
|
1680
|
+
};
|
|
1681
|
+
Object.defineProperty(SvgIconComponent.prototype, "rootClass", {
|
|
1682
|
+
get: function () {
|
|
1683
|
+
var className = "sv-svg-icon";
|
|
1684
|
+
if (!this.css && !!this.partCss) {
|
|
1685
|
+
className += " " + this.partCss;
|
|
1686
|
+
}
|
|
1687
|
+
else if (!!this.css) {
|
|
1688
|
+
className = this.css;
|
|
1689
|
+
}
|
|
1690
|
+
return className;
|
|
1691
|
+
},
|
|
1692
|
+
enumerable: false,
|
|
1693
|
+
configurable: true
|
|
1694
|
+
});
|
|
1695
|
+
Object.defineProperty(SvgIconComponent.prototype, "rootRole", {
|
|
1696
|
+
get: function () {
|
|
1697
|
+
return "img";
|
|
1698
|
+
},
|
|
1699
|
+
enumerable: false,
|
|
1700
|
+
configurable: true
|
|
1701
|
+
});
|
|
1702
|
+
Object.defineProperty(SvgIconComponent.prototype, "ariaLabel", {
|
|
1703
|
+
get: function () {
|
|
1704
|
+
return this.title;
|
|
1705
|
+
},
|
|
1706
|
+
enumerable: false,
|
|
1707
|
+
configurable: true
|
|
1708
|
+
});
|
|
1709
|
+
SvgIconComponent.prototype.ngOnChanges = function () {
|
|
1710
|
+
var el = this.viewContaierRef.element.nativeElement;
|
|
1711
|
+
el.innerHTML = "";
|
|
1712
|
+
el.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "use"));
|
|
1713
|
+
this.createSvg();
|
|
1714
|
+
};
|
|
1715
|
+
return SvgIconComponent;
|
|
1716
|
+
}());
|
|
1717
|
+
SvgIconComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SvgIconComponent, deps: [{ token: i0__namespace.ViewContainerRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1718
|
+
SvgIconComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: { size: "size", width: "width", height: "height", iconName: "iconName", partCss: "partCss", css: "css", title: "title" }, host: { properties: { "class": "this.rootClass", "[attr.role]": "this.rootRole", "[attr.aria-label]": "this.ariaLabel" } }, usesOnChanges: true, ngImport: i0__namespace, template: "", isInline: true });
|
|
1719
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SvgIconComponent, decorators: [{
|
|
1720
|
+
type: i0.Component,
|
|
1721
|
+
args: [{
|
|
1722
|
+
selector: "'[sv-ng-svg-icon]'",
|
|
1723
|
+
template: ""
|
|
1724
|
+
}]
|
|
1725
|
+
}], ctorParameters: function () { return [{ type: i0__namespace.ViewContainerRef }]; }, propDecorators: { size: [{
|
|
1726
|
+
type: i0.Input
|
|
1727
|
+
}], width: [{
|
|
1728
|
+
type: i0.Input
|
|
1729
|
+
}], height: [{
|
|
1730
|
+
type: i0.Input
|
|
1731
|
+
}], iconName: [{
|
|
1732
|
+
type: i0.Input
|
|
1733
|
+
}], partCss: [{
|
|
1734
|
+
type: i0.Input
|
|
1735
|
+
}], css: [{
|
|
1736
|
+
type: i0.Input
|
|
1737
|
+
}], title: [{
|
|
1738
|
+
type: i0.Input
|
|
1739
|
+
}], rootClass: [{
|
|
1740
|
+
type: i0.HostBinding,
|
|
1741
|
+
args: ["class"]
|
|
1742
|
+
}], rootRole: [{
|
|
1743
|
+
type: i0.HostBinding,
|
|
1744
|
+
args: ["[attr.role]"]
|
|
1745
|
+
}], ariaLabel: [{
|
|
1746
|
+
type: i0.HostBinding,
|
|
1747
|
+
args: ["[attr.aria-label]"]
|
|
1748
|
+
}] } });
|
|
1749
|
+
|
|
1791
1750
|
var DropdownComponent = /** @class */ (function (_super) {
|
|
1792
1751
|
__extends(DropdownComponent, _super);
|
|
1793
1752
|
function DropdownComponent() {
|
|
@@ -2377,7 +2336,7 @@
|
|
|
2377
2336
|
function CheckboxItemComponent() {
|
|
2378
2337
|
}
|
|
2379
2338
|
CheckboxItemComponent.prototype.onChange = function (event) {
|
|
2380
|
-
this.question
|
|
2339
|
+
this.question["clickItemHandler"](this.model, event.target.checked);
|
|
2381
2340
|
};
|
|
2382
2341
|
CheckboxItemComponent.prototype.onSelectAllChange = function (event) {
|
|
2383
2342
|
this.question.toggleSelectAll();
|
|
@@ -2450,7 +2409,7 @@
|
|
|
2450
2409
|
return RatingQuestionComponent;
|
|
2451
2410
|
}(QuestionAngular));
|
|
2452
2411
|
RatingQuestionComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: RatingQuestionComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2453
|
-
RatingQuestionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: RatingQuestionComponent, selector: "sv-ng-rating-question", usesInheritance: true, ngImport: i0__namespace, template: " <div [class]=\"model.ratingRootCss\" #contentElement>\n <fieldset role=\"radiogroup\">\n <legend role=\"presentation\" class=\"sv-hidden\"></legend>\n <span *ngIf=\"model.hasMinLabel\" [class]=\"model.cssClasses.minText\" [model]=\"model.locMinRateDescription\" sv-ng-string>\n </span>\n <ng-template *ngFor=\"let item of model.renderedRateItems; index as index; trackBy: trackByFn\" [component]=\"{ name:
|
|
2412
|
+
RatingQuestionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: RatingQuestionComponent, selector: "sv-ng-rating-question", usesInheritance: true, ngImport: i0__namespace, template: " <div [class]=\"model.ratingRootCss\" #contentElement>\n <fieldset role=\"radiogroup\">\n <legend role=\"presentation\" class=\"sv-hidden\"></legend>\n <span *ngIf=\"model.hasMinLabel\" [class]=\"model.cssClasses.minText\" [model]=\"model.locMinRateDescription\" sv-ng-string>\n </span>\n <ng-template *ngFor=\"let item of model.renderedRateItems; index as index; trackBy: trackByFn\" [component]=\"{ name: model.itemComponentName, data: {model: model, item: item, index: index }}\"></ng-template>\n <span *ngIf=\"model.hasMaxLabel\" [class]=\"model.cssClasses.maxText\" [model]=\"model.locMaxRateDescription\" sv-ng-string></span>\n </fieldset>\n </div>\n", components: [{ type: SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
|
|
2454
2413
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: RatingQuestionComponent, decorators: [{
|
|
2455
2414
|
type: i0.Component,
|
|
2456
2415
|
args: [{
|
|
@@ -2610,6 +2569,45 @@
|
|
|
2610
2569
|
}]
|
|
2611
2570
|
}] });
|
|
2612
2571
|
|
|
2572
|
+
var ComponentsContainerComponent = /** @class */ (function (_super) {
|
|
2573
|
+
__extends(ComponentsContainerComponent, _super);
|
|
2574
|
+
function ComponentsContainerComponent() {
|
|
2575
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2576
|
+
}
|
|
2577
|
+
Object.defineProperty(ComponentsContainerComponent.prototype, "components", {
|
|
2578
|
+
get: function () {
|
|
2579
|
+
return this.survey.getContainerContent(this.container);
|
|
2580
|
+
},
|
|
2581
|
+
enumerable: false,
|
|
2582
|
+
configurable: true
|
|
2583
|
+
});
|
|
2584
|
+
Object.defineProperty(ComponentsContainerComponent.prototype, "isNeedRenderWrapper", {
|
|
2585
|
+
get: function () {
|
|
2586
|
+
return this.needRenderWrapper === false ? false : true;
|
|
2587
|
+
},
|
|
2588
|
+
enumerable: false,
|
|
2589
|
+
configurable: true
|
|
2590
|
+
});
|
|
2591
|
+
return ComponentsContainerComponent;
|
|
2592
|
+
}(EmbeddedViewContentComponent));
|
|
2593
|
+
ComponentsContainerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ComponentsContainerComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2594
|
+
ComponentsContainerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ComponentsContainerComponent, selector: "sv-components-container, [sv-components-container], sv-ng-components-container", inputs: { survey: "survey", container: "container", needRenderWrapper: "needRenderWrapper" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <ng-container *ngIf=\"isNeedRenderWrapper\">\n <div *ngIf=\"components.length > 0\" class=\"sv-components-column\">\n <ng-container *ngFor=\"let component of components\">\n <ng-template [component]=\"{ name: component.component, data: { survey: survey, model: component.data } }\"></ng-template>\n </ng-container>\n </div>\n </ng-container>\n <ng-container *ngIf=\"!isNeedRenderWrapper && components.length > 0\">\n <ng-container *ngFor=\"let component of components\">\n <ng-template [component]=\"{ name: component.component, data: { survey: survey, model: component.data } }\"></ng-template>\n </ng-container>\n </ng-container>\n</ng-template>", styles: [":host{display:none}\n"], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
|
|
2595
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ComponentsContainerComponent, decorators: [{
|
|
2596
|
+
type: i0.Component,
|
|
2597
|
+
args: [{
|
|
2598
|
+
selector: "sv-components-container, [sv-components-container], sv-ng-components-container",
|
|
2599
|
+
templateUrl: "./components-container.component.html",
|
|
2600
|
+
styleUrls: ["./hide-host.scss"]
|
|
2601
|
+
}]
|
|
2602
|
+
}], propDecorators: { survey: [{
|
|
2603
|
+
type: i0.Input
|
|
2604
|
+
}], container: [{
|
|
2605
|
+
type: i0.Input
|
|
2606
|
+
}], needRenderWrapper: [{
|
|
2607
|
+
type: i0.Input
|
|
2608
|
+
}] } });
|
|
2609
|
+
AngularComponentFactory.Instance.registerComponent("sv-components-container", ComponentsContainerComponent);
|
|
2610
|
+
|
|
2613
2611
|
var Key2ClickDirective = /** @class */ (function () {
|
|
2614
2612
|
function Key2ClickDirective(el) {
|
|
2615
2613
|
var _this = this;
|
|
@@ -2791,6 +2789,48 @@
|
|
|
2791
2789
|
}] } });
|
|
2792
2790
|
AngularComponentFactory.Instance.registerComponent("sv-skeleton", SkeletonComponent);
|
|
2793
2791
|
|
|
2792
|
+
var TimerPanelComponent = /** @class */ (function (_super) {
|
|
2793
|
+
__extends(TimerPanelComponent, _super);
|
|
2794
|
+
function TimerPanelComponent() {
|
|
2795
|
+
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
2796
|
+
_this.circleLengthValue = 440;
|
|
2797
|
+
return _this;
|
|
2798
|
+
}
|
|
2799
|
+
TimerPanelComponent.prototype.getStateElement = function () {
|
|
2800
|
+
return this.model;
|
|
2801
|
+
};
|
|
2802
|
+
TimerPanelComponent.prototype.getModel = function () {
|
|
2803
|
+
return this.model;
|
|
2804
|
+
};
|
|
2805
|
+
Object.defineProperty(TimerPanelComponent.prototype, "circleLength", {
|
|
2806
|
+
get: function () {
|
|
2807
|
+
return this.circleLengthValue;
|
|
2808
|
+
},
|
|
2809
|
+
enumerable: false,
|
|
2810
|
+
configurable: true
|
|
2811
|
+
});
|
|
2812
|
+
Object.defineProperty(TimerPanelComponent.prototype, "progress", {
|
|
2813
|
+
get: function () {
|
|
2814
|
+
return -this.model.progress * this.circleLength;
|
|
2815
|
+
},
|
|
2816
|
+
enumerable: false,
|
|
2817
|
+
configurable: true
|
|
2818
|
+
});
|
|
2819
|
+
return TimerPanelComponent;
|
|
2820
|
+
}(BaseAngular));
|
|
2821
|
+
TimerPanelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: TimerPanelComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2822
|
+
TimerPanelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TimerPanelComponent, selector: "sv-timerpanel", inputs: { model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<div *ngIf=\"model.isRunning && model.showTimerAsClock\" [class]=\"model.rootCss\">\n <svg *ngIf=\"model.showProgress\" [class]=\"model.getProgressCss()\" [style.stroke-dasharray]=\"circleLength\" [style.stroke-dashoffset]=\"progress\" [size]=\"'auto'\" [iconName]=\"'icon-timercircle'\" sv-ng-svg-icon></svg>\n <div [class]=\"model.textContainerCss\">\n <span [class]=\"model.majorTextCss\">{{ model.clockMajorText }}</span>\n <span *ngIf=\"model.clockMinorText\" [class]=\"model.minorTextCss\">{{ model.clockMinorText }}</span>\n </div>\n</div>\n<div *ngIf=\"model.isRunning && !model.showTimerAsClock\" [class]='model.survey.getCss().timerRoot'>{{model.text}}</div>", components: [{ type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2823
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: TimerPanelComponent, decorators: [{
|
|
2824
|
+
type: i0.Component,
|
|
2825
|
+
args: [{
|
|
2826
|
+
selector: "sv-timerpanel",
|
|
2827
|
+
templateUrl: "./timer-panel.component.html",
|
|
2828
|
+
}]
|
|
2829
|
+
}], propDecorators: { model: [{
|
|
2830
|
+
type: i0.Input
|
|
2831
|
+
}] } });
|
|
2832
|
+
AngularComponentFactory.Instance.registerComponent("sv-timerpanel", TimerPanelComponent);
|
|
2833
|
+
|
|
2794
2834
|
var ListItemComponent = /** @class */ (function (_super) {
|
|
2795
2835
|
__extends(ListItemComponent, _super);
|
|
2796
2836
|
function ListItemComponent() {
|
|
@@ -2909,7 +2949,7 @@
|
|
|
2909
2949
|
event.stopPropagation();
|
|
2910
2950
|
};
|
|
2911
2951
|
RatingItemComponent.prototype.getModel = function () {
|
|
2912
|
-
return this.
|
|
2952
|
+
return this.item;
|
|
2913
2953
|
};
|
|
2914
2954
|
return RatingItemComponent;
|
|
2915
2955
|
}(BaseAngular));
|
|
@@ -2933,6 +2973,40 @@
|
|
|
2933
2973
|
}] } });
|
|
2934
2974
|
AngularComponentFactory.Instance.registerComponent("sv-rating-item", RatingItemComponent);
|
|
2935
2975
|
|
|
2976
|
+
var RatingItemStarComponent = /** @class */ (function (_super) {
|
|
2977
|
+
__extends(RatingItemStarComponent, _super);
|
|
2978
|
+
function RatingItemStarComponent() {
|
|
2979
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2980
|
+
}
|
|
2981
|
+
RatingItemStarComponent.prototype.onClick = function (event) {
|
|
2982
|
+
this.model.setValueFromClick(event.target.value);
|
|
2983
|
+
event.stopPropagation();
|
|
2984
|
+
};
|
|
2985
|
+
RatingItemStarComponent.prototype.getModel = function () {
|
|
2986
|
+
return this.item;
|
|
2987
|
+
};
|
|
2988
|
+
return RatingItemStarComponent;
|
|
2989
|
+
}(BaseAngular));
|
|
2990
|
+
RatingItemStarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: RatingItemStarComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2991
|
+
RatingItemStarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: RatingItemStarComponent, selector: "sv-ng-rating-item-star", inputs: { element: "element", model: "model", item: "item", index: "index" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <label [class]=\"model.getItemClass(item.itemValue, item.highlight)\" (mouseover)=\"model.onItemMouseIn(item)\" (mouseout)=\"model.onItemMouseOut(item)\">\n <input type=\"radio\"\n class=\"sv-visuallyhidden\"\n [attr.name]=\"model.name\" [attr.id]=\"model.getInputId(index)\" [value]=\"item.value\" [attr.aria-required]=\"model.ariaRequired\" [attr.aria-label]=\"model.ariaLabel\" [attr.aria-invalid]=\"model.ariaInvalid\" [attr.aria-describedby]=\"model.ariaDescribedBy\"\n [disabled]=\"model.isInputReadOnly\" [checked]=\"model.value === item.value\" (click)=\"onClick($event)\"\n />\n <svg [iconName]=\"'icon-rating-star'\" [size]=\"48\" [title]=\"item.text\" [class]=\"'sv-star'\" sv-ng-svg-icon></svg>\n <svg [iconName]=\"'icon-rating-star-2'\" [size]=\"48\" [title]=\"item.text\" [class]=\"'sv-star-2'\" sv-ng-svg-icon></svg>\n </label>\n</ng-template>", styles: [":host{display:none}\n"], components: [{ type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }] });
|
|
2992
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: RatingItemStarComponent, decorators: [{
|
|
2993
|
+
type: i0.Component,
|
|
2994
|
+
args: [{
|
|
2995
|
+
selector: "sv-ng-rating-item-star",
|
|
2996
|
+
templateUrl: "./rating-item-star.component.html",
|
|
2997
|
+
styleUrls: ["../../hide-host.scss"],
|
|
2998
|
+
}]
|
|
2999
|
+
}], propDecorators: { element: [{
|
|
3000
|
+
type: i0.Input
|
|
3001
|
+
}], model: [{
|
|
3002
|
+
type: i0.Input
|
|
3003
|
+
}], item: [{
|
|
3004
|
+
type: i0.Input
|
|
3005
|
+
}], index: [{
|
|
3006
|
+
type: i0.Input
|
|
3007
|
+
}] } });
|
|
3008
|
+
AngularComponentFactory.Instance.registerComponent("sv-rating-item-star", RatingItemStarComponent);
|
|
3009
|
+
|
|
2936
3010
|
var RatingDropdownComponent = /** @class */ (function () {
|
|
2937
3011
|
function RatingDropdownComponent() {
|
|
2938
3012
|
}
|
|
@@ -3038,8 +3112,8 @@
|
|
|
3038
3112
|
AngularComponentFactory.Instance.registerComponent("sv-progress-progress", ProgressDefaultComponent);
|
|
3039
3113
|
AngularComponentFactory.Instance.registerComponent("sv-progress-pages", ProgressDefaultComponent);
|
|
3040
3114
|
AngularComponentFactory.Instance.registerComponent("sv-progress-questions", ProgressDefaultComponent);
|
|
3041
|
-
AngularComponentFactory.Instance.registerComponent("sv-progress-
|
|
3042
|
-
AngularComponentFactory.Instance.registerComponent("sv-progress-
|
|
3115
|
+
AngularComponentFactory.Instance.registerComponent("sv-progress-correctquestions", ProgressDefaultComponent);
|
|
3116
|
+
AngularComponentFactory.Instance.registerComponent("sv-progress-requiredquestions", ProgressDefaultComponent);
|
|
3043
3117
|
|
|
3044
3118
|
var ProgressButtonsComponent = /** @class */ (function () {
|
|
3045
3119
|
function ProgressButtonsComponent(changeDetectorRef) {
|
|
@@ -3109,6 +3183,39 @@
|
|
|
3109
3183
|
}] } });
|
|
3110
3184
|
AngularComponentFactory.Instance.registerComponent("sv-progress-buttons", ProgressButtonsComponent);
|
|
3111
3185
|
|
|
3186
|
+
var ProgressTocComponent = /** @class */ (function (_super) {
|
|
3187
|
+
__extends(ProgressTocComponent, _super);
|
|
3188
|
+
function ProgressTocComponent() {
|
|
3189
|
+
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
3190
|
+
_this.containerCss = "sv_progress-toc";
|
|
3191
|
+
return _this;
|
|
3192
|
+
}
|
|
3193
|
+
ProgressTocComponent.prototype.createProgressTOCModel = function () {
|
|
3194
|
+
this.listModel = Survey.createTOCListModel(this.model);
|
|
3195
|
+
};
|
|
3196
|
+
ProgressTocComponent.prototype.ngOnInit = function () {
|
|
3197
|
+
_super.prototype.ngOnInit.call(this);
|
|
3198
|
+
this.createProgressTOCModel();
|
|
3199
|
+
};
|
|
3200
|
+
ProgressTocComponent.prototype.ngOnChanges = function (changes) {
|
|
3201
|
+
this.createProgressTOCModel();
|
|
3202
|
+
};
|
|
3203
|
+
return ProgressTocComponent;
|
|
3204
|
+
}(EmbeddedViewContentComponent));
|
|
3205
|
+
ProgressTocComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ProgressTocComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
3206
|
+
ProgressTocComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ProgressTocComponent, selector: "sv-progress-toc, sv-ng-progress-toc", inputs: { model: "model" }, usesInheritance: true, usesOnChanges: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div [class]=\"containerCss\">\n <sv-ng-list [model]=\"listModel\"></sv-ng-list>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: ListComponent, selector: "sv-ng-list, '[sv-ng-list]'", inputs: ["model"] }] });
|
|
3207
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ProgressTocComponent, decorators: [{
|
|
3208
|
+
type: i0.Component,
|
|
3209
|
+
args: [{
|
|
3210
|
+
selector: "sv-progress-toc, sv-ng-progress-toc",
|
|
3211
|
+
templateUrl: "./progress.component.html",
|
|
3212
|
+
styles: [":host { display: none; }"]
|
|
3213
|
+
}]
|
|
3214
|
+
}], propDecorators: { model: [{
|
|
3215
|
+
type: i0.Input
|
|
3216
|
+
}] } });
|
|
3217
|
+
AngularComponentFactory.Instance.registerComponent("sv-progress-toc", ProgressTocComponent);
|
|
3218
|
+
|
|
3112
3219
|
var PanelComponent = /** @class */ (function (_super) {
|
|
3113
3220
|
__extends(PanelComponent, _super);
|
|
3114
3221
|
function PanelComponent() {
|
|
@@ -4146,24 +4253,23 @@
|
|
|
4146
4253
|
SurveyModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyModule, declarations: [VisibleDirective, Key2ClickDirective, PanelDynamicAddBtn, PanelDynamicNextBtn, PanelDynamicPrevBtn, PanelDynamicProgressText, ElementComponent, TemplateRendererComponent,
|
|
4147
4254
|
SurveyComponent, SurveyContentComponent, PopupSurveyComponent, PageComponent, PanelComponent, QuestionComponent, StringViewerComponent, SurveyStringComponent, StringEditorComponent,
|
|
4148
4255
|
QuestionSkeletonComponent, TextQuestionComponent, RadiogroupComponent, RadiogroupItemComponent, CheckboxComponent, CheckboxItemComponent,
|
|
4149
|
-
CharacterCounterComponent,
|
|
4150
4256
|
DropdownComponent, DropdownQuestionComponent, DropdownSelectComponent, DropdownOptionItemComponent,
|
|
4151
4257
|
PopupComponent, PopupBaseContainerComponent, PopupPointerComponent,
|
|
4152
|
-
ListComponent, ListItemComponent, RatingItemComponent,
|
|
4258
|
+
CharacterCounterComponent, ListComponent, ListItemComponent, RatingItemComponent, RatingItemStarComponent,
|
|
4153
4259
|
TagboxFilterComponent, TagboxComponent, TagboxQuestionComponent, TagboxItemComponent,
|
|
4154
4260
|
ActionBarComponent, ActionComponent, ActionBarItemComponent, ActionBarItemDropdownComponent, HtmlQuestionComponent,
|
|
4155
4261
|
SelectBaseItemComponent, SelectBaseComponent, SurveyCommentComponent, SurveyCommentOtherComponent, ElementHeaderComponent, ElementTitleActionsComponent, ElementTitleComponent, DynamicHeadComponent, RowComponent,
|
|
4156
4262
|
RatingQuestionComponent, RatingDropdownComponent, BooleanQuestionComponent, BooleanCheckboxComponent, BooleanRadioComponent, BooleanRadioItemComponent, ImagePickerItemComponent, ImagePickerQuestionComponent, ImageQuestionComponent,
|
|
4157
|
-
SurveyHeaderComponent, ProgressDefaultComponent, ProgressButtonsComponent, SurveyNavigationButton, MatrixQuestionComponent, SvgIconComponent, FileQuestionComponent, SafeUrlPipe, SafeHtmlPipe, CommentQuestionComponent, SignaturePadQuestionComponent, ErrorsComponent,
|
|
4263
|
+
SurveyHeaderComponent, ProgressDefaultComponent, ProgressButtonsComponent, ProgressTocComponent, SurveyNavigationButton, MatrixQuestionComponent, SvgIconComponent, FileQuestionComponent, SafeUrlPipe, SafeHtmlPipe, CommentQuestionComponent, SignaturePadQuestionComponent, ErrorsComponent,
|
|
4158
4264
|
MultipleTextComponent, MultipleTextItemComponent, DynamicComponentDirective, RankingQuestionComponent, RankingItemComponent, PanelDynamicQuestionComponent, EmbeddedViewContentComponent, CustomWidgetComponent, MatrixCellComponent, MatrixTableComponent, MatrixDropdownComponent,
|
|
4159
4265
|
MatrixDynamicComponent, MatrixDetailButtonComponent, MatrixDynamicRemoveButtonComponent, MatrixDynamicDragDropIconComponent, MatrixRequiredHeader, ExpressionComponent, SafeResourceUrlPipe, BrandInfoComponent,
|
|
4160
4266
|
CustomQuestionComponent, CompositeQuestionComponent, ButtonGroupItemComponent, ButtonGroupQuestionComponent, MatrixRowComponent, ModalComponent, LogoImageComponent, SkeletonComponent, TimerPanelComponent, PaneldynamicRemoveButtonComponent,
|
|
4161
|
-
NotifierComponent], imports: [i2.CommonModule, i3.FormsModule], exports: [VisibleDirective, Key2ClickDirective, PanelDynamicAddBtn, PanelDynamicNextBtn, PanelDynamicPrevBtn, PanelDynamicProgressText, ElementComponent, TemplateRendererComponent,
|
|
4267
|
+
NotifierComponent, ComponentsContainerComponent], imports: [i2.CommonModule, i3.FormsModule], exports: [VisibleDirective, Key2ClickDirective, PanelDynamicAddBtn, PanelDynamicNextBtn, PanelDynamicPrevBtn, PanelDynamicProgressText, ElementComponent, TemplateRendererComponent,
|
|
4162
4268
|
SurveyComponent, SurveyContentComponent, PopupSurveyComponent, PageComponent, PanelComponent, QuestionComponent, StringViewerComponent, SurveyStringComponent, StringEditorComponent,
|
|
4163
4269
|
QuestionSkeletonComponent, TextQuestionComponent, RadiogroupComponent, RadiogroupItemComponent, CheckboxComponent, CheckboxItemComponent,
|
|
4164
4270
|
DropdownComponent, DropdownQuestionComponent, DropdownSelectComponent, DropdownOptionItemComponent,
|
|
4165
4271
|
PopupComponent, PopupBaseContainerComponent, PopupPointerComponent,
|
|
4166
|
-
ListComponent, ListItemComponent, RatingItemComponent,
|
|
4272
|
+
CharacterCounterComponent, ListComponent, ListItemComponent, RatingItemComponent, RatingItemStarComponent,
|
|
4167
4273
|
TagboxFilterComponent, TagboxComponent, TagboxQuestionComponent, TagboxItemComponent,
|
|
4168
4274
|
ActionBarComponent, ActionComponent, ActionBarItemComponent, ActionBarItemDropdownComponent, HtmlQuestionComponent,
|
|
4169
4275
|
SelectBaseItemComponent, SelectBaseComponent, SurveyCommentComponent, SurveyCommentOtherComponent, ElementHeaderComponent, ElementTitleComponent, DynamicHeadComponent, RowComponent,
|
|
@@ -4172,7 +4278,7 @@
|
|
|
4172
4278
|
MultipleTextComponent, MultipleTextItemComponent, DynamicComponentDirective, RankingQuestionComponent, RankingItemComponent, PanelDynamicQuestionComponent, EmbeddedViewContentComponent, CustomWidgetComponent, MatrixCellComponent, MatrixTableComponent, MatrixDropdownComponent,
|
|
4173
4279
|
MatrixDynamicComponent, MatrixDetailButtonComponent, MatrixDynamicRemoveButtonComponent, MatrixDynamicDragDropIconComponent, MatrixRequiredHeader, ExpressionComponent, SafeResourceUrlPipe,
|
|
4174
4280
|
CustomQuestionComponent, CompositeQuestionComponent, ButtonGroupQuestionComponent, ModalComponent, LogoImageComponent, SkeletonComponent, TimerPanelComponent, PaneldynamicRemoveButtonComponent,
|
|
4175
|
-
NotifierComponent] });
|
|
4281
|
+
NotifierComponent, ComponentsContainerComponent] });
|
|
4176
4282
|
SurveyModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyModule, providers: [PopupService], imports: [[
|
|
4177
4283
|
i2.CommonModule, i3.FormsModule
|
|
4178
4284
|
]] });
|
|
@@ -4183,19 +4289,18 @@
|
|
|
4183
4289
|
VisibleDirective, Key2ClickDirective, PanelDynamicAddBtn, PanelDynamicNextBtn, PanelDynamicPrevBtn, PanelDynamicProgressText, ElementComponent, TemplateRendererComponent,
|
|
4184
4290
|
SurveyComponent, SurveyContentComponent, PopupSurveyComponent, PageComponent, PanelComponent, QuestionComponent, StringViewerComponent, SurveyStringComponent, StringEditorComponent,
|
|
4185
4291
|
QuestionSkeletonComponent, TextQuestionComponent, RadiogroupComponent, RadiogroupItemComponent, CheckboxComponent, CheckboxItemComponent,
|
|
4186
|
-
CharacterCounterComponent,
|
|
4187
4292
|
DropdownComponent, DropdownQuestionComponent, DropdownSelectComponent, DropdownOptionItemComponent,
|
|
4188
4293
|
PopupComponent, PopupBaseContainerComponent, PopupPointerComponent,
|
|
4189
|
-
ListComponent, ListItemComponent, RatingItemComponent,
|
|
4294
|
+
CharacterCounterComponent, ListComponent, ListItemComponent, RatingItemComponent, RatingItemStarComponent,
|
|
4190
4295
|
TagboxFilterComponent, TagboxComponent, TagboxQuestionComponent, TagboxItemComponent,
|
|
4191
4296
|
ActionBarComponent, ActionComponent, ActionBarItemComponent, ActionBarItemDropdownComponent, HtmlQuestionComponent,
|
|
4192
4297
|
SelectBaseItemComponent, SelectBaseComponent, SurveyCommentComponent, SurveyCommentOtherComponent, ElementHeaderComponent, ElementTitleActionsComponent, ElementTitleComponent, DynamicHeadComponent, RowComponent,
|
|
4193
4298
|
RatingQuestionComponent, RatingDropdownComponent, BooleanQuestionComponent, BooleanCheckboxComponent, BooleanRadioComponent, BooleanRadioItemComponent, ImagePickerItemComponent, ImagePickerQuestionComponent, ImageQuestionComponent,
|
|
4194
|
-
SurveyHeaderComponent, ProgressDefaultComponent, ProgressButtonsComponent, SurveyNavigationButton, MatrixQuestionComponent, SvgIconComponent, FileQuestionComponent, SafeUrlPipe, SafeHtmlPipe, CommentQuestionComponent, SignaturePadQuestionComponent, ErrorsComponent,
|
|
4299
|
+
SurveyHeaderComponent, ProgressDefaultComponent, ProgressButtonsComponent, ProgressTocComponent, SurveyNavigationButton, MatrixQuestionComponent, SvgIconComponent, FileQuestionComponent, SafeUrlPipe, SafeHtmlPipe, CommentQuestionComponent, SignaturePadQuestionComponent, ErrorsComponent,
|
|
4195
4300
|
MultipleTextComponent, MultipleTextItemComponent, DynamicComponentDirective, RankingQuestionComponent, RankingItemComponent, PanelDynamicQuestionComponent, EmbeddedViewContentComponent, CustomWidgetComponent, MatrixCellComponent, MatrixTableComponent, MatrixDropdownComponent,
|
|
4196
4301
|
MatrixDynamicComponent, MatrixDetailButtonComponent, MatrixDynamicRemoveButtonComponent, MatrixDynamicDragDropIconComponent, MatrixRequiredHeader, ExpressionComponent, SafeResourceUrlPipe, BrandInfoComponent,
|
|
4197
4302
|
CustomQuestionComponent, CompositeQuestionComponent, ButtonGroupItemComponent, ButtonGroupQuestionComponent, MatrixRowComponent, ModalComponent, LogoImageComponent, SkeletonComponent, TimerPanelComponent, PaneldynamicRemoveButtonComponent,
|
|
4198
|
-
NotifierComponent
|
|
4303
|
+
NotifierComponent, ComponentsContainerComponent
|
|
4199
4304
|
],
|
|
4200
4305
|
imports: [
|
|
4201
4306
|
i2.CommonModule, i3.FormsModule
|
|
@@ -4206,7 +4311,7 @@
|
|
|
4206
4311
|
QuestionSkeletonComponent, TextQuestionComponent, RadiogroupComponent, RadiogroupItemComponent, CheckboxComponent, CheckboxItemComponent,
|
|
4207
4312
|
DropdownComponent, DropdownQuestionComponent, DropdownSelectComponent, DropdownOptionItemComponent,
|
|
4208
4313
|
PopupComponent, PopupBaseContainerComponent, PopupPointerComponent,
|
|
4209
|
-
ListComponent, ListItemComponent, RatingItemComponent,
|
|
4314
|
+
CharacterCounterComponent, ListComponent, ListItemComponent, RatingItemComponent, RatingItemStarComponent,
|
|
4210
4315
|
TagboxFilterComponent, TagboxComponent, TagboxQuestionComponent, TagboxItemComponent,
|
|
4211
4316
|
ActionBarComponent, ActionComponent, ActionBarItemComponent, ActionBarItemDropdownComponent, HtmlQuestionComponent,
|
|
4212
4317
|
SelectBaseItemComponent, SelectBaseComponent, SurveyCommentComponent, SurveyCommentOtherComponent, ElementHeaderComponent, ElementTitleComponent, DynamicHeadComponent, RowComponent,
|
|
@@ -4215,7 +4320,7 @@
|
|
|
4215
4320
|
MultipleTextComponent, MultipleTextItemComponent, DynamicComponentDirective, RankingQuestionComponent, RankingItemComponent, PanelDynamicQuestionComponent, EmbeddedViewContentComponent, CustomWidgetComponent, MatrixCellComponent, MatrixTableComponent, MatrixDropdownComponent,
|
|
4216
4321
|
MatrixDynamicComponent, MatrixDetailButtonComponent, MatrixDynamicRemoveButtonComponent, MatrixDynamicDragDropIconComponent, MatrixRequiredHeader, ExpressionComponent, SafeResourceUrlPipe,
|
|
4217
4322
|
CustomQuestionComponent, CompositeQuestionComponent, ButtonGroupQuestionComponent, ModalComponent, LogoImageComponent, SkeletonComponent, TimerPanelComponent, PaneldynamicRemoveButtonComponent,
|
|
4218
|
-
NotifierComponent
|
|
4323
|
+
NotifierComponent, ComponentsContainerComponent
|
|
4219
4324
|
],
|
|
4220
4325
|
providers: [PopupService],
|
|
4221
4326
|
}]
|
|
@@ -4241,6 +4346,7 @@
|
|
|
4241
4346
|
exports.CheckboxComponent = CheckboxComponent;
|
|
4242
4347
|
exports.CheckboxItemComponent = CheckboxItemComponent;
|
|
4243
4348
|
exports.CommentQuestionComponent = CommentQuestionComponent;
|
|
4349
|
+
exports.ComponentsContainerComponent = ComponentsContainerComponent;
|
|
4244
4350
|
exports.CompositeQuestionComponent = CompositeQuestionComponent;
|
|
4245
4351
|
exports.CustomQuestionComponent = CustomQuestionComponent;
|
|
4246
4352
|
exports.CustomWidgetComponent = CustomWidgetComponent;
|
|
@@ -4294,6 +4400,7 @@
|
|
|
4294
4400
|
exports.PopupSurveyComponent = PopupSurveyComponent;
|
|
4295
4401
|
exports.ProgressButtonsComponent = ProgressButtonsComponent;
|
|
4296
4402
|
exports.ProgressDefaultComponent = ProgressDefaultComponent;
|
|
4403
|
+
exports.ProgressTocComponent = ProgressTocComponent;
|
|
4297
4404
|
exports.QuestionAngular = QuestionAngular;
|
|
4298
4405
|
exports.QuestionComponent = QuestionComponent;
|
|
4299
4406
|
exports.QuestionSkeletonComponent = QuestionSkeletonComponent;
|
|
@@ -4303,6 +4410,7 @@
|
|
|
4303
4410
|
exports.RankingQuestionComponent = RankingQuestionComponent;
|
|
4304
4411
|
exports.RatingDropdownComponent = RatingDropdownComponent;
|
|
4305
4412
|
exports.RatingItemComponent = RatingItemComponent;
|
|
4413
|
+
exports.RatingItemStarComponent = RatingItemStarComponent;
|
|
4306
4414
|
exports.RatingQuestionComponent = RatingQuestionComponent;
|
|
4307
4415
|
exports.RowComponent = RowComponent;
|
|
4308
4416
|
exports.SafeHtmlPipe = SafeHtmlPipe;
|