@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.
@@ -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;