@db-ux/v-core-components 2.0.10-popover-d7e8b9a → 2.1.0

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.
@@ -15,7 +15,7 @@ export declare class NavigationItemSafeTriangle {
15
15
  private initialized;
16
16
  private mouseX;
17
17
  private mouseY;
18
- constructor(element: HTMLElement | null, subNavigation: HTMLElement | null);
18
+ constructor(element: HTMLElement | null, subNavigation: Element | null);
19
19
  private init;
20
20
  enableFollow(): void;
21
21
  disableFollow(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/v-core-components",
3
- "version": "2.0.10-popover-d7e8b9a",
3
+ "version": "2.1.0",
4
4
  "type": "module",
5
5
  "description": "Vue components for @db-ux/core-components",
6
6
  "repository": {
@@ -53,7 +53,7 @@
53
53
  "sideEffects": false,
54
54
  "source": "src/index.ts",
55
55
  "dependencies": {
56
- "@db-ux/core-components": "2.0.10-popover-d7e8b9a",
57
- "@db-ux/core-foundations": "2.0.10-popover-d7e8b9a"
56
+ "@db-ux/core-components": "2.1.0",
57
+ "@db-ux/core-foundations": "2.1.0"
58
58
  }
59
59
  }
@@ -1,9 +0,0 @@
1
- export declare class DocumentScrollListener {
2
- private static callbacks;
3
- private static _instance;
4
- private static runCallbacks;
5
- private ticking;
6
- constructor();
7
- addCallback(callback: (event: any) => void): string;
8
- removeCallback(id: string): void;
9
- }
@@ -1,7 +0,0 @@
1
- export interface DBDataOutsidePair {
2
- vx?: 'left' | 'right';
3
- vy?: 'top' | 'bottom';
4
- }
5
- export declare const handleDataOutside: (el: HTMLElement) => DBDataOutsidePair;
6
- export declare const handleFixedDropdown: (element: HTMLElement, parent: HTMLElement, placement: string) => void;
7
- export declare const handleFixedPopover: (element: HTMLElement, parent: HTMLElement, placement: string) => void;