
* feat: add OCR for image descriptions using tesseract.js * tweak style of alt editor * remove unnecessary files
53 lines
2 KiB
JavaScript
53 lines
2 KiB
JavaScript
const getDefault = mod => mod.default
|
|
|
|
export const importTimeline = () => import(
|
|
/* webpackChunkName: 'Timeline' */ '../_components/timeline/Timeline.html'
|
|
).then(getDefault)
|
|
|
|
export const importVirtualList = () => import(
|
|
/* webpackChunkName: 'VirtualList.html' */ '../_components/virtualList/VirtualList.html'
|
|
).then(getDefault)
|
|
|
|
export const importList = () => import(
|
|
/* webpackChunkName: 'List.html' */ '../_components/list/List.html'
|
|
).then(getDefault)
|
|
|
|
export const importStatusVirtualListItem = () => import(
|
|
/* webpackChunkName: 'StatusVirtualListItem.html' */ '../_components/timeline/StatusVirtualListItem.html'
|
|
).then(getDefault)
|
|
|
|
export const importNotificationVirtualListItem = () => import(
|
|
/* webpackChunkName: 'NotificationVirtualListItem.html' */ '../_components/timeline/NotificationVirtualListItem.html'
|
|
).then(getDefault)
|
|
|
|
export const importDatabase = () => import(
|
|
/* webpackChunkName: 'database.js' */ '../_database/databaseApis.js'
|
|
)
|
|
|
|
export const importLoggedInObservers = () => import(
|
|
/* webpackChunkName: 'loggedInObservers.js' */ '../_store/observers/loggedInObservers.js'
|
|
).then(getDefault)
|
|
|
|
export const importNavShortcuts = () => import(
|
|
/* webpackChunkName: 'NavShortcuts' */ '../_components/NavShortcuts.html'
|
|
).then(getDefault)
|
|
|
|
export const importEmojiMart = () => import(
|
|
/* webpackChunkName: 'createEmojiMartPickerFromData.js' */ '../_react/createEmojiMartPickerFromData.js'
|
|
).then(getDefault)
|
|
|
|
export const importToast = () => import(
|
|
/* webpackChunkName: 'Toast.html' */ '../_components/toast/Toast.html'
|
|
).then(getDefault)
|
|
|
|
export const importSnackbar = () => import(
|
|
/* webpackChunkName: 'Snackbar.html' */ '../_components/snackbar/Snackbar.html'
|
|
).then(getDefault)
|
|
|
|
export const importComposeBox = () => import(
|
|
/* webpackChunkName: 'ComposeBox.html' */ '../_components/compose/ComposeBox.html'
|
|
).then(getDefault)
|
|
|
|
export const importTesseractWorker = () => import(
|
|
/* webpackChunkName: 'tesseractWorker' */ '../_utils/tesseractWorker.js'
|
|
).then(getDefault)
|