@tactics/toddle-styleguide 5.0.2 → 5.0.5
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/.prettierrc.js +9 -0
- package/.yarnrc.yml +2 -0
- package/App.d.ts +5 -0
- package/App.tsx +655 -0
- package/app.json +37 -0
- package/assets/adaptive-icon.png +0 -0
- package/assets/components/avatar/baby.png +0 -0
- package/assets/favicon.png +0 -0
- package/assets/fonts/montserrat/bold.ttf +0 -0
- package/assets/fonts/montserrat/regular.ttf +0 -0
- package/assets/fonts/source-sans-pro/bold.ttf +0 -0
- package/assets/fonts/source-sans-pro/regular.ttf +0 -0
- package/assets/icon.png +0 -0
- package/assets/lottie/wave-for-daycares.json +1197 -0
- package/assets/lottie/wave-for-parents.json +1 -0
- package/assets/splash.png +0 -0
- package/babel.config.js +20 -0
- package/index.d.ts +79 -0
- package/index.tsx +196 -0
- package/jest.config.js +26 -0
- package/metro.config.js +11 -0
- package/package.json +6 -16
- package/src/components/atoms/animated-wave/animated-wave.component.d.ts +2 -0
- package/src/components/atoms/animated-wave/animated-wave.component.tsx +28 -0
- package/src/components/atoms/animated-wave/animated-wave.preview.tsx +20 -0
- package/src/components/atoms/animated-wave/animated-wave.styles.d.ts +21 -0
- package/src/components/atoms/animated-wave/animated-wave.styles.js +25 -0
- package/src/components/atoms/backdrop/backdrop.component.d.ts +7 -0
- package/src/components/atoms/backdrop/backdrop.component.tsx +48 -0
- package/src/components/atoms/backdrop/backdrop.styles.d.ts +11 -0
- package/src/components/atoms/backdrop/backdrop.styles.js +15 -0
- package/src/components/atoms/background-gradient/__snapshots__/background-gradient.test.js.snap +40 -0
- package/src/components/atoms/background-gradient/background-gradient.component.d.ts +2 -0
- package/src/components/atoms/background-gradient/background-gradient.component.tsx +19 -0
- package/src/components/atoms/background-gradient/background-gradient.preview.d.ts +2 -0
- package/src/components/atoms/background-gradient/background-gradient.preview.tsx +77 -0
- package/src/components/atoms/background-gradient/background-gradient.styles.d.ts +8 -0
- package/src/components/atoms/background-gradient/background-gradient.styles.js +11 -0
- package/src/components/atoms/background-gradient/background-gradient.test.js +10 -0
- package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +6817 -0
- package/src/components/atoms/calendar/calendar.component.d.ts +10 -0
- package/src/components/atoms/calendar/calendar.component.tsx +101 -0
- package/src/components/atoms/calendar/calendar.preview.d.ts +2 -0
- package/src/components/atoms/calendar/calendar.preview.tsx +39 -0
- package/src/components/atoms/calendar/calendar.styles.d.ts +81 -0
- package/src/components/atoms/calendar/calendar.styles.js +88 -0
- package/src/components/atoms/calendar/calendar.test.js +35 -0
- package/src/components/atoms/check-switch/__snapshots__/check-switch.test.js.snap +84 -0
- package/src/components/atoms/check-switch/check-switch.component.d.ts +7 -0
- package/src/components/atoms/check-switch/check-switch.component.tsx +48 -0
- package/src/components/atoms/check-switch/check-switch.preview.d.ts +2 -0
- package/src/components/atoms/check-switch/check-switch.preview.tsx +31 -0
- package/src/components/atoms/check-switch/check-switch.styles.d.ts +33 -0
- package/src/components/atoms/check-switch/check-switch.styles.js +36 -0
- package/src/components/atoms/check-switch/check-switch.test.js +13 -0
- package/src/components/atoms/count/count.component.d.ts +7 -0
- package/src/components/atoms/count/count.component.tsx +21 -0
- package/src/components/atoms/count/count.preview.d.ts +2 -0
- package/src/components/atoms/count/count.preview.tsx +16 -0
- package/src/components/atoms/count/count.styles.d.ts +24 -0
- package/src/components/atoms/count/count.styles.js +33 -0
- package/src/components/atoms/footer/footer.component.d.ts +6 -0
- package/src/components/atoms/footer/footer.component.tsx +28 -0
- package/src/components/atoms/footer/footer.preview.d.ts +2 -0
- package/src/components/atoms/footer/footer.preview.tsx +24 -0
- package/src/components/atoms/footer/footer.styles.d.ts +17 -0
- package/src/components/atoms/footer/footer.styles.js +18 -0
- package/src/components/atoms/heading-components/all-caps-heading/__snapshots__/all-caps-heading.test.js.snap +113 -0
- package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.d.ts +3 -0
- package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.tsx +28 -0
- package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.test.js +44 -0
- package/src/components/atoms/heading-components/heading.styles.d.ts +48 -0
- package/src/components/atoms/heading-components/heading.styles.js +63 -0
- package/src/components/atoms/heading-components/heading1/__snapshots__/heading1.test.js.snap +121 -0
- package/src/components/atoms/heading-components/heading1/heading1.component.d.ts +3 -0
- package/src/components/atoms/heading-components/heading1/heading1.component.tsx +28 -0
- package/src/components/atoms/heading-components/heading1/heading1.test.js +51 -0
- package/src/components/atoms/heading-components/heading2/__snapshots__/heading2.test.js.snap +121 -0
- package/src/components/atoms/heading-components/heading2/heading2.component.d.ts +3 -0
- package/src/components/atoms/heading-components/heading2/heading2.component.tsx +28 -0
- package/src/components/atoms/heading-components/heading2/heading2.test.js +51 -0
- package/src/components/atoms/heading-components/heading3/__snapshots__/heading3.test.js.snap +121 -0
- package/src/components/atoms/heading-components/heading3/heading3.component.d.ts +3 -0
- package/src/components/atoms/heading-components/heading3/heading3.component.tsx +28 -0
- package/src/components/atoms/heading-components/heading3/heading3.test.js +51 -0
- package/src/components/atoms/heading-components/heading4/__snapshots__/heading4.test.js.snap +121 -0
- package/src/components/atoms/heading-components/heading4/heading4.component.d.ts +3 -0
- package/src/components/atoms/heading-components/heading4/heading4.component.tsx +28 -0
- package/src/components/atoms/heading-components/heading4/heading4.test.js +51 -0
- package/src/components/atoms/heading-components/headings.preview.d.ts +2 -0
- package/src/components/atoms/heading-components/headings.preview.tsx +86 -0
- package/src/components/atoms/heading-components/index.d.ts +6 -0
- package/src/components/atoms/heading-components/index.tsx +7 -0
- package/src/components/atoms/image-bubble/__snapshots__/image-bubble.test.js.snap +67 -0
- package/src/components/atoms/image-bubble/image-bubble.component.d.ts +9 -0
- package/src/components/atoms/image-bubble/image-bubble.component.tsx +27 -0
- package/src/components/atoms/image-bubble/image-bubble.preview.d.ts +2 -0
- package/src/components/atoms/image-bubble/image-bubble.preview.tsx +19 -0
- package/src/components/atoms/image-bubble/image-bubble.styles.d.ts +35 -0
- package/src/components/atoms/image-bubble/image-bubble.styles.js +31 -0
- package/src/components/atoms/image-bubble/image-bubble.test.js +20 -0
- package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +269 -0
- package/src/components/atoms/increment-input/increment-input.component.d.ts +8 -0
- package/src/components/atoms/increment-input/increment-input.component.tsx +63 -0
- package/src/components/atoms/increment-input/increment-input.preview.d.ts +2 -0
- package/src/components/atoms/increment-input/increment-input.preview.tsx +26 -0
- package/src/components/atoms/increment-input/increment-input.styles.d.ts +35 -0
- package/src/components/atoms/increment-input/increment-input.styles.js +39 -0
- package/src/components/atoms/increment-input/increment-input.test.js +14 -0
- package/src/components/atoms/line/line.component.d.ts +9 -0
- package/src/components/atoms/line/line.component.tsx +23 -0
- package/src/components/atoms/line/line.preview.d.ts +2 -0
- package/src/components/atoms/line/line.preview.tsx +55 -0
- package/src/components/atoms/line/line.styles.d.ts +12 -0
- package/src/components/atoms/line/line.styles.js +10 -0
- package/src/components/atoms/logo/__snapshots__/logo.test.js.snap +113 -0
- package/src/components/atoms/logo/logo.component.d.ts +7 -0
- package/src/components/atoms/logo/logo.component.tsx +39 -0
- package/src/components/atoms/logo/logo.preview.d.ts +2 -0
- package/src/components/atoms/logo/logo.preview.tsx +15 -0
- package/src/components/atoms/logo/logo.test.js +16 -0
- package/src/components/atoms/paragraph-components/index.d.ts +4 -0
- package/src/components/atoms/paragraph-components/index.tsx +5 -0
- package/src/components/atoms/paragraph-components/paragraph/__snapshots__/paragraph.test.js.snap +121 -0
- package/src/components/atoms/paragraph-components/paragraph/paragraph.component.d.ts +3 -0
- package/src/components/atoms/paragraph-components/paragraph/paragraph.component.tsx +28 -0
- package/src/components/atoms/paragraph-components/paragraph/paragraph.test.js +76 -0
- package/src/components/atoms/paragraph-components/paragraph-components.preview.d.ts +2 -0
- package/src/components/atoms/paragraph-components/paragraph-components.preview.tsx +94 -0
- package/src/components/atoms/paragraph-components/paragraph-text.styles.d.ts +30 -0
- package/src/components/atoms/paragraph-components/paragraph-text.styles.js +41 -0
- package/src/components/atoms/paragraph-components/small-text/__snapshots__/small-text.test.js.snap +121 -0
- package/src/components/atoms/paragraph-components/small-text/small-text.component.d.ts +3 -0
- package/src/components/atoms/paragraph-components/small-text/small-text.component.tsx +28 -0
- package/src/components/atoms/paragraph-components/small-text/small-text.test.js +76 -0
- package/src/components/atoms/paragraph-components/tiny-text/__snapshots__/tiny-text.test.js.snap +121 -0
- package/src/components/atoms/paragraph-components/tiny-text/tiny-text.component.d.ts +3 -0
- package/src/components/atoms/paragraph-components/tiny-text/tiny-text.component.tsx +28 -0
- package/src/components/atoms/paragraph-components/tiny-text/tiny-text.test.js +76 -0
- package/src/components/atoms/quick-message/__snapshots__/quick-message.test.js.snap +143 -0
- package/src/components/atoms/quick-message/quick-message.component.d.ts +9 -0
- package/src/components/atoms/quick-message/quick-message.component.tsx +35 -0
- package/src/components/atoms/quick-message/quick-message.preview.d.ts +2 -0
- package/src/components/atoms/quick-message/quick-message.preview.tsx +43 -0
- package/src/components/atoms/quick-message/quick-message.styles.d.ts +17 -0
- package/src/components/atoms/quick-message/quick-message.styles.js +20 -0
- package/src/components/atoms/quick-message/quick-message.test.js +58 -0
- package/src/components/atoms/split-container/__snapshots__/split-container.test.js.snap +333 -0
- package/src/components/atoms/split-container/split-container.component.d.ts +7 -0
- package/src/components/atoms/split-container/split-container.component.tsx +27 -0
- package/src/components/atoms/split-container/split-container.preview.d.ts +2 -0
- package/src/components/atoms/split-container/split-container.preview.tsx +62 -0
- package/src/components/atoms/split-container/split-container.styles.d.ts +14 -0
- package/src/components/atoms/split-container/split-container.styles.js +19 -0
- package/src/components/atoms/split-container/split-container.test.js +45 -0
- package/src/components/atoms/static-wave/static-wave.component.d.ts +9 -0
- package/src/components/atoms/static-wave/static-wave.component.tsx +46 -0
- package/src/components/atoms/static-wave/static-wave.styles.d.ts +14 -0
- package/src/components/atoms/static-wave/static-wave.styles.js +14 -0
- package/src/components/atoms/text-input/__snapshots__/text-input.test.js.snap +123 -0
- package/src/components/atoms/text-input/text-input.component.d.ts +9 -0
- package/src/components/atoms/text-input/text-input.component.tsx +30 -0
- package/src/components/atoms/text-input/text-input.preview.d.ts +2 -0
- package/src/components/atoms/text-input/text-input.preview.tsx +41 -0
- package/src/components/atoms/text-input/text-input.styles.d.ts +33 -0
- package/src/components/atoms/text-input/text-input.styles.js +29 -0
- package/src/components/atoms/text-input/text-input.test.js +59 -0
- package/src/components/molecules/amount/amount.component.d.ts +12 -0
- package/src/components/molecules/amount/amount.component.tsx +148 -0
- package/src/components/molecules/amount/amount.preview.d.ts +2 -0
- package/src/components/molecules/amount/amount.preview.tsx +77 -0
- package/src/components/molecules/amount/amount.styles.d.ts +36 -0
- package/src/components/molecules/amount/amount.styles.js +40 -0
- package/src/components/molecules/avatar/__snapshots__/avatar.test.js.snap +97 -0
- package/src/components/molecules/avatar/avatar.component.d.ts +15 -0
- package/src/components/molecules/avatar/avatar.component.tsx +118 -0
- package/src/components/molecules/avatar/avatar.preview.d.ts +2 -0
- package/src/components/molecules/avatar/avatar.preview.tsx +82 -0
- package/src/components/molecules/avatar/avatar.styles.d.ts +102 -0
- package/src/components/molecules/avatar/avatar.styles.js +90 -0
- package/src/components/molecules/avatar/avatar.test.js +22 -0
- package/src/components/molecules/bare-time-picker/bare-time-picker.component.d.ts +9 -0
- package/src/components/molecules/bare-time-picker/bare-time-picker.component.native.tsx +78 -0
- package/src/components/molecules/bare-time-picker/bare-time-picker.component.tsx +52 -0
- package/src/components/molecules/bare-time-picker/bare-time-picker.preview.d.ts +2 -0
- package/src/components/molecules/bare-time-picker/bare-time-picker.preview.tsx +86 -0
- package/src/components/molecules/bare-time-picker/bare-time-picker.styles.d.ts +14 -0
- package/src/components/molecules/bare-time-picker/bare-time-picker.styles.js +18 -0
- package/src/components/molecules/blocked-message/__snapshots__/blocked-message.test.js.snap +107 -0
- package/src/components/molecules/blocked-message/blocked-message.component.d.ts +6 -0
- package/src/components/molecules/blocked-message/blocked-message.component.tsx +35 -0
- package/src/components/molecules/blocked-message/blocked-message.preview.d.ts +2 -0
- package/src/components/molecules/blocked-message/blocked-message.preview.tsx +23 -0
- package/src/components/molecules/blocked-message/blocked-message.styles.d.ts +22 -0
- package/src/components/molecules/blocked-message/blocked-message.styles.js +21 -0
- package/src/components/molecules/blocked-message/blocked-message.test.js +12 -0
- package/src/components/molecules/button/__snapshots__/button.test.js.snap +652 -0
- package/src/components/molecules/button/button.component.d.ts +15 -0
- package/src/components/molecules/button/button.component.tsx +77 -0
- package/src/components/molecules/button/button.preview.d.ts +2 -0
- package/src/components/molecules/button/button.preview.tsx +57 -0
- package/src/components/molecules/button/button.styles.d.ts +18 -0
- package/src/components/molecules/button/button.styles.js +18 -0
- package/src/components/molecules/button/button.test.js +56 -0
- package/src/components/molecules/calendar-select/__snapshots__/calendar-select.test.js.snap +343 -0
- package/src/components/molecules/calendar-select/calendar-select.component.d.ts +10 -0
- package/src/components/molecules/calendar-select/calendar-select.component.tsx +98 -0
- package/src/components/molecules/calendar-select/calendar-select.preview.d.ts +2 -0
- package/src/components/molecules/calendar-select/calendar-select.preview.tsx +20 -0
- package/src/components/molecules/calendar-select/calendar-select.styles.d.ts +33 -0
- package/src/components/molecules/calendar-select/calendar-select.styles.js +37 -0
- package/src/components/molecules/calendar-select/calendar-select.test.js +20 -0
- package/src/components/molecules/cancel-link/__snapshots__/cancel-link.test.js.snap +139 -0
- package/src/components/molecules/cancel-link/cancel-link.component.d.ts +7 -0
- package/src/components/molecules/cancel-link/cancel-link.component.tsx +27 -0
- package/src/components/molecules/cancel-link/cancel-link.preview.d.ts +2 -0
- package/src/components/molecules/cancel-link/cancel-link.preview.tsx +20 -0
- package/src/components/molecules/cancel-link/cancel-link.styles.d.ts +11 -0
- package/src/components/molecules/cancel-link/cancel-link.styles.js +15 -0
- package/src/components/molecules/cancel-link/cancel-link.test.js +28 -0
- package/src/components/molecules/checkbox/__snapshots__/checkbox.test.js.snap +176 -0
- package/src/components/molecules/checkbox/checkbox.component.d.ts +8 -0
- package/src/components/molecules/checkbox/checkbox.component.tsx +31 -0
- package/src/components/molecules/checkbox/checkbox.preview.d.ts +2 -0
- package/src/components/molecules/checkbox/checkbox.preview.tsx +46 -0
- package/src/components/molecules/checkbox/checkbox.styles.d.ts +32 -0
- package/src/components/molecules/checkbox/checkbox.styles.js +30 -0
- package/src/components/molecules/checkbox/checkbox.test.js +30 -0
- package/src/components/molecules/contact-role/__snapshots__/contact-role.test.js.snap +113 -0
- package/src/components/molecules/contact-role/contact-role.component.d.ts +8 -0
- package/src/components/molecules/contact-role/contact-role.component.tsx +37 -0
- package/src/components/molecules/contact-role/contact-role.preview.d.ts +2 -0
- package/src/components/molecules/contact-role/contact-role.preview.tsx +17 -0
- package/src/components/molecules/contact-role/contact-role.styles.d.ts +16 -0
- package/src/components/molecules/contact-role/contact-role.styles.js +20 -0
- package/src/components/molecules/contact-role/contact-role.test.js +18 -0
- package/src/components/molecules/context-label/context-label.component.d.ts +7 -0
- package/src/components/molecules/context-label/context-label.component.tsx +37 -0
- package/src/components/molecules/context-label/context-label.preview.d.ts +2 -0
- package/src/components/molecules/context-label/context-label.preview.tsx +70 -0
- package/src/components/molecules/context-label/context-label.styles.d.ts +18 -0
- package/src/components/molecules/context-label/context-label.styles.js +21 -0
- package/src/components/molecules/date-input/__snapshots__/date-input.test.js.snap +140 -0
- package/src/components/molecules/date-input/date-input.component.d.ts +8 -0
- package/src/components/molecules/date-input/date-input.component.tsx +32 -0
- package/src/components/molecules/date-input/date-input.preview.d.ts +2 -0
- package/src/components/molecules/date-input/date-input.preview.tsx +62 -0
- package/src/components/molecules/date-input/date-input.styles.d.ts +18 -0
- package/src/components/molecules/date-input/date-input.styles.js +22 -0
- package/src/components/molecules/date-input/date-input.test.js +23 -0
- package/src/components/molecules/day/__snapshots__/day.test.js.snap +263 -0
- package/src/components/molecules/day/day.component.d.ts +13 -0
- package/src/components/molecules/day/day.component.tsx +69 -0
- package/src/components/molecules/day/day.styles.d.ts +35 -0
- package/src/components/molecules/day/day.styles.js +27 -0
- package/src/components/molecules/day/day.test.js +37 -0
- package/src/components/molecules/default-select/__snapshots__/default-select.test.js.snap +140 -0
- package/src/components/molecules/default-select/default-select.component.d.ts +7 -0
- package/src/components/molecules/default-select/default-select.component.tsx +42 -0
- package/src/components/molecules/default-select/default-select.preview.d.ts +2 -0
- package/src/components/molecules/default-select/default-select.preview.tsx +34 -0
- package/src/components/molecules/default-select/default-select.styles.d.ts +13 -0
- package/src/components/molecules/default-select/default-select.styles.js +17 -0
- package/src/components/molecules/default-select/default-select.test.js +17 -0
- package/src/components/molecules/department_logo/__snapshots__/department-logo.test.js.snap +27 -0
- package/src/components/molecules/department_logo/department-logo.component.d.ts +6 -0
- package/src/components/molecules/department_logo/department-logo.component.tsx +21 -0
- package/src/components/molecules/department_logo/department-logo.preview.d.ts +2 -0
- package/src/components/molecules/department_logo/department-logo.preview.tsx +11 -0
- package/src/components/molecules/department_logo/department-logo.styles.d.ts +5 -0
- package/src/components/molecules/department_logo/department-logo.styles.js +9 -0
- package/src/components/molecules/department_logo/department-logo.test.js +12 -0
- package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +386 -0
- package/src/components/molecules/failed-to-send/failed-bubble.component.d.ts +9 -0
- package/src/components/molecules/failed-to-send/failed-bubble.component.tsx +101 -0
- package/src/components/molecules/failed-to-send/failed-bubble.styles.d.ts +38 -0
- package/src/components/molecules/failed-to-send/failed-bubble.styles.js +42 -0
- package/src/components/molecules/failed-to-send/failed-bubble.test.js +75 -0
- package/src/components/molecules/filter-range/__snapshots__/filter-range.test.js.snap +208 -0
- package/src/components/molecules/filter-range/filter-range.component.d.ts +11 -0
- package/src/components/molecules/filter-range/filter-range.component.tsx +72 -0
- package/src/components/molecules/filter-range/filter-range.preview.d.ts +2 -0
- package/src/components/molecules/filter-range/filter-range.preview.tsx +26 -0
- package/src/components/molecules/filter-range/filter-range.styles.d.ts +22 -0
- package/src/components/molecules/filter-range/filter-range.styles.js +26 -0
- package/src/components/molecules/filter-range/filter-range.test.js +20 -0
- package/src/components/molecules/filter-tab/__snapshots__/filter-tab.test.js.snap +536 -0
- package/src/components/molecules/filter-tab/filter-tab.component.d.ts +11 -0
- package/src/components/molecules/filter-tab/filter-tab.component.tsx +108 -0
- package/src/components/molecules/filter-tab/filter-tab.preview.d.ts +2 -0
- package/src/components/molecules/filter-tab/filter-tab.preview.tsx +80 -0
- package/src/components/molecules/filter-tab/filter-tab.styles.d.ts +59 -0
- package/src/components/molecules/filter-tab/filter-tab.styles.js +58 -0
- package/src/components/molecules/filter-tab/filter-tab.test.js +42 -0
- package/src/components/molecules/info/__snapshots__/info.test.js.snap +64 -0
- package/src/components/molecules/info/info.component.d.ts +8 -0
- package/src/components/molecules/info/info.component.tsx +39 -0
- package/src/components/molecules/info/info.preview.d.ts +2 -0
- package/src/components/molecules/info/info.preview.tsx +28 -0
- package/src/components/molecules/info/info.styles.d.ts +16 -0
- package/src/components/molecules/info/info.styles.js +20 -0
- package/src/components/molecules/info/info.test.js +18 -0
- package/src/components/molecules/inline-error/inline-error.component.d.ts +6 -0
- package/src/components/molecules/inline-error/inline-error.component.tsx +34 -0
- package/src/components/molecules/inline-error/inline-error.preview.d.ts +2 -0
- package/src/components/molecules/inline-error/inline-error.preview.tsx +22 -0
- package/src/components/molecules/inline-error/inline-error.styles.d.ts +18 -0
- package/src/components/molecules/inline-error/inline-error.styles.js +22 -0
- package/src/components/molecules/inline-notice/inline-notice.component.d.ts +6 -0
- package/src/components/molecules/inline-notice/inline-notice.component.tsx +31 -0
- package/src/components/molecules/inline-notice/inline-notice.preview.tsx +22 -0
- package/src/components/molecules/inline-notice/inline-notice.styles.d.ts +18 -0
- package/src/components/molecules/inline-notice/inline-notice.styles.js +22 -0
- package/src/components/molecules/language-button/__snapshots__/language-button.test.js.snap +129 -0
- package/src/components/molecules/language-button/language-button.component.d.ts +8 -0
- package/src/components/molecules/language-button/language-button.component.tsx +33 -0
- package/src/components/molecules/language-button/language-button.preview.d.ts +2 -0
- package/src/components/molecules/language-button/language-button.preview.tsx +29 -0
- package/src/components/molecules/language-button/language-button.styles.d.ts +8 -0
- package/src/components/molecules/language-button/language-button.styles.js +12 -0
- package/src/components/molecules/language-button/language-button.test.js +29 -0
- package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +611 -0
- package/src/components/molecules/message-input/message-input.component.d.ts +9 -0
- package/src/components/molecules/message-input/message-input.component.tsx +54 -0
- package/src/components/molecules/message-input/message-input.preview.d.ts +2 -0
- package/src/components/molecules/message-input/message-input.preview.tsx +54 -0
- package/src/components/molecules/message-input/message-input.styles.d.ts +33 -0
- package/src/components/molecules/message-input/message-input.styles.js +37 -0
- package/src/components/molecules/message-input/message-input.test.js +63 -0
- package/src/components/molecules/more-info-button/__snapshots__/more-info-button.test.js.snap +133 -0
- package/src/components/molecules/more-info-button/more-info-button.component.d.ts +8 -0
- package/src/components/molecules/more-info-button/more-info-button.component.tsx +33 -0
- package/src/components/molecules/more-info-button/more-info-button.preview.d.ts +2 -0
- package/src/components/molecules/more-info-button/more-info-button.preview.tsx +29 -0
- package/src/components/molecules/more-info-button/more-info-button.styles.d.ts +10 -0
- package/src/components/molecules/more-info-button/more-info-button.styles.js +15 -0
- package/src/components/molecules/more-info-button/more-info-button.test.js +29 -0
- package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +504 -0
- package/src/components/molecules/password-input/password-input.component.d.ts +8 -0
- package/src/components/molecules/password-input/password-input.component.tsx +55 -0
- package/src/components/molecules/password-input/password-input.preview.d.ts +2 -0
- package/src/components/molecules/password-input/password-input.preview.tsx +59 -0
- package/src/components/molecules/password-input/password-input.styles.d.ts +29 -0
- package/src/components/molecules/password-input/password-input.styles.js +33 -0
- package/src/components/molecules/password-input/password-input.test.js +46 -0
- package/src/components/molecules/pill/__snapshots__/pill.test.js.snap +226 -0
- package/src/components/molecules/pill/pill.component.d.ts +8 -0
- package/src/components/molecules/pill/pill.component.tsx +33 -0
- package/src/components/molecules/pill/pill.preview.d.ts +2 -0
- package/src/components/molecules/pill/pill.preview.tsx +23 -0
- package/src/components/molecules/pill/pill.styles.d.ts +32 -0
- package/src/components/molecules/pill/pill.styles.js +33 -0
- package/src/components/molecules/pill/pill.test.js +42 -0
- package/src/components/molecules/pressable-icon/__snapshots__/pressable-icon.test.js.snap +460 -0
- package/src/components/molecules/pressable-icon/pressable-icon.component.d.ts +9 -0
- package/src/components/molecules/pressable-icon/pressable-icon.component.tsx +50 -0
- package/src/components/molecules/pressable-icon/pressable-icon.preview.d.ts +2 -0
- package/src/components/molecules/pressable-icon/pressable-icon.preview.tsx +37 -0
- package/src/components/molecules/pressable-icon/pressable-icon.styles.d.ts +20 -0
- package/src/components/molecules/pressable-icon/pressable-icon.styles.js +25 -0
- package/src/components/molecules/pressable-icon/pressable-icon.test.js +51 -0
- package/src/components/molecules/quick-filter/__snapshots__/quick-filter.test.js.snap +557 -0
- package/src/components/molecules/quick-filter/quick-filter.component.d.ts +12 -0
- package/src/components/molecules/quick-filter/quick-filter.component.tsx +50 -0
- package/src/components/molecules/quick-filter/quick-filter.preview.d.ts +2 -0
- package/src/components/molecules/quick-filter/quick-filter.preview.tsx +57 -0
- package/src/components/molecules/quick-filter/quick-filter.styles.d.ts +35 -0
- package/src/components/molecules/quick-filter/quick-filter.styles.js +49 -0
- package/src/components/molecules/quick-filter/quick-filter.test.js +134 -0
- package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +145 -0
- package/src/components/molecules/search-input/search.component.d.ts +10 -0
- package/src/components/molecules/search-input/search.component.tsx +50 -0
- package/src/components/molecules/search-input/search.preview.d.ts +2 -0
- package/src/components/molecules/search-input/search.preview.tsx +26 -0
- package/src/components/molecules/search-input/search.styles.d.ts +33 -0
- package/src/components/molecules/search-input/search.styles.js +38 -0
- package/src/components/molecules/search-input/search.test.js +22 -0
- package/src/components/molecules/select-link/__snapshots__/select-link.test.js.snap +70 -0
- package/src/components/molecules/select-link/select-link.component.d.ts +7 -0
- package/src/components/molecules/select-link/select-link.component.tsx +29 -0
- package/src/components/molecules/select-link/select-link.preview.d.ts +2 -0
- package/src/components/molecules/select-link/select-link.preview.tsx +20 -0
- package/src/components/molecules/select-link/select-link.styles.d.ts +11 -0
- package/src/components/molecules/select-link/select-link.styles.js +15 -0
- package/src/components/molecules/select-link/select-link.test.js +17 -0
- package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap +762 -0
- package/src/components/molecules/select-list-item/select-list-item-preview.d.ts +2 -0
- package/src/components/molecules/select-list-item/select-list-item-preview.tsx +40 -0
- package/src/components/molecules/select-list-item/select-list-item.component.d.ts +12 -0
- package/src/components/molecules/select-list-item/select-list-item.component.tsx +82 -0
- package/src/components/molecules/select-list-item/select-list-item.styles.d.ts +41 -0
- package/src/components/molecules/select-list-item/select-list-item.styles.js +43 -0
- package/src/components/molecules/select-list-item/select-list-item.test.js +38 -0
- package/src/components/molecules/select-picker/__snapshots__/select-picker.test.js.snap +407 -0
- package/src/components/molecules/select-picker/select-picker.component.d.ts +12 -0
- package/src/components/molecules/select-picker/select-picker.component.tsx +75 -0
- package/src/components/molecules/select-picker/select-picker.preview.d.ts +2 -0
- package/src/components/molecules/select-picker/select-picker.preview.tsx +63 -0
- package/src/components/molecules/select-picker/select-picker.styles.d.ts +32 -0
- package/src/components/molecules/select-picker/select-picker.styles.js +38 -0
- package/src/components/molecules/select-picker/select-picker.test.js +31 -0
- package/src/components/molecules/selectable-list-item/selectable-list-item-preview.d.ts +2 -0
- package/src/components/molecules/selectable-list-item/selectable-list-item-preview.tsx +51 -0
- package/src/components/molecules/selectable-list-item/selectable-list-item.component.d.ts +11 -0
- package/src/components/molecules/selectable-list-item/selectable-list-item.component.tsx +73 -0
- package/src/components/molecules/selectable-list-item/selectable-list-item.styles.d.ts +32 -0
- package/src/components/molecules/selectable-list-item/selectable-list-item.styles.js +34 -0
- package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +1979 -0
- package/src/components/molecules/send-bubble/send-text-bubble.component.d.ts +11 -0
- package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +104 -0
- package/src/components/molecules/send-bubble/send-text-bubble.styles.d.ts +60 -0
- package/src/components/molecules/send-bubble/send-text-bubble.styles.js +50 -0
- package/src/components/molecules/send-bubble/send-text-bubble.test.js +156 -0
- package/src/components/molecules/snackbar/__snapshots__/snackbar.test.js.snap +557 -0
- package/src/components/molecules/snackbar/snackbar.component.d.ts +8 -0
- package/src/components/molecules/snackbar/snackbar.component.tsx +65 -0
- package/src/components/molecules/snackbar/snackbar.preview.d.ts +2 -0
- package/src/components/molecules/snackbar/snackbar.preview.tsx +40 -0
- package/src/components/molecules/snackbar/snackbar.styles.d.ts +57 -0
- package/src/components/molecules/snackbar/snackbar.styles.js +54 -0
- package/src/components/molecules/snackbar/snackbar.test.js +35 -0
- package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +340 -0
- package/src/components/molecules/swipe/swipe.component.d.ts +7 -0
- package/src/components/molecules/swipe/swipe.component.native.tsx +78 -0
- package/src/components/molecules/swipe/swipe.component.tsx +20 -0
- package/src/components/molecules/swipe/swipe.preview.d.ts +2 -0
- package/src/components/molecules/swipe/swipe.preview.tsx +123 -0
- package/src/components/molecules/swipe/swipe.styles.d.ts +28 -0
- package/src/components/molecules/swipe/swipe.styles.js +32 -0
- package/src/components/molecules/swipe/swipe.test.js +46 -0
- package/src/components/molecules/swipeable/swipeable-action.component.d.ts +10 -0
- package/src/components/molecules/swipeable/swipeable-action.component.tsx +57 -0
- package/src/components/molecules/swipeable/swipeable-action.styles.d.ts +12 -0
- package/src/components/molecules/swipeable/swipeable-action.styles.js +20 -0
- package/src/components/molecules/swipeable/swipeable-container.component.d.ts +14 -0
- package/src/components/molecules/swipeable/swipeable-container.component.tsx +69 -0
- package/src/components/molecules/swipeable/swipeable-container.styles.d.ts +9 -0
- package/src/components/molecules/swipeable/swipeable-container.styles.js +14 -0
- package/src/components/molecules/tag/__snapshots__/tag.test.js.snap +139 -0
- package/src/components/molecules/tag/tag.component.d.ts +9 -0
- package/src/components/molecules/tag/tag.component.tsx +39 -0
- package/src/components/molecules/tag/tag.preview.d.ts +2 -0
- package/src/components/molecules/tag/tag.preview.tsx +85 -0
- package/src/components/molecules/tag/tag.styles.d.ts +19 -0
- package/src/components/molecules/tag/tag.styles.js +19 -0
- package/src/components/molecules/tag/tag.test.js +34 -0
- package/src/components/molecules/time-picker/__snapshots__/time-picker.test.js.snap +2221 -0
- package/src/components/molecules/time-picker/time-picker.component.d.ts +9 -0
- package/src/components/molecules/time-picker/time-picker.component.tsx +98 -0
- package/src/components/molecules/time-picker/time-picker.preview.d.ts +2 -0
- package/src/components/molecules/time-picker/time-picker.preview.tsx +109 -0
- package/src/components/molecules/time-picker/time-picker.styles.d.ts +27 -0
- package/src/components/molecules/time-picker/time-picker.styles.js +31 -0
- package/src/components/molecules/time-picker/time-picker.test.js +18 -0
- package/src/components/molecules/time-tracker/__snapshots__/time-tracker.test.js.snap +266 -0
- package/src/components/molecules/time-tracker/time-tracker.component.d.ts +9 -0
- package/src/components/molecules/time-tracker/time-tracker.component.tsx +30 -0
- package/src/components/molecules/time-tracker/time-tracker.preview.d.ts +2 -0
- package/src/components/molecules/time-tracker/time-tracker.preview.tsx +15 -0
- package/src/components/molecules/time-tracker/time-tracker.styles.d.ts +33 -0
- package/src/components/molecules/time-tracker/time-tracker.styles.js +32 -0
- package/src/components/molecules/time-tracker/time-tracker.test.js +36 -0
- package/src/components/molecules/timeline/__snapshots__/timeline.test.js.snap +257 -0
- package/src/components/molecules/timeline/timeline.component.d.ts +7 -0
- package/src/components/molecules/timeline/timeline.component.tsx +69 -0
- package/src/components/molecules/timeline/timeline.preview.d.ts +2 -0
- package/src/components/molecules/timeline/timeline.preview.tsx +32 -0
- package/src/components/molecules/timeline/timeline.styles.d.ts +61 -0
- package/src/components/molecules/timeline/timeline.styles.js +46 -0
- package/src/components/molecules/timeline/timeline.test.js +18 -0
- package/src/components/molecules/timestamp/__snapshots__/timestamp.test.js.snap +28 -0
- package/src/components/molecules/timestamp/timestamp.component.d.ts +8 -0
- package/src/components/molecules/timestamp/timestamp.component.tsx +30 -0
- package/src/components/molecules/timestamp/timestamp.styles.d.ts +5 -0
- package/src/components/molecules/timestamp/timestamp.styles.js +8 -0
- package/src/components/molecules/timestamp/timestamp.test.js +16 -0
- package/src/components/molecules/wave-background/__snapshots__/wave.test.js.snap +173 -0
- package/src/components/molecules/wave-background/wave.component.d.ts +3 -0
- package/src/components/molecules/wave-background/wave.component.tsx +35 -0
- package/src/components/molecules/wave-background/wave.preview.d.ts +2 -0
- package/src/components/molecules/wave-background/wave.preview.tsx +78 -0
- package/src/components/molecules/wave-background/wave.styles.d.ts +13 -0
- package/src/components/molecules/wave-background/wave.styles.js +13 -0
- package/src/components/molecules/wave-background/wave.test.js +25 -0
- package/src/components/molecules/wide-button/__snapshots__/wide-button.test.js.snap +269 -0
- package/src/components/molecules/wide-button/wide-button.component.d.ts +9 -0
- package/src/components/molecules/wide-button/wide-button.component.tsx +39 -0
- package/src/components/molecules/wide-button/wide-button.preview.d.ts +2 -0
- package/src/components/molecules/wide-button/wide-button.preview.tsx +28 -0
- package/src/components/molecules/wide-button/wide-button.styles.d.ts +15 -0
- package/src/components/molecules/wide-button/wide-button.styles.js +19 -0
- package/src/components/molecules/wide-button/wide-button.test.js +30 -0
- package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +1040 -0
- package/src/components/organisms/child-list-item/child-list-item.component.d.ts +23 -0
- package/src/components/organisms/child-list-item/child-list-item.component.tsx +166 -0
- package/src/components/organisms/child-list-item/child-list-item.preview.d.ts +2 -0
- package/src/components/organisms/child-list-item/child-list-item.preview.tsx +141 -0
- package/src/components/organisms/child-list-item/child-list-item.styles.d.ts +57 -0
- package/src/components/organisms/child-list-item/child-list-item.styles.js +61 -0
- package/src/components/organisms/child-list-item/child-list-item.test.js +75 -0
- package/src/components/organisms/child-list-item/components/child-list-tag.component.d.ts +7 -0
- package/src/components/organisms/child-list-item/components/child-list-tag.component.tsx +28 -0
- package/src/components/organisms/child-list-item/components/child-list-tag.styles.d.ts +13 -0
- package/src/components/organisms/child-list-item/components/child-list-tag.styles.js +16 -0
- package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +404 -0
- package/src/components/organisms/contact-item/contact-item.component.d.ts +10 -0
- package/src/components/organisms/contact-item/contact-item.component.tsx +85 -0
- package/src/components/organisms/contact-item/contact-item.preview.d.ts +2 -0
- package/src/components/organisms/contact-item/contact-item.preview.tsx +38 -0
- package/src/components/organisms/contact-item/contact-item.styles.d.ts +22 -0
- package/src/components/organisms/contact-item/contact-item.styles.js +27 -0
- package/src/components/organisms/contact-item/contact-item.test.js +22 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.d.ts +7 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.tsx +96 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.d.ts +13 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.js +17 -0
- package/src/components/organisms/journal-entry/components/index.d.ts +2 -0
- package/src/components/organisms/journal-entry/components/index.ts +2 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.d.ts +11 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.tsx +63 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.d.ts +13 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.js +16 -0
- package/src/components/organisms/journal-entry/journal-entry.component.d.ts +20 -0
- package/src/components/organisms/journal-entry/journal-entry.component.tsx +134 -0
- package/src/components/organisms/journal-entry/journal-entry.preview.d.ts +2 -0
- package/src/components/organisms/journal-entry/journal-entry.preview.tsx +214 -0
- package/src/components/organisms/journal-entry/journal-entry.styles.d.ts +26 -0
- package/src/components/organisms/journal-entry/journal-entry.styles.js +27 -0
- package/src/components/organisms/loading-indicator/__snapshots__/loading-indicator.test.js.snap +474 -0
- package/src/components/organisms/loading-indicator/animation-style.animate.d.ts +3 -0
- package/src/components/organisms/loading-indicator/animation-style.animate.ts +164 -0
- package/src/components/organisms/loading-indicator/container.component.d.ts +1 -0
- package/src/components/organisms/loading-indicator/container.component.tsx +65 -0
- package/src/components/organisms/loading-indicator/dot.component.d.ts +6 -0
- package/src/components/organisms/loading-indicator/dot.component.tsx +27 -0
- package/src/components/organisms/loading-indicator/loading-indicator.component.d.ts +2 -0
- package/src/components/organisms/loading-indicator/loading-indicator.component.tsx +21 -0
- package/src/components/organisms/loading-indicator/loading-indicator.preview.d.ts +2 -0
- package/src/components/organisms/loading-indicator/loading-indicator.preview.tsx +100 -0
- package/src/components/organisms/loading-indicator/loading-indicator.test.js +41 -0
- package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +293 -0
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.d.ts +13 -0
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +61 -0
- package/src/components/organisms/my-child-list-item/my-child-list-item.preview.d.ts +2 -0
- package/src/components/organisms/my-child-list-item/my-child-list-item.preview.tsx +51 -0
- package/src/components/organisms/my-child-list-item/my-child-list-item.styles.d.ts +33 -0
- package/src/components/organisms/my-child-list-item/my-child-list-item.styles.js +37 -0
- package/src/components/organisms/my-child-list-item/my-child-list-item.test.js +23 -0
- package/src/components/organisms/person-info-card/__snapshots__/person-info-card.test.js.snap +709 -0
- package/src/components/organisms/person-info-card/person-info-card.component.d.ts +15 -0
- package/src/components/organisms/person-info-card/person-info-card.component.tsx +45 -0
- package/src/components/organisms/person-info-card/person-info-card.preview.d.ts +2 -0
- package/src/components/organisms/person-info-card/person-info-card.preview.tsx +75 -0
- package/src/components/organisms/person-info-card/person-info-card.styles.d.ts +6 -0
- package/src/components/organisms/person-info-card/person-info-card.styles.js +10 -0
- package/src/components/organisms/person-info-card/person-info-card.test.js +85 -0
- package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +3046 -0
- package/src/components/organisms/text-bubble/text-bubble.component.d.ts +15 -0
- package/src/components/organisms/text-bubble/text-bubble.component.tsx +71 -0
- package/src/components/organisms/text-bubble/text-bubble.preview.d.ts +2 -0
- package/src/components/organisms/text-bubble/text-bubble.preview.tsx +85 -0
- package/src/components/organisms/text-bubble/text-bubble.styles.d.ts +16 -0
- package/src/components/organisms/text-bubble/text-bubble.styles.js +20 -0
- package/src/components/organisms/text-bubble/text-bubble.test.js +144 -0
- package/src/components/organisms/timetable-edit/timetable-edit.component.d.ts +17 -0
- package/src/components/organisms/timetable-edit/timetable-edit.component.tsx +97 -0
- package/src/components/organisms/timetable-edit/timetable-edit.preview.d.ts +2 -0
- package/src/components/organisms/timetable-edit/timetable-edit.preview.tsx +84 -0
- package/src/components/organisms/timetable-edit/timetable-edit.styles.d.ts +21 -0
- package/src/components/organisms/timetable-edit/timetable-edit.styles.js +25 -0
- package/src/components/organisms/timetable-editor/components/timetable-edit-wrapper.d.ts +12 -0
- package/src/components/organisms/timetable-editor/components/timetable-edit-wrapper.tsx +70 -0
- package/src/components/organisms/timetable-editor/timetable-editor-staff.component.d.ts +8 -0
- package/src/components/organisms/timetable-editor/timetable-editor-staff.component.tsx +72 -0
- package/src/components/organisms/timetable-editor/timetable-editor.component.d.ts +8 -0
- package/src/components/organisms/timetable-editor/timetable-editor.component.tsx +84 -0
- package/src/components/organisms/timetable-editor/timetable-editor.preview.d.ts +2 -0
- package/src/components/organisms/timetable-editor/timetable-editor.preview.tsx +53 -0
- package/src/components/organisms/timetable-editor/timetable-editor.styles.d.ts +8 -0
- package/src/components/organisms/timetable-editor/timetable-editor.styles.js +12 -0
- package/src/components/templates/modal/components/fade-panel.component.d.ts +11 -0
- package/src/components/templates/modal/components/fade-panel.component.tsx +53 -0
- package/src/components/templates/modal/components/fade-panel.styles.d.ts +18 -0
- package/src/components/templates/modal/components/fade-panel.styles.js +19 -0
- package/src/components/templates/modal/modal-preview.styles.d.ts +13 -0
- package/src/components/templates/modal/modal-preview.styles.js +17 -0
- package/src/components/templates/modal/modal.component.d.ts +10 -0
- package/src/components/templates/modal/modal.component.tsx +53 -0
- package/src/components/templates/modal/modal.preview.d.ts +2 -0
- package/src/components/templates/modal/modal.preview.tsx +48 -0
- package/src/components/templates/modal/modal.styles.d.ts +23 -0
- package/src/components/templates/modal/modal.styles.js +28 -0
- package/src/components/templates/popover/components/foreground/foreground.component.d.ts +7 -0
- package/src/components/templates/popover/components/foreground/foreground.component.tsx +15 -0
- package/src/components/templates/popover/components/foreground/foreground.styles.d.ts +12 -0
- package/src/components/templates/popover/components/foreground/foreground.styles.js +17 -0
- package/src/components/templates/popover/components/index.d.ts +4 -0
- package/src/components/templates/popover/components/index.js +5 -0
- package/src/components/templates/popover/components/modal/close/close.component.d.ts +7 -0
- package/src/components/templates/popover/components/modal/close/close.component.tsx +28 -0
- package/src/components/templates/popover/components/modal/close/close.styles.d.ts +10 -0
- package/src/components/templates/popover/components/modal/close/close.styles.js +16 -0
- package/src/components/templates/popover/components/modal/heading/heading.component.d.ts +7 -0
- package/src/components/templates/popover/components/modal/heading/heading.component.tsx +35 -0
- package/src/components/templates/popover/components/modal/heading/heading.styles.d.ts +14 -0
- package/src/components/templates/popover/components/modal/heading/heading.styles.js +19 -0
- package/src/components/templates/popover/components/modal/modal.component.d.ts +12 -0
- package/src/components/templates/popover/components/modal/modal.component.tsx +92 -0
- package/src/components/templates/popover/components/modal/modal.styles.d.ts +19 -0
- package/src/components/templates/popover/components/modal/modal.styles.js +24 -0
- package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.d.ts +6 -0
- package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.tsx +20 -0
- package/src/components/templates/popover/components/modal/scroll-content/scroll-content.styles.d.ts +6 -0
- package/src/components/templates/popover/components/modal/scroll-content/scroll-content.styles.js +10 -0
- package/src/components/templates/popover/popover.component.d.ts +11 -0
- package/src/components/templates/popover/popover.component.tsx +67 -0
- package/src/components/templates/popover/popover.preview.d.ts +2 -0
- package/src/components/templates/popover/popover.preview.tsx +99 -0
- package/src/components/templates/popover/popover.styles.d.ts +11 -0
- package/src/components/templates/popover/popover.styles.js +15 -0
- package/src/components/templates/popover-action/popover-action.component.d.ts +12 -0
- package/src/components/templates/popover-action/popover-action.component.tsx +127 -0
- package/src/components/templates/popover-action/popover-action.preview.d.ts +2 -0
- package/src/components/templates/popover-action/popover-action.preview.tsx +142 -0
- package/src/components/templates/popover-action/popover-action.styles.d.ts +28 -0
- package/src/components/templates/popover-action/popover-action.styles.js +33 -0
- package/src/context/loading-dots.context.d.ts +8 -0
- package/src/context/loading-dots.context.tsx +33 -0
- package/src/context/theme.context.d.ts +74 -0
- package/src/context/theme.context.ts +77 -0
- package/src/gradients/main/main.gradient.d.ts +6 -0
- package/src/gradients/main/main.gradient.tsx +29 -0
- package/src/gradients/main/main.styles.d.ts +9 -0
- package/src/gradients/main/main.styles.js +11 -0
- package/src/hooks/use-debounce.d.ts +1 -0
- package/src/hooks/use-debounce.ts +15 -0
- package/src/icons/__snapshots__/icons.test.js.snap +3152 -0
- package/src/icons/crown.icon.d.ts +2 -0
- package/src/icons/crown.icon.tsx +29 -0
- package/src/icons/icons.test.js +328 -0
- package/src/icons/index.d.ts +3 -0
- package/src/icons/index.tsx +16 -0
- package/src/icons/outline/calendar/calendar.icon.d.ts +3 -0
- package/src/icons/outline/calendar/calendar.icon.tsx +24 -0
- package/src/icons/outline/chat/chat.icon.d.ts +3 -0
- package/src/icons/outline/chat/chat.icon.tsx +24 -0
- package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +3 -0
- package/src/icons/outline/chat-alt/chat-alt.icon.tsx +24 -0
- package/src/icons/outline/check-circle/check-circle.icon.d.ts +3 -0
- package/src/icons/outline/check-circle/check-circle.icon.tsx +24 -0
- package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +3 -0
- package/src/icons/outline/chevron-left/chevron-left.icon.tsx +24 -0
- package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +3 -0
- package/src/icons/outline/chevron-right/chevron-right.icon.tsx +24 -0
- package/src/icons/outline/clock/clock.icon.d.ts +3 -0
- package/src/icons/outline/clock/clock.icon.tsx +24 -0
- package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +3 -0
- package/src/icons/outline/cloud-download/cloud-download.icon.tsx +24 -0
- package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +3 -0
- package/src/icons/outline/currency-euro/currency-euro.icon.tsx +24 -0
- package/src/icons/outline/document-text/document-text.icon.d.ts +3 -0
- package/src/icons/outline/document-text/document-text.icon.tsx +21 -0
- package/src/icons/outline/exclamation/exclamation.icon.d.ts +3 -0
- package/src/icons/outline/exclamation/exclamation.icon.tsx +21 -0
- package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +3 -0
- package/src/icons/outline/exclamation-circle/exclamation-circle.icon.tsx +24 -0
- package/src/icons/outline/eye/eye.icon.d.ts +3 -0
- package/src/icons/outline/eye/eye.icon.tsx +28 -0
- package/src/icons/outline/eye-off/eye-off.icon.d.ts +3 -0
- package/src/icons/outline/eye-off/eye-off.icon.tsx +21 -0
- package/src/icons/outline/filter/filter.icon.d.ts +3 -0
- package/src/icons/outline/filter/filter.icon.tsx +22 -0
- package/src/icons/outline/information-circle/information-circle.icon.d.ts +3 -0
- package/src/icons/outline/information-circle/information-circle.icon.tsx +24 -0
- package/src/icons/outline/logout/logout.icon.d.ts +3 -0
- package/src/icons/outline/logout/logout.icon.tsx +27 -0
- package/src/icons/outline/mail/mail.icon.d.ts +3 -0
- package/src/icons/outline/mail/mail.icon.tsx +24 -0
- package/src/icons/outline/mail-open/mail-open.icon.d.ts +3 -0
- package/src/icons/outline/mail-open/mail-open.icon.tsx +24 -0
- package/src/icons/outline/menu/menu.icon.d.ts +3 -0
- package/src/icons/outline/menu/menu.icon.tsx +24 -0
- package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +3 -0
- package/src/icons/outline/minus-sm/minus-sm.icon.tsx +24 -0
- package/src/icons/outline/office-building/office-building.icon.d.ts +3 -0
- package/src/icons/outline/office-building/office-building.icon.tsx +24 -0
- package/src/icons/outline/outline-default.preview.d.ts +2 -0
- package/src/icons/outline/outline-default.preview.tsx +115 -0
- package/src/icons/outline/outline-grey.preview.d.ts +2 -0
- package/src/icons/outline/outline-grey.preview.tsx +117 -0
- package/src/icons/outline/outline-white.preview.d.ts +2 -0
- package/src/icons/outline/outline-white.preview.tsx +121 -0
- package/src/icons/outline/outline.d.ts +2 -0
- package/src/icons/outline/outline.tsx +146 -0
- package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +3 -0
- package/src/icons/outline/paper-airplane/paper-airplane.icon.tsx +30 -0
- package/src/icons/outline/paperclip/paperclip.icon.d.ts +3 -0
- package/src/icons/outline/paperclip/paperclip.icon.tsx +24 -0
- package/src/icons/outline/pencil/pencil.icon.d.ts +3 -0
- package/src/icons/outline/pencil/pencil.icon.tsx +24 -0
- package/src/icons/outline/phone/phone.icon.d.ts +3 -0
- package/src/icons/outline/phone/phone.icon.tsx +24 -0
- package/src/icons/outline/photograph/photograph.icon.d.ts +3 -0
- package/src/icons/outline/photograph/photograph.icon.tsx +24 -0
- package/src/icons/outline/plus/plus.icon.d.ts +3 -0
- package/src/icons/outline/plus/plus.icon.tsx +24 -0
- package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +3 -0
- package/src/icons/outline/plus-sm/plus-sm.icon.tsx +21 -0
- package/src/icons/outline/qrcode/qrcode.icon.d.ts +3 -0
- package/src/icons/outline/qrcode/qrcode.icon.tsx +18 -0
- package/src/icons/outline/refresh/refresh.icon.d.ts +3 -0
- package/src/icons/outline/refresh/refresh.icon.tsx +24 -0
- package/src/icons/outline/search/search.icon.d.ts +3 -0
- package/src/icons/outline/search/search.icon.tsx +24 -0
- package/src/icons/outline/selector/selector.icon.d.ts +3 -0
- package/src/icons/outline/selector/selector.icon.tsx +24 -0
- package/src/icons/outline/share/share.icon.d.ts +3 -0
- package/src/icons/outline/share/share.icon.tsx +24 -0
- package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +3 -0
- package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.tsx +24 -0
- package/src/icons/outline/status-online/status-online.icon.d.ts +3 -0
- package/src/icons/outline/status-online/status-online.icon.tsx +24 -0
- package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +3 -0
- package/src/icons/outline/thumb-up/thumb-up.icon.tsx +24 -0
- package/src/icons/outline/trash/trash.icon.d.ts +3 -0
- package/src/icons/outline/trash/trash.icon.tsx +24 -0
- package/src/icons/outline/user/user.icon.d.ts +3 -0
- package/src/icons/outline/user/user.icon.tsx +33 -0
- package/src/icons/outline/user-group/user-group.icon.d.ts +3 -0
- package/src/icons/outline/user-group/user-group.icon.tsx +24 -0
- package/src/icons/outline/users/users.icon.d.ts +3 -0
- package/src/icons/outline/users/users.icon.tsx +24 -0
- package/src/icons/outline/xmark/xmark.icon.d.ts +3 -0
- package/src/icons/outline/xmark/xmark.icon.tsx +24 -0
- package/src/icons/solid/calendar/calendar.icon.d.ts +3 -0
- package/src/icons/solid/calendar/calendar.icon.tsx +21 -0
- package/src/icons/solid/chat/chat.icon.d.ts +3 -0
- package/src/icons/solid/chat/chat.icon.tsx +21 -0
- package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +3 -0
- package/src/icons/solid/chat-alt/chat-alt-solid.icon.tsx +21 -0
- package/src/icons/solid/check-circle/check-circle.icon.d.ts +3 -0
- package/src/icons/solid/check-circle/check-circle.icon.tsx +21 -0
- package/src/icons/solid/chevron-left/chevron-left.icon.d.ts +3 -0
- package/src/icons/solid/chevron-left/chevron-left.icon.tsx +21 -0
- package/src/icons/solid/chevron-right/chevron-right.icon.d.ts +3 -0
- package/src/icons/solid/chevron-right/chevron-right.icon.tsx +21 -0
- package/src/icons/solid/clock/clock-solid.icon.d.ts +3 -0
- package/src/icons/solid/clock/clock-solid.icon.tsx +22 -0
- package/src/icons/solid/cloud-download/cloud-download.icon.d.ts +3 -0
- package/src/icons/solid/cloud-download/cloud-download.icon.tsx +21 -0
- package/src/icons/solid/currency-euro/currency-euro.icon.d.ts +3 -0
- package/src/icons/solid/currency-euro/currency-euro.icon.tsx +21 -0
- package/src/icons/solid/document-text/document-text-solid.icon.d.ts +3 -0
- package/src/icons/solid/document-text/document-text-solid.icon.tsx +22 -0
- package/src/icons/solid/exclamation/exclamation.icon.d.ts +3 -0
- package/src/icons/solid/exclamation/exclamation.icon.tsx +20 -0
- package/src/icons/solid/exclamation-circle/exclamation-circle.icon.d.ts +3 -0
- package/src/icons/solid/exclamation-circle/exclamation-circle.icon.tsx +23 -0
- package/src/icons/solid/eye/eye.icon.d.ts +3 -0
- package/src/icons/solid/eye/eye.icon.tsx +24 -0
- package/src/icons/solid/eye-off/eye-off.icon.d.ts +3 -0
- package/src/icons/solid/eye-off/eye-off.icon.tsx +24 -0
- package/src/icons/solid/filter/filter.icon.d.ts +3 -0
- package/src/icons/solid/filter/filter.icon.tsx +21 -0
- package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +3 -0
- package/src/icons/solid/information-circle/information-circle-solid.icon.tsx +25 -0
- package/src/icons/solid/logout/logout.icon.d.ts +3 -0
- package/src/icons/solid/logout/logout.icon.tsx +26 -0
- package/src/icons/solid/mail/mail.icon.d.ts +3 -0
- package/src/icons/solid/mail/mail.icon.tsx +23 -0
- package/src/icons/solid/mail-open/mail-open.icon.d.ts +3 -0
- package/src/icons/solid/mail-open/mail-open.icon.tsx +21 -0
- package/src/icons/solid/menu/menu.icon.d.ts +3 -0
- package/src/icons/solid/menu/menu.icon.tsx +33 -0
- package/src/icons/solid/minus-sm/minus-sm.icon.d.ts +3 -0
- package/src/icons/solid/minus-sm/minus-sm.icon.tsx +21 -0
- package/src/icons/solid/office-building/office-building.icon.d.ts +3 -0
- package/src/icons/solid/office-building/office-building.icon.tsx +21 -0
- package/src/icons/solid/paper-airplane/paper-airplane.icon.d.ts +3 -0
- package/src/icons/solid/paper-airplane/paper-airplane.icon.tsx +25 -0
- package/src/icons/solid/paperclip/paperclip.icon.d.ts +3 -0
- package/src/icons/solid/paperclip/paperclip.icon.tsx +21 -0
- package/src/icons/solid/pencil/pencil-solid.icon.d.ts +3 -0
- package/src/icons/solid/pencil/pencil-solid.icon.tsx +24 -0
- package/src/icons/solid/phone/phone-solid.icon.d.ts +3 -0
- package/src/icons/solid/phone/phone-solid.icon.tsx +20 -0
- package/src/icons/solid/photograph/photograph-solid.icon.d.ts +3 -0
- package/src/icons/solid/photograph/photograph-solid.icon.tsx +20 -0
- package/src/icons/solid/plus/plus.icon.d.ts +3 -0
- package/src/icons/solid/plus/plus.icon.tsx +21 -0
- package/src/icons/solid/plus-sm/plus-sm.icon.d.ts +3 -0
- package/src/icons/solid/plus-sm/plus-sm.icon.tsx +21 -0
- package/src/icons/solid/qrcode/qrcode.icon.d.ts +3 -0
- package/src/icons/solid/qrcode/qrcode.icon.tsx +60 -0
- package/src/icons/solid/refresh/refresh-solid.icon.d.ts +3 -0
- package/src/icons/solid/refresh/refresh-solid.icon.tsx +22 -0
- package/src/icons/solid/search/search.icon.d.ts +3 -0
- package/src/icons/solid/search/search.icon.tsx +21 -0
- package/src/icons/solid/selector/selector.icon.d.ts +3 -0
- package/src/icons/solid/selector/selector.icon.tsx +21 -0
- package/src/icons/solid/share/share.icon.d.ts +3 -0
- package/src/icons/solid/share/share.icon.tsx +19 -0
- package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.d.ts +3 -0
- package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.tsx +31 -0
- package/src/icons/solid/solid.d.ts +2 -0
- package/src/icons/solid/solid.preview.d.ts +2 -0
- package/src/icons/solid/solid.preview.tsx +146 -0
- package/src/icons/solid/solid.tsx +141 -0
- package/src/icons/solid/status-online/status-online-solid.icon.d.ts +3 -0
- package/src/icons/solid/status-online/status-online-solid.icon.tsx +22 -0
- package/src/icons/solid/thumb-up/thumb-up.icon.d.ts +3 -0
- package/src/icons/solid/thumb-up/thumb-up.icon.tsx +23 -0
- package/src/icons/solid/trash/trash-solid.icon.d.ts +3 -0
- package/src/icons/solid/trash/trash-solid.icon.tsx +22 -0
- package/src/icons/solid/user/user.icon.d.ts +3 -0
- package/src/icons/solid/user/user.icon.tsx +23 -0
- package/src/icons/solid/user-group/user-group.icon.d.ts +3 -0
- package/src/icons/solid/user-group/user-group.icon.tsx +72 -0
- package/src/icons/solid/users/users-solid.icon.d.ts +3 -0
- package/src/icons/solid/users/users-solid.icon.tsx +57 -0
- package/src/icons/solid/xmark/xmark.icon.d.ts +3 -0
- package/src/icons/solid/xmark/xmark.icon.tsx +21 -0
- package/src/interfaces/icon.interface.d.ts +11 -0
- package/src/interfaces/icon.interface.ts +12 -0
- package/src/models/hex-color.model.d.ts +6 -0
- package/src/models/hex-color.model.ts +25 -0
- package/src/models/hex-color.test.js +20 -0
- package/src/models/initials.model.d.ts +7 -0
- package/src/models/initials.model.ts +32 -0
- package/src/models/initials.test.js +23 -0
- package/src/models/time-slot-record.d.ts +15 -0
- package/src/models/time-slot-record.ts +37 -0
- package/src/models/time-slot-sequence.d.ts +15 -0
- package/src/models/time-slot-sequence.ts +79 -0
- package/src/theme/font/font.d.ts +72 -0
- package/src/theme/font/font.ts +72 -0
- package/src/theme/font/index.d.ts +3 -0
- package/src/theme/font/index.ts +4 -0
- package/src/theme/font/load-fonts.d.ts +1 -0
- package/src/theme/font/load-fonts.ts +10 -0
- package/src/theme/provider/index.d.ts +3 -0
- package/src/theme/provider/index.ts +4 -0
- package/src/theme/provider/parent.theme.d.ts +71 -0
- package/src/theme/provider/parent.theme.ts +73 -0
- package/src/theme/provider/staff-member.theme.d.ts +71 -0
- package/src/theme/provider/staff-member.theme.ts +73 -0
- package/src/theme/responsive/index.d.ts +2 -0
- package/src/theme/responsive/index.ts +17 -0
- package/src/theme/scale/index.d.ts +12 -0
- package/src/theme/scale/index.ts +14 -0
- package/src/types/bubble-alignment.enum.d.ts +4 -0
- package/src/types/bubble-alignment.enum.ts +4 -0
- package/src/types/icontype.type.d.ts +2 -0
- package/src/types/icontype.type.ts +45 -0
- package/src/types/keyboard-types.enum.d.ts +9 -0
- package/src/types/keyboard-types.enum.ts +9 -0
- package/src/types/loading-dots.type.d.ts +8 -0
- package/src/types/loading-dots.type.ts +8 -0
- package/src/types/size.enum.d.ts +5 -0
- package/src/types/size.enum.ts +5 -0
- package/src/types/state.enum.d.ts +7 -0
- package/src/types/state.enum.ts +7 -0
- package/src/types/text-properties.type.d.ts +11 -0
- package/src/types/text-properties.type.ts +12 -0
- package/src/types/timetable-edit.enum.d.ts +5 -0
- package/src/types/timetable-edit.enum.ts +5 -0
- package/src/types/visual-state.enum.d.ts +7 -0
- package/src/types/visual-state.enum.ts +7 -0
- package/src/utilities/color-handler/color-handler.d.ts +4 -0
- package/src/utilities/color-handler/color-handler.ts +74 -0
- package/src/utilities/toddle-datetime/interfaces/duration.interface.d.ts +22 -0
- package/src/utilities/toddle-datetime/interfaces/duration.interface.tsx +23 -0
- package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.d.ts +22 -0
- package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.tsx +25 -0
- package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +50 -0
- package/src/utilities/toddle-datetime/toddle-datetime.class.tsx +206 -0
- package/src/utilities/toddle-datetime/toddle-datetime.preview.d.ts +2 -0
- package/src/utilities/toddle-datetime/toddle-datetime.preview.tsx +160 -0
- package/src/utilities/toddle-datetime/toddle-datetime.test.js +127 -0
- package/src/utilities/toddle-datetime/types/duration.type.d.ts +4 -0
- package/src/utilities/toddle-datetime/types/duration.type.tsx +6 -0
- package/src/utilities/toddle-datetime/types/toddle-datetime.type.d.ts +5 -0
- package/src/utilities/toddle-datetime/types/toddle-datetime.type.tsx +23 -0
- package/tsconfig.json +13 -0
- package/types/src/components/atoms/avatar/avatar.component.d.ts +11 -0
- package/types/src/components/atoms/avatar/avatar.styles.d.ts +36 -0
- package/types/src/components/atoms/button/button.component.d.ts +9 -0
- package/types/src/components/atoms/button/button.styles.d.ts +20 -0
- package/types/src/components/atoms/cancel-link/cancel-link.component.d.ts +7 -0
- package/types/src/components/atoms/cancel-link/cancel-link.styles.d.ts +17 -0
- package/types/src/components/atoms/check-switch/check-switch.component.d.ts +7 -0
- package/types/src/components/atoms/check-switch/check-switch.styles.d.ts +30 -0
- package/types/src/components/atoms/checkbox/checkbox.component.d.ts +8 -0
- package/types/src/components/atoms/checkbox/checkbox.styles.d.ts +32 -0
- package/types/src/components/atoms/child-list-item/child-list-item.component.d.ts +19 -0
- package/types/src/components/atoms/child-list-item/child-list-item.styles.d.ts +68 -0
- package/types/src/components/atoms/contact-item/contact-item.component.d.ts +10 -0
- package/types/src/components/atoms/contact-item/contact-item.styles.d.ts +24 -0
- package/types/src/components/atoms/filter-tab/filter-tab.component.d.ts +9 -0
- package/types/src/components/atoms/filter-tab/filter-tab.styles.d.ts +61 -0
- package/types/src/components/atoms/form-actions/form-action.component.d.ts +7 -0
- package/types/src/components/atoms/form-actions/form-action.styles.d.ts +14 -0
- package/types/src/components/atoms/image-bubble/image-bubble.component.d.ts +9 -0
- package/types/src/components/atoms/image-bubble/image-bubble.styles.d.ts +27 -0
- package/types/src/components/atoms/info/info.component.d.ts +7 -0
- package/types/src/components/atoms/info/info.styles.d.ts +24 -0
- package/types/src/components/atoms/pill/pill.component.d.ts +8 -0
- package/types/src/components/atoms/pill/pill.styles.d.ts +24 -0
- package/types/src/components/atoms/popover/components/backdrop/backdrop.component.d.ts +6 -0
- package/types/src/components/atoms/popover/components/backdrop/backdrop.styles.d.ts +11 -0
- package/types/src/components/atoms/popover/components/foreground/foreground.component.d.ts +7 -0
- package/types/src/components/atoms/popover/components/foreground/foreground.styles.d.ts +12 -0
- package/types/src/components/atoms/popover/components/index.d.ts +4 -0
- package/types/src/components/atoms/popover/components/modal/close/close.component.d.ts +7 -0
- package/types/src/components/atoms/popover/components/modal/close/close.styles.d.ts +9 -0
- package/types/src/components/atoms/popover/components/modal/heading/heading.component.d.ts +7 -0
- package/types/src/components/atoms/popover/components/modal/heading/heading.styles.d.ts +22 -0
- package/types/src/components/atoms/popover/components/modal/modal.component.d.ts +11 -0
- package/types/src/components/atoms/popover/components/modal/modal.styles.d.ts +18 -0
- package/types/src/components/atoms/popover/components/modal/scroll-content/scroll-content.component.d.ts +6 -0
- package/types/src/components/atoms/popover/components/modal/scroll-content/scroll-content.styles.d.ts +6 -0
- package/types/src/components/atoms/popover/popover.component.d.ts +10 -0
- package/types/src/components/atoms/popover/popover.styles.d.ts +8 -0
- package/types/src/components/atoms/pressable-icon/pressable-icon.component.d.ts +9 -0
- package/types/src/components/atoms/pressable-icon/pressable-icon.styles.d.ts +17 -0
- package/types/src/components/atoms/quick-filter/quick-filter.component.d.ts +11 -0
- package/types/src/components/atoms/quick-filter/quick-filter.styles.d.ts +34 -0
- package/types/src/components/atoms/select-list-item/select-list-item.component.d.ts +10 -0
- package/types/src/components/atoms/select-list-item/select-list-item.styles.d.ts +37 -0
- package/types/src/components/atoms/snackbar/snackbar.component.d.ts +8 -0
- package/types/src/components/atoms/snackbar/snackbar.styles.d.ts +50 -0
- package/types/src/components/atoms/tag/tag.component.d.ts +13 -0
- package/types/src/components/atoms/tag/tag.styles.d.ts +16 -0
- package/types/src/components/atoms/text-bubble/text-bubble.component.d.ts +10 -0
- package/types/src/components/atoms/text-bubble/text-bubble.styles.d.ts +62 -0
- package/types/src/components/atoms/text-input/text-input.component.d.ts +9 -0
- package/types/src/components/atoms/text-input/text-input.styles.d.ts +21 -0
- package/types/src/components/atoms/time-tracker/time-tracker.component.d.ts +8 -0
- package/types/src/components/atoms/time-tracker/time-tracker.styles.d.ts +25 -0
- package/types/src/components/atoms/wide-button/wide-button.component.d.ts +8 -0
- package/types/src/components/atoms/wide-button/wide-button.styles.d.ts +17 -0
- package/types/src/context/theme.context.d.ts +46 -0
- package/types/src/gradients/main/main.gradient.d.ts +2 -0
- package/types/src/gradients/main/main.styles.d.ts +7 -0
- package/types/src/icons/outline/chevron-right/chevron-right.icon.d.ts +3 -0
- package/types/src/icons/outline/cross/cross.icon.d.ts +3 -0
- package/types/src/icons/outline/filter/filter.icon.d.ts +3 -0
- package/types/src/models/initials.model.d.ts +7 -0
- package/types/src/theme/font/font.d.ts +72 -0
- package/types/src/theme/font/index.d.ts +3 -0
- package/types/src/theme/font/load-fonts.d.ts +1 -0
- package/types/src/theme/provider/index.d.ts +3 -0
- package/types/src/theme/provider/parent.theme.d.ts +43 -0
- package/types/src/theme/provider/staff-member.theme.d.ts +43 -0
- package/types/src/theme/scale/index.d.ts +12 -0
- package/types/src/types/bubble-alignment.enum.d.ts +4 -0
- package/types/src/types/icontype.type.d.ts +3 -0
- package/types/src/types/keyboard-types.enum.d.ts +9 -0
- package/types/src/types/size.enum.d.ts +5 -0
- package/types/src/types/visual-state.enum.d.ts +6 -0
- package/build/export.js +0 -10328
package/.prettierrc.js
ADDED
package/.yarnrc.yml
ADDED
package/App.d.ts
ADDED
package/App.tsx
ADDED
|
@@ -0,0 +1,655 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import {Button as ReactBtn, ScrollView} from 'react-native';
|
|
3
|
+
import {NavigationContainer} from '@react-navigation/native';
|
|
4
|
+
import {createNativeStackNavigator} from '@react-navigation/native-stack';
|
|
5
|
+
|
|
6
|
+
// To make luxon work for Android
|
|
7
|
+
import 'intl';
|
|
8
|
+
import 'intl/locale-data/jsonp/en';
|
|
9
|
+
|
|
10
|
+
// Components
|
|
11
|
+
import {ThemeCtx} from './src/context/theme.context';
|
|
12
|
+
import {StaffMemberTheme} from './src/theme/provider';
|
|
13
|
+
import {LoadFonts} from './src/theme/font';
|
|
14
|
+
import {AvatarPreview} from './src/components/molecules/avatar/avatar.preview';
|
|
15
|
+
import {ButtonPreview} from './src/components/molecules/button/button.preview';
|
|
16
|
+
import {PillPreview} from './src/components/molecules/pill/pill.preview';
|
|
17
|
+
import {SnackbarPreview} from './src/components/molecules/snackbar/snackbar.preview';
|
|
18
|
+
import {TextBubblePreview} from './src/components/organisms/text-bubble/text-bubble.preview';
|
|
19
|
+
import {ImageBubblePreview} from './src/components/atoms/image-bubble/image-bubble.preview';
|
|
20
|
+
import {TimeTrackerPreview} from './src/components/molecules/time-tracker/time-tracker.preview';
|
|
21
|
+
import {CancelLinkPreview} from './src/components/molecules/cancel-link/cancel-link.preview';
|
|
22
|
+
import {InfoPreview} from './src/components/molecules/info/info.preview';
|
|
23
|
+
import {IconSolidPreview} from './src/icons/solid/solid.preview';
|
|
24
|
+
import {IconOutlineWhitePreview} from './src/icons/outline/outline-white.preview';
|
|
25
|
+
import {IconOutlineDefaultPreview} from './src/icons/outline/outline-default.preview';
|
|
26
|
+
import {IconOutlineGreyPreview} from './src/icons/outline/outline-grey.preview';
|
|
27
|
+
import {TagPreview} from './src/components/molecules/tag/tag.preview';
|
|
28
|
+
import {PopoverPreview} from './src/components/templates/popover/popover.preview';
|
|
29
|
+
import {FilterTabPreview} from './src/components/molecules/filter-tab/filter-tab.preview';
|
|
30
|
+
import {ContactItemPreview} from './src/components/organisms/contact-item/contact-item.preview';
|
|
31
|
+
import {SelectListItemPreview} from './src/components/molecules/select-list-item/select-list-item-preview';
|
|
32
|
+
import {CheckboxPreview} from './src/components/molecules/checkbox/checkbox.preview';
|
|
33
|
+
import {CheckPreview} from './src/components/atoms/check-switch/check-switch.preview';
|
|
34
|
+
import {WideButtonPreview} from './src/components/molecules/wide-button/wide-button.preview';
|
|
35
|
+
import {PressableIconPreview} from './src/components/molecules/pressable-icon/pressable-icon.preview';
|
|
36
|
+
import {SplitContainerPreview} from './src/components/atoms/split-container/split-container.preview';
|
|
37
|
+
import {CalendarPreview} from './src/components/atoms/calendar/calendar.preview';
|
|
38
|
+
import {QuickFilterPreview} from './src/components/molecules/quick-filter/quick-filter.preview';
|
|
39
|
+
import {DateInputPreview} from './src/components/molecules/date-input/date-input.preview';
|
|
40
|
+
import {TextInputPreview} from './src/components/atoms/text-input/text-input.preview';
|
|
41
|
+
import {ChildListItemPreview} from './src/components/organisms/child-list-item/child-list-item.preview';
|
|
42
|
+
import {TimeLinePreview} from './src/components/molecules/timeline/timeline.preview';
|
|
43
|
+
import {SelectPickerPreview} from './src/components/molecules/select-picker/select-picker.preview';
|
|
44
|
+
import {FilterRangePreview} from './src/components/molecules/filter-range/filter-range.preview';
|
|
45
|
+
import {IncrementInputPreview} from './src/components/atoms/increment-input/increment-input.preview';
|
|
46
|
+
import {SwipePreview} from './src/components/molecules/swipe/swipe.preview';
|
|
47
|
+
import {LogoPreview} from './src/components/atoms/logo/logo.preview';
|
|
48
|
+
import {ContactRolePreview} from './src/components/molecules/contact-role/contact-role.preview';
|
|
49
|
+
import {SearchPreview} from './src/components/molecules/search-input/search.preview';
|
|
50
|
+
import {BlockedMessagePreview} from './src/components/molecules/blocked-message/blocked-message.preview';
|
|
51
|
+
import {DepartmentLogoPreview} from './src/components/molecules/department_logo/department-logo.preview';
|
|
52
|
+
import {CalendarSelectPreview} from './src/components/molecules/calendar-select/calendar-select.preview';
|
|
53
|
+
import {FooterPreview} from './src/components/atoms/footer/footer.preview';
|
|
54
|
+
import {DefaultSelectPreview} from './src/components/molecules/default-select/default-select.preview';
|
|
55
|
+
import {PasswordInputPreview} from './src/components/molecules/password-input/password-input.preview';
|
|
56
|
+
import {MessageInputPreview} from './src/components/molecules/message-input/message-input.preview';
|
|
57
|
+
import {HeadingsPreview} from './src/components/atoms/heading-components/headings.preview';
|
|
58
|
+
import {ParagraphComponentsPreview} from './src/components/atoms/paragraph-components/paragraph-components.preview';
|
|
59
|
+
import {MyChildListItemPreview} from './src/components/organisms/my-child-list-item/my-child-list-item.preview';
|
|
60
|
+
import {SelectLinkPreview} from './src/components/molecules/select-link/select-link.preview';
|
|
61
|
+
import {MoreInfoButtonPreview} from './src/components/molecules/more-info-button/more-info-button.preview';
|
|
62
|
+
import {LanguageButtonPreview} from './src/components/molecules/language-button/language-button.preview';
|
|
63
|
+
import {ModalPreview} from './src/components/templates/modal/modal.preview';
|
|
64
|
+
import {LoadingIndicatorPreview} from './src/components/organisms/loading-indicator/loading-indicator.preview';
|
|
65
|
+
import {WaveBackgroundPreview} from './src/components/molecules/wave-background/wave.preview';
|
|
66
|
+
import {ToddleDateTimePreview} from './src/utilities/toddle-datetime/toddle-datetime.preview';
|
|
67
|
+
import {BackgroundGradientPreview} from './src/components/atoms/background-gradient/background-gradient.preview';
|
|
68
|
+
import {PersonInfoCardPreview} from './src/components/organisms/person-info-card/person-info-card.preview';
|
|
69
|
+
import {TimePickerPreview} from './src/components/molecules/time-picker/time-picker.preview';
|
|
70
|
+
import {QuickMessagePreview} from './src/components/atoms/quick-message/quick-message.preview';
|
|
71
|
+
import {LinePreview} from './src/components/atoms/line/line.preview';
|
|
72
|
+
import {JournalEntryPreview} from './src/components/organisms/journal-entry/journal-entry.preview';
|
|
73
|
+
import { ContextLabelPreview } from './src/components/molecules/context-label/context-label.preview';
|
|
74
|
+
import { CountPreview } from './src/components/atoms/count/count.preview';
|
|
75
|
+
import { AmountPreview } from './src/components/molecules/amount/amount.preview';
|
|
76
|
+
import { BareTimePickerPreview } from './src/components/molecules/bare-time-picker/bare-time-picker.preview';
|
|
77
|
+
import { TimetableEditorPreview } from './src/components/organisms/timetable-editor/timetable-editor.preview';
|
|
78
|
+
import { InlineErrorPreview } from './src/components/molecules/inline-error/inline-error.preview';
|
|
79
|
+
import { SelectableListItemPreview } from './src/components/molecules/selectable-list-item/selectable-list-item-preview';
|
|
80
|
+
|
|
81
|
+
import {
|
|
82
|
+
SafeAreaProvider,
|
|
83
|
+
} from 'react-native-safe-area-context';
|
|
84
|
+
|
|
85
|
+
const Stack = createNativeStackNavigator();
|
|
86
|
+
|
|
87
|
+
const HomeScreen = ({navigation}: {navigation: any}) => {
|
|
88
|
+
return (
|
|
89
|
+
<ScrollView
|
|
90
|
+
style={{
|
|
91
|
+
flex: 1,
|
|
92
|
+
}}
|
|
93
|
+
contentContainerStyle={{
|
|
94
|
+
alignItems: 'center',
|
|
95
|
+
justifyContent: 'center',
|
|
96
|
+
}}
|
|
97
|
+
>
|
|
98
|
+
<ReactBtn title="Avatar" onPress={() => navigation.push('avatar')} />
|
|
99
|
+
<ReactBtn title="Amount" onPress={() => navigation.push('amount')} />
|
|
100
|
+
<ReactBtn
|
|
101
|
+
title="Blocked message"
|
|
102
|
+
onPress={() => navigation.push('blocked-message')}
|
|
103
|
+
/>
|
|
104
|
+
<ReactBtn title="Button" onPress={() => navigation.push('button')} />
|
|
105
|
+
<ReactBtn title="Calendar" onPress={() => navigation.push('calendar')} />
|
|
106
|
+
<ReactBtn
|
|
107
|
+
title="Calendar Select"
|
|
108
|
+
onPress={() => navigation.push('calendar-select')}
|
|
109
|
+
/>
|
|
110
|
+
<ReactBtn
|
|
111
|
+
title="Cancel Link"
|
|
112
|
+
onPress={() => navigation.push('cancel-link')}
|
|
113
|
+
/>
|
|
114
|
+
<ReactBtn title="Checkbox" onPress={() => navigation.push('checkbox')} />
|
|
115
|
+
<ReactBtn
|
|
116
|
+
title="Check Switch"
|
|
117
|
+
onPress={() => navigation.push('check-switch')}
|
|
118
|
+
/>
|
|
119
|
+
<ReactBtn
|
|
120
|
+
title="Child List Item"
|
|
121
|
+
onPress={() => navigation.push('child-list-item')}
|
|
122
|
+
/>
|
|
123
|
+
<ReactBtn
|
|
124
|
+
title="Contact Info Card"
|
|
125
|
+
onPress={() => navigation.push('person-info-card')}
|
|
126
|
+
/>
|
|
127
|
+
<ReactBtn
|
|
128
|
+
title="Contact Item"
|
|
129
|
+
onPress={() => navigation.push('contact-item')}
|
|
130
|
+
/>
|
|
131
|
+
<ReactBtn
|
|
132
|
+
title="Contact Role"
|
|
133
|
+
onPress={() => navigation.push('contact-role')}
|
|
134
|
+
/>
|
|
135
|
+
<ReactBtn
|
|
136
|
+
title="Context Label"
|
|
137
|
+
onPress={() => navigation.push('context-label')}
|
|
138
|
+
/>
|
|
139
|
+
<ReactBtn
|
|
140
|
+
title="Count"
|
|
141
|
+
onPress={() => navigation.push('count')}
|
|
142
|
+
/>
|
|
143
|
+
<ReactBtn
|
|
144
|
+
title="Date Input"
|
|
145
|
+
onPress={() => navigation.push('date-input')}
|
|
146
|
+
/>
|
|
147
|
+
<ReactBtn
|
|
148
|
+
title="Day Select"
|
|
149
|
+
onPress={() => navigation.push('day-select')}
|
|
150
|
+
/>
|
|
151
|
+
<ReactBtn
|
|
152
|
+
title="Default Select"
|
|
153
|
+
onPress={() => navigation.push('default-select')}
|
|
154
|
+
/>
|
|
155
|
+
<ReactBtn
|
|
156
|
+
title="Department Logo"
|
|
157
|
+
onPress={() => navigation.push('department-logo')}
|
|
158
|
+
/>
|
|
159
|
+
<ReactBtn
|
|
160
|
+
title="Filter Range"
|
|
161
|
+
onPress={() => navigation.push('filter-range')}
|
|
162
|
+
/>
|
|
163
|
+
<ReactBtn
|
|
164
|
+
title="Filter Tab"
|
|
165
|
+
onPress={() => navigation.push('filter-tab')}
|
|
166
|
+
/>
|
|
167
|
+
<ReactBtn title="Footer" onPress={() => navigation.push('footer')} />
|
|
168
|
+
<ReactBtn
|
|
169
|
+
title="Gradient Background"
|
|
170
|
+
onPress={() => navigation.push('background-gradient')}
|
|
171
|
+
/>
|
|
172
|
+
<ReactBtn title="Headings" onPress={() => navigation.push('headings')} />
|
|
173
|
+
<ReactBtn
|
|
174
|
+
title="Icons Default"
|
|
175
|
+
onPress={() => navigation.push('icons default')}
|
|
176
|
+
/>
|
|
177
|
+
<ReactBtn
|
|
178
|
+
title="Icons Grey"
|
|
179
|
+
onPress={() => navigation.push('icons grey')}
|
|
180
|
+
/>
|
|
181
|
+
<ReactBtn
|
|
182
|
+
title="Icons Solid"
|
|
183
|
+
onPress={() => navigation.push('icons solid')}
|
|
184
|
+
/>
|
|
185
|
+
<ReactBtn
|
|
186
|
+
title="Icons White"
|
|
187
|
+
onPress={() => navigation.push('icons white')}
|
|
188
|
+
/>
|
|
189
|
+
<ReactBtn
|
|
190
|
+
title="Image Bubble"
|
|
191
|
+
onPress={() => navigation.push('image-bubble')}
|
|
192
|
+
/>
|
|
193
|
+
<ReactBtn
|
|
194
|
+
title="Increment input"
|
|
195
|
+
onPress={() => navigation.push('increment-input')}
|
|
196
|
+
/>
|
|
197
|
+
<ReactBtn
|
|
198
|
+
title="Info Component"
|
|
199
|
+
onPress={() => navigation.push('info')}
|
|
200
|
+
/>
|
|
201
|
+
<ReactBtn
|
|
202
|
+
title="Inline Error"
|
|
203
|
+
onPress={() => navigation.push('inline-error')}
|
|
204
|
+
/>
|
|
205
|
+
<ReactBtn
|
|
206
|
+
title="Journal Entry"
|
|
207
|
+
onPress={() => navigation.push('journal-entry')}
|
|
208
|
+
/>
|
|
209
|
+
<ReactBtn
|
|
210
|
+
title="Language Button"
|
|
211
|
+
onPress={() => navigation.push('language-button')}
|
|
212
|
+
/>
|
|
213
|
+
<ReactBtn title="Line" onPress={() => navigation.push('line')} />
|
|
214
|
+
<ReactBtn
|
|
215
|
+
title="Loading Indicator"
|
|
216
|
+
onPress={() => navigation.push('loading-indicator')}
|
|
217
|
+
/>
|
|
218
|
+
<ReactBtn title="Logo" onPress={() => navigation.push('logo')} />
|
|
219
|
+
<ReactBtn
|
|
220
|
+
title="Message Input"
|
|
221
|
+
onPress={() => navigation.push('message-input')}
|
|
222
|
+
/>
|
|
223
|
+
<ReactBtn title="Modal" onPress={() => navigation.push('modal')} />
|
|
224
|
+
<ReactBtn
|
|
225
|
+
title="More Info Button"
|
|
226
|
+
onPress={() => navigation.push('more-info-button')}
|
|
227
|
+
/>
|
|
228
|
+
<ReactBtn
|
|
229
|
+
title="My Child List Item"
|
|
230
|
+
onPress={() => navigation.push('my-child-list-item')}
|
|
231
|
+
/>
|
|
232
|
+
<ReactBtn
|
|
233
|
+
title="Paragraphs"
|
|
234
|
+
onPress={() => navigation.push('paragraphs')}
|
|
235
|
+
/>
|
|
236
|
+
<ReactBtn
|
|
237
|
+
title="Password Input"
|
|
238
|
+
onPress={() => navigation.push('password-input')}
|
|
239
|
+
/>
|
|
240
|
+
<ReactBtn title="Pill" onPress={() => navigation.push('pill')} />
|
|
241
|
+
<ReactBtn title="Popover" onPress={() => navigation.push('popover')} />
|
|
242
|
+
<ReactBtn
|
|
243
|
+
title="Popover Action"
|
|
244
|
+
onPress={() => navigation.push('popover-action')}
|
|
245
|
+
/>
|
|
246
|
+
<ReactBtn
|
|
247
|
+
title="Pressable Icon"
|
|
248
|
+
onPress={() => navigation.push('pressable-icon')}
|
|
249
|
+
/>
|
|
250
|
+
<ReactBtn
|
|
251
|
+
title="Quick Filter"
|
|
252
|
+
onPress={() => navigation.push('quick-filter')}
|
|
253
|
+
/>
|
|
254
|
+
<ReactBtn
|
|
255
|
+
title="Quick Message"
|
|
256
|
+
onPress={() => navigation.push('quick-message')}
|
|
257
|
+
/>
|
|
258
|
+
<ReactBtn
|
|
259
|
+
title="Search Input"
|
|
260
|
+
onPress={() => navigation.push('search')}
|
|
261
|
+
/>
|
|
262
|
+
<ReactBtn
|
|
263
|
+
title="Select Link"
|
|
264
|
+
onPress={() => navigation.push('select-link')}
|
|
265
|
+
/>
|
|
266
|
+
<ReactBtn
|
|
267
|
+
title="Select List Item"
|
|
268
|
+
onPress={() => navigation.push('select-list-item')}
|
|
269
|
+
/>
|
|
270
|
+
<ReactBtn
|
|
271
|
+
title="Selectable List Item"
|
|
272
|
+
onPress={() => navigation.push('selectable-list-item')}
|
|
273
|
+
/>
|
|
274
|
+
<ReactBtn
|
|
275
|
+
title="Select Picker"
|
|
276
|
+
onPress={() => navigation.push('select-picker')}
|
|
277
|
+
/>
|
|
278
|
+
<ReactBtn title="Snackbar" onPress={() => navigation.push('snackbar')} />
|
|
279
|
+
<ReactBtn
|
|
280
|
+
title="Split Container"
|
|
281
|
+
onPress={() => navigation.push('split-container')}
|
|
282
|
+
/>
|
|
283
|
+
<ReactBtn title="Swiper" onPress={() => navigation.push('swiper')} />
|
|
284
|
+
<ReactBtn title="Tab View" onPress={() => navigation.push('tab-view')} />
|
|
285
|
+
<ReactBtn title="Tag" onPress={() => navigation.push('tag')} />
|
|
286
|
+
<ReactBtn
|
|
287
|
+
title="Text Bubble"
|
|
288
|
+
onPress={() => navigation.push('textBubble')}
|
|
289
|
+
/>
|
|
290
|
+
<ReactBtn
|
|
291
|
+
title="Text Inputs"
|
|
292
|
+
onPress={() => navigation.push('textInputs')}
|
|
293
|
+
/>
|
|
294
|
+
<ReactBtn
|
|
295
|
+
title="Time Picker"
|
|
296
|
+
onPress={() => navigation.push('time-picker')}
|
|
297
|
+
/>
|
|
298
|
+
<ReactBtn
|
|
299
|
+
title="Bare Time Picker"
|
|
300
|
+
onPress={() => navigation.push('bare-time-picker')}
|
|
301
|
+
/>
|
|
302
|
+
<ReactBtn
|
|
303
|
+
title="Time Tracker"
|
|
304
|
+
onPress={() => navigation.push('time-tracker')}
|
|
305
|
+
/>
|
|
306
|
+
<ReactBtn
|
|
307
|
+
title="Timetable Editor"
|
|
308
|
+
onPress={() => navigation.push('timetable-editor')}
|
|
309
|
+
/>
|
|
310
|
+
<ReactBtn title="Timeline" onPress={() => navigation.push('timeline')} />
|
|
311
|
+
<ReactBtn
|
|
312
|
+
title="Toddle DateTime"
|
|
313
|
+
onPress={() => navigation.push('toddle-datetime')}
|
|
314
|
+
/>
|
|
315
|
+
<ReactBtn
|
|
316
|
+
title="Wave Background"
|
|
317
|
+
onPress={() => navigation.push('wave')}
|
|
318
|
+
/>
|
|
319
|
+
<ReactBtn
|
|
320
|
+
title="Wide Button"
|
|
321
|
+
onPress={() => navigation.push('wide-button')}
|
|
322
|
+
/>
|
|
323
|
+
</ScrollView>
|
|
324
|
+
);
|
|
325
|
+
};
|
|
326
|
+
|
|
327
|
+
function App() {
|
|
328
|
+
const [fontsLoaded] = LoadFonts();
|
|
329
|
+
|
|
330
|
+
if (!fontsLoaded) {
|
|
331
|
+
return null;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
return (
|
|
335
|
+
<SafeAreaProvider>
|
|
336
|
+
<ThemeCtx.Provider value={StaffMemberTheme}>
|
|
337
|
+
<NavigationContainer>
|
|
338
|
+
<Stack.Navigator>
|
|
339
|
+
<Stack.Screen name="home" options={{
|
|
340
|
+
freezeOnBlur: false,
|
|
341
|
+
}}>
|
|
342
|
+
{(props) => <HomeScreen {...props} />}
|
|
343
|
+
</Stack.Screen>
|
|
344
|
+
<Stack.Screen name="avatar"options={{
|
|
345
|
+
freezeOnBlur: false,
|
|
346
|
+
}}>{() => <AvatarPreview />}</Stack.Screen>
|
|
347
|
+
<Stack.Screen name="amount"options={{
|
|
348
|
+
freezeOnBlur: false,
|
|
349
|
+
}}>{() => <AmountPreview />}</Stack.Screen>
|
|
350
|
+
<Stack.Screen name="background-gradient" options={{
|
|
351
|
+
freezeOnBlur: false,
|
|
352
|
+
}}>
|
|
353
|
+
{() => <BackgroundGradientPreview />}
|
|
354
|
+
</Stack.Screen>
|
|
355
|
+
<Stack.Screen name="blocked-message" options={{
|
|
356
|
+
freezeOnBlur: false,
|
|
357
|
+
}}>
|
|
358
|
+
{() => <BlockedMessagePreview />}
|
|
359
|
+
</Stack.Screen>
|
|
360
|
+
<Stack.Screen name="button" options={{
|
|
361
|
+
freezeOnBlur: false,
|
|
362
|
+
}}>{() => <ButtonPreview />}</Stack.Screen>
|
|
363
|
+
<Stack.Screen name="calendar" options={{
|
|
364
|
+
freezeOnBlur: false,
|
|
365
|
+
}}>
|
|
366
|
+
{() => <CalendarPreview />}
|
|
367
|
+
</Stack.Screen>
|
|
368
|
+
<Stack.Screen name="calendar-select" options={{
|
|
369
|
+
freezeOnBlur: false,
|
|
370
|
+
}}>
|
|
371
|
+
{() => <CalendarSelectPreview />}
|
|
372
|
+
</Stack.Screen>
|
|
373
|
+
<Stack.Screen name="cancel-link" options={{
|
|
374
|
+
freezeOnBlur: false,
|
|
375
|
+
}}>
|
|
376
|
+
{() => <CancelLinkPreview />}
|
|
377
|
+
</Stack.Screen>
|
|
378
|
+
<Stack.Screen name="checkbox" options={{
|
|
379
|
+
freezeOnBlur: false,
|
|
380
|
+
}}>
|
|
381
|
+
{() => <CheckboxPreview />}
|
|
382
|
+
</Stack.Screen>
|
|
383
|
+
<Stack.Screen name="check-switch" options={{
|
|
384
|
+
freezeOnBlur: false,
|
|
385
|
+
}}>
|
|
386
|
+
{() => <CheckPreview />}
|
|
387
|
+
</Stack.Screen>
|
|
388
|
+
<Stack.Screen name="child-list-item" options={{
|
|
389
|
+
freezeOnBlur: false,
|
|
390
|
+
}}>
|
|
391
|
+
{() => <ChildListItemPreview />}
|
|
392
|
+
</Stack.Screen>
|
|
393
|
+
<Stack.Screen name="contact-item" options={{
|
|
394
|
+
freezeOnBlur: false,
|
|
395
|
+
}}>
|
|
396
|
+
{() => <ContactItemPreview />}
|
|
397
|
+
</Stack.Screen>
|
|
398
|
+
<Stack.Screen name="contact-role" options={{
|
|
399
|
+
freezeOnBlur: false,
|
|
400
|
+
}}>
|
|
401
|
+
{() => <ContactRolePreview />}
|
|
402
|
+
</Stack.Screen>
|
|
403
|
+
<Stack.Screen name="context-label" options={{
|
|
404
|
+
freezeOnBlur: false,
|
|
405
|
+
}}>
|
|
406
|
+
{() => <ContextLabelPreview />}
|
|
407
|
+
</Stack.Screen>
|
|
408
|
+
<Stack.Screen name="count" options={{
|
|
409
|
+
freezeOnBlur: false,
|
|
410
|
+
}}>
|
|
411
|
+
{() => <CountPreview />}
|
|
412
|
+
</Stack.Screen>
|
|
413
|
+
<Stack.Screen name="date-input" options={{
|
|
414
|
+
freezeOnBlur: false,
|
|
415
|
+
}}>
|
|
416
|
+
{() => <DateInputPreview />}
|
|
417
|
+
</Stack.Screen>
|
|
418
|
+
<Stack.Screen name="default-select" options={{
|
|
419
|
+
freezeOnBlur: false,
|
|
420
|
+
}}>
|
|
421
|
+
{() => <DefaultSelectPreview />}
|
|
422
|
+
</Stack.Screen>
|
|
423
|
+
<Stack.Screen name="department-logo" options={{
|
|
424
|
+
freezeOnBlur: false,
|
|
425
|
+
}}>
|
|
426
|
+
{() => <DepartmentLogoPreview />}
|
|
427
|
+
</Stack.Screen>
|
|
428
|
+
<Stack.Screen name="filter-tab" options={{
|
|
429
|
+
freezeOnBlur: false,
|
|
430
|
+
}}>
|
|
431
|
+
{() => <FilterTabPreview />}
|
|
432
|
+
</Stack.Screen>
|
|
433
|
+
<Stack.Screen name="filter-range" options={{
|
|
434
|
+
freezeOnBlur: false,
|
|
435
|
+
}}>
|
|
436
|
+
{() => <FilterRangePreview />}
|
|
437
|
+
</Stack.Screen>
|
|
438
|
+
<Stack.Screen name="footer" options={{
|
|
439
|
+
freezeOnBlur: false,
|
|
440
|
+
}}>{() => <FooterPreview />}</Stack.Screen>
|
|
441
|
+
<Stack.Screen name="headings" options={{
|
|
442
|
+
freezeOnBlur: false,
|
|
443
|
+
}}>
|
|
444
|
+
{() => <HeadingsPreview />}
|
|
445
|
+
</Stack.Screen>
|
|
446
|
+
<Stack.Screen name="icons default" options={{
|
|
447
|
+
freezeOnBlur: false,
|
|
448
|
+
}}>
|
|
449
|
+
{() => <IconOutlineDefaultPreview />}
|
|
450
|
+
</Stack.Screen>
|
|
451
|
+
<Stack.Screen name="icons grey" options={{
|
|
452
|
+
freezeOnBlur: false,
|
|
453
|
+
}}>
|
|
454
|
+
{() => <IconOutlineGreyPreview />}
|
|
455
|
+
</Stack.Screen>
|
|
456
|
+
<Stack.Screen name="icons solid" options={{
|
|
457
|
+
freezeOnBlur: false,
|
|
458
|
+
}}>
|
|
459
|
+
{() => <IconSolidPreview />}
|
|
460
|
+
</Stack.Screen>
|
|
461
|
+
<Stack.Screen name="icons white" options={{
|
|
462
|
+
freezeOnBlur: false,
|
|
463
|
+
}}>
|
|
464
|
+
{() => <IconOutlineWhitePreview />}
|
|
465
|
+
</Stack.Screen>
|
|
466
|
+
<Stack.Screen name="image-bubble" options={{
|
|
467
|
+
freezeOnBlur: false,
|
|
468
|
+
}}>
|
|
469
|
+
{() => <ImageBubblePreview />}
|
|
470
|
+
</Stack.Screen>
|
|
471
|
+
<Stack.Screen name="increment-input" options={{
|
|
472
|
+
freezeOnBlur: false,
|
|
473
|
+
}}>
|
|
474
|
+
{() => <IncrementInputPreview />}
|
|
475
|
+
</Stack.Screen>
|
|
476
|
+
<Stack.Screen name="info" options={{
|
|
477
|
+
freezeOnBlur: false,
|
|
478
|
+
}}>{() => <InfoPreview />}</Stack.Screen>
|
|
479
|
+
<Stack.Screen name="journal-entry" options={{
|
|
480
|
+
freezeOnBlur: false,
|
|
481
|
+
}}>
|
|
482
|
+
{() => <JournalEntryPreview />}
|
|
483
|
+
</Stack.Screen>
|
|
484
|
+
<Stack.Screen name="language-button" options={{
|
|
485
|
+
freezeOnBlur: false,
|
|
486
|
+
}}>
|
|
487
|
+
{() => <LanguageButtonPreview />}
|
|
488
|
+
</Stack.Screen>
|
|
489
|
+
<Stack.Screen name="line" options={{
|
|
490
|
+
freezeOnBlur: false,
|
|
491
|
+
}}>{() => <LinePreview />}</Stack.Screen>
|
|
492
|
+
<Stack.Screen name="loading-indicator" options={{
|
|
493
|
+
freezeOnBlur: false,
|
|
494
|
+
}}>
|
|
495
|
+
{() => <LoadingIndicatorPreview />}
|
|
496
|
+
</Stack.Screen>
|
|
497
|
+
<Stack.Screen name="logo" options={{
|
|
498
|
+
freezeOnBlur: false,
|
|
499
|
+
}}>{() => <LogoPreview />}</Stack.Screen>
|
|
500
|
+
<Stack.Screen name="message-input" options={{
|
|
501
|
+
freezeOnBlur: false,
|
|
502
|
+
}}>
|
|
503
|
+
{() => <MessageInputPreview />}
|
|
504
|
+
</Stack.Screen>
|
|
505
|
+
<Stack.Screen name="modal" options={{headerShown: false, freezeOnBlur: false}}>
|
|
506
|
+
{() => <ModalPreview />}
|
|
507
|
+
</Stack.Screen>
|
|
508
|
+
<Stack.Screen name="more-info-button" options={{
|
|
509
|
+
freezeOnBlur: false,
|
|
510
|
+
}}>
|
|
511
|
+
{() => <MoreInfoButtonPreview />}
|
|
512
|
+
</Stack.Screen>
|
|
513
|
+
<Stack.Screen name="my-child-list-item" options={{
|
|
514
|
+
freezeOnBlur: false,
|
|
515
|
+
}}>
|
|
516
|
+
{() => <MyChildListItemPreview />}
|
|
517
|
+
</Stack.Screen>
|
|
518
|
+
<Stack.Screen name="paragraphs" options={{
|
|
519
|
+
freezeOnBlur: false,
|
|
520
|
+
}}>
|
|
521
|
+
{() => <ParagraphComponentsPreview />}
|
|
522
|
+
</Stack.Screen>
|
|
523
|
+
<Stack.Screen name="password-input" options={{
|
|
524
|
+
freezeOnBlur: false,
|
|
525
|
+
}}>
|
|
526
|
+
{() => <PasswordInputPreview />}
|
|
527
|
+
</Stack.Screen>
|
|
528
|
+
<Stack.Screen name="person-info-card" options={{
|
|
529
|
+
freezeOnBlur: false,
|
|
530
|
+
}}>
|
|
531
|
+
{() => <PersonInfoCardPreview />}
|
|
532
|
+
</Stack.Screen>
|
|
533
|
+
<Stack.Screen name="pill" options={{
|
|
534
|
+
freezeOnBlur: false,
|
|
535
|
+
}}>{() => <PillPreview />}</Stack.Screen>
|
|
536
|
+
<Stack.Screen name="popover" options={{headerShown: false, freezeOnBlur:false}}>
|
|
537
|
+
{() => <PopoverPreview />}
|
|
538
|
+
</Stack.Screen>
|
|
539
|
+
<Stack.Screen name="pressable-icon" options={{
|
|
540
|
+
freezeOnBlur: false,
|
|
541
|
+
}}>
|
|
542
|
+
{() => <PressableIconPreview />}
|
|
543
|
+
</Stack.Screen>
|
|
544
|
+
<Stack.Screen name="quick-filter" options={{
|
|
545
|
+
freezeOnBlur: false,
|
|
546
|
+
}}>
|
|
547
|
+
{() => <QuickFilterPreview />}
|
|
548
|
+
</Stack.Screen>
|
|
549
|
+
<Stack.Screen name="quick-message" options={{
|
|
550
|
+
freezeOnBlur: false,
|
|
551
|
+
}}>
|
|
552
|
+
{() => <QuickMessagePreview />}
|
|
553
|
+
</Stack.Screen>
|
|
554
|
+
<Stack.Screen name="search" options={{
|
|
555
|
+
freezeOnBlur: false,
|
|
556
|
+
}}>{() => <SearchPreview />}</Stack.Screen>
|
|
557
|
+
<Stack.Screen name="select-link" options={{
|
|
558
|
+
freezeOnBlur: false,
|
|
559
|
+
}}>
|
|
560
|
+
{() => <SelectLinkPreview />}
|
|
561
|
+
</Stack.Screen>
|
|
562
|
+
<Stack.Screen name="select-list-item" options={{
|
|
563
|
+
freezeOnBlur: false,
|
|
564
|
+
}}>
|
|
565
|
+
{() => <SelectListItemPreview />}
|
|
566
|
+
</Stack.Screen>
|
|
567
|
+
<Stack.Screen name="select-picker" options={{
|
|
568
|
+
freezeOnBlur: false,
|
|
569
|
+
}}>
|
|
570
|
+
{() => <SelectPickerPreview />}
|
|
571
|
+
</Stack.Screen>
|
|
572
|
+
<Stack.Screen name="snackbar" options={{
|
|
573
|
+
freezeOnBlur: false,
|
|
574
|
+
}}>
|
|
575
|
+
{() => <SnackbarPreview />}
|
|
576
|
+
</Stack.Screen>
|
|
577
|
+
<Stack.Screen name="split-container" options={{
|
|
578
|
+
freezeOnBlur: false,
|
|
579
|
+
}}>
|
|
580
|
+
{() => <SplitContainerPreview />}
|
|
581
|
+
</Stack.Screen>
|
|
582
|
+
<Stack.Screen name="swiper" options={{
|
|
583
|
+
freezeOnBlur: false,
|
|
584
|
+
}}>{() => <SwipePreview />}</Stack.Screen>
|
|
585
|
+
<Stack.Screen name="tag" options={{
|
|
586
|
+
freezeOnBlur: false,
|
|
587
|
+
}}>{() => <TagPreview />}</Stack.Screen>
|
|
588
|
+
<Stack.Screen name="textBubble" options={{
|
|
589
|
+
freezeOnBlur: false,
|
|
590
|
+
}}>
|
|
591
|
+
{() => <TextBubblePreview />}
|
|
592
|
+
</Stack.Screen>
|
|
593
|
+
<Stack.Screen name="textInputs" options={{
|
|
594
|
+
freezeOnBlur: false,
|
|
595
|
+
}}>
|
|
596
|
+
{() => <TextInputPreview />}
|
|
597
|
+
</Stack.Screen>
|
|
598
|
+
<Stack.Screen name="time-picker" options={{
|
|
599
|
+
freezeOnBlur: false,
|
|
600
|
+
}}>
|
|
601
|
+
{() => <TimePickerPreview />}
|
|
602
|
+
</Stack.Screen>
|
|
603
|
+
<Stack.Screen name="bare-time-picker" options={{
|
|
604
|
+
freezeOnBlur: false,
|
|
605
|
+
}}>
|
|
606
|
+
{() => <BareTimePickerPreview />}
|
|
607
|
+
</Stack.Screen>
|
|
608
|
+
<Stack.Screen name="time-tracker" options={{
|
|
609
|
+
freezeOnBlur: false,
|
|
610
|
+
}}>
|
|
611
|
+
{() => <TimeTrackerPreview />}
|
|
612
|
+
</Stack.Screen>
|
|
613
|
+
<Stack.Screen name="timetable-editor" options={{
|
|
614
|
+
freezeOnBlur: false,
|
|
615
|
+
}}>
|
|
616
|
+
{() => <TimetableEditorPreview />}
|
|
617
|
+
</Stack.Screen>
|
|
618
|
+
<Stack.Screen name="timeline" options={{
|
|
619
|
+
freezeOnBlur: false,
|
|
620
|
+
}}>
|
|
621
|
+
{() => <TimeLinePreview />}
|
|
622
|
+
</Stack.Screen>
|
|
623
|
+
<Stack.Screen name="toddle-datetime" options={{
|
|
624
|
+
freezeOnBlur: false,
|
|
625
|
+
}}>
|
|
626
|
+
{() => <ToddleDateTimePreview />}
|
|
627
|
+
</Stack.Screen>
|
|
628
|
+
<Stack.Screen name="wave" options={{
|
|
629
|
+
freezeOnBlur: false,
|
|
630
|
+
}}>
|
|
631
|
+
{() => <WaveBackgroundPreview />}
|
|
632
|
+
</Stack.Screen>
|
|
633
|
+
<Stack.Screen name="wide-button" options={{
|
|
634
|
+
freezeOnBlur: false,
|
|
635
|
+
}}>
|
|
636
|
+
{() => <WideButtonPreview />}
|
|
637
|
+
</Stack.Screen>
|
|
638
|
+
<Stack.Screen name="inline-error" options={{
|
|
639
|
+
freezeOnBlur: false,
|
|
640
|
+
}}>
|
|
641
|
+
{() => <InlineErrorPreview />}
|
|
642
|
+
</Stack.Screen>
|
|
643
|
+
<Stack.Screen name="selectable-list-item" options={{
|
|
644
|
+
freezeOnBlur: false,
|
|
645
|
+
}}>
|
|
646
|
+
{() => <SelectableListItemPreview />}
|
|
647
|
+
</Stack.Screen>
|
|
648
|
+
</Stack.Navigator>
|
|
649
|
+
</NavigationContainer>
|
|
650
|
+
</ThemeCtx.Provider>
|
|
651
|
+
</SafeAreaProvider>
|
|
652
|
+
);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
export default App;
|