@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.
- package/directives/components.d.ts +20 -0
- 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 +20 -0
|
@@ -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
|
}
|