@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.
@@ -310,15 +310,15 @@ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
310
310
  }
311
311
  export declare interface BqButton extends Components.BqButton {
312
312
  /**
313
- * Handler to be called when the button loses focus
313
+ * Handler to be called when the button loses focus.
314
314
  */
315
315
  bqBlur: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
316
316
  /**
317
- * Handler to be called when the button is clicked
317
+ * Handler to be called when the button gets focus.
318
318
  */
319
319
  bqFocus: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
320
320
  /**
321
- * Handler to be called when button gets focus
321
+ * Handler to be called when the button is clicked.
322
322
  */
323
323
  bqClick: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
324
324
  }