survey-angular-ui 1.9.98 → 1.9.100
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/base-angular.d.ts +1 -1
- package/bundles/survey-angular-ui.umd.js +97 -88
- package/bundles/survey-angular-ui.umd.js.map +1 -1
- package/components/popup/modal-container.component.d.ts +1 -1
- package/esm2015/base-angular.js +2 -2
- package/esm2015/components/list/list-item.component.js +2 -2
- package/esm2015/components/popup/modal-container.component.js +7 -3
- package/esm2015/components/survey-header/logo-image.component.js +2 -2
- package/esm2015/popup.survey.component.js +10 -4
- package/esm2015/questions/image.component.js +2 -2
- package/esm2015/questions/imagepicker-item.component.js +2 -2
- package/esm2015/questions/paneldynamic.component.js +2 -2
- package/fesm2015/survey-angular-ui.js +83 -74
- package/fesm2015/survey-angular-ui.js.map +1 -1
- package/package.json +1 -1
- package/popup.survey.component.d.ts +2 -1
package/base-angular.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare abstract class BaseAngular<T extends Base = Base> extends Embedde
|
|
|
17
17
|
ngOnDestroy(): void;
|
|
18
18
|
private makeBaseElementAngular;
|
|
19
19
|
private unMakeBaseElementAngular;
|
|
20
|
-
|
|
20
|
+
protected update(key?: string): void;
|
|
21
21
|
private getChangeDetectorRef;
|
|
22
22
|
protected getPropertiesToUpdateSync(): Array<string>;
|
|
23
23
|
protected detectChanges(): void;
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
}
|
|
415
415
|
function __addDisposableResource(env, value, async) {
|
|
416
416
|
if (value !== null && value !== void 0) {
|
|
417
|
-
if (typeof value !== "object")
|
|
417
|
+
if (typeof value !== "object" && typeof value !== "function")
|
|
418
418
|
throw new TypeError("Object expected.");
|
|
419
419
|
var dispose;
|
|
420
420
|
if (async) {
|
|
@@ -597,7 +597,7 @@
|
|
|
597
597
|
if (this.getIsRendering())
|
|
598
598
|
return;
|
|
599
599
|
this.beforeUpdate();
|
|
600
|
-
if (this.getPropertiesToUpdateSync().indexOf(key) > -1) {
|
|
600
|
+
if (key && this.getPropertiesToUpdateSync().indexOf(key) > -1) {
|
|
601
601
|
this.detectChanges();
|
|
602
602
|
this.afterUpdate();
|
|
603
603
|
}
|
|
@@ -923,9 +923,9 @@
|
|
|
923
923
|
this.popupService = popupService;
|
|
924
924
|
this.functionDefined = false;
|
|
925
925
|
}
|
|
926
|
-
ModalComponent.prototype.showDialog = function (dialogOptions,
|
|
926
|
+
ModalComponent.prototype.showDialog = function (dialogOptions, rootElement) {
|
|
927
927
|
var _this = this;
|
|
928
|
-
this.model = Survey.createPopupModalViewModel(dialogOptions,
|
|
928
|
+
this.model = Survey.createPopupModalViewModel(dialogOptions, rootElement);
|
|
929
929
|
this.model.model.onHide = function () {
|
|
930
930
|
_this.portalHost.detach();
|
|
931
931
|
_this.model.dispose();
|
|
@@ -944,10 +944,14 @@
|
|
|
944
944
|
var options = Survey.createDialogOptions(componentName, data, onApply, onCancel, undefined, undefined, cssClass, title, displayMode);
|
|
945
945
|
return _this.showDialog(options);
|
|
946
946
|
};
|
|
947
|
+
Survey.settings.showDialog = function (dialogOptions, rootElement) {
|
|
948
|
+
_this.showDialog(dialogOptions, rootElement);
|
|
949
|
+
};
|
|
947
950
|
};
|
|
948
951
|
ModalComponent.prototype.ngOnDestroy = function () {
|
|
949
952
|
if (this.functionDefined) {
|
|
950
953
|
Survey.settings.showModal = undefined;
|
|
954
|
+
Survey.settings.showDialog = undefined;
|
|
951
955
|
}
|
|
952
956
|
};
|
|
953
957
|
return ModalComponent;
|
|
@@ -1386,6 +1390,84 @@
|
|
|
1386
1390
|
type: i0.Input
|
|
1387
1391
|
}] } });
|
|
1388
1392
|
|
|
1393
|
+
var SvgIconComponent = /** @class */ (function () {
|
|
1394
|
+
function SvgIconComponent(viewContaierRef) {
|
|
1395
|
+
this.viewContaierRef = viewContaierRef;
|
|
1396
|
+
}
|
|
1397
|
+
SvgIconComponent.prototype.createSvg = function () {
|
|
1398
|
+
if (!!this.iconName) {
|
|
1399
|
+
Survey__namespace.createSvg(this.size, this.width, this.height, this.iconName, this.viewContaierRef.element.nativeElement, this.title);
|
|
1400
|
+
}
|
|
1401
|
+
};
|
|
1402
|
+
Object.defineProperty(SvgIconComponent.prototype, "rootClass", {
|
|
1403
|
+
get: function () {
|
|
1404
|
+
var className = "sv-svg-icon";
|
|
1405
|
+
if (!this.css && !!this.partCss) {
|
|
1406
|
+
className += " " + this.partCss;
|
|
1407
|
+
}
|
|
1408
|
+
else if (!!this.css) {
|
|
1409
|
+
className = this.css;
|
|
1410
|
+
}
|
|
1411
|
+
return className;
|
|
1412
|
+
},
|
|
1413
|
+
enumerable: false,
|
|
1414
|
+
configurable: true
|
|
1415
|
+
});
|
|
1416
|
+
Object.defineProperty(SvgIconComponent.prototype, "rootRole", {
|
|
1417
|
+
get: function () {
|
|
1418
|
+
return "img";
|
|
1419
|
+
},
|
|
1420
|
+
enumerable: false,
|
|
1421
|
+
configurable: true
|
|
1422
|
+
});
|
|
1423
|
+
Object.defineProperty(SvgIconComponent.prototype, "ariaLabel", {
|
|
1424
|
+
get: function () {
|
|
1425
|
+
return this.title;
|
|
1426
|
+
},
|
|
1427
|
+
enumerable: false,
|
|
1428
|
+
configurable: true
|
|
1429
|
+
});
|
|
1430
|
+
SvgIconComponent.prototype.ngOnChanges = function () {
|
|
1431
|
+
var el = this.viewContaierRef.element.nativeElement;
|
|
1432
|
+
el.innerHTML = "";
|
|
1433
|
+
el.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "use"));
|
|
1434
|
+
this.createSvg();
|
|
1435
|
+
};
|
|
1436
|
+
return SvgIconComponent;
|
|
1437
|
+
}());
|
|
1438
|
+
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 });
|
|
1439
|
+
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 });
|
|
1440
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SvgIconComponent, decorators: [{
|
|
1441
|
+
type: i0.Component,
|
|
1442
|
+
args: [{
|
|
1443
|
+
selector: "'[sv-ng-svg-icon]'",
|
|
1444
|
+
template: ""
|
|
1445
|
+
}]
|
|
1446
|
+
}], ctorParameters: function () { return [{ type: i0__namespace.ViewContainerRef }]; }, propDecorators: { size: [{
|
|
1447
|
+
type: i0.Input
|
|
1448
|
+
}], width: [{
|
|
1449
|
+
type: i0.Input
|
|
1450
|
+
}], height: [{
|
|
1451
|
+
type: i0.Input
|
|
1452
|
+
}], iconName: [{
|
|
1453
|
+
type: i0.Input
|
|
1454
|
+
}], partCss: [{
|
|
1455
|
+
type: i0.Input
|
|
1456
|
+
}], css: [{
|
|
1457
|
+
type: i0.Input
|
|
1458
|
+
}], title: [{
|
|
1459
|
+
type: i0.Input
|
|
1460
|
+
}], rootClass: [{
|
|
1461
|
+
type: i0.HostBinding,
|
|
1462
|
+
args: ["class"]
|
|
1463
|
+
}], rootRole: [{
|
|
1464
|
+
type: i0.HostBinding,
|
|
1465
|
+
args: ["[attr.role]"]
|
|
1466
|
+
}], ariaLabel: [{
|
|
1467
|
+
type: i0.HostBinding,
|
|
1468
|
+
args: ["[attr.aria-label]"]
|
|
1469
|
+
}] } });
|
|
1470
|
+
|
|
1389
1471
|
var PopupSurveyComponent = /** @class */ (function (_super) {
|
|
1390
1472
|
__extends(PopupSurveyComponent, _super);
|
|
1391
1473
|
function PopupSurveyComponent(changeDetectorRef) {
|
|
@@ -1407,6 +1489,9 @@
|
|
|
1407
1489
|
if (this.isExpanded !== undefined) {
|
|
1408
1490
|
this.popup.isExpanded = this.isExpanded;
|
|
1409
1491
|
}
|
|
1492
|
+
if (this.allowClose !== undefined) {
|
|
1493
|
+
this.popup.allowClose = this.allowClose;
|
|
1494
|
+
}
|
|
1410
1495
|
if (this.closeOnCompleteTimeout !== undefined) {
|
|
1411
1496
|
this.popup.closeOnCompleteTimeout = this.closeOnCompleteTimeout;
|
|
1412
1497
|
}
|
|
@@ -1416,7 +1501,7 @@
|
|
|
1416
1501
|
return PopupSurveyComponent;
|
|
1417
1502
|
}(BaseAngular));
|
|
1418
1503
|
PopupSurveyComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: PopupSurveyComponent, deps: [{ token: i0__namespace.ChangeDetectorRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1419
|
-
PopupSurveyComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: PopupSurveyComponent, selector: "popup-survey", inputs: { model: "model", isExpanded: "isExpanded", closeOnCompleteTimeout: "closeOnCompleteTimeout" }, usesInheritance: true, usesOnChanges: true, ngImport: i0__namespace, template: "<div *ngIf=\"!!popup && popup.isShowing\" [class]=\"popup.cssRoot\" style=\"position: fixed; bottom: 3px; right: 10px;\" [style.width]=\"popup.renderedWidth\" [style.maxWidth]=\"popup.renderedWidth\">\n <div [class]=\"popup.cssHeaderRoot\">\n <span (click)=\"popup.changeExpandCollapse()\" style=\"width: 100%; cursor: pointer;\">\n <span style=\"padding-right:10px\" [class]=\"popup.cssHeaderTitle\">{{popup.locTitle.renderedHtml}}</span>\n <span aria-hidden=\"true\" [class]=\"popup.cssButton\"></span>\n </span>\n <span *ngIf=\"popup.
|
|
1504
|
+
PopupSurveyComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: PopupSurveyComponent, selector: "popup-survey", inputs: { model: "model", isExpanded: "isExpanded", allowClose: "allowClose", closeOnCompleteTimeout: "closeOnCompleteTimeout" }, usesInheritance: true, usesOnChanges: true, ngImport: i0__namespace, template: "<div *ngIf=\"!!popup && popup.isShowing\" [class]=\"popup.cssRoot\" style=\"position: fixed; bottom: 3px; right: 10px;\" [style.width]=\"popup.renderedWidth\" [style.maxWidth]=\"popup.renderedWidth\">\n <div [class]=\"popup.cssHeaderRoot\">\n <span (click)=\"popup.changeExpandCollapse()\" style=\"width: 100%; cursor: pointer;\">\n <span style=\"padding-right:10px\" [class]=\"popup.cssHeaderTitle\">{{popup.locTitle.renderedHtml}}</span>\n <span aria-hidden=\"true\" [class]=\"popup.cssButton\"></span>\n </span>\n <span *ngIf=\"popup.allowClose\" (click)=\"popup.hide()\" [class]=\"popup.cssHeaderButton\" style=\"float: right; cursor: pointer; width: 24px; height: 24px; transform: rotate(45deg);\">\n <svg [iconName]=\"'icon-expanddetail'\" [size]=\"16\" sv-ng-svg-icon></svg>\n </span>\n <span *ngIf=\"popup.isExpanded\" (click)=\"popup.changeExpandCollapse()\" [class]=\"popup.cssHeaderButton\" style=\"float: right; cursor: pointer; width: 24px; height: 24px;\">\n <svg [iconName]=\"'icon-collapsedetail'\" [size]=\"16\" sv-ng-svg-icon></svg>\n </span>\n </div>\n <div *ngIf=\"popup.isExpanded\" [class]=\"popup.cssBody\" (scroll)=\"popup.onScroll()\">\n <survey [model]=\"popup.survey\"></survey>\n </div>\n</div>", styles: [""], components: [{ type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: SurveyComponent, selector: "survey", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1420
1505
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: PopupSurveyComponent, decorators: [{
|
|
1421
1506
|
type: i0.Component,
|
|
1422
1507
|
args: [{
|
|
@@ -1428,6 +1513,8 @@
|
|
|
1428
1513
|
type: i0.Input
|
|
1429
1514
|
}], isExpanded: [{
|
|
1430
1515
|
type: i0.Input
|
|
1516
|
+
}], allowClose: [{
|
|
1517
|
+
type: i0.Input
|
|
1431
1518
|
}], closeOnCompleteTimeout: [{
|
|
1432
1519
|
type: i0.Input
|
|
1433
1520
|
}] } });
|
|
@@ -1805,84 +1892,6 @@
|
|
|
1805
1892
|
}] } });
|
|
1806
1893
|
AngularComponentFactory.Instance.registerComponent("skeleton-question", QuestionSkeletonComponent);
|
|
1807
1894
|
|
|
1808
|
-
var SvgIconComponent = /** @class */ (function () {
|
|
1809
|
-
function SvgIconComponent(viewContaierRef) {
|
|
1810
|
-
this.viewContaierRef = viewContaierRef;
|
|
1811
|
-
}
|
|
1812
|
-
SvgIconComponent.prototype.createSvg = function () {
|
|
1813
|
-
if (!!this.iconName) {
|
|
1814
|
-
Survey__namespace.createSvg(this.size, this.width, this.height, this.iconName, this.viewContaierRef.element.nativeElement, this.title);
|
|
1815
|
-
}
|
|
1816
|
-
};
|
|
1817
|
-
Object.defineProperty(SvgIconComponent.prototype, "rootClass", {
|
|
1818
|
-
get: function () {
|
|
1819
|
-
var className = "sv-svg-icon";
|
|
1820
|
-
if (!this.css && !!this.partCss) {
|
|
1821
|
-
className += " " + this.partCss;
|
|
1822
|
-
}
|
|
1823
|
-
else if (!!this.css) {
|
|
1824
|
-
className = this.css;
|
|
1825
|
-
}
|
|
1826
|
-
return className;
|
|
1827
|
-
},
|
|
1828
|
-
enumerable: false,
|
|
1829
|
-
configurable: true
|
|
1830
|
-
});
|
|
1831
|
-
Object.defineProperty(SvgIconComponent.prototype, "rootRole", {
|
|
1832
|
-
get: function () {
|
|
1833
|
-
return "img";
|
|
1834
|
-
},
|
|
1835
|
-
enumerable: false,
|
|
1836
|
-
configurable: true
|
|
1837
|
-
});
|
|
1838
|
-
Object.defineProperty(SvgIconComponent.prototype, "ariaLabel", {
|
|
1839
|
-
get: function () {
|
|
1840
|
-
return this.title;
|
|
1841
|
-
},
|
|
1842
|
-
enumerable: false,
|
|
1843
|
-
configurable: true
|
|
1844
|
-
});
|
|
1845
|
-
SvgIconComponent.prototype.ngOnChanges = function () {
|
|
1846
|
-
var el = this.viewContaierRef.element.nativeElement;
|
|
1847
|
-
el.innerHTML = "";
|
|
1848
|
-
el.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "use"));
|
|
1849
|
-
this.createSvg();
|
|
1850
|
-
};
|
|
1851
|
-
return SvgIconComponent;
|
|
1852
|
-
}());
|
|
1853
|
-
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 });
|
|
1854
|
-
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 });
|
|
1855
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SvgIconComponent, decorators: [{
|
|
1856
|
-
type: i0.Component,
|
|
1857
|
-
args: [{
|
|
1858
|
-
selector: "'[sv-ng-svg-icon]'",
|
|
1859
|
-
template: ""
|
|
1860
|
-
}]
|
|
1861
|
-
}], ctorParameters: function () { return [{ type: i0__namespace.ViewContainerRef }]; }, propDecorators: { size: [{
|
|
1862
|
-
type: i0.Input
|
|
1863
|
-
}], width: [{
|
|
1864
|
-
type: i0.Input
|
|
1865
|
-
}], height: [{
|
|
1866
|
-
type: i0.Input
|
|
1867
|
-
}], iconName: [{
|
|
1868
|
-
type: i0.Input
|
|
1869
|
-
}], partCss: [{
|
|
1870
|
-
type: i0.Input
|
|
1871
|
-
}], css: [{
|
|
1872
|
-
type: i0.Input
|
|
1873
|
-
}], title: [{
|
|
1874
|
-
type: i0.Input
|
|
1875
|
-
}], rootClass: [{
|
|
1876
|
-
type: i0.HostBinding,
|
|
1877
|
-
args: ["class"]
|
|
1878
|
-
}], rootRole: [{
|
|
1879
|
-
type: i0.HostBinding,
|
|
1880
|
-
args: ["[attr.role]"]
|
|
1881
|
-
}], ariaLabel: [{
|
|
1882
|
-
type: i0.HostBinding,
|
|
1883
|
-
args: ["[attr.aria-label]"]
|
|
1884
|
-
}] } });
|
|
1885
|
-
|
|
1886
1895
|
var DropdownComponent = /** @class */ (function (_super) {
|
|
1887
1896
|
__extends(DropdownComponent, _super);
|
|
1888
1897
|
function DropdownComponent() {
|
|
@@ -2223,7 +2232,7 @@
|
|
|
2223
2232
|
return LogoImageComponent;
|
|
2224
2233
|
}(EmbeddedViewContentComponent));
|
|
2225
2234
|
LogoImageComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LogoImageComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2226
|
-
LogoImageComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: LogoImageComponent, selector: "sv-logo-image", inputs: { data: "data" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <img\n [class]=\"survey.css.logoImage\"\n [attr.src]=\"survey.locLogo.renderedHtml | safeUrl\"\n [
|
|
2235
|
+
LogoImageComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: LogoImageComponent, selector: "sv-logo-image", inputs: { data: "data" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <img\n [class]=\"survey.css.logoImage\"\n [attr.src]=\"survey.locLogo.renderedHtml | safeUrl\"\n [style.width]=\"survey.renderedStyleLogoWidth\"\n [style.height]=\"survey.renderedStyleLogoHeight\"\n [attr.width]=\"survey.renderedLogoWidth\"\n [attr.height]=\"survey.renderedLogoHeight\"\n [attr.alt]=\"survey.locTitle.renderedHtml\"\n [style.objectFit]=\"survey.logoFit\"\n />\n</ng-template>", styles: [":host{display:none}\n"], pipes: { "safeUrl": SafeUrlPipe } });
|
|
2227
2236
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: LogoImageComponent, decorators: [{
|
|
2228
2237
|
type: i0.Component,
|
|
2229
2238
|
args: [{
|
|
@@ -2573,7 +2582,7 @@
|
|
|
2573
2582
|
return ImagePickerItemComponent;
|
|
2574
2583
|
}(BaseAngular));
|
|
2575
2584
|
ImagePickerItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ImagePickerItemComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2576
|
-
ImagePickerItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ImagePickerItemComponent, selector: "sv-ng-imagepicker-item", inputs: { question: "question", model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div [class]=\"question.getItemClass(model)\">\n <label [class]=\"question.cssClasses.label\">\n <input [type]=\"question.inputType\" [attr.name]=\"question.questionName\" [attr.value]=\"model.value\" [id]=\"question.getItemId(model)\" [attr.aria-required]=\"question.ariaRequired\" [attr.aria-label]=\"question.ariaLabel\" [attr.aria-invalid]=\"question.ariaInvalid\" [attr.aria-describedby]=\"question.ariaDescribedBy\"\n (change)=\"onChange($event)\" [checked]=\"question.isItemSelected(model)\" [disabled]=\"!question.getItemEnabled(model)\" [class]=\"question.cssClasses.itemControl\"\n />\n <div [class]=\"question.cssClasses.itemDecorator\">\n <div [class]=\"question.cssClasses.imageContainer\">\n <span *ngIf=\"question.cssClasses.checkedItemDecorator\" [class]=\"question.cssClasses.checkedItemDecorator\">\n <svg *ngIf=\"question.cssClasses.checkedItemSvgIconId\" [class]=\"question.cssClasses.checkedItemSvgIcon\" [iconName]=\"question.cssClasses.checkedItemSvgIconId\" [size]=\"'auto'\" sv-ng-svg-icon></svg>\n </span>\n <img *ngIf=\"model.locImageLink.renderedHtml && !model.contentNotLoaded && question.contentMode === 'image'\" [class]=\"question.cssClasses.image\" [attr.src]=\"model.locImageLink.renderedHtml\" [attr.width]=\"question.renderedImageWidth\" [attr.height]=\"question.renderedImageHeight\" [attr.alt]=\"model.locText.renderedHtml\" [style.objectFit]=\"question.imageFit\" (load)=\"question.onContentLoaded(model, $event)\" (error)=\"model.onErrorHandler()\"/>\n <video *ngIf=\"model.locImageLink.renderedHtml && !model.contentNotLoaded && question.contentMode === 'video'\" controls [class]=\"question.cssClasses.image\" [attr.src]=\"model.locImageLink.renderedHtml\" [attr.width]=\"question.renderedImageWidth\" [attr.height]=\"question.renderedImageHeight\" [style.objectFit]=\"question.imageFit\" (loadedmetadata)=\"question.onContentLoaded(model, $event)\" (error)=\"model.onErrorHandler()\"></video>\n <div *ngIf=\"!model.locImageLink.renderedHtml || model.contentNotLoaded\" [class]=\"question.cssClasses.itemNoImage\" [style.width]=\"question.renderedImageWidth\" [style.height]=\"question.renderedImageHeight\" [style.objectFit]=\"question.imageFit\">\n <svg *ngIf=\"question.cssClasses.itemNoImageSvgIconId\" [class]=\"question.cssClasses.itemNoImageSvgIcon\" [iconName]=\"question.cssClasses.itemNoImageSvgIconId\" [size]=\"48\" sv-ng-svg-icon></svg>\n </div>\n </div>\n <span *ngIf=\"question.showLabel\" [class]=\"question.cssClasses.itemText\" [model]=\"model.locText\" sv-ng-string></span>\n </div>\n </label>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2585
|
+
ImagePickerItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ImagePickerItemComponent, selector: "sv-ng-imagepicker-item", inputs: { question: "question", model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div [class]=\"question.getItemClass(model)\">\n <label [class]=\"question.cssClasses.label\">\n <input [type]=\"question.inputType\" [attr.name]=\"question.questionName\" [attr.value]=\"model.value\" [id]=\"question.getItemId(model)\" [attr.aria-required]=\"question.ariaRequired\" [attr.aria-label]=\"question.ariaLabel\" [attr.aria-invalid]=\"question.ariaInvalid\" [attr.aria-describedby]=\"question.ariaDescribedBy\"\n (change)=\"onChange($event)\" [checked]=\"question.isItemSelected(model)\" [disabled]=\"!question.getItemEnabled(model)\" [class]=\"question.cssClasses.itemControl\"\n />\n <div [class]=\"question.cssClasses.itemDecorator\">\n <div [class]=\"question.cssClasses.imageContainer\">\n <span *ngIf=\"question.cssClasses.checkedItemDecorator\" [class]=\"question.cssClasses.checkedItemDecorator\">\n <svg *ngIf=\"question.cssClasses.checkedItemSvgIconId\" [class]=\"question.cssClasses.checkedItemSvgIcon\" [iconName]=\"question.cssClasses.checkedItemSvgIconId\" [size]=\"'auto'\" sv-ng-svg-icon></svg>\n </span>\n <img *ngIf=\"model.locImageLink.renderedHtml && !model.contentNotLoaded && question.contentMode === 'image'\" [class]=\"question.cssClasses.image\" [attr.src]=\"model.locImageLink.renderedHtml\" [attr.width]=\"question.renderedImageWidth\" [attr.height]=\"question.renderedImageHeight\" [attr.alt]=\"model.locText.renderedHtml\" [style.objectFit]=\"question.imageFit\" (load)=\"question.onContentLoaded(model, $event)\" (error)=\"model.onErrorHandler()\"/>\n <video *ngIf=\"model.locImageLink.renderedHtml && !model.contentNotLoaded && question.contentMode === 'video'\" controls [class]=\"question.cssClasses.image\" [attr.src]=\"model.locImageLink.renderedHtml\" [attr.width]=\"question.renderedImageWidth\" [attr.height]=\"question.renderedImageHeight\" [style.objectFit]=\"question.imageFit\" (loadedmetadata)=\"question.onContentLoaded(model, $event)\" (error)=\"model.onErrorHandler()\"></video>\n <div *ngIf=\"!model.locImageLink.renderedHtml || model.contentNotLoaded\" [class]=\"question.cssClasses.itemNoImage\" [style.width]=\"question.renderedImageWidth + 'px'\" [style.height]=\"question.renderedImageHeight + 'px'\" [style.objectFit]=\"question.imageFit\">\n <svg *ngIf=\"question.cssClasses.itemNoImageSvgIconId\" [class]=\"question.cssClasses.itemNoImageSvgIcon\" [iconName]=\"question.cssClasses.itemNoImageSvgIconId\" [size]=\"48\" sv-ng-svg-icon></svg>\n </div>\n </div>\n <span *ngIf=\"question.showLabel\" [class]=\"question.cssClasses.itemText\" [model]=\"model.locText\" sv-ng-string></span>\n </div>\n </label>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2577
2586
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ImagePickerItemComponent, decorators: [{
|
|
2578
2587
|
type: i0.Component,
|
|
2579
2588
|
args: [{
|
|
@@ -2980,7 +2989,7 @@
|
|
|
2980
2989
|
return ListItemComponent;
|
|
2981
2990
|
}(BaseAngular));
|
|
2982
2991
|
ListItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ListItemComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2983
|
-
ListItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ListItemComponent, selector: "sv-ng-list-item, '[sv-ng-list-item]'", inputs: { element: "element", model: "model", listModel: "listModel" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <li role=\"option\" [key2click] [visible]=\"listModel.isItemVisible(model)\" [class]=\"class\" [attr.id]=\"elementId\" [attr.aria-selected]=\"ariaSelected ? 'true' : 'false'\" (click)=\"click($event)\" (pointerdown)=\"pointerdown($event)\">\n <ng-container *ngIf=\"model.needSeparator\">\n <div [class]=\"listModel.cssClasses.itemSeparator\"></div>\n </ng-container>\n <div [class]=\"listModel.cssClasses.itemBody\" [style.paddingInlineStart]=\"paddingLeft\">\n <ng-container *ngIf=\"!model.component\">\n <svg *ngIf=\"model.iconName\" [class]=\"listModel.cssClasses.itemIcon\" [iconName]=\"model.iconName\" [size]=\"
|
|
2992
|
+
ListItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ListItemComponent, selector: "sv-ng-list-item, '[sv-ng-list-item]'", inputs: { element: "element", model: "model", listModel: "listModel" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <li role=\"option\" [key2click] [visible]=\"listModel.isItemVisible(model)\" [class]=\"class\" [attr.id]=\"elementId\" [attr.aria-selected]=\"ariaSelected ? 'true' : 'false'\" (click)=\"click($event)\" (pointerdown)=\"pointerdown($event)\">\n <ng-container *ngIf=\"model.needSeparator\">\n <div [class]=\"listModel.cssClasses.itemSeparator\"></div>\n </ng-container>\n <div [class]=\"listModel.cssClasses.itemBody\" [style.paddingInlineStart]=\"paddingLeft\">\n <ng-container *ngIf=\"!model.component\">\n <svg *ngIf=\"model.iconName\" [class]=\"listModel.cssClasses.itemIcon\" [iconName]=\"model.iconName\" [size]=\"model.iconSize\"\n sv-ng-svg-icon></svg>\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </ng-container>\n <ng-container *ngIf=\"model.component\">\n <ng-template [component]=\"{ name: model.component, data: { model: model } }\"></ng-template>\n </ng-container>\n </div>\n </li>\n</ng-template>", styles: [":host{display:none}\n"], components: [{ type: SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }], directives: [{ type: Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: VisibleDirective, selector: "[visible]", inputs: ["visible"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
|
|
2984
2993
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ListItemComponent, decorators: [{
|
|
2985
2994
|
type: i0.Component,
|
|
2986
2995
|
args: [{
|
|
@@ -3808,7 +3817,7 @@
|
|
|
3808
3817
|
var _this = this;
|
|
3809
3818
|
_super.prototype.onModelChanged.call(this);
|
|
3810
3819
|
this.model.panelCountChangedCallback = function () {
|
|
3811
|
-
_this.
|
|
3820
|
+
_this.update();
|
|
3812
3821
|
};
|
|
3813
3822
|
this.model.currentIndexChangedCallback = function () {
|
|
3814
3823
|
_this.detectChanges();
|
|
@@ -4318,7 +4327,7 @@
|
|
|
4318
4327
|
return ImageQuestionComponent;
|
|
4319
4328
|
}(QuestionAngular));
|
|
4320
4329
|
ImageQuestionComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ImageQuestionComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
4321
|
-
ImageQuestionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ImageQuestionComponent, selector: "sv-ng-image-question", usesInheritance: true, ngImport: i0__namespace, template: "<div [class]=\"model.cssClasses.root\" #contentElement>\n <img\n *ngIf=\"model.renderedMode === 'image'\"\n [visible]=\"!!model.locImageLink.renderedHtml && !model.contentNotLoaded\"\n [class]=\"model.getImageCss()\"\n [attr.src]=\"model.locImageLink.renderedHtml\"\n [attr.alt]=\"model.altText || model.title\"\n [attr.width]=\"model.renderedWidth\"\n [attr.height]=\"model.renderedHeight\"\n [style]=\"{ objectFit: model.imageFit }\"\n (load)=\"model.onLoadHandler()\"\n (error)=\"model.onErrorHandler()\"\n /><video\n controls\n *ngIf=\"model.renderedMode === 'video'\"\n [visible]=\"!!model.locImageLink.renderedHtml && !model.contentNotLoaded\"\n [class]=\"model.getImageCss()\"\n [attr.src]=\"model.locImageLink.renderedHtml\"\n [attr.width]=\"model.renderedWidth\"\n [attr.height]=\"model.renderedHeight\"\n [style]=\"{ objectFit: model.imageFit }\"\n (loadedmetadata)=\"model.onLoadHandler()\"\n (error)=\"model.onErrorHandler()\"\n ></video>\n <iframe\n *ngIf=\"model.renderedMode === 'youtube'\"\n [class]=\"model.getImageCss()\"\n [attr.src]=\"model.locImageLink.renderedHtml | safeResourceUrl\"\n [attr.width]=\"model.renderedWidth\"\n [attr.height]=\"model.renderedHeight\"\n [style]=\"{ objectFit: model.imageFit }\"\n ></iframe>\n <div *ngIf=\"!model.locImageLink.renderedHtml || model.contentNotLoaded\" [class]=\"model.cssClasses.noImage\">\n <svg [iconName]=\"model.cssClasses.noImageSvgIconId\" [size]=\"48\" sv-ng-svg-icon></svg>\n </div>\n</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"] }, { type: VisibleDirective, selector: "[visible]", inputs: ["visible"] }], pipes: { "safeResourceUrl": SafeResourceUrlPipe } });
|
|
4330
|
+
ImageQuestionComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ImageQuestionComponent, selector: "sv-ng-image-question", usesInheritance: true, ngImport: i0__namespace, template: "<div [class]=\"model.cssClasses.root\" #contentElement>\n <img\n *ngIf=\"model.renderedMode === 'image'\"\n [visible]=\"!!model.locImageLink.renderedHtml && !model.contentNotLoaded\"\n [class]=\"model.getImageCss()\"\n [attr.src]=\"model.locImageLink.renderedHtml\"\n [attr.alt]=\"model.altText || model.title\"\n [attr.width]=\"model.renderedWidth\"\n [attr.height]=\"model.renderedHeight\"\n [style]=\"{ objectFit: model.imageFit, width: model.renderedStyleWidth, height: model.renderedStyleHeight }\"\n (load)=\"model.onLoadHandler()\"\n (error)=\"model.onErrorHandler()\"\n /><video\n controls\n *ngIf=\"model.renderedMode === 'video'\"\n [visible]=\"!!model.locImageLink.renderedHtml && !model.contentNotLoaded\"\n [class]=\"model.getImageCss()\"\n [attr.src]=\"model.locImageLink.renderedHtml\"\n [attr.width]=\"model.renderedWidth\"\n [attr.height]=\"model.renderedHeight\"\n [style]=\"{ objectFit: model.imageFit, width: model.renderedStyleWidth, height: model.renderedStyleHeight }\"\n (loadedmetadata)=\"model.onLoadHandler()\"\n (error)=\"model.onErrorHandler()\"\n ></video>\n <iframe\n *ngIf=\"model.renderedMode === 'youtube'\"\n [class]=\"model.getImageCss()\"\n [attr.src]=\"model.locImageLink.renderedHtml | safeResourceUrl\"\n [attr.width]=\"model.renderedWidth\"\n [attr.height]=\"model.renderedHeight\"\n [style]=\"{ objectFit: model.imageFit, width: model.renderedStyleWidth, height: model.renderedStyleHeight }\"\n ></iframe>\n <div *ngIf=\"!model.locImageLink.renderedHtml || model.contentNotLoaded\" [class]=\"model.cssClasses.noImage\">\n <svg [iconName]=\"model.cssClasses.noImageSvgIconId\" [size]=\"48\" sv-ng-svg-icon></svg>\n </div>\n</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"] }, { type: VisibleDirective, selector: "[visible]", inputs: ["visible"] }], pipes: { "safeResourceUrl": SafeResourceUrlPipe } });
|
|
4322
4331
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ImageQuestionComponent, decorators: [{
|
|
4323
4332
|
type: i0.Component,
|
|
4324
4333
|
args: [{
|