@scalar/draggable
Advanced tools
Comparing version 0.0.7 to 0.1.0
# @scalar/draggable | ||
## 0.1.0 | ||
### Minor Changes | ||
- 7f8ef74: chore: remove aliasing | ||
### Patch Changes | ||
- 6fbb57e: feat: release all the packages | ||
## 0.0.7 | ||
@@ -4,0 +14,0 @@ |
@@ -36,3 +36,3 @@ import { type DraggingItem, type HoveredItem } from './store'; | ||
}; | ||
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<DraggableProps>, { | ||
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<DraggableProps>, { | ||
ceiling: number; | ||
@@ -45,3 +45,3 @@ floor: number; | ||
onDragStart: (draggingItem: DraggingItem) => void; | ||
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<DraggableProps>, { | ||
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<DraggableProps>, { | ||
ceiling: number; | ||
@@ -63,11 +63,3 @@ floor: number; | ||
export default _default; | ||
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T; | ||
type __VLS_TypePropsToRuntimeProps<T> = { | ||
[K in keyof T]-?: {} extends Pick<T, K> ? { | ||
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>; | ||
} : { | ||
type: import('vue').PropType<T[K]>; | ||
required: true; | ||
}; | ||
}; | ||
type __VLS_WithDefaults<P, D> = { | ||
@@ -86,2 +78,11 @@ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & { | ||
}; | ||
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T; | ||
type __VLS_TypePropsToOption<T> = { | ||
[K in keyof T]-?: {} extends Pick<T, K> ? { | ||
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>; | ||
} : { | ||
type: import('vue').PropType<T[K]>; | ||
required: true; | ||
}; | ||
}; | ||
//# sourceMappingURL=Draggable.vue.d.ts.map |
@@ -16,3 +16,3 @@ { | ||
], | ||
"version": "0.0.7", | ||
"version": "0.1.0", | ||
"engines": { | ||
@@ -42,4 +42,4 @@ "node": ">=18" | ||
"vite-svg-loader": "^5.1.0", | ||
"vue": "^3.4.21", | ||
"vue-tsc": "^1.8.19" | ||
"vue": "^3.4.22", | ||
"vue-tsc": "^2.0.13" | ||
}, | ||
@@ -46,0 +46,0 @@ "peerDependencies": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24705