@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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@beeq/angular",
3
- "version": "1.8.5-beta.2",
3
+ "version": "1.9.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Angular specific wrapper for BEEQ Design System components",
6
6
  "main": "dist/esm2015/index.js",
7
7
  "module": "fesm2022/beeq-angular.mjs",
8
8
  "types": "index.d.ts",
9
9
  "dependencies": {
10
- "@beeq/core": "1.8.5-beta.2",
10
+ "@beeq/core": "^1.9.0",
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
@@ -510,6 +510,12 @@ export declare interface BqSelect extends Components.BqSelect {
510
510
  value: string | number | string[];
511
511
  item: HTMLBqOptionElement;
512
512
  }>>;
513
+ /**
514
+ * Callback handler emitted when the Select input changes its value while typing
515
+ */
516
+ bqInput: EventEmitter<CustomEvent<{
517
+ value: string | number | string[];
518
+ }>>;
513
519
  }
514
520
  export declare class BqSideMenu {
515
521
  protected z: NgZone;