@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/directives/components.d.ts +3 -3
- package/esm2022/directives/components.mjs +1 -1
- package/esm2022/standalone/directives/components.mjs +1 -1
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/components.d.ts +3 -3
|
@@ -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
|
|
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
|
|
321
|
+
* Handler to be called when the button is clicked.
|
|
322
322
|
*/
|
|
323
323
|
bqClick: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
|
|
324
324
|
}
|