survey-angular-ui 2.5.27 → 2.5.28

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.
@@ -4001,9 +4001,12 @@
4001
4001
 
4002
4002
  var ProgressDefaultComponent = /** @class */ (function (_super) {
4003
4003
  __extends(ProgressDefaultComponent, _super);
4004
- function ProgressDefaultComponent() {
4005
- return _super !== null && _super.apply(this, arguments) || this;
4004
+ function ProgressDefaultComponent(changeDetectorRef, viewContainerRef) {
4005
+ return _super.call(this, changeDetectorRef, viewContainerRef) || this;
4006
4006
  }
4007
+ ProgressDefaultComponent.prototype.getModel = function () {
4008
+ return this.model;
4009
+ };
4007
4010
  ProgressDefaultComponent.prototype.getProgressTextInBarCss = function (css) {
4008
4011
  return Survey.SurveyProgressModel.getProgressTextInBarCss(css);
4009
4012
  };
@@ -4011,8 +4014,8 @@
4011
4014
  return Survey.SurveyProgressModel.getProgressTextUnderBarCss(css);
4012
4015
  };
4013
4016
  return ProgressDefaultComponent;
4014
- }(EmbeddedViewContentComponent));
4015
- ProgressDefaultComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ProgressDefaultComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
4017
+ }(BaseAngular));
4018
+ ProgressDefaultComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ProgressDefaultComponent, deps: [{ token: i0__namespace.ChangeDetectorRef }, { token: i0__namespace.ViewContainerRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
4016
4019
  ProgressDefaultComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ProgressDefaultComponent, selector: "sv-ng-progress-default", inputs: { container: "container", model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div [class]=\"model.getProgressCssClasses(container)\">\n <div [class]=\"model.css.progressBar\" [style.width]=\"model.progressValue + '%'\"\n role=\"progressbar\" aria-valuemin=\"0\" aria-valuemax=\"100\" [attr.aria-label]=\"model.progressBarAriaLabel\">\n <span [class]=\"getProgressTextInBarCss(model.css)\">\n {{ model.progressText }}\n </span>\n </div>\n <span [class]=\"getProgressTextUnderBarCss(model.css)\"> {{ model.progressText }} </span>\n </div>\n</ng-template>" });
4017
4020
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: ProgressDefaultComponent, decorators: [{
4018
4021
  type: i0.Component,
@@ -4020,7 +4023,7 @@
4020
4023
  selector: "sv-ng-progress-default",
4021
4024
  templateUrl: "./progress.component.html"
4022
4025
  }]
4023
- }], propDecorators: { container: [{
4026
+ }], ctorParameters: function () { return [{ type: i0__namespace.ChangeDetectorRef }, { type: i0__namespace.ViewContainerRef }]; }, propDecorators: { container: [{
4024
4027
  type: i0.Input
4025
4028
  }], model: [{
4026
4029
  type: i0.Input