@beeq/angular 1.8.5-beta.2 → 1.9.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.
- package/directives/components.d.ts +6 -0
- package/esm2022/directives/components.mjs +3 -3
- package/esm2022/standalone/directives/components.mjs +3 -3
- package/fesm2022/beeq-angular-standalone.mjs +2 -2
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +2 -2
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/components.d.ts +6 -0
|
@@ -2048,7 +2048,7 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
2048
2048
|
this.z = z;
|
|
2049
2049
|
c.detach();
|
|
2050
2050
|
this.el = r.nativeElement;
|
|
2051
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
2051
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput']);
|
|
2052
2052
|
}
|
|
2053
2053
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2054
2054
|
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -2056,7 +2056,7 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
2056
2056
|
BqSelect = __decorate([
|
|
2057
2057
|
ProxyCmp({
|
|
2058
2058
|
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2059
|
-
methods: ['clear']
|
|
2059
|
+
methods: ['clear', 'reset']
|
|
2060
2060
|
}),
|
|
2061
2061
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2062
2062
|
], BqSelect);
|