@logora/debate 0.4.65 → 0.4.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/components/skeleton/comments_skeleton/CommentsSkeleton.module-DxtFozVV.css +1 -0
- package/dist/assets/components/skeleton/consultation_skeleton/ConsultationSkeleton.module-DZ19OJWm.css +1 -0
- package/dist/assets/components/skeleton/debate_skeleton/DebateSkeleton.module-DXz8__D7.css +1 -0
- package/dist/assets/components/skeleton/suggestion_skeleton/SuggestionSkeleton.module-99fNFsmU.css +1 -0
- package/dist/assets/components/skeleton/user_page_skeleton/UserPageSkeleton.module-mlNfXOfB.css +1 -0
- package/dist/components/skeleton/comments_skeleton/CommentsSkeleton.js +74 -0
- package/dist/components/skeleton/comments_skeleton/CommentsSkeleton.module.scss.js +33 -0
- package/dist/components/skeleton/consultation_skeleton/ConsultationSkeleton.js +76 -0
- package/dist/components/skeleton/consultation_skeleton/ConsultationSkeleton.module.scss.js +27 -0
- package/dist/components/skeleton/debate_skeleton/DebateSkeleton.js +90 -0
- package/dist/components/skeleton/debate_skeleton/DebateSkeleton.module.scss.js +31 -0
- package/dist/components/skeleton/suggestion_skeleton/SuggestionSkeleton.js +64 -0
- package/dist/components/skeleton/suggestion_skeleton/SuggestionSkeleton.module.scss.js +31 -0
- package/dist/components/skeleton/user_content_skeleton/UserContentSkeleton.js +33 -40
- package/dist/components/skeleton/user_page_skeleton/UserPageSkeleton.js +79 -0
- package/dist/components/skeleton/user_page_skeleton/UserPageSkeleton.module.scss.js +29 -0
- package/dist/index.js +312 -302
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15,154 +15,159 @@ import { AuthContext as h } from "./components/auth/use_auth/AuthContext.js";
|
|
|
15
15
|
import { AuthInitializer as T } from "./components/auth/auth_initializer/AuthInitializer.js";
|
|
16
16
|
import { AuthModal as P } from "./components/auth/auth_modal/AuthModal.js";
|
|
17
17
|
import { AuthProvider as M, withAuth as F } from "./components/auth/use_auth/AuthProvider.js";
|
|
18
|
-
import { AuthProviderFactory as
|
|
19
|
-
import { AuthorBox as
|
|
20
|
-
import { Avatar as
|
|
18
|
+
import { AuthProviderFactory as k } from "./components/auth/providers/AuthProviderFactory.js";
|
|
19
|
+
import { AuthorBox as D } from "./components/user/author_box/AuthorBox.js";
|
|
20
|
+
import { Avatar as O } from "./components/user/avatar/Avatar.js";
|
|
21
21
|
import { AvatarSelector as w } from "./components/user/avatar_selector/AvatarSelector.js";
|
|
22
22
|
import { BackLink as V } from "./components/action/back_link/BackLink.js";
|
|
23
|
-
import { BadgeBox as
|
|
24
|
-
import { BoxSkeleton as
|
|
23
|
+
import { BadgeBox as U } from "./components/gamification/badge_box/BadgeBox.js";
|
|
24
|
+
import { BoxSkeleton as H } from "./components/skeleton/box_skeleton/BoxSkeleton.js";
|
|
25
25
|
import { Button as K } from "./components/action/button/Button.js";
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
26
|
+
import { CommentsSkeleton as Y } from "./components/skeleton/comments_skeleton/CommentsSkeleton.js";
|
|
27
|
+
import { ConfigContext as W, ConfigProvider as j } from "./components/data/config_provider/ConfigProvider.js";
|
|
28
|
+
import { ConfirmModal as Q } from "./components/dialog/confirm_modal/ConfirmModal.js";
|
|
29
|
+
import { ConsultationBox as Z } from "./components/consultation/consultation_box/ConsultationBox.js";
|
|
30
|
+
import { ConsultationSkeleton as ro } from "./components/skeleton/consultation_skeleton/ConsultationSkeleton.js";
|
|
31
|
+
import { ContentFooter as to } from "./components/user_content/content_footer/ContentFooter.js";
|
|
32
|
+
import { ContentHeader as mo } from "./components/user_content/content_header/ContentHeader.js";
|
|
33
|
+
import { ContextSourceBox as fo } from "./components/source/context_source_box/ContextSourceBox.js";
|
|
34
|
+
import { ContextSourceList as ao } from "./components/source/context_source_list/ContextSourceList.js";
|
|
35
|
+
import { Countdown as so } from "./components/dialog/countdown/Countdown.js";
|
|
36
|
+
import { DataProviderContext as lo } from "./components/data/data_provider/DataProviderContext.js";
|
|
37
|
+
import { DebateBox as co } from "./components/debate/debate_box/DebateBox.js";
|
|
38
|
+
import { DebateSkeleton as So } from "./components/skeleton/debate_skeleton/DebateSkeleton.js";
|
|
39
|
+
import { DialogBox as Ao } from "./components/dialog/dialog_box/DialogBox.js";
|
|
40
|
+
import { Drawer as Io } from "./components/dialog/drawer/Drawer.js";
|
|
41
|
+
import { Dropdown as Lo } from "./components/dialog/dropdown/Dropdown.js";
|
|
42
|
+
import { EMAIL_CONSENT_STORAGE_KEY as vo, useAuthActions as Mo } from "./components/auth/use_auth/useAuthActions.js";
|
|
43
|
+
import { EmbedHeader as bo } from "./components/embed/embed_header/EmbedHeader.js";
|
|
44
|
+
import { ExpandableText as Ro } from "./components/text/expandable_text/ExpandableText.js";
|
|
45
|
+
import { FacebookLoginButton as Eo } from "./components/auth/facebook_login_button/FacebookLoginButton.js";
|
|
46
|
+
import { FollowButton as No } from "./components/follow/follow_button/FollowButton.js";
|
|
47
|
+
import { Form as yo } from "./components/forms/form/form.js";
|
|
48
|
+
import { FormContext as Go } from "./components/forms/form/form-context.js";
|
|
49
|
+
import { GoogleLoginButton as _o } from "./components/auth/google_login_button/GoogleLoginButton.js";
|
|
50
|
+
import { HashScroll as $o } from "./components/tools/hash_scroll/HashScroll.js";
|
|
51
|
+
import { Icon as qo } from "./components/icons/icon/Icon.js";
|
|
52
|
+
import { IconContext as zo, IconProvider as Wo } from "./components/icons/icon_provider/IconProvider.js";
|
|
53
|
+
import { IconTextLink as Jo } from "./components/action/icon_text_link/IconTextLink.js";
|
|
54
|
+
import { InformationBox as Xo } from "./components/information/information_box/InformationBox.js";
|
|
55
|
+
import { HiddenCheckbox as or } from "./components/input/checkbox/hidden/hidden-checkbox.js";
|
|
56
|
+
import { InputProvider as er } from "./components/input/input_provider/InputProvider.js";
|
|
57
|
+
import { IntlContext as xr } from "./components/intl/intl_provider/IntlContext.js";
|
|
58
|
+
import { IntlProvider as pr } from "./components/intl/intl_provider/IntlProvider.js";
|
|
59
|
+
import { KeywordBox as nr } from "./components/summary/keyword_box/KeywordBox.js";
|
|
60
|
+
import { LANGUAGES as ir, getLocaleIcon as sr, getLocaleName as ur } from "./components/util/lang_emojis/langEmojis.js";
|
|
61
|
+
import { LineChart as lr } from "./components/chart/line_chart/LineChart.js";
|
|
62
|
+
import { Link as cr } from "./components/action/link/Link.js";
|
|
63
|
+
import { ListProvider as Sr } from "./components/list/list_provider/ListProvider.js";
|
|
64
|
+
import { Loader as Ar } from "./components/progress/loader/Loader.js";
|
|
65
|
+
import { Location as Ir } from "./components/util/location/Location.js";
|
|
66
|
+
import { LoginForm as Lr } from "./components/auth/login_form/LoginForm.js";
|
|
67
|
+
import { Message as vr } from "./components/input/text_input/message.js";
|
|
68
|
+
import { Modal as Fr } from "./components/dialog/modal/Modal.js";
|
|
69
|
+
import { ModalContext as kr, ModalProvider as Rr } from "./components/dialog/modal/ModalProvider.js";
|
|
70
|
+
import { NavbarButton as Er } from "./components/navbar/navbar_button/NavbarButton.js";
|
|
71
|
+
import { NavbarModal as Nr } from "./components/navbar/navbar_modal/NavbarModal.js";
|
|
72
|
+
import { NotificationItem as yr } from "./components/notification/notification_item/NotificationItem.js";
|
|
73
|
+
import { NotificationMenu as Gr } from "./components/notification/notification_menu/NotificationMenu.js";
|
|
74
|
+
import { OAuth2Button as _r } from "./components/auth/oauth2_button/OAuth2Button.js";
|
|
75
|
+
import { ONBOARDING_BEFORE_LOGIN_STORAGE_KEY as $r, getOnboardingBeforeLoginStorageKey as Kr, saveOnboardingBeforeLogin as qr, useOnboarding as Yr } from "./components/user/onboarding_modal/useOnboarding.js";
|
|
76
|
+
import { OnboardingModal as Wr } from "./components/user/onboarding_modal/OnboardingModal.js";
|
|
77
|
+
import { PaginatedList as Jr } from "./components/list/paginated_list/PaginatedList.js";
|
|
78
|
+
import { Pagination as Xr } from "./components/list/pagination/Pagination.js";
|
|
79
|
+
import { PieChart as oe } from "./components/chart/pie_chart/PieChart.js";
|
|
80
|
+
import { PointBox as ee } from "./components/gamification/point_box/PointBox.js";
|
|
81
|
+
import { ProgressBar as xe } from "./components/progress/progress_bar/ProgressBar.js";
|
|
82
|
+
import { ProposalBox as pe } from "./components/proposal/proposal_box/ProposalBox.js";
|
|
83
|
+
import { ReadMore as ne } from "./components/text/read_more/ReadMore.js";
|
|
84
|
+
import { ReportBox as ie } from "./components/report/report_box/ReportBox.js";
|
|
85
|
+
import { ReportModal as ue } from "./components/user_content/use_report_content/ReportModal.js";
|
|
86
|
+
import { ResponsiveProvider as le } from "./components/hooks/use_responsive/ResponsiveProvider.js";
|
|
87
|
+
import { SSOForm as ce } from "./components/auth/sso_form/SSOForm.js";
|
|
88
|
+
import { ScrollToTop as Se } from "./components/tools/scroll_to_top/ScrollToTop.js";
|
|
89
|
+
import { SearchInput as Ae } from "./components/input/search_input/SearchInput.js";
|
|
90
|
+
import { SectionBox as Ie } from "./components/section/section_box/SectionBox.js";
|
|
91
|
+
import { Select as Le } from "./components/input/select/Select.js";
|
|
92
|
+
import { ShareBox as ve } from "./components/share/share_box/ShareBox.js";
|
|
93
|
+
import { ShareButton as Fe } from "./components/share/share_button/ShareButton.js";
|
|
94
|
+
import { ShareModal as ke } from "./components/share/share_modal/ShareModal.js";
|
|
95
|
+
import { SideModal as De } from "./components/modal/side_modal/SideModal.js";
|
|
96
|
+
import { SignupForm as Oe } from "./components/auth/signup_form/SignupForm.js";
|
|
97
|
+
import { SocialAuthForm as we } from "./components/auth/social_auth_form/SocialAuthForm.js";
|
|
98
|
+
import { SourceBox as Ve } from "./components/source/source_box/SourceBox.js";
|
|
99
|
+
import { SourceListItem as Ue } from "./components/source/source_list_item/SourceListItem.js";
|
|
100
|
+
import { SourceModal as He } from "./components/source/source_modal/SourceModal.js";
|
|
101
|
+
import { StandardErrorBoundary as Ke } from "./components/error/standard_error_boundary/StandardErrorBoundary.js";
|
|
102
|
+
import { SuggestionBanner as Ye } from "./components/suggestion/suggestion_banner/SuggestionBanner.js";
|
|
103
|
+
import { SuggestionBox as We } from "./components/suggestion/suggestion_box/SuggestionBox.js";
|
|
104
|
+
import { SuggestionInput as Je } from "./components/suggestion/suggestion_input/SuggestionInput.js";
|
|
105
|
+
import { SuggestionSkeleton as Xe } from "./components/skeleton/suggestion_skeleton/SuggestionSkeleton.js";
|
|
106
|
+
import { SuggestionVoteBox as ot } from "./components/vote/suggestion_vote_box/SuggestionVoteBox.js";
|
|
107
|
+
import { Summary as et } from "./components/summary/summary/Summary.js";
|
|
108
|
+
import { SummaryBox as xt } from "./components/summary/summary_box/SummaryBox.js";
|
|
109
|
+
import { SummaryContentBox as pt } from "./components/user_content/summary_content_box/SummaryContentBox.js";
|
|
110
|
+
import { Tab as nt } from "./components/navigation/tabs/Tab.js";
|
|
111
|
+
import { TabPanel as it } from "./components/navigation/tabs/TabPanel.js";
|
|
112
|
+
import { Tabs as ut } from "./components/navigation/tabs/Tabs.js";
|
|
113
|
+
import { Tag as lt } from "./components/tag/tag/Tag.js";
|
|
114
|
+
import { TextEditor as ct } from "./components/input/text_editor/TextEditor.js";
|
|
115
|
+
import { TextInput as St } from "./components/input/text_input/TextInput.js";
|
|
116
|
+
import { Toast as At } from "./components/dialog/toast/Toast.js";
|
|
117
|
+
import { ToastProvider as It } from "./components/dialog/toast_provider/ToastProvider.js";
|
|
118
|
+
import { Toggle as Lt } from "./components/input/toggle/Toggle.js";
|
|
119
|
+
import { TogglePosition as vt } from "./components/input/toggle_position/TogglePosition.js";
|
|
120
|
+
import { Tooltip as Ft } from "./components/dialog/tooltip/Tooltip.js";
|
|
121
|
+
import { TopArguments as kt } from "./components/argument/top_arguments/TopArguments.js";
|
|
122
|
+
import { TranslatedContent as Dt } from "./components/translation/translated_content/TranslatedContent.js";
|
|
123
|
+
import { TranslationButton as Ot } from "./components/translation/translation_button/TranslationButton.js";
|
|
124
|
+
import { UpDownVoteBox as wt } from "./components/vote/up_down_vote_box/UpDownVoteBox.js";
|
|
125
|
+
import { UserBox as Vt } from "./components/user/user_box/UserBox.js";
|
|
126
|
+
import { UserBoxSmall as Ut } from "./components/user/user_box_small/UserBoxSmall.js";
|
|
127
|
+
import { UserContentSkeleton as Ht } from "./components/skeleton/user_content_skeleton/UserContentSkeleton.js";
|
|
128
|
+
import { UserPageSkeleton as Kt } from "./components/skeleton/user_page_skeleton/UserPageSkeleton.js";
|
|
129
|
+
import { VoteBox as Yt } from "./components/vote/vote_box/VoteBox.js";
|
|
130
|
+
import { VoteButton as Wt } from "./components/vote/vote_button/VoteButton.js";
|
|
131
|
+
import { VoteContext as Jt, VoteProvider as Qt } from "./components/vote/vote_provider/VoteProvider.js";
|
|
132
|
+
import { VotePaginatedList as Zt } from "./components/list/paginated_list/VotePaginatedList.js";
|
|
133
|
+
import { WithAd as rx } from "./components/ad/with_ad/WithAd.js";
|
|
134
|
+
import { authTokenHandler as tx } from "./components/auth/use_auth/authTokenHandler.js";
|
|
135
|
+
import { classes as mx, getAccent as px } from "./components/input/text_input/color-accent.js";
|
|
136
|
+
import { dataProvider as nx } from "./components/data/data_provider/DataProvider.js";
|
|
137
|
+
import { extractFormData as ix } from "./components/forms/form/extract-form-data.js";
|
|
138
|
+
import { getTranslatedContent as ux, useTranslatedContent as dx } from "./components/translation/translated_content/useTranslatedContent.js";
|
|
139
|
+
import { httpClient as gx } from "./components/data/axios_client/httpClient.js";
|
|
140
|
+
import { lexicalToHtml as Bx } from "./components/input/text_editor/lexicalToHtml.js";
|
|
141
|
+
import { makeStorage as Cx } from "./components/auth/use_auth/AuthStorage.js";
|
|
142
|
+
import { uniqueBy as hx } from "./components/util/unique_by/uniqueBy.js";
|
|
143
|
+
import { useAuth as Tx } from "./components/auth/use_auth/useAuth.js";
|
|
144
|
+
import { useAuthInterceptor as Px } from "./components/auth/use_auth/useAuthInterceptor.js";
|
|
145
|
+
import { useAuthRequired as Mx } from "./components/hooks/use_auth_required/useAuthRequired.js";
|
|
146
|
+
import { useConfig as bx } from "./components/data/config_provider/useConfig.js";
|
|
147
|
+
import { useCssTheme as Rx } from "./components/hooks/use_css_theme/useCssTheme.js";
|
|
148
|
+
import { useData as Ex } from "./components/data/data_provider/useData.js";
|
|
149
|
+
import { useDataProvider as Nx } from "./components/data/data_provider/useDataProvider.js";
|
|
150
|
+
import { useDeleteContent as yx } from "./components/user_content/use_delete_content/useDeleteContent.js";
|
|
151
|
+
import { useFollow as Gx } from "./components/follow/use_follow/useFollow.js";
|
|
152
|
+
import { useFontLoader as _x } from "./components/hooks/use_font_loader/useFontLoader.js";
|
|
153
|
+
import { useForm as $x } from "./components/forms/form/use-form.js";
|
|
154
|
+
import { useFormContext as qx } from "./components/forms/form/use-form-context.js";
|
|
155
|
+
import { useFormValidation as zx } from "./components/forms/use_form_validation/useFormValidation.js";
|
|
156
|
+
import { useGoogleAdManager as jx } from "./components/ad/use_google_ad_manager/useGoogleAdManager.js";
|
|
157
|
+
import { useInput as Qx } from "./components/input/input_provider/useInput.js";
|
|
158
|
+
import { useList as Zx } from "./components/list/list_provider/useList.js";
|
|
159
|
+
import { useLocale as rm } from "./components/intl/intl_provider/useLocale.js";
|
|
160
|
+
import { useMatomo as tm } from "./components/hooks/use_matomo/useMatomo.js";
|
|
161
|
+
import { useModal as mm } from "./components/dialog/modal/useModal.js";
|
|
162
|
+
import { useRelativeTime as fm } from "./components/hooks/use_relative_time/useRelativeTime.js";
|
|
163
|
+
import { useReportContent as am } from "./components/user_content/use_report_content/useReportContent.js";
|
|
164
|
+
import { useResponsive as sm } from "./components/hooks/use_responsive/useResponsive.js";
|
|
165
|
+
import { useRichContent as dm } from "./components/argument/argument/useRichContent.js";
|
|
166
|
+
import { useRoutes as gm } from "./components/data/config_provider/useRoutes.js";
|
|
167
|
+
import { useToast as Bm } from "./components/dialog/toast_provider/useToast.js";
|
|
168
|
+
import { useVote as Cm } from "./components/vote/use_vote/useVote.js";
|
|
169
|
+
import { utf8ToBase64url as hm } from "./components/auth/use_auth/base64.js";
|
|
170
|
+
import { withConfig as Tm } from "./components/data/config_provider/withConfig.js";
|
|
166
171
|
export {
|
|
167
172
|
a as ActionBar,
|
|
168
173
|
s as AdUnit,
|
|
@@ -174,172 +179,177 @@ export {
|
|
|
174
179
|
T as AuthInitializer,
|
|
175
180
|
P as AuthModal,
|
|
176
181
|
M as AuthProvider,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
182
|
+
k as AuthProviderFactory,
|
|
183
|
+
D as AuthorBox,
|
|
184
|
+
O as Avatar,
|
|
180
185
|
w as AvatarSelector,
|
|
181
186
|
V as BackLink,
|
|
182
|
-
|
|
183
|
-
|
|
187
|
+
U as BadgeBox,
|
|
188
|
+
H as BoxSkeleton,
|
|
184
189
|
K as Button,
|
|
185
|
-
Y as
|
|
186
|
-
|
|
187
|
-
j as
|
|
188
|
-
Q as
|
|
189
|
-
Z as
|
|
190
|
-
ro as
|
|
191
|
-
to as
|
|
192
|
-
mo as
|
|
193
|
-
fo as
|
|
194
|
-
ao as
|
|
195
|
-
so as
|
|
196
|
-
lo as
|
|
197
|
-
co as
|
|
198
|
-
So as
|
|
199
|
-
Ao as
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
bo as
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
No as
|
|
207
|
-
yo as
|
|
208
|
-
Go as
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
Wo as
|
|
214
|
-
Jo as
|
|
215
|
-
Xo as
|
|
216
|
-
or as
|
|
217
|
-
er as
|
|
218
|
-
xr as
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
lr as
|
|
223
|
-
cr as
|
|
224
|
-
Sr as
|
|
225
|
-
Ar as
|
|
226
|
-
Ir as
|
|
227
|
-
Lr as
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
Nr as
|
|
234
|
-
yr as
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
Wr as
|
|
239
|
-
Jr as
|
|
240
|
-
Xr as
|
|
241
|
-
oe as
|
|
242
|
-
ee as
|
|
243
|
-
xe as
|
|
244
|
-
pe as
|
|
245
|
-
ne as
|
|
246
|
-
ie as
|
|
247
|
-
ue as
|
|
248
|
-
le as
|
|
249
|
-
ce as
|
|
250
|
-
Se as
|
|
251
|
-
Ae as
|
|
252
|
-
Ie as
|
|
253
|
-
Le as
|
|
254
|
-
ve as
|
|
255
|
-
Fe as
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
we as
|
|
260
|
-
Ve as
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
Ke as
|
|
264
|
-
Ye as
|
|
265
|
-
We as
|
|
266
|
-
Je as
|
|
267
|
-
Xe as
|
|
268
|
-
ot as
|
|
269
|
-
et as
|
|
270
|
-
xt as
|
|
271
|
-
pt as
|
|
272
|
-
nt as
|
|
273
|
-
it as
|
|
274
|
-
ut as
|
|
275
|
-
lt as
|
|
276
|
-
ct as
|
|
277
|
-
St as
|
|
278
|
-
At as
|
|
279
|
-
It as
|
|
280
|
-
Lt as
|
|
281
|
-
vt as
|
|
282
|
-
Ft as
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
wt as
|
|
287
|
-
Vt as
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
190
|
+
Y as CommentsSkeleton,
|
|
191
|
+
W as ConfigContext,
|
|
192
|
+
j as ConfigProvider,
|
|
193
|
+
Q as ConfirmModal,
|
|
194
|
+
Z as ConsultationBox,
|
|
195
|
+
ro as ConsultationSkeleton,
|
|
196
|
+
to as ContentFooter,
|
|
197
|
+
mo as ContentHeader,
|
|
198
|
+
fo as ContextSourceBox,
|
|
199
|
+
ao as ContextSourceList,
|
|
200
|
+
so as Countdown,
|
|
201
|
+
lo as DataProviderContext,
|
|
202
|
+
co as DebateBox,
|
|
203
|
+
So as DebateSkeleton,
|
|
204
|
+
Ao as DialogBox,
|
|
205
|
+
Io as Drawer,
|
|
206
|
+
Lo as Dropdown,
|
|
207
|
+
vo as EMAIL_CONSENT_STORAGE_KEY,
|
|
208
|
+
bo as EmbedHeader,
|
|
209
|
+
Ro as ExpandableText,
|
|
210
|
+
Eo as FacebookLoginButton,
|
|
211
|
+
No as FollowButton,
|
|
212
|
+
yo as Form,
|
|
213
|
+
Go as FormContext,
|
|
214
|
+
_o as GoogleLoginButton,
|
|
215
|
+
$o as HashScroll,
|
|
216
|
+
qo as Icon,
|
|
217
|
+
zo as IconContext,
|
|
218
|
+
Wo as IconProvider,
|
|
219
|
+
Jo as IconTextLink,
|
|
220
|
+
Xo as InformationBox,
|
|
221
|
+
or as Input,
|
|
222
|
+
er as InputProvider,
|
|
223
|
+
xr as IntlContext,
|
|
224
|
+
pr as IntlProvider,
|
|
225
|
+
nr as KeywordBox,
|
|
226
|
+
ir as LANGUAGES,
|
|
227
|
+
lr as LineChart,
|
|
228
|
+
cr as Link,
|
|
229
|
+
Sr as ListProvider,
|
|
230
|
+
Ar as Loader,
|
|
231
|
+
Ir as Location,
|
|
232
|
+
Lr as LoginForm,
|
|
233
|
+
vr as Message,
|
|
234
|
+
Fr as Modal,
|
|
235
|
+
kr as ModalContext,
|
|
236
|
+
Rr as ModalProvider,
|
|
237
|
+
Er as NavbarButton,
|
|
238
|
+
Nr as NavbarModal,
|
|
239
|
+
yr as NotificationItem,
|
|
240
|
+
Gr as NotificationMenu,
|
|
241
|
+
_r as OAuth2Button,
|
|
242
|
+
$r as ONBOARDING_BEFORE_LOGIN_STORAGE_KEY,
|
|
243
|
+
Wr as OnboardingModal,
|
|
244
|
+
Jr as PaginatedList,
|
|
245
|
+
Xr as Pagination,
|
|
246
|
+
oe as PieChart,
|
|
247
|
+
ee as PointBox,
|
|
248
|
+
xe as ProgressBar,
|
|
249
|
+
pe as ProposalBox,
|
|
250
|
+
ne as ReadMore,
|
|
251
|
+
ie as ReportBox,
|
|
252
|
+
ue as ReportModal,
|
|
253
|
+
le as ResponsiveProvider,
|
|
254
|
+
ce as SSOForm,
|
|
255
|
+
Se as ScrollToTop,
|
|
256
|
+
Ae as SearchInput,
|
|
257
|
+
Ie as SectionBox,
|
|
258
|
+
Le as Select,
|
|
259
|
+
ve as ShareBox,
|
|
260
|
+
Fe as ShareButton,
|
|
261
|
+
ke as ShareModal,
|
|
262
|
+
De as SideModal,
|
|
263
|
+
Oe as SignupForm,
|
|
264
|
+
we as SocialAuthForm,
|
|
265
|
+
Ve as SourceBox,
|
|
266
|
+
Ue as SourceListItem,
|
|
267
|
+
He as SourceModal,
|
|
268
|
+
Ke as StandardErrorBoundary,
|
|
269
|
+
Ye as SuggestionBanner,
|
|
270
|
+
We as SuggestionBox,
|
|
271
|
+
Je as SuggestionInput,
|
|
272
|
+
Xe as SuggestionSkeleton,
|
|
273
|
+
ot as SuggestionVoteBox,
|
|
274
|
+
et as Summary,
|
|
275
|
+
xt as SummaryBox,
|
|
276
|
+
pt as SummaryContentBox,
|
|
277
|
+
nt as Tab,
|
|
278
|
+
it as TabPanel,
|
|
279
|
+
ut as Tabs,
|
|
280
|
+
lt as Tag,
|
|
281
|
+
ct as TextEditor,
|
|
282
|
+
St as TextInput,
|
|
283
|
+
At as Toast,
|
|
284
|
+
It as ToastProvider,
|
|
285
|
+
Lt as Toggle,
|
|
286
|
+
vt as TogglePosition,
|
|
287
|
+
Ft as Tooltip,
|
|
288
|
+
kt as TopArguments,
|
|
289
|
+
Dt as TranslatedContent,
|
|
290
|
+
Ot as TranslationButton,
|
|
291
|
+
wt as UpDownVoteBox,
|
|
292
|
+
Vt as UserBox,
|
|
293
|
+
Ut as UserBoxSmall,
|
|
294
|
+
Ht as UserContentSkeleton,
|
|
295
|
+
Kt as UserPageSkeleton,
|
|
296
|
+
Yt as VoteBox,
|
|
297
|
+
Wt as VoteButton,
|
|
298
|
+
Jt as VoteContext,
|
|
299
|
+
Zt as VotePaginatedList,
|
|
300
|
+
Qt as VoteProvider,
|
|
301
|
+
rx as WithAd,
|
|
302
|
+
tx as authTokenHandler,
|
|
293
303
|
r as bildIcons,
|
|
294
304
|
p as clarinIcons,
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
305
|
+
mx as classes,
|
|
306
|
+
nx as dataProvider,
|
|
307
|
+
ix as extractFormData,
|
|
308
|
+
px as getAccent,
|
|
309
|
+
sr as getLocaleIcon,
|
|
310
|
+
ur as getLocaleName,
|
|
311
|
+
Kr as getOnboardingBeforeLoginStorageKey,
|
|
312
|
+
ux as getTranslatedContent,
|
|
303
313
|
t as heroIcons,
|
|
304
|
-
|
|
314
|
+
gx as httpClient,
|
|
305
315
|
x as kroneIcons,
|
|
306
|
-
|
|
307
|
-
|
|
316
|
+
Bx as lexicalToHtml,
|
|
317
|
+
Cx as makeStorage,
|
|
308
318
|
o as regularIcons,
|
|
309
|
-
|
|
319
|
+
qr as saveOnboardingBeforeLogin,
|
|
310
320
|
e as spiegelIcons,
|
|
311
321
|
m as sternIcons,
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
322
|
+
hx as uniqueBy,
|
|
323
|
+
Tx as useAuth,
|
|
324
|
+
Mo as useAuthActions,
|
|
325
|
+
Px as useAuthInterceptor,
|
|
326
|
+
Mx as useAuthRequired,
|
|
327
|
+
bx as useConfig,
|
|
328
|
+
Rx as useCssTheme,
|
|
329
|
+
Ex as useData,
|
|
330
|
+
Nx as useDataProvider,
|
|
331
|
+
yx as useDeleteContent,
|
|
332
|
+
Gx as useFollow,
|
|
333
|
+
_x as useFontLoader,
|
|
334
|
+
$x as useForm,
|
|
335
|
+
qx as useFormContext,
|
|
336
|
+
zx as useFormValidation,
|
|
337
|
+
jx as useGoogleAdManager,
|
|
338
|
+
Qx as useInput,
|
|
339
|
+
Zx as useList,
|
|
340
|
+
rm as useLocale,
|
|
341
|
+
tm as useMatomo,
|
|
342
|
+
mm as useModal,
|
|
343
|
+
Yr as useOnboarding,
|
|
344
|
+
fm as useRelativeTime,
|
|
345
|
+
am as useReportContent,
|
|
346
|
+
sm as useResponsive,
|
|
347
|
+
dm as useRichContent,
|
|
348
|
+
gm as useRoutes,
|
|
349
|
+
Bm as useToast,
|
|
350
|
+
dx as useTranslatedContent,
|
|
351
|
+
Cm as useVote,
|
|
352
|
+
hm as utf8ToBase64url,
|
|
343
353
|
F as withAuth,
|
|
344
|
-
|
|
354
|
+
Tm as withConfig
|
|
345
355
|
};
|