
* feat: add ability to set focal points for media fixes #739 * fix tests * actually fix tests * really really fix tests * really really really fix tests pinkie swear
49 lines
1.9 KiB
JavaScript
49 lines
1.9 KiB
JavaScript
const getDefault = mod => mod.default
|
|
|
|
export const importShowAccountProfileOptionsDialog = () => import(
|
|
/* webpackChunkName: 'showAccountProfileOptionsDialog' */ './creators/showAccountProfileOptionsDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowComposeDialog = () => import(
|
|
/* webpackChunkName: 'showComposeDialog' */ './creators/showComposeDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowTextConfirmationDialog = () => import(
|
|
/* webpackChunkName: 'showTextConfirmationDialog' */ './creators/showTextConfirmationDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowEmojiDialog = () => import(
|
|
/* webpackChunkName: 'showEmojiDialog' */ './creators/showEmojiDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowPostPrivacyDialog = () => import(
|
|
/* webpackChunkName: 'showPostPrivacyDialog' */ './creators/showPostPrivacyDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowStatusOptionsDialog = () => import(
|
|
/* webpackChunkName: 'showStatusOptionsDialog' */ './creators/showStatusOptionsDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowCopyDialog = () => import(
|
|
/* webpackChunkName: 'showCopyDialog' */ './creators/showCopyDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowShortcutHelpDialog = () => import(
|
|
/* webpackChunkName: 'showShortcutHelpDialog' */ './creators/showShortcutHelpDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowMediaDialog = () => import(
|
|
/* webpackChunkName: 'showMediaDialog' */ './creators/showMediaDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowMuteDialog = () => import(
|
|
/* webpackChunkName: 'showMuteDialog' */ './creators/showMuteDialog'
|
|
).then(getDefault)
|
|
|
|
export const importShowReportDialog = () => import(
|
|
/* webpackChunkName: 'showReportDialog' */ './creators/showReportDialog'
|
|
).then(getDefault)
|
|
|
|
export const importMediaFocalPointDialog = () => import(
|
|
/* webpackChunkName: 'mediaFocalPointDialog' */ './creators/mediaFocalPointDialog'
|
|
).then(getDefault)
|