@vue-dnd-kit/core 2.1.3 → 2.1.4

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue-dnd-kit/core",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "Core functionality for Vue DnD Kit - a lightweight Vue 3 library for building performant and accessible drag and drop interfaces",
5
5
  "author": "ZiZIGY",
6
6
  "license": "MIT",
@@ -1,2 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
- export default _default;
@@ -1,33 +0,0 @@
1
- import { Ref } from 'vue';
2
- /**
3
- * Tracks element size via ResizeObserver, writes to returned ref
4
- *
5
- * @param elementRef - Ref to element to observe
6
- * @returns { overlaySize, overlaySizeObserver } — ref with { width, height } and cleanup
7
- */
8
- export declare const useSizeObserver: (elementRef: Ref<HTMLElement | null>) => {
9
- overlaySize: Ref<{
10
- height: number;
11
- width: number;
12
- x: number;
13
- y: number;
14
- readonly bottom: number;
15
- readonly left: number;
16
- readonly right: number;
17
- readonly top: number;
18
- toJSON: () => any;
19
- } | null, DOMRect | {
20
- height: number;
21
- width: number;
22
- x: number;
23
- y: number;
24
- readonly bottom: number;
25
- readonly left: number;
26
- readonly right: number;
27
- readonly top: number;
28
- toJSON: () => any;
29
- } | null>;
30
- overlaySizeObserver: {
31
- disconnect: () => void;
32
- };
33
- };