@nlabs/gothamui 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/MIGRATION.md +36 -0
- package/README.md +768 -0
- package/docs/assets/gothamui-app-architecture.svg +159 -0
- package/docs/assets/gothamui-logo.png +0 -0
- package/docs/assets/gothamui-logo.svg +42 -0
- package/docs/render-performance.md +34 -0
- package/lib/actions/GothamActions.d.ts +42 -0
- package/lib/actions/GothamActions.js +67 -0
- package/lib/actions/MarkdownActions.d.ts +4 -0
- package/lib/actions/MarkdownActions.js +48 -0
- package/lib/app.d.ts +1 -0
- package/lib/app.js +198 -0
- package/lib/components/Alert/Alert.d.ts +8 -0
- package/lib/components/Alert/Alert.js +24 -0
- package/lib/components/Alert/Alert.stories.js +59 -0
- package/lib/components/AuthRoute/AuthRoute.d.ts +3 -0
- package/lib/components/AuthRoute/AuthRoute.js +21 -0
- package/lib/components/AuthRoute/AuthRoute.stories.js +45 -0
- package/lib/components/AutocompleteField/AutocompleteField.d.ts +24 -0
- package/lib/components/AutocompleteField/AutocompleteField.js +148 -0
- package/lib/components/AutocompleteField/AutocompleteField.stories.js +62 -0
- package/lib/components/Avatar/Avatar.d.ts +29 -0
- package/lib/components/Avatar/Avatar.js +154 -0
- package/lib/components/Avatar/Avatar.stories.js +105 -0
- package/lib/components/Badge/Badge.d.ts +9 -0
- package/lib/components/Badge/Badge.js +22 -0
- package/lib/components/Badge/Badge.stories.js +53 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.d.ts +19 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.js +74 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.js +95 -0
- package/lib/components/Button/Button.d.ts +25 -0
- package/lib/components/Button/Button.js +157 -0
- package/lib/components/Button/Button.stories.js +119 -0
- package/lib/components/Card/Card.d.ts +8 -0
- package/lib/components/Card/Card.js +39 -0
- package/lib/components/Card/Card.stories.js +60 -0
- package/lib/components/CategoryGrid/CategoryGrid.d.ts +15 -0
- package/lib/components/CategoryGrid/CategoryGrid.js +42 -0
- package/lib/components/CategoryGrid/CategoryGrid.stories.js +35 -0
- package/lib/components/Chat/AudioMessage/AudioMessage.css +1 -0
- package/lib/components/Chat/AudioMessage/AudioMessage.d.ts +3 -0
- package/lib/components/Chat/AudioMessage/AudioMessage.js +28 -0
- package/lib/components/Chat/Avatar/Avatar.css +1 -0
- package/lib/components/Chat/Avatar/Avatar.d.ts +3 -0
- package/lib/components/Chat/Avatar/Avatar.js +72 -0
- package/lib/components/Chat/Button/Button.css +1 -0
- package/lib/components/Chat/Button/Button.d.ts +3 -0
- package/lib/components/Chat/Button/Button.js +37 -0
- package/lib/components/Chat/Chat.stories.js +688 -0
- package/lib/components/Chat/ChatItem/ChatItem.css +1 -0
- package/lib/components/Chat/ChatItem/ChatItem.d.ts +3 -0
- package/lib/components/Chat/ChatItem/ChatItem.js +183 -0
- package/lib/components/Chat/ChatList/ChatList.css +1 -0
- package/lib/components/Chat/ChatList/ChatList.d.ts +3 -0
- package/lib/components/Chat/ChatList/ChatList.js +84 -0
- package/lib/components/Chat/Circle/Circle.d.ts +3 -0
- package/lib/components/Chat/Circle/Circle.js +27 -0
- package/lib/components/Chat/Dropdown/Dropdown.css +1 -0
- package/lib/components/Chat/Dropdown/Dropdown.d.ts +3 -0
- package/lib/components/Chat/Dropdown/Dropdown.js +66 -0
- package/lib/components/Chat/FileMessage/FileMessage.css +1 -0
- package/lib/components/Chat/FileMessage/FileMessage.d.ts +3 -0
- package/lib/components/Chat/FileMessage/FileMessage.js +77 -0
- package/lib/components/Chat/Input/Input.css +1 -0
- package/lib/components/Chat/Input/Input.d.ts +3 -0
- package/lib/components/Chat/Input/Input.js +108 -0
- package/lib/components/Chat/LocationMessage/LocationMessage.css +1 -0
- package/lib/components/Chat/LocationMessage/LocationMessage.d.ts +3 -0
- package/lib/components/Chat/LocationMessage/LocationMessage.js +36 -0
- package/lib/components/Chat/MeetingItem/MeetingItem.css +1 -0
- package/lib/components/Chat/MeetingItem/MeetingItem.d.ts +3 -0
- package/lib/components/Chat/MeetingItem/MeetingItem.js +106 -0
- package/lib/components/Chat/MeetingLink/MeetingLink.css +1 -0
- package/lib/components/Chat/MeetingLink/MeetingLink.d.ts +3 -0
- package/lib/components/Chat/MeetingLink/MeetingLink.js +26 -0
- package/lib/components/Chat/MeetingList/MeetingList.css +1 -0
- package/lib/components/Chat/MeetingList/MeetingList.d.ts +3 -0
- package/lib/components/Chat/MeetingList/MeetingList.js +52 -0
- package/lib/components/Chat/MeetingMessage/MeetingMessage.css +1 -0
- package/lib/components/Chat/MeetingMessage/MeetingMessage.d.ts +3 -0
- package/lib/components/Chat/MeetingMessage/MeetingMessage.js +227 -0
- package/lib/components/Chat/MessageBox/MessageBox.css +1 -0
- package/lib/components/Chat/MessageBox/MessageBox.d.ts +3 -0
- package/lib/components/Chat/MessageBox/MessageBox.js +263 -0
- package/lib/components/Chat/MessageList/MessageList.css +1 -0
- package/lib/components/Chat/MessageList/MessageList.d.ts +2 -0
- package/lib/components/Chat/MessageList/MessageList.js +196 -0
- package/lib/components/Chat/Navbar/Navbar.css +1 -0
- package/lib/components/Chat/Navbar/Navbar.d.ts +3 -0
- package/lib/components/Chat/Navbar/Navbar.js +21 -0
- package/lib/components/Chat/PhotoMessage/PhotoMessage.css +1 -0
- package/lib/components/Chat/PhotoMessage/PhotoMessage.d.ts +3 -0
- package/lib/components/Chat/PhotoMessage/PhotoMessage.js +73 -0
- package/lib/components/Chat/Popup/Popup.css +1 -0
- package/lib/components/Chat/Popup/Popup.d.ts +3 -0
- package/lib/components/Chat/Popup/Popup.js +45 -0
- package/lib/components/Chat/README.md +50 -0
- package/lib/components/Chat/ReplyMessage/ReplyMessage.css +1 -0
- package/lib/components/Chat/ReplyMessage/ReplyMessage.d.ts +3 -0
- package/lib/components/Chat/ReplyMessage/ReplyMessage.js +42 -0
- package/lib/components/Chat/SideBar/SideBar.css +1 -0
- package/lib/components/Chat/SideBar/SideBar.d.ts +3 -0
- package/lib/components/Chat/SideBar/SideBar.js +21 -0
- package/lib/components/Chat/SpotifyMessage/SpotifyMessage.css +1 -0
- package/lib/components/Chat/SpotifyMessage/SpotifyMessage.d.ts +3 -0
- package/lib/components/Chat/SpotifyMessage/SpotifyMessage.js +28 -0
- package/lib/components/Chat/SystemMessage/SystemMessage.css +1 -0
- package/lib/components/Chat/SystemMessage/SystemMessage.d.ts +3 -0
- package/lib/components/Chat/SystemMessage/SystemMessage.js +14 -0
- package/lib/components/Chat/VideoMessage/VideoMessage.css +1 -0
- package/lib/components/Chat/VideoMessage/VideoMessage.d.ts +3 -0
- package/lib/components/Chat/VideoMessage/VideoMessage.js +88 -0
- package/lib/components/Chat/assets/img/leftArrow.svg +6 -0
- package/lib/components/Chat/assets/img/rightArrow.svg +6 -0
- package/lib/components/Chat/index.d.ts +25 -0
- package/lib/components/Chat/index.js +27 -0
- package/lib/components/Chat/type.d.js +52 -0
- package/lib/components/Chat/utils/formatRelativeDate.d.ts +4 -0
- package/lib/components/Chat/utils/formatRelativeDate.js +110 -0
- package/lib/components/Checkbox/Checkbox.d.ts +15 -0
- package/lib/components/Checkbox/Checkbox.js +106 -0
- package/lib/components/Checkbox/Checkbox.stories.js +51 -0
- package/lib/components/ComponentUtils/renderWithAsChild.d.ts +9 -0
- package/lib/components/ComponentUtils/renderWithAsChild.js +27 -0
- package/lib/components/Container/Container.d.ts +7 -0
- package/lib/components/Container/Container.js +16 -0
- package/lib/components/Container/Container.stories.js +36 -0
- package/lib/components/DateField/DateField.d.ts +22 -0
- package/lib/components/DateField/DateField.js +145 -0
- package/lib/components/DateField/DateField.stories.js +125 -0
- package/lib/components/DateField/DatePicker.d.ts +9 -0
- package/lib/components/DateField/DatePicker.js +205 -0
- package/lib/components/DateField/DatePicker.stories.js +33 -0
- package/lib/components/DescriptionList/DescriptionList.d.ts +4 -0
- package/lib/components/DescriptionList/DescriptionList.js +19 -0
- package/lib/components/DescriptionList/DescriptionList.stories.js +34 -0
- package/lib/components/Dialog/Dialog.d.ts +25 -0
- package/lib/components/Dialog/Dialog.js +66 -0
- package/lib/components/Dialog/Dialog.stories.js +88 -0
- package/lib/components/DropUpload/DropUpload.d.ts +37 -0
- package/lib/components/DropUpload/DropUpload.js +323 -0
- package/lib/components/DropUpload/DropUpload.stories.js +48 -0
- package/lib/components/Empty/Empty.d.ts +11 -0
- package/lib/components/Empty/Empty.js +39 -0
- package/lib/components/Empty/Empty.stories.js +52 -0
- package/lib/components/EmptyState/EmptyState.d.ts +15 -0
- package/lib/components/EmptyState/EmptyState.js +44 -0
- package/lib/components/EmptyState/EmptyState.stories.js +36 -0
- package/lib/components/ErrorMessage/ErrorMessage.d.ts +7 -0
- package/lib/components/ErrorMessage/ErrorMessage.js +20 -0
- package/lib/components/ErrorMessage/ErrorMessage.stories.js +25 -0
- package/lib/components/FaqSection/FaqSection.d.ts +14 -0
- package/lib/components/FaqSection/FaqSection.js +37 -0
- package/lib/components/FaqSection/FaqSection.stories.js +31 -0
- package/lib/components/Fieldset/Fieldset.d.ts +21 -0
- package/lib/components/Fieldset/Fieldset.js +39 -0
- package/lib/components/Fieldset/Fieldset.stories.js +42 -0
- package/lib/components/Footer/Footer.d.ts +26 -0
- package/lib/components/Footer/Footer.js +119 -0
- package/lib/components/Footer/Footer.stories.js +184 -0
- package/lib/components/Form/Form.d.ts +42 -0
- package/lib/components/Form/Form.js +198 -0
- package/lib/components/Form/Form.stories.js +65 -0
- package/lib/components/Form/FormContext.d.ts +35 -0
- package/lib/components/Form/FormContext.js +71 -0
- package/lib/components/GothamRoute/GothamRoute.d.ts +0 -0
- package/lib/components/GothamRoute/GothamRoute.js +56 -0
- package/lib/components/GothamRouter/GothamRouter.d.ts +0 -0
- package/lib/components/GothamRouter/GothamRouter.js +52 -0
- package/lib/components/Heading/Heading.d.ts +7 -0
- package/lib/components/Heading/Heading.js +20 -0
- package/lib/components/Heading/Heading.stories.js +51 -0
- package/lib/components/IncentiveGrid/IncentiveGrid.d.ts +15 -0
- package/lib/components/IncentiveGrid/IncentiveGrid.js +34 -0
- package/lib/components/IncentiveGrid/IncentiveGrid.stories.js +41 -0
- package/lib/components/InputField/InputField.d.ts +25 -0
- package/lib/components/InputField/InputField.js +68 -0
- package/lib/components/InputField/InputField.stories.js +58 -0
- package/lib/components/Item/Item.d.ts +25 -0
- package/lib/components/Item/Item.js +79 -0
- package/lib/components/Item/Item.stories.js +94 -0
- package/lib/components/Kbd/Kbd.d.ts +2 -0
- package/lib/components/Kbd/Kbd.js +9 -0
- package/lib/components/Kbd/Kbd.stories.js +24 -0
- package/lib/components/Label/Label.d.ts +11 -0
- package/lib/components/Label/Label.js +23 -0
- package/lib/components/Label/Label.stories.js +38 -0
- package/lib/components/Link/Link.d.ts +7 -0
- package/lib/components/Link/Link.js +13 -0
- package/lib/components/Link/Link.stories.js +28 -0
- package/lib/components/ListContainer/ListContainer.d.ts +8 -0
- package/lib/components/ListContainer/ListContainer.js +14 -0
- package/lib/components/ListContainer/ListContainer.stories.js +45 -0
- package/lib/components/Loader/Loader.d.ts +9 -0
- package/lib/components/Loader/Loader.js +36 -0
- package/lib/components/Loader/Loader.stories.js +94 -0
- package/lib/components/LogoCloud/LogoCloud.d.ts +15 -0
- package/lib/components/LogoCloud/LogoCloud.js +43 -0
- package/lib/components/LogoCloud/LogoCloud.stories.js +28 -0
- package/lib/components/Markdown/Markdown.d.ts +8 -0
- package/lib/components/Markdown/Markdown.js +64 -0
- package/lib/components/Markdown/Markdown.stories.js +34 -0
- package/lib/components/MediaLightbox/MediaLightbox.d.ts +22 -0
- package/lib/components/MediaLightbox/MediaLightbox.js +80 -0
- package/lib/components/MediaObject/MediaObject.d.ts +8 -0
- package/lib/components/MediaObject/MediaObject.js +37 -0
- package/lib/components/MediaObject/MediaObject.stories.js +28 -0
- package/lib/components/Navbar/Navbar.d.ts +43 -0
- package/lib/components/Navbar/Navbar.js +213 -0
- package/lib/components/Navbar/Navbar.stories.js +235 -0
- package/lib/components/NotFound/NotFound.d.ts +34 -0
- package/lib/components/NotFound/NotFound.js +351 -0
- package/lib/components/NotFound/NotFound.stories.js +80 -0
- package/lib/components/Notify/Notify.d.ts +18 -0
- package/lib/components/Notify/Notify.js +178 -0
- package/lib/components/Notify/Notify.stories.js +148 -0
- package/lib/components/Notify/NotifyExample.d.ts +1 -0
- package/lib/components/Notify/NotifyExample.js +174 -0
- package/lib/components/Notify/README.md +103 -0
- package/lib/components/Pagination/Pagination.d.ts +18 -0
- package/lib/components/Pagination/Pagination.js +225 -0
- package/lib/components/Pagination/Pagination.stories.js +69 -0
- package/lib/components/PasswordStrengthMeter/PasswordStrengthMeter.d.ts +12 -0
- package/lib/components/PasswordStrengthMeter/PasswordStrengthMeter.js +88 -0
- package/lib/components/PasswordStrengthMeter/PasswordStrengthMeter.stories.js +16 -0
- package/lib/components/PaymentMethodPanel/PaymentMethodPanel.d.ts +18 -0
- package/lib/components/PaymentMethodPanel/PaymentMethodPanel.js +113 -0
- package/lib/components/PaymentMethodPanel/PaymentMethodPanel.stories.js +88 -0
- package/lib/components/Pricing/Pricing.d.ts +78 -0
- package/lib/components/Pricing/Pricing.js +764 -0
- package/lib/components/Pricing/Pricing.stories.js +146 -0
- package/lib/components/ProductGrid/ProductGrid.d.ts +23 -0
- package/lib/components/ProductGrid/ProductGrid.js +79 -0
- package/lib/components/ProductGrid/ProductGrid.stories.js +50 -0
- package/lib/components/ProgressSteps/ProgressSteps.d.ts +13 -0
- package/lib/components/ProgressSteps/ProgressSteps.js +51 -0
- package/lib/components/ProgressSteps/ProgressSteps.stories.js +35 -0
- package/lib/components/RadioField/RadioField.d.ts +16 -0
- package/lib/components/RadioField/RadioField.js +63 -0
- package/lib/components/RadioField/RadioField.stories.js +140 -0
- package/lib/components/ReviewList/ReviewList.d.ts +15 -0
- package/lib/components/ReviewList/ReviewList.js +51 -0
- package/lib/components/ReviewList/ReviewList.stories.js +29 -0
- package/lib/components/SectionHeader/SectionHeader.d.ts +9 -0
- package/lib/components/SectionHeader/SectionHeader.js +36 -0
- package/lib/components/SectionHeader/SectionHeader.stories.js +35 -0
- package/lib/components/SelectField/SelectField.d.ts +18 -0
- package/lib/components/SelectField/SelectField.js +145 -0
- package/lib/components/SelectField/SelectField.stories.js +155 -0
- package/lib/components/SelectField/SelectOption.d.ts +13 -0
- package/lib/components/SelectField/SelectOption.js +40 -0
- package/lib/components/SelectField/SelectOption.stories.js +40 -0
- package/lib/components/Separator/Separator.d.ts +6 -0
- package/lib/components/Separator/Separator.js +13 -0
- package/lib/components/Separator/Separator.stories.js +70 -0
- package/lib/components/Skeleton/Skeleton.d.ts +2 -0
- package/lib/components/Skeleton/Skeleton.js +9 -0
- package/lib/components/Skeleton/Skeleton.stories.js +24 -0
- package/lib/components/Svg/Svg.d.ts +9 -0
- package/lib/components/Svg/Svg.js +25 -0
- package/lib/components/Svg/Svg.stories.js +34 -0
- package/lib/components/Switch/Switch.d.ts +12 -0
- package/lib/components/Switch/Switch.js +54 -0
- package/lib/components/Switch/Switch.stories.js +61 -0
- package/lib/components/Table/Table.d.ts +18 -0
- package/lib/components/Table/Table.js +99 -0
- package/lib/components/Table/Table.stories.js +79 -0
- package/lib/components/Tabs/Tabs.d.ts +17 -0
- package/lib/components/Tabs/Tabs.js +85 -0
- package/lib/components/Tabs/Tabs.stories.js +45 -0
- package/lib/components/Text/Text.d.ts +5 -0
- package/lib/components/Text/Text.js +24 -0
- package/lib/components/Text/Text.stories.js +35 -0
- package/lib/components/TextField/TextField.d.ts +31 -0
- package/lib/components/TextField/TextField.js +91 -0
- package/lib/components/TextField/TextField.stories.js +158 -0
- package/lib/components/Textarea/Textarea.d.ts +5 -0
- package/lib/components/Textarea/Textarea.js +10 -0
- package/lib/components/Textarea/Textarea.stories.js +32 -0
- package/lib/components/index.d.ts +60 -0
- package/lib/components/index.js +62 -0
- package/lib/config/appConfig.d.ts +5 -0
- package/lib/config/appConfig.js +20 -0
- package/lib/constants/AuthConstants.d.ts +8 -0
- package/lib/constants/AuthConstants.js +9 -0
- package/lib/constants/GothamConstants.d.ts +24 -0
- package/lib/constants/GothamConstants.js +25 -0
- package/lib/constants/MarkdownConstants.d.ts +8 -0
- package/lib/constants/MarkdownConstants.js +9 -0
- package/lib/constants/MessageConstants.d.ts +10 -0
- package/lib/constants/MessageConstants.js +11 -0
- package/lib/docs/analytics.md +231 -0
- package/lib/docs/api-reference.md +364 -0
- package/lib/docs/comparison.md +83 -0
- package/lib/docs/containers.md +11 -0
- package/lib/docs/gettingStarted.md +338 -0
- package/lib/docs/payments.md +79 -0
- package/lib/editor/CodeEditor.d.ts +11 -0
- package/lib/editor/CodeEditor.js +15 -0
- package/lib/editor/CodeEditor.stories.js +24 -0
- package/lib/editor/index.d.ts +1 -0
- package/lib/editor/index.js +3 -0
- package/lib/errors/UserError.d.ts +8 -0
- package/lib/errors/UserError.js +12 -0
- package/lib/examples/OptimizedFormExample.d.ts +1 -0
- package/lib/examples/OptimizedFormExample.js +130 -0
- package/lib/form/index.d.ts +11 -0
- package/lib/form/index.js +13 -0
- package/lib/hooks/useIsMobile.d.ts +1 -0
- package/lib/hooks/useIsMobile.js +12 -0
- package/lib/i18n/index.d.ts +8 -0
- package/lib/i18n/index.js +7 -0
- package/lib/icons/Dual Ring-1s-100px.svg +1 -0
- package/lib/icons/gotham-logo.svg +17 -0
- package/lib/icons/gotham.svg +8 -0
- package/lib/icons/index.d.ts +5 -0
- package/lib/icons/index.js +6 -0
- package/lib/icons/pencil.svg +6 -0
- package/lib/img/arkhamjs-logo.png +0 -0
- package/lib/img/logo.png +0 -0
- package/lib/index.d.ts +25 -0
- package/lib/index.js +25 -0
- package/lib/router/index.d.ts +5 -0
- package/lib/router/index.js +6 -0
- package/lib/stores/GothamAppStore.d.ts +35 -0
- package/lib/stores/GothamAppStore.js +70 -0
- package/lib/stories/Button.d.ts +28 -0
- package/lib/stories/Button.js +22 -0
- package/lib/stories/Header.d.ts +12 -0
- package/lib/stories/Header.js +78 -0
- package/lib/stories/Page.d.ts +3 -0
- package/lib/stories/Page.js +108 -0
- package/lib/stories/assets/accessibility.png +0 -0
- package/lib/stories/assets/accessibility.svg +5 -0
- package/lib/stories/assets/addon-library.png +0 -0
- package/lib/stories/assets/assets.png +0 -0
- package/lib/stories/assets/context.png +0 -0
- package/lib/stories/assets/discord.svg +15 -0
- package/lib/stories/assets/docs.png +0 -0
- package/lib/stories/assets/figma-plugin.png +0 -0
- package/lib/stories/assets/github.svg +3 -0
- package/lib/stories/assets/share.png +0 -0
- package/lib/stories/assets/styling.png +0 -0
- package/lib/stories/assets/testing.png +0 -0
- package/lib/stories/assets/theming.png +0 -0
- package/lib/stories/assets/tutorials.svg +12 -0
- package/lib/stories/assets/youtube.svg +4 -0
- package/lib/stories/button.css +1 -0
- package/lib/stories/header.css +1 -0
- package/lib/stories/page.css +1 -0
- package/lib/styles/chat.css +1 -0
- package/lib/styles/index.css +2 -0
- package/lib/styles/tailwind.css +1 -0
- package/lib/types/assets.d.js +2 -0
- package/lib/types/gotham.d.ts +12 -0
- package/lib/types/gotham.js +3 -0
- package/lib/types/vitest-globals.d.js +3 -0
- package/lib/utils/GothamContext.d.ts +14 -0
- package/lib/utils/GothamContext.js +14 -0
- package/lib/utils/awsRum.d.ts +23 -0
- package/lib/utils/awsRum.js +50 -0
- package/lib/utils/colorUtils.d.ts +20 -0
- package/lib/utils/colorUtils.js +499 -0
- package/lib/utils/contentUtils.d.ts +2 -0
- package/lib/utils/contentUtils.js +18 -0
- package/lib/utils/i18nUtil.d.ts +1 -0
- package/lib/utils/i18nUtil.js +7 -0
- package/lib/utils/imageUtils.d.ts +5 -0
- package/lib/utils/imageUtils.js +48 -0
- package/lib/utils/interactionAnalytics.d.ts +10 -0
- package/lib/utils/interactionAnalytics.js +142 -0
- package/lib/utils/navEventQueue.d.ts +6 -0
- package/lib/utils/navEventQueue.js +50 -0
- package/lib/utils/refUtils.d.ts +2 -0
- package/lib/utils/refUtils.js +11 -0
- package/lib/utils/routeUtils.d.ts +12 -0
- package/lib/utils/routeUtils.js +109 -0
- package/lib/utils/sizeUtils.d.ts +5 -0
- package/lib/utils/sizeUtils.js +6 -0
- package/lib/utils/storyInteractions.d.ts +6 -0
- package/lib/utils/storyInteractions.js +45 -0
- package/lib/utils/storyUtils.d.ts +1 -0
- package/lib/utils/storyUtils.js +11 -0
- package/lib/utils/testUtils.d.ts +3 -0
- package/lib/utils/testUtils.js +56 -0
- package/lib/utils/timer.d.ts +21 -0
- package/lib/utils/timer.js +38 -0
- package/lib/utils/useBreakpoint.d.ts +6 -0
- package/lib/utils/useBreakpoint.js +56 -0
- package/lib/utils/viewPerformance.d.ts +34 -0
- package/lib/utils/viewPerformance.js +103 -0
- package/lib/utils/viewUtils.d.ts +9 -0
- package/lib/utils/viewUtils.js +44 -0
- package/lib/views/AuthSignInView/AuthSignInView.d.ts +20 -0
- package/lib/views/AuthSignInView/AuthSignInView.js +107 -0
- package/lib/views/AuthSignInView/AuthSignInView.stories.js +29 -0
- package/lib/views/AuthSignUpView/AuthSignUpView.d.ts +21 -0
- package/lib/views/AuthSignUpView/AuthSignUpView.js +146 -0
- package/lib/views/AuthSignUpView/AuthSignUpView.stories.js +30 -0
- package/lib/views/AuthView/AuthView.d.ts +16 -0
- package/lib/views/AuthView/AuthView.js +60 -0
- package/lib/views/AuthView/AuthView.stories.js +34 -0
- package/lib/views/DefaultView/DefaultView.d.ts +5 -0
- package/lib/views/DefaultView/DefaultView.js +134 -0
- package/lib/views/Gotham/Gotham.d.ts +44 -0
- package/lib/views/Gotham/Gotham.js +24 -0
- package/lib/views/Gotham/Gotham.stories.js +31 -0
- package/lib/views/Gotham/GothamListeners.d.ts +0 -0
- package/lib/views/Gotham/GothamListeners.js +2 -0
- package/lib/views/Gotham/GothamProvider.d.ts +43 -0
- package/lib/views/Gotham/GothamProvider.js +217 -0
- package/lib/views/Gotham/GothamRoot.d.ts +6 -0
- package/lib/views/Gotham/GothamRoot.js +69 -0
- package/lib/views/HomeView/HomeView.d.ts +10 -0
- package/lib/views/HomeView/HomeView.js +134 -0
- package/lib/views/LoaderView/LoaderView.d.ts +8 -0
- package/lib/views/LoaderView/LoaderView.js +30 -0
- package/lib/views/MenuView/MenuView.d.ts +13 -0
- package/lib/views/MenuView/MenuView.js +305 -0
- package/lib/views/NotFoundView/NotFoundView.d.ts +2 -0
- package/lib/views/NotFoundView/NotFoundView.js +12 -0
- package/lib/views/index.d.ts +11 -0
- package/lib/views/index.js +13 -0
- package/package.json +202 -0
- package/styles/tailwind.css +1 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useState } from 'react';
|
|
3
|
+
import { Header } from './Header.js';
|
|
4
|
+
import './page.css';
|
|
5
|
+
export const Page = ()=>{
|
|
6
|
+
const [user, setUser] = useState();
|
|
7
|
+
return /*#__PURE__*/ _jsxs("article", {
|
|
8
|
+
children: [
|
|
9
|
+
/*#__PURE__*/ _jsx(Header, {
|
|
10
|
+
user: user,
|
|
11
|
+
onLogin: ()=>setUser({
|
|
12
|
+
name: 'Jane Doe'
|
|
13
|
+
}),
|
|
14
|
+
onLogout: ()=>setUser(undefined),
|
|
15
|
+
onCreateAccount: ()=>setUser({
|
|
16
|
+
name: 'Jane Doe'
|
|
17
|
+
})
|
|
18
|
+
}),
|
|
19
|
+
/*#__PURE__*/ _jsxs("section", {
|
|
20
|
+
className: "storybook-page",
|
|
21
|
+
children: [
|
|
22
|
+
/*#__PURE__*/ _jsx("h2", {
|
|
23
|
+
children: "Pages in Storybook"
|
|
24
|
+
}),
|
|
25
|
+
/*#__PURE__*/ _jsxs("p", {
|
|
26
|
+
children: [
|
|
27
|
+
"We recommend building UIs with a",
|
|
28
|
+
' ',
|
|
29
|
+
/*#__PURE__*/ _jsx("a", {
|
|
30
|
+
href: "https://componentdriven.org",
|
|
31
|
+
target: "_blank",
|
|
32
|
+
rel: "noopener noreferrer",
|
|
33
|
+
children: /*#__PURE__*/ _jsx("strong", {
|
|
34
|
+
children: "component-driven"
|
|
35
|
+
})
|
|
36
|
+
}),
|
|
37
|
+
' ',
|
|
38
|
+
"process starting with atomic components and ending with pages."
|
|
39
|
+
]
|
|
40
|
+
}),
|
|
41
|
+
/*#__PURE__*/ _jsx("p", {
|
|
42
|
+
children: "Render pages with mock data. This makes it easy to build and review page states without needing to navigate to them in your app. Here are some handy patterns for managing page data in Storybook:"
|
|
43
|
+
}),
|
|
44
|
+
/*#__PURE__*/ _jsxs("ul", {
|
|
45
|
+
children: [
|
|
46
|
+
/*#__PURE__*/ _jsx("li", {
|
|
47
|
+
children: 'Use a higher-level connected component. Storybook helps you compose such data from the "args" of child component stories'
|
|
48
|
+
}),
|
|
49
|
+
/*#__PURE__*/ _jsx("li", {
|
|
50
|
+
children: "Assemble data in the page component from your services. You can mock these services out using Storybook."
|
|
51
|
+
})
|
|
52
|
+
]
|
|
53
|
+
}),
|
|
54
|
+
/*#__PURE__*/ _jsxs("p", {
|
|
55
|
+
children: [
|
|
56
|
+
"Get a guided tutorial on component-driven development at",
|
|
57
|
+
' ',
|
|
58
|
+
/*#__PURE__*/ _jsx("a", {
|
|
59
|
+
href: "https://storybook.js.org/tutorials/",
|
|
60
|
+
target: "_blank",
|
|
61
|
+
rel: "noopener noreferrer",
|
|
62
|
+
children: "Storybook tutorials"
|
|
63
|
+
}),
|
|
64
|
+
". Read more in the",
|
|
65
|
+
' ',
|
|
66
|
+
/*#__PURE__*/ _jsx("a", {
|
|
67
|
+
href: "https://storybook.js.org/docs",
|
|
68
|
+
target: "_blank",
|
|
69
|
+
rel: "noopener noreferrer",
|
|
70
|
+
children: "docs"
|
|
71
|
+
}),
|
|
72
|
+
"."
|
|
73
|
+
]
|
|
74
|
+
}),
|
|
75
|
+
/*#__PURE__*/ _jsxs("div", {
|
|
76
|
+
className: "tip-wrapper",
|
|
77
|
+
children: [
|
|
78
|
+
/*#__PURE__*/ _jsx("span", {
|
|
79
|
+
className: "tip",
|
|
80
|
+
children: "Tip"
|
|
81
|
+
}),
|
|
82
|
+
" Adjust the width of the canvas with the",
|
|
83
|
+
' ',
|
|
84
|
+
/*#__PURE__*/ _jsx("svg", {
|
|
85
|
+
width: "10",
|
|
86
|
+
height: "10",
|
|
87
|
+
viewBox: "0 0 12 12",
|
|
88
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
89
|
+
children: /*#__PURE__*/ _jsx("g", {
|
|
90
|
+
fill: "none",
|
|
91
|
+
fillRule: "evenodd",
|
|
92
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
93
|
+
d: "M1.5 5.2h4.8c.3 0 .5.2.5.4v5.1c-.1.2-.3.3-.4.3H1.4a.5.5 0 01-.5-.4V5.7c0-.3.2-.5.5-.5zm0-2.1h6.9c.3 0 .5.2.5.4v7a.5.5 0 01-1 0V4H1.5a.5.5 0 010-1zm0-2.1h9c.3 0 .5.2.5.4v9.1a.5.5 0 01-1 0V2H1.5a.5.5 0 010-1zm4.3 5.2H2V10h3.8V6.2z",
|
|
94
|
+
id: "a",
|
|
95
|
+
fill: "#999"
|
|
96
|
+
})
|
|
97
|
+
})
|
|
98
|
+
}),
|
|
99
|
+
"Viewports addon in the toolbar"
|
|
100
|
+
]
|
|
101
|
+
})
|
|
102
|
+
]
|
|
103
|
+
})
|
|
104
|
+
]
|
|
105
|
+
});
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi9Vc2Vycy9uaXRyb2c3L0RldmVsb3BtZW50L2dvdGhhbWpzL3NyYy9zdG9yaWVzL1BhZ2UudHN4Il0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7dXNlU3RhdGV9IGZyb20gJ3JlYWN0JztcblxuaW1wb3J0IHtIZWFkZXJ9IGZyb20gJy4vSGVhZGVyLmpzJztcbmltcG9ydCAnLi9wYWdlLmNzcyc7XG5cbmltcG9ydCB0eXBlIHtGQ30gZnJvbSAncmVhY3QnO1xuXG50eXBlIFVzZXIgPSB7XG4gIG5hbWU6IHN0cmluZztcbn07XG5cbmV4cG9ydCBjb25zdCBQYWdlOiBGQyA9ICgpID0+IHtcbiAgY29uc3QgW3VzZXIsIHNldFVzZXJdID0gdXNlU3RhdGU8VXNlcj4oKTtcblxuICByZXR1cm4gKFxuICAgIDxhcnRpY2xlPlxuICAgICAgPEhlYWRlclxuICAgICAgICB1c2VyPXt1c2VyfVxuICAgICAgICBvbkxvZ2luPXsoKSA9PiBzZXRVc2VyKHtuYW1lOiAnSmFuZSBEb2UnfSl9XG4gICAgICAgIG9uTG9nb3V0PXsoKSA9PiBzZXRVc2VyKHVuZGVmaW5lZCl9XG4gICAgICAgIG9uQ3JlYXRlQWNjb3VudD17KCkgPT4gc2V0VXNlcih7bmFtZTogJ0phbmUgRG9lJ30pfVxuICAgICAgLz5cblxuICAgICAgPHNlY3Rpb24gY2xhc3NOYW1lPVwic3Rvcnlib29rLXBhZ2VcIj5cbiAgICAgICAgPGgyPlBhZ2VzIGluIFN0b3J5Ym9vazwvaDI+XG4gICAgICAgIDxwPlxuICAgICAgICAgIFdlIHJlY29tbWVuZCBidWlsZGluZyBVSXMgd2l0aCBheycgJ31cbiAgICAgICAgICA8YSBocmVmPVwiaHR0cHM6Ly9jb21wb25lbnRkcml2ZW4ub3JnXCIgdGFyZ2V0PVwiX2JsYW5rXCIgcmVsPVwibm9vcGVuZXIgbm9yZWZlcnJlclwiPlxuICAgICAgICAgICAgPHN0cm9uZz5jb21wb25lbnQtZHJpdmVuPC9zdHJvbmc+XG4gICAgICAgICAgPC9hPnsnICd9XG4gICAgICAgICAgcHJvY2VzcyBzdGFydGluZyB3aXRoIGF0b21pYyBjb21wb25lbnRzIGFuZCBlbmRpbmcgd2l0aCBwYWdlcy5cbiAgICAgICAgPC9wPlxuICAgICAgICA8cD5cbiAgICAgICAgICBSZW5kZXIgcGFnZXMgd2l0aCBtb2NrIGRhdGEuIFRoaXMgbWFrZXMgaXQgZWFzeSB0byBidWlsZCBhbmQgcmV2aWV3IHBhZ2Ugc3RhdGVzIHdpdGhvdXRcbiAgICAgICAgICBuZWVkaW5nIHRvIG5hdmlnYXRlIHRvIHRoZW0gaW4geW91ciBhcHAuIEhlcmUgYXJlIHNvbWUgaGFuZHkgcGF0dGVybnMgZm9yIG1hbmFnaW5nIHBhZ2VcbiAgICAgICAgICBkYXRhIGluIFN0b3J5Ym9vazpcbiAgICAgICAgPC9wPlxuICAgICAgICA8dWw+XG4gICAgICAgICAgPGxpPlxuICAgICAgICAgICAgVXNlIGEgaGlnaGVyLWxldmVsIGNvbm5lY3RlZCBjb21wb25lbnQuIFN0b3J5Ym9vayBoZWxwcyB5b3UgY29tcG9zZSBzdWNoIGRhdGEgZnJvbSB0aGVcbiAgICAgICAgICAgIFwiYXJnc1wiIG9mIGNoaWxkIGNvbXBvbmVudCBzdG9yaWVzXG4gICAgICAgICAgPC9saT5cbiAgICAgICAgICA8bGk+XG4gICAgICAgICAgICBBc3NlbWJsZSBkYXRhIGluIHRoZSBwYWdlIGNvbXBvbmVudCBmcm9tIHlvdXIgc2VydmljZXMuIFlvdSBjYW4gbW9jayB0aGVzZSBzZXJ2aWNlcyBvdXRcbiAgICAgICAgICAgIHVzaW5nIFN0b3J5Ym9vay5cbiAgICAgICAgICA8L2xpPlxuICAgICAgICA8L3VsPlxuICAgICAgICA8cD5cbiAgICAgICAgICBHZXQgYSBndWlkZWQgdHV0b3JpYWwgb24gY29tcG9uZW50LWRyaXZlbiBkZXZlbG9wbWVudCBhdHsnICd9XG4gICAgICAgICAgPGEgaHJlZj1cImh0dHBzOi8vc3Rvcnlib29rLmpzLm9yZy90dXRvcmlhbHMvXCIgdGFyZ2V0PVwiX2JsYW5rXCIgcmVsPVwibm9vcGVuZXIgbm9yZWZlcnJlclwiPlxuICAgICAgICAgICAgU3Rvcnlib29rIHR1dG9yaWFsc1xuICAgICAgICAgIDwvYT5cbiAgICAgICAgICAuIFJlYWQgbW9yZSBpbiB0aGV7JyAnfVxuICAgICAgICAgIDxhIGhyZWY9XCJodHRwczovL3N0b3J5Ym9vay5qcy5vcmcvZG9jc1wiIHRhcmdldD1cIl9ibGFua1wiIHJlbD1cIm5vb3BlbmVyIG5vcmVmZXJyZXJcIj5cbiAgICAgICAgICAgIGRvY3NcbiAgICAgICAgICA8L2E+XG4gICAgICAgICAgLlxuICAgICAgICA8L3A+XG4gICAgICAgIDxkaXYgY2xhc3NOYW1lPVwidGlwLXdyYXBwZXJcIj5cbiAgICAgICAgICA8c3BhbiBjbGFzc05hbWU9XCJ0aXBcIj5UaXA8L3NwYW4+IEFkanVzdCB0aGUgd2lkdGggb2YgdGhlIGNhbnZhcyB3aXRoIHRoZXsnICd9XG4gICAgICAgICAgPHN2ZyB3aWR0aD1cIjEwXCIgaGVpZ2h0PVwiMTBcIiB2aWV3Qm94PVwiMCAwIDEyIDEyXCIgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Z1wiPlxuICAgICAgICAgICAgPGcgZmlsbD1cIm5vbmVcIiBmaWxsUnVsZT1cImV2ZW5vZGRcIj5cbiAgICAgICAgICAgICAgPHBhdGhcbiAgICAgICAgICAgICAgICBkPVwiTTEuNSA1LjJoNC44Yy4zIDAgLjUuMi41LjR2NS4xYy0uMS4yLS4zLjMtLjQuM0gxLjRhLjUuNSAwIDAxLS41LS40VjUuN2MwLS4zLjItLjUuNS0uNXptMC0yLjFoNi45Yy4zIDAgLjUuMi41LjR2N2EuNS41IDAgMDEtMSAwVjRIMS41YS41LjUgMCAwMTAtMXptMC0yLjFoOWMuMyAwIC41LjIuNS40djkuMWEuNS41IDAgMDEtMSAwVjJIMS41YS41LjUgMCAwMTAtMXptNC4zIDUuMkgyVjEwaDMuOFY2LjJ6XCJcbiAgICAgICAgICAgICAgICBpZD1cImFcIlxuICAgICAgICAgICAgICAgIGZpbGw9XCIjOTk5XCJcbiAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgIDwvZz5cbiAgICAgICAgICA8L3N2Zz5cbiAgICAgICAgICBWaWV3cG9ydHMgYWRkb24gaW4gdGhlIHRvb2xiYXJcbiAgICAgICAgPC9kaXY+XG4gICAgICA8L3NlY3Rpb24+XG4gICAgPC9hcnRpY2xlPlxuICApO1xufTtcbiJdLCJuYW1lcyI6WyJ1c2VTdGF0ZSIsIkhlYWRlciIsIlBhZ2UiLCJ1c2VyIiwic2V0VXNlciIsImFydGljbGUiLCJvbkxvZ2luIiwibmFtZSIsIm9uTG9nb3V0IiwidW5kZWZpbmVkIiwib25DcmVhdGVBY2NvdW50Iiwic2VjdGlvbiIsImNsYXNzTmFtZSIsImgyIiwicCIsImEiLCJocmVmIiwidGFyZ2V0IiwicmVsIiwic3Ryb25nIiwidWwiLCJsaSIsImRpdiIsInNwYW4iLCJzdmciLCJ3aWR0aCIsImhlaWdodCIsInZpZXdCb3giLCJ4bWxucyIsImciLCJmaWxsIiwiZmlsbFJ1bGUiLCJwYXRoIiwiZCIsImlkIl0sIm1hcHBpbmdzIjoiO0FBQUEsU0FBUUEsUUFBUSxRQUFPLFFBQVE7QUFFL0IsU0FBUUMsTUFBTSxRQUFPLGNBQWM7QUFDbkMsT0FBTyxhQUFhO0FBUXBCLE9BQU8sTUFBTUMsT0FBVztJQUN0QixNQUFNLENBQUNDLE1BQU1DLFFBQVEsR0FBR0o7SUFFeEIscUJBQ0UsTUFBQ0s7OzBCQUNDLEtBQUNKO2dCQUNDRSxNQUFNQTtnQkFDTkcsU0FBUyxJQUFNRixRQUFRO3dCQUFDRyxNQUFNO29CQUFVO2dCQUN4Q0MsVUFBVSxJQUFNSixRQUFRSztnQkFDeEJDLGlCQUFpQixJQUFNTixRQUFRO3dCQUFDRyxNQUFNO29CQUFVOzswQkFHbEQsTUFBQ0k7Z0JBQVFDLFdBQVU7O2tDQUNqQixLQUFDQztrQ0FBRzs7a0NBQ0osTUFBQ0M7OzRCQUFFOzRCQUNnQzswQ0FDakMsS0FBQ0M7Z0NBQUVDLE1BQUs7Z0NBQThCQyxRQUFPO2dDQUFTQyxLQUFJOzBDQUN4RCxjQUFBLEtBQUNDOzhDQUFPOzs7NEJBQ0w7NEJBQUk7OztrQ0FHWCxLQUFDTDtrQ0FBRTs7a0NBS0gsTUFBQ007OzBDQUNDLEtBQUNDOzBDQUFHOzswQ0FJSixLQUFDQTswQ0FBRzs7OztrQ0FLTixNQUFDUDs7NEJBQUU7NEJBQ3dEOzBDQUN6RCxLQUFDQztnQ0FBRUMsTUFBSztnQ0FBc0NDLFFBQU87Z0NBQVNDLEtBQUk7MENBQXNCOzs0QkFFcEY7NEJBQ2U7MENBQ25CLEtBQUNIO2dDQUFFQyxNQUFLO2dDQUFnQ0MsUUFBTztnQ0FBU0MsS0FBSTswQ0FBc0I7OzRCQUU5RTs7O2tDQUdOLE1BQUNJO3dCQUFJVixXQUFVOzswQ0FDYixLQUFDVztnQ0FBS1gsV0FBVTswQ0FBTTs7NEJBQVU7NEJBQXlDOzBDQUN6RSxLQUFDWTtnQ0FBSUMsT0FBTTtnQ0FBS0MsUUFBTztnQ0FBS0MsU0FBUTtnQ0FBWUMsT0FBTTswQ0FDcEQsY0FBQSxLQUFDQztvQ0FBRUMsTUFBSztvQ0FBT0MsVUFBUzs4Q0FDdEIsY0FBQSxLQUFDQzt3Q0FDQ0MsR0FBRTt3Q0FDRkMsSUFBRzt3Q0FDSEosTUFBSzs7Ozs0QkFHTDs7Ozs7OztBQU1oQixFQUFFIn0=
|
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<title>Accessibility</title>
|
|
3
|
+
<circle cx="24.334" cy="24" r="24" fill="#A849FF" fill-opacity="0.3"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.8609 11.585C27.8609 9.59506 26.2497 7.99023 24.2519 7.99023C22.254 7.99023 20.6429 9.65925 20.6429 11.585C20.6429 13.575 22.254 15.1799 24.2519 15.1799C26.2497 15.1799 27.8609 13.575 27.8609 11.585ZM21.8922 22.6473C21.8467 23.9096 21.7901 25.4788 21.5897 26.2771C20.9853 29.0462 17.7348 36.3314 17.3325 37.2275C17.1891 37.4923 17.1077 37.7955 17.1077 38.1178C17.1077 39.1519 17.946 39.9902 18.9802 39.9902C19.6587 39.9902 20.253 39.6293 20.5814 39.0889L20.6429 38.9874L24.2841 31.22C24.2841 31.22 27.5529 37.9214 27.9238 38.6591C28.2948 39.3967 28.8709 39.9902 29.7168 39.9902C30.751 39.9902 31.5893 39.1519 31.5893 38.1178C31.5893 37.7951 31.3639 37.2265 31.3639 37.2265C30.9581 36.3258 27.698 29.0452 27.0938 26.2771C26.8975 25.4948 26.847 23.9722 26.8056 22.7236C26.7927 22.333 26.7806 21.9693 26.7653 21.6634C26.7008 21.214 27.0231 20.8289 27.4097 20.7005L35.3366 18.3253C36.3033 18.0685 36.8834 16.9773 36.6256 16.0144C36.3678 15.0515 35.2722 14.4737 34.3055 14.7305C34.3055 14.7305 26.8619 17.1057 24.2841 17.1057C21.7062 17.1057 14.456 14.7947 14.456 14.7947C13.4893 14.5379 12.3937 14.9873 12.0715 15.9502C11.7493 16.9131 12.3293 18.0044 13.3604 18.3253L21.2873 20.7005C21.674 20.8289 21.9318 21.214 21.9318 21.6634C21.9174 21.9493 21.9053 22.2857 21.8922 22.6473Z" fill="#A470D5"/>
|
|
5
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10031_177575)">
|
|
3
|
+
<mask id="mask0_10031_177575" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="4" width="33" height="25">
|
|
4
|
+
<path d="M32.5034 4.00195H0.503906V28.7758H32.5034V4.00195Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_10031_177575)">
|
|
7
|
+
<path d="M27.5928 6.20817C25.5533 5.27289 23.3662 4.58382 21.0794 4.18916C21.0378 4.18154 20.9962 4.20057 20.9747 4.23864C20.6935 4.73863 20.3819 5.3909 20.1637 5.90358C17.7042 5.53558 15.2573 5.53558 12.8481 5.90358C12.6299 5.37951 12.307 4.73863 12.0245 4.23864C12.003 4.20184 11.9614 4.18281 11.9198 4.18916C9.63431 4.58255 7.44721 5.27163 5.40641 6.20817C5.38874 6.21578 5.3736 6.22848 5.36355 6.24497C1.21508 12.439 0.078646 18.4809 0.636144 24.4478C0.638667 24.477 0.655064 24.5049 0.677768 24.5227C3.41481 26.5315 6.06609 27.7511 8.66815 28.5594C8.70979 28.5721 8.75392 28.5569 8.78042 28.5226C9.39594 27.6826 9.94461 26.7968 10.4151 25.8653C10.4428 25.8107 10.4163 25.746 10.3596 25.7244C9.48927 25.3945 8.66058 24.9922 7.86343 24.5354C7.80038 24.4986 7.79533 24.4084 7.85333 24.3653C8.02108 24.2397 8.18888 24.109 8.34906 23.977C8.37804 23.9529 8.41842 23.9478 8.45249 23.963C13.6894 26.3526 19.359 26.3526 24.5341 23.963C24.5682 23.9465 24.6086 23.9516 24.6388 23.9757C24.799 24.1077 24.9668 24.2397 25.1358 24.3653C25.1938 24.4084 25.19 24.4986 25.127 24.5354C24.3298 25.0011 23.5011 25.3945 22.6296 25.7232C22.5728 25.7447 22.5476 25.8107 22.5754 25.8653C23.0559 26.7955 23.6046 27.6812 24.2087 28.5213C24.234 28.5569 24.2794 28.5721 24.321 28.5594C26.9357 27.7511 29.5869 26.5315 32.324 24.5227C32.348 24.5049 32.3631 24.4783 32.3656 24.4491C33.0328 17.5506 31.2481 11.5584 27.6344 6.24623C27.6256 6.22848 27.6105 6.21578 27.5928 6.20817ZM11.1971 20.8146C9.62043 20.8146 8.32129 19.3679 8.32129 17.5913C8.32129 15.8146 9.59523 14.368 11.1971 14.368C12.8115 14.368 14.0981 15.8273 14.0729 17.5913C14.0729 19.3679 12.7989 20.8146 11.1971 20.8146ZM21.8299 20.8146C20.2533 20.8146 18.9541 19.3679 18.9541 17.5913C18.9541 15.8146 20.228 14.368 21.8299 14.368C23.4444 14.368 24.7309 15.8273 24.7057 17.5913C24.7057 19.3679 23.4444 20.8146 21.8299 20.8146Z" fill="#5865F2"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_10031_177575">
|
|
12
|
+
<rect width="31.9995" height="32" fill="white" transform="translate(0.5)"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.0001 0C7.16466 0 0 7.17472 0 16.0256C0 23.1061 4.58452 29.1131 10.9419 31.2322C11.7415 31.3805 12.0351 30.8845 12.0351 30.4613C12.0351 30.0791 12.0202 28.8167 12.0133 27.4776C7.56209 28.447 6.62283 25.5868 6.62283 25.5868C5.89499 23.7345 4.8463 23.2419 4.8463 23.2419C3.39461 22.2473 4.95573 22.2678 4.95573 22.2678C6.56242 22.3808 7.40842 23.9192 7.40842 23.9192C8.83547 26.3691 11.1514 25.6609 12.0645 25.2514C12.2081 24.2156 12.6227 23.5087 13.0803 23.1085C9.52648 22.7032 5.7906 21.3291 5.7906 15.1886C5.7906 13.4389 6.41563 12.0094 7.43916 10.8871C7.27303 10.4834 6.72537 8.85349 7.59415 6.64609C7.59415 6.64609 8.93774 6.21539 11.9953 8.28877C13.2716 7.9337 14.6404 7.75563 16.0001 7.74953C17.3599 7.75563 18.7297 7.9337 20.0084 8.28877C23.0623 6.21539 24.404 6.64609 24.404 6.64609C25.2749 8.85349 24.727 10.4834 24.5608 10.8871C25.5868 12.0094 26.2075 13.4389 26.2075 15.1886C26.2075 21.3437 22.4645 22.699 18.9017 23.0957C19.4756 23.593 19.9869 24.5683 19.9869 26.0634C19.9869 28.2077 19.9684 29.9334 19.9684 30.4613C19.9684 30.8877 20.2564 31.3874 21.0674 31.2301C27.4213 29.1086 32 23.1037 32 16.0256C32 7.17472 24.8364 0 16.0001 0ZM5.99257 22.8288C5.95733 22.9084 5.83227 22.9322 5.71834 22.8776C5.60229 22.8253 5.53711 22.7168 5.57474 22.6369C5.60918 22.5549 5.7345 22.5321 5.85029 22.587C5.9666 22.6393 6.03284 22.7489 5.99257 22.8288ZM6.7796 23.5321C6.70329 23.603 6.55412 23.5701 6.45291 23.4581C6.34825 23.3464 6.32864 23.197 6.40601 23.125C6.4847 23.0542 6.62937 23.0874 6.73429 23.1991C6.83895 23.3121 6.85935 23.4605 6.7796 23.5321ZM7.31953 24.4321C7.2215 24.5003 7.0612 24.4363 6.96211 24.2938C6.86407 24.1513 6.86407 23.9804 6.96422 23.9119C7.06358 23.8435 7.2215 23.905 7.32191 24.0465C7.41968 24.1914 7.41968 24.3623 7.31953 24.4321ZM8.23267 25.4743C8.14497 25.5712 7.95818 25.5452 7.82146 25.413C7.68156 25.2838 7.64261 25.1004 7.73058 25.0035C7.81934 24.9064 8.00719 24.9337 8.14497 25.0648C8.28381 25.1938 8.3262 25.3785 8.23267 25.4743ZM9.41281 25.8262C9.37413 25.9517 9.19423 26.0088 9.013 25.9554C8.83203 25.9005 8.7136 25.7535 8.75016 25.6266C8.78778 25.5003 8.96848 25.4408 9.15104 25.4979C9.33174 25.5526 9.45044 25.6985 9.41281 25.8262ZM10.7559 25.9754C10.7604 26.1076 10.6067 26.2172 10.4165 26.2196C10.2252 26.2238 10.0704 26.1169 10.0683 25.9868C10.0683 25.8534 10.2185 25.7448 10.4098 25.7416C10.6001 25.7379 10.7559 25.8441 10.7559 25.9754ZM12.0753 25.9248C12.0981 26.0537 11.9658 26.1862 11.7769 26.2215C11.5912 26.2554 11.4192 26.1758 11.3957 26.0479C11.3726 25.9157 11.5072 25.7833 11.6927 25.7491C11.8819 25.7162 12.0512 25.7937 12.0753 25.9248Z" fill="#161614"/>
|
|
3
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10031_177597)">
|
|
3
|
+
<path opacity="0.7" fill-rule="evenodd" clip-rule="evenodd" d="M17 7.87059C17 6.48214 17.9812 5.28722 19.3431 5.01709L29.5249 2.99755C31.3238 2.64076 33 4.01717 33 5.85105V22.1344C33 23.5229 32.0188 24.7178 30.6569 24.9879L20.4751 27.0074C18.6762 27.3642 17 25.9878 17 24.1539L17 7.87059Z" fill="#B7F0EF"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 5.85245C1 4.01857 2.67623 2.64215 4.47507 2.99895L14.6569 5.01848C16.0188 5.28861 17 6.48354 17 7.87198V24.1553C17 25.9892 15.3238 27.3656 13.5249 27.0088L3.34311 24.9893C1.98119 24.7192 1 23.5242 1 22.1358V5.85245Z" fill="#87E6E5"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.543 5.71289C15.543 5.71289 16.8157 5.96289 17.4002 6.57653C17.9847 7.19016 18.4521 9.03107 18.4521 9.03107C18.4521 9.03107 18.4521 25.1106 18.4521 26.9629C18.4521 28.8152 19.3775 31.4174 19.3775 31.4174L17.4002 28.8947L16.2575 31.4174C16.2575 31.4174 15.543 29.0765 15.543 27.122C15.543 25.1674 15.543 5.71289 15.543 5.71289Z" fill="#61C1FD"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0_10031_177597">
|
|
9
|
+
<rect width="32" height="32" fill="white" transform="translate(0.5)"/>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M31.3313 8.44657C30.9633 7.08998 29.8791 6.02172 28.5022 5.65916C26.0067 5.00026 16 5.00026 16 5.00026C16 5.00026 5.99333 5.00026 3.4978 5.65916C2.12102 6.02172 1.03665 7.08998 0.668678 8.44657C0 10.9053 0 16.0353 0 16.0353C0 16.0353 0 21.1652 0.668678 23.6242C1.03665 24.9806 2.12102 26.0489 3.4978 26.4116C5.99333 27.0703 16 27.0703 16 27.0703C16 27.0703 26.0067 27.0703 28.5022 26.4116C29.8791 26.0489 30.9633 24.9806 31.3313 23.6242C32 21.1652 32 16.0353 32 16.0353C32 16.0353 32 10.9053 31.3313 8.44657Z" fill="#ED1D24"/>
|
|
3
|
+
<path d="M12.7266 20.6934L21.0902 16.036L12.7266 11.3781V20.6934Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.storybook-button{font-family:inherit;font-weight:700;border:0;border-radius:3em;cursor:pointer;display:inline-block;line-height:1}.storybook-button--primary{color:#fff;background-color:#1ea7fd}.storybook-button--secondary{color:#333;background-color:transparent;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15)}.storybook-button--small{font-size:12px;padding:10px 16px}.storybook-button--medium{font-size:14px;padding:11px 20px}.storybook-button--large{font-size:16px;padding:12px 24px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.storybook-header{font-family:inherit;border-bottom:1px solid rgba(0,0,0,.1);padding:15px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.storybook-header h1,.storybook-header svg{display:inline-block;vertical-align:top}.storybook-header h1{font-weight:700;font-size:20px;line-height:1;margin:6px 0 6px 10px}.storybook-header button+button{margin-left:10px}.storybook-header .welcome{color:#333;font-size:14px;margin-right:10px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.storybook-page{font-family:inherit;font-size:14px;line-height:24px;padding:48px 20px;margin:0 auto;max-width:600px;color:#333}.storybook-page h2{font-weight:700;font-size:32px;line-height:1;margin:0 0 4px;display:inline-block;vertical-align:top}.storybook-page p{margin:1em 0}.storybook-page a{text-decoration:none;color:#1ea7fd}.storybook-page ul{padding-left:30px;margin:1em 0}.storybook-page li{margin-bottom:8px}.storybook-page .tip{display:inline-block;border-radius:1em;font-size:11px;line-height:12px;font-weight:700;background:#e7fdd8;color:#66bf3c;padding:4px 12px;margin-right:10px;vertical-align:top}.storybook-page .tip-wrapper{font-size:13px;line-height:20px;margin-top:40px;margin-bottom:40px}.storybook-page .tip-wrapper svg{display:inline-block;height:12px;width:12px;margin-right:4px;vertical-align:top;margin-top:3px}.storybook-page .tip-wrapper svg path{fill:#1ea7fd}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@keyframes avatarLazy{0%{opacity:1}50%{opacity:.5}to{opacity:1}}@keyframes dropdown-scaling{0%{opacity:0}50%{opacity:.5;-webkit-transform:scale(1.1);transform:scale(1.1)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes dropdown-reverse-scaling{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:.5;-webkit-transform:scale(1.1);transform:scale(1.1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes dropdown-fade{0%{opacity:0}to{opacity:1}}@keyframes popup-scaling{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}50%{-webkit-transform:scale(1.2);transform:scale(1.2);opacity:.5}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.rce-mbox-audio{padding-bottom:10px;max-width:300px}audio:focus{outline:none}.rce-avatar-container{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-avatar-container .rce-avatar{width:100%;height:100%}.rce-avatar-container.flexible:not(#\#) .rce-avatar{height:auto!important;width:100%!important;border-radius:unset!important;overflow:unset!important}.rce-avatar-container.default{width:25px;height:25px}.rce-avatar-container.rounded{border-radius:5px}.rce-avatar-container.circle{border-radius:100%}.rce-avatar-container.xsmall{width:30px;height:30px}.rce-avatar-container.small{width:35px;height:35px}.rce-avatar-container.medium{width:40px;height:40px}.rce-avatar-container.large{width:45px;height:45px}.rce-avatar-container.xlarge{width:55px;height:55px}@-webkit-keyframes avatarLazy{0%{opacity:1}50%{opacity:.5}to{opacity:1}}.rce-avatar-lazy{-webkit-animation:avatarLazy 2s ease-in-out infinite normal;animation:avatarLazy 2s ease-in-out infinite normal}.rce-avatar-container.rce-citem-avatar-encircle-status{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.rce-avatar-letter{margin-top:5px;font-size:20px;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-avatar-letter-background{height:35px;width:35px;border-radius:20px}.rce-button{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:12px;border-radius:5px;cursor:pointer;padding:8px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;background:#3979aa;color:#fff;-webkit-transition:all .15s ease;transition:all .15s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:none;border:none;position:relative}.rce-button,.rce-button-icon--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-button:hover{opacity:.8}.rce-button:active{opacity:.6}.rce-button.outline:not(#\#){background:transparent!important}.rce-button.outline{border:1px solid #3979aa;color:#3979aa}.rce-button.outline:hover{opacity:.6}.rce-button.outline:active{opacity:.3}.rce-button.transparent:not(#\#){background:transparent!important}.rce-button.transparent:hover{opacity:.6}.rce-button.transparent:active{opacity:.3}.rce-button-icon{position:relative;font-size:18px;padding:0 3px}.rce-button-badge,.rce-button-icon{display:-webkit-box;display:-ms-flexbox;display:flex}.rce-button-badge{border-radius:4px;padding:4px;background:#f64b34;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;right:-7px;top:-7px;font-size:10px}.rce-button.circle{min-width:35px;min-height:35px;border:1px solid #3979aa;border-radius:100%}.rce-container-citem{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;display:block;overflow:hidden;min-width:240px}.rce-citem,.rce-container-citem.rce-citem-status-encircle{position:relative}.rce-citem{background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:72px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100%;overflow:hidden;min-width:240px}.rce-citem:hover{background:#f9f9f9}.rce-citem-avatar{position:relative;padding:0 15px 0 13px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rce-citem-avatar,.rce-citem-status{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-citem-status{width:20px;height:20px;bottom:10px;right:10px;position:absolute;border-radius:100%;background:#ccc}.rce-citem-avatar.rce-citem-status-encircle .rce-citem-status{left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:transparent;margin:auto;border-radius:100%}.rce-citem-avatar:not(#\#) img{border:none!important}.rce-citem-avatar img{width:50px;height:50px;background:#ccc;border-radius:100%;overflow:hidden;font-size:10px;text-align:center;line-height:50px;text-overflow:ellipsis;white-space:nowrap}.rce-citem-body{-webkit-box-flex:1;-ms-flex:1 1;flex:1 1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-right:15px;border-bottom:1px solid rgba(0,0,0,.05);overflow:hidden}.rce-citem-body,.rce-citem-body--bottom,.rce-citem-body--top{display:-webkit-box;display:-ms-flexbox;display:flex}.rce-citem-body--bottom{margin-top:4px}.rce-citem-body--bottom-title,.rce-citem-body--top-title{-webkit-box-flex:1;-ms-flex:1 1;flex:1 1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.rce-citem-body--top-title{font-size:16px}.rce-citem-body--bottom-title{color:#555;font-size:15px}.rce-citem-body--top-time{font-size:12px;color:rgba(0,0,0,.4)}.rce-citem-body--bottom-status{margin-left:3px}.rce-citem-body--bottom-status span{font-size:12px;color:#fff;font-weight:700;text-align:center;border-radius:100%;background:red}.rce-citem-body--bottom-status span,.rce-citem-body--bottom-status-icon{width:18px;height:18px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex}.rce-citem-body--bottom-status-icon{position:relative;margin-left:3px}.rce-citem-body--bottom-tools{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;display:-webkit-box;display:-ms-flexbox;display:flex;height:0;opacity:0;position:absolute;left:-999px;-webkit-transition:height .5s ease,opacity 1s ease;transition:height .5s ease,opacity 1s ease}.rce-citem:hover .rce-citem-body--bottom-tools{height:100%;opacity:1;position:relative;left:0}.rce-citem-body--bottom-tools-item-hidden-hover{height:100%;opacity:.3;-webkit-transition:.5s ease;transition:.5s ease}.rce-citem:hover .rce-citem-body--bottom-tools-item-hidden-hover{height:0;opacity:0;position:absolute;left:-999px;-webkit-transition:.5s ease;transition:.5s ease}.rce-citem-body--bottom-tools-item,.rce-citem-body--bottom-tools-item svg{width:18px;height:18px}.rce-container-citem.subitem .rce-citem{height:40px;padding-left:30px}.rce-container-citem.subitem:not(#\#) .rce-citem-body--top .rce-citem-body--top-title{font-size:12px!important}.rce-container-citem.subitem:not(#\#) .rce-citem-body--top .rce-citem-body--top-time{font-size:10px!important}.rce-container-citem.subitem:not(#\#) .rce-citem-body--bottom *{font-size:12px!important}.rce-container-citem.subitem:not(#\#) .rce-citem-body--bottom-status span{font-size:10px!important}.rce-container-citem.subitem .rce-citem-body--bottom-status span{width:14px;height:14px;color:#fff;font-weight:700;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:100%;background:red}.rce-container-citem.subitem .rce-citem-body--bottom{margin-top:unset}.rce-citem-expand-button{background:transparent;border:none;cursor:pointer;padding:2px 15px;color:teal}.rce-citem-expand-button:hover{background-color:#eee}.rce-sublist-container{position:relative}.rce-container-clist{display:block;overflow:auto}.rce-dropdown-container{position:relative}.rce-dropdown{min-width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px 15px;background:#fff;border-radius:5px;display:none;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);position:absolute;-webkit-box-shadow:0 0 5px 0 #a3a3a3;box-shadow:0 0 5px 0 #a3a3a3;-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;z-index:99999}.rce-dropdown-title{font-size:14px;color:"#000";font-weight:500}.rce-dropdown.dropdown-show{-webkit-animation:dropdown-scaling .2s ease forwards;animation:dropdown-scaling .2s ease forwards;display:-webkit-box;display:-ms-flexbox;display:flex}@-webkit-keyframes dropdown-scaling{0%{opacity:0}50%{opacity:.5;-webkit-transform:scale(1.1);transform:scale(1.1)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.rce-dropdown.dropdown-hide{-webkit-animation:dropdown-reverse-scaling .2s ease forwards;animation:dropdown-reverse-scaling .2s ease forwards;display:-webkit-box;display:-ms-flexbox;display:flex}@-webkit-keyframes dropdown-reverse-scaling{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:.5;-webkit-transform:scale(1.1);transform:scale(1.1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.rce-dropdown-open__nortwest{-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;left:0;top:100%;margin-top:5px}.rce-dropdown-open__norteast{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top;right:0;top:100%;margin-top:5px}.rce-dropdown-open__southwest{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;left:0;bottom:100%;margin-bottom:5px}.rce-dropdown-open__southeast{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;right:0;bottom:100%;margin-bottom:5px}.rce-dropdown ul{list-style:none;margin:0;padding:0;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rce-dropdown ul li{white-space:nowrap;color:#767676;padding:8px;cursor:pointer;font-size:16px;width:100%;border-bottom:1px solid #e9e9e9;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-dropdown ul li:last-child{border:none}.rce-dropdown ul li:hover a{color:#3a6d8c}.rce-dropdown.fade{opacity:0;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-animation:dropdown-fade .5s ease forwards;animation:dropdown-fade .5s ease forwards}@-webkit-keyframes dropdown-fade{0%{opacity:0}to{opacity:1}}.rce-mbox-file{padding-bottom:13px}.rce-mbox-file>button{background:#e9e9e9;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:5px;margin-top:-3px;margin-right:-6px;margin-left:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:52px;max-width:500px;padding:5px 0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:none;border:none}.rce-mbox-file>button>*{padding:0 10px}.rce-mbox-file--icon{font-size:30px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rce-mbox-file--size{font-size:10px;margin-top:3px;max-width:52px}.rce-mbox-file--size,.rce-mbox-file--text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.rce-mbox-file--text{font-size:13.6px}.rce-mbox-file--buttons{font-size:30px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.rce-mbox-file--buttons .rce-error-button{display:inherit}.rce-mbox-file--loading{font-size:15px;width:40px;height:40px}.rce-container-input{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:100%;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;background:#fff;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-container-input,.rce-input{-webkit-box-sizing:border-box;box-sizing:border-box}.rce-input{-webkit-box-flex:1;-ms-flex:1 1;flex:1 1;height:40px;padding:0 5px;border:none;border-radius:5px;color:#333;font-size:14px;outline:none}.rce-input-textarea{height:37px;padding:10px 5px;resize:none}.rce-input-buttons{margin:5px}.rce-input-buttons,.rce-input-buttons>*{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.rce-input-buttons .rce-button:nth-child(2n){margin-left:5px;margin-right:5px}.rce-input-buttons .rce-button:last-child{margin-right:0}.rce-left-padding:not(#\#){padding-right:0!important}.rce-left-padding{padding-left:10px}.rce-right-padding:not(#\#){padding-left:0!important}.rce-right-padding{padding-right:10px}.rce-input::-webkit-input-placeholder{color:#afafaf}.rce-input::-moz-placeholder{color:#afafaf}.rce-input:-ms-input-placeholder{color:#afafaf}.rce-input::-ms-input-placeholder{color:#afafaf}.rce-input::placeholder{color:#afafaf}.rce-mbox-location{position:relative;width:250px;height:150px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:-3px;margin-right:-6px;margin-left:-6px;border-radius:5px}.rce-mbox-location-img{width:100%}.rce-mbox-location-text{padding:5px 0;width:250px;margin-left:-6px;margin-right:-6px}.rce-container-mtitem{display:block}.rce-container-mtitem,.rce-mtitem{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:hidden;min-width:240px}.rce-mtitem{position:relative;background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100%;border-bottom:1px solid rgba(0,0,0,.05)}.rce-mtitem:hover{background:#fbfbfb}.rce-mtitem-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:relative;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.rce-mtitem-subject{padding:0 10px;margin-top:5px;font-size:15px;overflow:hidden;color:#333;max-height:35px;text-overflow:ellipsis}.rce-mtitem-body{-ms-flex:1 1;flex:1 1;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-mtitem-body,.rce-mtitem-body--avatars{display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;display:flex;overflow:hidden}.rce-mtitem-body--avatars{-ms-flex:1 1;flex:1 1;opacity:.7}.rce-mtitem-body--functions{width:70px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.rce-mtitem-body--functions,.rce-mtitem-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-mtitem-footer{padding:0 10px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:5px}.rce-mtitem-body--avatars .rce-avatar-container{margin-left:-10px;border:2px solid #fff}.rce-mtitem-body--avatars .rce-avatar-container:first-child{margin:0}.rce-mtitem-letter{background:#e48989}.rce-mtitem-button,.rce-mtitem-letter{color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rce-mtitem-button{background:#5ba7c5;-webkit-transition:.3s;transition:.3s}.rce-mtitem-button,.rce-mtitem-closable{font-size:25px;border-radius:100%;padding:3px}.rce-mtitem-closable{color:#fff;background:#ff4a4f;display:none;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:7px}.rce-mtitem:hover .rce-mtitem-closable{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer}.rce-mtitem-share{font-size:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#5ba7c5;margin:-10px 0;-webkit-transition:.3s;transition:.3s;position:relative;left:-10px}.rce-mtitem-button:hover,.rce-mtitem-share:hover{opacity:.8;cursor:pointer}.rce-mtitem-date{color:#9f9f9f;font-size:13px}.rce-mtlink{padding-bottom:15px;min-width:400px}.rce-mtlink-content{background-color:#e2dfec;border-radius:4px;padding:10px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.rce-mtlink-content,.rce-mtlink-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden}.rce-mtlink-item{color:#6c687c;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100%;min-width:240px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rce-mtlink-title{color:#07030a;padding-left:7px;font-size:15px}.rce-mtlink-btn{background:#ededed;border-radius:4px;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:5px}.rce-mtlink-btn-content{padding:4px;cursor:pointer;border-right:1px solid}.rce-mtlink-btn-content:last-child{border-right:none}.rce-container-mtlist{display:block;overflow:auto}.rce-mbox-mtmg{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;padding-bottom:13px;min-width:425px;max-width:425px}.rce-mbox-mtmg,.rce-mtmg{display:-webkit-box;display:-ms-flexbox;display:flex}.rce-mtmg{width:100%;position:relative;background:#f5f5f5;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:5px 0;float:left;border-radius:2px}.rce-mtmg-title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:300px}.rce-mtmg-subject{text-align:start;display:inline-block;font-size:15px;padding:5px 9px}.rce-mtmg-toogleItem{width:100%;height:100%}.rce-mtmg-body{height:50px;background:#6264a7;color:#fff;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.rce-mtmg-body:hover{opacity:.9}.rce-mtmg-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:0 10px}.rce-mtmg-item>svg{width:23px;height:23px}.rce-mtmg-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 10px}.rce-mtmg-date{color:#cecece;font-size:13px}.rce-mtmg-body-bottom{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:9px;color:#6264a7;cursor:pointer;font-size:13px}.rce-mtmg-body-bottom,.rce-mtmg-bottom--tptitle{display:-webkit-box;display:-ms-flexbox;display:flex}.rce-mtmg-bottom--tptitle{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-mtmg-body-bottom--bttitle>svg,.rce-mtmg-bottom--tptitle>svg{color:#6264a7a1}.rce-mtmg-toogleContent{display:none;height:auto;min-height:60px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rce-mtmg-toogleContent--click{display:-webkit-box;display:-ms-flexbox;display:flex}.rce-mtmg-right-icon:not(#\#){background:transparent!important}.rce-mtmg-right-icon{right:10px;cursor:pointer;height:100%}.rce-mtmg-body .rce-dropdown-container{height:100%}.rce-mtmg-right-icon>svg{width:23px;height:23px}.rce-mitem{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 8px}.rce-mitem-event:hover,.rce-mitem:hover{background:#ececec}.rce-mitem-event{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-mitem-body{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rce-mitem-body,.rce-mitem-body-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.rce-mitem-body-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rce-mitem-body--top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-mitem-body--top-title{font-size:15px;color:#6264a7;padding:0 15px 0 0;text-transform:capitalize;font-weight:600}.rce-mitem-body--top-title:hover{cursor:pointer;text-decoration:underline}.rce-mitem-body--bottom-title{color:#252525;font-size:13px;font-family:inherit}.rce-mitem-body--top-time{font-size:12px;color:rgba(0,0,0,.4)}.rce-mitem-bottom-body{padding:10px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rce-mitem-body.avatar{padding:8px 10px 0 0}.rce-mitem.avatar{padding:8px 5px 0 0}.rce-mitem.no-avatar{padding:8px 10px 0 0}.rce-mitem.no-avatar>svg{width:19px;height:19px}.rce-mitem.avatar:not(#\#) img{border:none!important}.rce-mitem.avatar img{width:22px;height:22px;background:#ccc;border-radius:100%}.rce-mitem-body.avatar>svg{width:19px;height:19px}.rce-mitem-bottom-body-top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rce-mitem-bottom-body-top-title>svg{padding:0 7px 0 0}.rce-mitem-avatar-content{position:absolute;right:10px}.rce-mitem-avatar,.rce-mitem-avatar-content{display:-webkit-box;display:-ms-flexbox;display:flex}.rce-mitem-avatar{padding:0 3px 0 0}.rce-mitem-tooltip{display:inline;position:relative}.rce-mitem-tooltip-text{margin:5px}.rce-mitem-tooltip-text:after{content:"";left:15%;top:29px;border-left:8px solid transparent;border-right:8px solid transparent;border-bottom:11px solid #444}.rce-mitem-tooltip-text:after,.rce-mitem-tooltip[tooltip]:after{position:absolute;opacity:0;-webkit-transition:opacity .8s linear .2s;transition:opacity .8s linear .2s}.rce-mitem-tooltip[tooltip]:after{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#444;border-radius:8px;color:#fff;content:attr(tooltip);font-size:14px;padding:5px;min-width:415px;max-width:415px;top:40px;right:-13px;z-index:1}.rce-mitem-tooltip-text:hover:after{opacity:1;-webkit-transition:opacity .8s linear;transition:opacity .8s linear}.rce-mitem-tooltip[tooltip]:hover:after{opacity:1;-webkit-transition:opacity .8s linear .1s;transition:opacity .8s linear .1s}.rce-mitem-tooltip[tooltip]:hover .rce-mitem-tooltip-text:after{opacity:1}.rce-mitem-length{color:#fff;font-size:14px;background:#e48989;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;width:25px;height:25px;display:flex;border-radius:50%}.rce-mitem-avatar:not(#\#) img{border:none!important}.rce-mitem-avatar img{width:50px;height:50px;background:#ccc;border-radius:100%}.rce-mtmg-call-record{width:350px;height:85%;background:#eaeaea;margin-top:11px}.rce-mtmg-call-body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:relative}.rce-mtmg-call-avatars:not(#\#){width:140px!important;height:100px!important}.rce-mtmg-call-avatars{position:relative}.rce-mtmg-call-avatars:not(#\#) img{width:100%!important;height:100%!important}.rce-mtmg-call-avatars img{background:#ccc;cursor:pointer}.rce-mtmg-call-body-title{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;top:30px;left:15px}.rce-mtmg-call-body-bottom,.rce-mtmg-call-body-title>span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:185px}.rce-mtmg-call-body-bottom{color:#505050;font-size:12px}.rce-mtmg-record-time{position:absolute;bottom:5px;right:5px;font-size:13px;background:#000000cf;color:#fff;padding:4px;border-radius:5px}.rce-container-mbox{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;display:block;overflow-x:hidden;min-width:300px}.rce-mbox-forward{width:30px;height:30px;border-radius:20px;background:#fff;position:absolute;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-item-align:center;align-self:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-shadow:0 0 5px 0 #a4a4a4;box-shadow:0 0 5px 0 #a4a4a4;cursor:pointer;-webkit-transition:all .3s ease;transition:all .3s ease;top:0;bottom:0;margin:auto}.rce-mbox-forward-left{left:-50px}.rce-mbox-forward-left,.rce-mbox-forward-right{display:-webkit-box;display:-ms-flexbox;display:flex;opacity:0;visibility:hidden}.rce-mbox-forward-right{right:-50px}.rce-mbox-reply-btn-left{left:-85px}.rce-mbox-reply-btn-left,.rce-mbox-reply-btn-right{display:-webkit-box;display:-ms-flexbox;display:flex;opacity:0;visibility:hidden}.rce-mbox-reply-btn-right{right:-85px}.rce-container-mbox:hover .rce-mbox-forward-left,.rce-container-mbox:hover .rce-mbox-forward-right{opacity:1;visibility:visible}.rce-mbox-remove{width:30px;height:30px;border-radius:20px;background:#fff;position:absolute;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-item-align:center;align-self:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-shadow:0 0 5px 0 #a4a4a4;box-shadow:0 0 5px 0 #a4a4a4;cursor:pointer;-webkit-transition:all .3s ease;transition:all .3s ease;top:0;bottom:0;margin:auto}.rce-mbox-remove-left{left:-120px}.rce-mbox-remove-left,.rce-mbox-remove-right{display:-webkit-box;display:-ms-flexbox;display:flex;opacity:0;visibility:hidden}.rce-mbox-remove-right{right:-120px}.rce-container-mbox:hover .rce-mbox-remove-left,.rce-container-mbox:hover .rce-mbox-remove-right,.rce-container-mbox:hover .rce-mbox-reply-btn-left,.rce-container-mbox:hover .rce-mbox-reply-btn-right{opacity:1;visibility:visible}.rce-mbox{position:relative;background:#fff;border-radius:5px;border-top-left-radius:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:3px 5px 3px 20px;padding:6px 9px 8px;float:left;min-width:140px}.rce-mbox.message-focus{animation-iteration-count:2;-webkit-animation-iteration-count:2;-webkit-animation-duration:1s;-webkit-animation-name:message-box-default-focus;animation-name:message-box-default-focus;animation-duration:1s}@-webkit-keyframes message-box-default-focus{0%{background-color:#fff}to{background-color:#dfdfdf}}.rce-mbox-body{margin:0;padding:0;position:relative}.rce-mbox.rce-mbox-right{float:right;margin-left:5px;margin-right:20px;border-top-right-radius:0;border-top-left-radius:5px}.rce-mbox.rce-mbox-right.message-focus{animation-iteration-count:2;-webkit-animation-iteration-count:2;-webkit-animation-duration:1s;-webkit-animation-name:message-box-right-focus;animation-name:message-box-right-focus;animation-duration:1s}@-webkit-keyframes message-box-right-focus{0%{background-color:#d4f1fb}to{background-color:#b8dae6}}.rce-mbox-text{font-size:13.6px;word-break:break-word}.rce-mbox-text-retracted{font-style:italic;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-mbox-text.rce-mbox-text-retracted svg{margin-right:3px}.rce-mbox-text-retracted.left:not(#\#){color:#555555b3!important}.rce-mbox-text-retracted.right:not(#\#){color:#efefefb3!important}.rce-mbox-text:after{content:"\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0"}.rce-mbox-time{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:right;color:rgba(0,0,0,.45);font-size:12px;right:-4px;bottom:-5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-mbox-time.non-copiable:before{content:attr(data-text)}.rce-mbox-time-block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;right:0;bottom:0;left:0;margin-right:-6px;margin-left:-6px;padding-top:5px;padding-right:3px;padding-bottom:2px;background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.33)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.33),transparent);border-bottom-left-radius:5px;border-bottom-right-radius:5px;color:#fff}.rce-mbox--clear-padding{padding-bottom:3px}.rce-mbox.rce-mbox--clear-notch:not(#\#){border-radius:5px 5px 5px 5px!important}.rce-mbox-right-notch{position:absolute;right:-6px;top:12px;width:12px;height:12px;fill:#fff}.rce-mbox-right-notch.message-focus{animation-iteration-count:2;-webkit-animation-iteration-count:2;-webkit-animation-duration:1s;-webkit-animation-name:message-right-notch-focus;animation-name:message-right-notch-focus;animation-duration:1s}@-webkit-keyframes message-right-notch-focus{0%{fill:#d4f1fb}to{fill:#b8dae6}}.rce-mbox-left-notch{position:absolute;left:-6px;top:12px;width:12px;height:12px;fill:#fff}.rce-mbox-left-notch.message-focus{animation-iteration-count:2;-webkit-animation-iteration-count:2;-webkit-animation-duration:1s;-webkit-animation-name:message-left-notch-focus;animation-name:message-left-notch-focus;animation-duration:1s}@-webkit-keyframes message-left-notch-focus{0%{fill:#fff}to{fill:#dfdfdf}}.rce-mbox-title{margin:0 0 10px;font-weight:700;font-size:14px;line-height:1.2;color:#242842;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px}.rce-mbox-title--clear{margin-bottom:10px}.rce-mbox-status{margin-left:3px;font-size:15px;height:15px}.rce-mbox-title>.rce-avatar-container{-webkit-box-flex:0;-ms-flex:0 0 34px;flex:0 0 34px;width:34px;height:34px;margin-right:0;overflow:hidden}.rce-mbox-forwardedMessage{position:relative;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;margin:-1px -6px 6px;border-radius:5px;padding:0 0 0 5px;-webkit-transition:.2s;transition:.2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-mbox-forwarded-message{-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:1px;font-size:13px;font-style:italic}.rce-container-mlist,.rce-mbox-forwarded-message{display:-webkit-box;display:-ms-flexbox;display:flex}.rce-container-mlist,.rce-mlist{position:relative}.rce-mlist{display:block;overflow:auto;-webkit-box-flex:1;-ms-flex:1 1;flex:1 1}.rce-mlist-down-button{position:absolute;right:10px;bottom:15px;width:40px;height:40px;background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.05),0 2px 5px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.05),0 2px 5px 0 rgba(0,0,0,.1);border-radius:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#333;cursor:pointer;-webkit-transition:.2s;transition:.2s}.rce-mlist-down-button:hover{opacity:.7}.rce-mlist-down-button--badge{position:absolute;right:-5px;top:-5px;width:20px;height:20px;border-radius:100%;font-size:12px;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;font-weight:700}.rce-mlist-down-button--badge,.rce-navbar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-navbar{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:10px}.rce-navbar.light{background:#f4f4f4}.rce-navbar.dark{background:#2f414c}.rce-navbar-item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.rce-navbar-item,.rce-navbar-item>*{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.rce-navbar-item>*>*{margin-left:5px}.rce-mbox-photo{margin-top:-3px;margin-right:-6px;margin-left:-6px}.rce-mbox-photo .rce-mbox-text{padding:5px 0;max-width:300px;margin:auto}.rce-mbox-photo--img{position:relative;overflow:hidden;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;max-height:300px}.rce-mbox-photo--img,.rce-mbox-photo--img__block{display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:5px}.rce-mbox-photo--img__block{position:absolute;top:0;right:0;left:0;bottom:0;background-color:rgba(0,0,0,.5)}.rce-mbox-photo--img img{height:100%;min-height:100px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-mbox-photo--img__block-item{margin:auto;cursor:pointer;width:100px;height:100px}.rce-mbox-photo--download{color:#efe;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:none;font-size:3.2em;outline:none;border:1px solid #eee;border-radius:100%;height:100px;width:100px}.rce-mbox-photo--download:hover{opacity:.7}.rce-mbox-photo--download:active{opacity:.3}.rce-mbox-photo--error{background:none;font-size:70px;color:#eaeaea}.rce-mbox-photo--error,.rce-popup-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rce-popup-wrapper{position:fixed;left:0;right:0;top:0;bottom:0;margin:auto;background:hsla(0,0%,100%,.7);z-index:9999999999;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.rce-popup{background:#fff;border-radius:5px;padding:0 10px;width:400px;min-height:100px;-webkit-box-shadow:0 0 25px -2px #4f4f4f;box-shadow:0 0 25px -2px #4f4f4f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-animation:popup-scaling .4s ease forwards;animation:popup-scaling .4s ease forwards;-webkit-box-sizing:border-box;box-sizing:border-box}@-webkit-keyframes popup-scaling{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}50%{-webkit-transform:scale(1.2);transform:scale(1.2);opacity:.5}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.rce-popup-header{padding:18px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.rce-popup-content,.rce-popup-header{-webkit-box-sizing:border-box;box-sizing:border-box}.rce-popup-content{padding:8px;font-size:14px}.rce-popup-content *{margin:0}.rce-popup-footer{padding:18px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-sizing:border-box;box-sizing:border-box}.rce-popup-footer>*{margin-left:5px}.rce-mbox-reply{position:relative;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;margin:-3px -6px 6px;border-radius:5px;background:#ececec;padding:0 0 0 5px;font-size:12px;cursor:pointer;-webkit-transition:.2s;transition:.2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-mbox-reply.rce-mbox-reply-border{border-left:5px solid}.rce-mbox-reply:hover{opacity:.85}.rce-mbox-reply-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:3px 0;-webkit-box-flex:1;-ms-flex:1 1;flex:1 1}.rce-mbox-reply-owner{font-size:13px}.rce-mbox-reply-message{color:#5a5a5a;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:150px}.rce-mbox-reply-right{width:40px;height:40px}.rce-mbox-reply-right img{width:100%}.rce-mbox-reply-text{padding:5px 0;width:250px;margin-left:-6px;margin-right:-6px}.rce-sbar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100%}.rce-sbar.light{background:#f4f4f4}.rce-sbar.dark{background:#2f414c}.rce-sbar-item{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;max-width:100%}.rce-sbar-item,.rce-sbar-item>*{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-direction:normal}.rce-sbar-item>*{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.rce-sbar-item__center{margin:15px 0}.rce-mbox-spotify{margin-top:-2px;overflow:hidden;margin-right:-6px;margin-left:-6px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:5px}.rce-container-smsg,.rce-smsg{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.rce-smsg{position:relative;background:#fff;border-radius:10px;-webkit-box-shadow:1px 1px 1px 1px rgba(0,0,0,.2);box-shadow:1px 1px 1px 1px rgba(0,0,0,.2);-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:5px 0;padding:6px 9px 8px;float:left;max-width:70%}.rce-smsg-text{text-align:center;display:inline-block;font-size:15px}.rce-mbox-video{margin-top:-3px;margin-right:-6px;margin-left:-6px}.rce-mbox-video.padding-time{padding-bottom:12px}.rce-mbox-video .rce-mbox-text{padding:5px 0;max-width:300px;margin:auto}.rce-mbox-video--video{position:relative;overflow:hidden;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;max-height:500px}.rce-mbox-video--video,.rce-mbox-video--video__block{display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:5px}.rce-mbox-video--video__block{position:absolute;top:0;right:0;left:0;bottom:0;background-color:rgba(0,0,0,.5)}.rce-mbox-video--video img{height:100%;min-height:100px}.rce-mbox-video--video img,.rce-mbox-video--video video{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rce-mbox-video--video video{width:100%}.rce-mbox-video--video__block-item{margin:auto;cursor:pointer;width:100px;height:100px}.rce-mbox-video--download{color:#efe;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:none;font-size:3.2em;outline:none;border:1px solid #eee;border-radius:100%;height:100px;width:100px}.rce-mbox-video--download:hover{opacity:.7}.rce-mbox-video--download:active{opacity:.3}.rce-mbox-video--error{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:none;font-size:70px;color:#eaeaea}
|