@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
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {Scale} from '../../../theme/scale/index';
|
|
7
|
+
|
|
8
|
+
export const QrcodeIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
9
|
+
const context = useContext(ThemeCtx);
|
|
10
|
+
return (
|
|
11
|
+
<Svg width={size} height={size} viewBox="0 0 16 17" fill="none">
|
|
12
|
+
<Path
|
|
13
|
+
fill={color ? color : context.colors.main['0']}
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
d="M0.300049 1.60001C0.300049 0.964885 0.792536 0.450012 1.40005 0.450012H4.70005C5.30756 0.450012 5.80005 0.964885 5.80005 1.60001V5.05001C5.80005 5.68514 5.30756 6.20001 4.70005 6.20001H1.40005C0.792536 6.20001 0.300049 5.68514 0.300049 5.05001V1.60001ZM2.50005 3.90001V2.75001H3.60005V3.90001H2.50005Z"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
fill={color ? color : context.colors.main['0']}
|
|
20
|
+
fillRule="evenodd"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
d="M0.300049 11.95C0.300049 11.3149 0.792536 10.8 1.40005 10.8H4.70005C5.30756 10.8 5.80005 11.3149 5.80005 11.95V15.4C5.80005 16.0351 5.30756 16.55 4.70005 16.55H1.40005C0.792536 16.55 0.300049 16.0351 0.300049 15.4V11.95ZM2.50005 14.25V13.1H3.60005V14.25H2.50005Z"
|
|
23
|
+
/>
|
|
24
|
+
<Path
|
|
25
|
+
fill={color ? color : context.colors.main['0']}
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
d="M11.3 0.450012C10.6925 0.450012 10.2 0.964885 10.2 1.60001V5.05001C10.2 5.68514 10.6925 6.20001 11.3 6.20001H14.6C15.2076 6.20001 15.7 5.68514 15.7 5.05001V1.60001C15.7 0.964885 15.2076 0.450012 14.6 0.450012H11.3ZM12.4 2.75001V3.90001H13.5V2.75001H12.4Z"
|
|
29
|
+
/>
|
|
30
|
+
<Path
|
|
31
|
+
fill={color ? color : context.colors.main['0']}
|
|
32
|
+
d="M9.10005 1.60001C9.10005 0.964885 8.60756 0.450012 8.00005 0.450012C7.39254 0.450012 6.90005 0.964885 6.90005 1.60001V2.75001C6.90005 3.38514 7.39254 3.90001 8.00005 3.90001C8.60756 3.90001 9.10005 3.38514 9.10005 2.75001V1.60001Z"
|
|
33
|
+
/>
|
|
34
|
+
<Path
|
|
35
|
+
fill={color ? color : context.colors.main['0']}
|
|
36
|
+
d="M8.00005 5.05001C8.60756 5.05001 9.10005 5.56488 9.10005 6.20001V7.35001H11.3C11.9076 7.35001 12.4 7.86488 12.4 8.50001C12.4 9.13514 11.9076 9.65001 11.3 9.65001H8.00005C7.39254 9.65001 6.90005 9.13514 6.90005 8.50001V6.20001C6.90005 5.56488 7.39254 5.05001 8.00005 5.05001Z"
|
|
37
|
+
/>
|
|
38
|
+
<Path
|
|
39
|
+
fill={color ? color : context.colors.main['0']}
|
|
40
|
+
d="M14.6 7.35001C13.9925 7.35001 13.5 7.86488 13.5 8.50001C13.5 9.13514 13.9925 9.65001 14.6 9.65001C15.2076 9.65001 15.7 9.13514 15.7 8.50001C15.7 7.86488 15.2076 7.35001 14.6 7.35001Z"
|
|
41
|
+
/>
|
|
42
|
+
<Path
|
|
43
|
+
fill={color ? color : context.colors.main['0']}
|
|
44
|
+
d="M6.90005 11.95C6.90005 11.3149 7.39254 10.8 8.00005 10.8H9.10005C9.70756 10.8 10.2 11.3149 10.2 11.95C10.2 12.5851 9.70756 13.1 9.10005 13.1V15.4C9.10005 16.0351 8.60756 16.55 8.00005 16.55C7.39254 16.55 6.90005 16.0351 6.90005 15.4V11.95Z"
|
|
45
|
+
/>
|
|
46
|
+
<Path
|
|
47
|
+
fill={color ? color : context.colors.main['0']}
|
|
48
|
+
d="M4.70005 9.65001C5.30756 9.65001 5.80005 9.13514 5.80005 8.50001C5.80005 7.86488 5.30756 7.35001 4.70005 7.35001H1.40005C0.792536 7.35001 0.300049 7.86488 0.300049 8.50001C0.300049 9.13514 0.792536 9.65001 1.40005 9.65001H4.70005Z"
|
|
49
|
+
/>
|
|
50
|
+
<Path
|
|
51
|
+
fill={color ? color : context.colors.main['0']}
|
|
52
|
+
d="M15.7 11.95C15.7 12.5851 15.2076 13.1 14.6 13.1H12.4C11.7925 13.1 11.3 12.5851 11.3 11.95C11.3 11.3149 11.7925 10.8 12.4 10.8H14.6C15.2076 10.8 15.7 11.3149 15.7 11.95Z"
|
|
53
|
+
/>
|
|
54
|
+
<Path
|
|
55
|
+
fill={color ? color : context.colors.main['0']}
|
|
56
|
+
d="M14.6 16.55C15.2076 16.55 15.7 16.0351 15.7 15.4C15.7 14.7649 15.2076 14.25 14.6 14.25H11.3C10.6925 14.25 10.2 14.7649 10.2 15.4C10.2 16.0351 10.6925 16.55 11.3 16.55H14.6Z"
|
|
57
|
+
/>
|
|
58
|
+
</Svg>
|
|
59
|
+
);
|
|
60
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const RefreshIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 16 18" fill="none">
|
|
14
|
+
<Path
|
|
15
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
16
|
+
fill-rule="evenodd"
|
|
17
|
+
clip-rule="evenodd"
|
|
18
|
+
d="M1.40005 0.200012C2.00756 0.200012 2.50005 0.692499 2.50005 1.30001V3.61139C3.89715 2.18539 5.84462 1.30001 8.00005 1.30001C11.3544 1.30001 14.2051 3.44426 15.2616 6.43344C15.4641 7.00623 15.1639 7.63468 14.5911 7.83714C14.0183 8.03959 13.3898 7.73937 13.1874 7.16658C12.4318 5.02891 10.3931 3.50001 8.00005 3.50001C6.20162 3.50001 4.60329 4.36353 3.59934 5.70001H6.90005C7.50756 5.70001 8.00005 6.1925 8.00005 6.80001C8.00005 7.40752 7.50756 7.90001 6.90005 7.90001H1.40005C0.792536 7.90001 0.300049 7.40752 0.300049 6.80001V1.30001C0.300049 0.692499 0.792536 0.200012 1.40005 0.200012ZM1.40903 10.1629C1.98182 9.96044 2.61027 10.2607 2.81273 10.8334C3.56828 12.9711 5.60703 14.5 8.00005 14.5C9.79847 14.5 11.3968 13.6365 12.4008 12.3L9.10005 12.3C8.49254 12.3 8.00005 11.8075 8.00005 11.2C8.00005 10.5925 8.49254 10.1 9.10005 10.1H14.6C14.8918 10.1 15.1716 10.2159 15.3779 10.4222C15.5842 10.6285 15.7 10.9083 15.7 11.2V16.7C15.7 17.3075 15.2076 17.8 14.6 17.8C13.9925 17.8 13.5 17.3075 13.5 16.7V14.3886C12.1029 15.8146 10.1555 16.7 8.00005 16.7C4.6457 16.7 1.795 14.5558 0.738478 11.5666C0.536026 10.9938 0.836243 10.3653 1.40903 10.1629Z"
|
|
19
|
+
/>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const SearchIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
return (
|
|
12
|
+
<Svg width={size} height={size} viewBox="0 0 19 19" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
d="M7.20005 2.59999C4.65954 2.59999 2.60005 4.65948 2.60005 7.19999C2.60005 9.7405 4.65954 11.8 7.20005 11.8C9.74056 11.8 11.8 9.7405 11.8 7.19999C11.8 4.65948 9.74056 2.59999 7.20005 2.59999ZM0.300049 7.19999C0.300049 3.38922 3.38928 0.299988 7.20005 0.299988C11.0108 0.299988 14.1 3.38922 14.1 7.19999C14.1 8.69019 13.6276 10.0701 12.8244 11.198L18.3632 16.7368C18.8123 17.1859 18.8123 17.9141 18.3632 18.3632C17.9141 18.8123 17.186 18.8123 16.7369 18.3632L11.1981 12.8243C10.0701 13.6276 8.69025 14.1 7.20005 14.1C3.38928 14.1 0.300049 11.0108 0.300049 7.19999Z"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const SelectorIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
return (
|
|
12
|
+
<Svg width={size} height={size} viewBox="0 0 10 16" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
d="M4.99998 0.299988C5.29171 0.299988 5.5715 0.41588 5.77779 0.62217L9.07779 3.92217C9.50737 4.35175 9.50737 5.04823 9.07779 5.47781C8.64822 5.90738 7.95173 5.90738 7.52216 5.47781L4.99998 2.95562L2.47779 5.47781C2.04822 5.90738 1.35173 5.90738 0.922158 5.47781C0.492581 5.04823 0.492582 4.35175 0.922158 3.92217L4.22216 0.62217C4.42845 0.41588 4.70824 0.299988 4.99998 0.299988ZM0.922158 10.5222C1.35173 10.0926 2.04822 10.0926 2.47779 10.5222L4.99998 13.0444L7.52216 10.5222C7.95173 10.0926 8.64822 10.0926 9.07779 10.5222C9.50737 10.9517 9.50737 11.6482 9.07779 12.0778L5.77779 15.3778C5.34822 15.8074 4.65173 15.8074 4.22216 15.3778L0.922158 12.0778C0.492581 11.6482 0.492581 10.9517 0.922158 10.5222Z"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const ShareIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
return (
|
|
12
|
+
<Svg width={size} height={size} viewBox="0 0 22 22" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
d="M16.5 8.80001C18.3225 8.80001 19.7999 7.32255 19.7999 5.50001C19.7999 3.67747 18.3225 2.20001 16.5 2.20001C14.6774 2.20001 13.2 3.67747 13.2 5.50001C13.2 5.63804 13.2084 5.7741 13.2249 5.90768L7.7908 8.62472C7.19729 8.05217 6.38974 7.70001 5.49995 7.70001C3.67741 7.70001 2.19995 9.17747 2.19995 11C2.19995 12.8226 3.67741 14.3 5.49995 14.3C6.38976 14.3 7.19732 13.9478 7.79084 13.3753L13.2249 16.0923C13.2084 16.2259 13.2 16.362 13.2 16.5C13.2 18.3226 14.6774 19.8 16.5 19.8C18.3225 19.8 19.7999 18.3226 19.7999 16.5C19.7999 14.6775 18.3225 13.2 16.5 13.2C15.6102 13.2 14.8026 13.5522 14.2091 14.1247L8.77502 11.4077C8.79148 11.2741 8.79995 11.138 8.79995 11C8.79995 10.862 8.79147 10.7259 8.77501 10.5923L14.2091 7.87527C14.8026 8.44784 15.6101 8.80001 16.5 8.80001Z"
|
|
15
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
16
|
+
/>
|
|
17
|
+
</Svg>
|
|
18
|
+
);
|
|
19
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const SmViewGridAddIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
return (
|
|
12
|
+
<Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
15
|
+
d="M2.50005 0.300049C1.28502 0.300049 0.300049 1.28502 0.300049 2.50005V4.70005C0.300049 5.91508 1.28502 6.90005 2.50005 6.90005H4.70005C5.91508 6.90005 6.90005 5.91508 6.90005 4.70005V2.50005C6.90005 1.28502 5.91508 0.300049 4.70005 0.300049H2.50005Z"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
19
|
+
d="M2.50005 9.10005C1.28502 9.10005 0.300049 10.085 0.300049 11.3V13.5C0.300049 14.7151 1.28502 15.7 2.50005 15.7H4.70005C5.91508 15.7 6.90005 14.7151 6.90005 13.5V11.3C6.90005 10.085 5.91508 9.10005 4.70005 9.10005H2.50005Z"
|
|
20
|
+
/>
|
|
21
|
+
<Path
|
|
22
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
23
|
+
d="M9.10005 2.50005C9.10005 1.28502 10.085 0.300049 11.3 0.300049H13.5C14.7151 0.300049 15.7 1.28502 15.7 2.50005V4.70005C15.7 5.91508 14.7151 6.90005 13.5 6.90005H11.3C10.085 6.90005 9.10005 5.91508 9.10005 4.70005V2.50005Z"
|
|
24
|
+
/>
|
|
25
|
+
<Path
|
|
26
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
27
|
+
d="M12.4 9.10005C13.0076 9.10005 13.5 9.59254 13.5 10.2V11.3H14.6C15.2076 11.3 15.7 11.7925 15.7 12.4C15.7 13.0076 15.2076 13.5 14.6 13.5H13.5V14.6C13.5 15.2076 13.0076 15.7 12.4 15.7C11.7925 15.7 11.3 15.2076 11.3 14.6V13.5H10.2C9.59254 13.5 9.10005 13.0076 9.10005 12.4C9.10005 11.7925 9.59254 11.3 10.2 11.3H11.3V10.2C11.3 9.59254 11.7925 9.10005 12.4 9.10005Z"
|
|
28
|
+
/>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
};
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import React, {useContext} from 'react';
|
|
2
|
+
import {View} from 'react-native';
|
|
3
|
+
import {Icon} from '..';
|
|
4
|
+
import {ThemeCtx} from '../../context/theme.context';
|
|
5
|
+
|
|
6
|
+
export const IconSolidPreview = ({}: {}) => {
|
|
7
|
+
const Context = useContext(ThemeCtx);
|
|
8
|
+
const greyColor = Context.colors.ui.darkgrey;
|
|
9
|
+
const whiteColor = Context.colors.ui.white;
|
|
10
|
+
|
|
11
|
+
return (
|
|
12
|
+
<View
|
|
13
|
+
style={{
|
|
14
|
+
flex: 1,
|
|
15
|
+
padding: 20,
|
|
16
|
+
flexDirection: 'row',
|
|
17
|
+
alignContent: 'center',
|
|
18
|
+
}}
|
|
19
|
+
>
|
|
20
|
+
<View
|
|
21
|
+
style={{
|
|
22
|
+
flex: 1,
|
|
23
|
+
alignItems: 'center',
|
|
24
|
+
justifyContent: 'space-around',
|
|
25
|
+
backgroundColor: Context.colors.main['0'],
|
|
26
|
+
}}
|
|
27
|
+
>
|
|
28
|
+
<Icon style={'solid'} name={'calendar'} color={whiteColor} size={16} />
|
|
29
|
+
<Icon style={'solid'} name={'chat'} color={whiteColor} size={16} />
|
|
30
|
+
<Icon style={'solid'} name={'chat-alt'} color={whiteColor} size={16} />
|
|
31
|
+
<Icon
|
|
32
|
+
style={'solid'}
|
|
33
|
+
name={'check-circle'}
|
|
34
|
+
color={whiteColor}
|
|
35
|
+
size={16}
|
|
36
|
+
/>
|
|
37
|
+
<Icon
|
|
38
|
+
style={'solid'}
|
|
39
|
+
name={'chevron-left'}
|
|
40
|
+
color={whiteColor}
|
|
41
|
+
size={16}
|
|
42
|
+
/>
|
|
43
|
+
<Icon
|
|
44
|
+
style={'solid'}
|
|
45
|
+
name={'chevron-right'}
|
|
46
|
+
color={whiteColor}
|
|
47
|
+
size={16}
|
|
48
|
+
/>
|
|
49
|
+
<Icon style={'solid'} name={'clock'} color={whiteColor} size={16} />
|
|
50
|
+
<Icon
|
|
51
|
+
style={'solid'}
|
|
52
|
+
name={'cloud-download'}
|
|
53
|
+
color={whiteColor}
|
|
54
|
+
size={16}
|
|
55
|
+
/>
|
|
56
|
+
<Icon
|
|
57
|
+
style={'solid'}
|
|
58
|
+
name={'currency-euro'}
|
|
59
|
+
color={whiteColor}
|
|
60
|
+
size={16}
|
|
61
|
+
/>
|
|
62
|
+
<Icon
|
|
63
|
+
style={'solid'}
|
|
64
|
+
name={'document-text'}
|
|
65
|
+
color={whiteColor}
|
|
66
|
+
size={16}
|
|
67
|
+
/>
|
|
68
|
+
<Icon
|
|
69
|
+
style={'solid'}
|
|
70
|
+
name={'exclamation'}
|
|
71
|
+
color={whiteColor}
|
|
72
|
+
size={16}
|
|
73
|
+
/>
|
|
74
|
+
<Icon
|
|
75
|
+
style={'solid'}
|
|
76
|
+
name={'exclamation-circle'}
|
|
77
|
+
color={whiteColor}
|
|
78
|
+
size={16}
|
|
79
|
+
/>
|
|
80
|
+
<Icon style={'solid'} name={'eye'} color={whiteColor} size={16} />
|
|
81
|
+
<Icon style={'solid'} name={'eye-off'} color={whiteColor} size={16} />
|
|
82
|
+
<Icon style={'solid'} name={'filter'} color={whiteColor} size={16} />
|
|
83
|
+
<Icon
|
|
84
|
+
style={'solid'}
|
|
85
|
+
name={'information-circle'}
|
|
86
|
+
color={whiteColor}
|
|
87
|
+
size={16}
|
|
88
|
+
/>
|
|
89
|
+
</View>
|
|
90
|
+
<View
|
|
91
|
+
style={{
|
|
92
|
+
flex: 1,
|
|
93
|
+
alignItems: 'center',
|
|
94
|
+
justifyContent: 'space-around',
|
|
95
|
+
backgroundColor: Context.colors.ui.lightgrey,
|
|
96
|
+
}}
|
|
97
|
+
>
|
|
98
|
+
<Icon style={'solid'} name={'logout'} color={greyColor} size={22} />
|
|
99
|
+
<Icon style={'solid'} name={'mail'} color={greyColor} size={22} />
|
|
100
|
+
<Icon style={'solid'} name={'mail-open'} color={greyColor} size={22} />
|
|
101
|
+
<Icon style={'solid'} name={'menu'} color={greyColor} size={22} />
|
|
102
|
+
<Icon style={'solid'} name={'minus-sm'} color={greyColor} size={22} />
|
|
103
|
+
<Icon
|
|
104
|
+
style={'solid'}
|
|
105
|
+
name={'office-building'}
|
|
106
|
+
color={greyColor}
|
|
107
|
+
size={22}
|
|
108
|
+
/>
|
|
109
|
+
<Icon
|
|
110
|
+
style={'solid'}
|
|
111
|
+
name={'paper-airplane'}
|
|
112
|
+
color={greyColor}
|
|
113
|
+
size={22}
|
|
114
|
+
/>
|
|
115
|
+
<Icon style={'solid'} name={'paper-clip'} color={greyColor} size={22} />
|
|
116
|
+
<Icon style={'solid'} name={'pencil'} color={greyColor} size={22} />
|
|
117
|
+
<Icon style={'solid'} name={'phone'} color={greyColor} size={22} />
|
|
118
|
+
<Icon style={'solid'} name={'plus'} color={greyColor} size={22} />
|
|
119
|
+
<Icon style={'solid'} name={'plus-sm'} color={greyColor} size={22} />
|
|
120
|
+
</View>
|
|
121
|
+
<View
|
|
122
|
+
style={{
|
|
123
|
+
flex: 1,
|
|
124
|
+
alignItems: 'center',
|
|
125
|
+
justifyContent: 'space-around',
|
|
126
|
+
backgroundColor: Context.colors.main['9'],
|
|
127
|
+
}}
|
|
128
|
+
>
|
|
129
|
+
<Icon style={'solid'} name={'qrcode'} />
|
|
130
|
+
<Icon style={'solid'} name={'refresh'} />
|
|
131
|
+
<Icon style={'solid'} name={'search'} />
|
|
132
|
+
<Icon style={'solid'} name={'selector'} />
|
|
133
|
+
<Icon style={'solid'} name={'sm-view-grid-add'} />
|
|
134
|
+
<Icon style={'solid'} name={'status-online'} />
|
|
135
|
+
<Icon style={'solid'} name={'thumb-up'} />
|
|
136
|
+
<Icon style={'solid'} name={'trash'} />
|
|
137
|
+
<Icon style={'solid'} name={'user'} />
|
|
138
|
+
<Icon style={'solid'} name={'user-group'} />
|
|
139
|
+
<Icon style={'solid'} name={'users'} />
|
|
140
|
+
<Icon style={'solid'} name={'xmark'} />
|
|
141
|
+
<Icon style={'solid'} name={'share'} />
|
|
142
|
+
<Icon style={'solid'} name={'photograph'} />
|
|
143
|
+
</View>
|
|
144
|
+
</View>
|
|
145
|
+
);
|
|
146
|
+
};
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import {IconNameInterface} from '../../interfaces/icon.interface';
|
|
4
|
+
import {CalendarIcon as CalendarSolid} from './calendar/calendar.icon';
|
|
5
|
+
import {ChatIcon as ChatSolid} from './chat/chat.icon';
|
|
6
|
+
import {ChatAltIcon as ChatAltSolid} from './chat-alt/chat-alt-solid.icon';
|
|
7
|
+
import {CheckCircleIcon as CheckCircleSolid} from './check-circle/check-circle.icon';
|
|
8
|
+
import {ChevronLeftIcon as ChevronLeftSolid} from './chevron-left/chevron-left.icon';
|
|
9
|
+
import {ChevronRightIcon as ChevronRightSolid} from './chevron-right/chevron-right.icon';
|
|
10
|
+
import {ClockIcon as ClockSolid} from './clock/clock-solid.icon';
|
|
11
|
+
import {CloudDownloadIcon as CloudDownloadSolid} from './cloud-download/cloud-download.icon';
|
|
12
|
+
import {CurrencyEuroIcon as CurrencyEuroSolid} from './currency-euro/currency-euro.icon';
|
|
13
|
+
import {DocumentTextIcon as DocumentTextSolid} from './document-text/document-text-solid.icon';
|
|
14
|
+
import {ExclamationIcon as ExclamationSolid} from './exclamation/exclamation.icon';
|
|
15
|
+
import {ExclamationCircleIcon as ExclamationCircleSolid} from './exclamation-circle/exclamation-circle.icon';
|
|
16
|
+
import {EyeIcon as EyeSolid} from './eye/eye.icon';
|
|
17
|
+
import {EyeOffIcon as EyeOffSolid} from './eye-off/eye-off.icon';
|
|
18
|
+
import {FilterIcon as FilterSolid} from './filter/filter.icon';
|
|
19
|
+
import {InformationCircleIcon as InformationCircleSolid} from './information-circle/information-circle-solid.icon';
|
|
20
|
+
import {LogoutIcon as LogoutSolid} from './logout/logout.icon';
|
|
21
|
+
import {MailIcon as MailSolid} from './mail/mail.icon';
|
|
22
|
+
import {MailOpenIcon as MailOpenSolid} from './mail-open/mail-open.icon';
|
|
23
|
+
import {MenuIcon as MenuSolid} from './menu/menu.icon';
|
|
24
|
+
import {MinusSmallIcon as MinusSmallSolid} from './minus-sm/minus-sm.icon';
|
|
25
|
+
import {OfficeBuildingIcon as OfficeBuildingSolid} from './office-building/office-building.icon';
|
|
26
|
+
import {PaperAirplaneIcon as PaperAirplaneSolid} from './paper-airplane/paper-airplane.icon';
|
|
27
|
+
import {PaperClipIcon as PaperClipSolid} from './paperclip/paperclip.icon';
|
|
28
|
+
import {PencilIcon as PencilSolid} from './pencil/pencil-solid.icon';
|
|
29
|
+
import {PhoneIcon as PhoneSolid} from './phone/phone-solid.icon';
|
|
30
|
+
import {PlusIcon as PlusSolid} from './plus/plus.icon';
|
|
31
|
+
import {PlusSmallIcon as PlusSmallSolid} from './plus-sm/plus-sm.icon';
|
|
32
|
+
import {QrcodeIcon as QrcodeSolid} from './qrcode/qrcode.icon';
|
|
33
|
+
import {RefreshIcon as RefreshSolid} from './refresh/refresh-solid.icon';
|
|
34
|
+
import {SearchIcon as SearchSolid} from './search/search.icon';
|
|
35
|
+
import {SelectorIcon as SelectorSolid} from './selector/selector.icon';
|
|
36
|
+
import {SmViewGridAddIcon as SmViewGridAddSolid} from './sm-view-grid-add/sm-view-grid-add.icon';
|
|
37
|
+
import {StatusOnlineIcon as StatusOnlineSolid} from './status-online/status-online-solid.icon';
|
|
38
|
+
import {ThumbUpIcon as ThumbUpSolid} from './thumb-up/thumb-up.icon';
|
|
39
|
+
import {TrashIcon as TrashSolid} from './trash/trash-solid.icon';
|
|
40
|
+
import {UserIcon as UserSolid} from './user/user.icon';
|
|
41
|
+
import {UserGroupIcon as UserGroupSolid} from './user-group/user-group.icon';
|
|
42
|
+
import {UsersIcon as UsersSolid} from './users/users-solid.icon';
|
|
43
|
+
import {XMarkIcon as XMarkSolid} from './xmark/xmark.icon';
|
|
44
|
+
import {ShareIcon} from './share/share.icon';
|
|
45
|
+
import {PhotographIcon} from './photograph/photograph-solid.icon';
|
|
46
|
+
|
|
47
|
+
export const Solid = ({name, size, color}: IconNameInterface): JSX.Element => {
|
|
48
|
+
const renderIcon = ({name}: IconNameInterface): React.ReactNode => {
|
|
49
|
+
switch (name) {
|
|
50
|
+
case 'calendar':
|
|
51
|
+
return <CalendarSolid size={size} color={color} />;
|
|
52
|
+
case 'chat':
|
|
53
|
+
return <ChatSolid size={size} color={color} />;
|
|
54
|
+
case 'chat-alt':
|
|
55
|
+
return <ChatAltSolid size={size} color={color} />;
|
|
56
|
+
case 'check-circle':
|
|
57
|
+
return <CheckCircleSolid size={size} color={color} />;
|
|
58
|
+
case 'chevron-left':
|
|
59
|
+
return <ChevronLeftSolid size={size} color={color} />;
|
|
60
|
+
case 'chevron-right':
|
|
61
|
+
return <ChevronRightSolid size={size} color={color} />;
|
|
62
|
+
case 'clock':
|
|
63
|
+
return <ClockSolid size={size} color={color} />;
|
|
64
|
+
case 'cloud-download':
|
|
65
|
+
return <CloudDownloadSolid size={size} color={color} />;
|
|
66
|
+
case 'currency-euro':
|
|
67
|
+
return <CurrencyEuroSolid size={size} color={color} />;
|
|
68
|
+
case 'document-text':
|
|
69
|
+
return <DocumentTextSolid size={size} color={color} />;
|
|
70
|
+
case 'exclamation':
|
|
71
|
+
return <ExclamationSolid size={size} color={color} />;
|
|
72
|
+
case 'exclamation-circle':
|
|
73
|
+
return <ExclamationCircleSolid size={size} color={color} />;
|
|
74
|
+
case 'eye':
|
|
75
|
+
return <EyeSolid size={size} color={color} />;
|
|
76
|
+
case 'eye-off':
|
|
77
|
+
return <EyeOffSolid size={size} color={color} />;
|
|
78
|
+
case 'filter':
|
|
79
|
+
return <FilterSolid size={size} color={color} />;
|
|
80
|
+
case 'information-circle':
|
|
81
|
+
return <InformationCircleSolid size={size} color={color} />;
|
|
82
|
+
case 'logout':
|
|
83
|
+
return <LogoutSolid size={size} color={color} />;
|
|
84
|
+
case 'mail':
|
|
85
|
+
return <MailSolid size={size} color={color} />;
|
|
86
|
+
case 'mail-open':
|
|
87
|
+
return <MailOpenSolid size={size} color={color} />;
|
|
88
|
+
case 'menu':
|
|
89
|
+
return <MenuSolid size={size} color={color} />;
|
|
90
|
+
case 'minus-sm':
|
|
91
|
+
return <MinusSmallSolid size={size} color={color} />;
|
|
92
|
+
case 'office-building':
|
|
93
|
+
return <OfficeBuildingSolid size={size} color={color} />;
|
|
94
|
+
case 'paper-airplane':
|
|
95
|
+
return <PaperAirplaneSolid size={size} color={color} />;
|
|
96
|
+
case 'paper-clip':
|
|
97
|
+
return <PaperClipSolid size={size} color={color} />;
|
|
98
|
+
case 'pencil':
|
|
99
|
+
return <PencilSolid size={size} color={color} />;
|
|
100
|
+
case 'phone':
|
|
101
|
+
return <PhoneSolid size={size} color={color} />;
|
|
102
|
+
case 'plus':
|
|
103
|
+
return <PlusSolid size={size} color={color} />;
|
|
104
|
+
case 'plus-sm':
|
|
105
|
+
return <PlusSmallSolid size={size} color={color} />;
|
|
106
|
+
case 'qrcode':
|
|
107
|
+
return <QrcodeSolid size={size} color={color} />;
|
|
108
|
+
case 'refresh':
|
|
109
|
+
return <RefreshSolid size={size} color={color} />;
|
|
110
|
+
case 'search':
|
|
111
|
+
return <SearchSolid size={size} color={color} />;
|
|
112
|
+
case 'selector':
|
|
113
|
+
return <SelectorSolid size={size} color={color} />;
|
|
114
|
+
case 'sm-view-grid-add':
|
|
115
|
+
return <SmViewGridAddSolid size={size} color={color} />;
|
|
116
|
+
case 'status-online':
|
|
117
|
+
return <StatusOnlineSolid size={size} color={color} />;
|
|
118
|
+
case 'thumb-up':
|
|
119
|
+
return <ThumbUpSolid size={size} color={color} />;
|
|
120
|
+
case 'trash':
|
|
121
|
+
return <TrashSolid size={size} color={color} />;
|
|
122
|
+
case 'user':
|
|
123
|
+
return <UserSolid size={size} color={color} />;
|
|
124
|
+
case 'users':
|
|
125
|
+
return <UsersSolid size={size} color={color} />;
|
|
126
|
+
case 'user-group':
|
|
127
|
+
return <UserGroupSolid size={size} color={color} />;
|
|
128
|
+
case 'xmark':
|
|
129
|
+
return <XMarkSolid size={size} color={color} />;
|
|
130
|
+
case 'share':
|
|
131
|
+
return <ShareIcon size={size} color={color} />;
|
|
132
|
+
case 'photograph':
|
|
133
|
+
return <PhotographIcon size={size} color={color} />;
|
|
134
|
+
default:
|
|
135
|
+
alert('The icon you want is not available');
|
|
136
|
+
break;
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
return renderIcon({name}) as JSX.Element;
|
|
141
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const StatusOnlineIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 20 17" fill="none">
|
|
14
|
+
<Path
|
|
15
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
16
|
+
fillRule="evenodd"
|
|
17
|
+
clipRule="evenodd"
|
|
18
|
+
d="M4.55538 1.18119C4.98495 1.63029 4.98495 2.35843 4.55538 2.80753C1.54834 5.95125 1.54834 11.0482 4.55537 14.192C4.98495 14.6411 4.98495 15.3692 4.55537 15.8183C4.1258 16.2674 3.42932 16.2674 2.99974 15.8183C-0.86645 11.7764 -0.86645 5.22311 2.99974 1.18119C3.42932 0.732085 4.1258 0.732085 4.55538 1.18119ZM15.4448 1.18145C15.8744 0.732352 16.5709 0.732352 17.0005 1.18145C20.8667 5.22338 20.8667 11.7766 17.0005 15.8186C16.5709 16.2677 15.8744 16.2677 15.4448 15.8186C15.0153 15.3695 15.0153 14.6413 15.4448 14.1922C18.4519 11.0485 18.4519 5.95152 15.4448 2.8078C15.0153 2.3587 15.0153 1.63056 15.4448 1.18145ZM7.66665 4.43388C8.09623 4.88298 8.09623 5.61112 7.66665 6.06023C6.37792 7.40753 6.37792 9.59195 7.66665 10.9393C8.09623 11.3884 8.09623 12.1165 7.66665 12.5656C7.23707 13.0147 6.54059 13.0147 6.11102 12.5656C3.96313 10.3201 3.96313 6.67939 6.11102 4.43388C6.54059 3.98478 7.23708 3.98478 7.66665 4.43388ZM12.3336 4.43415C12.7631 3.98504 13.4596 3.98504 13.8892 4.43415C16.0371 6.67966 16.0371 10.3204 13.8892 12.5659C13.4596 13.015 12.7631 13.015 12.3336 12.5659C11.904 12.1168 11.904 11.3886 12.3336 10.9395C13.6223 9.59222 13.6223 7.4078 12.3336 6.06049C11.904 5.61139 11.904 4.88325 12.3336 4.43415ZM10.0001 7.35001C10.6076 7.35001 11.1001 7.86488 11.1001 8.50001V8.51151C11.1001 9.14664 10.6076 9.66151 10.0001 9.66151C9.39259 9.66151 8.9001 9.14664 8.9001 8.51151V8.50001C8.9001 7.86488 9.39259 7.35001 10.0001 7.35001Z"
|
|
19
|
+
/>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const ThumbUpIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
return (
|
|
12
|
+
<Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
15
|
+
d="M0.199951 9.54995C0.199951 8.63868 0.938681 7.89995 1.84995 7.89995C2.76122 7.89995 3.49995 8.63868 3.49995 9.54995V16.15C3.49995 17.0612 2.76122 17.7999 1.84995 17.7999C0.938681 17.7999 0.199951 17.0612 0.199951 16.15V9.54995Z"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
19
|
+
d="M4.59995 9.36662V15.3403C4.59995 16.1736 5.07076 16.9354 5.81608 17.308L5.87091 17.3354C6.48187 17.6409 7.15557 17.7999 7.83865 17.7999H13.7964C14.8451 17.7999 15.748 17.0597 15.9537 16.0314L17.2737 9.43141C17.5459 8.07007 16.5047 6.79995 15.1164 6.79995H11.2V2.39995C11.2 1.18492 10.215 0.199951 8.99995 0.199951C8.39244 0.199951 7.89995 0.692438 7.89995 1.29995V2.03328C7.89995 2.98531 7.59117 3.91166 7.01995 4.67328L5.47995 6.72662C4.90873 7.48824 4.59995 8.41459 4.59995 9.36662Z"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const TrashIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 17 18" fill="none">
|
|
14
|
+
<Path
|
|
15
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
16
|
+
fillRule="evenodd"
|
|
17
|
+
clipRule="evenodd"
|
|
18
|
+
d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
|
|
19
|
+
/>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import {useContext} from 'react';
|
|
3
|
+
import Svg, {Path} from 'react-native-svg';
|
|
4
|
+
import {ThemeCtx} from '../../../context/theme.context';
|
|
5
|
+
import {IconSVGProps} from '../../../interfaces/icon.interface';
|
|
6
|
+
import {HexColor} from '../../../models/hex-color.model';
|
|
7
|
+
import {Scale} from '../../../theme/scale/index';
|
|
8
|
+
|
|
9
|
+
export const UserIcon = ({color, size = Scale.l}: IconSVGProps) => {
|
|
10
|
+
const context = useContext(ThemeCtx);
|
|
11
|
+
return (
|
|
12
|
+
<Svg width={size} height={size} viewBox="0 0 17 18" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
15
|
+
d="M8.49995 7.35001C10.4053 7.35001 11.95 5.80539 11.95 3.90001C11.95 1.99463 10.4053 0.450012 8.49995 0.450012C6.59457 0.450012 5.04995 1.99463 5.04995 3.90001C5.04995 5.80539 6.59457 7.35001 8.49995 7.35001Z"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
fill={color ? HexColor.of(color).toString() : context.colors.main['0']}
|
|
19
|
+
d="M0.449951 17.7C0.449951 13.2541 4.05406 9.65001 8.49995 9.65001C12.9458 9.65001 16.55 13.2541 16.55 17.7H0.449951Z"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
};
|