@beeq/angular 1.10.0-beta.4 → 1.10.0-beta.6
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 +23 -3
- package/esm2022/directives/components.mjs +2 -1
- package/esm2022/standalone/directives/components.mjs +2 -1
- package/fesm2022/beeq-angular-standalone.mjs +1 -0
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +1 -0
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/components.d.ts +23 -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
|
}
|
|
@@ -2075,4 +2075,24 @@ and when interacting with the trigger @default false
|
|
|
2075
2075
|
static ɵcmp: i0.ɵɵComponentDeclaration<BqTooltip, "bq-tooltip", never, { "alwaysVisible": { "alias": "alwaysVisible"; "required": false; }; "displayOn": { "alias": "displayOn"; "required": false; }; "distance": { "alias": "distance"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "sameWidth": { "alias": "sameWidth"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2076
2076
|
}
|
|
2077
2077
|
export declare interface BqTooltip extends Components.BqTooltip {
|
|
2078
|
+
/**
|
|
2079
|
+
* Emitted when the tooltip trigger is clicked
|
|
2080
|
+
*/
|
|
2081
|
+
bqClick: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
|
|
2082
|
+
/**
|
|
2083
|
+
* Emitted when the tooltip trigger is focused in
|
|
2084
|
+
*/
|
|
2085
|
+
bqFocusIn: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
|
|
2086
|
+
/**
|
|
2087
|
+
* Emitted when the tooltip trigger is focused out
|
|
2088
|
+
*/
|
|
2089
|
+
bqFocusOut: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
|
|
2090
|
+
/**
|
|
2091
|
+
* Emitted when the tooltip trigger is hovered in
|
|
2092
|
+
*/
|
|
2093
|
+
bqHoverIn: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
|
|
2094
|
+
/**
|
|
2095
|
+
* Emitted when the tooltip trigger is hovered out
|
|
2096
|
+
*/
|
|
2097
|
+
bqHoverOut: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
|
|
2078
2098
|
}
|