@beeq/angular 1.10.0 → 1.11.0-beta.1

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.
@@ -2109,11 +2109,12 @@ let BqRadioGroup = class BqRadioGroup {
2109
2109
  constructor(c, r, z) {
2110
2110
  this.z = z;
2111
2111
  this.bqChange = new EventEmitter();
2112
+ this.bqBlur = new EventEmitter();
2112
2113
  c.detach();
2113
2114
  this.el = r.nativeElement;
2114
2115
  }
2115
2116
  /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: BqRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2116
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadioGroup, isStandalone: false, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", required: "required", requiredValidationMessage: "requiredValidationMessage", value: "value" }, outputs: { bqChange: "bqChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2117
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadioGroup, isStandalone: false, selector: "bq-radio-group", inputs: { backgroundOnHover: "backgroundOnHover", debounceTime: "debounceTime", disabled: "disabled", fieldset: "fieldset", name: "name", orientation: "orientation", required: "required", requiredValidationMessage: "requiredValidationMessage", value: "value" }, outputs: { bqChange: "bqChange", bqBlur: "bqBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2117
2118
  };
2118
2119
  BqRadioGroup = __decorate([
2119
2120
  ProxyCmp({
@@ -2129,11 +2130,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
2129
2130
  template: '<ng-content></ng-content>',
2130
2131
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2131
2132
  inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', { name: 'name', required: true }, 'orientation', 'required', 'requiredValidationMessage', 'value'],
2132
- outputs: ['bqChange'],
2133
+ outputs: ['bqChange', 'bqBlur'],
2133
2134
  standalone: false
2134
2135
  }]
2135
2136
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
2136
2137
  type: Output
2138
+ }], bqBlur: [{
2139
+ type: Output
2137
2140
  }] } });
2138
2141
  let BqSelect = class BqSelect {
2139
2142
  /**