@magmamath/students-features 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js +60 -0
- package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.js +96 -0
- package/dist/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js +97 -0
- package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/ChatMessage.js +27 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/ChatMessage.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js +56 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.js +88 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js +87 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/SentMessage.js +43 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/SentMessage.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js +130 -0
- package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/Chatbot.js +69 -0
- package/dist/commonjs/features/chatbot/components/Chatbot.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.js +65 -0
- package/dist/commonjs/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.js.map +1 -0
- package/dist/commonjs/features/chatbot/constants.js +31 -0
- package/dist/commonjs/features/chatbot/constants.js.map +1 -0
- package/dist/commonjs/features/chatbot/helpers.js +12 -0
- package/dist/commonjs/features/chatbot/helpers.js.map +1 -0
- package/dist/commonjs/features/chatbot/index.js +34 -0
- package/dist/commonjs/features/chatbot/index.js.map +1 -0
- package/dist/commonjs/features/chatbot/model/api.js +18 -0
- package/dist/commonjs/features/chatbot/model/api.js.map +1 -0
- package/dist/commonjs/features/chatbot/model/model.js +244 -0
- package/dist/commonjs/features/chatbot/model/model.js.map +1 -0
- package/dist/commonjs/features/chatbot/model/t2s.js +104 -0
- package/dist/commonjs/features/chatbot/model/t2s.js.map +1 -0
- package/dist/commonjs/features/chatbot/model/translation.js +203 -0
- package/dist/commonjs/features/chatbot/model/translation.js.map +1 -0
- package/dist/commonjs/features/chatbot/types/api.types.js +2 -0
- package/dist/commonjs/features/chatbot/types/api.types.js.map +1 -0
- package/dist/commonjs/features/chatbot/types/model.types.js +12 -0
- package/dist/commonjs/features/chatbot/types/model.types.js.map +1 -0
- package/dist/commonjs/features/chatbot/types/t2s.types.js +13 -0
- package/dist/commonjs/features/chatbot/types/t2s.types.js.map +1 -0
- package/dist/commonjs/features/chatbot/types/translation.types.js +6 -0
- package/dist/commonjs/features/chatbot/types/translation.types.js.map +1 -0
- package/dist/commonjs/index.js +42 -0
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/lib/createFeature/createFeature.js +28 -0
- package/dist/commonjs/lib/createFeature/createFeature.js.map +1 -0
- package/dist/commonjs/lib/effector/createControllerEffect.js +51 -0
- package/dist/commonjs/lib/effector/createControllerEffect.js.map +1 -0
- package/dist/commonjs/lib/effector/createEntityFieldStore.js +42 -0
- package/dist/commonjs/lib/effector/createEntityFieldStore.js.map +1 -0
- package/dist/commonjs/lib/effector/index.js +20 -0
- package/dist/commonjs/lib/effector/index.js.map +1 -0
- package/dist/commonjs/lib/helpers/helpers.js +9 -0
- package/dist/commonjs/lib/helpers/helpers.js.map +1 -0
- package/dist/commonjs/lib/localization/en.json +2 -0
- package/dist/commonjs/lib/localization/gb.json +2 -0
- package/dist/commonjs/lib/localization/sw.json +2 -0
- package/dist/commonjs/shared/hooks/useDebounce.js +21 -0
- package/dist/commonjs/shared/hooks/useDebounce.js.map +1 -0
- package/dist/commonjs/shared/icons/ArrowRightIcon.js +30 -0
- package/dist/commonjs/shared/icons/ArrowRightIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/ChatbotIcon.js +148 -0
- package/dist/commonjs/shared/icons/ChatbotIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/CloseIcon.js +28 -0
- package/dist/commonjs/shared/icons/CloseIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/GlobeIcon.js +30 -0
- package/dist/commonjs/shared/icons/GlobeIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/PauseIcon.js +32 -0
- package/dist/commonjs/shared/icons/PauseIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/PlayIcon.js +32 -0
- package/dist/commonjs/shared/icons/PlayIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/SpeakerIcon.js +37 -0
- package/dist/commonjs/shared/icons/SpeakerIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/icon.types.js +2 -0
- package/dist/commonjs/shared/icons/icon.types.js.map +1 -0
- package/dist/commonjs/shared/translation/constants.js +17 -0
- package/dist/commonjs/shared/translation/constants.js.map +1 -0
- package/dist/commonjs/shared/translation/helpers.js +31 -0
- package/dist/commonjs/shared/translation/helpers.js.map +1 -0
- package/dist/commonjs/shared/translation/hooks.js +28 -0
- package/dist/commonjs/shared/translation/hooks.js.map +1 -0
- package/dist/commonjs/shared/translation/index.js +52 -0
- package/dist/commonjs/shared/translation/index.js.map +1 -0
- package/dist/commonjs/shared/translation/model.js +15 -0
- package/dist/commonjs/shared/translation/model.js.map +1 -0
- package/dist/commonjs/shared/translation/types.js +13 -0
- package/dist/commonjs/shared/translation/types.js.map +1 -0
- package/dist/commonjs/types/types.d.js +2 -0
- package/dist/commonjs/types/types.d.js.map +1 -0
- package/dist/module/features/chatbot/components/Alternatives/Alternatives.js +54 -0
- package/dist/module/features/chatbot/components/Alternatives/Alternatives.js.map +1 -0
- package/dist/module/features/chatbot/components/Alternatives/HelpRequestOption.js +90 -0
- package/dist/module/features/chatbot/components/Alternatives/HelpRequestOption.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatControls/ChatControls.js +91 -0
- package/dist/module/features/chatbot/components/ChatControls/ChatControls.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatMessage/ChatMessage.js +21 -0
- package/dist/module/features/chatbot/components/ChatMessage/ChatMessage.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js +50 -0
- package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.js +82 -0
- package/dist/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js +81 -0
- package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatMessage/SentMessage.js +37 -0
- package/dist/module/features/chatbot/components/ChatMessage/SentMessage.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js +123 -0
- package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -0
- package/dist/module/features/chatbot/components/Chatbot.js +63 -0
- package/dist/module/features/chatbot/components/Chatbot.js.map +1 -0
- package/dist/module/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.js +59 -0
- package/dist/module/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.js.map +1 -0
- package/dist/module/features/chatbot/constants.js +27 -0
- package/dist/module/features/chatbot/constants.js.map +1 -0
- package/dist/module/features/chatbot/helpers.js +7 -0
- package/dist/module/features/chatbot/helpers.js.map +1 -0
- package/dist/module/features/chatbot/index.js +7 -0
- package/dist/module/features/chatbot/index.js.map +1 -0
- package/dist/module/features/chatbot/model/api.js +13 -0
- package/dist/module/features/chatbot/model/api.js.map +1 -0
- package/dist/module/features/chatbot/model/model.js +239 -0
- package/dist/module/features/chatbot/model/model.js.map +1 -0
- package/dist/module/features/chatbot/model/t2s.js +99 -0
- package/dist/module/features/chatbot/model/t2s.js.map +1 -0
- package/dist/module/features/chatbot/model/translation.js +198 -0
- package/dist/module/features/chatbot/model/translation.js.map +1 -0
- package/dist/module/features/chatbot/types/api.types.js +2 -0
- package/dist/module/features/chatbot/types/api.types.js.map +1 -0
- package/dist/module/features/chatbot/types/model.types.js +8 -0
- package/dist/module/features/chatbot/types/model.types.js.map +1 -0
- package/dist/module/features/chatbot/types/t2s.types.js +9 -0
- package/dist/module/features/chatbot/types/t2s.types.js.map +1 -0
- package/dist/module/features/chatbot/types/translation.types.js +4 -0
- package/dist/module/features/chatbot/types/translation.types.js.map +1 -0
- package/dist/module/index.js +5 -0
- package/dist/module/index.js.map +1 -0
- package/dist/module/lib/createFeature/createFeature.js +22 -0
- package/dist/module/lib/createFeature/createFeature.js.map +1 -0
- package/dist/module/lib/effector/createControllerEffect.js +45 -0
- package/dist/module/lib/effector/createControllerEffect.js.map +1 -0
- package/dist/module/lib/effector/createEntityFieldStore.js +38 -0
- package/dist/module/lib/effector/createEntityFieldStore.js.map +1 -0
- package/dist/module/lib/effector/index.js +5 -0
- package/dist/module/lib/effector/index.js.map +1 -0
- package/dist/module/lib/helpers/helpers.js +4 -0
- package/dist/module/lib/helpers/helpers.js.map +1 -0
- package/dist/module/lib/localization/en.json +2 -0
- package/dist/module/lib/localization/gb.json +2 -0
- package/dist/module/lib/localization/sw.json +2 -0
- package/dist/module/shared/hooks/useDebounce.js +16 -0
- package/dist/module/shared/hooks/useDebounce.js.map +1 -0
- package/dist/module/shared/icons/ArrowRightIcon.js +22 -0
- package/dist/module/shared/icons/ArrowRightIcon.js.map +1 -0
- package/dist/module/shared/icons/ChatbotIcon.js +140 -0
- package/dist/module/shared/icons/ChatbotIcon.js.map +1 -0
- package/dist/module/shared/icons/CloseIcon.js +20 -0
- package/dist/module/shared/icons/CloseIcon.js.map +1 -0
- package/dist/module/shared/icons/GlobeIcon.js +22 -0
- package/dist/module/shared/icons/GlobeIcon.js.map +1 -0
- package/dist/module/shared/icons/PauseIcon.js +24 -0
- package/dist/module/shared/icons/PauseIcon.js.map +1 -0
- package/dist/module/shared/icons/PlayIcon.js +24 -0
- package/dist/module/shared/icons/PlayIcon.js.map +1 -0
- package/dist/module/shared/icons/SpeakerIcon.js +29 -0
- package/dist/module/shared/icons/SpeakerIcon.js.map +1 -0
- package/dist/module/shared/icons/icon.types.js +2 -0
- package/dist/module/shared/icons/icon.types.js.map +1 -0
- package/dist/module/shared/translation/constants.js +12 -0
- package/dist/module/shared/translation/constants.js.map +1 -0
- package/dist/module/shared/translation/helpers.js +24 -0
- package/dist/module/shared/translation/helpers.js.map +1 -0
- package/dist/module/shared/translation/hooks.js +22 -0
- package/dist/module/shared/translation/hooks.js.map +1 -0
- package/dist/module/shared/translation/index.js +7 -0
- package/dist/module/shared/translation/index.js.map +1 -0
- package/dist/module/shared/translation/model.js +11 -0
- package/dist/module/shared/translation/model.js.map +1 -0
- package/dist/module/shared/translation/types.js +9 -0
- package/dist/module/shared/translation/types.js.map +1 -0
- package/dist/module/types/types.d.js +2 -0
- package/dist/module/types/types.d.js.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts +11 -0
- package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.d.ts +9 -0
- package/dist/typescript/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts +14 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/ChatMessage.d.ts +17 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/ChatMessage.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageLoader.d.ts +3 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageLoader.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.d.ts +12 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.d.ts +4 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/SentMessage.d.ts +4 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/SentMessage.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts +21 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts +25 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.d.ts +9 -0
- package/dist/typescript/commonjs/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/constants.d.ts +21 -0
- package/dist/typescript/commonjs/features/chatbot/constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/helpers.d.ts +2 -0
- package/dist/typescript/commonjs/features/chatbot/helpers.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/index.d.ts +5 -0
- package/dist/typescript/commonjs/features/chatbot/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/api.d.ts +12 -0
- package/dist/typescript/commonjs/features/chatbot/model/api.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/model.d.ts +73 -0
- package/dist/typescript/commonjs/features/chatbot/model/model.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/t2s.d.ts +18 -0
- package/dist/typescript/commonjs/features/chatbot/model/t2s.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts +22 -0
- package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts +60 -0
- package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts +64 -0
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/types/t2s.types.d.ts +22 -0
- package/dist/typescript/commonjs/features/chatbot/types/t2s.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/types/translation.types.d.ts +23 -0
- package/dist/typescript/commonjs/features/chatbot/types/translation.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/index.d.ts +4 -0
- package/dist/typescript/commonjs/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/createFeature/createFeature.d.ts +7 -0
- package/dist/typescript/commonjs/lib/createFeature/createFeature.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/effector/createControllerEffect.d.ts +16 -0
- package/dist/typescript/commonjs/lib/effector/createControllerEffect.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/effector/createEntityFieldStore.d.ts +16 -0
- package/dist/typescript/commonjs/lib/effector/createEntityFieldStore.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/effector/index.d.ts +3 -0
- package/dist/typescript/commonjs/lib/effector/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/helpers/helpers.d.ts +2 -0
- package/dist/typescript/commonjs/lib/helpers/helpers.d.ts.map +1 -0
- package/dist/typescript/commonjs/package.json +1 -0
- package/dist/typescript/commonjs/shared/hooks/useDebounce.d.ts +2 -0
- package/dist/typescript/commonjs/shared/hooks/useDebounce.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/ArrowRightIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/ArrowRightIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/ChatbotIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/ChatbotIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/CloseIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/CloseIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/GlobeIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/GlobeIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/PauseIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/PauseIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/PlayIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/PlayIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/SpeakerIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/SpeakerIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/icon.types.d.ts +9 -0
- package/dist/typescript/commonjs/shared/icons/icon.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/constants.d.ts +6 -0
- package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/helpers.d.ts +6 -0
- package/dist/typescript/commonjs/shared/translation/helpers.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/hooks.d.ts +5 -0
- package/dist/typescript/commonjs/shared/translation/hooks.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/index.d.ts +6 -0
- package/dist/typescript/commonjs/shared/translation/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/model.d.ts +5 -0
- package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/types.d.ts +8 -0
- package/dist/typescript/commonjs/shared/translation/types.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts +11 -0
- package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/Alternatives/HelpRequestOption.d.ts +9 -0
- package/dist/typescript/module/features/chatbot/components/Alternatives/HelpRequestOption.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts +14 -0
- package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/ChatMessage.d.ts +17 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/ChatMessage.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageLoader.d.ts +3 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageLoader.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.d.ts +12 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/ReceivedMessage.d.ts +4 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/ReceivedMessage.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/SentMessage.d.ts +4 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/SentMessage.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts +21 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts +25 -0
- package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.d.ts +9 -0
- package/dist/typescript/module/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/constants.d.ts +21 -0
- package/dist/typescript/module/features/chatbot/constants.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/helpers.d.ts +2 -0
- package/dist/typescript/module/features/chatbot/helpers.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/index.d.ts +5 -0
- package/dist/typescript/module/features/chatbot/index.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/model/api.d.ts +12 -0
- package/dist/typescript/module/features/chatbot/model/api.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/model/model.d.ts +73 -0
- package/dist/typescript/module/features/chatbot/model/model.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/model/t2s.d.ts +18 -0
- package/dist/typescript/module/features/chatbot/model/t2s.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/model/translation.d.ts +22 -0
- package/dist/typescript/module/features/chatbot/model/translation.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/types/api.types.d.ts +60 -0
- package/dist/typescript/module/features/chatbot/types/api.types.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts +64 -0
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/types/t2s.types.d.ts +22 -0
- package/dist/typescript/module/features/chatbot/types/t2s.types.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/types/translation.types.d.ts +23 -0
- package/dist/typescript/module/features/chatbot/types/translation.types.d.ts.map +1 -0
- package/dist/typescript/module/index.d.ts +4 -0
- package/dist/typescript/module/index.d.ts.map +1 -0
- package/dist/typescript/module/lib/createFeature/createFeature.d.ts +7 -0
- package/dist/typescript/module/lib/createFeature/createFeature.d.ts.map +1 -0
- package/dist/typescript/module/lib/effector/createControllerEffect.d.ts +16 -0
- package/dist/typescript/module/lib/effector/createControllerEffect.d.ts.map +1 -0
- package/dist/typescript/module/lib/effector/createEntityFieldStore.d.ts +16 -0
- package/dist/typescript/module/lib/effector/createEntityFieldStore.d.ts.map +1 -0
- package/dist/typescript/module/lib/effector/index.d.ts +3 -0
- package/dist/typescript/module/lib/effector/index.d.ts.map +1 -0
- package/dist/typescript/module/lib/helpers/helpers.d.ts +2 -0
- package/dist/typescript/module/lib/helpers/helpers.d.ts.map +1 -0
- package/dist/typescript/module/package.json +1 -0
- package/dist/typescript/module/shared/hooks/useDebounce.d.ts +2 -0
- package/dist/typescript/module/shared/hooks/useDebounce.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/ArrowRightIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/ArrowRightIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/ChatbotIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/ChatbotIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/CloseIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/CloseIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/GlobeIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/GlobeIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/PauseIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/PauseIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/PlayIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/PlayIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/SpeakerIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/SpeakerIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/icon.types.d.ts +9 -0
- package/dist/typescript/module/shared/icons/icon.types.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/constants.d.ts +6 -0
- package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/helpers.d.ts +6 -0
- package/dist/typescript/module/shared/translation/helpers.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/hooks.d.ts +5 -0
- package/dist/typescript/module/shared/translation/hooks.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/index.d.ts +6 -0
- package/dist/typescript/module/shared/translation/index.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/model.d.ts +5 -0
- package/dist/typescript/module/shared/translation/model.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/types.d.ts +8 -0
- package/dist/typescript/module/shared/translation/types.d.ts.map +1 -0
- package/package.json +73 -0
- package/src/features/chatbot/components/Alternatives/Alternatives.tsx +64 -0
- package/src/features/chatbot/components/Alternatives/HelpRequestOption.tsx +92 -0
- package/src/features/chatbot/components/ChatControls/ChatControls.tsx +103 -0
- package/src/features/chatbot/components/ChatMessage/ChatMessage.tsx +28 -0
- package/src/features/chatbot/components/ChatMessage/MessageLoader.tsx +42 -0
- package/src/features/chatbot/components/ChatMessage/MessageTextToSpeech.tsx +78 -0
- package/src/features/chatbot/components/ChatMessage/ReceivedMessage.tsx +73 -0
- package/src/features/chatbot/components/ChatMessage/SentMessage.tsx +31 -0
- package/src/features/chatbot/components/ChatMessages/ChatbotMessages.tsx +148 -0
- package/src/features/chatbot/components/Chatbot.tsx +92 -0
- package/src/features/chatbot/components/ThreeDotsLoader/ThreeDotsLoader.tsx +77 -0
- package/src/features/chatbot/constants.ts +30 -0
- package/src/features/chatbot/helpers.ts +4 -0
- package/src/features/chatbot/index.ts +4 -0
- package/src/features/chatbot/model/api.ts +28 -0
- package/src/features/chatbot/model/model.ts +277 -0
- package/src/features/chatbot/model/t2s.ts +107 -0
- package/src/features/chatbot/model/translation.ts +231 -0
- package/src/features/chatbot/types/api.types.ts +59 -0
- package/src/features/chatbot/types/model.types.ts +73 -0
- package/src/features/chatbot/types/t2s.types.ts +24 -0
- package/src/features/chatbot/types/translation.types.ts +23 -0
- package/src/index.ts +3 -0
- package/src/lib/createFeature/createFeature.tsx +21 -0
- package/src/lib/effector/createControllerEffect.ts +66 -0
- package/src/lib/effector/createEntityFieldStore.ts +43 -0
- package/src/lib/effector/index.ts +2 -0
- package/src/lib/helpers/helpers.ts +2 -0
- package/src/lib/localization/en.json +2 -0
- package/src/lib/localization/gb.json +2 -0
- package/src/lib/localization/sw.json +2 -0
- package/src/shared/hooks/useDebounce.ts +17 -0
- package/src/shared/icons/ArrowRightIcon.tsx +14 -0
- package/src/shared/icons/ChatbotIcon.tsx +109 -0
- package/src/shared/icons/CloseIcon.tsx +12 -0
- package/src/shared/icons/GlobeIcon.tsx +14 -0
- package/src/shared/icons/PauseIcon.tsx +16 -0
- package/src/shared/icons/PlayIcon.tsx +16 -0
- package/src/shared/icons/SpeakerIcon.tsx +22 -0
- package/src/shared/icons/icon.types.ts +8 -0
- package/src/shared/translation/constants.ts +10 -0
- package/src/shared/translation/helpers.ts +34 -0
- package/src/shared/translation/hooks.ts +28 -0
- package/src/shared/translation/index.ts +5 -0
- package/src/shared/translation/model.ts +15 -0
- package/src/shared/translation/types.ts +9 -0
- package/src/types/types.d.ts +4 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
useFeaturesLocalization: true,
|
|
8
|
+
setFeaturesLocalization: true,
|
|
9
|
+
Locale: true
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "Locale", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () {
|
|
14
|
+
return _index.Locale;
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
Object.defineProperty(exports, "setFeaturesLocalization", {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () {
|
|
20
|
+
return _index.setFeaturesLocalization;
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(exports, "useFeaturesLocalization", {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () {
|
|
26
|
+
return _index.useFeaturesLocalization;
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
var _index = require("./shared/translation/index.js");
|
|
30
|
+
var _index2 = require("./features/chatbot/index.js");
|
|
31
|
+
Object.keys(_index2).forEach(function (key) {
|
|
32
|
+
if (key === "default" || key === "__esModule") return;
|
|
33
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
34
|
+
if (key in exports && exports[key] === _index2[key]) return;
|
|
35
|
+
Object.defineProperty(exports, key, {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () {
|
|
38
|
+
return _index2[key];
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_index","require","_index2","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAEA,IAAAC,OAAA,GAAAD,OAAA;AAAAE,MAAA,CAAAC,IAAA,CAAAF,OAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,OAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAZ,OAAA,CAAAI,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createFeature = createFeature;
|
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
10
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
11
|
+
function createFeature() {
|
|
12
|
+
const context = /*#__PURE__*/(0, _react.createContext)(null);
|
|
13
|
+
const FeatureProvider = ({
|
|
14
|
+
children,
|
|
15
|
+
model
|
|
16
|
+
}) => {
|
|
17
|
+
if (!model) return null;
|
|
18
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(context.Provider, {
|
|
19
|
+
value: model,
|
|
20
|
+
children: children
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
const useFeatureModel = () => {
|
|
24
|
+
return (0, _react.useContext)(context);
|
|
25
|
+
};
|
|
26
|
+
return [FeatureProvider, useFeatureModel, context];
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=createFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","createFeature","context","createContext","FeatureProvider","children","model","jsx","Provider","value","useFeatureModel","useContext"],"sourceRoot":"../../../../src","sources":["lib/createFeature/createFeature.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AAA2E,IAAAC,WAAA,GAAAD,OAAA;AAAA,SAAAE,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAJ,wBAAAI,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAe,GAAA,CAAAlB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAEpE,SAASW,aAAaA,CAAA,EAAM;EACjC,MAAMC,OAAO,gBAAG,IAAAC,oBAAa,EAAW,IAAI,CAAC;EAM7C,MAAMC,eAAe,GAAGA,CAAC;IAAEC,QAAQ;IAAEC;EAAqB,CAAC,KAAK;IAC9D,IAAI,CAACA,KAAK,EAAE,OAAO,IAAI;IAEvB,oBAAO,IAAA1B,WAAA,CAAA2B,GAAA,EAACL,OAAO,CAACM,QAAQ;MAACC,KAAK,EAAEH,KAAM;MAAAD,QAAA,EAAEA;IAAQ,CAAmB,CAAC;EACtE,CAAC;EAED,MAAMK,eAAe,GAAGA,CAAA,KAAM;IAC5B,OAAO,IAAAC,iBAAU,EAACT,OAAO,CAAC;EAC5B,CAAC;EAED,OAAO,CAACE,eAAe,EAAEM,eAAe,EAAER,OAAO,CAAC;AACpD","ignoreList":[]}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.controlledRequest = controlledRequest;
|
|
7
|
+
exports.createControllerEffect = void 0;
|
|
8
|
+
var _effector = require("effector");
|
|
9
|
+
function controlledRequest(request) {
|
|
10
|
+
return async ({
|
|
11
|
+
data,
|
|
12
|
+
controller = new AbortController(),
|
|
13
|
+
abortAfter = 20000
|
|
14
|
+
}) => {
|
|
15
|
+
let timeout = null;
|
|
16
|
+
if (abortAfter) {
|
|
17
|
+
timeout = setTimeout(() => {
|
|
18
|
+
controller.abort('timeout');
|
|
19
|
+
}, abortAfter);
|
|
20
|
+
}
|
|
21
|
+
try {
|
|
22
|
+
const response = await request(data, {
|
|
23
|
+
signal: controller?.signal
|
|
24
|
+
});
|
|
25
|
+
if (timeout !== null) clearTimeout(timeout);
|
|
26
|
+
return response;
|
|
27
|
+
} catch (error) {
|
|
28
|
+
if (error.code === 'ERR_CANCELED') {
|
|
29
|
+
if (controller.signal.reason === 'timeout') {
|
|
30
|
+
throw new Error('Request timed out');
|
|
31
|
+
}
|
|
32
|
+
throw new Error('Request aborted manually');
|
|
33
|
+
}
|
|
34
|
+
throw error;
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
const createControllerEffect = fn => {
|
|
39
|
+
const request = controlledRequest(fn);
|
|
40
|
+
const effect = (0, _effector.createEffect)(data => request({
|
|
41
|
+
data,
|
|
42
|
+
controller: effect.controller
|
|
43
|
+
}));
|
|
44
|
+
effect.controller = new AbortController();
|
|
45
|
+
effect.fail.watch(() => {
|
|
46
|
+
effect.controller = new AbortController();
|
|
47
|
+
});
|
|
48
|
+
return effect;
|
|
49
|
+
};
|
|
50
|
+
exports.createControllerEffect = createControllerEffect;
|
|
51
|
+
//# sourceMappingURL=createControllerEffect.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effector","require","controlledRequest","request","data","controller","AbortController","abortAfter","timeout","setTimeout","abort","response","signal","clearTimeout","error","code","reason","Error","createControllerEffect","fn","effect","createEffect","fail","watch","exports"],"sourceRoot":"../../../../src","sources":["lib/effector/createControllerEffect.ts"],"mappings":";;;;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AAkBO,SAASC,iBAAiBA,CAC7BC,OAAiE,EACnE;EACE,OAAO,OAAO;IACVC,IAAI;IACJC,UAAU,GAAG,IAAIC,eAAe,CAAC,CAAC;IAClCC,UAAU,GAAG;EACU,CAAC,KAAK;IAC7B,IAAIC,OAA6C,GAAG,IAAI;IAExD,IAAID,UAAU,EAAE;MACZC,OAAO,GAAGC,UAAU,CAAC,MAAM;QACvBJ,UAAU,CAACK,KAAK,CAAC,SAAS,CAAC;MAC/B,CAAC,EAAEH,UAAU,CAAC;IAClB;IAEA,IAAI;MACA,MAAMI,QAAQ,GAAG,MAAMR,OAAO,CAACC,IAAI,EAAE;QAAEQ,MAAM,EAAEP,UAAU,EAAEO;MAAO,CAAC,CAAC;MACpE,IAAIJ,OAAO,KAAK,IAAI,EAAEK,YAAY,CAACL,OAAO,CAAC;MAC3C,OAAOG,QAAQ;IACnB,CAAC,CAAC,OAAOG,KAAc,EAAE;MACrB,IAAKA,KAAK,CAAuBC,IAAI,KAAK,cAAc,EAAE;QACtD,IAAIV,UAAU,CAACO,MAAM,CAACI,MAAM,KAAK,SAAS,EAAE;UACxC,MAAM,IAAIC,KAAK,CAAC,mBAAmB,CAAC;QACxC;QACA,MAAM,IAAIA,KAAK,CAAC,0BAA0B,CAAC;MAC/C;MAEA,MAAMH,KAAK;IACf;EACJ,CAAC;AACL;AAEO,MAAMI,sBAAsB,GAC/BC,EAA4D,IAC3D;EACD,MAAMhB,OAAO,GAAGD,iBAAiB,CAAOiB,EAAE,CAAC;EAC3C,MAAMC,MAAM,GAAG,IAAAC,sBAAY,EAAEjB,IAAO,IAChCD,OAAO,CAAC;IAAEC,IAAI;IAAEC,UAAU,EAAEe,MAAM,CAACf;EAAW,CAAC,CACnD,CAA2B;EAC3Be,MAAM,CAACf,UAAU,GAAG,IAAIC,eAAe,CAAC,CAAC;EAEzCc,MAAM,CAACE,IAAI,CAACC,KAAK,CAAC,MAAM;IACpBH,MAAM,CAACf,UAAU,GAAG,IAAIC,eAAe,CAAC,CAAC;EAC7C,CAAC,CAAC;EAEF,OAAOc,MAAM;AACjB,CAAC;AAAAI,OAAA,CAAAN,sBAAA,GAAAA,sBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createEntityFieldStore = createEntityFieldStore;
|
|
7
|
+
var _effector = require("effector");
|
|
8
|
+
function createEntityFieldStore({
|
|
9
|
+
mapper = value => value
|
|
10
|
+
} = {}) {
|
|
11
|
+
const initialState = {};
|
|
12
|
+
const fieldAdded = (0, _effector.createEvent)();
|
|
13
|
+
const reset = (0, _effector.createEvent)();
|
|
14
|
+
const setField = value => {
|
|
15
|
+
fieldAdded(mapper(value));
|
|
16
|
+
};
|
|
17
|
+
const $state = (0, _effector.createStore)(initialState).on(fieldAdded, (state, {
|
|
18
|
+
entityId,
|
|
19
|
+
fieldId,
|
|
20
|
+
data
|
|
21
|
+
}) => {
|
|
22
|
+
if (!fieldId || !entityId) {
|
|
23
|
+
console.error('fieldId or entityId missing in createValuePersistorModel.ts');
|
|
24
|
+
return state;
|
|
25
|
+
}
|
|
26
|
+
const newState = {
|
|
27
|
+
...state
|
|
28
|
+
};
|
|
29
|
+
if (!newState[entityId]) {
|
|
30
|
+
newState[entityId] = {};
|
|
31
|
+
}
|
|
32
|
+
newState[entityId][fieldId] = data;
|
|
33
|
+
return newState;
|
|
34
|
+
}).reset(reset);
|
|
35
|
+
return {
|
|
36
|
+
$state,
|
|
37
|
+
setField,
|
|
38
|
+
fieldAdded,
|
|
39
|
+
reset
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=createEntityFieldStore.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effector","require","createEntityFieldStore","mapper","value","initialState","fieldAdded","createEvent","reset","setField","$state","createStore","on","state","entityId","fieldId","data","console","error","newState"],"sourceRoot":"../../../../src","sources":["lib/effector/createEntityFieldStore.ts"],"mappings":";;;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AAYO,SAASC,sBAAsBA,CAAwB;EAC1DC,MAAM,GAAIC,KAAU,IAAKA;AACS,CAAC,GAAG,CAAC,CAAC,EAAE;EAC1C,MAAMC,YAA+C,GAAG,CAAC,CAAC;EAC1D,MAAMC,UAAU,GAAG,IAAAC,qBAAW,EAAiB,CAAC;EAChD,MAAMC,KAAK,GAAG,IAAAD,qBAAW,EAAC,CAAC;EAE3B,MAAME,QAAQ,GAAIL,KAAQ,IAAK;IAC3BE,UAAU,CAACH,MAAM,CAACC,KAAK,CAAC,CAAC;EAC7B,CAAC;EAED,MAAMM,MAAM,GAAG,IAAAC,qBAAW,EAACN,YAAY,CAAC,CACnCO,EAAE,CAACN,UAAU,EAAE,CAACO,KAAK,EAAE;IAAEC,QAAQ;IAAEC,OAAO;IAAEC;EAAK,CAAC,KAAK;IACpD,IAAI,CAACD,OAAO,IAAI,CAACD,QAAQ,EAAE;MACvBG,OAAO,CAACC,KAAK,CAAC,6DAA6D,CAAC;MAC5E,OAAOL,KAAK;IAChB;IAEA,MAAMM,QAAQ,GAAG;MAAE,GAAGN;IAAM,CAAC;IAE7B,IAAI,CAACM,QAAQ,CAACL,QAAQ,CAAC,EAAE;MACrBK,QAAQ,CAACL,QAAQ,CAAC,GAAG,CAAC,CAAC;IAC3B;IAEAK,QAAQ,CAACL,QAAQ,CAAC,CAACC,OAAO,CAAC,GAAGC,IAAI;IAClC,OAAOG,QAAQ;EACnB,CAAC,CAAC,CACDX,KAAK,CAACA,KAAK,CAAC;EAEjB,OAAO;IAAEE,MAAM;IAAED,QAAQ;IAAEH,UAAU;IAAEE;EAAM,CAAC;AAClD","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "createControllerEffect", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _createControllerEffect.createControllerEffect;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "createEntityFieldStore", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _createEntityFieldStore.createEntityFieldStore;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _createEntityFieldStore = require("./createEntityFieldStore.js");
|
|
19
|
+
var _createControllerEffect = require("./createControllerEffect.js");
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_createEntityFieldStore","require","_createControllerEffect"],"sourceRoot":"../../../../src","sources":["lib/effector/index.ts"],"mappings":";;;;;;;;;;;;;;;;;AAAA,IAAAA,uBAAA,GAAAC,OAAA;AACA,IAAAC,uBAAA,GAAAD,OAAA","ignoreList":[]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.generateRandomId = void 0;
|
|
7
|
+
const generateRandomId = () => Date.now().toString(36) + Math.random().toString(36).substring(2);
|
|
8
|
+
exports.generateRandomId = generateRandomId;
|
|
9
|
+
//# sourceMappingURL=helpers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["generateRandomId","Date","now","toString","Math","random","substring","exports"],"sourceRoot":"../../../../src","sources":["lib/helpers/helpers.ts"],"mappings":";;;;;;AAAO,MAAMA,gBAAgB,GAAGA,CAAA,KAC9BC,IAAI,CAACC,GAAG,CAAC,CAAC,CAACC,QAAQ,CAAC,EAAE,CAAC,GAAGC,IAAI,CAACC,MAAM,CAAC,CAAC,CAACF,QAAQ,CAAC,EAAE,CAAC,CAACG,SAAS,CAAC,CAAC,CAAC;AAAAC,OAAA,CAAAP,gBAAA,GAAAA,gBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.useDebounce = void 0;
|
|
7
|
+
var _react = require("react");
|
|
8
|
+
const useDebounce = (value, delay) => {
|
|
9
|
+
const [debouncedValue, setDebouncedValue] = (0, _react.useState)(value);
|
|
10
|
+
(0, _react.useEffect)(() => {
|
|
11
|
+
const timer = setTimeout(() => {
|
|
12
|
+
setDebouncedValue(value);
|
|
13
|
+
}, delay || 300);
|
|
14
|
+
return () => {
|
|
15
|
+
clearTimeout(timer);
|
|
16
|
+
};
|
|
17
|
+
}, [value, delay]);
|
|
18
|
+
return debouncedValue;
|
|
19
|
+
};
|
|
20
|
+
exports.useDebounce = useDebounce;
|
|
21
|
+
//# sourceMappingURL=useDebounce.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","require","useDebounce","value","delay","debouncedValue","setDebouncedValue","useState","useEffect","timer","setTimeout","clearTimeout","exports"],"sourceRoot":"../../../../src","sources":["shared/hooks/useDebounce.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAEO,MAAMC,WAAW,GAAGA,CAAIC,KAAQ,EAAEC,KAAc,KAAQ;EAC3D,MAAM,CAACC,cAAc,EAAEC,iBAAiB,CAAC,GAAG,IAAAC,eAAQ,EAACJ,KAAK,CAAC;EAE3D,IAAAK,gBAAS,EAAC,MAAM;IACZ,MAAMC,KAAK,GAAGC,UAAU,CAAC,MAAM;MAC3BJ,iBAAiB,CAACH,KAAK,CAAC;IAC5B,CAAC,EAAEC,KAAK,IAAI,GAAG,CAAC;IAEhB,OAAO,MAAM;MACTO,YAAY,CAACF,KAAK,CAAC;IACvB,CAAC;EACL,CAAC,EAAE,CAACN,KAAK,EAAEC,KAAK,CAAC,CAAC;EAElB,OAAOC,cAAc;AACzB,CAAC;AAAAO,OAAA,CAAAV,WAAA,GAAAA,WAAA","ignoreList":[]}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.ArrowRightIcon = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
11
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
const ArrowRightIcon = ({
|
|
14
|
+
width = 16,
|
|
15
|
+
height = 16,
|
|
16
|
+
color = '#33334D'
|
|
17
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.default, {
|
|
18
|
+
width: width,
|
|
19
|
+
height: height,
|
|
20
|
+
viewBox: "0 0 16 16",
|
|
21
|
+
fill: "none",
|
|
22
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
clipRule: "evenodd",
|
|
25
|
+
d: "M8.91 12.53a.75.75 0 010-1.06l2.72-2.72H2.56a.75.75 0 110-1.5h9.07L8.91 4.53a.75.75 0 011.06-1.06l4 4a.75.75 0 010 1.06l-4 4a.75.75 0 01-1.06 0z",
|
|
26
|
+
fill: color
|
|
27
|
+
})
|
|
28
|
+
});
|
|
29
|
+
exports.ArrowRightIcon = ArrowRightIcon;
|
|
30
|
+
//# sourceMappingURL=ArrowRightIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_interopRequireWildcard","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","ArrowRightIcon","width","height","color","jsx","viewBox","fill","children","Path","fillRule","clipRule","d","exports"],"sourceRoot":"../../../../src","sources":["shared/icons/ArrowRightIcon.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAC,uBAAA,CAAAF,OAAA;AAA4C,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAI,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAH,wBAAAG,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAe,GAAA,CAAAlB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAAA,SAAAd,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAI,UAAA,GAAAJ,CAAA,KAAAK,OAAA,EAAAL,CAAA;AAGrC,MAAMmB,cAAc,GAAGA,CAAC;EAAEC,KAAK,GAAG,EAAE;EAAEC,MAAM,GAAG,EAAE;EAAEC,KAAK,GAAG;AAAqB,CAAC,kBACtF,IAAAxB,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAAS,OAAG;EAACe,KAAK,EAAEA,KAAM;EAACC,MAAM,EAAEA,MAAO;EAACG,OAAO,EAAC,WAAW;EAACC,IAAI,EAAC,MAAM;EAAAC,QAAA,eAChE,IAAA5B,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAA+B,IAAI;IACHC,QAAQ,EAAC,SAAS;IAClBC,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,kJAAkJ;IACpJL,IAAI,EAAEH;EAAM,CACb;AAAC,CACC,CACN;AAAAS,OAAA,CAAAZ,cAAA,GAAAA,cAAA","ignoreList":[]}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.ChatbotIcon = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
11
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
const ChatbotIcon = ({
|
|
14
|
+
width = 60,
|
|
15
|
+
height = 60
|
|
16
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.default, {
|
|
17
|
+
width: width,
|
|
18
|
+
height: height,
|
|
19
|
+
viewBox: "0 0 60 60",
|
|
20
|
+
fill: "none",
|
|
21
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.Mask, {
|
|
22
|
+
id: "a",
|
|
23
|
+
maskUnits: "userSpaceOnUse",
|
|
24
|
+
x: 0,
|
|
25
|
+
y: 0,
|
|
26
|
+
width: 60,
|
|
27
|
+
height: 60,
|
|
28
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Rect, {
|
|
29
|
+
x: "0",
|
|
30
|
+
y: "0",
|
|
31
|
+
width: "60",
|
|
32
|
+
height: "60",
|
|
33
|
+
fill: "white"
|
|
34
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Rect, {
|
|
35
|
+
x: "10",
|
|
36
|
+
y: "10",
|
|
37
|
+
width: "40",
|
|
38
|
+
height: "40",
|
|
39
|
+
fill: "black"
|
|
40
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
41
|
+
d: "M60 0H0v60h60V0z",
|
|
42
|
+
fill: "#ffffff"
|
|
43
|
+
})]
|
|
44
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
45
|
+
mask: "url(#a)",
|
|
46
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
47
|
+
d: "M53.869 8.767v14.384M6.448 8.767v14.384",
|
|
48
|
+
stroke: "#A83900",
|
|
49
|
+
strokeWidth: 1.0538,
|
|
50
|
+
strokeLinecap: "round"
|
|
51
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
52
|
+
d: "M1.705 25.206c1.897-3.92 6.06-3.53 7.904-2.845L5.025 33.426c-1.897-1.107-5.216-4.3-3.32-8.22z",
|
|
53
|
+
fill: "#FF7819"
|
|
54
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
55
|
+
d: "M58.295 25.206c-1.897-3.92-6.06-3.53-7.904-2.845l4.584 11.065c1.897-1.107 5.216-4.3 3.32-8.22z",
|
|
56
|
+
fill: "#FF275E"
|
|
57
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
58
|
+
d: "M5.025 44.594v-9.168c.474-6.112 3.952-18.673 25.133-18.81 21.182-.138 25.186 12.593 25.291 18.81v9.168c0 6.111-4.954 11.065-11.064 11.065H16.09c-6.111 0-11.065-4.954-11.065-11.065z",
|
|
59
|
+
fill: "#A83900"
|
|
60
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
61
|
+
d: "M5.025 42.594v-9.168c.474-6.112 3.952-18.673 25.133-18.81 21.182-.138 25.186 12.593 25.291 18.81v9.168c0 6.111-4.954 11.065-11.064 11.065H16.09c-6.111 0-11.065-4.954-11.065-11.065z",
|
|
62
|
+
fill: "url(#paint0_linear_722_2)"
|
|
63
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Mask, {
|
|
64
|
+
id: "b",
|
|
65
|
+
maskUnits: "userSpaceOnUse",
|
|
66
|
+
x: "10",
|
|
67
|
+
y: "22",
|
|
68
|
+
width: "40",
|
|
69
|
+
height: "26",
|
|
70
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
71
|
+
d: "M42.356 47.81H18.118c-4.001 0-7.244-3.244-7.244-7.244v-7.298c0-6.639 5.674-11.223 11.855-11.223 2.96 0 5.071 1.202 6.287 2.092.703.515 1.597.53 2.302.02 1.86-1.348 3.617-2.112 6.902-2.112 6.006 0 11.38 5.532 11.38 11.223v7.298c0 4-3.243 7.244-7.244 7.244z",
|
|
72
|
+
fill: "white"
|
|
73
|
+
})
|
|
74
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Rect, {
|
|
75
|
+
x: "0",
|
|
76
|
+
y: "0",
|
|
77
|
+
width: "60",
|
|
78
|
+
height: "60",
|
|
79
|
+
fill: "#ffffff",
|
|
80
|
+
mask: "url(#b)"
|
|
81
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
82
|
+
mask: "url(#b)",
|
|
83
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
84
|
+
d: "M52.566 52.989L15.97 16.393c-.597-.598-.174-1.62.67-1.62h36.596c.524 0 .949.425.949.95v36.595c0 .845-1.022 1.268-1.62.67z",
|
|
85
|
+
fill: "#ffffff",
|
|
86
|
+
fillOpacity: 0.1
|
|
87
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.G, {
|
|
88
|
+
filter: "url(#filter0_d_722_2)",
|
|
89
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
90
|
+
d: "M42.356 47.81H18.118c-4.001 0-7.244-3.244-7.244-7.244v-7.298c0-6.639 5.674-11.223 11.855-11.223 2.96 0 5.071 1.202 6.287 2.092.703.515 1.597.53 2.302.02 1.86-1.348 3.617-2.112 6.902-2.112 6.006 0 11.38 5.532 11.38 11.223v7.298c0 4-3.243 7.244-7.244 7.244z",
|
|
91
|
+
fill: "#F2F2F4"
|
|
92
|
+
})
|
|
93
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
94
|
+
d: "M42.357 47.544h-24.24a6.978 6.978 0 01-6.977-6.978v-7.298c0-6.466 5.528-10.956 11.589-10.956 2.883 0 4.94 1.17 6.13 2.04.793.581 1.813.602 2.615.021.917-.664 1.797-1.176 2.845-1.524 1.049-.349 2.28-.537 3.9-.537 2.922 0 5.702 1.346 7.755 3.399 2.054 2.054 3.36 4.795 3.36 7.557v7.298a6.978 6.978 0 01-6.977 6.978z",
|
|
95
|
+
stroke: "#811200",
|
|
96
|
+
strokeWidth: 0.355555
|
|
97
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
98
|
+
opacity: 0.33,
|
|
99
|
+
d: "M16.248 34.66c-.294-2.838-1.239-5.452-2.775-7.616-.445.65-1.4 2.215-1.667 3.282a12.456 12.456 0 00-.333 2.666v7.334c0 .666-.1 2.542 1.333 4.333 1.333 1.667 3 2.333 3.442 2.333V34.66zM25.972 34.982v12.344h9.56V34.91c-.133-3.61-1.922-7.251-4.726-9.893 0 0-.37.309-.667.309-.333 0-.666-.334-1.333-.667-2.333-1.666-4-2-6.333-2-1.067 0-2.607.295-3.243.443 3.132 2.174 5.912 6.727 6.742 11.88zM44.94 34.965c0 1.312.15 5.606.153 11.727.682-.344 2.18-1.3 2.713-2.366.666-1.334 1-2.334 1-3.334v-8.666c-.111-1.334-.933-4.534-3.334-6.667-3-2.667-5.333-3.136-8-3.068 3.49 1.794 6.829 6.264 7.469 12.373z",
|
|
100
|
+
fill: "#ffffff"
|
|
101
|
+
})]
|
|
102
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
103
|
+
d: "M6.448 9.4a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
|
|
104
|
+
fill: "#FD7E14"
|
|
105
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
106
|
+
d: "M53.868 9.4a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
|
|
107
|
+
fill: "#FF275E"
|
|
108
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
109
|
+
d: "M26.364 40.065c.747 1.71 2.087 2.621 3.952 2.687 1.969.07 3.48-.882 4.268-2.687",
|
|
110
|
+
stroke: "#FD7E14",
|
|
111
|
+
strokeWidth: 1.68609,
|
|
112
|
+
strokeLinecap: "round"
|
|
113
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
114
|
+
d: "M20.832 37.694a2.53 2.53 0 100-5.058 2.53 2.53 0 000 5.058z",
|
|
115
|
+
fill: "#FD7E14",
|
|
116
|
+
stroke: "#FD7E14",
|
|
117
|
+
strokeWidth: 0.210761
|
|
118
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
119
|
+
d: "M19.4 33.494l-.505.55a.729.729 0 101.081.977l.497-.559a.723.723 0 00-1.073-.968z",
|
|
120
|
+
fill: "#ffffff"
|
|
121
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
122
|
+
d: "M40.117 37.694a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
|
|
123
|
+
fill: "#FD7E14",
|
|
124
|
+
stroke: "#FD7E14",
|
|
125
|
+
strokeWidth: 0.210761
|
|
126
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
127
|
+
d: "M38.842 33.494l-.505.55a.728.728 0 101.082.977l.496-.559a.723.723 0 00-1.073-.968z",
|
|
128
|
+
fill: "#ffffff"
|
|
129
|
+
})]
|
|
130
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Defs, {
|
|
131
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
132
|
+
id: "paint0_linear_722_2",
|
|
133
|
+
x1: 5.0249,
|
|
134
|
+
y1: 36.0572,
|
|
135
|
+
x2: 55.4494,
|
|
136
|
+
y2: 36.0572,
|
|
137
|
+
gradientUnits: "userSpaceOnUse",
|
|
138
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
139
|
+
stopColor: "#FF245F"
|
|
140
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
141
|
+
offset: 1,
|
|
142
|
+
stopColor: "#FF7917"
|
|
143
|
+
})]
|
|
144
|
+
})
|
|
145
|
+
})]
|
|
146
|
+
});
|
|
147
|
+
exports.ChatbotIcon = ChatbotIcon;
|
|
148
|
+
//# sourceMappingURL=ChatbotIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_interopRequireWildcard","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","ChatbotIcon","width","height","jsxs","viewBox","fill","children","Mask","id","maskUnits","x","y","jsx","Rect","Path","d","G","mask","stroke","strokeWidth","strokeLinecap","fillOpacity","filter","opacity","Defs","LinearGradient","x1","y1","x2","y2","gradientUnits","Stop","stopColor","offset","exports"],"sourceRoot":"../../../../src","sources":["shared/icons/ChatbotIcon.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.CloseIcon = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
11
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
const CloseIcon = ({
|
|
14
|
+
width = 22,
|
|
15
|
+
height = 22,
|
|
16
|
+
color = '#4D4D63'
|
|
17
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.default, {
|
|
18
|
+
width: width,
|
|
19
|
+
height: height,
|
|
20
|
+
viewBox: "0 0 22 23",
|
|
21
|
+
fill: "none",
|
|
22
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
23
|
+
d: "M2.384 1.116A1.25 1.25 0 10.616 2.884L9.232 11.5.616 20.116a1.25 1.25 0 001.768 1.768L11 13.268l8.616 8.616a1.25 1.25 0 001.768-1.768L12.768 11.5l8.616-8.616a1.25 1.25 0 00-1.768-1.768L11 9.732 2.384 1.116z",
|
|
24
|
+
fill: color
|
|
25
|
+
})
|
|
26
|
+
});
|
|
27
|
+
exports.CloseIcon = CloseIcon;
|
|
28
|
+
//# sourceMappingURL=CloseIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_interopRequireWildcard","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","CloseIcon","width","height","color","jsx","viewBox","fill","children","Path","d","exports"],"sourceRoot":"../../../../src","sources":["shared/icons/CloseIcon.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAC,uBAAA,CAAAF,OAAA;AAA4C,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAI,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAH,wBAAAG,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAe,GAAA,CAAAlB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAAA,SAAAd,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAI,UAAA,GAAAJ,CAAA,KAAAK,OAAA,EAAAL,CAAA;AAGrC,MAAMmB,SAAS,GAAGA,CAAC;EAAEC,KAAK,GAAG,EAAE;EAAEC,MAAM,GAAG,EAAE;EAAEC,KAAK,GAAG;AAAqB,CAAC,kBACjF,IAAAxB,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAAS,OAAG;EAACe,KAAK,EAAEA,KAAM;EAACC,MAAM,EAAEA,MAAO;EAACG,OAAO,EAAC,WAAW;EAACC,IAAI,EAAC,MAAM;EAAAC,QAAA,eAChE,IAAA5B,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAA+B,IAAI;IACHC,CAAC,EAAC,gNAAgN;IAClNH,IAAI,EAAEH;EAAM,CACb;AAAC,CACC,CACN;AAAAO,OAAA,CAAAV,SAAA,GAAAA,SAAA","ignoreList":[]}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.GlobeIcon = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
11
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
const GlobeIcon = ({
|
|
14
|
+
width = 20,
|
|
15
|
+
height = 20,
|
|
16
|
+
color = '#4D4D63'
|
|
17
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.default, {
|
|
18
|
+
width: width,
|
|
19
|
+
height: height,
|
|
20
|
+
viewBox: "0 0 20 21",
|
|
21
|
+
fill: "none",
|
|
22
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
clipRule: "evenodd",
|
|
25
|
+
d: "M4.397 4.365a8.312 8.312 0 003.4 14.148l-.405-2.503-2.298-1.213a1.26 1.26 0 01-.672-1.114v-2.949c0-.442.231-.851.61-1.08l2.23-1.344a1.26 1.26 0 01.651-.181h2.653V6.006H9.348l-.352.557a1.26 1.26 0 01-1.065.587H5.677a1.26 1.26 0 01-1.26-1.244l-.02-1.54zM7.903.72C3.387 1.684 0 5.696 0 10.5c0 5.523 4.477 10 10 10s10-4.477 10-10c0-.997-.146-1.959-.417-2.867a1.333 1.333 0 00-.03-.126c-.184-.654-.528-1.444-1.04-2.255a10.052 10.052 0 00-1.985-2.327 9.681 9.681 0 00-5.808-2.4A10.145 10.145 0 009.966.5C9.2.5 8.512.585 7.903.72zm8.895 5.002c.358.509.66 1.06.899 1.644h-3.34a1.26 1.26 0 00-1.26 1.26v4.465l-.306 1.61-3.27 3.884-.494-3.057a1.26 1.26 0 00-.656-.914l-2.258-1.191v-2.445l1.92-1.158h2.965a1.26 1.26 0 001.26-1.26V5.575a1.26 1.26 0 00-1.26-1.26H9.11a1.26 1.26 0 00-1.066.586l-.352.558h-1.59l-.028-2.135c.38-.282 1.105-.707 2.176-.948a8.34 8.34 0 012.531-.148 8.272 8.272 0 014.565 1.912 8.832 8.832 0 011.451 1.582zm-5.109 12.915a8.311 8.311 0 006.495-9.58h-3.396v4.074c0 .079-.007.157-.022.235l-.334 1.762a1.26 1.26 0 01-.274.577l-2.469 2.932z",
|
|
26
|
+
fill: color
|
|
27
|
+
})
|
|
28
|
+
});
|
|
29
|
+
exports.GlobeIcon = GlobeIcon;
|
|
30
|
+
//# sourceMappingURL=GlobeIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_interopRequireWildcard","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","GlobeIcon","width","height","color","jsx","viewBox","fill","children","Path","fillRule","clipRule","d","exports"],"sourceRoot":"../../../../src","sources":["shared/icons/GlobeIcon.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAC,uBAAA,CAAAF,OAAA;AAA4C,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAI,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAH,wBAAAG,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAe,GAAA,CAAAlB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAAA,SAAAd,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAI,UAAA,GAAAJ,CAAA,KAAAK,OAAA,EAAAL,CAAA;AAGrC,MAAMmB,SAAS,GAAGA,CAAC;EAAEC,KAAK,GAAG,EAAE;EAAEC,MAAM,GAAG,EAAE;EAAEC,KAAK,GAAG;AAAqB,CAAC,kBACjF,IAAAxB,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAAS,OAAG;EAACe,KAAK,EAAEA,KAAM;EAACC,MAAM,EAAEA,MAAO;EAACG,OAAO,EAAC,WAAW;EAACC,IAAI,EAAC,MAAM;EAAAC,QAAA,eAChE,IAAA5B,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAA+B,IAAI;IACHC,QAAQ,EAAC,SAAS;IAClBC,QAAQ,EAAC,SAAS;IAClBC,CAAC,EAAC,2hCAA2hC;IAC7hCL,IAAI,EAAEH;EAAM,CACb;AAAC,CACC,CACN;AAAAS,OAAA,CAAAZ,SAAA,GAAAA,SAAA","ignoreList":[]}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.PauseIcon = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
11
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
const PauseIcon = ({
|
|
14
|
+
color = '#4D4D63',
|
|
15
|
+
height = 16,
|
|
16
|
+
width = 16
|
|
17
|
+
}) => {
|
|
18
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.default, {
|
|
19
|
+
width: width,
|
|
20
|
+
height: height,
|
|
21
|
+
viewBox: "0 0 16 16",
|
|
22
|
+
fill: "none",
|
|
23
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M1 2.476C1 1.661 1.66 1 2.476 1h2.762c.815 0 1.476.66 1.476 1.476v11.048c0 .815-.66 1.476-1.476 1.476H2.476C1.661 15 1 14.34 1 13.524V2.476zM9.286 2.476c0-.815.66-1.476 1.476-1.476h2.762C14.339 1 15 1.66 15 2.476v11.048c0 .815-.66 1.476-1.476 1.476h-2.762c-.815 0-1.476-.66-1.476-1.476V2.476z",
|
|
27
|
+
fill: color
|
|
28
|
+
})
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
exports.PauseIcon = PauseIcon;
|
|
32
|
+
//# sourceMappingURL=PauseIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_interopRequireWildcard","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","PauseIcon","color","height","width","jsx","viewBox","fill","children","Path","fillRule","clipRule","d","exports"],"sourceRoot":"../../../../src","sources":["shared/icons/PauseIcon.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAC,uBAAA,CAAAF,OAAA;AAA4C,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAI,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAH,wBAAAG,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAe,GAAA,CAAAlB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAAA,SAAAd,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAI,UAAA,GAAAJ,CAAA,KAAAK,OAAA,EAAAL,CAAA;AAGrC,MAAMmB,SAAS,GAAGA,CAAC;EAAEC,KAAK,GAAG,SAAS;EAAEC,MAAM,GAAG,EAAE;EAAEC,KAAK,GAAG;AAAc,CAAC,KAAK;EACtF,oBACE,IAAAxB,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAAS,OAAG;IAACiB,KAAK,EAAEA,KAAM;IAACD,MAAM,EAAEA,MAAO;IAACG,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAChE,IAAA5B,WAAA,CAAAyB,GAAA,EAAC3B,eAAA,CAAA+B,IAAI;MACHC,QAAQ,EAAC,SAAS;MAClBC,QAAQ,EAAC,SAAS;MAClBC,CAAC,EAAC,sSAAsS;MACxSL,IAAI,EAAEL;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC;AAAAW,OAAA,CAAAZ,SAAA,GAAAA,SAAA","ignoreList":[]}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.PlayIcon = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
11
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
const PlayIcon = ({
|
|
14
|
+
color = '#4D4D63',
|
|
15
|
+
height = 16,
|
|
16
|
+
width = 16
|
|
17
|
+
}) => {
|
|
18
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.default, {
|
|
19
|
+
width: width,
|
|
20
|
+
height: height,
|
|
21
|
+
viewBox: "0 0 16 16",
|
|
22
|
+
fill: "none",
|
|
23
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M1.5 2.806C1.5 1.438 2.945.568 4.131 1.22l9.439 5.195c1.24.682 1.24 2.486 0 3.168L4.13 14.78c-1.186.653-2.631-.217-2.631-1.585V2.806z",
|
|
27
|
+
fill: color
|
|
28
|
+
})
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
exports.PlayIcon = PlayIcon;
|
|
32
|
+
//# sourceMappingURL=PlayIcon.js.map
|