@beeq/angular 1.10.0-beta.4 → 1.10.0-beta.5

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.10.0-beta.4",
3
+ "version": "1.10.0-beta.5",
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.10.0-beta.4",
10
+ "@beeq/core": "^1.10.0-beta.5",
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
@@ -130,15 +130,15 @@ export declare class BqButton {
130
130
  }
131
131
  export declare interface BqButton extends Components.BqButton {
132
132
  /**
133
- * Handler to be called when the button loses focus
133
+ * Handler to be called when the button loses focus.
134
134
  */
135
135
  bqBlur: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
136
136
  /**
137
- * Handler to be called when the button is clicked
137
+ * Handler to be called when the button gets focus.
138
138
  */
139
139
  bqFocus: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
140
140
  /**
141
- * Handler to be called when button gets focus
141
+ * Handler to be called when the button is clicked.
142
142
  */
143
143
  bqClick: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
144
144
  }