@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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@beeq/angular",
3
- "version": "1.10.0-beta.4",
3
+ "version": "1.10.0-beta.6",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Angular specific wrapper for BEEQ Design System components",
6
6
  "main": "dist/esm2015/index.js",
7
7
  "module": "fesm2022/beeq-angular.mjs",
8
8
  "types": "index.d.ts",
9
9
  "dependencies": {
10
- "@beeq/core": "^1.10.0-beta.4",
10
+ "@beeq/core": "^1.10.0-beta.6",
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
@@ -130,15 +130,15 @@ export declare class BqButton {
130
130
  }
131
131
  export declare interface BqButton extends Components.BqButton {
132
132
  /**
133
- * Handler to be called when the button loses focus
133
+ * Handler to be called when the button loses focus.
134
134
  */
135
135
  bqBlur: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
136
136
  /**
137
- * Handler to be called when the button is clicked
137
+ * Handler to be called when the button gets focus.
138
138
  */
139
139
  bqFocus: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
140
140
  /**
141
- * Handler to be called when button gets focus
141
+ * Handler to be called when the button is clicked.
142
142
  */
143
143
  bqClick: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
144
144
  }
@@ -790,4 +790,24 @@ export declare class BqTooltip {
790
790
  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, ["*"], true, never>;
791
791
  }
792
792
  export declare interface BqTooltip extends Components.BqTooltip {
793
+ /**
794
+ * Emitted when the tooltip trigger is clicked
795
+ */
796
+ bqClick: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
797
+ /**
798
+ * Emitted when the tooltip trigger is focused in
799
+ */
800
+ bqFocusIn: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
801
+ /**
802
+ * Emitted when the tooltip trigger is focused out
803
+ */
804
+ bqFocusOut: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
805
+ /**
806
+ * Emitted when the tooltip trigger is hovered in
807
+ */
808
+ bqHoverIn: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
809
+ /**
810
+ * Emitted when the tooltip trigger is hovered out
811
+ */
812
+ bqHoverOut: EventEmitter<CustomEvent<HTMLBqTooltipElement>>;
793
813
  }