@@ -45,6 +45,7 @@ declare global {
4545 const getActivePinia : typeof import ( 'pinia' ) [ 'getActivePinia' ]
4646 const getCurrentInstance : typeof import ( 'vue' ) [ 'getCurrentInstance' ]
4747 const getCurrentScope : typeof import ( 'vue' ) [ 'getCurrentScope' ]
48+ const getCurrentWatcher : typeof import ( 'vue' ) [ 'getCurrentWatcher' ]
4849 const h : typeof import ( 'vue' ) [ 'h' ]
4950 const ignorableWatch : typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ]
5051 const inject : typeof import ( 'vue' ) [ 'inject' ]
@@ -54,6 +55,7 @@ declare global {
5455 const isReactive : typeof import ( 'vue' ) [ 'isReactive' ]
5556 const isReadonly : typeof import ( 'vue' ) [ 'isReadonly' ]
5657 const isRef : typeof import ( 'vue' ) [ 'isRef' ]
58+ const isShallow : typeof import ( 'vue' ) [ 'isShallow' ]
5759 const makeDestructurable : typeof import ( '@vueuse/core' ) [ 'makeDestructurable' ]
5860 const mapActions : typeof import ( 'pinia' ) [ 'mapActions' ]
5961 const mapGetters : typeof import ( 'pinia' ) [ 'mapGetters' ]
@@ -157,7 +159,6 @@ declare global {
157159 const useClipboardItems : typeof import ( '@vueuse/core' ) [ 'useClipboardItems' ]
158160 const useCloned : typeof import ( '@vueuse/core' ) [ 'useCloned' ]
159161 const useColorMode : typeof import ( '@vueuse/core' ) [ 'useColorMode' ]
160- const useColumnConversion : typeof import ( './src/features/data-processing/composables/useColumnConversion' ) [ 'useColumnConversion' ]
161162 const useColumnDataTypeIndicators : typeof import ( './src/features/data-processing/composables/useColumnDataTypeIndicators' ) [ 'useColumnDataTypeIndicators' ]
162163 const useColumnGeneration : typeof import ( './src/features/data-processing/composables/useColumnGeneration' ) [ 'useColumnGeneration' ]
163164 const useConfirm : typeof import ( 'primevue/useconfirm' ) [ 'useConfirm' ]
@@ -217,7 +218,6 @@ declare global {
217218 const useInterval : typeof import ( '@vueuse/core' ) [ 'useInterval' ]
218219 const useIntervalFn : typeof import ( '@vueuse/core' ) [ 'useIntervalFn' ]
219220 const useKeyModifier : typeof import ( '@vueuse/core' ) [ 'useKeyModifier' ]
220- const useLanguageDropZone : typeof import ( './src/features/data-processing/composables/useLanguageDropZone' ) [ 'useLanguageDropZone' ]
221221 const useLastChanged : typeof import ( '@vueuse/core' ) [ 'useLastChanged' ]
222222 const useLink : typeof import ( 'vue-router' ) [ 'useLink' ]
223223 const useLocalStorage : typeof import ( '@vueuse/core' ) [ 'useLocalStorage' ]
@@ -270,7 +270,6 @@ declare global {
270270 const useSchemaApi : typeof import ( './src/features/wikibase-schema/composables/useSchemaApi' ) [ 'useSchemaApi' ]
271271 const useSchemaBuilder : typeof import ( './src/features/wikibase-schema/composables/useSchemaBuilder' ) [ 'useSchemaBuilder' ]
272272 const useSchemaCompletenessValidation : typeof import ( './src/features/wikibase-schema/composables/useSchemaCompletenessValidation' ) [ 'useSchemaCompletenessValidation' ]
273- const useSchemaDropZone : typeof import ( './src/features/wikibase-schema/composables/useSchemaDropZone' ) [ 'useSchemaDropZone' ]
274273 const useSchemaPersistence : typeof import ( './src/features/wikibase-schema/composables/useSchemaPersistence' ) [ 'useSchemaPersistence' ]
275274 const useSchemaSelection : typeof import ( './src/features/wikibase-schema/composables/useSchemaSelection' ) [ 'useSchemaSelection' ]
276275 const useSchemaStore : typeof import ( './src/features/wikibase-schema/stores/schema.store' ) [ 'useSchemaStore' ]
@@ -356,7 +355,7 @@ declare global {
356355// for type re-export
357356declare global {
358357 // @ts -ignore
359- export type { Component , Slot , Slots , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
358+ export type { Component , Slot , Slots , ComponentPublicInstance , ComputedRef , DirectiveBinding , ExtractDefaultPropTypes , ExtractPropTypes , ExtractPublicPropTypes , InjectionKey , PropType , Ref , ShallowRef , MaybeRef , MaybeRefOrGetter , VNode , WritableComputedRef } from 'vue'
360359 import ( 'vue' )
361360 // @ts -ignore
362361 export type { FileUploadUploaderEvent } from 'primevue/fileupload'
@@ -443,6 +442,7 @@ declare module 'vue' {
443442 readonly getActivePinia : UnwrapRef < typeof import ( 'pinia' ) [ 'getActivePinia' ] >
444443 readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
445444 readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
445+ readonly getCurrentWatcher : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentWatcher' ] >
446446 readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
447447 readonly ignorableWatch : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'ignorableWatch' ] >
448448 readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
@@ -452,6 +452,7 @@ declare module 'vue' {
452452 readonly isReactive : UnwrapRef < typeof import ( 'vue' ) [ 'isReactive' ] >
453453 readonly isReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'isReadonly' ] >
454454 readonly isRef : UnwrapRef < typeof import ( 'vue' ) [ 'isRef' ] >
455+ readonly isShallow : UnwrapRef < typeof import ( 'vue' ) [ 'isShallow' ] >
455456 readonly makeDestructurable : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'makeDestructurable' ] >
456457 readonly mapActions : UnwrapRef < typeof import ( 'pinia' ) [ 'mapActions' ] >
457458 readonly mapGetters : UnwrapRef < typeof import ( 'pinia' ) [ 'mapGetters' ] >
@@ -555,7 +556,6 @@ declare module 'vue' {
555556 readonly useClipboardItems : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useClipboardItems' ] >
556557 readonly useCloned : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useCloned' ] >
557558 readonly useColorMode : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useColorMode' ] >
558- readonly useColumnConversion : UnwrapRef < typeof import ( './src/features/data-processing/composables/useColumnConversion' ) [ 'useColumnConversion' ] >
559559 readonly useColumnDataTypeIndicators : UnwrapRef < typeof import ( './src/features/data-processing/composables/useColumnDataTypeIndicators' ) [ 'useColumnDataTypeIndicators' ] >
560560 readonly useColumnGeneration : UnwrapRef < typeof import ( './src/features/data-processing/composables/useColumnGeneration' ) [ 'useColumnGeneration' ] >
561561 readonly useConfirm : UnwrapRef < typeof import ( 'primevue/useconfirm' ) [ 'useConfirm' ] >
0 commit comments