-
-
Notifications
You must be signed in to change notification settings - Fork 835
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1.x] [extensibility] Export all missing modules in compat (#4044)
* chore(emoji): export missing modules in compat API * chore(flags): export missing modules in compat API * chore(likes): export missing modules in compat API * chore(lock): export missing modules in compat API * chore(markdown): export missing modules in compat API * chore(mentions): export missing modules in compat API * chore(nicknames): export missing modules in compat API * chore(extension-manager): export missing modules in compat API * chore(statistics): export missing modules in compat API * chore(sticky): export missing modules in compat API * chore(subscriptions): export missing modules in compat API * chore(suspend): export missing modules in compat API * chore(tags): export missing modules in compat API * chore(core): export missing modules in compat API * chore: fix tsconfig
- Loading branch information
1 parent
4d75da3
commit 449ba48
Showing
32 changed files
with
241 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import AutocompleteDropdown from './fragments/AutocompleteDropdown'; | ||
import getEmojiIconCode from './helpers/getEmojiIconCode'; | ||
|
||
export default { | ||
'emoji/fragments/AutocompleteDropdown': AutocompleteDropdown, | ||
'emoji/helpers/getEmojiIconCode': getEmojiIconCode, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import LikesUserPage from './components/LikesUserPage'; | ||
import PostLikedNotification from './components/PostLikedNotification'; | ||
import PostLikesModal from './components/PostLikesModal'; | ||
import PostLikesModalState from './states/PostLikesModalState'; | ||
|
||
export default { | ||
'likes/components/LikesUserPage': LikesUserPage, | ||
'likes/components/PostLikedNotification': PostLikedNotification, | ||
'likes/components/PostLikesModal': PostLikesModal, | ||
'likes/states/PostLikesModalState': PostLikesModalState, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import DiscussionLockedNotification from './components/DiscussionLockedNotification'; | ||
import DiscussionLockedPost from './components/DiscussionLockedPost'; | ||
|
||
export default { | ||
'lock/components/DiscussionLockedNotification': DiscussionLockedNotification, | ||
'lock/components/DiscussionLockedPost': DiscussionLockedPost, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import commonCompat from '../common/compat'; | ||
|
||
export default { | ||
...commonCompat, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import MarkdownButton from './components/MarkdownButton'; | ||
import MarkdownToolbar from './components/MarkdownToolbar'; | ||
|
||
export default { | ||
'markdown/components/MarkdownButton': MarkdownButton, | ||
'markdown/components/MarkdownToolbar': MarkdownToolbar, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import commonCompat from '../common/compat'; | ||
|
||
export default { | ||
...commonCompat, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import NicknameModal from './components/NicknameModal'; | ||
|
||
export default { | ||
'nicknames/components/NicknameModal': NicknameModal, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import AuthMethodModal from './components/AuthMethodModal'; | ||
import ConfigureAuth from './components/ConfigureAuth'; | ||
import ConfigureComposer from './components/ConfigureComposer'; | ||
import ConfigureJson from './components/ConfigureJson'; | ||
import ControlSection from './components/ControlSection'; | ||
import ExtensionItem from './components/ExtensionItem'; | ||
import Installer from './components/Installer'; | ||
import Label from './components/Label'; | ||
import MajorUpdater from './components/MajorUpdater'; | ||
import Pagination from './components/Pagination'; | ||
import QueueSection from './components/QueueSection'; | ||
import RepositoryModal from './components/RepositoryModal'; | ||
import SettingsPage from './components/SettingsPage'; | ||
import TaskOutputModal from './components/TaskOutputModal'; | ||
import Updater from './components/Updater'; | ||
import WhyNotModal from './components/WhyNotModal'; | ||
|
||
import Task from './models/Task'; | ||
|
||
import ControlSectionState from './states/ControlSectionState'; | ||
import ExtensionManagerState from './states/ExtensionManagerState'; | ||
import QueueState from './states/QueueState'; | ||
|
||
import errorHandler from './utils/errorHandler'; | ||
import humanDuration from './utils/humanDuration'; | ||
import jumpToQueue from './utils/jumpToQueue'; | ||
|
||
export default { | ||
'extension-manager/components/AuthMethodModal': AuthMethodModal, | ||
'extension-manager/components/ConfigureAuth': ConfigureAuth, | ||
'extension-manager/components/ConfigureComposer': ConfigureComposer, | ||
'extension-manager/components/ConfigureJson': ConfigureJson, | ||
'extension-manager/components/ControlSection': ControlSection, | ||
'extension-manager/components/ExtensionItem': ExtensionItem, | ||
'extension-manager/components/Installer': Installer, | ||
'extension-manager/components/Label': Label, | ||
'extension-manager/components/MajorUpdater': MajorUpdater, | ||
'extension-manager/components/Pagination': Pagination, | ||
'extension-manager/components/QueueSection': QueueSection, | ||
'extension-manager/components/RepositoryModal': RepositoryModal, | ||
'extension-manager/components/SettingsPage': SettingsPage, | ||
'extension-manager/components/TaskOutputModal': TaskOutputModal, | ||
'extension-manager/components/Updater': Updater, | ||
'extension-manager/components/WhyNotModal': WhyNotModal, | ||
'extension-manager/models/Task': Task, | ||
'extension-manager/states/ControlSectionState': ControlSectionState, | ||
'extension-manager/states/ExtensionManagerState': ExtensionManagerState, | ||
'extension-manager/states/QueueState': QueueState, | ||
'extension-manager/utils/errorHandler': errorHandler, | ||
'extension-manager/utils/humanDuration': humanDuration, | ||
'extension-manager/utils/jumpToQueue': jumpToQueue, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import MiniStatisticsWidget from './components/MiniStatisticsWidget'; | ||
import StatisticsPage from './components/StatisticsPage'; | ||
import StatisticsWidget from './components/StatisticsWidget'; | ||
import StatisticsWidgetDateSelectionModal from './components/StatisticsWidgetDateSelectionModal'; | ||
|
||
export default { | ||
'statistics/components/MiniStatisticsWidget': MiniStatisticsWidget, | ||
'statistics/components/StatisticsPage': StatisticsPage, | ||
'statistics/components/StatisticsWidget': StatisticsWidget, | ||
'statistics/components/StatisticsWidgetDateSelectionModal': StatisticsWidgetDateSelectionModal, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import DiscussionStickiedPost from './components/DiscussionStickiedPost'; | ||
|
||
export default { | ||
'sticky/components/DiscussionStickiedPost': DiscussionStickiedPost, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import NewPostNotification from './components/NewPostNotification'; | ||
import SubscriptionMenu from './components/SubscriptionMenu'; | ||
import SubscriptionMenuItem from './components/SubscriptionMenuItem'; | ||
|
||
export default { | ||
'subscriptions/components/NewPostNotification': NewPostNotification, | ||
'subscriptions/components/SubscriptionMenu': SubscriptionMenu, | ||
'subscriptions/components/SubscriptionMenuItem': SubscriptionMenuItem, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.