@@ -259,6 +259,8 @@ declare global {
259259 const useProjectListStore : typeof import ( './src/features/project-management/stores/project-list.store' ) [ 'useProjectListStore' ]
260260 const useProjectStore : typeof import ( './src/features/project-management/stores/project.store' ) [ 'useProjectStore' ]
261261 const usePropertySelection : typeof import ( './src/features/wikibase-schema/composables/usePropertySelection' ) [ 'usePropertySelection' ]
262+ const usePropertyValueDisplay : typeof import ( './src/features/wikibase-schema/composables/usePropertyValueDisplay' ) [ 'usePropertyValueDisplay' ]
263+ const usePropertyValueEditor : typeof import ( './src/features/wikibase-schema/composables/usePropertyValueEditor' ) [ 'usePropertyValueEditor' ]
262264 const useRafFn : typeof import ( '@vueuse/core' ) [ 'useRafFn' ]
263265 const useRefHistory : typeof import ( '@vueuse/core' ) [ 'useRefHistory' ]
264266 const useReferenceValueMapping : typeof import ( './src/features/wikibase-schema/composables/useReferenceValueMapping' ) [ 'useReferenceValueMapping' ]
@@ -373,6 +375,9 @@ declare global {
373375 export type { ProjectColumn } from './src/features/data-processing/composables/useColumnGeneration'
374376 import ( './src/features/data-processing/composables/useColumnGeneration' )
375377 // @ts -ignore
378+ export type { PropertyValueEditorState , PropertyValueEditorActions , PropertyValueEditorOptions } from './src/features/wikibase-schema/composables/usePropertyValueEditor'
379+ import ( './src/features/wikibase-schema/composables/usePropertyValueEditor' )
380+ // @ts -ignore
376381 export type { SchemaRequest } from './src/features/wikibase-schema/composables/useSchemaApi'
377382 import ( './src/features/wikibase-schema/composables/useSchemaApi' )
378383 // @ts -ignore
@@ -394,7 +399,7 @@ declare global {
394399 export type { ProjectFile , FileSelectEvent , FileRemoveEvent , ApiClient } from './src/shared/types/index'
395400 import ( './src/shared/types/index' )
396401 // @ts -ignore
397- export type { ValidationErrorType , ValidationErrorCode , ValidationError , ValidationResult , ValidationContext , WikibaseSchemaMapping , TransformationFunction , TransformationParameter , ColumnInfo } from './src/shared/types/wikibase-schema'
402+ export type { ValidationErrorType , ValidationErrorCode , ValidationError , ValidationResult , ValidationContext , WikibaseSchemaMapping , TransformationFunction , TransformationParameter , StatementSchema , ColumnInfo } from './src/shared/types/wikibase-schema'
398403 import ( './src/shared/types/wikibase-schema' )
399404}
400405
@@ -656,6 +661,8 @@ declare module 'vue' {
656661 readonly useProjectListStore : UnwrapRef < typeof import ( './src/features/project-management/stores/project-list.store' ) [ 'useProjectListStore' ] >
657662 readonly useProjectStore : UnwrapRef < typeof import ( './src/features/project-management/stores/project.store' ) [ 'useProjectStore' ] >
658663 readonly usePropertySelection : UnwrapRef < typeof import ( './src/features/wikibase-schema/composables/usePropertySelection' ) [ 'usePropertySelection' ] >
664+ readonly usePropertyValueDisplay : UnwrapRef < typeof import ( './src/features/wikibase-schema/composables/usePropertyValueDisplay' ) [ 'usePropertyValueDisplay' ] >
665+ readonly usePropertyValueEditor : UnwrapRef < typeof import ( './src/features/wikibase-schema/composables/usePropertyValueEditor' ) [ 'usePropertyValueEditor' ] >
659666 readonly useRafFn : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRafFn' ] >
660667 readonly useRefHistory : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useRefHistory' ] >
661668 readonly useReferenceValueMapping : UnwrapRef < typeof import ( './src/features/wikibase-schema/composables/useReferenceValueMapping' ) [ 'useReferenceValueMapping' ] >
0 commit comments