@beeq/angular 1.10.0-beta.5 → 1.10.0-beta.7
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 +20 -0
- package/directives/text-value-accessor.d.ts +1 -1
- package/esm2022/directives/components.mjs +2 -1
- package/esm2022/directives/text-value-accessor.mjs +3 -3
- package/esm2022/standalone/directives/components.mjs +2 -1
- package/esm2022/standalone/directives/text-value-accessor.mjs +3 -3
- package/fesm2022/beeq-angular-standalone.mjs +3 -2
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +3 -2
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/components.d.ts +20 -0
- package/standalone/directives/text-value-accessor.d.ts +1 -1
|
@@ -181,7 +181,7 @@ class TextValueAccessor extends ValueAccessor {
|
|
|
181
181
|
super(el);
|
|
182
182
|
}
|
|
183
183
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
184
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: TextValueAccessor, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\", bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
184
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: TextValueAccessor, selector: "bq-date-picker, bq-input:not[type=\"number\"], bq-slider[type=\"range\"], bq-textarea", host: { listeners: { "bqChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
185
185
|
{
|
|
186
186
|
provide: NG_VALUE_ACCESSOR,
|
|
187
187
|
useExisting: TextValueAccessor,
|
|
@@ -193,7 +193,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
193
193
|
type: Directive,
|
|
194
194
|
args: [{
|
|
195
195
|
/* tslint:disable-next-line:directive-selector */
|
|
196
|
-
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range", bq-textarea',
|
|
196
|
+
selector: 'bq-date-picker, bq-input:not[type="number"], bq-slider[type="range"], bq-textarea',
|
|
197
197
|
host: {
|
|
198
198
|
'(bqChange)': 'handleChangeEvent($event.target.value)'
|
|
199
199
|
},
|
|
@@ -2923,6 +2923,7 @@ and when interacting with the trigger @default false
|
|
|
2923
2923
|
this.z = z;
|
|
2924
2924
|
c.detach();
|
|
2925
2925
|
this.el = r.nativeElement;
|
|
2926
|
+
proxyOutputs(this, this.el, ['bqClick', 'bqFocusIn', 'bqFocusOut', 'bqHoverIn', 'bqHoverOut']);
|
|
2926
2927
|
}
|
|
2927
2928
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2928
2929
|
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqTooltip, selector: "bq-tooltip", inputs: { alwaysVisible: "alwaysVisible", displayOn: "displayOn", distance: "distance", hideArrow: "hideArrow", placement: "placement", sameWidth: "sameWidth", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|