@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,549 @@
1
+ //#region node_modules/.pnpm/dompurify@3.3.3/node_modules/dompurify/dist/purify.es.mjs
2
+ var { entries: e, setPrototypeOf: t, isFrozen: n, getPrototypeOf: r, getOwnPropertyDescriptor: i } = Object, { freeze: a, seal: o, create: s } = Object, { apply: c, construct: l } = typeof Reflect < "u" && Reflect;
3
+ a ||= function(e) {
4
+ return e;
5
+ }, o ||= function(e) {
6
+ return e;
7
+ }, c ||= function(e, t) {
8
+ var n = [...arguments].slice(2);
9
+ return e.apply(t, n);
10
+ }, l ||= function(e) {
11
+ return new e(...[...arguments].slice(1));
12
+ };
13
+ var u = v(Array.prototype.forEach), d = v(Array.prototype.lastIndexOf), ee = v(Array.prototype.pop), f = v(Array.prototype.push), te = v(Array.prototype.splice), p = v(String.prototype.toLowerCase), ne = v(String.prototype.toString), re = v(String.prototype.match), m = v(String.prototype.replace), ie = v(String.prototype.indexOf), ae = v(String.prototype.trim), h = v(Object.prototype.hasOwnProperty), g = v(RegExp.prototype.test), _ = oe(TypeError);
14
+ function v(e) {
15
+ return function(t) {
16
+ t instanceof RegExp && (t.lastIndex = 0);
17
+ var n = [...arguments].slice(1);
18
+ return c(e, t, n);
19
+ };
20
+ }
21
+ function oe(e) {
22
+ return function() {
23
+ return l(e, [...arguments]);
24
+ };
25
+ }
26
+ function y(e, r) {
27
+ let i = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : p;
28
+ t && t(e, null);
29
+ let a = r.length;
30
+ for (; a--;) {
31
+ let t = r[a];
32
+ if (typeof t == "string") {
33
+ let e = i(t);
34
+ e !== t && (n(r) || (r[a] = e), t = e);
35
+ }
36
+ e[t] = !0;
37
+ }
38
+ return e;
39
+ }
40
+ function b(e) {
41
+ for (let t = 0; t < e.length; t++) h(e, t) || (e[t] = null);
42
+ return e;
43
+ }
44
+ function x(t) {
45
+ let n = s(null);
46
+ for (let [r, i] of e(t)) h(t, r) && (Array.isArray(i) ? n[r] = b(i) : i && typeof i == "object" && i.constructor === Object ? n[r] = x(i) : n[r] = i);
47
+ return n;
48
+ }
49
+ function S(e, t) {
50
+ for (; e !== null;) {
51
+ let n = i(e, t);
52
+ if (n) {
53
+ if (n.get) return v(n.get);
54
+ if (typeof n.value == "function") return v(n.value);
55
+ }
56
+ e = r(e);
57
+ }
58
+ function n() {
59
+ return null;
60
+ }
61
+ return n;
62
+ }
63
+ var se = a(/* @__PURE__ */ "a.abbr.acronym.address.area.article.aside.audio.b.bdi.bdo.big.blink.blockquote.body.br.button.canvas.caption.center.cite.code.col.colgroup.content.data.datalist.dd.decorator.del.details.dfn.dialog.dir.div.dl.dt.element.em.fieldset.figcaption.figure.font.footer.form.h1.h2.h3.h4.h5.h6.head.header.hgroup.hr.html.i.img.input.ins.kbd.label.legend.li.main.map.mark.marquee.menu.menuitem.meter.nav.nobr.ol.optgroup.option.output.p.picture.pre.progress.q.rp.rt.ruby.s.samp.search.section.select.shadow.slot.small.source.spacer.span.strike.strong.style.sub.summary.sup.table.tbody.td.template.textarea.tfoot.th.thead.time.tr.track.tt.u.ul.var.video.wbr".split(".")), ce = a(/* @__PURE__ */ "svg.a.altglyph.altglyphdef.altglyphitem.animatecolor.animatemotion.animatetransform.circle.clippath.defs.desc.ellipse.enterkeyhint.exportparts.filter.font.g.glyph.glyphref.hkern.image.inputmode.line.lineargradient.marker.mask.metadata.mpath.part.path.pattern.polygon.polyline.radialgradient.rect.stop.style.switch.symbol.text.textpath.title.tref.tspan.view.vkern".split(".")), le = a([
64
+ "feBlend",
65
+ "feColorMatrix",
66
+ "feComponentTransfer",
67
+ "feComposite",
68
+ "feConvolveMatrix",
69
+ "feDiffuseLighting",
70
+ "feDisplacementMap",
71
+ "feDistantLight",
72
+ "feDropShadow",
73
+ "feFlood",
74
+ "feFuncA",
75
+ "feFuncB",
76
+ "feFuncG",
77
+ "feFuncR",
78
+ "feGaussianBlur",
79
+ "feImage",
80
+ "feMerge",
81
+ "feMergeNode",
82
+ "feMorphology",
83
+ "feOffset",
84
+ "fePointLight",
85
+ "feSpecularLighting",
86
+ "feSpotLight",
87
+ "feTile",
88
+ "feTurbulence"
89
+ ]), ue = a([
90
+ "animate",
91
+ "color-profile",
92
+ "cursor",
93
+ "discard",
94
+ "font-face",
95
+ "font-face-format",
96
+ "font-face-name",
97
+ "font-face-src",
98
+ "font-face-uri",
99
+ "foreignobject",
100
+ "hatch",
101
+ "hatchpath",
102
+ "mesh",
103
+ "meshgradient",
104
+ "meshpatch",
105
+ "meshrow",
106
+ "missing-glyph",
107
+ "script",
108
+ "set",
109
+ "solidcolor",
110
+ "unknown",
111
+ "use"
112
+ ]), de = a(/* @__PURE__ */ "math.menclose.merror.mfenced.mfrac.mglyph.mi.mlabeledtr.mmultiscripts.mn.mo.mover.mpadded.mphantom.mroot.mrow.ms.mspace.msqrt.mstyle.msub.msup.msubsup.mtable.mtd.mtext.mtr.munder.munderover.mprescripts".split(".")), fe = a([
113
+ "maction",
114
+ "maligngroup",
115
+ "malignmark",
116
+ "mlongdiv",
117
+ "mscarries",
118
+ "mscarry",
119
+ "msgroup",
120
+ "mstack",
121
+ "msline",
122
+ "msrow",
123
+ "semantics",
124
+ "annotation",
125
+ "annotation-xml",
126
+ "mprescripts",
127
+ "none"
128
+ ]), pe = a(["#text"]), me = a(/* @__PURE__ */ "accept.action.align.alt.autocapitalize.autocomplete.autopictureinpicture.autoplay.background.bgcolor.border.capture.cellpadding.cellspacing.checked.cite.class.clear.color.cols.colspan.controls.controlslist.coords.crossorigin.datetime.decoding.default.dir.disabled.disablepictureinpicture.disableremoteplayback.download.draggable.enctype.enterkeyhint.exportparts.face.for.headers.height.hidden.high.href.hreflang.id.inert.inputmode.integrity.ismap.kind.label.lang.list.loading.loop.low.max.maxlength.media.method.min.minlength.multiple.muted.name.nonce.noshade.novalidate.nowrap.open.optimum.part.pattern.placeholder.playsinline.popover.popovertarget.popovertargetaction.poster.preload.pubdate.radiogroup.readonly.rel.required.rev.reversed.role.rows.rowspan.spellcheck.scope.selected.shape.size.sizes.slot.span.srclang.start.src.srcset.step.style.summary.tabindex.title.translate.type.usemap.valign.value.width.wrap.xmlns.slot".split(".")), he = a(/* @__PURE__ */ "accent-height.accumulate.additive.alignment-baseline.amplitude.ascent.attributename.attributetype.azimuth.basefrequency.baseline-shift.begin.bias.by.class.clip.clippathunits.clip-path.clip-rule.color.color-interpolation.color-interpolation-filters.color-profile.color-rendering.cx.cy.d.dx.dy.diffuseconstant.direction.display.divisor.dur.edgemode.elevation.end.exponent.fill.fill-opacity.fill-rule.filter.filterunits.flood-color.flood-opacity.font-family.font-size.font-size-adjust.font-stretch.font-style.font-variant.font-weight.fx.fy.g1.g2.glyph-name.glyphref.gradientunits.gradienttransform.height.href.id.image-rendering.in.in2.intercept.k.k1.k2.k3.k4.kerning.keypoints.keysplines.keytimes.lang.lengthadjust.letter-spacing.kernelmatrix.kernelunitlength.lighting-color.local.marker-end.marker-mid.marker-start.markerheight.markerunits.markerwidth.maskcontentunits.maskunits.max.mask.mask-type.media.method.mode.min.name.numoctaves.offset.operator.opacity.order.orient.orientation.origin.overflow.paint-order.path.pathlength.patterncontentunits.patterntransform.patternunits.points.preservealpha.preserveaspectratio.primitiveunits.r.rx.ry.radius.refx.refy.repeatcount.repeatdur.restart.result.rotate.scale.seed.shape-rendering.slope.specularconstant.specularexponent.spreadmethod.startoffset.stddeviation.stitchtiles.stop-color.stop-opacity.stroke-dasharray.stroke-dashoffset.stroke-linecap.stroke-linejoin.stroke-miterlimit.stroke-opacity.stroke.stroke-width.style.surfacescale.systemlanguage.tabindex.tablevalues.targetx.targety.transform.transform-origin.text-anchor.text-decoration.text-rendering.textlength.type.u1.u2.unicode.values.viewbox.visibility.version.vert-adv-y.vert-origin-x.vert-origin-y.width.word-spacing.wrap.writing-mode.xchannelselector.ychannelselector.x.x1.x2.xmlns.y.y1.y2.z.zoomandpan".split(".")), ge = a(/* @__PURE__ */ "accent.accentunder.align.bevelled.close.columnsalign.columnlines.columnspan.denomalign.depth.dir.display.displaystyle.encoding.fence.frame.height.href.id.largeop.length.linethickness.lspace.lquote.mathbackground.mathcolor.mathsize.mathvariant.maxsize.minsize.movablelimits.notation.numalign.open.rowalign.rowlines.rowspacing.rowspan.rspace.rquote.scriptlevel.scriptminsize.scriptsizemultiplier.selection.separator.separators.stretchy.subscriptshift.supscriptshift.symmetric.voffset.width.xmlns".split(".")), _e = a([
129
+ "xlink:href",
130
+ "xml:id",
131
+ "xlink:title",
132
+ "xml:space",
133
+ "xmlns:xlink"
134
+ ]), ve = o(/\{\{[\w\W]*|[\w\W]*\}\}/gm), ye = o(/<%[\w\W]*|[\w\W]*%>/gm), be = o(/\$\{[\w\W]*/gm), C = o(/^data-[\-\w.\u00B7-\uFFFF]+$/), w = o(/^aria-[\-\w]+$/), xe = o(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i), Se = o(/^(?:\w+script|data):/i), Ce = o(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g), we = o(/^html$/i), Te = o(/^[a-z][.\w]*(-[.\w]+)+$/i), Ee = /* @__PURE__ */ Object.freeze({
135
+ __proto__: null,
136
+ ARIA_ATTR: w,
137
+ ATTR_WHITESPACE: Ce,
138
+ CUSTOM_ELEMENT: Te,
139
+ DATA_ATTR: C,
140
+ DOCTYPE_NAME: we,
141
+ ERB_EXPR: ye,
142
+ IS_ALLOWED_URI: xe,
143
+ IS_SCRIPT_OR_DATA: Se,
144
+ MUSTACHE_EXPR: ve,
145
+ TMPLIT_EXPR: be
146
+ }), T = {
147
+ element: 1,
148
+ attribute: 2,
149
+ text: 3,
150
+ cdataSection: 4,
151
+ entityReference: 5,
152
+ entityNode: 6,
153
+ progressingInstruction: 7,
154
+ comment: 8,
155
+ document: 9,
156
+ documentType: 10,
157
+ documentFragment: 11,
158
+ notation: 12
159
+ }, De = function() {
160
+ return typeof window > "u" ? null : window;
161
+ }, Oe = function(e, t) {
162
+ if (typeof e != "object" || typeof e.createPolicy != "function") return null;
163
+ let n = null, r = "data-tt-policy-suffix";
164
+ t && t.hasAttribute(r) && (n = t.getAttribute(r));
165
+ let i = "dompurify" + (n ? "#" + n : "");
166
+ try {
167
+ return e.createPolicy(i, {
168
+ createHTML(e) {
169
+ return e;
170
+ },
171
+ createScriptURL(e) {
172
+ return e;
173
+ }
174
+ });
175
+ } catch {
176
+ return console.warn("TrustedTypes policy " + i + " could not be created."), null;
177
+ }
178
+ }, ke = function() {
179
+ return {
180
+ afterSanitizeAttributes: [],
181
+ afterSanitizeElements: [],
182
+ afterSanitizeShadowDOM: [],
183
+ beforeSanitizeAttributes: [],
184
+ beforeSanitizeElements: [],
185
+ beforeSanitizeShadowDOM: [],
186
+ uponSanitizeAttribute: [],
187
+ uponSanitizeElement: [],
188
+ uponSanitizeShadowNode: []
189
+ };
190
+ };
191
+ function Ae() {
192
+ let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : De(), n = (e) => Ae(e);
193
+ if (n.version = "3.3.3", n.removed = [], !t || !t.document || t.document.nodeType !== T.document || !t.Element) return n.isSupported = !1, n;
194
+ let { document: r } = t, i = r, o = i.currentScript, { DocumentFragment: c, HTMLTemplateElement: l, Node: v, Element: oe, NodeFilter: b, NamedNodeMap: ve = t.NamedNodeMap || t.MozNamedAttrMap, HTMLFormElement: ye, DOMParser: be, trustedTypes: C } = t, w = oe.prototype, Se = S(w, "cloneNode"), Ce = S(w, "remove"), Te = S(w, "nextSibling"), je = S(w, "childNodes"), E = S(w, "parentNode");
195
+ if (typeof l == "function") {
196
+ let e = r.createElement("template");
197
+ e.content && e.content.ownerDocument && (r = e.content.ownerDocument);
198
+ }
199
+ let D, O = "", { implementation: Me, createNodeIterator: Ne, createDocumentFragment: Pe, getElementsByTagName: Fe } = r, { importNode: Ie } = i, k = ke();
200
+ n.isSupported = typeof e == "function" && typeof E == "function" && Me && Me.createHTMLDocument !== void 0;
201
+ let { MUSTACHE_EXPR: Le, ERB_EXPR: Re, TMPLIT_EXPR: ze, DATA_ATTR: Be, ARIA_ATTR: Ve, IS_SCRIPT_OR_DATA: He, ATTR_WHITESPACE: Ue, CUSTOM_ELEMENT: We } = Ee, { IS_ALLOWED_URI: Ge } = Ee, A = null, Ke = y({}, [
202
+ ...se,
203
+ ...ce,
204
+ ...le,
205
+ ...de,
206
+ ...pe
207
+ ]), j = null, qe = y({}, [
208
+ ...me,
209
+ ...he,
210
+ ...ge,
211
+ ..._e
212
+ ]), M = Object.seal(s(null, {
213
+ tagNameCheck: {
214
+ writable: !0,
215
+ configurable: !1,
216
+ enumerable: !0,
217
+ value: null
218
+ },
219
+ attributeNameCheck: {
220
+ writable: !0,
221
+ configurable: !1,
222
+ enumerable: !0,
223
+ value: null
224
+ },
225
+ allowCustomizedBuiltInElements: {
226
+ writable: !0,
227
+ configurable: !1,
228
+ enumerable: !0,
229
+ value: !1
230
+ }
231
+ })), N = null, Je = null, P = Object.seal(s(null, {
232
+ tagCheck: {
233
+ writable: !0,
234
+ configurable: !1,
235
+ enumerable: !0,
236
+ value: null
237
+ },
238
+ attributeCheck: {
239
+ writable: !0,
240
+ configurable: !1,
241
+ enumerable: !0,
242
+ value: null
243
+ }
244
+ })), Ye = !0, Xe = !0, Ze = !1, Qe = !0, F = !1, I = !0, L = !1, $e = !1, et = !1, R = !1, z = !1, B = !1, tt = !0, nt = !1, rt = !0, V = !1, H = {}, U = null, it = y({}, [
245
+ "annotation-xml",
246
+ "audio",
247
+ "colgroup",
248
+ "desc",
249
+ "foreignobject",
250
+ "head",
251
+ "iframe",
252
+ "math",
253
+ "mi",
254
+ "mn",
255
+ "mo",
256
+ "ms",
257
+ "mtext",
258
+ "noembed",
259
+ "noframes",
260
+ "noscript",
261
+ "plaintext",
262
+ "script",
263
+ "style",
264
+ "svg",
265
+ "template",
266
+ "thead",
267
+ "title",
268
+ "video",
269
+ "xmp"
270
+ ]), at = null, ot = y({}, [
271
+ "audio",
272
+ "video",
273
+ "img",
274
+ "source",
275
+ "image",
276
+ "track"
277
+ ]), st = null, ct = y({}, [
278
+ "alt",
279
+ "class",
280
+ "for",
281
+ "id",
282
+ "label",
283
+ "name",
284
+ "pattern",
285
+ "placeholder",
286
+ "role",
287
+ "summary",
288
+ "title",
289
+ "value",
290
+ "style",
291
+ "xmlns"
292
+ ]), W = "http://www.w3.org/1998/Math/MathML", G = "http://www.w3.org/2000/svg", K = "http://www.w3.org/1999/xhtml", q = K, lt = !1, ut = null, dt = y({}, [
293
+ W,
294
+ G,
295
+ K
296
+ ], ne), ft = y({}, [
297
+ "mi",
298
+ "mo",
299
+ "mn",
300
+ "ms",
301
+ "mtext"
302
+ ]), pt = y({}, ["annotation-xml"]), mt = y({}, [
303
+ "title",
304
+ "style",
305
+ "font",
306
+ "a",
307
+ "script"
308
+ ]), J = null, ht = ["application/xhtml+xml", "text/html"], Y = null, X = null, gt = r.createElement("form"), _t = function(e) {
309
+ return e instanceof RegExp || e instanceof Function;
310
+ }, vt = function() {
311
+ let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
312
+ if (!(X && X === e)) {
313
+ if ((!e || typeof e != "object") && (e = {}), e = x(e), J = ht.indexOf(e.PARSER_MEDIA_TYPE) === -1 ? "text/html" : e.PARSER_MEDIA_TYPE, Y = J === "application/xhtml+xml" ? ne : p, A = h(e, "ALLOWED_TAGS") ? y({}, e.ALLOWED_TAGS, Y) : Ke, j = h(e, "ALLOWED_ATTR") ? y({}, e.ALLOWED_ATTR, Y) : qe, ut = h(e, "ALLOWED_NAMESPACES") ? y({}, e.ALLOWED_NAMESPACES, ne) : dt, st = h(e, "ADD_URI_SAFE_ATTR") ? y(x(ct), e.ADD_URI_SAFE_ATTR, Y) : ct, at = h(e, "ADD_DATA_URI_TAGS") ? y(x(ot), e.ADD_DATA_URI_TAGS, Y) : ot, U = h(e, "FORBID_CONTENTS") ? y({}, e.FORBID_CONTENTS, Y) : it, N = h(e, "FORBID_TAGS") ? y({}, e.FORBID_TAGS, Y) : x({}), Je = h(e, "FORBID_ATTR") ? y({}, e.FORBID_ATTR, Y) : x({}), H = h(e, "USE_PROFILES") ? e.USE_PROFILES : !1, Ye = e.ALLOW_ARIA_ATTR !== !1, Xe = e.ALLOW_DATA_ATTR !== !1, Ze = e.ALLOW_UNKNOWN_PROTOCOLS || !1, Qe = e.ALLOW_SELF_CLOSE_IN_ATTR !== !1, F = e.SAFE_FOR_TEMPLATES || !1, I = e.SAFE_FOR_XML !== !1, L = e.WHOLE_DOCUMENT || !1, R = e.RETURN_DOM || !1, z = e.RETURN_DOM_FRAGMENT || !1, B = e.RETURN_TRUSTED_TYPE || !1, et = e.FORCE_BODY || !1, tt = e.SANITIZE_DOM !== !1, nt = e.SANITIZE_NAMED_PROPS || !1, rt = e.KEEP_CONTENT !== !1, V = e.IN_PLACE || !1, Ge = e.ALLOWED_URI_REGEXP || xe, q = e.NAMESPACE || K, ft = e.MATHML_TEXT_INTEGRATION_POINTS || ft, pt = e.HTML_INTEGRATION_POINTS || pt, M = e.CUSTOM_ELEMENT_HANDLING || {}, e.CUSTOM_ELEMENT_HANDLING && _t(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck) && (M.tagNameCheck = e.CUSTOM_ELEMENT_HANDLING.tagNameCheck), e.CUSTOM_ELEMENT_HANDLING && _t(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck) && (M.attributeNameCheck = e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck), e.CUSTOM_ELEMENT_HANDLING && typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements == "boolean" && (M.allowCustomizedBuiltInElements = e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements), F && (Xe = !1), z && (R = !0), H && (A = y({}, pe), j = s(null), H.html === !0 && (y(A, se), y(j, me)), H.svg === !0 && (y(A, ce), y(j, he), y(j, _e)), H.svgFilters === !0 && (y(A, le), y(j, he), y(j, _e)), H.mathMl === !0 && (y(A, de), y(j, ge), y(j, _e))), h(e, "ADD_TAGS") || (P.tagCheck = null), h(e, "ADD_ATTR") || (P.attributeCheck = null), e.ADD_TAGS && (typeof e.ADD_TAGS == "function" ? P.tagCheck = e.ADD_TAGS : (A === Ke && (A = x(A)), y(A, e.ADD_TAGS, Y))), e.ADD_ATTR && (typeof e.ADD_ATTR == "function" ? P.attributeCheck = e.ADD_ATTR : (j === qe && (j = x(j)), y(j, e.ADD_ATTR, Y))), e.ADD_URI_SAFE_ATTR && y(st, e.ADD_URI_SAFE_ATTR, Y), e.FORBID_CONTENTS && (U === it && (U = x(U)), y(U, e.FORBID_CONTENTS, Y)), e.ADD_FORBID_CONTENTS && (U === it && (U = x(U)), y(U, e.ADD_FORBID_CONTENTS, Y)), rt && (A["#text"] = !0), L && y(A, [
314
+ "html",
315
+ "head",
316
+ "body"
317
+ ]), A.table && (y(A, ["tbody"]), delete N.tbody), e.TRUSTED_TYPES_POLICY) {
318
+ if (typeof e.TRUSTED_TYPES_POLICY.createHTML != "function") throw _("TRUSTED_TYPES_POLICY configuration option must provide a \"createHTML\" hook.");
319
+ if (typeof e.TRUSTED_TYPES_POLICY.createScriptURL != "function") throw _("TRUSTED_TYPES_POLICY configuration option must provide a \"createScriptURL\" hook.");
320
+ D = e.TRUSTED_TYPES_POLICY, O = D.createHTML("");
321
+ } else D === void 0 && (D = Oe(C, o)), D !== null && typeof O == "string" && (O = D.createHTML(""));
322
+ a && a(e), X = e;
323
+ }
324
+ }, yt = y({}, [
325
+ ...ce,
326
+ ...le,
327
+ ...ue
328
+ ]), bt = y({}, [...de, ...fe]), xt = function(e) {
329
+ let t = E(e);
330
+ (!t || !t.tagName) && (t = {
331
+ namespaceURI: q,
332
+ tagName: "template"
333
+ });
334
+ let n = p(e.tagName), r = p(t.tagName);
335
+ return ut[e.namespaceURI] ? e.namespaceURI === G ? t.namespaceURI === K ? n === "svg" : t.namespaceURI === W ? n === "svg" && (r === "annotation-xml" || ft[r]) : !!yt[n] : e.namespaceURI === W ? t.namespaceURI === K ? n === "math" : t.namespaceURI === G ? n === "math" && pt[r] : !!bt[n] : e.namespaceURI === K ? t.namespaceURI === G && !pt[r] || t.namespaceURI === W && !ft[r] ? !1 : !bt[n] && (mt[n] || !yt[n]) : !!(J === "application/xhtml+xml" && ut[e.namespaceURI]) : !1;
336
+ }, Z = function(e) {
337
+ f(n.removed, { element: e });
338
+ try {
339
+ E(e).removeChild(e);
340
+ } catch {
341
+ Ce(e);
342
+ }
343
+ }, Q = function(e, t) {
344
+ try {
345
+ f(n.removed, {
346
+ attribute: t.getAttributeNode(e),
347
+ from: t
348
+ });
349
+ } catch {
350
+ f(n.removed, {
351
+ attribute: null,
352
+ from: t
353
+ });
354
+ }
355
+ if (t.removeAttribute(e), e === "is") if (R || z) try {
356
+ Z(t);
357
+ } catch {}
358
+ else try {
359
+ t.setAttribute(e, "");
360
+ } catch {}
361
+ }, St = function(e) {
362
+ let t = null, n = null;
363
+ if (et) e = "<remove></remove>" + e;
364
+ else {
365
+ let t = re(e, /^[\r\n\t ]+/);
366
+ n = t && t[0];
367
+ }
368
+ J === "application/xhtml+xml" && q === K && (e = "<html xmlns=\"http://www.w3.org/1999/xhtml\"><head></head><body>" + e + "</body></html>");
369
+ let i = D ? D.createHTML(e) : e;
370
+ if (q === K) try {
371
+ t = new be().parseFromString(i, J);
372
+ } catch {}
373
+ if (!t || !t.documentElement) {
374
+ t = Me.createDocument(q, "template", null);
375
+ try {
376
+ t.documentElement.innerHTML = lt ? O : i;
377
+ } catch {}
378
+ }
379
+ let a = t.body || t.documentElement;
380
+ return e && n && a.insertBefore(r.createTextNode(n), a.childNodes[0] || null), q === K ? Fe.call(t, L ? "html" : "body")[0] : L ? t.documentElement : a;
381
+ }, Ct = function(e) {
382
+ return Ne.call(e.ownerDocument || e, e, b.SHOW_ELEMENT | b.SHOW_COMMENT | b.SHOW_TEXT | b.SHOW_PROCESSING_INSTRUCTION | b.SHOW_CDATA_SECTION, null);
383
+ }, wt = function(e) {
384
+ return e instanceof ye && (typeof e.nodeName != "string" || typeof e.textContent != "string" || typeof e.removeChild != "function" || !(e.attributes instanceof ve) || typeof e.removeAttribute != "function" || typeof e.setAttribute != "function" || typeof e.namespaceURI != "string" || typeof e.insertBefore != "function" || typeof e.hasChildNodes != "function");
385
+ }, Tt = function(e) {
386
+ return typeof v == "function" && e instanceof v;
387
+ };
388
+ function $(e, t, r) {
389
+ u(e, (e) => {
390
+ e.call(n, t, r, X);
391
+ });
392
+ }
393
+ let Et = function(e) {
394
+ let t = null;
395
+ if ($(k.beforeSanitizeElements, e, null), wt(e)) return Z(e), !0;
396
+ let r = Y(e.nodeName);
397
+ if ($(k.uponSanitizeElement, e, {
398
+ tagName: r,
399
+ allowedTags: A
400
+ }), I && e.hasChildNodes() && !Tt(e.firstElementChild) && g(/<[/\w!]/g, e.innerHTML) && g(/<[/\w!]/g, e.textContent) || e.nodeType === T.progressingInstruction || I && e.nodeType === T.comment && g(/<[/\w]/g, e.data)) return Z(e), !0;
401
+ if (!(P.tagCheck instanceof Function && P.tagCheck(r)) && (!A[r] || N[r])) {
402
+ if (!N[r] && Ot(r) && (M.tagNameCheck instanceof RegExp && g(M.tagNameCheck, r) || M.tagNameCheck instanceof Function && M.tagNameCheck(r))) return !1;
403
+ if (rt && !U[r]) {
404
+ let t = E(e) || e.parentNode, n = je(e) || e.childNodes;
405
+ if (n && t) {
406
+ let r = n.length;
407
+ for (let i = r - 1; i >= 0; --i) {
408
+ let r = Se(n[i], !0);
409
+ r.__removalCount = (e.__removalCount || 0) + 1, t.insertBefore(r, Te(e));
410
+ }
411
+ }
412
+ }
413
+ return Z(e), !0;
414
+ }
415
+ return e instanceof oe && !xt(e) || (r === "noscript" || r === "noembed" || r === "noframes") && g(/<\/no(script|embed|frames)/i, e.innerHTML) ? (Z(e), !0) : (F && e.nodeType === T.text && (t = e.textContent, u([
416
+ Le,
417
+ Re,
418
+ ze
419
+ ], (e) => {
420
+ t = m(t, e, " ");
421
+ }), e.textContent !== t && (f(n.removed, { element: e.cloneNode() }), e.textContent = t)), $(k.afterSanitizeElements, e, null), !1);
422
+ }, Dt = function(e, t, n) {
423
+ if (Je[t] || tt && (t === "id" || t === "name") && (n in r || n in gt)) return !1;
424
+ if (!(Xe && !Je[t] && g(Be, t)) && !(Ye && g(Ve, t)) && !(P.attributeCheck instanceof Function && P.attributeCheck(t, e))) {
425
+ if (!j[t] || Je[t]) {
426
+ if (!(Ot(e) && (M.tagNameCheck instanceof RegExp && g(M.tagNameCheck, e) || M.tagNameCheck instanceof Function && M.tagNameCheck(e)) && (M.attributeNameCheck instanceof RegExp && g(M.attributeNameCheck, t) || M.attributeNameCheck instanceof Function && M.attributeNameCheck(t, e)) || t === "is" && M.allowCustomizedBuiltInElements && (M.tagNameCheck instanceof RegExp && g(M.tagNameCheck, n) || M.tagNameCheck instanceof Function && M.tagNameCheck(n)))) return !1;
427
+ } else if (!st[t] && !g(Ge, m(n, Ue, "")) && !((t === "src" || t === "xlink:href" || t === "href") && e !== "script" && ie(n, "data:") === 0 && at[e]) && !(Ze && !g(He, m(n, Ue, ""))) && n) return !1;
428
+ }
429
+ return !0;
430
+ }, Ot = function(e) {
431
+ return e !== "annotation-xml" && re(e, We);
432
+ }, kt = function(e) {
433
+ $(k.beforeSanitizeAttributes, e, null);
434
+ let { attributes: t } = e;
435
+ if (!t || wt(e)) return;
436
+ let r = {
437
+ attrName: "",
438
+ attrValue: "",
439
+ keepAttr: !0,
440
+ allowedAttributes: j,
441
+ forceKeepAttr: void 0
442
+ }, i = t.length;
443
+ for (; i--;) {
444
+ let { name: a, namespaceURI: o, value: s } = t[i], c = Y(a), l = s, d = a === "value" ? l : ae(l);
445
+ if (r.attrName = c, r.attrValue = d, r.keepAttr = !0, r.forceKeepAttr = void 0, $(k.uponSanitizeAttribute, e, r), d = r.attrValue, nt && (c === "id" || c === "name") && (Q(a, e), d = "user-content-" + d), I && g(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i, d)) {
446
+ Q(a, e);
447
+ continue;
448
+ }
449
+ if (c === "attributename" && re(d, "href")) {
450
+ Q(a, e);
451
+ continue;
452
+ }
453
+ if (r.forceKeepAttr) continue;
454
+ if (!r.keepAttr) {
455
+ Q(a, e);
456
+ continue;
457
+ }
458
+ if (!Qe && g(/\/>/i, d)) {
459
+ Q(a, e);
460
+ continue;
461
+ }
462
+ F && u([
463
+ Le,
464
+ Re,
465
+ ze
466
+ ], (e) => {
467
+ d = m(d, e, " ");
468
+ });
469
+ let f = Y(e.nodeName);
470
+ if (!Dt(f, c, d)) {
471
+ Q(a, e);
472
+ continue;
473
+ }
474
+ if (D && typeof C == "object" && typeof C.getAttributeType == "function" && !o) switch (C.getAttributeType(f, c)) {
475
+ case "TrustedHTML":
476
+ d = D.createHTML(d);
477
+ break;
478
+ case "TrustedScriptURL":
479
+ d = D.createScriptURL(d);
480
+ break;
481
+ }
482
+ if (d !== l) try {
483
+ o ? e.setAttributeNS(o, a, d) : e.setAttribute(a, d), wt(e) ? Z(e) : ee(n.removed);
484
+ } catch {
485
+ Q(a, e);
486
+ }
487
+ }
488
+ $(k.afterSanitizeAttributes, e, null);
489
+ }, At = function e(t) {
490
+ let n = null, r = Ct(t);
491
+ for ($(k.beforeSanitizeShadowDOM, t, null); n = r.nextNode();) $(k.uponSanitizeShadowNode, n, null), Et(n), kt(n), n.content instanceof c && e(n.content);
492
+ $(k.afterSanitizeShadowDOM, t, null);
493
+ };
494
+ return n.sanitize = function(e) {
495
+ let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, r = null, a = null, o = null, s = null;
496
+ if (lt = !e, lt && (e = "<!-->"), typeof e != "string" && !Tt(e)) if (typeof e.toString == "function") {
497
+ if (e = e.toString(), typeof e != "string") throw _("dirty is not a string, aborting");
498
+ } else throw _("toString is not a function");
499
+ if (!n.isSupported) return e;
500
+ if ($e || vt(t), n.removed = [], typeof e == "string" && (V = !1), V) {
501
+ if (e.nodeName) {
502
+ let t = Y(e.nodeName);
503
+ if (!A[t] || N[t]) throw _("root node is forbidden and cannot be sanitized in-place");
504
+ }
505
+ } else if (e instanceof v) r = St("<!---->"), a = r.ownerDocument.importNode(e, !0), a.nodeType === T.element && a.nodeName === "BODY" || a.nodeName === "HTML" ? r = a : r.appendChild(a);
506
+ else {
507
+ if (!R && !F && !L && e.indexOf("<") === -1) return D && B ? D.createHTML(e) : e;
508
+ if (r = St(e), !r) return R ? null : B ? O : "";
509
+ }
510
+ r && et && Z(r.firstChild);
511
+ let l = Ct(V ? e : r);
512
+ for (; o = l.nextNode();) Et(o), kt(o), o.content instanceof c && At(o.content);
513
+ if (V) return e;
514
+ if (R) {
515
+ if (z) for (s = Pe.call(r.ownerDocument); r.firstChild;) s.appendChild(r.firstChild);
516
+ else s = r;
517
+ return (j.shadowroot || j.shadowrootmode) && (s = Ie.call(i, s, !0)), s;
518
+ }
519
+ let d = L ? r.outerHTML : r.innerHTML;
520
+ return L && A["!doctype"] && r.ownerDocument && r.ownerDocument.doctype && r.ownerDocument.doctype.name && g(we, r.ownerDocument.doctype.name) && (d = "<!DOCTYPE " + r.ownerDocument.doctype.name + ">\n" + d), F && u([
521
+ Le,
522
+ Re,
523
+ ze
524
+ ], (e) => {
525
+ d = m(d, e, " ");
526
+ }), D && B ? D.createHTML(d) : d;
527
+ }, n.setConfig = function() {
528
+ vt(arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}), $e = !0;
529
+ }, n.clearConfig = function() {
530
+ X = null, $e = !1;
531
+ }, n.isValidAttribute = function(e, t, n) {
532
+ return X || vt({}), Dt(Y(e), Y(t), n);
533
+ }, n.addHook = function(e, t) {
534
+ typeof t == "function" && f(k[e], t);
535
+ }, n.removeHook = function(e, t) {
536
+ if (t !== void 0) {
537
+ let n = d(k[e], t);
538
+ return n === -1 ? void 0 : te(k[e], n, 1)[0];
539
+ }
540
+ return ee(k[e]);
541
+ }, n.removeHooks = function(e) {
542
+ k[e] = [];
543
+ }, n.removeAllHooks = function() {
544
+ k = ke();
545
+ }, n;
546
+ }
547
+ var je = Ae();
548
+ //#endregion
549
+ export { je as purify };
@@ -0,0 +1,59 @@
1
+ import { __commonJSMin as e } from "../../../../../_virtual/_rolldown/runtime.js";
2
+ //#region node_modules/.pnpm/flat@5.0.2/node_modules/flat/index.js
3
+ var t = /* @__PURE__ */ e(((e, t) => {
4
+ t.exports = i, i.flatten = i, i.unflatten = a;
5
+ function n(e) {
6
+ return e && e.constructor && typeof e.constructor.isBuffer == "function" && e.constructor.isBuffer(e);
7
+ }
8
+ function r(e) {
9
+ return e;
10
+ }
11
+ function i(e, t) {
12
+ t ||= {};
13
+ let i = t.delimiter || ".", a = t.maxDepth, o = t.transformKey || r, s = {};
14
+ function c(e, r, l) {
15
+ l ||= 1, Object.keys(e).forEach(function(u) {
16
+ let d = e[u], f = t.safe && Array.isArray(d), p = Object.prototype.toString.call(d), m = n(d), h = p === "[object Object]" || p === "[object Array]", g = r ? r + i + o(u) : o(u);
17
+ if (!f && !m && h && Object.keys(d).length && (!t.maxDepth || l < a)) return c(d, g, l + 1);
18
+ s[g] = d;
19
+ });
20
+ }
21
+ return c(e), s;
22
+ }
23
+ function a(e, t) {
24
+ t ||= {};
25
+ let o = t.delimiter || ".", s = t.overwrite || !1, c = t.transformKey || r, l = {};
26
+ if (n(e) || Object.prototype.toString.call(e) !== "[object Object]") return e;
27
+ function u(e) {
28
+ let n = Number(e);
29
+ return isNaN(n) || e.indexOf(".") !== -1 || t.object ? e : n;
30
+ }
31
+ function d(e, t, n) {
32
+ return Object.keys(n).reduce(function(t, r) {
33
+ return t[e + o + r] = n[r], t;
34
+ }, t);
35
+ }
36
+ function f(e) {
37
+ let t = Object.prototype.toString.call(e), n = t === "[object Array]", r = t === "[object Object]";
38
+ if (!e) return !0;
39
+ if (n) return !e.length;
40
+ if (r) return !Object.keys(e).length;
41
+ }
42
+ return e = Object.keys(e).reduce(function(n, r) {
43
+ let a = Object.prototype.toString.call(e[r]);
44
+ return !(a === "[object Object]" || a === "[object Array]") || f(e[r]) ? (n[r] = e[r], n) : d(r, n, i(e[r], t));
45
+ }, {}), Object.keys(e).forEach(function(n) {
46
+ let r = n.split(o).map(c), i = u(r.shift()), d = u(r[0]), f = l;
47
+ for (; d !== void 0;) {
48
+ if (i === "__proto__") return;
49
+ let e = Object.prototype.toString.call(f[i]), n = e === "[object Object]" || e === "[object Array]";
50
+ if (!s && !n && f[i] !== void 0) return;
51
+ (s && !n || !s && f[i] == null) && (f[i] = typeof d == "number" && !t.object ? [] : {}), f = f[i], r.length > 0 && (i = u(r.shift()), d = u(r[0]));
52
+ }
53
+ f[i] = a(e[n], t);
54
+ }), l;
55
+ }
56
+ }));
57
+ //#endregion
58
+ export default t();
59
+ export { t as require_flat };