@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
|
@@ -1385,6 +1385,12 @@ export declare interface BqSelect extends Components.BqSelect {
|
|
|
1385
1385
|
value: string | number | string[];
|
|
1386
1386
|
item: HTMLBqOptionElement;
|
|
1387
1387
|
}>>;
|
|
1388
|
+
/**
|
|
1389
|
+
* Callback handler emitted when the Select input changes its value while typing
|
|
1390
|
+
*/
|
|
1391
|
+
bqInput: EventEmitter<CustomEvent<{
|
|
1392
|
+
value: string | number | string[];
|
|
1393
|
+
}>>;
|
|
1388
1394
|
}
|
|
1389
1395
|
export declare class BqSideMenu {
|
|
1390
1396
|
protected z: NgZone;
|