@beeq/angular 1.10.0 → 1.11.0-beta.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.
@@ -1164,11 +1164,12 @@ let BqRadioGroup = class BqRadioGroup {
1164
1164
  constructor(c, r, z) {
1165
1165
  this.z = z;
1166
1166
  this.bqChange = new EventEmitter();
1167
+ this.bqBlur = new EventEmitter();
1167
1168
  c.detach();
1168
1169
  this.el = r.nativeElement;
1169
1170
  }
1170
1171
  /** @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 }); }
1171
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadioGroup, isStandalone: true, 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 }); }
1172
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.7", type: BqRadioGroup, isStandalone: true, 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 }); }
1172
1173
  };
1173
1174
  BqRadioGroup = __decorate([
1174
1175
  ProxyCmp({
@@ -1185,10 +1186,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
1185
1186
  template: '<ng-content></ng-content>',
1186
1187
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1187
1188
  inputs: ['backgroundOnHover', 'debounceTime', 'disabled', 'fieldset', { name: 'name', required: true }, 'orientation', 'required', 'requiredValidationMessage', 'value'],
1188
- outputs: ['bqChange'],
1189
+ outputs: ['bqChange', 'bqBlur'],
1189
1190
  }]
1190
1191
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { bqChange: [{
1191
1192
  type: Output
1193
+ }], bqBlur: [{
1194
+ type: Output
1192
1195
  }] } });
1193
1196
  let BqSelect = class BqSelect {
1194
1197
  constructor(c, r, z) {