@beeq/angular 1.10.0-beta.5 → 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.
@@ -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
  }