@vue-dnd-kit/core 2.4.1 → 2.4.2
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.
|
@@ -23,7 +23,7 @@ declare function __VLS_template(): {
|
|
|
23
23
|
toJSON: () => any;
|
|
24
24
|
};
|
|
25
25
|
initialOuterHTML: string;
|
|
26
|
-
id
|
|
26
|
+
id?: string | number | symbol | undefined;
|
|
27
27
|
render?: Component;
|
|
28
28
|
events?: {
|
|
29
29
|
onSelfDragStart?: ((event: import('..').IDragEvent) => void) | undefined;
|
|
@@ -178,7 +178,7 @@ export interface IDragActivation {
|
|
|
178
178
|
export type TCondition = 'any' | 'both';
|
|
179
179
|
|
|
180
180
|
export interface IDraggableEntity extends IBaseEntity {
|
|
181
|
-
id
|
|
181
|
+
id?: string | number | symbol;
|
|
182
182
|
render?: Component;
|
|
183
183
|
events?: IDraggableEvents;
|
|
184
184
|
payload?: TDraggablePayload;
|
package/package.json
CHANGED