loon-bulma-react 2025.0.34 → 2025.1.0

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 (468) hide show
  1. package/.github/workflows/deploy-example.yml +43 -0
  2. package/.github/workflows/run-test.yml +31 -0
  3. package/.prettierignore +5 -0
  4. package/.prettierrc.json +19 -0
  5. package/dist/classes/Console.d.ts +29 -0
  6. package/dist/classes/FetchWrapper.d.ts +124 -0
  7. package/dist/components/AspectRatio/AspectRatio.d.ts +28 -0
  8. package/dist/components/Block/Block.d.ts +9 -0
  9. package/dist/components/Box/BorderBox.d.ts +29 -0
  10. package/dist/components/Box/Box.d.ts +20 -0
  11. package/dist/components/Button/Button.d.ts +84 -0
  12. package/dist/components/ButtonGroup/ButtonGroup.d.ts +26 -0
  13. package/dist/components/Calendar/CalendarItems/CalendarColoredItem.d.ts +18 -0
  14. package/dist/components/Calendar/CalendarItems/CalendarItem.d.ts +18 -0
  15. package/dist/components/Calendar/DayContainer.d.ts +25 -0
  16. package/dist/components/Calendar/EventDescriptions.d.ts +33 -0
  17. package/dist/components/Calendar/Fourweeks/FourweeksView.d.ts +23 -0
  18. package/dist/components/Calendar/Mini/MiniView.d.ts +24 -0
  19. package/dist/components/Calendar/Month/MonthView.d.ts +23 -0
  20. package/dist/components/Calendar/Planning/PlanningView.d.ts +42 -0
  21. package/dist/components/Calendar/Props.d.ts +58 -0
  22. package/dist/components/Calendar/Week/AlldayContainer.d.ts +19 -0
  23. package/dist/components/Calendar/Week/HourRow.d.ts +30 -0
  24. package/dist/components/Calendar/Week/WeekView.d.ts +24 -0
  25. package/dist/components/Calendar/calendar.functions.d.ts +10 -0
  26. package/dist/components/Calendar/index.d.ts +15 -0
  27. package/dist/components/CodeBlock/CodeBlock.d.ts +49 -0
  28. package/dist/components/Columns/Column.d.ts +207 -0
  29. package/dist/components/Columns/Columns.d.ts +35 -0
  30. package/dist/components/Container/Container.d.ts +44 -0
  31. package/dist/components/Content/Content.d.ts +22 -0
  32. package/dist/components/DataTable/DataTable.d.ts +187 -0
  33. package/dist/components/Divider/Divider.d.ts +8 -0
  34. package/dist/components/Dropdown/Dropdown.d.ts +25 -0
  35. package/dist/components/Footer/Footer.d.ts +22 -0
  36. package/dist/components/Help/Help.d.ts +19 -0
  37. package/dist/components/Hero/Hero.d.ts +104 -0
  38. package/dist/components/Icon/Icon.d.ts +82 -0
  39. package/dist/components/Image/Image.d.ts +28 -0
  40. package/dist/components/Indicator/Indicator.d.ts +25 -0
  41. package/dist/components/Kbd/Kbd.d.ts +30 -0
  42. package/dist/components/Label/Label.d.ts +11 -0
  43. package/dist/components/Link/Link.d.ts +44 -0
  44. package/dist/components/Menu/Menu.d.ts +64 -0
  45. package/dist/components/Message/Message.d.ts +49 -0
  46. package/dist/components/Modal/Modal.d.ts +74 -0
  47. package/dist/components/Notification/Notification.d.ts +38 -0
  48. package/dist/components/Pagination/Pagination.d.ts +56 -0
  49. package/dist/components/Panel/Panel.d.ts +98 -0
  50. package/dist/components/ProgressBar/ProgressBar.d.ts +28 -0
  51. package/dist/components/QuickView/QuickView.d.ts +61 -0
  52. package/dist/components/ScrollArea/ScrollArea.d.ts +76 -0
  53. package/dist/components/Section/Section.d.ts +21 -0
  54. package/dist/components/SimpleTable/SimpleTable.d.ts +121 -0
  55. package/dist/components/Steps/Steps.d.ts +61 -0
  56. package/dist/components/TabBar/TabBar.d.ts +47 -0
  57. package/dist/components/Tag/Tag.d.ts +54 -0
  58. package/dist/components/TimeLine/TimeLine.d.ts +62 -0
  59. package/dist/components/Titles/Titles.d.ts +71 -0
  60. package/dist/components/ToggleBar/ToggleBar.d.ts +80 -0
  61. package/dist/components/Tooltip/Tooltip.d.ts +49 -0
  62. package/dist/components/TreeView/TreeView.d.ts +48 -0
  63. package/dist/contexts/ActionSheet/ActionSheetContextProvider.d.ts +76 -0
  64. package/dist/contexts/AppProvider/AppProviders.d.ts +18 -0
  65. package/dist/contexts/ColorSchemeProvider/ColorSchemeProvider.d.ts +15 -0
  66. package/dist/contexts/Confirm/ConfirmContextProvider.d.ts +60 -0
  67. package/dist/contexts/DefaultsProvider/DefaultsProvider.d.ts +94 -0
  68. package/dist/contexts/DialogsProvider/DialogsProvider.d.ts +4 -0
  69. package/dist/contexts/KeysProvider/KeysProvider.d.ts +35 -0
  70. package/dist/contexts/ModalProvider/ModalProvider.d.ts +11 -0
  71. package/dist/contexts/ModeProvider/ModeProvider.d.ts +14 -0
  72. package/dist/contexts/Notifier/Notifier.d.ts +81 -0
  73. package/dist/contexts/Prompt/PromptContextProvider.d.ts +71 -0
  74. package/dist/forms/Checkbox/Checkbox.d.ts +47 -0
  75. package/dist/forms/ComboBox/ComboBox.d.ts +44 -0
  76. package/dist/forms/ComboBox/MultiComboBox.d.ts +44 -0
  77. package/dist/forms/ComboBox/useComboBoxScroll.d.ts +4 -0
  78. package/dist/forms/Currency/CurrencyInput.d.ts +47 -0
  79. package/dist/forms/Datetimes/DateInput.d.ts +37 -0
  80. package/dist/forms/Datetimes/DateTimeInput.d.ts +44 -0
  81. package/dist/forms/Datetimes/TimeInput.d.ts +42 -0
  82. package/dist/forms/File/FileInput.d.ts +71 -0
  83. package/dist/forms/Input.d.ts +223 -0
  84. package/dist/forms/MaskedInput/MaskedInput.d.ts +46 -0
  85. package/dist/forms/Numeric/NumberInput.d.ts +14 -0
  86. package/dist/forms/Numeric/RangeInput.d.ts +21 -0
  87. package/dist/forms/Others/ColorInput.d.ts +56 -0
  88. package/dist/forms/Others/HiddenInput.d.ts +29 -0
  89. package/dist/forms/Others/TelephoneInput.d.ts +14 -0
  90. package/dist/forms/Others/URLInput.d.ts +14 -0
  91. package/dist/forms/Periodes/MonthInput.d.ts +43 -0
  92. package/dist/forms/Periodes/WeekInput.d.ts +43 -0
  93. package/dist/forms/Radio/Radio.d.ts +97 -0
  94. package/dist/forms/Select/Select.d.ts +132 -0
  95. package/dist/forms/TagsInput/TagsInput.d.ts +44 -0
  96. package/dist/forms/Text/EmailInput.d.ts +14 -0
  97. package/dist/forms/Text/FormattedInput.d.ts +54 -0
  98. package/dist/forms/Text/PasswordInput.d.ts +19 -0
  99. package/dist/forms/Text/TextArea.d.ts +31 -0
  100. package/dist/forms/Text/TextEditor.d.ts +36 -0
  101. package/dist/forms/Text/TextInput.d.ts +30 -0
  102. package/dist/hooks/useCaretPosition.d.ts +8 -0
  103. package/dist/hooks/useClickOutside.d.ts +15 -0
  104. package/dist/hooks/useClipboard.d.ts +21 -0
  105. package/dist/hooks/useContextMenu.d.ts +29 -0
  106. package/dist/hooks/useCookieState.d.ts +37 -0
  107. package/dist/hooks/useDebounced.hooks.d.ts +55 -0
  108. package/dist/hooks/useFetchApi.d.ts +65 -0
  109. package/dist/hooks/useHotkeys.d.ts +44 -0
  110. package/dist/hooks/useIndexedDb.d.ts +89 -0
  111. package/dist/hooks/useLocalStoredState.d.ts +36 -0
  112. package/dist/hooks/usePagination.d.ts +25 -0
  113. package/dist/hooks/usePropState.d.ts +16 -0
  114. package/dist/hooks/useScrollIntoView.d.ts +59 -0
  115. package/dist/hooks/useSessionStoredState.d.ts +38 -0
  116. package/dist/hooks/useToggle.d.ts +16 -0
  117. package/dist/hooks/useUncontrolled.d.ts +44 -0
  118. package/dist/hooks/useValidatedState.d.ts +21 -0
  119. package/dist/index.d.ts +169 -5773
  120. package/dist/index.js +37319 -55
  121. package/dist/internal_functions/createIconsInternal.d.ts +17 -0
  122. package/dist/internal_functions/getAlignmentClass.d.ts +16 -0
  123. package/dist/internal_functions/getColorClass.d.ts +23 -0
  124. package/dist/internal_functions/getPositionClass.d.ts +2 -0
  125. package/dist/internal_functions/getSizeClass.d.ts +23 -0
  126. package/dist/internal_functions/index.d.ts +8 -0
  127. package/{styles → dist/styles}/_all.scss +3 -1
  128. package/dist/styles/tooltip.scss +32 -0
  129. package/dist/test-data.d.ts +9 -0
  130. package/dist/types/index.d.ts +111 -0
  131. package/dist/utils/JSDateTime.class.d.ts +510 -0
  132. package/dist/utils/JSDuration.class.d.ts +79 -0
  133. package/dist/utils/calculateTxtColor.function.d.ts +14 -0
  134. package/dist/utils/colors.d.ts +26 -0
  135. package/dist/utils/colorscheme.d.ts +5 -0
  136. package/dist/utils/compare.d.ts +7 -0
  137. package/dist/utils/deserialize.function.d.ts +2 -0
  138. package/dist/utils/hasBSN.function.d.ts +27 -0
  139. package/dist/utils/isIBAN.function.d.ts +24 -0
  140. package/dist/utils/math.d.ts +22 -0
  141. package/dist/utils/operators.d.ts +192 -0
  142. package/dist/utils/serialize.function.d.ts +2 -0
  143. package/dist/utils/sorting.d.ts +34 -0
  144. package/dist/utils/string.utils.d.ts +72 -0
  145. package/eslint.config.js +108 -0
  146. package/index.html +16 -0
  147. package/jest.config.ts +12 -0
  148. package/lib/classes/Console.ts +78 -0
  149. package/lib/classes/FetchWrapper.ts +392 -0
  150. package/lib/components/AspectRatio/AspectRatio.test.tsx +67 -0
  151. package/lib/components/AspectRatio/AspectRatio.tsx +40 -0
  152. package/lib/components/Block/Block.test.tsx +24 -0
  153. package/lib/components/Block/Block.tsx +13 -0
  154. package/lib/components/Box/BorderBox.test.tsx +24 -0
  155. package/lib/components/Box/BorderBox.tsx +79 -0
  156. package/lib/components/Box/Box.test.tsx +24 -0
  157. package/lib/components/Box/Box.tsx +30 -0
  158. package/lib/components/Button/Button.test.tsx +871 -0
  159. package/lib/components/Button/Button.tsx +217 -0
  160. package/lib/components/ButtonGroup/ButtonGroup.test.tsx +115 -0
  161. package/lib/components/ButtonGroup/ButtonGroup.tsx +130 -0
  162. package/lib/components/Calendar/CalendarItems/CalendarColoredItem.tsx +63 -0
  163. package/lib/components/Calendar/CalendarItems/CalendarItem.tsx +49 -0
  164. package/lib/components/Calendar/DayContainer.tsx +115 -0
  165. package/lib/components/Calendar/EventDescriptions.tsx +131 -0
  166. package/lib/components/Calendar/Fourweeks/FourweeksView.test.tsx +262 -0
  167. package/lib/components/Calendar/Fourweeks/FourweeksView.tsx +169 -0
  168. package/lib/components/Calendar/Mini/MiniView.tsx +127 -0
  169. package/lib/components/Calendar/Month/MonthView.test.tsx +266 -0
  170. package/lib/components/Calendar/Month/MonthView.tsx +178 -0
  171. package/lib/components/Calendar/Planning/PlanningView.tsx +195 -0
  172. package/lib/components/Calendar/Props.tsx +64 -0
  173. package/lib/components/Calendar/Week/AlldayContainer.tsx +38 -0
  174. package/lib/components/Calendar/Week/HourRow.tsx +159 -0
  175. package/lib/components/Calendar/Week/WeekView.test.tsx +291 -0
  176. package/lib/components/Calendar/Week/WeekView.tsx +176 -0
  177. package/lib/components/Calendar/calendar.functions.ts +32 -0
  178. package/lib/components/Calendar/index.ts +17 -0
  179. package/lib/components/CodeBlock/CodeBlock.tsx +128 -0
  180. package/lib/components/Columns/Column.test.tsx +145 -0
  181. package/lib/components/Columns/Column.tsx +316 -0
  182. package/lib/components/Columns/Columns.test.tsx +95 -0
  183. package/lib/components/Columns/Columns.tsx +62 -0
  184. package/lib/components/Container/Container.test.tsx +87 -0
  185. package/lib/components/Container/Container.tsx +140 -0
  186. package/lib/components/Content/Content.test.tsx +51 -0
  187. package/lib/components/Content/Content.tsx +31 -0
  188. package/lib/components/DataTable/DataTable.test.tsx +403 -0
  189. package/lib/components/DataTable/DataTable.tsx +726 -0
  190. package/lib/components/Divider/Divider.tsx +18 -0
  191. package/lib/components/Dropdown/Dropdown.tsx +112 -0
  192. package/lib/components/Footer/Footer.test.tsx +42 -0
  193. package/lib/components/Footer/Footer.tsx +34 -0
  194. package/lib/components/Help/Help.test.tsx +83 -0
  195. package/lib/components/Help/Help.tsx +25 -0
  196. package/lib/components/Hero/Hero.test.tsx +222 -0
  197. package/lib/components/Hero/Hero.tsx +214 -0
  198. package/lib/components/Icon/Icon.test.tsx +157 -0
  199. package/lib/components/Icon/Icon.tsx +192 -0
  200. package/lib/components/Image/Image.test.tsx +72 -0
  201. package/lib/components/Image/Image.tsx +60 -0
  202. package/lib/components/Indicator/Indicator.test.tsx +68 -0
  203. package/lib/components/Indicator/Indicator.tsx +46 -0
  204. package/lib/components/Kbd/Kbd.test.tsx +49 -0
  205. package/lib/components/Kbd/Kbd.tsx +51 -0
  206. package/lib/components/Label/Label.tsx +21 -0
  207. package/lib/components/Link/Link.test.tsx +84 -0
  208. package/lib/components/Link/Link.tsx +87 -0
  209. package/lib/components/Menu/Menu.test.tsx +154 -0
  210. package/lib/components/Menu/Menu.tsx +264 -0
  211. package/lib/components/Message/Message.test.tsx +112 -0
  212. package/lib/components/Message/Message.tsx +154 -0
  213. package/lib/components/Modal/Modal.test.tsx +188 -0
  214. package/lib/components/Modal/Modal.tsx +188 -0
  215. package/lib/components/Notification/Notification.test.tsx +175 -0
  216. package/lib/components/Notification/Notification.tsx +110 -0
  217. package/lib/components/Pagination/Pagination.tsx +143 -0
  218. package/lib/components/Panel/Panel.tsx +225 -0
  219. package/lib/components/ProgressBar/ProgressBar.test.tsx +92 -0
  220. package/lib/components/ProgressBar/ProgressBar.tsx +42 -0
  221. package/lib/components/QuickView/QuickView.test.tsx +81 -0
  222. package/lib/components/QuickView/QuickView.tsx +122 -0
  223. package/lib/components/ScrollArea/ScrollArea.test.tsx +682 -0
  224. package/lib/components/ScrollArea/ScrollArea.tsx +183 -0
  225. package/lib/components/Section/Section.test.tsx +24 -0
  226. package/lib/components/Section/Section.tsx +32 -0
  227. package/lib/components/SimpleTable/SimpleTable.test.tsx +135 -0
  228. package/lib/components/SimpleTable/SimpleTable.tsx +327 -0
  229. package/lib/components/Steps/Steps.test.tsx +356 -0
  230. package/lib/components/Steps/Steps.tsx +164 -0
  231. package/lib/components/TabBar/TabBar.test.tsx +134 -0
  232. package/lib/components/TabBar/TabBar.tsx +125 -0
  233. package/lib/components/Tag/Tag.test.tsx +184 -0
  234. package/lib/components/Tag/Tag.tsx +131 -0
  235. package/lib/components/TimeLine/TimeLine.test.tsx +149 -0
  236. package/lib/components/TimeLine/TimeLine.tsx +116 -0
  237. package/lib/components/Titles/Titles.test.tsx +53 -0
  238. package/lib/components/Titles/Titles.tsx +205 -0
  239. package/lib/components/ToggleBar/ToggleBar.test.tsx +228 -0
  240. package/lib/components/ToggleBar/ToggleBar.tsx +208 -0
  241. package/lib/components/Tooltip/Tooltip.test.tsx +61 -0
  242. package/lib/components/Tooltip/Tooltip.tsx +203 -0
  243. package/lib/components/TreeView/TreeView.tsx +233 -0
  244. package/lib/contexts/ActionSheet/ActionSheetContextProvider.test.tsx +24 -0
  245. package/lib/contexts/ActionSheet/ActionSheetContextProvider.tsx +237 -0
  246. package/lib/contexts/AppProvider/AppProviders.tsx +56 -0
  247. package/lib/contexts/ColorSchemeProvider/ColorSchemeProvider.tsx +49 -0
  248. package/lib/contexts/Confirm/ConfirmContextProvider.test.tsx +24 -0
  249. package/lib/contexts/Confirm/ConfirmContextProvider.tsx +227 -0
  250. package/lib/contexts/DefaultsProvider/DefaultsProvider.tsx +178 -0
  251. package/lib/contexts/DialogsProvider/DialogsProvider.tsx +14 -0
  252. package/lib/contexts/KeysProvider/KeysProvider.tsx +344 -0
  253. package/lib/contexts/ModalProvider/ModalProvider.tsx +59 -0
  254. package/lib/contexts/ModeProvider/ModeProvider.tsx +26 -0
  255. package/lib/contexts/Notifier/Notifier.test.tsx +342 -0
  256. package/lib/contexts/Notifier/Notifier.tsx +209 -0
  257. package/lib/contexts/Prompt/PromptContextProvider.test.tsx +24 -0
  258. package/lib/contexts/Prompt/PromptContextProvider.tsx +280 -0
  259. package/lib/forms/Checkbox/Checkbox.test.tsx +171 -0
  260. package/lib/forms/Checkbox/Checkbox.tsx +256 -0
  261. package/lib/forms/ComboBox/ComboBox.test.tsx +24 -0
  262. package/lib/forms/ComboBox/ComboBox.tsx +464 -0
  263. package/lib/forms/ComboBox/MultiComboBox.test.tsx +30 -0
  264. package/lib/forms/ComboBox/MultiComboBox.tsx +282 -0
  265. package/lib/forms/ComboBox/useComboBoxScroll.test.ts +30 -0
  266. package/lib/forms/ComboBox/useComboBoxScroll.ts +35 -0
  267. package/lib/forms/Currency/CurrencyInput.test.tsx +131 -0
  268. package/lib/forms/Currency/CurrencyInput.tsx +269 -0
  269. package/lib/forms/Datetimes/DateInput.test.tsx +198 -0
  270. package/lib/forms/Datetimes/DateInput.tsx +56 -0
  271. package/lib/forms/Datetimes/DateTimeInput.test.tsx +223 -0
  272. package/lib/forms/Datetimes/DateTimeInput.tsx +102 -0
  273. package/lib/forms/Datetimes/TimeInput.test.tsx +218 -0
  274. package/lib/forms/Datetimes/TimeInput.tsx +100 -0
  275. package/lib/forms/File/FileInput.test.tsx +175 -0
  276. package/lib/forms/File/FileInput.tsx +240 -0
  277. package/lib/forms/Input.test.tsx +158 -0
  278. package/lib/forms/Input.tsx +542 -0
  279. package/lib/forms/MaskedInput/MaskedInput.tsx +651 -0
  280. package/lib/forms/Numeric/NumberInput.test.tsx +233 -0
  281. package/lib/forms/Numeric/NumberInput.tsx +171 -0
  282. package/lib/forms/Numeric/RangeInput.test.tsx +187 -0
  283. package/lib/forms/Numeric/RangeInput.tsx +166 -0
  284. package/lib/forms/Others/ColorInput.test.tsx +181 -0
  285. package/lib/forms/Others/ColorInput.tsx +117 -0
  286. package/lib/forms/Others/HiddenInput.test.tsx +25 -0
  287. package/lib/forms/Others/HiddenInput.tsx +46 -0
  288. package/lib/forms/Others/TelephoneInput.test.tsx +153 -0
  289. package/lib/forms/Others/TelephoneInput.tsx +26 -0
  290. package/lib/forms/Others/URLInput.test.tsx +153 -0
  291. package/lib/forms/Others/URLInput.tsx +30 -0
  292. package/lib/forms/Periodes/MonthInput.test.tsx +119 -0
  293. package/lib/forms/Periodes/MonthInput.tsx +63 -0
  294. package/lib/forms/Periodes/WeekInput.test.tsx +119 -0
  295. package/lib/forms/Periodes/WeekInput.tsx +63 -0
  296. package/lib/forms/Radio/Radio.test.tsx +322 -0
  297. package/lib/forms/Radio/Radio.tsx +347 -0
  298. package/lib/forms/Select/Select.test.tsx +223 -0
  299. package/lib/forms/Select/Select.tsx +405 -0
  300. package/lib/forms/TagsInput/TagsInput.test.tsx +27 -0
  301. package/lib/forms/TagsInput/TagsInput.tsx +289 -0
  302. package/lib/forms/Text/EmailInput.test.tsx +153 -0
  303. package/lib/forms/Text/EmailInput.tsx +29 -0
  304. package/lib/forms/Text/FormattedInput.tsx +271 -0
  305. package/lib/forms/Text/PasswordInput.test.tsx +160 -0
  306. package/lib/forms/Text/PasswordInput.tsx +154 -0
  307. package/lib/forms/Text/TextArea.test.tsx +164 -0
  308. package/lib/forms/Text/TextArea.tsx +169 -0
  309. package/lib/forms/Text/TextEditor.test.tsx +12 -0
  310. package/lib/forms/Text/TextEditor.tsx +612 -0
  311. package/lib/forms/Text/TextInput.test.tsx +147 -0
  312. package/lib/forms/Text/TextInput.tsx +60 -0
  313. package/lib/hooks/useCaretPosition.test.tsx +31 -0
  314. package/lib/hooks/useCaretPosition.tsx +23 -0
  315. package/lib/hooks/useClickOutside.test.tsx +101 -0
  316. package/lib/hooks/useClickOutside.ts +44 -0
  317. package/lib/hooks/useClipboard.ts +59 -0
  318. package/lib/hooks/useContextMenu.tsx +74 -0
  319. package/lib/hooks/useCookieState.tsx +117 -0
  320. package/lib/hooks/useDebounced.hooks.test.ts +70 -0
  321. package/lib/hooks/useDebounced.hooks.ts +110 -0
  322. package/lib/hooks/useFetchApi.ts +91 -0
  323. package/lib/hooks/useHotkeys.test.tsx +111 -0
  324. package/lib/hooks/useHotkeys.ts +139 -0
  325. package/lib/hooks/useIndexedDb.tsx +337 -0
  326. package/lib/hooks/useLocalStoredState.test.tsx +98 -0
  327. package/lib/hooks/useLocalStoredState.ts +86 -0
  328. package/lib/hooks/usePagination.test.ts +113 -0
  329. package/lib/hooks/usePagination.ts +96 -0
  330. package/lib/hooks/usePropState.ts +25 -0
  331. package/lib/hooks/useScrollIntoView.ts +250 -0
  332. package/lib/hooks/useSessionStoredState.ts +87 -0
  333. package/lib/hooks/useToggle.test.tsx +52 -0
  334. package/lib/hooks/useToggle.ts +30 -0
  335. package/lib/hooks/useUncontrolled.test.ts +52 -0
  336. package/lib/hooks/useUncontrolled.ts +65 -0
  337. package/lib/hooks/useValidatedState.test.tsx +37 -0
  338. package/lib/hooks/useValidatedState.ts +37 -0
  339. package/lib/index.ts +246 -0
  340. package/lib/internal_functions/createIconsInternal.tsx +94 -0
  341. package/lib/internal_functions/getAlignmentClass.ts +37 -0
  342. package/lib/internal_functions/getColorClass.ts +73 -0
  343. package/lib/internal_functions/getPositionClass.ts +15 -0
  344. package/lib/internal_functions/getSizeClass.ts +57 -0
  345. package/lib/internal_functions/index.ts +9 -0
  346. package/lib/styles/_all.scss +457 -0
  347. package/lib/styles/bulma-box.scss +135 -0
  348. package/lib/styles/button.scss +565 -0
  349. package/lib/styles/buttons.scss +19 -0
  350. package/lib/styles/calendar.scss +148 -0
  351. package/lib/styles/checkradio.scss +662 -0
  352. package/lib/styles/datalist.scss +27 -0
  353. package/lib/styles/divider.scss +30 -0
  354. package/lib/styles/dropdown.scss +175 -0
  355. package/lib/styles/extra-inputs.scss +77 -0
  356. package/lib/styles/hero.scss +285 -0
  357. package/lib/styles/indicators.scss +142 -0
  358. package/lib/styles/keyboard.scss +15 -0
  359. package/lib/styles/linkbutton.scss +40 -0
  360. package/lib/styles/menu.scss +164 -0
  361. package/lib/styles/mini-calendar.scss +70 -0
  362. package/lib/styles/notifier-container.scss +27 -0
  363. package/lib/styles/panel.scss +222 -0
  364. package/lib/styles/quickview.scss +140 -0
  365. package/lib/styles/range-sliders.scss +298 -0
  366. package/lib/styles/select.scss +144 -0
  367. package/lib/styles/steps.scss +288 -0
  368. package/lib/styles/table.scss +330 -0
  369. package/lib/styles/tabs.scss +271 -0
  370. package/lib/styles/timeline.scss +314 -0
  371. package/lib/styles/tooltip.scss +32 -0
  372. package/lib/styles/treeview.scss +37 -0
  373. package/lib/test-data.ts +9002 -0
  374. package/lib/types/index.tsx +180 -0
  375. package/lib/types/react-app-env.d.ts +1 -0
  376. package/lib/types/typings.d.ts +373 -0
  377. package/lib/utils/JSDateTime.class.test.ts +890 -0
  378. package/lib/utils/JSDateTime.class.ts +766 -0
  379. package/lib/utils/JSDuration.class.test.ts +98 -0
  380. package/lib/utils/JSDuration.class.ts +159 -0
  381. package/lib/utils/calculateTxtColor.function.test.ts +53 -0
  382. package/lib/utils/calculateTxtColor.function.ts +56 -0
  383. package/lib/utils/colors.test.ts +78 -0
  384. package/lib/utils/colors.ts +178 -0
  385. package/lib/utils/colorscheme.ts +26 -0
  386. package/lib/utils/compare.test.ts +137 -0
  387. package/lib/utils/compare.ts +32 -0
  388. package/lib/utils/deserialize.function.test.ts +15 -0
  389. package/lib/utils/deserialize.function.ts +9 -0
  390. package/lib/utils/hasBSN.function.test.ts +27 -0
  391. package/lib/utils/hasBSN.function.ts +53 -0
  392. package/lib/utils/isIBAN.function.test.ts +25 -0
  393. package/lib/utils/isIBAN.function.ts +131 -0
  394. package/lib/utils/math.test.ts +70 -0
  395. package/lib/utils/math.ts +32 -0
  396. package/lib/utils/operators.test.ts +619 -0
  397. package/lib/utils/operators.ts +242 -0
  398. package/lib/utils/serialize.function.test.ts +13 -0
  399. package/lib/utils/serialize.function.ts +9 -0
  400. package/lib/utils/sorting.test.ts +114 -0
  401. package/lib/utils/sorting.ts +50 -0
  402. package/lib/utils/string.utils.test.ts +85 -0
  403. package/lib/utils/string.utils.ts +146 -0
  404. package/lib/vite-env.d.ts +1 -0
  405. package/package.json +55 -83
  406. package/public/vite.svg +1 -0
  407. package/src/App.tsx +77 -0
  408. package/src/AppHero.tsx +102 -0
  409. package/src/Console.ts +28 -0
  410. package/src/MOCK_DATA.ts +10014 -0
  411. package/src/Tabs/AspectRatioTab.tsx +235 -0
  412. package/src/Tabs/ButtonsAndTags.tsx +843 -0
  413. package/src/Tabs/CalendarTab.tsx +560 -0
  414. package/src/Tabs/ContextsTab.tsx +820 -0
  415. package/src/Tabs/DataTableTab.tsx +291 -0
  416. package/src/Tabs/FunctionsTab.tsx +947 -0
  417. package/src/Tabs/HooksTab.tsx +1008 -0
  418. package/src/Tabs/InputsTab.tsx +2319 -0
  419. package/src/Tabs/LayoutsTab.tsx +751 -0
  420. package/src/Tabs/Nieuw.tsx +440 -0
  421. package/src/Tabs/NotificationTab.tsx +301 -0
  422. package/src/Tabs/OverigeTab.tsx +1631 -0
  423. package/src/Tabs/ReadmeTab.tsx +260 -0
  424. package/src/Tabs/TestTab.tsx +44 -0
  425. package/src/Tabs/datatable.css +7 -0
  426. package/src/Tabs/index.ts +14 -0
  427. package/src/assets/react.svg +1 -0
  428. package/src/components/Chevrons.tsx +15 -0
  429. package/src/components/CodeVoorbeeld.tsx +41 -0
  430. package/src/components/Nieuwsblok.tsx +22 -0
  431. package/src/main.tsx +10 -0
  432. package/src/styles/example-styles.scss +8 -0
  433. package/src/styles.css +14244 -0
  434. package/src/styles.css.map +1 -0
  435. package/src/vite-env.d.ts +1 -0
  436. package/tsconfig.app.json +32 -0
  437. package/tsconfig.build.json +132 -0
  438. package/tsconfig.json +11 -0
  439. package/tsconfig.node.json +30 -0
  440. package/vite.config.ts +52 -0
  441. package/dist/index.cjs +0 -283
  442. package/dist/index.d.cts +0 -5773
  443. package/styles/tooltip.scss +0 -201
  444. /package/{styles → dist/styles}/bulma-box.scss +0 -0
  445. /package/{styles → dist/styles}/button.scss +0 -0
  446. /package/{styles → dist/styles}/buttons.scss +0 -0
  447. /package/{styles → dist/styles}/calendar.scss +0 -0
  448. /package/{styles → dist/styles}/checkradio.scss +0 -0
  449. /package/{styles → dist/styles}/datalist.scss +0 -0
  450. /package/{styles → dist/styles}/divider.scss +0 -0
  451. /package/{styles → dist/styles}/dropdown.scss +0 -0
  452. /package/{styles → dist/styles}/extra-inputs.scss +0 -0
  453. /package/{styles → dist/styles}/hero.scss +0 -0
  454. /package/{styles → dist/styles}/indicators.scss +0 -0
  455. /package/{styles → dist/styles}/keyboard.scss +0 -0
  456. /package/{styles → dist/styles}/linkbutton.scss +0 -0
  457. /package/{styles → dist/styles}/menu.scss +0 -0
  458. /package/{styles → dist/styles}/mini-calendar.scss +0 -0
  459. /package/{styles → dist/styles}/notifier-container.scss +0 -0
  460. /package/{styles → dist/styles}/panel.scss +0 -0
  461. /package/{styles → dist/styles}/quickview.scss +0 -0
  462. /package/{styles → dist/styles}/range-sliders.scss +0 -0
  463. /package/{styles → dist/styles}/select.scss +0 -0
  464. /package/{styles → dist/styles}/steps.scss +0 -0
  465. /package/{styles → dist/styles}/table.scss +0 -0
  466. /package/{styles → dist/styles}/tabs.scss +0 -0
  467. /package/{styles → dist/styles}/timeline.scss +0 -0
  468. /package/{styles → dist/styles}/treeview.scss +0 -0
@@ -0,0 +1,301 @@
1
+ import { faHorse, faHorseHead } from '@fortawesome/free-solid-svg-icons';
2
+ import { Columns, Column, Message, Notification, Section, H3, H4 } from '@lib/index';
3
+ import { CodeVoorbeeld } from '../components/CodeVoorbeeld';
4
+
5
+ export function NotificationTab() {
6
+ return (
7
+ <>
8
+ <Section>
9
+ <H3>Notifications</H3>
10
+ <Columns multiline gap="3">
11
+ <div className="column is-one-third">
12
+ <Notification icon={faHorseHead} onDismiss={() => {}}>
13
+ Dit is een <strong>Default</strong> info-notification met een icon
14
+ </Notification>
15
+ </div>
16
+ <div className="column is-one-third">
17
+ <Notification.Primary icon={faHorse} onDismiss={() => {}}>
18
+ Dit is een primary-notification met een icon
19
+ </Notification.Primary>
20
+ </div>
21
+ <div className="column is-one-third">
22
+ <Notification.Link onDismiss={() => {}}>Dit is een link-notification</Notification.Link>
23
+ </div>
24
+ <div className="column is-one-third">
25
+ <Notification.Info onDismiss={() => {}}>Dit is een info-notification</Notification.Info>
26
+ </div>
27
+ <div className="column is-one-third">
28
+ <Notification.Success onDismiss={() => {}}>Dit is een success notification</Notification.Success>
29
+ </div>
30
+ <div className="column is-one-third">
31
+ <Notification.Warning onDismiss={() => {}}>Dit is een Warning notification</Notification.Warning>
32
+ </div>
33
+ <div className="column is-one-third">
34
+ <Notification.Danger onDismiss={() => {}}>Dit is een Dangerous notification</Notification.Danger>
35
+ </div>
36
+ <div className="column is-one-third">
37
+ <Notification color="light" onDismiss={() => {}}>
38
+ Dit is een Light notification
39
+ </Notification>
40
+ </div>
41
+ <div className="column is-one-third">
42
+ <Notification color="dark" onDismiss={() => {}}>
43
+ Dit is een Dark notification
44
+ </Notification>
45
+ </div>
46
+
47
+ <div className="column is-one-third">
48
+ <Notification.Danger onDismiss={() => {}}>
49
+ Well, I think I should point out first, Brian, in all fairness, we are not, in fact, the rescue committee. However, I have been asked to read the
50
+ following prepare statement on behalf of the movement. "We the People's Front of Judea, brackets, officials, end brackets, do hereby convey our
51
+ sincere fraternal and sisterly greetings to you, Brian, on this, the occasion of your martyrdom." Oh, oh, I see! Running away, eh? You yellow
52
+ bastards! Come back here and take what's coming to you! I'll bite your legs off! Are you suggesting coconuts migrate?
53
+ </Notification.Danger>
54
+ </div>
55
+ <div className="column is-one-third">
56
+ <Notification.Success onDismiss={() => {}}>
57
+ There's no Messiah in here. There's a mess all right, but no Messiah. Now go away! All right, but apart from the sanitation, medicine, education,
58
+ wine, public order, irrigation, roads, the fresh water system and public health, what have the Romans ever done for us? Manacles! Ooooh, my idea
59
+ of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun shines out your ass, sonny. Oh, what wouldn't I
60
+ give to be spat at in the face? I sometimes hang awake at night, dreaming of being spat at in the face
61
+ </Notification.Success>
62
+ </div>
63
+ <div className="column is-one-third">
64
+ <Notification.Info onDismiss={() => {}}>
65
+ This is boring. Let's go watch a stoning. You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my
66
+ nose at you, so-called "Arthur King," you and all your silly English K-nig-hts. Oh, king eh? Very nice. And how'd you get that, eh? By exploiting
67
+ the workers. By hanging on to outdated imperialist dogma which perpetuates the economic and social differences in our society. I'm Brian, and so's
68
+ my wife! At this time, a friend shall lose his friend's hammer and the young shall not know where lieth the things possessed by their fathers that
69
+ their fathers put there only just the night before, about eight o'clock.
70
+ </Notification.Info>
71
+ </div>
72
+ </Columns>
73
+
74
+ <Columns centered>
75
+ <Column size="1/2">
76
+ <CodeVoorbeeld
77
+ code={`
78
+ <Notification onDismiss={() => {}} icon={faHorseHead}>
79
+ Dit is een <strong>Default</strong> info-notification
80
+ </Notification>
81
+
82
+ <Notification.Primary onDismiss={() => {}} icon={faHorse}>
83
+ Dit is een <strong>BOLD</strong> primary-notification
84
+ </Notification.Primary>
85
+
86
+ <Notification.Link onDismiss={() => {}} icon="fas fa-horse-head">
87
+ Dit is een <strong>BOLD</strong> link-notification
88
+ </Notification.Link>
89
+
90
+ <Notification.Info onDismiss={() => {}}>
91
+ Dit is een <strong>BOLD</strong> info-notification
92
+ </Notification.Info>
93
+
94
+ <Notification.Success onDismiss={() => {}}>
95
+ Dit is een <strong>BOLD</strong> success notification
96
+ </Notification.Success>
97
+
98
+ <Notification.Warning onDismiss={() => {}}>
99
+ Dit is een <strong>BOLD</strong> Warning notification
100
+ </Notification.Warning>
101
+
102
+ <Notification.Danger onDismiss={() => {}}>
103
+ Dit is een <strong>BOLD</strong> dangerous notification
104
+ </Notification.Danger>
105
+
106
+ <Notification color='light' onDismiss={() => {}}>
107
+ Dit is een <strong>BOLD</strong> dangerous notification
108
+ </Notification>
109
+
110
+ <Notification color='dark' onDismiss={() => {}}>
111
+ Dit is een <strong>BOLD</strong> dangerous notification
112
+ </Notification>
113
+ `}
114
+ />
115
+ </Column>
116
+ </Columns>
117
+ </Section>
118
+
119
+ <Section>
120
+ <H3>Messages</H3>
121
+ <Columns gap="3">
122
+ <Column size="1/3">
123
+ <H4 size="5">Message sizes</H4>
124
+ <Columns centered>
125
+ <Column size="1/2">
126
+ <CodeVoorbeeld
127
+ code={`
128
+ <Message.Info size="s" title="Message small (size='s')">
129
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun
130
+ shines out your ass, sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
131
+ </Message.Info>
132
+
133
+ <Message.Info size="m" title="Message medium (size='m', DEFAULT)">
134
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun
135
+ shines out your ass, sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
136
+ </Message.Info>
137
+
138
+ <Message.Info size="l" title="Message large (size='l')">
139
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun
140
+ shines out your ass, sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
141
+ </Message.Info>
142
+
143
+ <Message.Info size="xl" title="Message extra large (size='xl')">
144
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun
145
+ shines out your ass, sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
146
+ </Message.Info>
147
+ `}
148
+ />
149
+ </Column>
150
+ </Columns>
151
+ <Message.Info size="s" title="Message small (size='s')">
152
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun shines out your ass,
153
+ sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
154
+ </Message.Info>
155
+ <Message.Info size="m" title="Message medium (size='m', DEFAULT)">
156
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun shines out your ass,
157
+ sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
158
+ </Message.Info>
159
+ <Message.Info size="l" title="Message large (size='l')">
160
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun shines out your ass,
161
+ sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
162
+ </Message.Info>
163
+ <Message.Info size="xl" title="Message extra large (size='xl')">
164
+ Manacles! Ooooh, my idea of heaven, is to be allowed to be put in manacles. Just for a few hours. They must think the sun shines out your ass,
165
+ sonny. There's no Messiah in here. There's a mess all right, but no Messiah. Now go away!
166
+ </Message.Info>
167
+ </Column>
168
+
169
+ <Column>
170
+ <H4 size="5">Message colors en dismissable</H4>
171
+ <Columns centered>
172
+ <Column size="1/2">
173
+ <CodeVoorbeeld
174
+ code={`
175
+ <Message size="s" title="Default message" onDismiss={() => console.log('close een message')}>
176
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
177
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
178
+ </Message>
179
+
180
+ <Message size="s" title="Default message met color prop" color="s" onDismiss={() => console.log('close een message')}>
181
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
182
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
183
+ </Message>
184
+
185
+ <Message.Primary size="s" title="Primary color (color='p')" onDismiss={() => console.log('close een message')}>
186
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
187
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
188
+ </Message.Primary>
189
+
190
+ <Message.Info size="s" title="Info color (color='i', DEFAULT)" onDismiss={() => console.log('close een message')}>
191
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
192
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
193
+ </Message.Info>
194
+
195
+ <Message.Link size="s" title="Link color (color='l')" onDismiss={() => console.log('close een message')}>
196
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
197
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
198
+ </Message.Link>
199
+
200
+ <Message.Success size="s" title="Success color (color='s')" onDismiss={() => console.log('close een message')}>
201
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
202
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
203
+ </Message.Success>
204
+
205
+ <Message.Warning size="s" title="Warning color (color='w')" onDismiss={() => console.log('close een message')}>
206
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
207
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
208
+ </Message.Warning>
209
+
210
+ <Message.Danger size="s" title="Danger color (color='d')" onDismiss={() => console.log('close een message')}>
211
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly
212
+ person. I blow my nose at you, so-called "Arthur King," you and all your silly English K-nig-hts.
213
+ </Message.Danger>
214
+ `}
215
+ />
216
+ </Column>
217
+ </Columns>
218
+ <Message size="s" title="Default message" onDismiss={() => console.log('close een message')}>
219
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
220
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
221
+ </Message>
222
+ <Message size="s" title="Default message met color prop" color="s" onDismiss={() => console.log('close een message')}>
223
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
224
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
225
+ </Message>
226
+ <Message.Primary size="s" title="Primary color (color='p')" onDismiss={() => console.log('close een message')}>
227
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
228
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
229
+ </Message.Primary>
230
+ <Message.Info size="s" title="Info color (color='i', DEFAULT)" onDismiss={() => console.log('close een message')}>
231
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
232
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
233
+ </Message.Info>
234
+ <Message.Link size="s" title="Link color (color='l')" onDismiss={() => console.log('close een message')}>
235
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
236
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
237
+ </Message.Link>
238
+ <Message.Success size="s" title="Success color (color='s')" onDismiss={() => console.log('close een message')}>
239
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
240
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
241
+ </Message.Success>
242
+ <Message.Warning size="s" title="Warning color (color='w')" onDismiss={() => console.log('close een message')}>
243
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
244
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
245
+ </Message.Warning>
246
+ <Message.Danger size="s" title="Danger color (color='d')" onDismiss={() => console.log('close een message')}>
247
+ Are you suggesting coconuts migrate? You don't frighten us, English pig dogs. Go and boil your bottoms, you sons of a silly person. I blow my nose
248
+ at you, so-called "Arthur King," you and all your silly English K-nig-hts.
249
+ </Message.Danger>
250
+ </Column>
251
+
252
+ <Column size="1/3">
253
+ <H4 size="5">Collapsable & startCollapsed</H4>
254
+ <Columns centered>
255
+ <Column size="1/2">
256
+ <CodeVoorbeeld
257
+ code={`
258
+ <Message color='light' title="Collapsable message" collapsable>
259
+ Come and see the violence inherent in the system. Help! Help! I'm being repressed! Stwike him, Centuwion! Stwike him vewy
260
+ wuffly! The Lady of the Lake, her arm clad in the purest shimmering samite held aloft Excalibur from the bosom of the water,
261
+ signifying by divine providence that I, Arthur, was to carry Excalibur. THAT is why I am your king. Listen, strange women
262
+ lyin' in ponds distributin' swords is no basis for a system of government. Supreme executive power derives from a mandate from
263
+ the masses, not from some farcical aquatic ceremony.
264
+ </Message>
265
+
266
+ <Message color='dark' title="Collapsable message & startcollapsed" collapsable startCollapsed>
267
+ Come and see the violence inherent in the system. Help! Help! I'm being repressed! Stwike him, Centuwion! Stwike him vewy
268
+ wuffly! The Lady of the Lake, her arm clad in the purest shimmering samite held aloft Excalibur from the bosom of the water,
269
+ signifying by divine providence that I, Arthur, was to carry Excalibur. THAT is why I am your king. Listen, strange women
270
+ lyin' in ponds distributin' swords is no basis for a system of government. Supreme executive power derives from a mandate from
271
+ the masses, not from some farcical aquatic ceremony.
272
+ </Message>`}
273
+ />
274
+ </Column>
275
+ </Columns>
276
+ <Message color="light" title="Collapsable message" collapsable>
277
+ Come and see the violence inherent in the system. Help! Help! I'm being repressed! Stwike him, Centuwion! Stwike him vewy wuffly! The Lady of the
278
+ Lake, her arm clad in the purest shimmering samite held aloft Excalibur from the bosom of the water, signifying by divine providence that I,
279
+ Arthur, was to carry Excalibur. THAT is why I am your king. Listen, strange women lyin' in ponds distributin' swords is no basis for a system of
280
+ government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony.
281
+ </Message>
282
+ <Message color="dark" title="Collapsable message & startcollapsed" collapsable startCollapsed>
283
+ Come and see the violence inherent in the system. Help! Help! I'm being repressed! Stwike him, Centuwion! Stwike him vewy wuffly! The Lady of the
284
+ Lake, her arm clad in the purest shimmering samite held aloft Excalibur from the bosom of the water, signifying by divine providence that I,
285
+ Arthur, was to carry Excalibur. THAT is why I am your king. Listen, strange women lyin' in ponds distributin' swords is no basis for a system of
286
+ government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony.
287
+ </Message>
288
+ <Message color="p">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
289
+ <Message color="i">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
290
+ <Message color="l">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
291
+ <Message color="s">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
292
+ <Message color="d">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
293
+ <Message color="w">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
294
+ <Message color="dark">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
295
+ <Message color="light">Message zonder title EN zonder onDismiss EN niet collapsable</Message>
296
+ </Column>
297
+ </Columns>
298
+ </Section>
299
+ </>
300
+ );
301
+ }