@energycap/components 0.32.27 → 0.32.28

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.
@@ -42,6 +42,10 @@ export interface TooltipOptions {
42
42
  * Customize the background color. Can be any color value or css varialbe with var() function. For example: var(--ec-background-color-success);
43
43
  */
44
44
  backgroundColor?: string;
45
+ /**
46
+ * Flag to hide the arrow of the tooltip. Showing the arrow is the default.
47
+ */
48
+ hideArrow?: boolean;
45
49
  }
46
50
  export declare class TooltipComponent implements TooltipOptions {
47
51
  position: TooltipPosition;
@@ -52,6 +56,7 @@ export declare class TooltipComponent implements TooltipOptions {
52
56
  dismissible: boolean;
53
57
  customContent?: TemplateRef<any> | undefined;
54
58
  overlayRef?: OverlayRef;
59
+ hideArrow?: boolean;
55
60
  backgroundColor?: string;
56
61
  onHide: EventEmitter<void>;
57
62
  hide(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.32.27",
3
+ "version": "0.32.28",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },