@logora/debate 0.1.0 → 0.1.1

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.
Files changed (1467) hide show
  1. package/dist/_virtual/_rolldown/runtime.js +23 -0
  2. package/dist/assets/debate-Bv79XlHp.css +2 -0
  3. package/dist/components/action/back_link/BackLink.js +24 -0
  4. package/dist/components/action/back_link/BackLink.module.js +6 -0
  5. package/dist/components/action/button/Button.js +34 -0
  6. package/dist/components/action/button/Button.module.js +10 -0
  7. package/dist/components/action/icon_text_link/IconTextLink.js +37 -0
  8. package/dist/components/action/icon_text_link/IconTextLink.module.js +11 -0
  9. package/dist/components/action/link/Link.js +23 -0
  10. package/dist/components/ad/ad_unit/AdUnit.js +42 -0
  11. package/dist/components/ad/ad_unit/AdUnit.module.js +3 -0
  12. package/dist/components/ad/use_google_ad_manager/useGoogleAdManager.js +22 -0
  13. package/dist/components/ad/with_ad/WithAd.js +13 -0
  14. package/dist/components/argument/argument/Argument.js +266 -0
  15. package/dist/components/argument/argument/Argument.module.js +34 -0
  16. package/dist/components/argument/argument/ReplyFooter.js +39 -0
  17. package/dist/components/argument/argument/ReplyFooter.module.js +10 -0
  18. package/dist/components/argument/argument/useRichContent.js +14 -0
  19. package/dist/components/argument/top_arguments/TopArguments.js +63 -0
  20. package/dist/components/argument/top_arguments/TopArguments.module.js +9 -0
  21. package/dist/components/auth/auth_initializer/AuthInitializer.js +35 -0
  22. package/dist/components/auth/auth_modal/AuthModal.js +68 -0
  23. package/dist/components/auth/auth_modal/AuthModal.module.js +3 -0
  24. package/dist/components/auth/auth_modal/index.js +2 -0
  25. package/dist/components/auth/facebook_login_button/FacebookIcon.js +14 -0
  26. package/dist/components/auth/facebook_login_button/FacebookLoginButton.js +29 -0
  27. package/dist/components/auth/facebook_login_button/FacebookLoginButton.module.js +6 -0
  28. package/dist/components/auth/google_login_button/GoogleIcon.js +29 -0
  29. package/dist/components/auth/google_login_button/GoogleLoginButton.js +31 -0
  30. package/dist/components/auth/google_login_button/GoogleLoginButton.module.js +6 -0
  31. package/dist/components/auth/login_form/LoginForm.js +83 -0
  32. package/dist/components/auth/login_form/LoginForm.module.js +9 -0
  33. package/dist/components/auth/oauth2_button/OAuth2Button.js +37 -0
  34. package/dist/components/auth/oauth2_button/OAuth2Button.module.js +6 -0
  35. package/dist/components/auth/providers/AuthProvider.js +20 -0
  36. package/dist/components/auth/providers/AuthProviderFactory.js +10 -0
  37. package/dist/components/auth/providers/FormAuth.js +29 -0
  38. package/dist/components/auth/providers/JWTAuth.js +27 -0
  39. package/dist/components/auth/providers/OAuth2ServerAuth.js +35 -0
  40. package/dist/components/auth/providers/PasswordAuth.js +25 -0
  41. package/dist/components/auth/signup_form/SignupForm.js +155 -0
  42. package/dist/components/auth/signup_form/SignupForm.module.js +7 -0
  43. package/dist/components/auth/social_auth_form/SocialAuthForm.js +199 -0
  44. package/dist/components/auth/social_auth_form/SocialAuthForm.module.js +21 -0
  45. package/dist/components/auth/sso_form/SSOForm.js +147 -0
  46. package/dist/components/auth/sso_form/SSOForm.module.js +17 -0
  47. package/dist/components/auth/use_auth/AuthContext.js +5 -0
  48. package/dist/components/auth/use_auth/AuthProvider.js +25 -0
  49. package/dist/components/auth/use_auth/AuthStorage.js +29 -0
  50. package/dist/components/auth/use_auth/authTokenHandler.js +45 -0
  51. package/dist/components/auth/use_auth/useAuth.js +6 -0
  52. package/dist/components/auth/use_auth/useAuthActions.js +35 -0
  53. package/dist/components/auth/use_auth/useAuthInterceptor.js +27 -0
  54. package/dist/components/chart/line_chart/LineChart.js +101 -0
  55. package/dist/components/chart/line_chart/LineChart.module.js +9 -0
  56. package/dist/components/chart/pie_chart/PieChart.js +73 -0
  57. package/dist/components/chart/pie_chart/PieChart.module.js +3 -0
  58. package/dist/components/consultation/consultation_box/ConsultationBox.js +118 -0
  59. package/dist/components/consultation/consultation_box/ConsultationBox.module.js +21 -0
  60. package/dist/components/data/axios_client/httpClient.js +8 -0
  61. package/dist/components/data/config_provider/ConfigProvider.js +12 -0
  62. package/dist/components/data/config_provider/useConfig.js +9 -0
  63. package/dist/components/data/config_provider/useRoutes.js +9 -0
  64. package/dist/components/data/config_provider/withConfig.js +10 -0
  65. package/dist/components/data/data_provider/DataProvider.js +101 -0
  66. package/dist/components/data/data_provider/DataProviderContext.js +5 -0
  67. package/dist/components/data/data_provider/useData.js +9 -0
  68. package/dist/components/data/data_provider/useDataProvider.js +9 -0
  69. package/dist/components/debate/debate_box/DebateBox.js +156 -0
  70. package/dist/components/debate/debate_box/DebateBox.module.js +26 -0
  71. package/dist/components/dialog/announcement_dialog/AnnouncementDialog.js +30 -0
  72. package/dist/components/dialog/announcement_dialog/AnnouncementDialog.module.js +8 -0
  73. package/dist/components/dialog/confirm_modal/ConfirmModal.js +38 -0
  74. package/dist/components/dialog/confirm_modal/ConfirmModal.module.js +8 -0
  75. package/dist/components/dialog/countdown/Countdown.js +23 -0
  76. package/dist/components/dialog/dialog_box/DialogBox.js +51 -0
  77. package/dist/components/dialog/dialog_box/DialogBox.module.js +16 -0
  78. package/dist/components/dialog/drawer/Drawer.js +127 -0
  79. package/dist/components/dialog/drawer/Drawer.module.js +17 -0
  80. package/dist/components/dialog/dropdown/Dropdown.js +29 -0
  81. package/dist/components/dialog/dropdown/Dropdown.module.js +10 -0
  82. package/dist/components/dialog/modal/Modal.js +65 -0
  83. package/dist/components/dialog/modal/Modal.module.js +12 -0
  84. package/dist/components/dialog/modal/ModalProvider.js +20 -0
  85. package/dist/components/dialog/modal/useModal.js +6 -0
  86. package/dist/components/dialog/toast/Toast.js +41 -0
  87. package/dist/components/dialog/toast/Toast.module.js +14 -0
  88. package/dist/components/dialog/toast_provider/ToastContext.js +5 -0
  89. package/dist/components/dialog/toast_provider/ToastProvider.js +29 -0
  90. package/dist/components/dialog/toast_provider/ToastProvider.module.js +3 -0
  91. package/dist/components/dialog/toast_provider/useToast.js +12 -0
  92. package/dist/components/dialog/tooltip/Tooltip.js +32 -0
  93. package/dist/components/dialog/tooltip/Tooltip.module.js +12 -0
  94. package/dist/components/embed/embed_header/EmbedHeader.js +72 -0
  95. package/dist/components/embed/embed_header/EmbedHeader.module.js +18 -0
  96. package/dist/components/error/standard_error_boundary/StandardErrorBoundary.js +18 -0
  97. package/dist/components/error/standard_error_boundary/StandardErrorBoundary.module.js +3 -0
  98. package/dist/components/follow/follow_button/FollowButton.js +49 -0
  99. package/dist/components/follow/follow_button/FollowButton.module.js +6 -0
  100. package/dist/components/follow/use_follow/useFollow.js +36 -0
  101. package/dist/components/forms/form/extract-form-data.js +12 -0
  102. package/dist/components/forms/form/form-context.js +5 -0
  103. package/dist/components/forms/form/form.js +28 -0
  104. package/dist/components/forms/form/use-form-context.js +32 -0
  105. package/dist/components/forms/form/use-form.js +6 -0
  106. package/dist/components/forms/use_form_validation/useFormValidation.js +45 -0
  107. package/dist/components/gamification/badge_box/BadgeBox.js +94 -0
  108. package/dist/components/gamification/badge_box/BadgeBox.module.js +19 -0
  109. package/dist/components/gamification/point_box/PointBox.js +19 -0
  110. package/dist/components/gamification/point_box/PointBox.module.js +7 -0
  111. package/dist/components/hooks/use_auth_required/useAuthRequired.js +16 -0
  112. package/dist/components/hooks/use_css_theme/useCssTheme.js +16 -0
  113. package/dist/components/hooks/use_font_loader/useFontLoader.js +8 -0
  114. package/dist/components/hooks/use_matomo/useMatomo.js +10 -0
  115. package/dist/components/hooks/use_relative_time/useRelativeTime.js +53 -0
  116. package/dist/components/hooks/use_responsive/ResponsiveContext.js +5 -0
  117. package/dist/components/hooks/use_responsive/ResponsiveProvider.js +33 -0
  118. package/dist/components/hooks/use_responsive/useResponsive.js +14 -0
  119. package/dist/components/icons/icon/Icon.js +20 -0
  120. package/dist/components/icons/icon_provider/IconProvider.js +9 -0
  121. package/dist/components/icons/krone_icons/CheckBox.js +17 -0
  122. package/dist/components/input/argument_input/ArgumentInput.js +285 -0
  123. package/dist/components/input/argument_input/ArgumentInput.module.js +23 -0
  124. package/dist/components/input/argument_input/index.js +2 -0
  125. package/dist/components/input/checkbox/hidden/hidden-checkbox.js +16 -0
  126. package/dist/components/input/checkbox/hidden/hidden-checkbox.module.js +3 -0
  127. package/dist/components/input/checkbox/indicator/checkbox-indicator.js +19 -0
  128. package/dist/components/input/checkbox/indicator/checkbox-indicator.module.js +6 -0
  129. package/dist/components/input/checkbox/label/checkbox-label.js +27 -0
  130. package/dist/components/input/input_provider/InputProvider.js +21 -0
  131. package/dist/components/input/input_provider/useInput.js +6 -0
  132. package/dist/components/input/search_input/SearchInput.js +74 -0
  133. package/dist/components/input/search_input/SearchInput.module.js +8 -0
  134. package/dist/components/input/select/Select.js +76 -0
  135. package/dist/components/input/select/Select.module.js +12 -0
  136. package/dist/components/input/text_editor/EditorTheme.js +69 -0
  137. package/dist/components/input/text_editor/TextEditor.js +147 -0
  138. package/dist/components/input/text_editor/TextEditor.module.js +24 -0
  139. package/dist/components/input/text_editor/lexicalToHtml.js +22 -0
  140. package/dist/components/input/text_editor/plugins/AutoSavePlugin.js +25 -0
  141. package/dist/components/input/text_editor/plugins/FocusPlugin.js +14 -0
  142. package/dist/components/input/text_editor/plugins/MaxLengthPlugin.js +23 -0
  143. package/dist/components/input/text_editor/plugins/ResetPlugin.js +18 -0
  144. package/dist/components/input/text_editor/plugins/SetContentPlugin.js +18 -0
  145. package/dist/components/input/text_editor/plugins/SetRichContentPlugin.js +15 -0
  146. package/dist/components/input/text_editor/plugins/ToolbarPlugin.js +170 -0
  147. package/dist/components/input/text_editor/plugins/ToolbarPlugin.module.js +17 -0
  148. package/dist/components/input/text_input/TextInput.js +36 -0
  149. package/dist/components/input/text_input/TextInput.module.js +12 -0
  150. package/dist/components/input/text_input/color-accent.js +12 -0
  151. package/dist/components/input/text_input/message.js +16 -0
  152. package/dist/components/input/toggle/Toggle.js +28 -0
  153. package/dist/components/input/toggle/Toggle.module.js +9 -0
  154. package/dist/components/input/toggle_position/TogglePosition.js +48 -0
  155. package/dist/components/input/toggle_position/TogglePosition.module.js +10 -0
  156. package/dist/components/intl/intl_provider/IntlContext.js +5 -0
  157. package/dist/components/intl/intl_provider/IntlProvider.js +38 -0
  158. package/dist/components/intl/intl_provider/useLocale.js +12 -0
  159. package/dist/components/list/list_provider/ListProvider.js +45 -0
  160. package/dist/components/list/list_provider/useList.js +22 -0
  161. package/dist/components/list/paginated_list/PaginatedList.js +178 -0
  162. package/dist/components/list/paginated_list/PaginatedList.module.js +18 -0
  163. package/dist/components/list/paginated_list/VotePaginatedList.js +20 -0
  164. package/dist/components/list/paginated_list/action_bar/ActionBar.js +75 -0
  165. package/dist/components/list/paginated_list/action_bar/ActionBar.module.js +13 -0
  166. package/dist/components/list/pagination/Pagination.js +27 -0
  167. package/dist/components/list/pagination/Pagination.module.js +3 -0
  168. package/dist/components/modal/side_modal/SideModal.js +60 -0
  169. package/dist/components/modal/side_modal/SideModal.module.js +11 -0
  170. package/dist/components/modal/side_modal/index.js +2 -0
  171. package/dist/components/navbar/navbar_button/NavbarButton.js +29 -0
  172. package/dist/components/navbar/navbar_button/NavbarButton.module.js +6 -0
  173. package/dist/components/navbar/navbar_modal/NavbarModal.js +157 -0
  174. package/dist/components/navbar/navbar_modal/NavbarModal.module.js +16 -0
  175. package/dist/components/notification/notification_item/NotificationItem.js +50 -0
  176. package/dist/components/notification/notification_item/NotificationItem.module.js +10 -0
  177. package/dist/components/notification/notification_menu/NotificationMenu.js +53 -0
  178. package/dist/components/notification/notification_menu/NotificationMenu.module.js +8 -0
  179. package/dist/components/progress/loader/Loader.js +13 -0
  180. package/dist/components/progress/loader/Loader.module.js +7 -0
  181. package/dist/components/progress/progress_bar/ProgressBar.js +59 -0
  182. package/dist/components/progress/progress_bar/ProgressBar.module.js +14 -0
  183. package/dist/components/proposal/proposal_box/ProposalBox.js +108 -0
  184. package/dist/components/proposal/proposal_box/ProposalBox.module.js +11 -0
  185. package/dist/components/report/report_box/ReportBox.js +102 -0
  186. package/dist/components/report/report_box/ReportBox.module.js +11 -0
  187. package/dist/components/section/section_box/SectionBox.js +40 -0
  188. package/dist/components/section/section_box/SectionBox.module.js +14 -0
  189. package/dist/components/share/share_box/ShareBox.js +132 -0
  190. package/dist/components/share/share_box/ShareBox.module.js +10 -0
  191. package/dist/components/share/share_button/ShareButton.js +73 -0
  192. package/dist/components/share/share_button/ShareButton.module.js +9 -0
  193. package/dist/components/share/share_modal/ShareModal.js +28 -0
  194. package/dist/components/share/share_modal/ShareModal.module.js +3 -0
  195. package/dist/components/share/share_modal/index.js +2 -0
  196. package/dist/components/skeleton/box_skeleton/BoxSkeleton.js +63 -0
  197. package/dist/components/skeleton/user_content_skeleton/UserContentSkeleton.js +57 -0
  198. package/dist/components/skeleton/user_content_skeleton/UserContentSkeleton.module.js +13 -0
  199. package/dist/components/source/context_source_box/ContextSourceBox.js +45 -0
  200. package/dist/components/source/context_source_box/ContextSourceBox.module.js +10 -0
  201. package/dist/components/source/context_source_list/ContextSourceList.js +43 -0
  202. package/dist/components/source/context_source_list/ContextSourceList.module.js +10 -0
  203. package/dist/components/source/source_box/SourceBox.js +39 -0
  204. package/dist/components/source/source_box/SourceBox.module.js +11 -0
  205. package/dist/components/source/source_list_item/SourceListItem.js +32 -0
  206. package/dist/components/source/source_list_item/SourceListItem.module.js +6 -0
  207. package/dist/components/source/source_modal/SourceModal.js +110 -0
  208. package/dist/components/source/source_modal/SourceModal.module.js +11 -0
  209. package/dist/components/suggestion/suggestion_banner/SuggestionBanner.js +99 -0
  210. package/dist/components/suggestion/suggestion_banner/SuggestionBanner.module.js +13 -0
  211. package/dist/components/suggestion/suggestion_box/SuggestionBox.js +97 -0
  212. package/dist/components/suggestion/suggestion_box/SuggestionBox.module.js +13 -0
  213. package/dist/components/suggestion/suggestion_input/SuggestionInput.js +156 -0
  214. package/dist/components/suggestion/suggestion_input/SuggestionInput.module.js +11 -0
  215. package/dist/components/summary/argument_summary_box/ArgumentSummaryBox.js +62 -0
  216. package/dist/components/summary/argument_summary_box/ArgumentSummaryBox.module.js +13 -0
  217. package/dist/components/summary/keyword_box/KeywordBox.js +38 -0
  218. package/dist/components/summary/keyword_box/KeywordBox.module.js +11 -0
  219. package/dist/components/summary/summary/Summary.js +73 -0
  220. package/dist/components/summary/summary/Summary.module.js +6 -0
  221. package/dist/components/summary/summary_box/SummaryBox.js +22 -0
  222. package/dist/components/summary/summary_box/SummaryBox.module.js +10 -0
  223. package/dist/components/tag/tag/Tag.js +19 -0
  224. package/dist/components/tag/tag/Tag.module.js +6 -0
  225. package/dist/components/text/expandable_text/ArrowIcon.js +11 -0
  226. package/dist/components/text/expandable_text/ExpandableText.js +53 -0
  227. package/dist/components/text/expandable_text/ExpandableText.module.js +10 -0
  228. package/dist/components/text/read_more/ReadMore.js +63 -0
  229. package/dist/components/text/read_more/ReadMore.module.js +11 -0
  230. package/dist/components/tools/hash_scroll/HashScroll.js +18 -0
  231. package/dist/components/tools/scroll_to_top/ScrollToTop.js +15 -0
  232. package/dist/components/translation/translated_content/TranslatedContent.js +7 -0
  233. package/dist/components/translation/translated_content/useTranslatedContent.js +26 -0
  234. package/dist/components/translation/translation_button/TranslationButton.js +35 -0
  235. package/dist/components/translation/translation_button/TranslationButton.module.js +3 -0
  236. package/dist/components/user/author_box/AuthorBox.js +114 -0
  237. package/dist/components/user/author_box/AuthorBox.module.js +18 -0
  238. package/dist/components/user/avatar/Avatar.js +54 -0
  239. package/dist/components/user/avatar/Avatar.module.js +8 -0
  240. package/dist/components/user/avatar/DefaultAvatar.js +17 -0
  241. package/dist/components/user/avatar_selector/AvatarSelector.js +108 -0
  242. package/dist/components/user/avatar_selector/AvatarSelector.module.js +18 -0
  243. package/dist/components/user/update_user_info_modal/UpdateUserInfoModal.js +249 -0
  244. package/dist/components/user/update_user_info_modal/UpdateUserInfoModal.module.js +23 -0
  245. package/dist/components/user/update_user_info_modal/useUpdateUserInfo.js +26 -0
  246. package/dist/components/user/user_box/UserBox.js +82 -0
  247. package/dist/components/user/user_box/UserBox.module.js +13 -0
  248. package/dist/components/user/user_box_small/UserBoxSmall.js +44 -0
  249. package/dist/components/user/user_box_small/UserBoxSmall.module.js +6 -0
  250. package/dist/components/user_content/content_footer/ContentFooter.js +172 -0
  251. package/dist/components/user_content/content_footer/ContentFooter.module.js +11 -0
  252. package/dist/components/user_content/content_header/ContentHeader.js +121 -0
  253. package/dist/components/user_content/content_header/ContentHeader.module.js +16 -0
  254. package/dist/components/user_content/summary_content_box/SummaryContentBox.js +72 -0
  255. package/dist/components/user_content/summary_content_box/SummaryContentBox.module.js +10 -0
  256. package/dist/components/user_content/use_delete_content/useDeleteContent.js +46 -0
  257. package/dist/components/user_content/use_report_content/ReportModal.js +266 -0
  258. package/dist/components/user_content/use_report_content/ReportModal.module.js +15 -0
  259. package/dist/components/user_content/use_report_content/useReportContent.js +24 -0
  260. package/dist/components/util/lang_emojis/langEmojis.js +57 -0
  261. package/dist/components/util/location/Location.js +41 -0
  262. package/dist/components/util/unique_by/uniqueBy.js +7 -0
  263. package/dist/components/vote/suggestion_vote_box/SuggestionVoteBox.js +81 -0
  264. package/dist/components/vote/suggestion_vote_box/SuggestionVoteBox.module.js +6 -0
  265. package/dist/components/vote/up_down_vote_box/UpDownVoteBox.js +56 -0
  266. package/dist/components/vote/up_down_vote_box/UpDownVoteBox.module.js +10 -0
  267. package/dist/components/vote/use_vote/useVote.js +62 -0
  268. package/dist/components/vote/vote_box/VoteBox.js +297 -0
  269. package/dist/components/vote/vote_box/VoteBox.module.js +31 -0
  270. package/dist/components/vote/vote_button/VoteButton.js +40 -0
  271. package/dist/components/vote/vote_button/VoteButton.module.js +7 -0
  272. package/dist/components/vote/vote_provider/VoteProvider.js +40 -0
  273. package/dist/index.js +146 -0
  274. package/dist/node_modules/.pnpm/@formatjs_fast-memoize@2.2.7/node_modules/@formatjs/fast-memoize/lib/index.js +51 -0
  275. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/date-time-pattern-generator.js +28 -0
  276. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/error.js +7 -0
  277. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/index.js +26 -0
  278. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/manipulator.js +1 -0
  279. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/parser.js +499 -0
  280. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/regex.generated.js +4 -0
  281. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/time-data.generated.js +1159 -0
  282. package/dist/node_modules/.pnpm/@formatjs_icu-messageformat-parser@2.11.4/node_modules/@formatjs/icu-messageformat-parser/lib/types.js +44 -0
  283. package/dist/node_modules/.pnpm/@formatjs_icu-skeleton-parser@1.8.16/node_modules/@formatjs/icu-skeleton-parser/lib/date-time.js +101 -0
  284. package/dist/node_modules/.pnpm/@formatjs_icu-skeleton-parser@1.8.16/node_modules/@formatjs/icu-skeleton-parser/lib/number.js +182 -0
  285. package/dist/node_modules/.pnpm/@formatjs_icu-skeleton-parser@1.8.16/node_modules/@formatjs/icu-skeleton-parser/lib/regex.generated.js +4 -0
  286. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/create-intl.js +39 -0
  287. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/dateTime.js +80 -0
  288. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/displayName.js +22 -0
  289. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/error.js +66 -0
  290. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/list.js +39 -0
  291. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/message.js +59 -0
  292. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/number.js +53 -0
  293. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/plural.js +18 -0
  294. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/relativeTime.js +22 -0
  295. package/dist/node_modules/.pnpm/@formatjs_intl@3.1.8_typescript@5.9.3/node_modules/@formatjs/intl/lib/src/utils.js +115 -0
  296. package/dist/node_modules/.pnpm/@kurkle_color@0.3.4/node_modules/@kurkle/color/dist/color.esm.js +470 -0
  297. package/dist/node_modules/.pnpm/@lexical_clipboard@0.38.2/node_modules/@lexical/clipboard/LexicalClipboard.prod.js +163 -0
  298. package/dist/node_modules/.pnpm/@lexical_dragon@0.38.2/node_modules/@lexical/dragon/LexicalDragon.prod.js +51 -0
  299. package/dist/node_modules/.pnpm/@lexical_extension@0.38.2/node_modules/@lexical/extension/LexicalExtension.prod.js +796 -0
  300. package/dist/node_modules/.pnpm/@lexical_headless@0.38.2/node_modules/@lexical/headless/LexicalHeadless.prod.js +21 -0
  301. package/dist/node_modules/.pnpm/@lexical_history@0.38.2/node_modules/@lexical/history/LexicalHistory.prod.js +132 -0
  302. package/dist/node_modules/.pnpm/@lexical_html@0.38.2/node_modules/@lexical/html/LexicalHtml.prod.js +88 -0
  303. package/dist/node_modules/.pnpm/@lexical_list@0.38.2/node_modules/@lexical/list/LexicalList.prod.js +737 -0
  304. package/dist/node_modules/.pnpm/@lexical_overflow@0.38.2/node_modules/@lexical/overflow/LexicalOverflow.prod.js +37 -0
  305. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalCharacterLimitPlugin.prod.js +136 -0
  306. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalComposer.prod.js +53 -0
  307. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalComposerContext.prod.js +20 -0
  308. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalContentEditable.prod.js +85 -0
  309. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalEditorRefPlugin.prod.js +11 -0
  310. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalErrorBoundary.prod.js +20 -0
  311. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalHistoryPlugin.prod.js +17 -0
  312. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalListPlugin.prod.js +16 -0
  313. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalOnChangePlugin.prod.js +20 -0
  314. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalReactProviderExtension.prod.js +5 -0
  315. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/LexicalRichTextPlugin.prod.js +96 -0
  316. package/dist/node_modules/.pnpm/@lexical_react@0.38.2_react-dom@18.3.1_react@18.3.1__react@18.3.1_yjs@13.6.30/node_modules/@lexical/react/useLexicalEditable.prod.js +23 -0
  317. package/dist/node_modules/.pnpm/@lexical_rich-text@0.38.2/node_modules/@lexical/rich-text/LexicalRichText.prod.js +418 -0
  318. package/dist/node_modules/.pnpm/@lexical_selection@0.38.2/node_modules/@lexical/selection/LexicalSelection.prod.js +170 -0
  319. package/dist/node_modules/.pnpm/@lexical_text@0.38.2/node_modules/@lexical/text/LexicalText.prod.js +33 -0
  320. package/dist/node_modules/.pnpm/@lexical_utils@0.38.2/node_modules/@lexical/utils/LexicalUtils.prod.js +112 -0
  321. package/dist/node_modules/.pnpm/@rooks_use-localstorage-state@4.11.2_react@18.3.1/node_modules/@rooks/use-localstorage-state/lib/index.esm.js +50 -0
  322. package/dist/node_modules/.pnpm/@rooks_use-previous@4.11.2/node_modules/@rooks/use-previous/lib/index.esm.js +10 -0
  323. package/dist/node_modules/.pnpm/@rooks_use-sessionstorage-state@4.11.2_react@18.3.1/node_modules/@rooks/use-sessionstorage-state/lib/index.esm.js +50 -0
  324. package/dist/node_modules/.pnpm/are-passive-events-supported@1.1.1/node_modules/are-passive-events-supported/dist/are-passive-events-supported.esm.browser.js +11 -0
  325. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/adapters/adapters.js +41 -0
  326. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/adapters/fetch.js +128 -0
  327. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/adapters/xhr.js +59 -0
  328. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/axios.js +30 -0
  329. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/cancel/CancelToken.js +59 -0
  330. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/cancel/CanceledError.js +9 -0
  331. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/cancel/isCancel.js +6 -0
  332. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/Axios.js +131 -0
  333. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/AxiosError.js +34 -0
  334. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/AxiosHeaders.js +171 -0
  335. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/InterceptorManager.js +28 -0
  336. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/buildFullPath.js +9 -0
  337. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/dispatchRequest.js +23 -0
  338. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/mergeConfig.js +67 -0
  339. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/settle.js +8 -0
  340. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/core/transformData.js +12 -0
  341. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/defaults/index.js +81 -0
  342. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/defaults/transitional.js +9 -0
  343. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/env/data.js +4 -0
  344. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +32 -0
  345. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/HttpStatusCode.js +77 -0
  346. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/bind.js +8 -0
  347. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/buildURL.js +17 -0
  348. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/combineURLs.js +6 -0
  349. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/composeSignals.js +27 -0
  350. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/cookies.js +26 -0
  351. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/formDataToJSON.js +27 -0
  352. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/isAbsoluteURL.js +6 -0
  353. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/isAxiosError.js +7 -0
  354. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/isURLSameOrigin.js +5 -0
  355. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/parseHeaders.js +28 -0
  356. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/parseProtocol.js +7 -0
  357. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/progressEventReducer.js +30 -0
  358. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/resolveConfig.js +28 -0
  359. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/speedometer.js +16 -0
  360. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/spread.js +8 -0
  361. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/throttle.js +14 -0
  362. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/toFormData.js +67 -0
  363. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/toURLEncodedForm.js +14 -0
  364. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/trackStream.js +51 -0
  365. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/helpers/validator.js +47 -0
  366. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/platform/browser/classes/Blob.js +4 -0
  367. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/platform/browser/classes/FormData.js +4 -0
  368. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +5 -0
  369. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/platform/browser/index.js +22 -0
  370. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/platform/common/utils.js +15 -0
  371. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/platform/index.js +9 -0
  372. package/dist/node_modules/.pnpm/axios@1.14.0/node_modules/axios/lib/utils.js +235 -0
  373. package/dist/node_modules/.pnpm/chart.js@4.5.1/node_modules/chart.js/auto/auto.js +5 -0
  374. package/dist/node_modules/.pnpm/chart.js@4.5.1/node_modules/chart.js/dist/chart.js +6301 -0
  375. package/dist/node_modules/.pnpm/chart.js@4.5.1/node_modules/chart.js/dist/chunks/helpers.dataset.js +1381 -0
  376. package/dist/node_modules/.pnpm/chartjs-plugin-datalabels@2.2.0_chart.js@4.5.1/node_modules/chartjs-plugin-datalabels/dist/chartjs-plugin-datalabels.esm.js +354 -0
  377. package/dist/node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/index.js +32 -0
  378. package/dist/node_modules/.pnpm/copy-to-clipboard@3.3.3/node_modules/copy-to-clipboard/index.js +43 -0
  379. package/dist/node_modules/.pnpm/dompurify@3.3.3/node_modules/dompurify/dist/purify.es.js +549 -0
  380. package/dist/node_modules/.pnpm/flat@5.0.2/node_modules/flat/index.js +59 -0
  381. package/dist/node_modules/.pnpm/goober@2.1.18_csstype@3.2.3/node_modules/goober/dist/goober.modern.js +75 -0
  382. package/dist/node_modules/.pnpm/hoist-non-react-statics@3.3.2/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js +68 -0
  383. package/dist/node_modules/.pnpm/intl-messageformat@10.7.18/node_modules/intl-messageformat/lib/src/core.js +154 -0
  384. package/dist/node_modules/.pnpm/intl-messageformat@10.7.18/node_modules/intl-messageformat/lib/src/error.js +36 -0
  385. package/dist/node_modules/.pnpm/intl-messageformat@10.7.18/node_modules/intl-messageformat/lib/src/formatters.js +107 -0
  386. package/dist/node_modules/.pnpm/lexical@0.38.2/node_modules/lexical/Lexical.prod.js +5093 -0
  387. package/dist/node_modules/.pnpm/path-to-regexp@6.3.0/node_modules/path-to-regexp/dist.es2015/index.js +198 -0
  388. package/dist/node_modules/.pnpm/react-chartjs-2@5.3.1_chart.js@4.5.1_react@18.3.1/node_modules/react-chartjs-2/dist/index.js +76 -0
  389. package/dist/node_modules/.pnpm/react-copy-to-clipboard@5.1.1_react@18.3.1/node_modules/react-copy-to-clipboard/lib/Component.js +160 -0
  390. package/dist/node_modules/.pnpm/react-copy-to-clipboard@5.1.1_react@18.3.1/node_modules/react-copy-to-clipboard/lib/index.js +10 -0
  391. package/dist/node_modules/.pnpm/react-error-boundary@6.1.1_react@18.3.1/node_modules/react-error-boundary/dist/react-error-boundary.js +58 -0
  392. package/dist/node_modules/.pnpm/react-hot-toast@2.6.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-hot-toast/dist/index.js +494 -0
  393. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/index.js +13 -0
  394. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/src/components/createFormattedComponent.js +35 -0
  395. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/src/components/createIntl.js +39 -0
  396. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/src/components/injectIntl.js +9 -0
  397. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/src/components/message.js +22 -0
  398. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/src/components/provider.js +45 -0
  399. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/src/components/useIntl.js +10 -0
  400. package/dist/node_modules/.pnpm/react-intl@7.1.14_react@18.3.1_typescript@5.9.3/node_modules/react-intl/lib/src/utils.js +33 -0
  401. package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js +82 -0
  402. package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js +62 -0
  403. package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js +10 -0
  404. package/dist/node_modules/.pnpm/react-loading-skeleton@3.5.0_react@18.3.1/node_modules/react-loading-skeleton/dist/index.js +49 -0
  405. package/dist/node_modules/.pnpm/react-modern-drawer@1.4.0_react@18.3.1/node_modules/react-modern-drawer/dist/index.modern.js +84 -0
  406. package/dist/node_modules/.pnpm/react-oauth-popup@1.0.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-oauth-popup/dist/index.js +106 -0
  407. package/dist/node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.development.js +453 -0
  408. package/dist/node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.production.min.js +27 -0
  409. package/dist/node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js +10 -0
  410. package/dist/node_modules/.pnpm/toggle-selection@1.0.6/node_modules/toggle-selection/index.js +26 -0
  411. package/dist/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.js +34 -0
  412. package/dist/node_modules/.pnpm/use-debounce@10.1.1_react@18.3.1/node_modules/use-debounce/dist/index.module.js +70 -0
  413. package/dist/node_modules/.pnpm/use-isomorphic-layout-effect@1.2.1_@types_react@19.2.14_react@18.3.1/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js +5 -0
  414. package/dist/node_modules/.pnpm/use-latest@1.3.0_@types_react@19.2.14_react@18.3.1/node_modules/use-latest/dist/use-latest.esm.js +11 -0
  415. package/dist/node_modules/.pnpm/use-onclickoutside@0.4.1_@types_react@19.2.14_react@18.3.1/node_modules/use-onclickoutside/dist/use-onclickoutside.browser.esm.js +26 -0
  416. package/dist/node_modules/.pnpm/webfontloader@1.6.28/node_modules/webfontloader/webfontloader.js +482 -0
  417. package/package.json +8 -7
  418. package/.changeset/config.json +0 -11
  419. package/.eslintrc.js +0 -12
  420. package/.github/dependabot.yml +0 -7
  421. package/.github/workflows/master.yml +0 -121
  422. package/.storybook/main.mjs +0 -47
  423. package/.storybook/preview.js +0 -11
  424. package/src/components/action/back_link/BackLink.docs.mdx +0 -25
  425. package/src/components/action/back_link/BackLink.jsx +0 -30
  426. package/src/components/action/back_link/BackLink.module.scss +0 -34
  427. package/src/components/action/back_link/BackLink.stories.jsx +0 -28
  428. package/src/components/action/back_link/BackLink.test.jsx +0 -105
  429. package/src/components/action/back_link/index.js +0 -1
  430. package/src/components/action/button/Button.docs.mdx +0 -43
  431. package/src/components/action/button/Button.examples.jsx +0 -60
  432. package/src/components/action/button/Button.jsx +0 -88
  433. package/src/components/action/button/Button.module.scss +0 -133
  434. package/src/components/action/button/Button.stories.jsx +0 -54
  435. package/src/components/action/button/Button.test.jsx +0 -54
  436. package/src/components/action/button/index.js +0 -1
  437. package/src/components/action/icon_text_link/HomeIcon.dev.jsx +0 -9
  438. package/src/components/action/icon_text_link/IconTextLink.docs.mdx +0 -37
  439. package/src/components/action/icon_text_link/IconTextLink.jsx +0 -57
  440. package/src/components/action/icon_text_link/IconTextLink.module.scss +0 -67
  441. package/src/components/action/icon_text_link/IconTextLink.stories.jsx +0 -44
  442. package/src/components/action/icon_text_link/IconTextLink.test.jsx +0 -134
  443. package/src/components/action/icon_text_link/index.js +0 -1
  444. package/src/components/action/link/Link.docs.mdx +0 -23
  445. package/src/components/action/link/Link.jsx +0 -50
  446. package/src/components/action/link/Link.stories.jsx +0 -43
  447. package/src/components/action/link/Link.test.jsx +0 -91
  448. package/src/components/action/link/index.js +0 -1
  449. package/src/components/ad/ad_unit/AdUnit.docs.mdx +0 -23
  450. package/src/components/ad/ad_unit/AdUnit.jsx +0 -75
  451. package/src/components/ad/ad_unit/AdUnit.module.scss +0 -9
  452. package/src/components/ad/ad_unit/AdUnit.stories.jsx +0 -30
  453. package/src/components/ad/ad_unit/AdUnit.test.jsx +0 -63
  454. package/src/components/ad/ad_unit/index.js +0 -1
  455. package/src/components/ad/use_google_ad_manager/index.js +0 -1
  456. package/src/components/ad/use_google_ad_manager/useGoogleAdManager.docs.mdx +0 -27
  457. package/src/components/ad/use_google_ad_manager/useGoogleAdManager.jsx +0 -37
  458. package/src/components/ad/use_google_ad_manager/useGoogleAdManager.test.jsx +0 -47
  459. package/src/components/ad/with_ad/WithAd.docs.mdx +0 -30
  460. package/src/components/ad/with_ad/WithAd.jsx +0 -51
  461. package/src/components/ad/with_ad/WithAd.test.jsx +0 -104
  462. package/src/components/ad/with_ad/index.js +0 -1
  463. package/src/components/argument/argument/Argument.docs.mdx +0 -60
  464. package/src/components/argument/argument/Argument.jsx +0 -358
  465. package/src/components/argument/argument/Argument.module.scss +0 -233
  466. package/src/components/argument/argument/Argument.stories.jsx +0 -232
  467. package/src/components/argument/argument/Argument.test.jsx +0 -303
  468. package/src/components/argument/argument/ReplyFooter.jsx +0 -47
  469. package/src/components/argument/argument/ReplyFooter.module.scss +0 -77
  470. package/src/components/argument/argument/index.js +0 -2
  471. package/src/components/argument/argument/useRichContent.jsx +0 -18
  472. package/src/components/argument/top_arguments/TopArguments.docs.mdx +0 -22
  473. package/src/components/argument/top_arguments/TopArguments.jsx +0 -90
  474. package/src/components/argument/top_arguments/TopArguments.module.scss +0 -37
  475. package/src/components/argument/top_arguments/TopArguments.stories.jsx +0 -156
  476. package/src/components/argument/top_arguments/TopArguments.test.jsx +0 -67
  477. package/src/components/argument/top_arguments/index.js +0 -1
  478. package/src/components/auth/auth_initializer/AuthInitializer.alltest.js +0 -21
  479. package/src/components/auth/auth_initializer/AuthInitializer.docs.mdx +0 -34
  480. package/src/components/auth/auth_initializer/AuthInitializer.jsx +0 -61
  481. package/src/components/auth/auth_initializer/index.js +0 -1
  482. package/src/components/auth/auth_modal/AuthModal.alltest.js +0 -30
  483. package/src/components/auth/auth_modal/AuthModal.docs.mdx +0 -26
  484. package/src/components/auth/auth_modal/AuthModal.jsx +0 -99
  485. package/src/components/auth/auth_modal/AuthModal.module.scss +0 -9
  486. package/src/components/auth/auth_modal/AuthModal.stories.jsx +0 -90
  487. package/src/components/auth/auth_modal/index.js +0 -1
  488. package/src/components/auth/facebook_login_button/FacebookIcon.jsx +0 -7
  489. package/src/components/auth/facebook_login_button/FacebookLoginButton.docs.mdx +0 -34
  490. package/src/components/auth/facebook_login_button/FacebookLoginButton.jsx +0 -25
  491. package/src/components/auth/facebook_login_button/FacebookLoginButton.module.scss +0 -32
  492. package/src/components/auth/facebook_login_button/FacebookLoginButton.stories.jsx +0 -35
  493. package/src/components/auth/facebook_login_button/FacebookLoginButton.test.jsx +0 -68
  494. package/src/components/auth/facebook_login_button/index.js +0 -1
  495. package/src/components/auth/google_login_button/GoogleIcon.jsx +0 -10
  496. package/src/components/auth/google_login_button/GoogleLoginButton.docs.mdx +0 -43
  497. package/src/components/auth/google_login_button/GoogleLoginButton.jsx +0 -27
  498. package/src/components/auth/google_login_button/GoogleLoginButton.module.scss +0 -28
  499. package/src/components/auth/google_login_button/GoogleLoginButton.stories.jsx +0 -35
  500. package/src/components/auth/google_login_button/GoogleLoginButton.test.jsx +0 -69
  501. package/src/components/auth/google_login_button/index.js +0 -1
  502. package/src/components/auth/login_form/LoginForm.docs.mdx +0 -24
  503. package/src/components/auth/login_form/LoginForm.jsx +0 -65
  504. package/src/components/auth/login_form/LoginForm.module.scss +0 -36
  505. package/src/components/auth/login_form/LoginForm.stories.jsx +0 -42
  506. package/src/components/auth/login_form/LoginForm.test.jsx +0 -94
  507. package/src/components/auth/login_form/index.js +0 -1
  508. package/src/components/auth/oauth2_button/OAuth2Button.docs.mdx +0 -32
  509. package/src/components/auth/oauth2_button/OAuth2Button.jsx +0 -79
  510. package/src/components/auth/oauth2_button/OAuth2Button.module.scss +0 -10
  511. package/src/components/auth/oauth2_button/OAuth2Button.stories.jsx +0 -48
  512. package/src/components/auth/oauth2_button/OAuth2Button.test.jsx +0 -306
  513. package/src/components/auth/oauth2_button/index.js +0 -1
  514. package/src/components/auth/providers/AuthProvider.docs.mdx +0 -35
  515. package/src/components/auth/providers/AuthProvider.js +0 -23
  516. package/src/components/auth/providers/AuthProviderFactory.js +0 -20
  517. package/src/components/auth/providers/FormAuth.js +0 -36
  518. package/src/components/auth/providers/JWTAuth.js +0 -35
  519. package/src/components/auth/providers/OAuth2ServerAuth.js +0 -47
  520. package/src/components/auth/providers/PasswordAuth.js +0 -31
  521. package/src/components/auth/providers/index.js +0 -1
  522. package/src/components/auth/providers/tests/AuthProviderFactory.test.jsx +0 -53
  523. package/src/components/auth/providers/tests/FormAuth.test.jsx +0 -45
  524. package/src/components/auth/providers/tests/JWTAuth.test.jsx +0 -57
  525. package/src/components/auth/providers/tests/OAuth2ServerAuth.test.jsx +0 -78
  526. package/src/components/auth/providers/tests/PasswordAuth.test.jsx +0 -43
  527. package/src/components/auth/signup_form/SignupForm.docs.mdx +0 -29
  528. package/src/components/auth/signup_form/SignupForm.jsx +0 -125
  529. package/src/components/auth/signup_form/SignupForm.module.scss +0 -21
  530. package/src/components/auth/signup_form/SignupForm.stories.jsx +0 -40
  531. package/src/components/auth/signup_form/SignupForm.test.jsx +0 -144
  532. package/src/components/auth/signup_form/index.js +0 -1
  533. package/src/components/auth/social_auth_form/SocialAuthForm.docs.mdx +0 -33
  534. package/src/components/auth/social_auth_form/SocialAuthForm.jsx +0 -170
  535. package/src/components/auth/social_auth_form/SocialAuthForm.module.scss +0 -141
  536. package/src/components/auth/social_auth_form/SocialAuthForm.stories.jsx +0 -82
  537. package/src/components/auth/social_auth_form/SocialAuthForm.test.jsx +0 -201
  538. package/src/components/auth/social_auth_form/index.js +0 -1
  539. package/src/components/auth/sso_form/SSOForm.docs.mdx +0 -39
  540. package/src/components/auth/sso_form/SSOForm.jsx +0 -243
  541. package/src/components/auth/sso_form/SSOForm.module.scss +0 -99
  542. package/src/components/auth/sso_form/SSOForm.stories.jsx +0 -117
  543. package/src/components/auth/sso_form/SSOForm.test.jsx +0 -83
  544. package/src/components/auth/sso_form/index.js +0 -1
  545. package/src/components/auth/use_auth/AuthContext.js +0 -3
  546. package/src/components/auth/use_auth/AuthProvider.jsx +0 -21
  547. package/src/components/auth/use_auth/AuthProvider.test.jsx +0 -26
  548. package/src/components/auth/use_auth/AuthStorage.js +0 -33
  549. package/src/components/auth/use_auth/AuthStorage.test.jsx +0 -165
  550. package/src/components/auth/use_auth/authTokenHandler.js +0 -67
  551. package/src/components/auth/use_auth/authTokenHandler.test.jsx +0 -117
  552. package/src/components/auth/use_auth/index.js +0 -7
  553. package/src/components/auth/use_auth/useAuth.docs.mdx +0 -34
  554. package/src/components/auth/use_auth/useAuth.js +0 -8
  555. package/src/components/auth/use_auth/useAuthActions.js +0 -77
  556. package/src/components/auth/use_auth/useAuthInterceptor.jsx +0 -42
  557. package/src/components/chart/line_chart/LineChart.docs.mdx +0 -34
  558. package/src/components/chart/line_chart/LineChart.jsx +0 -107
  559. package/src/components/chart/line_chart/LineChart.module.scss +0 -54
  560. package/src/components/chart/line_chart/LineChart.stories.jsx +0 -49
  561. package/src/components/chart/line_chart/LineChart.test.jsx +0 -12
  562. package/src/components/chart/line_chart/index.js +0 -1
  563. package/src/components/chart/pie_chart/PieChart.docs.mdx +0 -26
  564. package/src/components/chart/pie_chart/PieChart.jsx +0 -102
  565. package/src/components/chart/pie_chart/PieChart.module.scss +0 -17
  566. package/src/components/chart/pie_chart/PieChart.stories.jsx +0 -36
  567. package/src/components/chart/pie_chart/PieChart.test.jsx +0 -12
  568. package/src/components/chart/pie_chart/index.js +0 -1
  569. package/src/components/consultation/consultation_box/ConsultationBox.docs.mdx +0 -21
  570. package/src/components/consultation/consultation_box/ConsultationBox.jsx +0 -101
  571. package/src/components/consultation/consultation_box/ConsultationBox.module.scss +0 -105
  572. package/src/components/consultation/consultation_box/ConsultationBox.stories.jsx +0 -96
  573. package/src/components/consultation/consultation_box/ConsultationBox.test.jsx +0 -58
  574. package/src/components/consultation/consultation_box/index.js +0 -1
  575. package/src/components/data/axios_client/httpClient.docs.mdx +0 -4
  576. package/src/components/data/axios_client/httpClient.js +0 -11
  577. package/src/components/data/axios_client/index.js +0 -1
  578. package/src/components/data/config_provider/ConfigProvider.docs.mdx +0 -26
  579. package/src/components/data/config_provider/ConfigProvider.jsx +0 -21
  580. package/src/components/data/config_provider/ConfigProvider.test.jsx +0 -39
  581. package/src/components/data/config_provider/index.js +0 -4
  582. package/src/components/data/config_provider/useConfig.jsx +0 -8
  583. package/src/components/data/config_provider/useRoutes.jsx +0 -8
  584. package/src/components/data/config_provider/withConfig.jsx +0 -8
  585. package/src/components/data/data_provider/DataProvider.docs.mdx +0 -52
  586. package/src/components/data/data_provider/DataProvider.jsx +0 -165
  587. package/src/components/data/data_provider/DataProvider.test.jsx +0 -419
  588. package/src/components/data/data_provider/DataProviderContext.jsx +0 -3
  589. package/src/components/data/data_provider/index.js +0 -4
  590. package/src/components/data/data_provider/useData.jsx +0 -9
  591. package/src/components/data/data_provider/useDataProvider.jsx +0 -8
  592. package/src/components/data/data_provider/useDataProvider.test.jsx +0 -38
  593. package/src/components/debate/debate_box/DebateBox.docs.mdx +0 -23
  594. package/src/components/debate/debate_box/DebateBox.jsx +0 -136
  595. package/src/components/debate/debate_box/DebateBox.module.scss +0 -209
  596. package/src/components/debate/debate_box/DebateBox.stories.jsx +0 -157
  597. package/src/components/debate/debate_box/DebateBox.test.jsx +0 -117
  598. package/src/components/debate/debate_box/index.js +0 -1
  599. package/src/components/dialog/announcement_dialog/AnnouncementDialog.docs.mdx +0 -24
  600. package/src/components/dialog/announcement_dialog/AnnouncementDialog.jsx +0 -37
  601. package/src/components/dialog/announcement_dialog/AnnouncementDialog.module.scss +0 -35
  602. package/src/components/dialog/announcement_dialog/AnnouncementDialog.stories.jsx +0 -44
  603. package/src/components/dialog/announcement_dialog/AnnouncementDialog.test.jsx +0 -35
  604. package/src/components/dialog/announcement_dialog/HomeIcon.dev.jsx +0 -9
  605. package/src/components/dialog/announcement_dialog/index.js +0 -1
  606. package/src/components/dialog/confirm_modal/ConfirmModal.docs.mdx +0 -25
  607. package/src/components/dialog/confirm_modal/ConfirmModal.jsx +0 -53
  608. package/src/components/dialog/confirm_modal/ConfirmModal.module.scss +0 -30
  609. package/src/components/dialog/confirm_modal/ConfirmModal.stories.jsx +0 -36
  610. package/src/components/dialog/confirm_modal/ConfirmModal.test.jsx +0 -176
  611. package/src/components/dialog/confirm_modal/index.js +0 -1
  612. package/src/components/dialog/countdown/Countdown.docs.mdx +0 -23
  613. package/src/components/dialog/countdown/Countdown.jsx +0 -36
  614. package/src/components/dialog/countdown/Countdown.stories.jsx +0 -33
  615. package/src/components/dialog/countdown/Countdown.test.jsx +0 -51
  616. package/src/components/dialog/countdown/index.js +0 -1
  617. package/src/components/dialog/dialog_box/DialogBox.docs.mdx +0 -25
  618. package/src/components/dialog/dialog_box/DialogBox.jsx +0 -53
  619. package/src/components/dialog/dialog_box/DialogBox.module.scss +0 -145
  620. package/src/components/dialog/dialog_box/DialogBox.stories.jsx +0 -45
  621. package/src/components/dialog/dialog_box/DialogBox.test.jsx +0 -40
  622. package/src/components/dialog/dialog_box/index.js +0 -1
  623. package/src/components/dialog/drawer/Drawer.docs.mdx +0 -31
  624. package/src/components/dialog/drawer/Drawer.jsx +0 -159
  625. package/src/components/dialog/drawer/Drawer.module.scss +0 -136
  626. package/src/components/dialog/drawer/Drawer.stories.jsx +0 -194
  627. package/src/components/dialog/drawer/Drawer.test.jsx +0 -15
  628. package/src/components/dialog/drawer/index.js +0 -1
  629. package/src/components/dialog/dropdown/Dropdown.docs.mdx +0 -28
  630. package/src/components/dialog/dropdown/Dropdown.jsx +0 -59
  631. package/src/components/dialog/dropdown/Dropdown.module.scss +0 -41
  632. package/src/components/dialog/dropdown/Dropdown.stories.jsx +0 -42
  633. package/src/components/dialog/dropdown/Dropdown.test.jsx +0 -126
  634. package/src/components/dialog/dropdown/index.js +0 -1
  635. package/src/components/dialog/modal/Modal.docs.mdx +0 -39
  636. package/src/components/dialog/modal/Modal.jsx +0 -101
  637. package/src/components/dialog/modal/Modal.module.scss +0 -99
  638. package/src/components/dialog/modal/Modal.stories.jsx +0 -53
  639. package/src/components/dialog/modal/Modal.test.jsx +0 -115
  640. package/src/components/dialog/modal/ModalProvider.jsx +0 -26
  641. package/src/components/dialog/modal/ModalProvider.test.jsx +0 -39
  642. package/src/components/dialog/modal/index.js +0 -3
  643. package/src/components/dialog/modal/useModal.jsx +0 -6
  644. package/src/components/dialog/toast/Toast.docs.mdx +0 -21
  645. package/src/components/dialog/toast/Toast.jsx +0 -44
  646. package/src/components/dialog/toast/Toast.module.scss +0 -66
  647. package/src/components/dialog/toast/Toast.stories.jsx +0 -42
  648. package/src/components/dialog/toast/Toast.test.jsx +0 -21
  649. package/src/components/dialog/toast/index.js +0 -1
  650. package/src/components/dialog/toast_provider/ToastContext.js +0 -3
  651. package/src/components/dialog/toast_provider/ToastProvider.docs.mdx +0 -36
  652. package/src/components/dialog/toast_provider/ToastProvider.jsx +0 -35
  653. package/src/components/dialog/toast_provider/ToastProvider.module.scss +0 -14
  654. package/src/components/dialog/toast_provider/ToastProvider.test.jsx +0 -64
  655. package/src/components/dialog/toast_provider/index.js +0 -2
  656. package/src/components/dialog/toast_provider/useToast.jsx +0 -8
  657. package/src/components/dialog/tooltip/Tooltip.docs.mdx +0 -20
  658. package/src/components/dialog/tooltip/Tooltip.jsx +0 -53
  659. package/src/components/dialog/tooltip/Tooltip.module.scss +0 -92
  660. package/src/components/dialog/tooltip/Tooltip.stories.jsx +0 -76
  661. package/src/components/dialog/tooltip/Tooltip.test.jsx +0 -67
  662. package/src/components/dialog/tooltip/index.js +0 -3
  663. package/src/components/embed/embed_header/EmbedHeader.docs.mdx +0 -25
  664. package/src/components/embed/embed_header/EmbedHeader.jsx +0 -61
  665. package/src/components/embed/embed_header/EmbedHeader.module.scss +0 -148
  666. package/src/components/embed/embed_header/EmbedHeader.stories.jsx +0 -54
  667. package/src/components/embed/embed_header/EmbedHeader.test.jsx +0 -70
  668. package/src/components/embed/embed_header/index.js +0 -1
  669. package/src/components/error/standard_error_boundary/StandardErrorBoundary.docs.mdx +0 -26
  670. package/src/components/error/standard_error_boundary/StandardErrorBoundary.jsx +0 -27
  671. package/src/components/error/standard_error_boundary/StandardErrorBoundary.module.scss +0 -8
  672. package/src/components/error/standard_error_boundary/StandardErrorBoundary.test.jsx +0 -56
  673. package/src/components/error/standard_error_boundary/index.js +0 -1
  674. package/src/components/follow/follow_button/FollowButton.docs.mdx +0 -41
  675. package/src/components/follow/follow_button/FollowButton.jsx +0 -40
  676. package/src/components/follow/follow_button/FollowButton.module.scss +0 -17
  677. package/src/components/follow/follow_button/FollowButton.stories.jsx +0 -58
  678. package/src/components/follow/follow_button/FollowButton.test.jsx +0 -45
  679. package/src/components/follow/follow_button/index.js +0 -1
  680. package/src/components/follow/use_follow/index.js +0 -1
  681. package/src/components/follow/use_follow/useFollow.docs.mdx +0 -24
  682. package/src/components/follow/use_follow/useFollow.jsx +0 -60
  683. package/src/components/follow/use_follow/useFollow.test.jsx +0 -94
  684. package/src/components/forms/form/extract-form-data.js +0 -14
  685. package/src/components/forms/form/form-context.js +0 -3
  686. package/src/components/forms/form/form.docs.mdx +0 -232
  687. package/src/components/forms/form/form.jsx +0 -26
  688. package/src/components/forms/form/form.stories.jsx +0 -119
  689. package/src/components/forms/form/form.test.jsx +0 -3
  690. package/src/components/forms/form/index.js +0 -6
  691. package/src/components/forms/form/use-form-context.js +0 -43
  692. package/src/components/forms/form/use-form.js +0 -4
  693. package/src/components/forms/use_form_validation/index.js +0 -1
  694. package/src/components/forms/use_form_validation/useFormValidation.docs.mdx +0 -40
  695. package/src/components/forms/use_form_validation/useFormValidation.jsx +0 -114
  696. package/src/components/forms/use_form_validation/useFormValidation.test.jsx +0 -91
  697. package/src/components/gamification/badge_box/BadgeBox.docs.mdx +0 -25
  698. package/src/components/gamification/badge_box/BadgeBox.jsx +0 -74
  699. package/src/components/gamification/badge_box/BadgeBox.module.scss +0 -103
  700. package/src/components/gamification/badge_box/BadgeBox.stories.jsx +0 -64
  701. package/src/components/gamification/badge_box/BadgeBox.test.jsx +0 -113
  702. package/src/components/gamification/badge_box/index.js +0 -1
  703. package/src/components/gamification/point_box/PointBox.docs.mdx +0 -19
  704. package/src/components/gamification/point_box/PointBox.jsx +0 -28
  705. package/src/components/gamification/point_box/PointBox.module.scss +0 -38
  706. package/src/components/gamification/point_box/PointBox.stories.jsx +0 -32
  707. package/src/components/gamification/point_box/PointBox.test.jsx +0 -21
  708. package/src/components/gamification/point_box/index.js +0 -1
  709. package/src/components/hooks/use_auth_required/index.js +0 -1
  710. package/src/components/hooks/use_auth_required/useAuthRequired.docs.mdx +0 -22
  711. package/src/components/hooks/use_auth_required/useAuthRequired.jsx +0 -28
  712. package/src/components/hooks/use_auth_required/useAuthRequired.test.jsx +0 -85
  713. package/src/components/hooks/use_css_theme/index.js +0 -1
  714. package/src/components/hooks/use_css_theme/useCssTheme.docs.mdx +0 -34
  715. package/src/components/hooks/use_css_theme/useCssTheme.js +0 -27
  716. package/src/components/hooks/use_css_theme/useCssTheme.stories.jsx +0 -41
  717. package/src/components/hooks/use_css_theme/useCssTheme.test.jsx +0 -31
  718. package/src/components/hooks/use_font_loader/index.js +0 -1
  719. package/src/components/hooks/use_font_loader/useFontLoader.docs.mdx +0 -24
  720. package/src/components/hooks/use_font_loader/useFontLoader.js +0 -16
  721. package/src/components/hooks/use_font_loader/useFontLoader.test.jsx +0 -64
  722. package/src/components/hooks/use_matomo/index.js +0 -1
  723. package/src/components/hooks/use_matomo/useMatomo.docs.mdx +0 -28
  724. package/src/components/hooks/use_matomo/useMatomo.js +0 -17
  725. package/src/components/hooks/use_matomo/useMatomo.test.jsx +0 -24
  726. package/src/components/hooks/use_relative_time/index.js +0 -1
  727. package/src/components/hooks/use_relative_time/useRelativeTime.docs.mdx +0 -35
  728. package/src/components/hooks/use_relative_time/useRelativeTime.jsx +0 -40
  729. package/src/components/hooks/use_relative_time/useRelativeTime.test.jsx +0 -82
  730. package/src/components/hooks/use_responsive/ResponsiveContext.jsx +0 -3
  731. package/src/components/hooks/use_responsive/ResponsiveProvider.jsx +0 -52
  732. package/src/components/hooks/use_responsive/index.js +0 -2
  733. package/src/components/hooks/use_responsive/useResponsive.docs.mdx +0 -46
  734. package/src/components/hooks/use_responsive/useResponsive.jsx +0 -8
  735. package/src/components/hooks/use_responsive/useResponsive.stories.jsx +0 -49
  736. package/src/components/hooks/use_responsive/useResponsive.test.jsx +0 -54
  737. package/src/components/icons/bild_icons/Alarm.jsx +0 -7
  738. package/src/components/icons/bild_icons/Announcement.jsx +0 -16
  739. package/src/components/icons/bild_icons/Arrow.jsx +0 -7
  740. package/src/components/icons/bild_icons/BildIcons.docs.mdx +0 -21
  741. package/src/components/icons/bild_icons/BildIcons.stories.jsx +0 -123
  742. package/src/components/icons/bild_icons/BildIcons.test.jsx +0 -15
  743. package/src/components/icons/bild_icons/Blockquote.jsx +0 -7
  744. package/src/components/icons/bild_icons/Bold.jsx +0 -7
  745. package/src/components/icons/bild_icons/Camera.jsx +0 -8
  746. package/src/components/icons/bild_icons/Chat.jsx +0 -16
  747. package/src/components/icons/bild_icons/Check.jsx +0 -7
  748. package/src/components/icons/bild_icons/CheckCircle.jsx +0 -17
  749. package/src/components/icons/bild_icons/Checkbox.jsx +0 -8
  750. package/src/components/icons/bild_icons/Clap.jsx +0 -9
  751. package/src/components/icons/bild_icons/Clock.jsx +0 -7
  752. package/src/components/icons/bild_icons/Close.jsx +0 -7
  753. package/src/components/icons/bild_icons/Code.jsx +0 -18
  754. package/src/components/icons/bild_icons/Community.jsx +0 -7
  755. package/src/components/icons/bild_icons/Crown.jsx +0 -7
  756. package/src/components/icons/bild_icons/Document.jsx +0 -7
  757. package/src/components/icons/bild_icons/Downvote.jsx +0 -7
  758. package/src/components/icons/bild_icons/Ellipsis.jsx +0 -8
  759. package/src/components/icons/bild_icons/ExpertBadge.jsx +0 -11
  760. package/src/components/icons/bild_icons/Facebook.jsx +0 -7
  761. package/src/components/icons/bild_icons/Flag.jsx +0 -7
  762. package/src/components/icons/bild_icons/Home.jsx +0 -7
  763. package/src/components/icons/bild_icons/Italic.jsx +0 -7
  764. package/src/components/icons/bild_icons/LightArrow.jsx +0 -7
  765. package/src/components/icons/bild_icons/Link.jsx +0 -8
  766. package/src/components/icons/bild_icons/Login.jsx +0 -11
  767. package/src/components/icons/bild_icons/Logora.jsx +0 -24
  768. package/src/components/icons/bild_icons/Mail.jsx +0 -7
  769. package/src/components/icons/bild_icons/MinusCircle.jsx +0 -16
  770. package/src/components/icons/bild_icons/MobileClose.jsx +0 -8
  771. package/src/components/icons/bild_icons/MobileMenu.jsx +0 -10
  772. package/src/components/icons/bild_icons/Next.jsx +0 -10
  773. package/src/components/icons/bild_icons/OpenBlank.jsx +0 -15
  774. package/src/components/icons/bild_icons/OrderedList.jsx +0 -7
  775. package/src/components/icons/bild_icons/PauseCircle.jsx +0 -10
  776. package/src/components/icons/bild_icons/Point.jsx +0 -8
  777. package/src/components/icons/bild_icons/Question.jsx +0 -8
  778. package/src/components/icons/bild_icons/Refresh.jsx +0 -7
  779. package/src/components/icons/bild_icons/Reply.jsx +0 -7
  780. package/src/components/icons/bild_icons/Search.jsx +0 -7
  781. package/src/components/icons/bild_icons/Send.jsx +0 -7
  782. package/src/components/icons/bild_icons/Share.jsx +0 -14
  783. package/src/components/icons/bild_icons/SmallArrow.jsx +0 -11
  784. package/src/components/icons/bild_icons/Source.jsx +0 -7
  785. package/src/components/icons/bild_icons/Suggestion.jsx +0 -7
  786. package/src/components/icons/bild_icons/Twitter.jsx +0 -10
  787. package/src/components/icons/bild_icons/Underline.jsx +0 -7
  788. package/src/components/icons/bild_icons/Upvote.jsx +0 -7
  789. package/src/components/icons/bild_icons/User.jsx +0 -7
  790. package/src/components/icons/bild_icons/Versus.jsx +0 -11
  791. package/src/components/icons/bild_icons/Votebox.jsx +0 -7
  792. package/src/components/icons/bild_icons/index.js +0 -52
  793. package/src/components/icons/hero_icons/Alarm.jsx +0 -7
  794. package/src/components/icons/hero_icons/Announcement.jsx +0 -7
  795. package/src/components/icons/hero_icons/Arrow.jsx +0 -7
  796. package/src/components/icons/hero_icons/Blockquote.jsx +0 -14
  797. package/src/components/icons/hero_icons/Bold.jsx +0 -7
  798. package/src/components/icons/hero_icons/Camera.jsx +0 -8
  799. package/src/components/icons/hero_icons/Chat.jsx +0 -7
  800. package/src/components/icons/hero_icons/Check.jsx +0 -8
  801. package/src/components/icons/hero_icons/CheckCircle.jsx +0 -17
  802. package/src/components/icons/hero_icons/Checkbox.jsx +0 -7
  803. package/src/components/icons/hero_icons/Clap.jsx +0 -7
  804. package/src/components/icons/hero_icons/Clock.jsx +0 -7
  805. package/src/components/icons/hero_icons/Close.jsx +0 -8
  806. package/src/components/icons/hero_icons/Code.jsx +0 -7
  807. package/src/components/icons/hero_icons/Community.jsx +0 -7
  808. package/src/components/icons/hero_icons/Crown.jsx +0 -7
  809. package/src/components/icons/hero_icons/Downvote.jsx +0 -8
  810. package/src/components/icons/hero_icons/Ellipsis.jsx +0 -7
  811. package/src/components/icons/hero_icons/ExpertBadge.jsx +0 -7
  812. package/src/components/icons/hero_icons/Facebook.jsx +0 -7
  813. package/src/components/icons/hero_icons/Flag.jsx +0 -7
  814. package/src/components/icons/hero_icons/HeroIcons.docs.mdx +0 -19
  815. package/src/components/icons/hero_icons/HeroIcons.stories.jsx +0 -121
  816. package/src/components/icons/hero_icons/HeroIcons.test.jsx +0 -15
  817. package/src/components/icons/hero_icons/Home.jsx +0 -7
  818. package/src/components/icons/hero_icons/Italic.jsx +0 -7
  819. package/src/components/icons/hero_icons/LightArrow.jsx +0 -7
  820. package/src/components/icons/hero_icons/Link.jsx +0 -7
  821. package/src/components/icons/hero_icons/Login.jsx +0 -7
  822. package/src/components/icons/hero_icons/Logora.jsx +0 -24
  823. package/src/components/icons/hero_icons/Mail.jsx +0 -7
  824. package/src/components/icons/hero_icons/MinusCircle.jsx +0 -16
  825. package/src/components/icons/hero_icons/MobileClose.jsx +0 -7
  826. package/src/components/icons/hero_icons/MobileMenu.jsx +0 -7
  827. package/src/components/icons/hero_icons/Next.jsx +0 -8
  828. package/src/components/icons/hero_icons/OpenBlank.jsx +0 -7
  829. package/src/components/icons/hero_icons/OrderedList.jsx +0 -19
  830. package/src/components/icons/hero_icons/PauseCircle.jsx +0 -10
  831. package/src/components/icons/hero_icons/Point.jsx +0 -8
  832. package/src/components/icons/hero_icons/Question.jsx +0 -7
  833. package/src/components/icons/hero_icons/Refresh.jsx +0 -7
  834. package/src/components/icons/hero_icons/Reply.jsx +0 -7
  835. package/src/components/icons/hero_icons/Search.jsx +0 -7
  836. package/src/components/icons/hero_icons/Send.jsx +0 -7
  837. package/src/components/icons/hero_icons/Share.jsx +0 -8
  838. package/src/components/icons/hero_icons/SmallArrow.jsx +0 -7
  839. package/src/components/icons/hero_icons/Source.jsx +0 -8
  840. package/src/components/icons/hero_icons/Suggestion.jsx +0 -9
  841. package/src/components/icons/hero_icons/Twitter.jsx +0 -10
  842. package/src/components/icons/hero_icons/Underline.jsx +0 -14
  843. package/src/components/icons/hero_icons/Upvote.jsx +0 -7
  844. package/src/components/icons/hero_icons/User.jsx +0 -7
  845. package/src/components/icons/hero_icons/Versus.jsx +0 -7
  846. package/src/components/icons/hero_icons/Votebox.jsx +0 -7
  847. package/src/components/icons/hero_icons/index.js +0 -51
  848. package/src/components/icons/icon/Icon.docs.mdx +0 -20
  849. package/src/components/icons/icon/Icon.jsx +0 -32
  850. package/src/components/icons/icon/Icon.test.jsx +0 -33
  851. package/src/components/icons/icon/index.js +0 -1
  852. package/src/components/icons/icon_provider/IconProvider.docs.mdx +0 -28
  853. package/src/components/icons/icon_provider/IconProvider.jsx +0 -19
  854. package/src/components/icons/icon_provider/IconProvider.test.jsx +0 -24
  855. package/src/components/icons/icon_provider/index.js +0 -1
  856. package/src/components/icons/krone_icons/Alarm.jsx +0 -27
  857. package/src/components/icons/krone_icons/Announcement.jsx +0 -16
  858. package/src/components/icons/krone_icons/Arrow.jsx +0 -7
  859. package/src/components/icons/krone_icons/Blockquote.jsx +0 -7
  860. package/src/components/icons/krone_icons/Bold.jsx +0 -7
  861. package/src/components/icons/krone_icons/Camera.jsx +0 -8
  862. package/src/components/icons/krone_icons/Chat.jsx +0 -29
  863. package/src/components/icons/krone_icons/Check.jsx +0 -7
  864. package/src/components/icons/krone_icons/CheckBox.jsx +0 -7
  865. package/src/components/icons/krone_icons/CheckCircle.jsx +0 -17
  866. package/src/components/icons/krone_icons/Clap.jsx +0 -29
  867. package/src/components/icons/krone_icons/Clock.jsx +0 -7
  868. package/src/components/icons/krone_icons/Close.jsx +0 -7
  869. package/src/components/icons/krone_icons/Code.jsx +0 -18
  870. package/src/components/icons/krone_icons/Community.jsx +0 -7
  871. package/src/components/icons/krone_icons/Crown.jsx +0 -7
  872. package/src/components/icons/krone_icons/Document.jsx +0 -7
  873. package/src/components/icons/krone_icons/Downvote.jsx +0 -7
  874. package/src/components/icons/krone_icons/Ellipsis.jsx +0 -18
  875. package/src/components/icons/krone_icons/ExpertBadge.jsx +0 -29
  876. package/src/components/icons/krone_icons/Facebook.jsx +0 -7
  877. package/src/components/icons/krone_icons/Flag.jsx +0 -7
  878. package/src/components/icons/krone_icons/Home.jsx +0 -29
  879. package/src/components/icons/krone_icons/Italic.jsx +0 -7
  880. package/src/components/icons/krone_icons/KroneIcons.docs.mdx +0 -21
  881. package/src/components/icons/krone_icons/KroneIcons.stories.jsx +0 -124
  882. package/src/components/icons/krone_icons/KroneIcons.test.jsx +0 -15
  883. package/src/components/icons/krone_icons/LightArrow.jsx +0 -7
  884. package/src/components/icons/krone_icons/Link.jsx +0 -8
  885. package/src/components/icons/krone_icons/Login.jsx +0 -11
  886. package/src/components/icons/krone_icons/Logora.jsx +0 -24
  887. package/src/components/icons/krone_icons/Mail.jsx +0 -7
  888. package/src/components/icons/krone_icons/MinusCircle.jsx +0 -16
  889. package/src/components/icons/krone_icons/MobileClose.jsx +0 -8
  890. package/src/components/icons/krone_icons/MobileMenu.jsx +0 -10
  891. package/src/components/icons/krone_icons/Next.jsx +0 -10
  892. package/src/components/icons/krone_icons/OpenBlank.jsx +0 -15
  893. package/src/components/icons/krone_icons/OrderedList.jsx +0 -7
  894. package/src/components/icons/krone_icons/PauseCircle.jsx +0 -10
  895. package/src/components/icons/krone_icons/Point.jsx +0 -8
  896. package/src/components/icons/krone_icons/Question.jsx +0 -29
  897. package/src/components/icons/krone_icons/Refresh.jsx +0 -7
  898. package/src/components/icons/krone_icons/Reply.jsx +0 -18
  899. package/src/components/icons/krone_icons/Search.jsx +0 -7
  900. package/src/components/icons/krone_icons/Send.jsx +0 -19
  901. package/src/components/icons/krone_icons/Share.jsx +0 -16
  902. package/src/components/icons/krone_icons/SmallArrow.jsx +0 -11
  903. package/src/components/icons/krone_icons/Source.jsx +0 -7
  904. package/src/components/icons/krone_icons/Suggestion.jsx +0 -29
  905. package/src/components/icons/krone_icons/Twitter.jsx +0 -10
  906. package/src/components/icons/krone_icons/Underline.jsx +0 -7
  907. package/src/components/icons/krone_icons/Upvote.jsx +0 -29
  908. package/src/components/icons/krone_icons/User.jsx +0 -30
  909. package/src/components/icons/krone_icons/Versus.jsx +0 -9
  910. package/src/components/icons/krone_icons/Votebox.jsx +0 -29
  911. package/src/components/icons/krone_icons/index.js +0 -52
  912. package/src/components/icons/regular_icons/Alarm.jsx +0 -7
  913. package/src/components/icons/regular_icons/Announcement.jsx +0 -16
  914. package/src/components/icons/regular_icons/Arrow.jsx +0 -7
  915. package/src/components/icons/regular_icons/Blockquote.jsx +0 -7
  916. package/src/components/icons/regular_icons/Bold.jsx +0 -7
  917. package/src/components/icons/regular_icons/Camera.jsx +0 -8
  918. package/src/components/icons/regular_icons/Chat.jsx +0 -10
  919. package/src/components/icons/regular_icons/Check.jsx +0 -7
  920. package/src/components/icons/regular_icons/CheckCircle.jsx +0 -17
  921. package/src/components/icons/regular_icons/Checkbox.jsx +0 -8
  922. package/src/components/icons/regular_icons/Clap.jsx +0 -7
  923. package/src/components/icons/regular_icons/Clock.jsx +0 -7
  924. package/src/components/icons/regular_icons/Close.jsx +0 -7
  925. package/src/components/icons/regular_icons/Code.jsx +0 -18
  926. package/src/components/icons/regular_icons/Community.jsx +0 -7
  927. package/src/components/icons/regular_icons/Crown.jsx +0 -7
  928. package/src/components/icons/regular_icons/Document.jsx +0 -7
  929. package/src/components/icons/regular_icons/Downvote.jsx +0 -7
  930. package/src/components/icons/regular_icons/Ellipsis.jsx +0 -8
  931. package/src/components/icons/regular_icons/ExpertBadge.jsx +0 -11
  932. package/src/components/icons/regular_icons/Facebook.jsx +0 -7
  933. package/src/components/icons/regular_icons/Flag.jsx +0 -7
  934. package/src/components/icons/regular_icons/Home.jsx +0 -7
  935. package/src/components/icons/regular_icons/Italic.jsx +0 -7
  936. package/src/components/icons/regular_icons/LightArrow.jsx +0 -7
  937. package/src/components/icons/regular_icons/Link.jsx +0 -8
  938. package/src/components/icons/regular_icons/Login.jsx +0 -11
  939. package/src/components/icons/regular_icons/Logora.jsx +0 -24
  940. package/src/components/icons/regular_icons/Mail.jsx +0 -7
  941. package/src/components/icons/regular_icons/MinusCircle.jsx +0 -16
  942. package/src/components/icons/regular_icons/MobileClose.jsx +0 -8
  943. package/src/components/icons/regular_icons/MobileMenu.jsx +0 -10
  944. package/src/components/icons/regular_icons/Next.jsx +0 -10
  945. package/src/components/icons/regular_icons/OpenBlank.jsx +0 -15
  946. package/src/components/icons/regular_icons/OrderedList.jsx +0 -7
  947. package/src/components/icons/regular_icons/PauseCircle.jsx +0 -10
  948. package/src/components/icons/regular_icons/Point.jsx +0 -8
  949. package/src/components/icons/regular_icons/Question.jsx +0 -8
  950. package/src/components/icons/regular_icons/Refresh.jsx +0 -7
  951. package/src/components/icons/regular_icons/RegularIcons.docs.mdx +0 -21
  952. package/src/components/icons/regular_icons/RegularIcons.stories.jsx +0 -123
  953. package/src/components/icons/regular_icons/RegularIcons.test.jsx +0 -15
  954. package/src/components/icons/regular_icons/Reply.jsx +0 -7
  955. package/src/components/icons/regular_icons/Search.jsx +0 -7
  956. package/src/components/icons/regular_icons/Send.jsx +0 -7
  957. package/src/components/icons/regular_icons/Share.jsx +0 -14
  958. package/src/components/icons/regular_icons/SmallArrow.jsx +0 -11
  959. package/src/components/icons/regular_icons/Source.jsx +0 -7
  960. package/src/components/icons/regular_icons/Suggestion.jsx +0 -7
  961. package/src/components/icons/regular_icons/Twitter.jsx +0 -10
  962. package/src/components/icons/regular_icons/Underline.jsx +0 -7
  963. package/src/components/icons/regular_icons/Upvote.jsx +0 -7
  964. package/src/components/icons/regular_icons/User.jsx +0 -7
  965. package/src/components/icons/regular_icons/Versus.jsx +0 -9
  966. package/src/components/icons/regular_icons/Votebox.jsx +0 -7
  967. package/src/components/icons/regular_icons/index.js +0 -52
  968. package/src/components/icons/spiegel_icons/Alarm.jsx +0 -7
  969. package/src/components/icons/spiegel_icons/Announcement.jsx +0 -16
  970. package/src/components/icons/spiegel_icons/Arrow.jsx +0 -7
  971. package/src/components/icons/spiegel_icons/Blockquote.jsx +0 -14
  972. package/src/components/icons/spiegel_icons/Bold.jsx +0 -7
  973. package/src/components/icons/spiegel_icons/Camera.jsx +0 -8
  974. package/src/components/icons/spiegel_icons/Chat.jsx +0 -7
  975. package/src/components/icons/spiegel_icons/Check.jsx +0 -11
  976. package/src/components/icons/spiegel_icons/CheckCircle.jsx +0 -8
  977. package/src/components/icons/spiegel_icons/Checkbox.jsx +0 -14
  978. package/src/components/icons/spiegel_icons/Clap.jsx +0 -15
  979. package/src/components/icons/spiegel_icons/Clock.jsx +0 -15
  980. package/src/components/icons/spiegel_icons/Close.jsx +0 -7
  981. package/src/components/icons/spiegel_icons/Code.jsx +0 -18
  982. package/src/components/icons/spiegel_icons/Community.jsx +0 -7
  983. package/src/components/icons/spiegel_icons/Crown.jsx +0 -7
  984. package/src/components/icons/spiegel_icons/Downvote.jsx +0 -7
  985. package/src/components/icons/spiegel_icons/Ellipsis.jsx +0 -8
  986. package/src/components/icons/spiegel_icons/ExpertBadge.jsx +0 -16
  987. package/src/components/icons/spiegel_icons/Facebook.jsx +0 -7
  988. package/src/components/icons/spiegel_icons/Flag.jsx +0 -8
  989. package/src/components/icons/spiegel_icons/Home.jsx +0 -7
  990. package/src/components/icons/spiegel_icons/Italic.jsx +0 -7
  991. package/src/components/icons/spiegel_icons/LightArrow.jsx +0 -7
  992. package/src/components/icons/spiegel_icons/Link.jsx +0 -17
  993. package/src/components/icons/spiegel_icons/Login.jsx +0 -7
  994. package/src/components/icons/spiegel_icons/Logora.jsx +0 -24
  995. package/src/components/icons/spiegel_icons/Mail.jsx +0 -7
  996. package/src/components/icons/spiegel_icons/MinusCircle.jsx +0 -8
  997. package/src/components/icons/spiegel_icons/MobileClose.jsx +0 -8
  998. package/src/components/icons/spiegel_icons/MobileMenu.jsx +0 -10
  999. package/src/components/icons/spiegel_icons/Next.jsx +0 -10
  1000. package/src/components/icons/spiegel_icons/OpenBlank.jsx +0 -15
  1001. package/src/components/icons/spiegel_icons/OrderedList.jsx +0 -20
  1002. package/src/components/icons/spiegel_icons/PauseCircle.jsx +0 -8
  1003. package/src/components/icons/spiegel_icons/Point.jsx +0 -8
  1004. package/src/components/icons/spiegel_icons/Question.jsx +0 -17
  1005. package/src/components/icons/spiegel_icons/Refresh.jsx +0 -7
  1006. package/src/components/icons/spiegel_icons/Reply.jsx +0 -7
  1007. package/src/components/icons/spiegel_icons/Search.jsx +0 -7
  1008. package/src/components/icons/spiegel_icons/Send.jsx +0 -7
  1009. package/src/components/icons/spiegel_icons/Share.jsx +0 -14
  1010. package/src/components/icons/spiegel_icons/SmallArrow.jsx +0 -7
  1011. package/src/components/icons/spiegel_icons/Source.jsx +0 -7
  1012. package/src/components/icons/spiegel_icons/SpiegelIcons.docs.mdx +0 -21
  1013. package/src/components/icons/spiegel_icons/SpiegelIcons.stories.jsx +0 -121
  1014. package/src/components/icons/spiegel_icons/SpiegelIcons.test.jsx +0 -15
  1015. package/src/components/icons/spiegel_icons/Suggestion.jsx +0 -7
  1016. package/src/components/icons/spiegel_icons/Twitter.jsx +0 -10
  1017. package/src/components/icons/spiegel_icons/Underline.jsx +0 -14
  1018. package/src/components/icons/spiegel_icons/Upvote.jsx +0 -7
  1019. package/src/components/icons/spiegel_icons/User.jsx +0 -7
  1020. package/src/components/icons/spiegel_icons/Versus.jsx +0 -11
  1021. package/src/components/icons/spiegel_icons/Votebox.jsx +0 -14
  1022. package/src/components/icons/spiegel_icons/index.js +0 -51
  1023. package/src/components/information/information_box/InformationBox.docs.mdx +0 -28
  1024. package/src/components/information/information_box/InformationBox.jsx +0 -54
  1025. package/src/components/information/information_box/InformationBox.module.scss +0 -92
  1026. package/src/components/information/information_box/InformationBox.stories.jsx +0 -50
  1027. package/src/components/information/information_box/InformationBox.test.jsx +0 -94
  1028. package/src/components/information/information_box/index.js +0 -1
  1029. package/src/components/input/argument_input/ArgumentInput.docs.mdx +0 -29
  1030. package/src/components/input/argument_input/ArgumentInput.jsx +0 -420
  1031. package/src/components/input/argument_input/ArgumentInput.module.scss +0 -166
  1032. package/src/components/input/argument_input/ArgumentInput.stories.jsx +0 -181
  1033. package/src/components/input/argument_input/ArgumentInput.test.jsx +0 -482
  1034. package/src/components/input/argument_input/index.js +0 -1
  1035. package/src/components/input/checkbox/hidden/hidden-checkbox.docs.mdx +0 -4
  1036. package/src/components/input/checkbox/hidden/hidden-checkbox.jsx +0 -8
  1037. package/src/components/input/checkbox/hidden/hidden-checkbox.module.scss +0 -28
  1038. package/src/components/input/checkbox/hidden/hidden-checkbox.stories.jsx +0 -73
  1039. package/src/components/input/checkbox/hidden/index.js +0 -1
  1040. package/src/components/input/checkbox/indicator/checkbox-indicator.docs.mdx +0 -9
  1041. package/src/components/input/checkbox/indicator/checkbox-indicator.jsx +0 -17
  1042. package/src/components/input/checkbox/indicator/checkbox-indicator.module.scss +0 -26
  1043. package/src/components/input/checkbox/indicator/checkbox-indicator.stories.jsx +0 -51
  1044. package/src/components/input/checkbox/indicator/index.js +0 -1
  1045. package/src/components/input/checkbox/label/checkbox-label.docs.mdx +0 -39
  1046. package/src/components/input/checkbox/label/checkbox-label.jsx +0 -40
  1047. package/src/components/input/checkbox/label/checkbox.stories.jsx +0 -57
  1048. package/src/components/input/checkbox/label/index.js +0 -1
  1049. package/src/components/input/input_provider/InputProvider.docs.mdx +0 -38
  1050. package/src/components/input/input_provider/InputProvider.jsx +0 -16
  1051. package/src/components/input/input_provider/InputProvider.test.jsx +0 -102
  1052. package/src/components/input/input_provider/index.js +0 -2
  1053. package/src/components/input/input_provider/useInput.jsx +0 -8
  1054. package/src/components/input/search_input/SearchInput.docs.mdx +0 -25
  1055. package/src/components/input/search_input/SearchInput.jsx +0 -71
  1056. package/src/components/input/search_input/SearchInput.module.scss +0 -18
  1057. package/src/components/input/search_input/SearchInput.stories.jsx +0 -45
  1058. package/src/components/input/search_input/SearchInput.test.jsx +0 -95
  1059. package/src/components/input/search_input/index.js +0 -1
  1060. package/src/components/input/select/Select.docs.mdx +0 -37
  1061. package/src/components/input/select/Select.jsx +0 -102
  1062. package/src/components/input/select/Select.module.scss +0 -72
  1063. package/src/components/input/select/Select.stories.jsx +0 -75
  1064. package/src/components/input/select/Select.test.jsx +0 -136
  1065. package/src/components/input/select/index.js +0 -1
  1066. package/src/components/input/text_editor/EditorTheme.js +0 -71
  1067. package/src/components/input/text_editor/TextEditor.docs.mdx +0 -31
  1068. package/src/components/input/text_editor/TextEditor.jsx +0 -205
  1069. package/src/components/input/text_editor/TextEditor.module.scss +0 -140
  1070. package/src/components/input/text_editor/TextEditor.stories.jsx +0 -227
  1071. package/src/components/input/text_editor/TextEditor.test.jsx +0 -654
  1072. package/src/components/input/text_editor/index.js +0 -2
  1073. package/src/components/input/text_editor/lexicalToHtml.js +0 -23
  1074. package/src/components/input/text_editor/plugins/AutoSavePlugin.jsx +0 -37
  1075. package/src/components/input/text_editor/plugins/FocusPlugin.jsx +0 -19
  1076. package/src/components/input/text_editor/plugins/MaxLengthPlugin.jsx +0 -44
  1077. package/src/components/input/text_editor/plugins/ResetPlugin.jsx +0 -35
  1078. package/src/components/input/text_editor/plugins/SetContentPlugin.jsx +0 -24
  1079. package/src/components/input/text_editor/plugins/SetRichContentPlugin.jsx +0 -20
  1080. package/src/components/input/text_editor/plugins/ToolbarPlugin.jsx +0 -233
  1081. package/src/components/input/text_editor/plugins/ToolbarPlugin.module.scss +0 -77
  1082. package/src/components/input/text_input/TextInput.docs.mdx +0 -73
  1083. package/src/components/input/text_input/TextInput.jsx +0 -46
  1084. package/src/components/input/text_input/TextInput.module.scss +0 -146
  1085. package/src/components/input/text_input/TextInput.stories.jsx +0 -101
  1086. package/src/components/input/text_input/TextInput.test.jsx +0 -64
  1087. package/src/components/input/text_input/color-accent.js +0 -16
  1088. package/src/components/input/text_input/index.js +0 -3
  1089. package/src/components/input/text_input/message.jsx +0 -12
  1090. package/src/components/input/toggle/Toggle.docs.mdx +0 -23
  1091. package/src/components/input/toggle/Toggle.jsx +0 -25
  1092. package/src/components/input/toggle/Toggle.module.scss +0 -73
  1093. package/src/components/input/toggle/Toggle.stories.jsx +0 -42
  1094. package/src/components/input/toggle/Toggle.test.jsx +0 -39
  1095. package/src/components/input/toggle/index.js +0 -1
  1096. package/src/components/input/toggle_position/TogglePosition.docs.mdx +0 -20
  1097. package/src/components/input/toggle_position/TogglePosition.jsx +0 -55
  1098. package/src/components/input/toggle_position/TogglePosition.module.scss +0 -46
  1099. package/src/components/input/toggle_position/TogglePosition.stories.jsx +0 -96
  1100. package/src/components/input/toggle_position/TogglePosition.test.jsx +0 -66
  1101. package/src/components/input/toggle_position/index.js +0 -1
  1102. package/src/components/intl/intl_provider/IntlContext.jsx +0 -3
  1103. package/src/components/intl/intl_provider/IntlProvider.docs.mdx +0 -37
  1104. package/src/components/intl/intl_provider/IntlProvider.jsx +0 -92
  1105. package/src/components/intl/intl_provider/IntlProvider.test.jsx +0 -153
  1106. package/src/components/intl/intl_provider/index.js +0 -3
  1107. package/src/components/intl/intl_provider/locales/en.json +0 -4
  1108. package/src/components/intl/intl_provider/locales/es.json +0 -4
  1109. package/src/components/intl/intl_provider/locales/fr.json +0 -6
  1110. package/src/components/intl/intl_provider/locales/index.js +0 -11
  1111. package/src/components/intl/intl_provider/useLocale.jsx +0 -8
  1112. package/src/components/list/list_provider/ListProvider.docs.mdx +0 -51
  1113. package/src/components/list/list_provider/ListProvider.jsx +0 -32
  1114. package/src/components/list/list_provider/ListProvider.stories.jsx +0 -92
  1115. package/src/components/list/list_provider/ListProvider.test.jsx +0 -137
  1116. package/src/components/list/list_provider/index.js +0 -2
  1117. package/src/components/list/list_provider/useList.jsx +0 -8
  1118. package/src/components/list/paginated_list/PaginatedList.docs.mdx +0 -68
  1119. package/src/components/list/paginated_list/PaginatedList.jsx +0 -397
  1120. package/src/components/list/paginated_list/PaginatedList.module.scss +0 -88
  1121. package/src/components/list/paginated_list/PaginatedList.stories.jsx +0 -301
  1122. package/src/components/list/paginated_list/PaginatedList.test.jsx +0 -1335
  1123. package/src/components/list/paginated_list/VotePaginatedList.jsx +0 -26
  1124. package/src/components/list/paginated_list/VotePaginatedList.test.jsx +0 -1518
  1125. package/src/components/list/paginated_list/action_bar/ActionBar.jsx +0 -132
  1126. package/src/components/list/paginated_list/action_bar/ActionBar.module.scss +0 -81
  1127. package/src/components/list/paginated_list/index.js +0 -3
  1128. package/src/components/list/pagination/Pagination.docs.mdx +0 -32
  1129. package/src/components/list/pagination/Pagination.jsx +0 -58
  1130. package/src/components/list/pagination/Pagination.module.scss +0 -10
  1131. package/src/components/list/pagination/Pagination.stories.jsx +0 -44
  1132. package/src/components/list/pagination/Pagination.test.jsx +0 -80
  1133. package/src/components/list/pagination/index.js +0 -1
  1134. package/src/components/modal/side_modal/SideModal.docs.mdx +0 -31
  1135. package/src/components/modal/side_modal/SideModal.jsx +0 -85
  1136. package/src/components/modal/side_modal/SideModal.module.scss +0 -83
  1137. package/src/components/modal/side_modal/SideModal.stories.jsx +0 -112
  1138. package/src/components/modal/side_modal/SideModal.test.jsx +0 -36
  1139. package/src/components/modal/side_modal/index.js +0 -1
  1140. package/src/components/navbar/navbar_button/NavbarButton.docs.mdx +0 -37
  1141. package/src/components/navbar/navbar_button/NavbarButton.jsx +0 -43
  1142. package/src/components/navbar/navbar_button/NavbarButton.module.scss +0 -45
  1143. package/src/components/navbar/navbar_button/NavbarButton.stories.jsx +0 -93
  1144. package/src/components/navbar/navbar_button/NavbarButton.test.jsx +0 -67
  1145. package/src/components/navbar/navbar_button/index.js +0 -1
  1146. package/src/components/navbar/navbar_modal/NavbarModal.docs.mdx +0 -24
  1147. package/src/components/navbar/navbar_modal/NavbarModal.jsx +0 -175
  1148. package/src/components/navbar/navbar_modal/NavbarModal.module.scss +0 -132
  1149. package/src/components/navbar/navbar_modal/NavbarModal.stories.jsx +0 -96
  1150. package/src/components/navbar/navbar_modal/NavbarModal.test.jsx +0 -155
  1151. package/src/components/navbar/navbar_modal/index.js +0 -1
  1152. package/src/components/notification/notification_item/NotificationItem.docs.mdx +0 -35
  1153. package/src/components/notification/notification_item/NotificationItem.jsx +0 -71
  1154. package/src/components/notification/notification_item/NotificationItem.module.scss +0 -56
  1155. package/src/components/notification/notification_item/NotificationItem.stories.jsx +0 -121
  1156. package/src/components/notification/notification_item/NotificationItem.test.jsx +0 -97
  1157. package/src/components/notification/notification_item/index.js +0 -1
  1158. package/src/components/notification/notification_menu/NotificationMenu.docs.mdx +0 -25
  1159. package/src/components/notification/notification_menu/NotificationMenu.jsx +0 -61
  1160. package/src/components/notification/notification_menu/NotificationMenu.module.scss +0 -49
  1161. package/src/components/notification/notification_menu/NotificationMenu.stories.jsx +0 -94
  1162. package/src/components/notification/notification_menu/NotificationMenu.test.jsx +0 -131
  1163. package/src/components/notification/notification_menu/index.js +0 -1
  1164. package/src/components/progress/loader/Loader.docs.mdx +0 -13
  1165. package/src/components/progress/loader/Loader.jsx +0 -9
  1166. package/src/components/progress/loader/Loader.module.scss +0 -26
  1167. package/src/components/progress/loader/Loader.stories.jsx +0 -11
  1168. package/src/components/progress/loader/Loader.test.jsx +0 -11
  1169. package/src/components/progress/loader/index.js +0 -3
  1170. package/src/components/progress/progress_bar/ProgressBar.docs.mdx +0 -29
  1171. package/src/components/progress/progress_bar/ProgressBar.jsx +0 -75
  1172. package/src/components/progress/progress_bar/ProgressBar.module.scss +0 -87
  1173. package/src/components/progress/progress_bar/ProgressBar.stories.jsx +0 -43
  1174. package/src/components/progress/progress_bar/ProgressBar.test.jsx +0 -126
  1175. package/src/components/progress/progress_bar/index.js +0 -1
  1176. package/src/components/proposal/proposal_box/ProposalBox.docs.mdx +0 -39
  1177. package/src/components/proposal/proposal_box/ProposalBox.jsx +0 -108
  1178. package/src/components/proposal/proposal_box/ProposalBox.module.scss +0 -80
  1179. package/src/components/proposal/proposal_box/ProposalBox.stories.jsx +0 -161
  1180. package/src/components/proposal/proposal_box/ProposalBox.test.jsx +0 -137
  1181. package/src/components/proposal/proposal_box/index.js +0 -1
  1182. package/src/components/report/report_box/ReportBox.docs.mdx +0 -35
  1183. package/src/components/report/report_box/ReportBox.jsx +0 -120
  1184. package/src/components/report/report_box/ReportBox.module.scss +0 -54
  1185. package/src/components/report/report_box/ReportBox.stories.jsx +0 -247
  1186. package/src/components/report/report_box/ReportBox.test.jsx +0 -232
  1187. package/src/components/report/report_box/index.js +0 -1
  1188. package/src/components/section/section_box/SectionBox.docs.mdx +0 -19
  1189. package/src/components/section/section_box/SectionBox.jsx +0 -32
  1190. package/src/components/section/section_box/SectionBox.module.scss +0 -57
  1191. package/src/components/section/section_box/SectionBox.stories.jsx +0 -39
  1192. package/src/components/section/section_box/SectionBox.test.jsx +0 -44
  1193. package/src/components/section/section_box/index.js +0 -1
  1194. package/src/components/share/share_box/ShareBox.docs.mdx +0 -27
  1195. package/src/components/share/share_box/ShareBox.jsx +0 -71
  1196. package/src/components/share/share_box/ShareBox.module.scss +0 -38
  1197. package/src/components/share/share_box/ShareBox.stories.jsx +0 -42
  1198. package/src/components/share/share_box/ShareBox.test.jsx +0 -142
  1199. package/src/components/share/share_box/index.js +0 -1
  1200. package/src/components/share/share_button/ShareButton.docs.mdx +0 -26
  1201. package/src/components/share/share_button/ShareButton.jsx +0 -102
  1202. package/src/components/share/share_button/ShareButton.module.scss +0 -68
  1203. package/src/components/share/share_button/ShareButton.stories.jsx +0 -51
  1204. package/src/components/share/share_button/ShareButton.test.jsx +0 -117
  1205. package/src/components/share/share_button/index.js +0 -1
  1206. package/src/components/share/share_modal/ShareModal.docs.mdx +0 -29
  1207. package/src/components/share/share_modal/ShareModal.jsx +0 -49
  1208. package/src/components/share/share_modal/ShareModal.module.scss +0 -21
  1209. package/src/components/share/share_modal/ShareModal.stories.jsx +0 -48
  1210. package/src/components/share/share_modal/ShareModal.test.jsx +0 -70
  1211. package/src/components/share/share_modal/index.js +0 -1
  1212. package/src/components/skeleton/box_skeleton/BoxSkeleton.docs.mdx +0 -14
  1213. package/src/components/skeleton/box_skeleton/BoxSkeleton.jsx +0 -38
  1214. package/src/components/skeleton/box_skeleton/BoxSkeleton.stories.jsx +0 -46
  1215. package/src/components/skeleton/box_skeleton/BoxSkeleton.test.jsx +0 -39
  1216. package/src/components/skeleton/box_skeleton/index.js +0 -1
  1217. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.docs.mdx +0 -15
  1218. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.jsx +0 -56
  1219. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.module.scss +0 -78
  1220. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.stories.jsx +0 -44
  1221. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.test.jsx +0 -55
  1222. package/src/components/skeleton/user_content_skeleton/index.js +0 -1
  1223. package/src/components/source/context_source_box/ContextSourceBox.docs.mdx +0 -27
  1224. package/src/components/source/context_source_box/ContextSourceBox.jsx +0 -38
  1225. package/src/components/source/context_source_box/ContextSourceBox.module.scss +0 -50
  1226. package/src/components/source/context_source_box/ContextSourceBox.stories.jsx +0 -36
  1227. package/src/components/source/context_source_box/ContextSourceBox.test.jsx +0 -46
  1228. package/src/components/source/context_source_box/index.js +0 -1
  1229. package/src/components/source/context_source_list/ContextSourceList.docs.mdx +0 -37
  1230. package/src/components/source/context_source_list/ContextSourceList.jsx +0 -42
  1231. package/src/components/source/context_source_list/ContextSourceList.module.scss +0 -38
  1232. package/src/components/source/context_source_list/ContextSourceList.stories.jsx +0 -39
  1233. package/src/components/source/context_source_list/ContextSourceList.test.jsx +0 -47
  1234. package/src/components/source/context_source_list/index.js +0 -1
  1235. package/src/components/source/source_box/SourceBox.docs.mdx +0 -23
  1236. package/src/components/source/source_box/SourceBox.jsx +0 -43
  1237. package/src/components/source/source_box/SourceBox.module.scss +0 -43
  1238. package/src/components/source/source_box/SourceBox.stories.jsx +0 -26
  1239. package/src/components/source/source_box/SourceBox.test.jsx +0 -30
  1240. package/src/components/source/source_box/index.js +0 -1
  1241. package/src/components/source/source_list_item/SourceListItem.docs.mdx +0 -23
  1242. package/src/components/source/source_list_item/SourceListItem.jsx +0 -28
  1243. package/src/components/source/source_list_item/SourceListItem.module.scss +0 -33
  1244. package/src/components/source/source_list_item/SourceListItem.stories.jsx +0 -40
  1245. package/src/components/source/source_list_item/SourceListItem.test.jsx +0 -41
  1246. package/src/components/source/source_list_item/index.js +0 -1
  1247. package/src/components/source/source_modal/SourceModal.docs.mdx +0 -29
  1248. package/src/components/source/source_modal/SourceModal.jsx +0 -157
  1249. package/src/components/source/source_modal/SourceModal.module.scss +0 -45
  1250. package/src/components/source/source_modal/SourceModal.stories.jsx +0 -82
  1251. package/src/components/source/source_modal/SourceModal.test.jsx +0 -180
  1252. package/src/components/source/source_modal/index.js +0 -1
  1253. package/src/components/styles/display/_display.scss +0 -127
  1254. package/src/components/styles/display/display.docs.mdx +0 -8
  1255. package/src/components/styles/display/index.scss +0 -1
  1256. package/src/components/styles/flex/_flex.scss +0 -55
  1257. package/src/components/styles/flex/flex.docs.mdx +0 -8
  1258. package/src/components/styles/flex/index.scss +0 -1
  1259. package/src/components/styles/spacing/_spacing.scss +0 -107
  1260. package/src/components/styles/spacing/index.scss +0 -1
  1261. package/src/components/styles/spacing/spacing.docs.mdx +0 -8
  1262. package/src/components/styles/tabs/_tabs.scss +0 -159
  1263. package/src/components/styles/tabs/index.scss +0 -1
  1264. package/src/components/styles/tabs/tabs.docs.mdx +0 -8
  1265. package/src/components/styles/theme/_theme.scss +0 -51
  1266. package/src/components/styles/theme/index.scss +0 -1
  1267. package/src/components/styles/theme/theme.docs.mdx +0 -89
  1268. package/src/components/suggestion/suggestion_banner/SuggestionBanner.docs.mdx +0 -35
  1269. package/src/components/suggestion/suggestion_banner/SuggestionBanner.jsx +0 -86
  1270. package/src/components/suggestion/suggestion_banner/SuggestionBanner.module.scss +0 -93
  1271. package/src/components/suggestion/suggestion_banner/SuggestionBanner.stories.jsx +0 -128
  1272. package/src/components/suggestion/suggestion_banner/SuggestionBanner.test.jsx +0 -237
  1273. package/src/components/suggestion/suggestion_banner/index.js +0 -1
  1274. package/src/components/suggestion/suggestion_box/SuggestionBox.docs.mdx +0 -39
  1275. package/src/components/suggestion/suggestion_box/SuggestionBox.jsx +0 -112
  1276. package/src/components/suggestion/suggestion_box/SuggestionBox.module.scss +0 -55
  1277. package/src/components/suggestion/suggestion_box/SuggestionBox.stories.jsx +0 -147
  1278. package/src/components/suggestion/suggestion_box/SuggestionBox.test.jsx +0 -184
  1279. package/src/components/suggestion/suggestion_box/index.js +0 -1
  1280. package/src/components/suggestion/suggestion_input/SuggestionInput.docs.mdx +0 -19
  1281. package/src/components/suggestion/suggestion_input/SuggestionInput.jsx +0 -212
  1282. package/src/components/suggestion/suggestion_input/SuggestionInput.module.scss +0 -50
  1283. package/src/components/suggestion/suggestion_input/SuggestionInput.stories.jsx +0 -87
  1284. package/src/components/suggestion/suggestion_input/SuggestionInput.test.jsx +0 -77
  1285. package/src/components/suggestion/suggestion_input/index.js +0 -1
  1286. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.docs.mdx +0 -19
  1287. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.jsx +0 -40
  1288. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.module.scss +0 -67
  1289. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.stories.jsx +0 -57
  1290. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.test.jsx +0 -18
  1291. package/src/components/summary/argument_summary_box/index.js +0 -1
  1292. package/src/components/summary/keyword_box/KeywordBox.docs.mdx +0 -21
  1293. package/src/components/summary/keyword_box/KeywordBox.jsx +0 -43
  1294. package/src/components/summary/keyword_box/KeywordBox.module.scss +0 -54
  1295. package/src/components/summary/keyword_box/KeywordBox.stories.jsx +0 -49
  1296. package/src/components/summary/keyword_box/KeywordBox.test.jsx +0 -47
  1297. package/src/components/summary/keyword_box/index.js +0 -1
  1298. package/src/components/summary/summary/Summary.docs.mdx +0 -23
  1299. package/src/components/summary/summary/Summary.jsx +0 -93
  1300. package/src/components/summary/summary/Summary.module.scss +0 -26
  1301. package/src/components/summary/summary/Summary.stories.jsx +0 -95
  1302. package/src/components/summary/summary/Summary.test.jsx +0 -116
  1303. package/src/components/summary/summary/index.js +0 -1
  1304. package/src/components/summary/summary_box/SummaryBox.docs.mdx +0 -19
  1305. package/src/components/summary/summary_box/SummaryBox.jsx +0 -39
  1306. package/src/components/summary/summary_box/SummaryBox.module.scss +0 -56
  1307. package/src/components/summary/summary_box/SummaryBox.stories.jsx +0 -83
  1308. package/src/components/summary/summary_box/SummaryBox.test.jsx +0 -47
  1309. package/src/components/summary/summary_box/SummaryBoxComposition.module.scss +0 -3
  1310. package/src/components/summary/summary_box/index.js +0 -1
  1311. package/src/components/tag/tag/Tag.docs.mdx +0 -19
  1312. package/src/components/tag/tag/Tag.jsx +0 -35
  1313. package/src/components/tag/tag/Tag.module.scss +0 -34
  1314. package/src/components/tag/tag/Tag.stories.jsx +0 -70
  1315. package/src/components/tag/tag/Tag.test.jsx +0 -29
  1316. package/src/components/tag/tag/index.js +0 -1
  1317. package/src/components/text/expandable_text/ArrowIcon.jsx +0 -7
  1318. package/src/components/text/expandable_text/ExpandableText.docs.mdx +0 -42
  1319. package/src/components/text/expandable_text/ExpandableText.jsx +0 -81
  1320. package/src/components/text/expandable_text/ExpandableText.module.scss +0 -76
  1321. package/src/components/text/expandable_text/ExpandableText.stories.jsx +0 -63
  1322. package/src/components/text/expandable_text/ExpandableText.test.jsx +0 -23
  1323. package/src/components/text/expandable_text/index.js +0 -1
  1324. package/src/components/text/read_more/ReadMore.docs.mdx +0 -23
  1325. package/src/components/text/read_more/ReadMore.jsx +0 -104
  1326. package/src/components/text/read_more/ReadMore.module.scss +0 -51
  1327. package/src/components/text/read_more/ReadMore.stories.jsx +0 -141
  1328. package/src/components/text/read_more/ReadMore.test.jsx +0 -87
  1329. package/src/components/text/read_more/index.js +0 -1
  1330. package/src/components/tools/hash_scroll/HashScroll.docs.mdx +0 -27
  1331. package/src/components/tools/hash_scroll/HashScroll.jsx +0 -36
  1332. package/src/components/tools/hash_scroll/HashScroll.test.jsx +0 -66
  1333. package/src/components/tools/hash_scroll/index.js +0 -1
  1334. package/src/components/tools/scroll_to_top/ScrollToTop.docs.mdx +0 -28
  1335. package/src/components/tools/scroll_to_top/ScrollToTop.jsx +0 -22
  1336. package/src/components/tools/scroll_to_top/ScrollToTop.stories.jsx +0 -40
  1337. package/src/components/tools/scroll_to_top/ScrollToTop.test.jsx +0 -36
  1338. package/src/components/tools/scroll_to_top/index.js +0 -1
  1339. package/src/components/translation/translated_content/TranslatedContent.jsx +0 -24
  1340. package/src/components/translation/translated_content/TranslatedContent.test.jsx +0 -30
  1341. package/src/components/translation/translated_content/index.js +0 -3
  1342. package/src/components/translation/translated_content/useTranslatedContent.docs.mdx +0 -80
  1343. package/src/components/translation/translated_content/useTranslatedContent.jsx +0 -57
  1344. package/src/components/translation/translated_content/useTranslatedContent.test.jsx +0 -118
  1345. package/src/components/translation/translation_button/TranslationButton.docs.mdx +0 -18
  1346. package/src/components/translation/translation_button/TranslationButton.jsx +0 -46
  1347. package/src/components/translation/translation_button/TranslationButton.module.scss +0 -10
  1348. package/src/components/translation/translation_button/TranslationButton.stories.jsx +0 -30
  1349. package/src/components/translation/translation_button/TranslationButton.test.jsx +0 -35
  1350. package/src/components/translation/translation_button/index.js +0 -1
  1351. package/src/components/user/author_box/AuthorBox.docs.mdx +0 -35
  1352. package/src/components/user/author_box/AuthorBox.jsx +0 -128
  1353. package/src/components/user/author_box/AuthorBox.module.scss +0 -110
  1354. package/src/components/user/author_box/AuthorBox.stories.jsx +0 -193
  1355. package/src/components/user/author_box/AuthorBox.test.jsx +0 -171
  1356. package/src/components/user/author_box/index.js +0 -1
  1357. package/src/components/user/avatar/Avatar.docs.mdx +0 -31
  1358. package/src/components/user/avatar/Avatar.jsx +0 -63
  1359. package/src/components/user/avatar/Avatar.module.scss +0 -30
  1360. package/src/components/user/avatar/Avatar.stories.jsx +0 -79
  1361. package/src/components/user/avatar/Avatar.test.jsx +0 -114
  1362. package/src/components/user/avatar/DefaultAvatar.jsx +0 -13
  1363. package/src/components/user/avatar/index.js +0 -1
  1364. package/src/components/user/avatar_selector/AvatarSelector.docs.mdx +0 -25
  1365. package/src/components/user/avatar_selector/AvatarSelector.jsx +0 -65
  1366. package/src/components/user/avatar_selector/AvatarSelector.module.scss +0 -105
  1367. package/src/components/user/avatar_selector/AvatarSelector.stories.jsx +0 -46
  1368. package/src/components/user/avatar_selector/AvatarSelector.test.jsx +0 -98
  1369. package/src/components/user/avatar_selector/index.js +0 -1
  1370. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.docs.mdx +0 -22
  1371. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.jsx +0 -254
  1372. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.module.scss +0 -176
  1373. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.stories.jsx +0 -113
  1374. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.test.jsx +0 -213
  1375. package/src/components/user/update_user_info_modal/index.js +0 -2
  1376. package/src/components/user/update_user_info_modal/useUpdateUserInfo.jsx +0 -40
  1377. package/src/components/user/user_box/UserBox.docs.mdx +0 -21
  1378. package/src/components/user/user_box/UserBox.jsx +0 -59
  1379. package/src/components/user/user_box/UserBox.module.scss +0 -86
  1380. package/src/components/user/user_box/UserBox.stories.jsx +0 -82
  1381. package/src/components/user/user_box/UserBox.test.jsx +0 -95
  1382. package/src/components/user/user_box/index.js +0 -1
  1383. package/src/components/user/user_box_small/UserBoxSmall.docs.mdx +0 -20
  1384. package/src/components/user/user_box_small/UserBoxSmall.jsx +0 -36
  1385. package/src/components/user/user_box_small/UserBoxSmall.module.scss +0 -21
  1386. package/src/components/user/user_box_small/UserBoxSmall.stories.jsx +0 -38
  1387. package/src/components/user/user_box_small/UserBoxSmall.test.jsx +0 -49
  1388. package/src/components/user/user_box_small/index.js +0 -1
  1389. package/src/components/user_content/content_footer/ContentFooter.docs.mdx +0 -36
  1390. package/src/components/user_content/content_footer/ContentFooter.jsx +0 -234
  1391. package/src/components/user_content/content_footer/ContentFooter.module.scss +0 -79
  1392. package/src/components/user_content/content_footer/ContentFooter.stories.jsx +0 -438
  1393. package/src/components/user_content/content_footer/ContentFooter.test.jsx +0 -246
  1394. package/src/components/user_content/content_footer/index.js +0 -1
  1395. package/src/components/user_content/content_header/ContentHeader.docs.mdx +0 -27
  1396. package/src/components/user_content/content_header/ContentHeader.jsx +0 -131
  1397. package/src/components/user_content/content_header/ContentHeader.module.scss +0 -111
  1398. package/src/components/user_content/content_header/ContentHeader.stories.jsx +0 -221
  1399. package/src/components/user_content/content_header/ContentHeader.test.jsx +0 -98
  1400. package/src/components/user_content/content_header/index.js +0 -1
  1401. package/src/components/user_content/summary_content_box/SummaryContentBox.docs.mdx +0 -25
  1402. package/src/components/user_content/summary_content_box/SummaryContentBox.jsx +0 -89
  1403. package/src/components/user_content/summary_content_box/SummaryContentBox.module.scss +0 -65
  1404. package/src/components/user_content/summary_content_box/SummaryContentBox.stories.jsx +0 -130
  1405. package/src/components/user_content/summary_content_box/SummaryContentBox.test.jsx +0 -169
  1406. package/src/components/user_content/summary_content_box/index.js +0 -1
  1407. package/src/components/user_content/use_delete_content/index.js +0 -1
  1408. package/src/components/user_content/use_delete_content/useDeleteContent.docs.mdx +0 -34
  1409. package/src/components/user_content/use_delete_content/useDeleteContent.jsx +0 -55
  1410. package/src/components/user_content/use_delete_content/useDeleteContent.test.jsx +0 -78
  1411. package/src/components/user_content/use_report_content/ReportModal.docs.mdx +0 -54
  1412. package/src/components/user_content/use_report_content/ReportModal.jsx +0 -187
  1413. package/src/components/user_content/use_report_content/ReportModal.module.scss +0 -121
  1414. package/src/components/user_content/use_report_content/ReportModal.stories.jsx +0 -61
  1415. package/src/components/user_content/use_report_content/ReportModal.test.jsx +0 -51
  1416. package/src/components/user_content/use_report_content/index.js +0 -2
  1417. package/src/components/user_content/use_report_content/useReportContent.docs.mdx +0 -24
  1418. package/src/components/user_content/use_report_content/useReportContent.jsx +0 -32
  1419. package/src/components/user_content/use_report_content/useReportContent.test.jsx +0 -138
  1420. package/src/components/util/lang_emojis/index.js +0 -1
  1421. package/src/components/util/lang_emojis/langEmojis.docs.mdx +0 -10
  1422. package/src/components/util/lang_emojis/langEmojis.js +0 -72
  1423. package/src/components/util/lang_emojis/langEmojis.test.jsx +0 -63
  1424. package/src/components/util/location/Location.docs.mdx +0 -18
  1425. package/src/components/util/location/Location.js +0 -84
  1426. package/src/components/util/location/Location.test.jsx +0 -24
  1427. package/src/components/util/location/index.js +0 -1
  1428. package/src/components/util/unique_by/index.js +0 -1
  1429. package/src/components/util/unique_by/uniqueBy.docs.mdx +0 -24
  1430. package/src/components/util/unique_by/uniqueBy.js +0 -9
  1431. package/src/components/util/unique_by/uniqueBy.test.jsx +0 -29
  1432. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.docs.mdx +0 -24
  1433. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.jsx +0 -87
  1434. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.module.scss +0 -17
  1435. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.stories.jsx +0 -97
  1436. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.test.jsx +0 -182
  1437. package/src/components/vote/suggestion_vote_box/index.js +0 -1
  1438. package/src/components/vote/up_down_vote_box/UpDownVoteBox.docs.mdx +0 -24
  1439. package/src/components/vote/up_down_vote_box/UpDownVoteBox.jsx +0 -64
  1440. package/src/components/vote/up_down_vote_box/UpDownVoteBox.module.scss +0 -35
  1441. package/src/components/vote/up_down_vote_box/UpDownVoteBox.stories.jsx +0 -97
  1442. package/src/components/vote/up_down_vote_box/UpDownVoteBox.test.jsx +0 -173
  1443. package/src/components/vote/up_down_vote_box/index.js +0 -1
  1444. package/src/components/vote/use_vote/index.js +0 -1
  1445. package/src/components/vote/use_vote/useVote.docs.mdx +0 -42
  1446. package/src/components/vote/use_vote/useVote.jsx +0 -165
  1447. package/src/components/vote/use_vote/useVote.test.jsx +0 -294
  1448. package/src/components/vote/vote_box/VoteBox.docs.mdx +0 -45
  1449. package/src/components/vote/vote_box/VoteBox.jsx +0 -420
  1450. package/src/components/vote/vote_box/VoteBox.module.scss +0 -254
  1451. package/src/components/vote/vote_box/VoteBox.stories.jsx +0 -319
  1452. package/src/components/vote/vote_box/VoteBox.test.jsx +0 -256
  1453. package/src/components/vote/vote_box/index.js +0 -1
  1454. package/src/components/vote/vote_button/VoteButton.docs.mdx +0 -24
  1455. package/src/components/vote/vote_button/VoteButton.jsx +0 -59
  1456. package/src/components/vote/vote_button/VoteButton.module.scss +0 -35
  1457. package/src/components/vote/vote_button/VoteButton.stories.jsx +0 -97
  1458. package/src/components/vote/vote_button/VoteButton.test.jsx +0 -167
  1459. package/src/components/vote/vote_button/index.js +0 -1
  1460. package/src/components/vote/vote_provider/VoteProvider.docs.mdx +0 -68
  1461. package/src/components/vote/vote_provider/VoteProvider.jsx +0 -63
  1462. package/src/components/vote/vote_provider/VoteProvider.stories.jsx +0 -99
  1463. package/src/components/vote/vote_provider/VoteProvider.test.jsx +0 -137
  1464. package/src/components/vote/vote_provider/index.js +0 -2
  1465. package/src/index.js +0 -127
  1466. package/vitest.config.mjs +0 -52
  1467. package/vitest.setup.js +0 -4
@@ -0,0 +1,796 @@
1
+ import { $i as e, Ae as t, Ar as n, Bl as r, Bn as i, Co as a, De as o, Di as s, Dn as c, Je as ee, Kl as l, Ks as te, Li as u, Lr as d, Me as ne, Mi as re, Ni as ie, No as f, Or as ae, Pe as p, Pr as oe, Ss as se, St as ce, Wl as le, Xn as ue, ar as de, ki as fe, re as pe, se as me, wo as he, xo as ge, xr as _e, yr as m } from "../../../../lexical@0.38.2/node_modules/lexical/Lexical.prod.js";
2
+ import { Pt as ve, U as h, lt as ye, ut as be, xt as xe } from "../../../../@lexical_utils@0.38.2/node_modules/@lexical/utils/LexicalUtils.prod.js";
3
+ //#region node_modules/.pnpm/@lexical+extension@0.38.2/node_modules/@lexical/extension/LexicalExtension.prod.mjs
4
+ var Se = Symbol.for("preact-signals");
5
+ function g() {
6
+ if (b > 1) return void b--;
7
+ let e, t = !1;
8
+ for (; v !== void 0;) {
9
+ let n = v;
10
+ for (v = void 0, x++; n !== void 0;) {
11
+ let r = n.o;
12
+ if (n.o = void 0, n.f &= -3, !(8 & n.f) && E(n)) try {
13
+ n.c();
14
+ } catch (n) {
15
+ t ||= (e = n, !0);
16
+ }
17
+ n = r;
18
+ }
19
+ }
20
+ if (x = 0, b--, t) throw e;
21
+ }
22
+ function Ce(e) {
23
+ if (b > 0) return e();
24
+ b++;
25
+ try {
26
+ return e();
27
+ } finally {
28
+ g();
29
+ }
30
+ }
31
+ var _, v;
32
+ function y(e) {
33
+ let t = _;
34
+ _ = void 0;
35
+ try {
36
+ return e();
37
+ } finally {
38
+ _ = t;
39
+ }
40
+ }
41
+ var b = 0, x = 0, S = 0;
42
+ function C(e) {
43
+ if (_ === void 0) return;
44
+ let t = e.n;
45
+ return t === void 0 || t.t !== _ ? (t = {
46
+ i: 0,
47
+ S: e,
48
+ p: _.s,
49
+ n: void 0,
50
+ t: _,
51
+ e: void 0,
52
+ x: void 0,
53
+ r: t
54
+ }, _.s !== void 0 && (_.s.n = t), _.s = t, e.n = t, 32 & _.f && e.S(t), t) : t.i === -1 ? (t.i = 0, t.n !== void 0 && (t.n.p = t.p, t.p !== void 0 && (t.p.n = t.n), t.p = _.s, t.n = void 0, _.s.n = t, _.s = t), t) : void 0;
55
+ }
56
+ function w(e, t) {
57
+ this.v = e, this.i = 0, this.n = void 0, this.t = void 0, this.W = t?.watched, this.Z = t?.unwatched, this.name = t?.name;
58
+ }
59
+ function T(e, t) {
60
+ return new w(e, t);
61
+ }
62
+ function E(e) {
63
+ for (let t = e.s; t !== void 0; t = t.n) if (t.S.i !== t.i || !t.S.h() || t.S.i !== t.i) return !0;
64
+ return !1;
65
+ }
66
+ function D(e) {
67
+ for (let t = e.s; t !== void 0; t = t.n) {
68
+ let n = t.S.n;
69
+ if (n !== void 0 && (t.r = n), t.S.n = t, t.i = -1, t.n === void 0) {
70
+ e.s = t;
71
+ break;
72
+ }
73
+ }
74
+ }
75
+ function O(e) {
76
+ let t, n = e.s;
77
+ for (; n !== void 0;) {
78
+ let e = n.p;
79
+ n.i === -1 ? (n.S.U(n), e !== void 0 && (e.n = n.n), n.n !== void 0 && (n.n.p = e)) : t = n, n.S.n = n.r, n.r !== void 0 && (n.r = void 0), n = e;
80
+ }
81
+ e.s = t;
82
+ }
83
+ function k(e, t) {
84
+ w.call(this, void 0), this.x = e, this.s = void 0, this.g = S - 1, this.f = 4, this.W = t?.watched, this.Z = t?.unwatched, this.name = t?.name;
85
+ }
86
+ function we(e, t) {
87
+ return new k(e, t);
88
+ }
89
+ function A(e) {
90
+ let t = e.u;
91
+ if (e.u = void 0, typeof t == "function") {
92
+ b++;
93
+ let n = _;
94
+ _ = void 0;
95
+ try {
96
+ t();
97
+ } catch (t) {
98
+ throw e.f &= -2, e.f |= 8, j(e), t;
99
+ } finally {
100
+ _ = n, g();
101
+ }
102
+ }
103
+ }
104
+ function j(e) {
105
+ for (let t = e.s; t !== void 0; t = t.n) t.S.U(t);
106
+ e.x = void 0, e.s = void 0, A(e);
107
+ }
108
+ function Te(e) {
109
+ if (_ !== this) throw Error("Out-of-order effect");
110
+ O(this), _ = e, this.f &= -2, 8 & this.f && j(this), g();
111
+ }
112
+ function M(e, t) {
113
+ this.x = e, this.u = void 0, this.s = void 0, this.o = void 0, this.f = 32, this.name = t?.name;
114
+ }
115
+ function N(e, t) {
116
+ let n = new M(e, t);
117
+ try {
118
+ n.c();
119
+ } catch (e) {
120
+ throw n.d(), e;
121
+ }
122
+ let r = n.d.bind(n);
123
+ return r[Symbol.dispose] = r, r;
124
+ }
125
+ function P(e, t = {}) {
126
+ let n = {};
127
+ for (let r in e) {
128
+ let i = t[r];
129
+ n[r] = T(i === void 0 ? e[r] : i);
130
+ }
131
+ return n;
132
+ }
133
+ w.prototype.brand = Se, w.prototype.h = function() {
134
+ return !0;
135
+ }, w.prototype.S = function(e) {
136
+ let t = this.t;
137
+ t !== e && e.e === void 0 && (e.x = t, this.t = e, t === void 0 ? y(() => {
138
+ var e;
139
+ (e = this.W) == null || e.call(this);
140
+ }) : t.e = e);
141
+ }, w.prototype.U = function(e) {
142
+ if (this.t !== void 0) {
143
+ let t = e.e, n = e.x;
144
+ t !== void 0 && (t.x = n, e.e = void 0), n !== void 0 && (n.e = t, e.x = void 0), e === this.t && (this.t = n, n === void 0 && y(() => {
145
+ var e;
146
+ (e = this.Z) == null || e.call(this);
147
+ }));
148
+ }
149
+ }, w.prototype.subscribe = function(e) {
150
+ return N(() => {
151
+ let t = this.value, n = _;
152
+ _ = void 0;
153
+ try {
154
+ e(t);
155
+ } finally {
156
+ _ = n;
157
+ }
158
+ }, { name: "sub" });
159
+ }, w.prototype.valueOf = function() {
160
+ return this.value;
161
+ }, w.prototype.toString = function() {
162
+ return this.value + "";
163
+ }, w.prototype.toJSON = function() {
164
+ return this.value;
165
+ }, w.prototype.peek = function() {
166
+ let e = _;
167
+ _ = void 0;
168
+ try {
169
+ return this.value;
170
+ } finally {
171
+ _ = e;
172
+ }
173
+ }, Object.defineProperty(w.prototype, "value", {
174
+ get() {
175
+ let e = C(this);
176
+ return e !== void 0 && (e.i = this.i), this.v;
177
+ },
178
+ set(e) {
179
+ if (e !== this.v) {
180
+ if (x > 100) throw Error("Cycle detected");
181
+ this.v = e, this.i++, S++, b++;
182
+ try {
183
+ for (let e = this.t; e !== void 0; e = e.x) e.t.N();
184
+ } finally {
185
+ g();
186
+ }
187
+ }
188
+ }
189
+ }), k.prototype = new w(), k.prototype.h = function() {
190
+ if (this.f &= -3, 1 & this.f) return !1;
191
+ if ((36 & this.f) == 32 || (this.f &= -5, this.g === S)) return !0;
192
+ if (this.g = S, this.f |= 1, this.i > 0 && !E(this)) return this.f &= -2, !0;
193
+ let e = _;
194
+ try {
195
+ D(this), _ = this;
196
+ let e = this.x();
197
+ (16 & this.f || this.v !== e || this.i === 0) && (this.v = e, this.f &= -17, this.i++);
198
+ } catch (e) {
199
+ this.v = e, this.f |= 16, this.i++;
200
+ }
201
+ return _ = e, O(this), this.f &= -2, !0;
202
+ }, k.prototype.S = function(e) {
203
+ if (this.t === void 0) {
204
+ this.f |= 36;
205
+ for (let e = this.s; e !== void 0; e = e.n) e.S.S(e);
206
+ }
207
+ w.prototype.S.call(this, e);
208
+ }, k.prototype.U = function(e) {
209
+ if (this.t !== void 0 && (w.prototype.U.call(this, e), this.t === void 0)) {
210
+ this.f &= -33;
211
+ for (let e = this.s; e !== void 0; e = e.n) e.S.U(e);
212
+ }
213
+ }, k.prototype.N = function() {
214
+ if (!(2 & this.f)) {
215
+ this.f |= 6;
216
+ for (let e = this.t; e !== void 0; e = e.x) e.t.N();
217
+ }
218
+ }, Object.defineProperty(k.prototype, "value", { get() {
219
+ if (1 & this.f) throw Error("Cycle detected");
220
+ let e = C(this);
221
+ if (this.h(), e !== void 0 && (e.i = this.i), 16 & this.f) throw this.v;
222
+ return this.v;
223
+ } }), M.prototype.c = function() {
224
+ let e = this.S();
225
+ try {
226
+ if (8 & this.f || this.x === void 0) return;
227
+ let e = this.x();
228
+ typeof e == "function" && (this.u = e);
229
+ } finally {
230
+ e();
231
+ }
232
+ }, M.prototype.S = function() {
233
+ if (1 & this.f) throw Error("Cycle detected");
234
+ this.f |= 1, this.f &= -9, A(this), D(this), b++;
235
+ let e = _;
236
+ return _ = this, Te.bind(this, e);
237
+ }, M.prototype.N = function() {
238
+ 2 & this.f || (this.f |= 2, this.o = v, v = this);
239
+ }, M.prototype.d = function() {
240
+ this.f |= 8, 1 & this.f || j(this);
241
+ }, M.prototype.dispose = function() {
242
+ this.d();
243
+ }, l({
244
+ build: (e, t, n) => P(t),
245
+ config: r({
246
+ defaultSelection: "rootEnd",
247
+ disabled: !1
248
+ }),
249
+ name: "@lexical/extension/AutoFocus",
250
+ register(e, t, n) {
251
+ let r = n.getOutput();
252
+ return N(() => r.disabled.value ? void 0 : e.registerRootListener((t) => {
253
+ e.focus(() => {
254
+ let e = document.activeElement;
255
+ t === null || e !== null && t.contains(e) || t.focus({ preventScroll: !0 });
256
+ }, { defaultSelection: r.defaultSelection.peek() });
257
+ }));
258
+ }
259
+ });
260
+ function F() {
261
+ let e = f(), t = d(), n = u();
262
+ e.clear(), e.append(n), t !== null && n.select(), m(t) && (t.format = 0);
263
+ }
264
+ function Ee(e, t = F) {
265
+ return e.registerCommand(ee, (n) => (e.update(t), !0), 0);
266
+ }
267
+ l({
268
+ build: (e, t, n) => P(t),
269
+ config: r({ $onClear: F }),
270
+ name: "@lexical/extension/ClearEditor",
271
+ register(e, t, n) {
272
+ let { $onClear: r } = n.getOutput();
273
+ return N(() => Ee(e, r.value));
274
+ }
275
+ });
276
+ function De(e) {
277
+ return (typeof e.nodes == "function" ? e.nodes() : e.nodes) || [];
278
+ }
279
+ function I(e, t) {
280
+ let n;
281
+ return T(e(), {
282
+ unwatched() {
283
+ n &&= (n(), void 0);
284
+ },
285
+ watched() {
286
+ this.value = e(), n = t(this);
287
+ }
288
+ });
289
+ }
290
+ var L = l({
291
+ build: (e) => I(() => e.getEditorState(), (t) => e.registerUpdateListener((e) => {
292
+ t.value = e.editorState;
293
+ })),
294
+ name: "@lexical/extension/EditorState"
295
+ });
296
+ function R(e, ...t) {
297
+ let n = new URL("https://lexical.dev/docs/error"), r = new URLSearchParams();
298
+ r.append("code", e);
299
+ for (let e of t) r.append("v", e);
300
+ throw n.search = r.toString(), Error(`Minified Lexical error #${e}; visit ${n.toString()} for the full message or use the non-minified dev environment for full errors and additional helpful warnings.`);
301
+ }
302
+ function z(e, t) {
303
+ if (e && t && !Array.isArray(t) && typeof e == "object" && typeof t == "object") {
304
+ let n = e, r = t;
305
+ for (let e in r) n[e] = z(n[e], r[e]);
306
+ return e;
307
+ }
308
+ return t;
309
+ }
310
+ var B = 0, V = 1, H = 2, U = 3, W = 4, G = 5, K = 6, q = 7;
311
+ function J(e) {
312
+ return e.id === B;
313
+ }
314
+ function Oe(e) {
315
+ return e.id === H;
316
+ }
317
+ function ke(e) {
318
+ return function(e) {
319
+ return e.id === V;
320
+ }(e) || R(305, String(e.id), String(V)), Object.assign(e, { id: H });
321
+ }
322
+ var Ae = /* @__PURE__ */ new Set(), je = class {
323
+ builder;
324
+ configs;
325
+ _dependency;
326
+ _peerNameSet;
327
+ extension;
328
+ state;
329
+ _signal;
330
+ constructor(e, t) {
331
+ this.builder = e, this.extension = t, this.configs = /* @__PURE__ */ new Set(), this.state = { id: B };
332
+ }
333
+ mergeConfigs() {
334
+ let e = this.extension.config || {}, t = this.extension.mergeConfig ? this.extension.mergeConfig.bind(this.extension) : le;
335
+ for (let n of this.configs) e = t(e, n);
336
+ return e;
337
+ }
338
+ init(e) {
339
+ let t = this.state;
340
+ Oe(t) || R(306, String(t.id));
341
+ let n = {
342
+ getDependency: this.getInitDependency.bind(this),
343
+ getDirectDependentNames: this.getDirectDependentNames.bind(this),
344
+ getPeer: this.getInitPeer.bind(this),
345
+ getPeerNameSet: this.getPeerNameSet.bind(this)
346
+ }, r = {
347
+ ...n,
348
+ getDependency: this.getDependency.bind(this),
349
+ getInitResult: this.getInitResult.bind(this),
350
+ getPeer: this.getPeer.bind(this)
351
+ }, i = function(e, t, n) {
352
+ return Object.assign(e, {
353
+ config: t,
354
+ id: U,
355
+ registerState: n
356
+ });
357
+ }(t, this.mergeConfigs(), n), a;
358
+ this.state = i, this.extension.init && (a = this.extension.init(e, i.config, n)), this.state = function(e, t, n) {
359
+ return Object.assign(e, {
360
+ id: W,
361
+ initResult: t,
362
+ registerState: n
363
+ });
364
+ }(i, a, r);
365
+ }
366
+ build(e) {
367
+ let t = this.state, n;
368
+ t.id !== W && R(307, String(t.id), String(G)), this.extension.build && (n = this.extension.build(e, t.config, t.registerState));
369
+ let r = {
370
+ ...t.registerState,
371
+ getOutput: () => n,
372
+ getSignal: this.getSignal.bind(this)
373
+ };
374
+ this.state = function(e, t, n) {
375
+ return Object.assign(e, {
376
+ id: G,
377
+ output: t,
378
+ registerState: n
379
+ });
380
+ }(t, n, r);
381
+ }
382
+ register(e, t) {
383
+ this._signal = t;
384
+ let n = this.state;
385
+ n.id !== G && R(308, String(n.id), String(G));
386
+ let r = this.extension.register && this.extension.register(e, n.config, n.registerState);
387
+ return this.state = function(e) {
388
+ return Object.assign(e, { id: K });
389
+ }(n), () => {
390
+ let e = this.state;
391
+ e.id !== q && R(309, String(n.id), String(q)), this.state = function(e) {
392
+ return Object.assign(e, { id: G });
393
+ }(e), r && r();
394
+ };
395
+ }
396
+ afterRegistration(e) {
397
+ let t = this.state, n;
398
+ return t.id !== K && R(310, String(t.id), String(K)), this.extension.afterRegistration && (n = this.extension.afterRegistration(e, t.config, t.registerState)), this.state = function(e) {
399
+ return Object.assign(e, { id: q });
400
+ }(t), n;
401
+ }
402
+ getSignal() {
403
+ return this._signal === void 0 && R(311), this._signal;
404
+ }
405
+ getInitResult() {
406
+ this.extension.init === void 0 && R(312, this.extension.name);
407
+ let e = this.state;
408
+ return function(e) {
409
+ return e.id >= W;
410
+ }(e) || R(313, String(e.id), String(W)), e.initResult;
411
+ }
412
+ getInitPeer(e) {
413
+ let t = this.builder.extensionNameMap.get(e);
414
+ return t ? t.getExtensionInitDependency() : void 0;
415
+ }
416
+ getExtensionInitDependency() {
417
+ let e = this.state;
418
+ return function(e) {
419
+ return e.id >= U;
420
+ }(e) || R(314, String(e.id), String(U)), { config: e.config };
421
+ }
422
+ getPeer(e) {
423
+ let t = this.builder.extensionNameMap.get(e);
424
+ return t ? t.getExtensionDependency() : void 0;
425
+ }
426
+ getInitDependency(e) {
427
+ let t = this.builder.getExtensionRep(e);
428
+ return t === void 0 && R(315, this.extension.name, e.name), t.getExtensionInitDependency();
429
+ }
430
+ getDependency(e) {
431
+ let t = this.builder.getExtensionRep(e);
432
+ return t === void 0 && R(315, this.extension.name, e.name), t.getExtensionDependency();
433
+ }
434
+ getState() {
435
+ let e = this.state;
436
+ return function(e) {
437
+ return e.id >= q;
438
+ }(e) || R(316, String(e.id), String(q)), e;
439
+ }
440
+ getDirectDependentNames() {
441
+ return this.builder.incomingEdges.get(this.extension.name) || Ae;
442
+ }
443
+ getPeerNameSet() {
444
+ let e = this._peerNameSet;
445
+ return e || (e = new Set((this.extension.peerDependencies || []).map(([e]) => e)), this._peerNameSet = e), e;
446
+ }
447
+ getExtensionDependency() {
448
+ if (!this._dependency) {
449
+ let e = this.state;
450
+ (function(e) {
451
+ return e.id >= G;
452
+ })(e) || R(317, this.extension.name), this._dependency = {
453
+ config: e.config,
454
+ init: e.initResult,
455
+ output: e.output
456
+ };
457
+ }
458
+ return this._dependency;
459
+ }
460
+ }, Me = { tag: c };
461
+ function Ne() {
462
+ let e = f();
463
+ e.isEmpty() && e.append(u());
464
+ }
465
+ var Pe = l({
466
+ config: r({
467
+ setOptions: Me,
468
+ updateOptions: Me
469
+ }),
470
+ init: ({ $initialEditorState: e = Ne }) => ({
471
+ $initialEditorState: e,
472
+ initialized: !1
473
+ }),
474
+ afterRegistration(e, { updateOptions: t, setOptions: n }, r) {
475
+ let i = r.getInitResult();
476
+ if (!i.initialized) {
477
+ i.initialized = !0;
478
+ let { $initialEditorState: r } = i;
479
+ if (re(r)) e.setEditorState(r, n);
480
+ else if (typeof r == "function") e.update(() => {
481
+ r(e);
482
+ }, t);
483
+ else if (r && (typeof r == "string" || typeof r == "object")) {
484
+ let t = e.parseEditorState(r);
485
+ e.setEditorState(t, n);
486
+ }
487
+ }
488
+ return () => {};
489
+ },
490
+ name: "@lexical/extension/InitialState",
491
+ nodes: [
492
+ ie,
493
+ ue,
494
+ i,
495
+ de,
496
+ s
497
+ ]
498
+ }), Y = Symbol.for("@lexical/extension/LexicalBuilder");
499
+ function Fe() {}
500
+ function Ie(e) {
501
+ throw e;
502
+ }
503
+ function X(e) {
504
+ return Array.isArray(e) ? e : [e];
505
+ }
506
+ var Z = "0.38.2+prod.esm", Le = class t {
507
+ roots;
508
+ extensionNameMap;
509
+ outgoingConfigEdges;
510
+ incomingEdges;
511
+ conflicts;
512
+ _sortedExtensionReps;
513
+ PACKAGE_VERSION;
514
+ constructor(e) {
515
+ this.outgoingConfigEdges = /* @__PURE__ */ new Map(), this.incomingEdges = /* @__PURE__ */ new Map(), this.extensionNameMap = /* @__PURE__ */ new Map(), this.conflicts = /* @__PURE__ */ new Map(), this.PACKAGE_VERSION = Z, this.roots = e;
516
+ for (let t of e) this.addExtension(t);
517
+ }
518
+ static fromExtensions(e) {
519
+ let n = [X(Pe)];
520
+ for (let t of e) n.push(X(t));
521
+ return new t(n);
522
+ }
523
+ static maybeFromEditor(e) {
524
+ let n = e[Y];
525
+ return n && (n.PACKAGE_VERSION !== Z && R(292, n.PACKAGE_VERSION, Z), n instanceof t || R(293)), n;
526
+ }
527
+ static fromEditor(e) {
528
+ let n = t.maybeFromEditor(e);
529
+ return n === void 0 && R(294), n;
530
+ }
531
+ constructEditor() {
532
+ let { $initialEditorState: t, onError: n, ...r } = this.buildCreateEditorArgs(), i = Object.assign(e({
533
+ ...r,
534
+ ...n ? { onError: (e) => {
535
+ n(e, i);
536
+ } } : {}
537
+ }), { [Y]: this });
538
+ for (let e of this.sortedExtensionReps()) e.build(i);
539
+ return i;
540
+ }
541
+ buildEditor() {
542
+ let e = Fe;
543
+ function t() {
544
+ try {
545
+ e();
546
+ } finally {
547
+ e = Fe;
548
+ }
549
+ }
550
+ let n = Object.assign(this.constructEditor(), {
551
+ dispose: t,
552
+ [Symbol.dispose]: t
553
+ });
554
+ return e = h(this.registerEditor(n), () => n.setRootElement(null)), n;
555
+ }
556
+ hasExtensionByName(e) {
557
+ return this.extensionNameMap.has(e);
558
+ }
559
+ getExtensionRep(e) {
560
+ let t = this.extensionNameMap.get(e.name);
561
+ if (t) return t.extension !== e && R(295, e.name), t;
562
+ }
563
+ addEdge(e, t, n) {
564
+ let r = this.outgoingConfigEdges.get(e);
565
+ r ? r.set(t, n) : this.outgoingConfigEdges.set(e, new Map([[t, n]]));
566
+ let i = this.incomingEdges.get(t);
567
+ i ? i.add(e) : this.incomingEdges.set(t, new Set([e]));
568
+ }
569
+ addExtension(e) {
570
+ this._sortedExtensionReps !== void 0 && R(296);
571
+ let [t] = X(e);
572
+ typeof t.name != "string" && R(297, typeof t.name);
573
+ let n = this.extensionNameMap.get(t.name);
574
+ if (n !== void 0 && n.extension !== t && R(298, t.name), !n) {
575
+ n = new je(this, t), this.extensionNameMap.set(t.name, n);
576
+ let e = this.conflicts.get(t.name);
577
+ typeof e == "string" && R(299, t.name, e);
578
+ for (let e of t.conflictsWith || []) this.extensionNameMap.has(e) && R(299, t.name, e), this.conflicts.set(e, t.name);
579
+ for (let e of t.dependencies || []) {
580
+ let n = X(e);
581
+ this.addEdge(t.name, n[0].name, n.slice(1)), this.addExtension(n);
582
+ }
583
+ for (let [e, n] of t.peerDependencies || []) this.addEdge(t.name, e, n ? [n] : []);
584
+ }
585
+ }
586
+ sortedExtensionReps() {
587
+ if (this._sortedExtensionReps) return this._sortedExtensionReps;
588
+ let e = [], t = (n, r) => {
589
+ let i = n.state;
590
+ if (Oe(i)) return;
591
+ let a = n.extension.name;
592
+ var o;
593
+ J(i) || R(300, a, r || "[unknown]"), J(o = i) || R(304, String(o.id), String(B)), i = Object.assign(o, { id: V }), n.state = i;
594
+ let s = this.outgoingConfigEdges.get(a);
595
+ if (s) for (let e of s.keys()) {
596
+ let n = this.extensionNameMap.get(e);
597
+ n && t(n, a);
598
+ }
599
+ i = ke(i), n.state = i, e.push(n);
600
+ };
601
+ for (let e of this.extensionNameMap.values()) J(e.state) && t(e);
602
+ for (let t of e) for (let [e, n] of this.outgoingConfigEdges.get(t.extension.name) || []) if (n.length > 0) {
603
+ let t = this.extensionNameMap.get(e);
604
+ if (t) for (let e of n) t.configs.add(e);
605
+ }
606
+ for (let [e, ...t] of this.roots) if (t.length > 0) {
607
+ let n = this.extensionNameMap.get(e.name);
608
+ n === void 0 && R(301, e.name);
609
+ for (let e of t) n.configs.add(e);
610
+ }
611
+ return this._sortedExtensionReps = e, this._sortedExtensionReps;
612
+ }
613
+ registerEditor(e) {
614
+ let t = this.sortedExtensionReps(), n = new AbortController(), r = [() => n.abort()], i = n.signal;
615
+ for (let n of t) {
616
+ let t = n.register(e, i);
617
+ t && r.push(t);
618
+ }
619
+ for (let n of t) {
620
+ let t = n.afterRegistration(e);
621
+ t && r.push(t);
622
+ }
623
+ return h(...r);
624
+ }
625
+ buildCreateEditorArgs() {
626
+ let e = {}, t = /* @__PURE__ */ new Set(), n = /* @__PURE__ */ new Map(), r = /* @__PURE__ */ new Map(), i = {}, a = {}, o = this.sortedExtensionReps();
627
+ for (let s of o) {
628
+ let { extension: o } = s;
629
+ if (o.onError !== void 0 && (e.onError = o.onError), o.disableEvents !== void 0 && (e.disableEvents = o.disableEvents), o.parentEditor !== void 0 && (e.parentEditor = o.parentEditor), o.editable !== void 0 && (e.editable = o.editable), o.namespace !== void 0 && (e.namespace = o.namespace), o.$initialEditorState !== void 0 && (e.$initialEditorState = o.$initialEditorState), o.nodes) for (let e of De(o)) {
630
+ if (typeof e != "function") {
631
+ let t = n.get(e.replace);
632
+ t && R(302, o.name, e.replace.name, t.extension.name), n.set(e.replace, s);
633
+ }
634
+ t.add(e);
635
+ }
636
+ if (o.html) {
637
+ if (o.html.export) for (let [e, t] of o.html.export.entries()) r.set(e, t);
638
+ o.html.import && Object.assign(i, o.html.import);
639
+ }
640
+ o.theme && z(a, o.theme);
641
+ }
642
+ Object.keys(a).length > 0 && (e.theme = a), t.size && (e.nodes = [...t]);
643
+ let s = Object.keys(i).length > 0, c = r.size > 0;
644
+ (s || c) && (e.html = {}, s && (e.html.import = i), c && (e.html.export = r));
645
+ for (let t of o) t.init(e);
646
+ return e.onError ||= Ie, e;
647
+ }
648
+ };
649
+ function Re(e, t) {
650
+ let n = Le.fromEditor(e).extensionNameMap.get(t);
651
+ return n ? n.getExtensionDependency() : void 0;
652
+ }
653
+ var ze = /* @__PURE__ */ new Set(), Be = l({
654
+ build(e, t, n) {
655
+ let r = n.getDependency(L).output, i = T({ watchedNodeKeys: /* @__PURE__ */ new Map() }), a = I(() => {}, () => N(() => {
656
+ let e = a.peek(), { watchedNodeKeys: t } = i.value, n, o = !1;
657
+ r.value.read(() => {
658
+ if (d()) for (let [r, i] of t.entries()) {
659
+ if (i.size === 0) {
660
+ t.delete(r);
661
+ continue;
662
+ }
663
+ let a = ge(r), s = a && a.isSelected() || !1;
664
+ o ||= s !== (!!e && e.has(r)), s && (n ||= /* @__PURE__ */ new Set(), n.add(r));
665
+ }
666
+ }), !o && n && e && n.size === e.size || (a.value = n);
667
+ }));
668
+ return { watchNodeKey: function(e) {
669
+ let t = we(() => (a.value || ze).has(e)), { watchedNodeKeys: n } = i.peek(), r = n.get(e), o = r !== void 0;
670
+ return r ||= /* @__PURE__ */ new Set(), r.add(t), o || (n.set(e, r), i.value = { watchedNodeKeys: n }), t;
671
+ } };
672
+ },
673
+ dependencies: [L],
674
+ name: "@lexical/extension/NodeSelection"
675
+ });
676
+ pe("INSERT_HORIZONTAL_RULE_COMMAND");
677
+ var Q = class e extends fe {
678
+ static getType() {
679
+ return "horizontalrule";
680
+ }
681
+ static clone(t) {
682
+ return new e(t.__key);
683
+ }
684
+ static importJSON(e) {
685
+ return $().updateFromJSON(e);
686
+ }
687
+ static importDOM() {
688
+ return { hr: () => ({
689
+ conversion: Ve,
690
+ priority: 0
691
+ }) };
692
+ }
693
+ exportDOM() {
694
+ return { element: document.createElement("hr") };
695
+ }
696
+ createDOM(e) {
697
+ let t = document.createElement("hr");
698
+ return ye(t, e.theme.hr), t;
699
+ }
700
+ getTextContent() {
701
+ return "\n";
702
+ }
703
+ isInline() {
704
+ return !1;
705
+ }
706
+ updateDOM() {
707
+ return !1;
708
+ }
709
+ };
710
+ function Ve() {
711
+ return { node: $() };
712
+ }
713
+ function $() {
714
+ return te(Q);
715
+ }
716
+ function He(e) {
717
+ return e instanceof Q;
718
+ }
719
+ l({
720
+ dependencies: [L, Be],
721
+ name: "@lexical/extension/HorizontalRule",
722
+ nodes: [Q],
723
+ register(e, t, n) {
724
+ let { watchNodeKey: r } = n.getDependency(Be).output, i = T({ nodeSelections: /* @__PURE__ */ new Map() }), o = e._config.theme.hrSelected ?? "selected";
725
+ return h(e.registerCommand(me, (e) => {
726
+ if (se(e.target)) {
727
+ let t = a(e.target);
728
+ if (He(t)) return function(e, t = !1) {
729
+ let n = d(), r = e.isSelected(), i = e.getKey(), a;
730
+ t && _e(n) ? a = n : (a = oe(), he(a)), r ? a.delete(i) : a.add(i);
731
+ }(t, e.shiftKey), !0;
732
+ }
733
+ return !1;
734
+ }, 1), e.registerMutationListener(Q, (t, n) => {
735
+ Ce(() => {
736
+ let n = !1, { nodeSelections: a } = i.peek();
737
+ for (let [i, o] of t.entries()) if (o === "destroyed") a.delete(i), n = !0;
738
+ else {
739
+ let t = a.get(i), o = e.getElementByKey(i);
740
+ t ? t.domNode.value = o : (n = !0, a.set(i, {
741
+ domNode: T(o),
742
+ selectedSignal: r(i)
743
+ }));
744
+ }
745
+ n && (i.value = { nodeSelections: a });
746
+ });
747
+ }), N(() => {
748
+ let e = [];
749
+ for (let { domNode: t, selectedSignal: n } of i.value.nodeSelections.values()) e.push(N(() => {
750
+ let e = t.value;
751
+ e && (n.value ? ye(e, o) : be(e, o));
752
+ }));
753
+ return h(...e);
754
+ }));
755
+ }
756
+ });
757
+ function Ue(e, r) {
758
+ return h(e.registerCommand(ne, (r) => {
759
+ let i = d();
760
+ if (!m(i)) return !1;
761
+ r.preventDefault();
762
+ let a = function(e) {
763
+ if (ve(e.getNodes(), (e) => ae(e) && e.canIndent() ? e : null).length > 0) return !0;
764
+ let t = e.anchor, r = e.focus, i = r.isBefore(t) ? r : t, a = xe(i.getNode());
765
+ if (a.canIndent()) {
766
+ let e = a.getKey(), t = n();
767
+ if (t.anchor.set(e, 0, "element"), t.focus.set(e, 0, "element"), t = ce(t), t.anchor.is(i)) return !0;
768
+ }
769
+ return !1;
770
+ }(i) ? r.shiftKey ? o : p : t;
771
+ return e.dispatchCommand(a, void 0);
772
+ }, 0), e.registerCommand(p, () => {
773
+ let e = typeof r == "number" ? r : r ? r.peek() : null;
774
+ if (e == null) return !1;
775
+ let t = d();
776
+ if (!m(t)) return !1;
777
+ let n = t.getNodes().map((e) => xe(e).getIndent());
778
+ return Math.max(...n) + 1 >= e;
779
+ }, 4));
780
+ }
781
+ l({
782
+ build: (e, t, n) => P(t),
783
+ config: r({
784
+ disabled: !1,
785
+ maxIndent: null
786
+ }),
787
+ name: "@lexical/extension/TabIndentation",
788
+ register(e, t, n) {
789
+ let { disabled: r, maxIndent: i } = n.getOutput();
790
+ return N(() => {
791
+ if (!r.value) return Ue(e, i);
792
+ });
793
+ }
794
+ });
795
+ //#endregion
796
+ export { Le as Bt, Ce as F, Re as Gt, P as at, N as dt };