File tree Expand file tree Collapse file tree
design-system/src/components
web-pkg/src/composables/piniaStores Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export { default as OcColorInput } from './OcColorInput/OcColorInput.vue'
1616export { default as OcContextualHelper } from './OcContextualHelper/OcContextualHelper.vue'
1717export { default as OcDatepicker } from './OcDatepicker/OcDatepicker.vue'
1818export { default as OcDefinitionList } from './OcDefinitionList/OcDefinitionList.vue'
19- export { default as OcDrop } from './OcDrop/OcDrop.vue'
19+ export { default as OcDrop , type Props as OcDropProps , type Slots as OcDropSlots } from './OcDrop/OcDrop.vue'
2020export { default as OcDropzone } from './OcDropzone/OcDropzone.vue'
2121export { default as OcFileInput } from './OcFileInput/OcFileInput.vue'
2222export { default as OcFilterChip } from './OcFilterChip/OcFilterChip.vue'
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const useAvatarsStore = defineStore('avatars', () => {
99 const avatarMap = ref < Record < string , string > > ( { } )
1010 const avatarsQueue = markRaw (
1111 new PQueue ( { concurrency : configStore . options . concurrentRequests . avatars } )
12- )
12+ ) as { add : PQueue [ 'add' ] }
1313 const pendingAvatarsRequests = new Map < string , Promise < any > > ( )
1414
1515 const addAvatar = ( userId : string , avatar : string ) => {
You can’t perform that action at this time.
0 commit comments