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.
- package/.github/workflows/deploy-example.yml +43 -0
- package/.github/workflows/run-test.yml +31 -0
- package/.prettierignore +5 -0
- package/.prettierrc.json +19 -0
- package/dist/classes/Console.d.ts +29 -0
- package/dist/classes/FetchWrapper.d.ts +124 -0
- package/dist/components/AspectRatio/AspectRatio.d.ts +28 -0
- package/dist/components/Block/Block.d.ts +9 -0
- package/dist/components/Box/BorderBox.d.ts +29 -0
- package/dist/components/Box/Box.d.ts +20 -0
- package/dist/components/Button/Button.d.ts +84 -0
- package/dist/components/ButtonGroup/ButtonGroup.d.ts +26 -0
- package/dist/components/Calendar/CalendarItems/CalendarColoredItem.d.ts +18 -0
- package/dist/components/Calendar/CalendarItems/CalendarItem.d.ts +18 -0
- package/dist/components/Calendar/DayContainer.d.ts +25 -0
- package/dist/components/Calendar/EventDescriptions.d.ts +33 -0
- package/dist/components/Calendar/Fourweeks/FourweeksView.d.ts +23 -0
- package/dist/components/Calendar/Mini/MiniView.d.ts +24 -0
- package/dist/components/Calendar/Month/MonthView.d.ts +23 -0
- package/dist/components/Calendar/Planning/PlanningView.d.ts +42 -0
- package/dist/components/Calendar/Props.d.ts +58 -0
- package/dist/components/Calendar/Week/AlldayContainer.d.ts +19 -0
- package/dist/components/Calendar/Week/HourRow.d.ts +30 -0
- package/dist/components/Calendar/Week/WeekView.d.ts +24 -0
- package/dist/components/Calendar/calendar.functions.d.ts +10 -0
- package/dist/components/Calendar/index.d.ts +15 -0
- package/dist/components/CodeBlock/CodeBlock.d.ts +49 -0
- package/dist/components/Columns/Column.d.ts +207 -0
- package/dist/components/Columns/Columns.d.ts +35 -0
- package/dist/components/Container/Container.d.ts +44 -0
- package/dist/components/Content/Content.d.ts +22 -0
- package/dist/components/DataTable/DataTable.d.ts +187 -0
- package/dist/components/Divider/Divider.d.ts +8 -0
- package/dist/components/Dropdown/Dropdown.d.ts +25 -0
- package/dist/components/Footer/Footer.d.ts +22 -0
- package/dist/components/Help/Help.d.ts +19 -0
- package/dist/components/Hero/Hero.d.ts +104 -0
- package/dist/components/Icon/Icon.d.ts +82 -0
- package/dist/components/Image/Image.d.ts +28 -0
- package/dist/components/Indicator/Indicator.d.ts +25 -0
- package/dist/components/Kbd/Kbd.d.ts +30 -0
- package/dist/components/Label/Label.d.ts +11 -0
- package/dist/components/Link/Link.d.ts +44 -0
- package/dist/components/Menu/Menu.d.ts +64 -0
- package/dist/components/Message/Message.d.ts +49 -0
- package/dist/components/Modal/Modal.d.ts +74 -0
- package/dist/components/Notification/Notification.d.ts +38 -0
- package/dist/components/Pagination/Pagination.d.ts +56 -0
- package/dist/components/Panel/Panel.d.ts +98 -0
- package/dist/components/ProgressBar/ProgressBar.d.ts +28 -0
- package/dist/components/QuickView/QuickView.d.ts +61 -0
- package/dist/components/ScrollArea/ScrollArea.d.ts +76 -0
- package/dist/components/Section/Section.d.ts +21 -0
- package/dist/components/SimpleTable/SimpleTable.d.ts +121 -0
- package/dist/components/Steps/Steps.d.ts +61 -0
- package/dist/components/TabBar/TabBar.d.ts +47 -0
- package/dist/components/Tag/Tag.d.ts +54 -0
- package/dist/components/TimeLine/TimeLine.d.ts +62 -0
- package/dist/components/Titles/Titles.d.ts +71 -0
- package/dist/components/ToggleBar/ToggleBar.d.ts +80 -0
- package/dist/components/Tooltip/Tooltip.d.ts +49 -0
- package/dist/components/TreeView/TreeView.d.ts +48 -0
- package/dist/contexts/ActionSheet/ActionSheetContextProvider.d.ts +76 -0
- package/dist/contexts/AppProvider/AppProviders.d.ts +18 -0
- package/dist/contexts/ColorSchemeProvider/ColorSchemeProvider.d.ts +15 -0
- package/dist/contexts/Confirm/ConfirmContextProvider.d.ts +60 -0
- package/dist/contexts/DefaultsProvider/DefaultsProvider.d.ts +94 -0
- package/dist/contexts/DialogsProvider/DialogsProvider.d.ts +4 -0
- package/dist/contexts/KeysProvider/KeysProvider.d.ts +35 -0
- package/dist/contexts/ModalProvider/ModalProvider.d.ts +11 -0
- package/dist/contexts/ModeProvider/ModeProvider.d.ts +14 -0
- package/dist/contexts/Notifier/Notifier.d.ts +81 -0
- package/dist/contexts/Prompt/PromptContextProvider.d.ts +71 -0
- package/dist/forms/Checkbox/Checkbox.d.ts +47 -0
- package/dist/forms/ComboBox/ComboBox.d.ts +44 -0
- package/dist/forms/ComboBox/MultiComboBox.d.ts +44 -0
- package/dist/forms/ComboBox/useComboBoxScroll.d.ts +4 -0
- package/dist/forms/Currency/CurrencyInput.d.ts +47 -0
- package/dist/forms/Datetimes/DateInput.d.ts +37 -0
- package/dist/forms/Datetimes/DateTimeInput.d.ts +44 -0
- package/dist/forms/Datetimes/TimeInput.d.ts +42 -0
- package/dist/forms/File/FileInput.d.ts +71 -0
- package/dist/forms/Input.d.ts +223 -0
- package/dist/forms/MaskedInput/MaskedInput.d.ts +46 -0
- package/dist/forms/Numeric/NumberInput.d.ts +14 -0
- package/dist/forms/Numeric/RangeInput.d.ts +21 -0
- package/dist/forms/Others/ColorInput.d.ts +56 -0
- package/dist/forms/Others/HiddenInput.d.ts +29 -0
- package/dist/forms/Others/TelephoneInput.d.ts +14 -0
- package/dist/forms/Others/URLInput.d.ts +14 -0
- package/dist/forms/Periodes/MonthInput.d.ts +43 -0
- package/dist/forms/Periodes/WeekInput.d.ts +43 -0
- package/dist/forms/Radio/Radio.d.ts +97 -0
- package/dist/forms/Select/Select.d.ts +132 -0
- package/dist/forms/TagsInput/TagsInput.d.ts +44 -0
- package/dist/forms/Text/EmailInput.d.ts +14 -0
- package/dist/forms/Text/FormattedInput.d.ts +54 -0
- package/dist/forms/Text/PasswordInput.d.ts +19 -0
- package/dist/forms/Text/TextArea.d.ts +31 -0
- package/dist/forms/Text/TextEditor.d.ts +36 -0
- package/dist/forms/Text/TextInput.d.ts +30 -0
- package/dist/hooks/useCaretPosition.d.ts +8 -0
- package/dist/hooks/useClickOutside.d.ts +15 -0
- package/dist/hooks/useClipboard.d.ts +21 -0
- package/dist/hooks/useContextMenu.d.ts +29 -0
- package/dist/hooks/useCookieState.d.ts +37 -0
- package/dist/hooks/useDebounced.hooks.d.ts +55 -0
- package/dist/hooks/useFetchApi.d.ts +65 -0
- package/dist/hooks/useHotkeys.d.ts +44 -0
- package/dist/hooks/useIndexedDb.d.ts +89 -0
- package/dist/hooks/useLocalStoredState.d.ts +36 -0
- package/dist/hooks/usePagination.d.ts +25 -0
- package/dist/hooks/usePropState.d.ts +16 -0
- package/dist/hooks/useScrollIntoView.d.ts +59 -0
- package/dist/hooks/useSessionStoredState.d.ts +38 -0
- package/dist/hooks/useToggle.d.ts +16 -0
- package/dist/hooks/useUncontrolled.d.ts +44 -0
- package/dist/hooks/useValidatedState.d.ts +21 -0
- package/dist/index.d.ts +169 -5773
- package/dist/index.js +37319 -55
- package/dist/internal_functions/createIconsInternal.d.ts +17 -0
- package/dist/internal_functions/getAlignmentClass.d.ts +16 -0
- package/dist/internal_functions/getColorClass.d.ts +23 -0
- package/dist/internal_functions/getPositionClass.d.ts +2 -0
- package/dist/internal_functions/getSizeClass.d.ts +23 -0
- package/dist/internal_functions/index.d.ts +8 -0
- package/{styles → dist/styles}/_all.scss +3 -1
- package/dist/styles/tooltip.scss +32 -0
- package/dist/test-data.d.ts +9 -0
- package/dist/types/index.d.ts +111 -0
- package/dist/utils/JSDateTime.class.d.ts +510 -0
- package/dist/utils/JSDuration.class.d.ts +79 -0
- package/dist/utils/calculateTxtColor.function.d.ts +14 -0
- package/dist/utils/colors.d.ts +26 -0
- package/dist/utils/colorscheme.d.ts +5 -0
- package/dist/utils/compare.d.ts +7 -0
- package/dist/utils/deserialize.function.d.ts +2 -0
- package/dist/utils/hasBSN.function.d.ts +27 -0
- package/dist/utils/isIBAN.function.d.ts +24 -0
- package/dist/utils/math.d.ts +22 -0
- package/dist/utils/operators.d.ts +192 -0
- package/dist/utils/serialize.function.d.ts +2 -0
- package/dist/utils/sorting.d.ts +34 -0
- package/dist/utils/string.utils.d.ts +72 -0
- package/eslint.config.js +108 -0
- package/index.html +16 -0
- package/jest.config.ts +12 -0
- package/lib/classes/Console.ts +78 -0
- package/lib/classes/FetchWrapper.ts +392 -0
- package/lib/components/AspectRatio/AspectRatio.test.tsx +67 -0
- package/lib/components/AspectRatio/AspectRatio.tsx +40 -0
- package/lib/components/Block/Block.test.tsx +24 -0
- package/lib/components/Block/Block.tsx +13 -0
- package/lib/components/Box/BorderBox.test.tsx +24 -0
- package/lib/components/Box/BorderBox.tsx +79 -0
- package/lib/components/Box/Box.test.tsx +24 -0
- package/lib/components/Box/Box.tsx +30 -0
- package/lib/components/Button/Button.test.tsx +871 -0
- package/lib/components/Button/Button.tsx +217 -0
- package/lib/components/ButtonGroup/ButtonGroup.test.tsx +115 -0
- package/lib/components/ButtonGroup/ButtonGroup.tsx +130 -0
- package/lib/components/Calendar/CalendarItems/CalendarColoredItem.tsx +63 -0
- package/lib/components/Calendar/CalendarItems/CalendarItem.tsx +49 -0
- package/lib/components/Calendar/DayContainer.tsx +115 -0
- package/lib/components/Calendar/EventDescriptions.tsx +131 -0
- package/lib/components/Calendar/Fourweeks/FourweeksView.test.tsx +262 -0
- package/lib/components/Calendar/Fourweeks/FourweeksView.tsx +169 -0
- package/lib/components/Calendar/Mini/MiniView.tsx +127 -0
- package/lib/components/Calendar/Month/MonthView.test.tsx +266 -0
- package/lib/components/Calendar/Month/MonthView.tsx +178 -0
- package/lib/components/Calendar/Planning/PlanningView.tsx +195 -0
- package/lib/components/Calendar/Props.tsx +64 -0
- package/lib/components/Calendar/Week/AlldayContainer.tsx +38 -0
- package/lib/components/Calendar/Week/HourRow.tsx +159 -0
- package/lib/components/Calendar/Week/WeekView.test.tsx +291 -0
- package/lib/components/Calendar/Week/WeekView.tsx +176 -0
- package/lib/components/Calendar/calendar.functions.ts +32 -0
- package/lib/components/Calendar/index.ts +17 -0
- package/lib/components/CodeBlock/CodeBlock.tsx +128 -0
- package/lib/components/Columns/Column.test.tsx +145 -0
- package/lib/components/Columns/Column.tsx +316 -0
- package/lib/components/Columns/Columns.test.tsx +95 -0
- package/lib/components/Columns/Columns.tsx +62 -0
- package/lib/components/Container/Container.test.tsx +87 -0
- package/lib/components/Container/Container.tsx +140 -0
- package/lib/components/Content/Content.test.tsx +51 -0
- package/lib/components/Content/Content.tsx +31 -0
- package/lib/components/DataTable/DataTable.test.tsx +403 -0
- package/lib/components/DataTable/DataTable.tsx +726 -0
- package/lib/components/Divider/Divider.tsx +18 -0
- package/lib/components/Dropdown/Dropdown.tsx +112 -0
- package/lib/components/Footer/Footer.test.tsx +42 -0
- package/lib/components/Footer/Footer.tsx +34 -0
- package/lib/components/Help/Help.test.tsx +83 -0
- package/lib/components/Help/Help.tsx +25 -0
- package/lib/components/Hero/Hero.test.tsx +222 -0
- package/lib/components/Hero/Hero.tsx +214 -0
- package/lib/components/Icon/Icon.test.tsx +157 -0
- package/lib/components/Icon/Icon.tsx +192 -0
- package/lib/components/Image/Image.test.tsx +72 -0
- package/lib/components/Image/Image.tsx +60 -0
- package/lib/components/Indicator/Indicator.test.tsx +68 -0
- package/lib/components/Indicator/Indicator.tsx +46 -0
- package/lib/components/Kbd/Kbd.test.tsx +49 -0
- package/lib/components/Kbd/Kbd.tsx +51 -0
- package/lib/components/Label/Label.tsx +21 -0
- package/lib/components/Link/Link.test.tsx +84 -0
- package/lib/components/Link/Link.tsx +87 -0
- package/lib/components/Menu/Menu.test.tsx +154 -0
- package/lib/components/Menu/Menu.tsx +264 -0
- package/lib/components/Message/Message.test.tsx +112 -0
- package/lib/components/Message/Message.tsx +154 -0
- package/lib/components/Modal/Modal.test.tsx +188 -0
- package/lib/components/Modal/Modal.tsx +188 -0
- package/lib/components/Notification/Notification.test.tsx +175 -0
- package/lib/components/Notification/Notification.tsx +110 -0
- package/lib/components/Pagination/Pagination.tsx +143 -0
- package/lib/components/Panel/Panel.tsx +225 -0
- package/lib/components/ProgressBar/ProgressBar.test.tsx +92 -0
- package/lib/components/ProgressBar/ProgressBar.tsx +42 -0
- package/lib/components/QuickView/QuickView.test.tsx +81 -0
- package/lib/components/QuickView/QuickView.tsx +122 -0
- package/lib/components/ScrollArea/ScrollArea.test.tsx +682 -0
- package/lib/components/ScrollArea/ScrollArea.tsx +183 -0
- package/lib/components/Section/Section.test.tsx +24 -0
- package/lib/components/Section/Section.tsx +32 -0
- package/lib/components/SimpleTable/SimpleTable.test.tsx +135 -0
- package/lib/components/SimpleTable/SimpleTable.tsx +327 -0
- package/lib/components/Steps/Steps.test.tsx +356 -0
- package/lib/components/Steps/Steps.tsx +164 -0
- package/lib/components/TabBar/TabBar.test.tsx +134 -0
- package/lib/components/TabBar/TabBar.tsx +125 -0
- package/lib/components/Tag/Tag.test.tsx +184 -0
- package/lib/components/Tag/Tag.tsx +131 -0
- package/lib/components/TimeLine/TimeLine.test.tsx +149 -0
- package/lib/components/TimeLine/TimeLine.tsx +116 -0
- package/lib/components/Titles/Titles.test.tsx +53 -0
- package/lib/components/Titles/Titles.tsx +205 -0
- package/lib/components/ToggleBar/ToggleBar.test.tsx +228 -0
- package/lib/components/ToggleBar/ToggleBar.tsx +208 -0
- package/lib/components/Tooltip/Tooltip.test.tsx +61 -0
- package/lib/components/Tooltip/Tooltip.tsx +203 -0
- package/lib/components/TreeView/TreeView.tsx +233 -0
- package/lib/contexts/ActionSheet/ActionSheetContextProvider.test.tsx +24 -0
- package/lib/contexts/ActionSheet/ActionSheetContextProvider.tsx +237 -0
- package/lib/contexts/AppProvider/AppProviders.tsx +56 -0
- package/lib/contexts/ColorSchemeProvider/ColorSchemeProvider.tsx +49 -0
- package/lib/contexts/Confirm/ConfirmContextProvider.test.tsx +24 -0
- package/lib/contexts/Confirm/ConfirmContextProvider.tsx +227 -0
- package/lib/contexts/DefaultsProvider/DefaultsProvider.tsx +178 -0
- package/lib/contexts/DialogsProvider/DialogsProvider.tsx +14 -0
- package/lib/contexts/KeysProvider/KeysProvider.tsx +344 -0
- package/lib/contexts/ModalProvider/ModalProvider.tsx +59 -0
- package/lib/contexts/ModeProvider/ModeProvider.tsx +26 -0
- package/lib/contexts/Notifier/Notifier.test.tsx +342 -0
- package/lib/contexts/Notifier/Notifier.tsx +209 -0
- package/lib/contexts/Prompt/PromptContextProvider.test.tsx +24 -0
- package/lib/contexts/Prompt/PromptContextProvider.tsx +280 -0
- package/lib/forms/Checkbox/Checkbox.test.tsx +171 -0
- package/lib/forms/Checkbox/Checkbox.tsx +256 -0
- package/lib/forms/ComboBox/ComboBox.test.tsx +24 -0
- package/lib/forms/ComboBox/ComboBox.tsx +464 -0
- package/lib/forms/ComboBox/MultiComboBox.test.tsx +30 -0
- package/lib/forms/ComboBox/MultiComboBox.tsx +282 -0
- package/lib/forms/ComboBox/useComboBoxScroll.test.ts +30 -0
- package/lib/forms/ComboBox/useComboBoxScroll.ts +35 -0
- package/lib/forms/Currency/CurrencyInput.test.tsx +131 -0
- package/lib/forms/Currency/CurrencyInput.tsx +269 -0
- package/lib/forms/Datetimes/DateInput.test.tsx +198 -0
- package/lib/forms/Datetimes/DateInput.tsx +56 -0
- package/lib/forms/Datetimes/DateTimeInput.test.tsx +223 -0
- package/lib/forms/Datetimes/DateTimeInput.tsx +102 -0
- package/lib/forms/Datetimes/TimeInput.test.tsx +218 -0
- package/lib/forms/Datetimes/TimeInput.tsx +100 -0
- package/lib/forms/File/FileInput.test.tsx +175 -0
- package/lib/forms/File/FileInput.tsx +240 -0
- package/lib/forms/Input.test.tsx +158 -0
- package/lib/forms/Input.tsx +542 -0
- package/lib/forms/MaskedInput/MaskedInput.tsx +651 -0
- package/lib/forms/Numeric/NumberInput.test.tsx +233 -0
- package/lib/forms/Numeric/NumberInput.tsx +171 -0
- package/lib/forms/Numeric/RangeInput.test.tsx +187 -0
- package/lib/forms/Numeric/RangeInput.tsx +166 -0
- package/lib/forms/Others/ColorInput.test.tsx +181 -0
- package/lib/forms/Others/ColorInput.tsx +117 -0
- package/lib/forms/Others/HiddenInput.test.tsx +25 -0
- package/lib/forms/Others/HiddenInput.tsx +46 -0
- package/lib/forms/Others/TelephoneInput.test.tsx +153 -0
- package/lib/forms/Others/TelephoneInput.tsx +26 -0
- package/lib/forms/Others/URLInput.test.tsx +153 -0
- package/lib/forms/Others/URLInput.tsx +30 -0
- package/lib/forms/Periodes/MonthInput.test.tsx +119 -0
- package/lib/forms/Periodes/MonthInput.tsx +63 -0
- package/lib/forms/Periodes/WeekInput.test.tsx +119 -0
- package/lib/forms/Periodes/WeekInput.tsx +63 -0
- package/lib/forms/Radio/Radio.test.tsx +322 -0
- package/lib/forms/Radio/Radio.tsx +347 -0
- package/lib/forms/Select/Select.test.tsx +223 -0
- package/lib/forms/Select/Select.tsx +405 -0
- package/lib/forms/TagsInput/TagsInput.test.tsx +27 -0
- package/lib/forms/TagsInput/TagsInput.tsx +289 -0
- package/lib/forms/Text/EmailInput.test.tsx +153 -0
- package/lib/forms/Text/EmailInput.tsx +29 -0
- package/lib/forms/Text/FormattedInput.tsx +271 -0
- package/lib/forms/Text/PasswordInput.test.tsx +160 -0
- package/lib/forms/Text/PasswordInput.tsx +154 -0
- package/lib/forms/Text/TextArea.test.tsx +164 -0
- package/lib/forms/Text/TextArea.tsx +169 -0
- package/lib/forms/Text/TextEditor.test.tsx +12 -0
- package/lib/forms/Text/TextEditor.tsx +612 -0
- package/lib/forms/Text/TextInput.test.tsx +147 -0
- package/lib/forms/Text/TextInput.tsx +60 -0
- package/lib/hooks/useCaretPosition.test.tsx +31 -0
- package/lib/hooks/useCaretPosition.tsx +23 -0
- package/lib/hooks/useClickOutside.test.tsx +101 -0
- package/lib/hooks/useClickOutside.ts +44 -0
- package/lib/hooks/useClipboard.ts +59 -0
- package/lib/hooks/useContextMenu.tsx +74 -0
- package/lib/hooks/useCookieState.tsx +117 -0
- package/lib/hooks/useDebounced.hooks.test.ts +70 -0
- package/lib/hooks/useDebounced.hooks.ts +110 -0
- package/lib/hooks/useFetchApi.ts +91 -0
- package/lib/hooks/useHotkeys.test.tsx +111 -0
- package/lib/hooks/useHotkeys.ts +139 -0
- package/lib/hooks/useIndexedDb.tsx +337 -0
- package/lib/hooks/useLocalStoredState.test.tsx +98 -0
- package/lib/hooks/useLocalStoredState.ts +86 -0
- package/lib/hooks/usePagination.test.ts +113 -0
- package/lib/hooks/usePagination.ts +96 -0
- package/lib/hooks/usePropState.ts +25 -0
- package/lib/hooks/useScrollIntoView.ts +250 -0
- package/lib/hooks/useSessionStoredState.ts +87 -0
- package/lib/hooks/useToggle.test.tsx +52 -0
- package/lib/hooks/useToggle.ts +30 -0
- package/lib/hooks/useUncontrolled.test.ts +52 -0
- package/lib/hooks/useUncontrolled.ts +65 -0
- package/lib/hooks/useValidatedState.test.tsx +37 -0
- package/lib/hooks/useValidatedState.ts +37 -0
- package/lib/index.ts +246 -0
- package/lib/internal_functions/createIconsInternal.tsx +94 -0
- package/lib/internal_functions/getAlignmentClass.ts +37 -0
- package/lib/internal_functions/getColorClass.ts +73 -0
- package/lib/internal_functions/getPositionClass.ts +15 -0
- package/lib/internal_functions/getSizeClass.ts +57 -0
- package/lib/internal_functions/index.ts +9 -0
- package/lib/styles/_all.scss +457 -0
- package/lib/styles/bulma-box.scss +135 -0
- package/lib/styles/button.scss +565 -0
- package/lib/styles/buttons.scss +19 -0
- package/lib/styles/calendar.scss +148 -0
- package/lib/styles/checkradio.scss +662 -0
- package/lib/styles/datalist.scss +27 -0
- package/lib/styles/divider.scss +30 -0
- package/lib/styles/dropdown.scss +175 -0
- package/lib/styles/extra-inputs.scss +77 -0
- package/lib/styles/hero.scss +285 -0
- package/lib/styles/indicators.scss +142 -0
- package/lib/styles/keyboard.scss +15 -0
- package/lib/styles/linkbutton.scss +40 -0
- package/lib/styles/menu.scss +164 -0
- package/lib/styles/mini-calendar.scss +70 -0
- package/lib/styles/notifier-container.scss +27 -0
- package/lib/styles/panel.scss +222 -0
- package/lib/styles/quickview.scss +140 -0
- package/lib/styles/range-sliders.scss +298 -0
- package/lib/styles/select.scss +144 -0
- package/lib/styles/steps.scss +288 -0
- package/lib/styles/table.scss +330 -0
- package/lib/styles/tabs.scss +271 -0
- package/lib/styles/timeline.scss +314 -0
- package/lib/styles/tooltip.scss +32 -0
- package/lib/styles/treeview.scss +37 -0
- package/lib/test-data.ts +9002 -0
- package/lib/types/index.tsx +180 -0
- package/lib/types/react-app-env.d.ts +1 -0
- package/lib/types/typings.d.ts +373 -0
- package/lib/utils/JSDateTime.class.test.ts +890 -0
- package/lib/utils/JSDateTime.class.ts +766 -0
- package/lib/utils/JSDuration.class.test.ts +98 -0
- package/lib/utils/JSDuration.class.ts +159 -0
- package/lib/utils/calculateTxtColor.function.test.ts +53 -0
- package/lib/utils/calculateTxtColor.function.ts +56 -0
- package/lib/utils/colors.test.ts +78 -0
- package/lib/utils/colors.ts +178 -0
- package/lib/utils/colorscheme.ts +26 -0
- package/lib/utils/compare.test.ts +137 -0
- package/lib/utils/compare.ts +32 -0
- package/lib/utils/deserialize.function.test.ts +15 -0
- package/lib/utils/deserialize.function.ts +9 -0
- package/lib/utils/hasBSN.function.test.ts +27 -0
- package/lib/utils/hasBSN.function.ts +53 -0
- package/lib/utils/isIBAN.function.test.ts +25 -0
- package/lib/utils/isIBAN.function.ts +131 -0
- package/lib/utils/math.test.ts +70 -0
- package/lib/utils/math.ts +32 -0
- package/lib/utils/operators.test.ts +619 -0
- package/lib/utils/operators.ts +242 -0
- package/lib/utils/serialize.function.test.ts +13 -0
- package/lib/utils/serialize.function.ts +9 -0
- package/lib/utils/sorting.test.ts +114 -0
- package/lib/utils/sorting.ts +50 -0
- package/lib/utils/string.utils.test.ts +85 -0
- package/lib/utils/string.utils.ts +146 -0
- package/lib/vite-env.d.ts +1 -0
- package/package.json +55 -83
- package/public/vite.svg +1 -0
- package/src/App.tsx +77 -0
- package/src/AppHero.tsx +102 -0
- package/src/Console.ts +28 -0
- package/src/MOCK_DATA.ts +10014 -0
- package/src/Tabs/AspectRatioTab.tsx +235 -0
- package/src/Tabs/ButtonsAndTags.tsx +843 -0
- package/src/Tabs/CalendarTab.tsx +560 -0
- package/src/Tabs/ContextsTab.tsx +820 -0
- package/src/Tabs/DataTableTab.tsx +291 -0
- package/src/Tabs/FunctionsTab.tsx +947 -0
- package/src/Tabs/HooksTab.tsx +1008 -0
- package/src/Tabs/InputsTab.tsx +2319 -0
- package/src/Tabs/LayoutsTab.tsx +751 -0
- package/src/Tabs/Nieuw.tsx +440 -0
- package/src/Tabs/NotificationTab.tsx +301 -0
- package/src/Tabs/OverigeTab.tsx +1631 -0
- package/src/Tabs/ReadmeTab.tsx +260 -0
- package/src/Tabs/TestTab.tsx +44 -0
- package/src/Tabs/datatable.css +7 -0
- package/src/Tabs/index.ts +14 -0
- package/src/assets/react.svg +1 -0
- package/src/components/Chevrons.tsx +15 -0
- package/src/components/CodeVoorbeeld.tsx +41 -0
- package/src/components/Nieuwsblok.tsx +22 -0
- package/src/main.tsx +10 -0
- package/src/styles/example-styles.scss +8 -0
- package/src/styles.css +14244 -0
- package/src/styles.css.map +1 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.app.json +32 -0
- package/tsconfig.build.json +132 -0
- package/tsconfig.json +11 -0
- package/tsconfig.node.json +30 -0
- package/vite.config.ts +52 -0
- package/dist/index.cjs +0 -283
- package/dist/index.d.cts +0 -5773
- package/styles/tooltip.scss +0 -201
- /package/{styles → dist/styles}/bulma-box.scss +0 -0
- /package/{styles → dist/styles}/button.scss +0 -0
- /package/{styles → dist/styles}/buttons.scss +0 -0
- /package/{styles → dist/styles}/calendar.scss +0 -0
- /package/{styles → dist/styles}/checkradio.scss +0 -0
- /package/{styles → dist/styles}/datalist.scss +0 -0
- /package/{styles → dist/styles}/divider.scss +0 -0
- /package/{styles → dist/styles}/dropdown.scss +0 -0
- /package/{styles → dist/styles}/extra-inputs.scss +0 -0
- /package/{styles → dist/styles}/hero.scss +0 -0
- /package/{styles → dist/styles}/indicators.scss +0 -0
- /package/{styles → dist/styles}/keyboard.scss +0 -0
- /package/{styles → dist/styles}/linkbutton.scss +0 -0
- /package/{styles → dist/styles}/menu.scss +0 -0
- /package/{styles → dist/styles}/mini-calendar.scss +0 -0
- /package/{styles → dist/styles}/notifier-container.scss +0 -0
- /package/{styles → dist/styles}/panel.scss +0 -0
- /package/{styles → dist/styles}/quickview.scss +0 -0
- /package/{styles → dist/styles}/range-sliders.scss +0 -0
- /package/{styles → dist/styles}/select.scss +0 -0
- /package/{styles → dist/styles}/steps.scss +0 -0
- /package/{styles → dist/styles}/table.scss +0 -0
- /package/{styles → dist/styles}/tabs.scss +0 -0
- /package/{styles → dist/styles}/timeline.scss +0 -0
- /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
|
+
}
|