survey-angular-ui 2.2.6 → 2.3.0

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.
@@ -1016,7 +1016,15 @@
1016
1016
  this.componentFactoryResolver = componentFactoryResolver;
1017
1017
  }
1018
1018
  PopupService.prototype.createComponent = function (popupViewModel) {
1019
- var portalHost = new portal.DomPortalOutlet(popupViewModel.container, this.componentFactoryResolver, this.applicationRef, this.injector);
1019
+ var portalHost;
1020
+ if (Number.parseInt(i0.VERSION.major) > 18) {
1021
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1022
+ //@ts-ignore
1023
+ portalHost = new portal.DomPortalOutlet(popupViewModel.container, this.applicationRef, this.injector);
1024
+ }
1025
+ else {
1026
+ portalHost = new portal.DomPortalOutlet(popupViewModel.container, this.componentFactoryResolver, this.applicationRef, this.injector);
1027
+ }
1020
1028
  var portal$1 = new portal.ComponentPortal(PopupBaseContainerComponent);
1021
1029
  var componentRef = portalHost.attach(portal$1);
1022
1030
  popupViewModel.setComponentElement(popupViewModel.container.children[0]);
@@ -1350,13 +1358,6 @@
1350
1358
  var ErrorsComponent = /** @class */ (function () {
1351
1359
  function ErrorsComponent() {
1352
1360
  }
1353
- Object.defineProperty(ErrorsComponent.prototype, "role", {
1354
- get: function () {
1355
- return "alert";
1356
- },
1357
- enumerable: false,
1358
- configurable: true
1359
- });
1360
1361
  Object.defineProperty(ErrorsComponent.prototype, "id", {
1361
1362
  get: function () {
1362
1363
  return this.element.id + "_errors";
@@ -1364,13 +1365,6 @@
1364
1365
  enumerable: false,
1365
1366
  configurable: true
1366
1367
  });
1367
- Object.defineProperty(ErrorsComponent.prototype, "ariaLive", {
1368
- get: function () {
1369
- return "polite";
1370
- },
1371
- enumerable: false,
1372
- configurable: true
1373
- });
1374
1368
  Object.defineProperty(ErrorsComponent.prototype, "class", {
1375
1369
  get: function () {
1376
1370
  return this.element.cssError;
@@ -1381,7 +1375,7 @@
1381
1375
  return ErrorsComponent;
1382
1376
  }());
1383
1377
  ErrorsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ErrorsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
1384
- ErrorsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ErrorsComponent, selector: "'[sv-ng-errors]'", inputs: { element: "element", location: "location" }, host: { properties: { "attr.role": "this.role", "id": "this.id", "attr.aria-live": "this.ariaLive", "class": "this.class" } }, ngImport: i0__namespace, template: "<ng-container *ngFor=\"let error of element.errors;\">\n <ng-template [component]=\"{ name: element.survey.questionErrorComponent, data: { element: element, cssClasses: element.cssClasses, error: error } }\"></ng-template>\n</ng-container>\n", directives: [{ type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
1378
+ ErrorsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ErrorsComponent, selector: "'[sv-ng-errors]'", inputs: { element: "element", location: "location" }, host: { properties: { "id": "this.id", "class": "this.class" } }, ngImport: i0__namespace, template: "<ng-container *ngFor=\"let error of element.errors;\">\n <ng-template [component]=\"{ name: element.survey.questionErrorComponent, data: { element: element, cssClasses: element.cssClasses, error: error } }\"></ng-template>\n</ng-container>\n", directives: [{ type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
1385
1379
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ErrorsComponent, decorators: [{
1386
1380
  type: i0.Component,
1387
1381
  args: [{
@@ -1392,15 +1386,9 @@
1392
1386
  type: i0.Input
1393
1387
  }], location: [{
1394
1388
  type: i0.Input
1395
- }], role: [{
1396
- type: i0.HostBinding,
1397
- args: ["attr.role"]
1398
1389
  }], id: [{
1399
1390
  type: i0.HostBinding,
1400
1391
  args: ["id"]
1401
- }], ariaLive: [{
1402
- type: i0.HostBinding,
1403
- args: ["attr.aria-live"]
1404
1392
  }], class: [{
1405
1393
  type: i0.HostBinding,
1406
1394
  args: ["class"]
@@ -4150,7 +4138,7 @@
4150
4138
  _super.prototype.ngOnInit.call(this);
4151
4139
  };
4152
4140
  MatrixQuestionComponent.prototype.onCellChanged = function (row, column) {
4153
- row.value = column.value;
4141
+ row.cellClick(column);
4154
4142
  this.detectChanges();
4155
4143
  };
4156
4144
  MatrixQuestionComponent.prototype.trackRowByFn = function (i, row) {
@@ -4802,10 +4790,17 @@
4802
4790
  MatrixCellComponent.prototype.onChange = function () {
4803
4791
  this.cellChangedOwner.onCellChanged(this.row, this.column);
4804
4792
  };
4793
+ Object.defineProperty(MatrixCellComponent.prototype, "itemSvgIcon", {
4794
+ get: function () {
4795
+ return this.question.getItemSvgIcon(this.row, this.column);
4796
+ },
4797
+ enumerable: false,
4798
+ configurable: true
4799
+ });
4805
4800
  return MatrixCellComponent;
4806
4801
  }(BaseAngular));
4807
4802
  MatrixCellComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: MatrixCellComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
4808
- MatrixCellComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: MatrixCellComponent, selector: "sv-ng-matrix-cell, '[sv-ng-matrix-cell]'", inputs: { question: "question", column: "column", row: "row", columnIndex: "columnIndex", cellChangedOwner: "cellChangedOwner" }, usesInheritance: true, ngImport: i0__namespace, template: "<label (mousedown)=\"question.onMouseDown()\" [class]=\"question.getItemClass(row, column)\">\n <input\n type=\"radio\"\n [class]=\"question.cssClasses.itemValue\"\n [name]=\"row.fullName\"\n [value]=\"column.value\"\n [checked]=\"row.value === column.value\"\n [readonly]=\"row.isReadOnlyAttr\"\n [disabled]=\"row.isDisabledAttr\"\n [attr.id]=\"question.inputId + '_' + row.name + '_' + columnIndex\"\n (change)=\"onChange()\"\n [attr.aria-required]=\"question.a11y_input_ariaRequired\"\n [attr.aria-label]=\"question.getCellAriaLabel(row, column)\"\n [attr.aria-invalid]=\"question.a11y_input_ariaInvalid\"\n [attr.aria-errormessage]=\"question.a11y_input_ariaErrormessage\"\n />\n <span [class]=\"question.cssClasses.materialDecorator\">\n <svg *ngIf=\"question.itemSvgIcon\" [class]=\"question.cssClasses.itemDecorator\">\n <use [attr.xlink:href]=\"question.itemSvgIcon\"></use>\n </svg> \n </span>\n <span *ngIf=\"question.isMobile\" [class]=\"question.cssClasses.cellResponsiveTitle\" [model]=\"column.locText\" sv-ng-string></span>\n</label>\n<ng-content></ng-content>", components: [{ type: SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4803
+ MatrixCellComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: MatrixCellComponent, selector: "sv-ng-matrix-cell, '[sv-ng-matrix-cell]'", inputs: { question: "question", column: "column", row: "row", columnIndex: "columnIndex", cellChangedOwner: "cellChangedOwner" }, usesInheritance: true, ngImport: i0__namespace, template: "<label (mousedown)=\"question.onMouseDown()\" [class]=\"question.getItemClass(row, column)\">\n <input\n [type]=\"question.checkType\"\n [class]=\"question.cssItemValue\"\n [name]=\"row.fullName\"\n [value]=\"column.value\"\n [checked]=\"row.isChecked(column)\"\n [readonly]=\"row.isReadOnlyAttr\"\n [disabled]=\"row.isDisabledAttr\"\n [attr.id]=\"question.inputId + '_' + row.name + '_' + columnIndex\"\n (change)=\"onChange()\"\n [attr.aria-required]=\"question.a11y_input_ariaRequired\"\n [attr.aria-label]=\"question.getCellAriaLabel(row, column)\"\n [attr.aria-invalid]=\"question.a11y_input_ariaInvalid\"\n [attr.aria-errormessage]=\"question.a11y_input_ariaErrormessage\"\n />\n <span [class]=\"question.cssMaterialDecorator\">\n <svg *ngIf=\"itemSvgIcon\" [class]=\"question.cssItemDecorator\">\n <use [attr.xlink:href]=\"itemSvgIcon\"></use>\n </svg> \n </span>\n <span *ngIf=\"question.isMobile\" [class]=\"question.cssClasses.cellResponsiveTitle\" [model]=\"column.locText\" sv-ng-string></span>\n</label>\n<ng-content></ng-content>", components: [{ type: SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4809
4804
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: MatrixCellComponent, decorators: [{
4810
4805
  type: i0.Component,
4811
4806
  args: [{