@magmamath/students-features 1.0.2 → 1.0.3-rc.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/dist/commonjs/features/chatbot/components/Chat/Chat.js +109 -81
- package/dist/commonjs/features/chatbot/components/Chat/Chat.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/Chat/ChatIcon.js +35 -0
- package/dist/commonjs/features/chatbot/components/Chat/ChatIcon.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/Chat/ChatInputBlock.js +40 -0
- package/dist/commonjs/features/chatbot/components/Chat/ChatInputBlock.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/Chat/CloseButton.js +38 -0
- package/dist/commonjs/features/chatbot/components/Chat/CloseButton.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/Chat/GradientFade.js +45 -0
- package/dist/commonjs/features/chatbot/components/Chat/GradientFade.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/Chat/MessageItem.js +70 -0
- package/dist/commonjs/features/chatbot/components/Chat/MessageItem.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js +35 -58
- package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatInput/ChatInput.js +4 -4
- package/dist/commonjs/features/chatbot/components/ChatInput/ChatInput.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatInput/FreeText/ChatTextInput.js +3 -3
- package/dist/commonjs/features/chatbot/components/ChatInput/FreeText/ChatTextInput.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatInput/FreeText/SendMessageButton.js +1 -1
- package/dist/commonjs/features/chatbot/components/ChatInput/RequestHintButton.js +1 -1
- package/dist/commonjs/features/chatbot/components/ChatInput/RequestHintButton.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/AnimatedMessage.js +41 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/AnimatedMessage.js.map +1 -0
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageButtonsBlock.js +8 -7
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageButtonsBlock.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageContent.js +13 -7
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageContent.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js +14 -34
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js +26 -19
- package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/SentMessage.js +8 -3
- package/dist/commonjs/features/chatbot/components/ChatMessage/SentMessage.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/Chatbot.js +22 -11
- package/dist/commonjs/features/chatbot/components/Chatbot.js.map +1 -1
- package/dist/commonjs/features/chatbot/constants.js +13 -1
- package/dist/commonjs/features/chatbot/constants.js.map +1 -1
- package/dist/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.js +1 -0
- package/dist/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.js.map +1 -1
- package/dist/commonjs/features/chatbot/helpers.js +5 -2
- package/dist/commonjs/features/chatbot/helpers.js.map +1 -1
- package/dist/commonjs/features/chatbot/hooks/useChatFade.js +19 -0
- package/dist/commonjs/features/chatbot/hooks/useChatFade.js.map +1 -0
- package/dist/commonjs/features/chatbot/hooks/useChatFade.native.js +96 -0
- package/dist/commonjs/features/chatbot/hooks/useChatFade.native.js.map +1 -0
- package/dist/commonjs/features/chatbot/hooks/useChatFade.web.js +50 -0
- package/dist/commonjs/features/chatbot/hooks/useChatFade.web.js.map +1 -0
- package/dist/commonjs/features/chatbot/hooks/useChatScroll.js +87 -0
- package/dist/commonjs/features/chatbot/hooks/useChatScroll.js.map +1 -0
- package/dist/commonjs/features/chatbot/model/ChatBotModel.js +35 -6
- package/dist/commonjs/features/chatbot/model/ChatBotModel.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js +23 -3
- package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/ChatBoxTextManager.js +3 -2
- package/dist/commonjs/features/chatbot/model/ChatBoxTextManager.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/ChatbotTranslation.js +1 -1
- package/dist/commonjs/features/chatbot/model/ChatbotTranslation.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/ChatsCacheModel.js +9 -0
- package/dist/commonjs/features/chatbot/model/ChatsCacheModel.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/ThreadItem.js +52 -13
- package/dist/commonjs/features/chatbot/model/ThreadItem.js.map +1 -1
- package/dist/commonjs/features/chatbot/types/chat.types.js +13 -0
- package/dist/commonjs/features/chatbot/types/chat.types.js.map +1 -0
- package/dist/commonjs/features/chatbot/types/model.types.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +4 -6
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js +1 -1
- package/dist/commonjs/features/keyboard/components/BasicLayout/BasicLayout.js +8 -7
- package/dist/commonjs/features/keyboard/components/BasicLayout/BasicLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/BasicLayout/CurrencyBasicLayout.js +6 -4
- package/dist/commonjs/features/keyboard/components/BasicLayout/CurrencyBasicLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/BasicLayout/TimeBasicLayout.js +6 -4
- package/dist/commonjs/features/keyboard/components/BasicLayout/TimeBasicLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js +7 -7
- package/dist/commonjs/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.js +5 -5
- package/dist/commonjs/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/Keyboard.js +4 -0
- package/dist/commonjs/features/keyboard/components/Keyboard.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/KeysList/KeysList.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/MainLayout/MainLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/Numpad/Numpad.js +2 -1
- package/dist/commonjs/features/keyboard/components/Numpad/Numpad.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js +8 -7
- package/dist/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitTabs.js +3 -6
- package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitTabs.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.js +5 -6
- package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/UnitsLayout/helpers.js +32 -25
- package/dist/commonjs/features/keyboard/components/UnitsLayout/helpers.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/UnitsLayout/types.js.map +1 -1
- package/dist/commonjs/features/keyboard/constants/groups/algebra.constants.js +11 -0
- package/dist/commonjs/features/keyboard/constants/groups/algebra.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/basic.constants.js +16 -0
- package/dist/commonjs/features/keyboard/constants/groups/basic.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/basicPlus.constants.js +22 -0
- package/dist/commonjs/features/keyboard/constants/groups/basicPlus.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/basicPlusPlus.constants.js +22 -0
- package/dist/commonjs/features/keyboard/constants/groups/basicPlusPlus.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/currency.constants.js +22 -0
- package/dist/commonjs/features/keyboard/constants/groups/currency.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/index.js +105 -0
- package/dist/commonjs/features/keyboard/constants/groups/index.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/numpad.constants.js +96 -0
- package/dist/commonjs/features/keyboard/constants/groups/numpad.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/time.constants.js +17 -0
- package/dist/commonjs/features/keyboard/constants/groups/time.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/underlined.constants.js +11 -0
- package/dist/commonjs/features/keyboard/constants/groups/underlined.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/units.constants.js +48 -0
- package/dist/commonjs/features/keyboard/constants/groups/units.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keyboard.constants.js +55 -0
- package/dist/commonjs/features/keyboard/constants/keyboard.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keyboard.helpers.js +88 -0
- package/dist/commonjs/features/keyboard/constants/keyboard.helpers.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js +3 -3
- package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js.map +1 -1
- package/dist/commonjs/features/keyboard/constants/keys/basic.constants.js +386 -0
- package/dist/commonjs/features/keyboard/constants/keys/basic.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/calculus.constants.js +50 -0
- package/dist/commonjs/features/keyboard/constants/keys/calculus.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/geometry.constants.js +63 -0
- package/dist/commonjs/features/keyboard/constants/keys/geometry.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/index.js +94 -0
- package/dist/commonjs/features/keyboard/constants/keys/index.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/special.constants.js +89 -0
- package/dist/commonjs/features/keyboard/constants/keys/special.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/symbols.constants.js +141 -0
- package/dist/commonjs/features/keyboard/constants/keys/symbols.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/text.constants.js +67 -0
- package/dist/commonjs/features/keyboard/constants/keys/text.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/trigonometric.constants.js +149 -0
- package/dist/commonjs/features/keyboard/constants/keys/trigonometric.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/keys/units.constants.js +480 -0
- package/dist/commonjs/features/keyboard/constants/keys/units.constants.js.map +1 -0
- package/dist/commonjs/features/keyboard/helpers.js +9 -8
- package/dist/commonjs/features/keyboard/helpers.js.map +1 -1
- package/dist/commonjs/features/keyboard/index.js +35 -3
- package/dist/commonjs/features/keyboard/index.js.map +1 -1
- package/dist/commonjs/features/keyboard/types/types.js +9 -1
- package/dist/commonjs/features/keyboard/types/types.js.map +1 -1
- package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdown.js +9 -9
- package/dist/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdown.js.map +1 -1
- package/dist/commonjs/index.js +0 -7
- package/dist/commonjs/index.js.map +1 -1
- package/dist/commonjs/shared/icons/IntegralABIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/AbsoluteValueIcon.js +43 -0
- package/dist/commonjs/shared/icons/keyboard/AbsoluteValueIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/AdditionIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/AlphaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/AngleIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ApproximatelyEqualIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/BackspaceIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/BetaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/CDotIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/CentIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ColonIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/CommaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/CongruentIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/CubePowerIcon.js +38 -0
- package/dist/commonjs/shared/icons/keyboard/CubePowerIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/CubeRootIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DecimalPointIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DefiniteIntegralIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DegreeIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DeltaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DerivativeIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DivisionIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DollarIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DotIcon.js +31 -0
- package/dist/commonjs/shared/icons/keyboard/DotIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/DoubleIntegralIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ElementOfIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/EmptyIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/EpsilonIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/EqualsIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/EtaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/EuroIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/FractionIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/GammaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/GreaterThanIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/GreaterThanOrEqualIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ImageIcon.js +36 -0
- package/dist/commonjs/shared/icons/keyboard/ImageIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/InfinityIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/IntegralABIcon.js +38 -0
- package/dist/commonjs/shared/icons/keyboard/IntegralABIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/IntegralIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/IntersectionIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/IntervalIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/KroneIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/LambdaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/LeftDirectedSegmentIcon.js +33 -0
- package/dist/commonjs/shared/icons/keyboard/LeftDirectedSegmentIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/LessThanIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/LessThanOrEqualIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/LineSegmentIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/MuIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/MultiplicationIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/NotElementOfIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/NotEqualIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/NthPowerIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/NthRootIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/OmegaLowercaseIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/OmegaUppercaseIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/OrderedPairIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ParallelIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ParenthesesIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PerMilleIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PercentIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PerpendicularIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PesoIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PhiIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PiIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PlusMinusIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/PoundIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/RhoIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.js +33 -0
- package/dist/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/RoundBracketLeftIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/RoundBracketRightIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/SigmaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/SigmaSumIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/SlashIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/SquarePowerIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/SquareRootIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/SubsetIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/SubtractionIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ThetaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/TildeIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/UnderlinedOneIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/UnderlinedTenIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/UnderlinedUIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/UnionIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/XIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/YIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/YenIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/ZIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/keyboard/icon.types.js +2 -0
- package/dist/commonjs/shared/icons/keyboard/icon.types.js.map +1 -0
- package/dist/commonjs/shared/translation/constants.js +7 -7
- package/dist/commonjs/shared/translation/constants.js.map +1 -1
- package/dist/commonjs/shared/translation/index.js +0 -7
- package/dist/commonjs/shared/translation/index.js.map +1 -1
- package/dist/commonjs/shared/translation/localization/ca.json +2 -1
- package/dist/commonjs/shared/translation/localization/de.json +2 -1
- package/dist/commonjs/shared/translation/localization/en.json +2 -1
- package/dist/commonjs/shared/translation/localization/gb.json +2 -1
- package/dist/commonjs/shared/translation/localization/sct.json +2 -1
- package/dist/commonjs/shared/translation/localization/sw.json +2 -1
- package/dist/commonjs/shared/translation/model.js +2 -2
- package/dist/commonjs/shared/translation/model.js.map +1 -1
- package/dist/commonjs/shared/translation/types.js +0 -10
- package/dist/commonjs/shared/translation/types.js.map +1 -1
- package/dist/module/features/chatbot/components/Chat/Chat.js +111 -83
- package/dist/module/features/chatbot/components/Chat/Chat.js.map +1 -1
- package/dist/module/features/chatbot/components/Chat/ChatIcon.js +29 -0
- package/dist/module/features/chatbot/components/Chat/ChatIcon.js.map +1 -0
- package/dist/module/features/chatbot/components/Chat/ChatInputBlock.js +34 -0
- package/dist/module/features/chatbot/components/Chat/ChatInputBlock.js.map +1 -0
- package/dist/module/features/chatbot/components/Chat/CloseButton.js +32 -0
- package/dist/module/features/chatbot/components/Chat/CloseButton.js.map +1 -0
- package/dist/module/features/chatbot/components/Chat/GradientFade.js +40 -0
- package/dist/module/features/chatbot/components/Chat/GradientFade.js.map +1 -0
- package/dist/module/features/chatbot/components/Chat/MessageItem.js +64 -0
- package/dist/module/features/chatbot/components/Chat/MessageItem.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatControls/ChatControls.js +37 -58
- package/dist/module/features/chatbot/components/ChatControls/ChatControls.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatInput/ChatInput.js +4 -4
- package/dist/module/features/chatbot/components/ChatInput/ChatInput.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatInput/FreeText/ChatTextInput.js +4 -4
- package/dist/module/features/chatbot/components/ChatInput/FreeText/ChatTextInput.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatInput/FreeText/SendMessageButton.js +1 -1
- package/dist/module/features/chatbot/components/ChatInput/RequestHintButton.js +2 -2
- package/dist/module/features/chatbot/components/ChatInput/RequestHintButton.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/AnimatedMessage.js +34 -0
- package/dist/module/features/chatbot/components/ChatMessage/AnimatedMessage.js.map +1 -0
- package/dist/module/features/chatbot/components/ChatMessage/MessageButtonsBlock.js +9 -8
- package/dist/module/features/chatbot/components/ChatMessage/MessageButtonsBlock.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/MessageContent.js +13 -7
- package/dist/module/features/chatbot/components/ChatMessage/MessageContent.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js +17 -36
- package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js +26 -19
- package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/SentMessage.js +10 -4
- package/dist/module/features/chatbot/components/ChatMessage/SentMessage.js.map +1 -1
- package/dist/module/features/chatbot/components/Chatbot.js +22 -11
- package/dist/module/features/chatbot/components/Chatbot.js.map +1 -1
- package/dist/module/features/chatbot/constants.js +13 -1
- package/dist/module/features/chatbot/constants.js.map +1 -1
- package/dist/module/features/chatbot/errorSpotting/ErrorSpottingModel.js +1 -0
- package/dist/module/features/chatbot/errorSpotting/ErrorSpottingModel.js.map +1 -1
- package/dist/module/features/chatbot/helpers.js +5 -2
- package/dist/module/features/chatbot/helpers.js.map +1 -1
- package/dist/module/features/chatbot/hooks/useChatFade.js +4 -0
- package/dist/module/features/chatbot/hooks/useChatFade.js.map +1 -0
- package/dist/module/features/chatbot/hooks/useChatFade.native.js +88 -0
- package/dist/module/features/chatbot/hooks/useChatFade.native.js.map +1 -0
- package/dist/module/features/chatbot/hooks/useChatFade.web.js +44 -0
- package/dist/module/features/chatbot/hooks/useChatFade.web.js.map +1 -0
- package/dist/module/features/chatbot/hooks/useChatScroll.js +82 -0
- package/dist/module/features/chatbot/hooks/useChatScroll.js.map +1 -0
- package/dist/module/features/chatbot/model/ChatBotModel.js +35 -6
- package/dist/module/features/chatbot/model/ChatBotModel.js.map +1 -1
- package/dist/module/features/chatbot/model/ChatBotThreadManager.js +23 -3
- package/dist/module/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
- package/dist/module/features/chatbot/model/ChatBoxTextManager.js +3 -2
- package/dist/module/features/chatbot/model/ChatBoxTextManager.js.map +1 -1
- package/dist/module/features/chatbot/model/ChatbotTranslation.js +1 -1
- package/dist/module/features/chatbot/model/ChatbotTranslation.js.map +1 -1
- package/dist/module/features/chatbot/model/ChatsCacheModel.js +9 -0
- package/dist/module/features/chatbot/model/ChatsCacheModel.js.map +1 -1
- package/dist/module/features/chatbot/model/ThreadItem.js +52 -13
- package/dist/module/features/chatbot/model/ThreadItem.js.map +1 -1
- package/dist/module/features/chatbot/types/chat.types.js +9 -0
- package/dist/module/features/chatbot/types/chat.types.js.map +1 -0
- package/dist/module/features/chatbot/types/model.types.js.map +1 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +5 -7
- package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js +1 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js.map +1 -1
- package/dist/module/features/keyboard/components/BasicLayout/BasicLayout.js +8 -7
- package/dist/module/features/keyboard/components/BasicLayout/BasicLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/BasicLayout/CurrencyBasicLayout.js +7 -5
- package/dist/module/features/keyboard/components/BasicLayout/CurrencyBasicLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/BasicLayout/TimeBasicLayout.js +7 -5
- package/dist/module/features/keyboard/components/BasicLayout/TimeBasicLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js +7 -7
- package/dist/module/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.js +6 -6
- package/dist/module/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/Keyboard.js +4 -0
- package/dist/module/features/keyboard/components/Keyboard.js.map +1 -1
- package/dist/module/features/keyboard/components/KeysList/KeysList.js +1 -2
- package/dist/module/features/keyboard/components/KeysList/KeysList.js.map +1 -1
- package/dist/module/features/keyboard/components/MainLayout/MainLayout.js +1 -1
- package/dist/module/features/keyboard/components/MainLayout/MainLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/Numpad/Numpad.js +3 -2
- package/dist/module/features/keyboard/components/Numpad/Numpad.js.map +1 -1
- package/dist/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js +9 -8
- package/dist/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/UnitsLayout/UnitTabs.js +4 -7
- package/dist/module/features/keyboard/components/UnitsLayout/UnitTabs.js.map +1 -1
- package/dist/module/features/keyboard/components/UnitsLayout/UnitsLayout.js +6 -8
- package/dist/module/features/keyboard/components/UnitsLayout/UnitsLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/UnitsLayout/helpers.js +33 -26
- package/dist/module/features/keyboard/components/UnitsLayout/helpers.js.map +1 -1
- package/dist/module/features/keyboard/components/UnitsLayout/types.js.map +1 -1
- package/dist/module/features/keyboard/constants/groups/algebra.constants.js +7 -0
- package/dist/module/features/keyboard/constants/groups/algebra.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/basic.constants.js +12 -0
- package/dist/module/features/keyboard/constants/groups/basic.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/basicPlus.constants.js +18 -0
- package/dist/module/features/keyboard/constants/groups/basicPlus.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/basicPlusPlus.constants.js +18 -0
- package/dist/module/features/keyboard/constants/groups/basicPlusPlus.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/currency.constants.js +18 -0
- package/dist/module/features/keyboard/constants/groups/currency.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/index.js +12 -0
- package/dist/module/features/keyboard/constants/groups/index.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/numpad.constants.js +92 -0
- package/dist/module/features/keyboard/constants/groups/numpad.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/time.constants.js +13 -0
- package/dist/module/features/keyboard/constants/groups/time.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/underlined.constants.js +7 -0
- package/dist/module/features/keyboard/constants/groups/underlined.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/units.constants.js +44 -0
- package/dist/module/features/keyboard/constants/groups/units.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keyboard.constants.js +51 -0
- package/dist/module/features/keyboard/constants/keyboard.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keyboard.helpers.js +83 -0
- package/dist/module/features/keyboard/constants/keyboard.helpers.js.map +1 -0
- package/dist/module/features/keyboard/constants/keyboardLayouts.js +2 -2
- package/dist/module/features/keyboard/constants/keyboardLayouts.js.map +1 -1
- package/dist/module/features/keyboard/constants/keys/basic.constants.js +381 -0
- package/dist/module/features/keyboard/constants/keys/basic.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/calculus.constants.js +45 -0
- package/dist/module/features/keyboard/constants/keys/calculus.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/geometry.constants.js +58 -0
- package/dist/module/features/keyboard/constants/keys/geometry.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/index.js +11 -0
- package/dist/module/features/keyboard/constants/keys/index.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/special.constants.js +84 -0
- package/dist/module/features/keyboard/constants/keys/special.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/symbols.constants.js +136 -0
- package/dist/module/features/keyboard/constants/keys/symbols.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/text.constants.js +62 -0
- package/dist/module/features/keyboard/constants/keys/text.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/trigonometric.constants.js +145 -0
- package/dist/module/features/keyboard/constants/keys/trigonometric.constants.js.map +1 -0
- package/dist/module/features/keyboard/constants/keys/units.constants.js +475 -0
- package/dist/module/features/keyboard/constants/keys/units.constants.js.map +1 -0
- package/dist/module/features/keyboard/helpers.js +6 -5
- package/dist/module/features/keyboard/helpers.js.map +1 -1
- package/dist/module/features/keyboard/index.js +4 -1
- package/dist/module/features/keyboard/index.js.map +1 -1
- package/dist/module/features/keyboard/types/types.js +8 -0
- package/dist/module/features/keyboard/types/types.js.map +1 -1
- package/dist/module/features/voice/playing/components/VoiceTranscriptionsDropdown.js +9 -9
- package/dist/module/features/voice/playing/components/VoiceTranscriptionsDropdown.js.map +1 -1
- package/dist/module/index.js +1 -1
- package/dist/module/index.js.map +1 -1
- package/dist/module/shared/icons/IntegralABIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/AbsoluteValueIcon.js +35 -0
- package/dist/module/shared/icons/keyboard/AbsoluteValueIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/AdditionIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/AlphaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/AngleIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ApproximatelyEqualIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/BackspaceIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/BetaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/BidirectionalSegmentIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/CDotIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/CentIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ColonIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/CommaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/CongruentIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/CubePowerIcon.js +30 -0
- package/dist/module/shared/icons/keyboard/CubePowerIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/CubeRootIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DecimalPointIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DefiniteIntegralIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DegreeIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DeltaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DerivativeIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DivisionIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DollarIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DotIcon.js +23 -0
- package/dist/module/shared/icons/keyboard/DotIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/DoubleIntegralIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ElementOfIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/EmptyIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/EpsilonIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/EqualsIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/EtaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/EuroIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/FractionIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/GammaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/GreaterThanIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/GreaterThanOrEqualIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ImageIcon.js +28 -0
- package/dist/module/shared/icons/keyboard/ImageIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/InfinityIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/IntegralABIcon.js +30 -0
- package/dist/module/shared/icons/keyboard/IntegralABIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/IntegralIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/IntersectionIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/IntervalIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/KroneIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/LambdaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/LeftDirectedSegmentIcon.js +25 -0
- package/dist/module/shared/icons/keyboard/LeftDirectedSegmentIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/LessThanIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/LessThanOrEqualIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/LineSegmentIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/MuIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/MultiplicationIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/NotElementOfIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/NotEqualIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/NthPowerIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/NthRootIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/OmegaLowercaseIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/OmegaUppercaseIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/OrderedPairIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ParallelIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ParenthesesIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PerMilleIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PercentIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PerpendicularIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PesoIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PhiIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PiIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PlusMinusIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/PoundIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/RhoIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/RightDirectedSegmentIcon.js +25 -0
- package/dist/module/shared/icons/keyboard/RightDirectedSegmentIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/RoundBracketLeftIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/RoundBracketRightIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/SigmaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/SigmaSumIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/SlashIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/SquarePowerIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/SquareRootIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/SubsetIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/SubtractionIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ThetaIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/TildeIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/UnderlinedOneIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/UnderlinedTenIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/UnderlinedUIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/UnionIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/XIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/YIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/YenIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/ZIcon.js.map +1 -0
- package/dist/module/shared/icons/keyboard/icon.types.js +2 -0
- package/dist/module/shared/icons/keyboard/icon.types.js.map +1 -0
- package/dist/module/shared/translation/constants.js +3 -3
- package/dist/module/shared/translation/constants.js.map +1 -1
- package/dist/module/shared/translation/index.js +0 -1
- package/dist/module/shared/translation/index.js.map +1 -1
- package/dist/module/shared/translation/localization/ca.json +2 -1
- package/dist/module/shared/translation/localization/de.json +2 -1
- package/dist/module/shared/translation/localization/en.json +2 -1
- package/dist/module/shared/translation/localization/gb.json +2 -1
- package/dist/module/shared/translation/localization/sct.json +2 -1
- package/dist/module/shared/translation/localization/sw.json +2 -1
- package/dist/module/shared/translation/model.js +2 -2
- package/dist/module/shared/translation/model.js.map +1 -1
- package/dist/module/shared/translation/types.js +1 -11
- package/dist/module/shared/translation/types.js.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/Chat/Chat.d.ts +3 -1
- package/dist/typescript/commonjs/features/chatbot/components/Chat/Chat.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/Chat/ChatIcon.d.ts +7 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/ChatIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/ChatInputBlock.d.ts +12 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/ChatInputBlock.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/CloseButton.d.ts +7 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/CloseButton.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/GradientFade.d.ts +10 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/GradientFade.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/MessageItem.d.ts +17 -0
- package/dist/typescript/commonjs/features/chatbot/components/Chat/MessageItem.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts +3 -3
- package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatInput/FreeText/ChatTextInput.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/AnimatedMessage.d.ts +7 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/AnimatedMessage.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/ChatMessage.d.ts +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/ChatMessage.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageButtonsBlock.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageContent.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageLoader.d.ts +2 -3
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageLoader.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/SentMessage.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts +3 -1
- package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/constants.d.ts +8 -0
- package/dist/typescript/commonjs/features/chatbot/constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts +2 -1
- package/dist/typescript/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/helpers.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatFade.d.ts +2 -0
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatFade.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatFade.native.d.ts +10 -0
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatFade.native.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatFade.web.d.ts +12 -0
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatFade.web.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatScroll.d.ts +31 -0
- package/dist/typescript/commonjs/features/chatbot/hooks/useChatScroll.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/ChatBotModel.d.ts +2 -1
- package/dist/typescript/commonjs/features/chatbot/model/ChatBotModel.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/ChatBoxTextManager.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/ChatsCacheModel.d.ts +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/ChatsCacheModel.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/ThreadItem.d.ts +49 -12
- package/dist/typescript/commonjs/features/chatbot/model/ThreadItem.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts +20 -2
- package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/chat.types.d.ts +16 -0
- package/dist/typescript/commonjs/features/chatbot/types/chat.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts +11 -3
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts +23 -0
- package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/BasicLayout.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/BasicLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/CurrencyBasicLayout.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/CurrencyBasicLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/TimeBasicLayout.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/TimeBasicLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/Keyboard.d.ts +3 -1
- package/dist/typescript/commonjs/features/keyboard/components/Keyboard.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/KeysList/KeysList.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/KeysList/KeysList.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/MainLayout/MainLayout.d.ts +2 -1
- package/dist/typescript/commonjs/features/keyboard/components/MainLayout/MainLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/Numpad/Numpad.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/Numpad/Numpad.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts +3 -2
- package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitTabs.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitTabs.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/helpers.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/types.d.ts +0 -4
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/constants/groups/algebra.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/algebra.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/basic.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/basic.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/basicPlus.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/basicPlus.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/basicPlusPlus.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/basicPlusPlus.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/currency.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/currency.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/index.d.ts +10 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/numpad.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/numpad.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/time.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/time.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/underlined.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/underlined.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/units.constants.d.ts +7 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/units.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keyboard.constants.d.ts +60 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keyboard.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keyboard.helpers.d.ts +4 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keyboard.helpers.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts +8 -8
- package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/constants/keys/basic.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/basic.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/calculus.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/calculus.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/geometry.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/geometry.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/index.d.ts +9 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/special.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/special.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/symbols.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/symbols.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/text.constants.d.ts +3 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/text.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/trigonometric.constants.d.ts +4 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/trigonometric.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/units.constants.d.ts +359 -0
- package/dist/typescript/commonjs/features/keyboard/constants/keys/units.constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/helpers.d.ts +3 -3
- package/dist/typescript/commonjs/features/keyboard/helpers.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/index.d.ts +4 -1
- package/dist/typescript/commonjs/features/keyboard/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/types/types.d.ts +34 -21
- package/dist/typescript/commonjs/features/keyboard/types/types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/playing/components/VoiceTranscriptionsDropdown.d.ts.map +1 -1
- package/dist/typescript/commonjs/index.d.ts +1 -1
- package/dist/typescript/commonjs/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/IntegralABIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/IntegralABIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AbsoluteValueIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AbsoluteValueIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AdditionIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AdditionIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AlphaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AlphaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AngleIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/AngleIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ApproximatelyEqualIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ApproximatelyEqualIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/BackspaceIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/BackspaceIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/BetaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/BetaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CDotIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CDotIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CentIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CentIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ColonIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ColonIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CommaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CommaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CongruentIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CongruentIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CubePowerIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CubePowerIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CubeRootIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/CubeRootIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DecimalPointIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DecimalPointIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DefiniteIntegralIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DefiniteIntegralIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DegreeIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DegreeIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DeltaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DeltaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DerivativeIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DerivativeIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DivisionIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DivisionIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DollarIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DollarIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DotIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DotIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DoubleIntegralIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/DoubleIntegralIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ElementOfIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ElementOfIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EmptyIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EmptyIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EpsilonIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EpsilonIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EqualsIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EqualsIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EtaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EtaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EuroIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/EuroIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/FractionIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/FractionIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/GammaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/GammaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanOrEqualIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanOrEqualIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ImageIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ImageIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/InfinityIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/InfinityIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralABIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralABIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntersectionIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntersectionIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntervalIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/IntervalIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/KroneIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/KroneIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LambdaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LambdaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LeftDirectedSegmentIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LeftDirectedSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanOrEqualIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanOrEqualIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LineSegmentIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/LineSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/MuIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/MuIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/MultiplicationIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/MultiplicationIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NotElementOfIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NotElementOfIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NotEqualIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NotEqualIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NthPowerIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NthPowerIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NthRootIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/NthRootIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaLowercaseIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaLowercaseIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaUppercaseIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaUppercaseIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/OrderedPairIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/OrderedPairIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ParallelIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ParallelIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ParenthesesIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ParenthesesIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PerMilleIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PerMilleIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PercentIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PercentIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PerpendicularIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PerpendicularIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PesoIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PesoIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PhiIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PhiIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PiIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PiIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PlusMinusIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PlusMinusIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PoundIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/PoundIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RhoIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RhoIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketLeftIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketLeftIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketRightIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketRightIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaSumIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaSumIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SlashIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SlashIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SquarePowerIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SquarePowerIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SquareRootIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SquareRootIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SubsetIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SubsetIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SubtractionIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/SubtractionIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ThetaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ThetaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/TildeIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/TildeIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnionIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/UnionIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/XIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/XIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/YIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/YIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/YenIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/YenIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ZIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/ZIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/icon.types.d.ts +6 -0
- package/dist/typescript/commonjs/shared/icons/keyboard/icon.types.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/constants.d.ts +12 -6
- package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/translation/index.d.ts +0 -1
- package/dist/typescript/commonjs/shared/translation/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/translation/model.d.ts +4 -2
- package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/translation/types.d.ts +0 -8
- package/dist/typescript/commonjs/shared/translation/types.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/Chat/Chat.d.ts +3 -1
- package/dist/typescript/module/features/chatbot/components/Chat/Chat.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/Chat/ChatIcon.d.ts +7 -0
- package/dist/typescript/module/features/chatbot/components/Chat/ChatIcon.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/Chat/ChatInputBlock.d.ts +12 -0
- package/dist/typescript/module/features/chatbot/components/Chat/ChatInputBlock.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/Chat/CloseButton.d.ts +7 -0
- package/dist/typescript/module/features/chatbot/components/Chat/CloseButton.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/Chat/GradientFade.d.ts +10 -0
- package/dist/typescript/module/features/chatbot/components/Chat/GradientFade.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/Chat/MessageItem.d.ts +17 -0
- package/dist/typescript/module/features/chatbot/components/Chat/MessageItem.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts +3 -3
- package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatInput/FreeText/ChatTextInput.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/AnimatedMessage.d.ts +7 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/AnimatedMessage.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/components/ChatMessage/ChatMessage.d.ts +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/ChatMessage.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageButtonsBlock.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageContent.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageLoader.d.ts +2 -3
- package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageLoader.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/ReceivedMessage.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessage/SentMessage.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts +3 -1
- package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/constants.d.ts +8 -0
- package/dist/typescript/module/features/chatbot/constants.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts +2 -1
- package/dist/typescript/module/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/helpers.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/hooks/useChatFade.d.ts +2 -0
- package/dist/typescript/module/features/chatbot/hooks/useChatFade.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/hooks/useChatFade.native.d.ts +10 -0
- package/dist/typescript/module/features/chatbot/hooks/useChatFade.native.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/hooks/useChatFade.web.d.ts +12 -0
- package/dist/typescript/module/features/chatbot/hooks/useChatFade.web.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/hooks/useChatScroll.d.ts +31 -0
- package/dist/typescript/module/features/chatbot/hooks/useChatScroll.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/model/ChatBotModel.d.ts +2 -1
- package/dist/typescript/module/features/chatbot/model/ChatBotModel.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/ChatBoxTextManager.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/ChatsCacheModel.d.ts +1 -0
- package/dist/typescript/module/features/chatbot/model/ChatsCacheModel.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/ThreadItem.d.ts +49 -12
- package/dist/typescript/module/features/chatbot/model/ThreadItem.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/api.types.d.ts +20 -2
- package/dist/typescript/module/features/chatbot/types/api.types.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/chat.types.d.ts +16 -0
- package/dist/typescript/module/features/chatbot/types/chat.types.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts +11 -3
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/units.types.d.ts +23 -0
- package/dist/typescript/module/features/chatbot/types/units.types.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicLayout/BasicLayout.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicLayout/BasicLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicLayout/CurrencyBasicLayout.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicLayout/CurrencyBasicLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicLayout/TimeBasicLayout.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicLayout/TimeBasicLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/Keyboard.d.ts +3 -1
- package/dist/typescript/module/features/keyboard/components/Keyboard.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/KeysList/KeysList.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/KeysList/KeysList.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/MainLayout/MainLayout.d.ts +2 -1
- package/dist/typescript/module/features/keyboard/components/MainLayout/MainLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/Numpad/Numpad.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/Numpad/Numpad.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts +3 -2
- package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitTabs.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitTabs.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts +1 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/helpers.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/types.d.ts +0 -4
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/types.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/constants/groups/algebra.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/algebra.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/basic.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/basic.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/basicPlus.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/basicPlus.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/basicPlusPlus.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/basicPlusPlus.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/currency.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/currency.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/index.d.ts +10 -0
- package/dist/typescript/module/features/keyboard/constants/groups/index.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/numpad.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/numpad.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/time.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/time.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/underlined.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/groups/underlined.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/units.constants.d.ts +7 -0
- package/dist/typescript/module/features/keyboard/constants/groups/units.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keyboard.constants.d.ts +60 -0
- package/dist/typescript/module/features/keyboard/constants/keyboard.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keyboard.helpers.d.ts +4 -0
- package/dist/typescript/module/features/keyboard/constants/keyboard.helpers.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts +8 -8
- package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/constants/keys/basic.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/keys/basic.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/calculus.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/keys/calculus.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/geometry.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/keys/geometry.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/index.d.ts +9 -0
- package/dist/typescript/module/features/keyboard/constants/keys/index.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/special.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/keys/special.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/symbols.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/keys/symbols.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/text.constants.d.ts +3 -0
- package/dist/typescript/module/features/keyboard/constants/keys/text.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/trigonometric.constants.d.ts +4 -0
- package/dist/typescript/module/features/keyboard/constants/keys/trigonometric.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/keys/units.constants.d.ts +359 -0
- package/dist/typescript/module/features/keyboard/constants/keys/units.constants.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/helpers.d.ts +3 -3
- package/dist/typescript/module/features/keyboard/helpers.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/index.d.ts +4 -1
- package/dist/typescript/module/features/keyboard/index.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/types/types.d.ts +34 -21
- package/dist/typescript/module/features/keyboard/types/types.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/playing/components/VoiceTranscriptionsDropdown.d.ts.map +1 -1
- package/dist/typescript/module/index.d.ts +1 -1
- package/dist/typescript/module/index.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/IntegralABIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/IntegralABIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/AbsoluteValueIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/AbsoluteValueIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/AdditionIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/AdditionIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/AlphaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/AlphaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/AngleIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/AngleIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ApproximatelyEqualIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ApproximatelyEqualIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/BackspaceIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/BackspaceIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/BetaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/BetaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/CDotIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/CDotIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/CentIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/CentIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ColonIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ColonIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/CommaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/CommaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/CongruentIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/CongruentIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/CubePowerIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/CubePowerIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/CubeRootIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/CubeRootIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DecimalPointIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DecimalPointIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DefiniteIntegralIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DefiniteIntegralIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DegreeIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DegreeIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DeltaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DeltaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DerivativeIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DerivativeIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DivisionIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DivisionIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DollarIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DollarIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DotIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DotIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/DoubleIntegralIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/DoubleIntegralIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ElementOfIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ElementOfIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/EmptyIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/EmptyIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/EpsilonIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/EpsilonIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/EqualsIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/EqualsIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/EtaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/EtaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/EuroIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/EuroIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/FractionIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/FractionIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/GammaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/GammaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanOrEqualIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanOrEqualIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ImageIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ImageIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/InfinityIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/InfinityIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/IntegralABIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/IntegralABIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/IntegralIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/IntegralIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/IntersectionIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/IntersectionIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/IntervalIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/IntervalIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/KroneIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/KroneIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/LambdaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/LambdaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/LeftDirectedSegmentIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/LeftDirectedSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/LessThanIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/LessThanIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/LessThanOrEqualIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/LessThanOrEqualIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/LineSegmentIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/LineSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/MuIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/MuIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/MultiplicationIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/MultiplicationIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/NotElementOfIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/NotElementOfIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/NotEqualIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/NotEqualIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/NthPowerIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/NthPowerIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/NthRootIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/NthRootIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/OmegaLowercaseIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/OmegaLowercaseIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/OmegaUppercaseIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/OmegaUppercaseIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/OrderedPairIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/OrderedPairIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ParallelIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ParallelIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ParenthesesIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ParenthesesIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PerMilleIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PerMilleIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PercentIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PercentIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PerpendicularIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PerpendicularIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PesoIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PesoIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PhiIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PhiIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PiIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PiIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PlusMinusIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PlusMinusIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/PoundIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/PoundIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/RhoIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/RhoIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/RightDirectedSegmentIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/RightDirectedSegmentIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketLeftIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketLeftIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketRightIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketRightIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/SigmaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/SigmaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/SigmaSumIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/SigmaSumIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/SlashIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/SlashIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/SquarePowerIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/SquarePowerIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/SquareRootIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/SquareRootIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/SubsetIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/SubsetIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/SubtractionIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/SubtractionIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ThetaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ThetaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/TildeIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/TildeIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/UnionIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/UnionIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/XIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/XIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/YIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/YIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/YenIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/YenIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/ZIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/keyboard/ZIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/keyboard/icon.types.d.ts +6 -0
- package/dist/typescript/module/shared/icons/keyboard/icon.types.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/constants.d.ts +12 -6
- package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
- package/dist/typescript/module/shared/translation/index.d.ts +0 -1
- package/dist/typescript/module/shared/translation/index.d.ts.map +1 -1
- package/dist/typescript/module/shared/translation/model.d.ts +4 -2
- package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
- package/dist/typescript/module/shared/translation/types.d.ts +0 -8
- package/dist/typescript/module/shared/translation/types.d.ts.map +1 -1
- package/package.json +9 -3
- package/src/features/chatbot/components/Chat/Chat.tsx +128 -94
- package/src/features/chatbot/components/Chat/ChatIcon.tsx +29 -0
- package/src/features/chatbot/components/Chat/ChatInputBlock.tsx +44 -0
- package/src/features/chatbot/components/Chat/CloseButton.tsx +30 -0
- package/src/features/chatbot/components/Chat/GradientFade.tsx +44 -0
- package/src/features/chatbot/components/Chat/MessageItem.tsx +79 -0
- package/src/features/chatbot/components/ChatControls/ChatControls.tsx +34 -65
- package/src/features/chatbot/components/ChatInput/ChatInput.tsx +4 -4
- package/src/features/chatbot/components/ChatInput/FreeText/ChatTextInput.tsx +5 -4
- package/src/features/chatbot/components/ChatInput/FreeText/SendMessageButton.tsx +1 -1
- package/src/features/chatbot/components/ChatInput/RequestHintButton.tsx +2 -2
- package/src/features/chatbot/components/ChatMessage/AnimatedMessage.tsx +30 -0
- package/src/features/chatbot/components/ChatMessage/ChatMessage.tsx +1 -1
- package/src/features/chatbot/components/ChatMessage/MessageButtonsBlock.tsx +6 -9
- package/src/features/chatbot/components/ChatMessage/MessageContent.tsx +14 -11
- package/src/features/chatbot/components/ChatMessage/MessageLoader.tsx +17 -33
- package/src/features/chatbot/components/ChatMessage/ReceivedMessage.tsx +18 -21
- package/src/features/chatbot/components/ChatMessage/SentMessage.tsx +5 -3
- package/src/features/chatbot/components/Chatbot.tsx +24 -11
- package/src/features/chatbot/constants.ts +10 -1
- package/src/features/chatbot/errorSpotting/ErrorSpottingModel.ts +3 -1
- package/src/features/chatbot/helpers.ts +3 -2
- package/src/features/chatbot/hooks/useChatFade.native.tsx +75 -0
- package/src/features/chatbot/hooks/useChatFade.ts +1 -0
- package/src/features/chatbot/hooks/useChatFade.web.ts +45 -0
- package/src/features/chatbot/hooks/useChatScroll.ts +102 -0
- package/src/features/chatbot/model/ChatBotModel.ts +42 -7
- package/src/features/chatbot/model/ChatBotThreadManager.ts +24 -3
- package/src/features/chatbot/model/ChatBoxTextManager.ts +2 -1
- package/src/features/chatbot/model/ChatbotTranslation.ts +1 -1
- package/src/features/chatbot/model/ChatsCacheModel.ts +7 -0
- package/src/features/chatbot/model/ThreadItem.ts +70 -19
- package/src/features/chatbot/types/api.types.ts +23 -2
- package/src/features/chatbot/types/chat.types.ts +19 -0
- package/src/features/chatbot/types/model.types.ts +18 -3
- package/src/features/chatbot/types/units.types.ts +27 -0
- package/src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx +6 -9
- package/src/features/keyboard/components/AlgebraLayout/helpers.tsx +1 -1
- package/src/features/keyboard/components/BasicLayout/BasicLayout.tsx +6 -7
- package/src/features/keyboard/components/BasicLayout/CurrencyBasicLayout.tsx +4 -6
- package/src/features/keyboard/components/BasicLayout/TimeBasicLayout.tsx +4 -6
- package/src/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.tsx +6 -8
- package/src/features/keyboard/components/BasicPlusPlusLayout/BasicPlusPlusLayout.tsx +6 -7
- package/src/features/keyboard/components/Keyboard.tsx +7 -2
- package/src/features/keyboard/components/KeysList/KeysList.tsx +2 -2
- package/src/features/keyboard/components/MainLayout/MainLayout.tsx +4 -3
- package/src/features/keyboard/components/Numpad/Numpad.tsx +4 -4
- package/src/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.tsx +9 -8
- package/src/features/keyboard/components/UnitsLayout/UnitTabs.tsx +5 -13
- package/src/features/keyboard/components/UnitsLayout/UnitsLayout.tsx +14 -10
- package/src/features/keyboard/components/UnitsLayout/helpers.tsx +40 -32
- package/src/features/keyboard/components/UnitsLayout/types.ts +0 -5
- package/src/features/keyboard/constants/groups/algebra.constants.ts +33 -0
- package/src/features/keyboard/constants/groups/basic.constants.ts +25 -0
- package/src/features/keyboard/constants/groups/basicPlus.constants.ts +91 -0
- package/src/features/keyboard/constants/groups/basicPlusPlus.constants.ts +120 -0
- package/src/features/keyboard/constants/groups/currency.constants.ts +17 -0
- package/src/features/keyboard/constants/groups/index.ts +9 -0
- package/src/features/keyboard/constants/groups/numpad.constants.ts +37 -0
- package/src/features/keyboard/constants/groups/time.constants.ts +19 -0
- package/src/features/keyboard/constants/groups/underlined.constants.ts +11 -0
- package/src/features/keyboard/constants/groups/units.constants.ts +157 -0
- package/src/features/keyboard/constants/keyboard.constants.ts +36 -0
- package/src/features/keyboard/constants/keyboard.helpers.ts +117 -0
- package/src/features/keyboard/constants/keyboardLayouts.ts +2 -2
- package/src/features/keyboard/constants/keys/basic.constants.tsx +281 -0
- package/src/features/keyboard/constants/keys/calculus.constants.tsx +33 -0
- package/src/features/keyboard/constants/keys/geometry.constants.tsx +48 -0
- package/src/features/keyboard/constants/keys/index.ts +8 -0
- package/src/features/keyboard/constants/keys/special.constants.tsx +73 -0
- package/src/features/keyboard/constants/keys/symbols.constants.tsx +102 -0
- package/src/features/keyboard/constants/keys/text.constants.tsx +54 -0
- package/src/features/keyboard/constants/keys/trigonometric.constants.ts +145 -0
- package/src/features/keyboard/constants/keys/units.constants.tsx +464 -0
- package/src/features/keyboard/helpers.ts +7 -6
- package/src/features/keyboard/index.ts +4 -1
- package/src/features/keyboard/types/types.ts +41 -23
- package/src/features/voice/playing/components/VoiceTranscriptionsDropdown.tsx +6 -5
- package/src/index.ts +1 -1
- package/src/shared/icons/IntegralABIcon.tsx +26 -0
- package/src/shared/icons/keyboard/AbsoluteValueIcon.tsx +23 -0
- package/src/shared/icons/keyboard/AdditionIcon.tsx +14 -0
- package/src/shared/icons/keyboard/AlphaIcon.tsx +16 -0
- package/src/shared/icons/keyboard/AngleIcon.tsx +14 -0
- package/src/shared/icons/keyboard/ApproximatelyEqualIcon.tsx +22 -0
- package/src/shared/icons/keyboard/BackspaceIcon.tsx +30 -0
- package/src/shared/icons/keyboard/BetaIcon.tsx +16 -0
- package/src/shared/icons/keyboard/BidirectionalSegmentIcon.tsx +20 -0
- package/src/shared/icons/keyboard/CDotIcon.tsx +11 -0
- package/src/shared/icons/keyboard/CentIcon.tsx +14 -0
- package/src/shared/icons/keyboard/ColonIcon.tsx +12 -0
- package/src/shared/icons/keyboard/CommaIcon.tsx +16 -0
- package/src/shared/icons/keyboard/CongruentIcon.tsx +28 -0
- package/src/shared/icons/keyboard/CubePowerIcon.tsx +17 -0
- package/src/shared/icons/keyboard/CubeRootIcon.tsx +20 -0
- package/src/shared/icons/keyboard/DecimalPointIcon.tsx +13 -0
- package/src/shared/icons/keyboard/DefiniteIntegralIcon.tsx +34 -0
- package/src/shared/icons/keyboard/DegreeIcon.tsx +11 -0
- package/src/shared/icons/keyboard/DeltaIcon.tsx +16 -0
- package/src/shared/icons/keyboard/DerivativeIcon.tsx +32 -0
- package/src/shared/icons/keyboard/DivisionIcon.tsx +18 -0
- package/src/shared/icons/keyboard/DollarIcon.tsx +16 -0
- package/src/shared/icons/keyboard/DotIcon.tsx +11 -0
- package/src/shared/icons/keyboard/DoubleIntegralIcon.tsx +22 -0
- package/src/shared/icons/keyboard/ElementOfIcon.tsx +14 -0
- package/src/shared/icons/keyboard/EmptyIcon.tsx +18 -0
- package/src/shared/icons/keyboard/EpsilonIcon.tsx +16 -0
- package/src/shared/icons/keyboard/EqualsIcon.tsx +22 -0
- package/src/shared/icons/keyboard/EtaIcon.tsx +18 -0
- package/src/shared/icons/keyboard/EuroIcon.tsx +14 -0
- package/src/shared/icons/keyboard/FractionIcon.tsx +20 -0
- package/src/shared/icons/keyboard/GammaIcon.tsx +18 -0
- package/src/shared/icons/keyboard/GreaterThanIcon.tsx +16 -0
- package/src/shared/icons/keyboard/GreaterThanOrEqualIcon.tsx +22 -0
- package/src/shared/icons/keyboard/ImageIcon.tsx +22 -0
- package/src/shared/icons/keyboard/InfinityIcon.tsx +16 -0
- package/src/shared/icons/keyboard/IntegralABIcon.tsx +26 -0
- package/src/shared/icons/keyboard/IntegralIcon.tsx +16 -0
- package/src/shared/icons/keyboard/IntersectionIcon.tsx +14 -0
- package/src/shared/icons/keyboard/IntervalIcon.tsx +14 -0
- package/src/shared/icons/keyboard/KroneIcon.tsx +18 -0
- package/src/shared/icons/keyboard/LambdaIcon.tsx +16 -0
- package/src/shared/icons/keyboard/LeftDirectedSegmentIcon.tsx +20 -0
- package/src/shared/icons/keyboard/LessThanIcon.tsx +16 -0
- package/src/shared/icons/keyboard/LessThanOrEqualIcon.tsx +22 -0
- package/src/shared/icons/keyboard/LineSegmentIcon.tsx +18 -0
- package/src/shared/icons/keyboard/MuIcon.tsx +16 -0
- package/src/shared/icons/keyboard/MultiplicationIcon.tsx +14 -0
- package/src/shared/icons/keyboard/NotElementOfIcon.tsx +16 -0
- package/src/shared/icons/keyboard/NotEqualIcon.tsx +28 -0
- package/src/shared/icons/keyboard/NthPowerIcon.tsx +20 -0
- package/src/shared/icons/keyboard/NthRootIcon.tsx +27 -0
- package/src/shared/icons/keyboard/OmegaLowercaseIcon.tsx +16 -0
- package/src/shared/icons/keyboard/OmegaUppercaseIcon.tsx +16 -0
- package/src/shared/icons/keyboard/OrderedPairIcon.tsx +30 -0
- package/src/shared/icons/keyboard/ParallelIcon.tsx +22 -0
- package/src/shared/icons/keyboard/ParenthesesIcon.tsx +22 -0
- package/src/shared/icons/keyboard/PerMilleIcon.tsx +36 -0
- package/src/shared/icons/keyboard/PercentIcon.tsx +28 -0
- package/src/shared/icons/keyboard/PerpendicularIcon.tsx +20 -0
- package/src/shared/icons/keyboard/PesoIcon.tsx +16 -0
- package/src/shared/icons/keyboard/PhiIcon.tsx +16 -0
- package/src/shared/icons/keyboard/PiIcon.tsx +19 -0
- package/src/shared/icons/keyboard/PlusMinusIcon.tsx +20 -0
- package/src/shared/icons/keyboard/PoundIcon.tsx +14 -0
- package/src/shared/icons/keyboard/RhoIcon.tsx +18 -0
- package/src/shared/icons/keyboard/RightDirectedSegmentIcon.tsx +20 -0
- package/src/shared/icons/keyboard/RoundBracketLeftIcon.tsx +18 -0
- package/src/shared/icons/keyboard/RoundBracketRightIcon.tsx +18 -0
- package/src/shared/icons/keyboard/SigmaIcon.tsx +16 -0
- package/src/shared/icons/keyboard/SigmaSumIcon.tsx +16 -0
- package/src/shared/icons/keyboard/SlashIcon.tsx +16 -0
- package/src/shared/icons/keyboard/SquarePowerIcon.tsx +17 -0
- package/src/shared/icons/keyboard/SquareRootIcon.tsx +16 -0
- package/src/shared/icons/keyboard/SubsetIcon.tsx +16 -0
- package/src/shared/icons/keyboard/SubtractionIcon.tsx +16 -0
- package/src/shared/icons/keyboard/ThetaIcon.tsx +16 -0
- package/src/shared/icons/keyboard/TildeIcon.tsx +18 -0
- package/src/shared/icons/keyboard/UnderlinedOneIcon.tsx +17 -0
- package/src/shared/icons/keyboard/UnderlinedTenIcon.tsx +20 -0
- package/src/shared/icons/keyboard/UnderlinedUIcon.tsx +20 -0
- package/src/shared/icons/keyboard/UnionIcon.tsx +14 -0
- package/src/shared/icons/keyboard/XIcon.tsx +14 -0
- package/src/shared/icons/keyboard/YIcon.tsx +15 -0
- package/src/shared/icons/keyboard/YenIcon.tsx +14 -0
- package/src/shared/icons/keyboard/ZIcon.tsx +14 -0
- package/src/shared/icons/keyboard/icon.types.ts +5 -0
- package/src/shared/translation/constants.ts +3 -3
- package/src/shared/translation/index.ts +0 -1
- package/src/shared/translation/localization/ca.json +2 -1
- package/src/shared/translation/localization/de.json +2 -1
- package/src/shared/translation/localization/en.json +2 -1
- package/src/shared/translation/localization/gb.json +2 -1
- package/src/shared/translation/localization/sct.json +2 -1
- package/src/shared/translation/localization/sw.json +2 -1
- package/src/shared/translation/model.ts +3 -2
- package/src/shared/translation/types.ts +1 -10
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/keyboardGroups.js +0 -16
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/keyboardGroups.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.js +0 -44
- package/dist/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/BasicPlusLayout/keyboardGroups.js +0 -26
- package/dist/commonjs/features/keyboard/components/BasicPlusLayout/keyboardGroups.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js +0 -28
- package/dist/commonjs/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/Numpad/keyboardGroups.js +0 -98
- package/dist/commonjs/features/keyboard/components/Numpad/keyboardGroups.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.js +0 -14
- package/dist/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.js +0 -75
- package/dist/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.js.map +0 -1
- package/dist/commonjs/features/keyboard/constants/constants.js +0 -13
- package/dist/commonjs/features/keyboard/constants/constants.js.map +0 -1
- package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js +0 -116
- package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js +0 -387
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/calculusOperators.js +0 -51
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/calculusOperators.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/geometry.js +0 -64
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/geometry.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/helpers.js +0 -10
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/helpers.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/index.js +0 -83
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/index.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/specialOperators.js +0 -90
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/specialOperators.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/symbols.js +0 -142
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/symbols.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/textSymbols.js +0 -68
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/textSymbols.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/trigonometric.js +0 -150
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/trigonometric.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/units.js +0 -524
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/units.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/index.js +0 -28
- package/dist/commonjs/features/keyboard/types/index.js.map +0 -1
- package/dist/commonjs/features/keyboard/types/keyboardGroupIds.js +0 -40
- package/dist/commonjs/features/keyboard/types/keyboardGroupIds.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.js +0 -43
- package/dist/commonjs/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/AdditionIcon/AdditionIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/AlphaIcon/AlphaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/AngleIcon/AngleIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ApproximatelyEqualIcon/ApproximatelyEqualIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/BackspaceIcon/BackspaceIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/BetaIcon/BetaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon/BidirectionalSegmentIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/CDotIcon/CDotIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/CentIcon/CentIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ColonIcon/ColonIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/CommaIcon/CommaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/CongruentIcon/CongruentIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/CubeRootIcon/CubeRootIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DecimalPointIcon/DecimalPointIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DefiniteIntegralIcon/DefiniteIntegralIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DegreeIcon/DegreeIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DeltaIcon/DeltaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DerivativeIcon/DerivativeIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DivisionIcon/DivisionIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DollarIcon/DollarIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/DoubleIntegralIcon/DoubleIntegralIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ElementOfIcon/ElementOfIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/EmptyIcon/EmptyIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/EpsilonIcon/EpsilonIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/EqualsIcon/EqualsIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/EtaIcon/EtaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/EuroIcon/EuroIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/FractionIcon/FractionIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/GammaIcon/GammaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/GreaterThanIcon/GreaterThanIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/InfinityIcon/InfinityIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/IntegralABIcon/IntegralABIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/IntegralIcon/IntegralIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/IntersectionIcon/IntersectionIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/IntervalIcon/IntervalIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/KroneIcon/KroneIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/LambdaIcon/LambdaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/LessThanIcon/LessThanIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/LessThanOrEqualIcon/LessThanOrEqualIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/LineSegmentIcon/LineSegmentIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/MuIcon/MuIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/MultiplicationIcon/MultiplicationIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/NotElementOfIcon/NotElementOfIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/NotEqualIcon/NotEqualIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/NthPowerIcon/NthPowerIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/NthRootIcon/NthRootIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/OmegaLowercaseIcon/OmegaLowercaseIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/OmegaUppercaseIcon/OmegaUppercaseIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/OrderedPairIcon/OrderedPairIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ParallelIcon/ParallelIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ParenthesesIcon/ParenthesesIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PerMilleIcon/PerMilleIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PercentIcon/PercentIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PerpendicularIcon/PerpendicularIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PesoIcon/PesoIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PhiIcon/PhiIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PiIcon/PiIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PlusMinusIcon/PlusMinusIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/PoundIcon/PoundIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/RhoIcon/RhoIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/RoundBracketLeftIcon/RoundBracketLeftIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/RoundBracketRightIcon/RoundBracketRightIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SigmaIcon/SigmaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SigmaSumIcon/SigmaSumIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SlashIcon/SlashIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SquarePowerIcon/SquarePowerIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.js +0 -38
- package/dist/commonjs/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SquareRootIcon/SquareRootIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SubsetIcon/SubsetIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/SubtractionIcon/SubtractionIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ThetaIcon/ThetaIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/TildeIcon/TildeIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/UnionIcon/UnionIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/XIcon/XIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/YIcon/YIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/YenIcon/YenIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ZIcon/ZIcon.js.map +0 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/keyboardGroups.js +0 -12
- package/dist/module/features/keyboard/components/AlgebraLayout/keyboardGroups.js.map +0 -1
- package/dist/module/features/keyboard/components/BasicLayout/keyboardGroups.js +0 -40
- package/dist/module/features/keyboard/components/BasicLayout/keyboardGroups.js.map +0 -1
- package/dist/module/features/keyboard/components/BasicPlusLayout/keyboardGroups.js +0 -22
- package/dist/module/features/keyboard/components/BasicPlusLayout/keyboardGroups.js.map +0 -1
- package/dist/module/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js +0 -24
- package/dist/module/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js.map +0 -1
- package/dist/module/features/keyboard/components/Numpad/keyboardGroups.js +0 -94
- package/dist/module/features/keyboard/components/Numpad/keyboardGroups.js.map +0 -1
- package/dist/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.js +0 -10
- package/dist/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.js.map +0 -1
- package/dist/module/features/keyboard/components/UnitsLayout/keyboardGroups.js +0 -71
- package/dist/module/features/keyboard/components/UnitsLayout/keyboardGroups.js.map +0 -1
- package/dist/module/features/keyboard/constants/constants.js +0 -9
- package/dist/module/features/keyboard/constants/constants.js.map +0 -1
- package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js +0 -112
- package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js +0 -382
- package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/calculusOperators.js +0 -46
- package/dist/module/features/keyboard/types/MathKeysGroups/calculusOperators.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/geometry.js +0 -59
- package/dist/module/features/keyboard/types/MathKeysGroups/geometry.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/helpers.js +0 -6
- package/dist/module/features/keyboard/types/MathKeysGroups/helpers.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/index.js +0 -10
- package/dist/module/features/keyboard/types/MathKeysGroups/index.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/specialOperators.js +0 -85
- package/dist/module/features/keyboard/types/MathKeysGroups/specialOperators.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/symbols.js +0 -137
- package/dist/module/features/keyboard/types/MathKeysGroups/symbols.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/textSymbols.js +0 -63
- package/dist/module/features/keyboard/types/MathKeysGroups/textSymbols.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/trigonometric.js +0 -146
- package/dist/module/features/keyboard/types/MathKeysGroups/trigonometric.js.map +0 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/units.js +0 -519
- package/dist/module/features/keyboard/types/MathKeysGroups/units.js.map +0 -1
- package/dist/module/features/keyboard/types/index.js +0 -5
- package/dist/module/features/keyboard/types/index.js.map +0 -1
- package/dist/module/features/keyboard/types/keyboardGroupIds.js +0 -36
- package/dist/module/features/keyboard/types/keyboardGroupIds.js.map +0 -1
- package/dist/module/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.js +0 -35
- package/dist/module/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/AdditionIcon/AdditionIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/AlphaIcon/AlphaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/AngleIcon/AngleIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ApproximatelyEqualIcon/ApproximatelyEqualIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/BackspaceIcon/BackspaceIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/BetaIcon/BetaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/BidirectionalSegmentIcon/BidirectionalSegmentIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/CDotIcon/CDotIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/CentIcon/CentIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ColonIcon/ColonIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/CommaIcon/CommaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/CongruentIcon/CongruentIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/CubeRootIcon/CubeRootIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DecimalPointIcon/DecimalPointIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DefiniteIntegralIcon/DefiniteIntegralIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DegreeIcon/DegreeIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DeltaIcon/DeltaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DerivativeIcon/DerivativeIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DivisionIcon/DivisionIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DollarIcon/DollarIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/DoubleIntegralIcon/DoubleIntegralIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ElementOfIcon/ElementOfIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/EmptyIcon/EmptyIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/EpsilonIcon/EpsilonIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/EqualsIcon/EqualsIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/EtaIcon/EtaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/EuroIcon/EuroIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/FractionIcon/FractionIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/GammaIcon/GammaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/GreaterThanIcon/GreaterThanIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/InfinityIcon/InfinityIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/IntegralABIcon/IntegralABIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/IntegralIcon/IntegralIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/IntersectionIcon/IntersectionIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/IntervalIcon/IntervalIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/KroneIcon/KroneIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/LambdaIcon/LambdaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/LessThanIcon/LessThanIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/LessThanOrEqualIcon/LessThanOrEqualIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/LineSegmentIcon/LineSegmentIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/MuIcon/MuIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/MultiplicationIcon/MultiplicationIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/NotElementOfIcon/NotElementOfIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/NotEqualIcon/NotEqualIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/NthPowerIcon/NthPowerIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/NthRootIcon/NthRootIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/OmegaLowercaseIcon/OmegaLowercaseIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/OmegaUppercaseIcon/OmegaUppercaseIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/OrderedPairIcon/OrderedPairIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ParallelIcon/ParallelIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ParenthesesIcon/ParenthesesIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PerMilleIcon/PerMilleIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PercentIcon/PercentIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PerpendicularIcon/PerpendicularIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PesoIcon/PesoIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PhiIcon/PhiIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PiIcon/PiIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PlusMinusIcon/PlusMinusIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/PoundIcon/PoundIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/RhoIcon/RhoIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/RoundBracketLeftIcon/RoundBracketLeftIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/RoundBracketRightIcon/RoundBracketRightIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SigmaIcon/SigmaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SigmaSumIcon/SigmaSumIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SlashIcon/SlashIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SquarePowerIcon/SquarePowerIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.js +0 -30
- package/dist/module/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SquareRootIcon/SquareRootIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SubsetIcon/SubsetIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/SubtractionIcon/SubtractionIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ThetaIcon/ThetaIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/TildeIcon/TildeIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/UnionIcon/UnionIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/XIcon/XIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/YIcon/YIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/YenIcon/YenIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ZIcon/ZIcon.js.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/keyboardGroups.d.ts +0 -3
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.d.ts +0 -10
- package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusLayout/keyboardGroups.d.ts +0 -6
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.d.ts +0 -6
- package/dist/typescript/commonjs/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/Numpad/keyboardGroups.d.ts +0 -4
- package/dist/typescript/commonjs/features/keyboard/components/Numpad/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts +0 -3
- package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts +0 -17
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/constants/constants.d.ts +0 -6
- package/dist/typescript/commonjs/features/keyboard/constants/constants.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/constants/keyboardGroupsByLocale.d.ts +0 -6
- package/dist/typescript/commonjs/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.d.ts +0 -236
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/calculusOperators.d.ts +0 -24
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/calculusOperators.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/geometry.d.ts +0 -41
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/geometry.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/helpers.d.ts +0 -3
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/helpers.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/index.d.ts +0 -8
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/index.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/specialOperators.d.ts +0 -67
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/specialOperators.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/symbols.d.ts +0 -84
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/symbols.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/textSymbols.d.ts +0 -49
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/textSymbols.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/trigonometric.d.ts +0 -143
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/trigonometric.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/units.d.ts +0 -1055
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/units.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/index.d.ts +0 -3
- package/dist/typescript/commonjs/features/keyboard/types/index.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/keyboardGroupIds.d.ts +0 -33
- package/dist/typescript/commonjs/features/keyboard/types/keyboardGroupIds.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/AdditionIcon/AdditionIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/AdditionIcon/AdditionIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/AlphaIcon/AlphaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/AlphaIcon/AlphaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/AngleIcon/AngleIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/AngleIcon/AngleIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ApproximatelyEqualIcon/ApproximatelyEqualIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ApproximatelyEqualIcon/ApproximatelyEqualIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/BackspaceIcon/BackspaceIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/BackspaceIcon/BackspaceIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/BetaIcon/BetaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/BetaIcon/BetaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon/BidirectionalSegmentIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon/BidirectionalSegmentIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/CDotIcon/CDotIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/CDotIcon/CDotIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/CentIcon/CentIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/CentIcon/CentIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ColonIcon/ColonIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ColonIcon/ColonIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/CommaIcon/CommaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/CommaIcon/CommaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/CongruentIcon/CongruentIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/CongruentIcon/CongruentIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/CubeRootIcon/CubeRootIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/CubeRootIcon/CubeRootIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DecimalPointIcon/DecimalPointIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DecimalPointIcon/DecimalPointIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DefiniteIntegralIcon/DefiniteIntegralIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DefiniteIntegralIcon/DefiniteIntegralIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DegreeIcon/DegreeIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DegreeIcon/DegreeIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DeltaIcon/DeltaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DeltaIcon/DeltaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DerivativeIcon/DerivativeIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DerivativeIcon/DerivativeIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DivisionIcon/DivisionIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DivisionIcon/DivisionIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DollarIcon/DollarIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DollarIcon/DollarIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/DoubleIntegralIcon/DoubleIntegralIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/DoubleIntegralIcon/DoubleIntegralIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ElementOfIcon/ElementOfIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ElementOfIcon/ElementOfIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/EmptyIcon/EmptyIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/EmptyIcon/EmptyIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/EpsilonIcon/EpsilonIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/EpsilonIcon/EpsilonIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/EqualsIcon/EqualsIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/EqualsIcon/EqualsIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/EtaIcon/EtaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/EtaIcon/EtaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/EuroIcon/EuroIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/EuroIcon/EuroIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/FractionIcon/FractionIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/FractionIcon/FractionIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/GammaIcon/GammaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/GammaIcon/GammaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanIcon/GreaterThanIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanIcon/GreaterThanIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/InfinityIcon/InfinityIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/InfinityIcon/InfinityIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralABIcon/IntegralABIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralABIcon/IntegralABIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralIcon/IntegralIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/IntegralIcon/IntegralIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/IntersectionIcon/IntersectionIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/IntersectionIcon/IntersectionIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/IntervalIcon/IntervalIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/IntervalIcon/IntervalIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/KroneIcon/KroneIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/KroneIcon/KroneIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LambdaIcon/LambdaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/LambdaIcon/LambdaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanIcon/LessThanIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanIcon/LessThanIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanOrEqualIcon/LessThanOrEqualIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/LessThanOrEqualIcon/LessThanOrEqualIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LineSegmentIcon/LineSegmentIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/LineSegmentIcon/LineSegmentIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/MuIcon/MuIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/MuIcon/MuIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/MultiplicationIcon/MultiplicationIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/MultiplicationIcon/MultiplicationIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/NotElementOfIcon/NotElementOfIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/NotElementOfIcon/NotElementOfIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/NotEqualIcon/NotEqualIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/NotEqualIcon/NotEqualIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/NthPowerIcon/NthPowerIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/NthPowerIcon/NthPowerIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/NthRootIcon/NthRootIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/NthRootIcon/NthRootIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaLowercaseIcon/OmegaLowercaseIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaLowercaseIcon/OmegaLowercaseIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaUppercaseIcon/OmegaUppercaseIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/OmegaUppercaseIcon/OmegaUppercaseIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/OrderedPairIcon/OrderedPairIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/OrderedPairIcon/OrderedPairIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ParallelIcon/ParallelIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ParallelIcon/ParallelIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ParenthesesIcon/ParenthesesIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ParenthesesIcon/ParenthesesIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PerMilleIcon/PerMilleIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PerMilleIcon/PerMilleIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PercentIcon/PercentIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PercentIcon/PercentIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PerpendicularIcon/PerpendicularIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PerpendicularIcon/PerpendicularIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PesoIcon/PesoIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PesoIcon/PesoIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PhiIcon/PhiIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PhiIcon/PhiIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PiIcon/PiIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PiIcon/PiIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PlusMinusIcon/PlusMinusIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PlusMinusIcon/PlusMinusIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/PoundIcon/PoundIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/PoundIcon/PoundIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/RhoIcon/RhoIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/RhoIcon/RhoIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketLeftIcon/RoundBracketLeftIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketLeftIcon/RoundBracketLeftIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketRightIcon/RoundBracketRightIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/RoundBracketRightIcon/RoundBracketRightIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaIcon/SigmaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaIcon/SigmaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaSumIcon/SigmaSumIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SigmaSumIcon/SigmaSumIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SlashIcon/SlashIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SlashIcon/SlashIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SquarePowerIcon/SquarePowerIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SquarePowerIcon/SquarePowerIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SquareRootIcon/SquareRootIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SquareRootIcon/SquareRootIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SubsetIcon/SubsetIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SubsetIcon/SubsetIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/SubtractionIcon/SubtractionIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/SubtractionIcon/SubtractionIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ThetaIcon/ThetaIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ThetaIcon/ThetaIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/TildeIcon/TildeIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/TildeIcon/TildeIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/UnionIcon/UnionIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/UnionIcon/UnionIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/XIcon/XIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/XIcon/XIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/YIcon/YIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/YIcon/YIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/YenIcon/YenIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/YenIcon/YenIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ZIcon/ZIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ZIcon/ZIcon.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/keyboardGroups.d.ts +0 -3
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/BasicLayout/keyboardGroups.d.ts +0 -10
- package/dist/typescript/module/features/keyboard/components/BasicLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/BasicPlusLayout/keyboardGroups.d.ts +0 -6
- package/dist/typescript/module/features/keyboard/components/BasicPlusLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.d.ts +0 -6
- package/dist/typescript/module/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/Numpad/keyboardGroups.d.ts +0 -4
- package/dist/typescript/module/features/keyboard/components/Numpad/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts +0 -3
- package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts +0 -17
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/constants/constants.d.ts +0 -6
- package/dist/typescript/module/features/keyboard/constants/constants.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/constants/keyboardGroupsByLocale.d.ts +0 -6
- package/dist/typescript/module/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/basicOperators.d.ts +0 -236
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/basicOperators.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/calculusOperators.d.ts +0 -24
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/calculusOperators.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/geometry.d.ts +0 -41
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/geometry.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/helpers.d.ts +0 -3
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/helpers.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/index.d.ts +0 -8
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/index.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/specialOperators.d.ts +0 -67
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/specialOperators.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/symbols.d.ts +0 -84
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/symbols.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/textSymbols.d.ts +0 -49
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/textSymbols.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/trigonometric.d.ts +0 -143
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/trigonometric.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/units.d.ts +0 -1055
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/units.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/index.d.ts +0 -3
- package/dist/typescript/module/features/keyboard/types/index.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/types/keyboardGroupIds.d.ts +0 -33
- package/dist/typescript/module/features/keyboard/types/keyboardGroupIds.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/AdditionIcon/AdditionIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/AdditionIcon/AdditionIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/AlphaIcon/AlphaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/AlphaIcon/AlphaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/AngleIcon/AngleIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/AngleIcon/AngleIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ApproximatelyEqualIcon/ApproximatelyEqualIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ApproximatelyEqualIcon/ApproximatelyEqualIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/BackspaceIcon/BackspaceIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/BackspaceIcon/BackspaceIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/BetaIcon/BetaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/BetaIcon/BetaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/BidirectionalSegmentIcon/BidirectionalSegmentIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/BidirectionalSegmentIcon/BidirectionalSegmentIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/CDotIcon/CDotIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/CDotIcon/CDotIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/CentIcon/CentIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/CentIcon/CentIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ColonIcon/ColonIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ColonIcon/ColonIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/CommaIcon/CommaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/CommaIcon/CommaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/CongruentIcon/CongruentIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/CongruentIcon/CongruentIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/CubeRootIcon/CubeRootIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/CubeRootIcon/CubeRootIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DecimalPointIcon/DecimalPointIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DecimalPointIcon/DecimalPointIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DefiniteIntegralIcon/DefiniteIntegralIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DefiniteIntegralIcon/DefiniteIntegralIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DegreeIcon/DegreeIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DegreeIcon/DegreeIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DeltaIcon/DeltaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DeltaIcon/DeltaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DerivativeIcon/DerivativeIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DerivativeIcon/DerivativeIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DivisionIcon/DivisionIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DivisionIcon/DivisionIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DollarIcon/DollarIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DollarIcon/DollarIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/DoubleIntegralIcon/DoubleIntegralIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/DoubleIntegralIcon/DoubleIntegralIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ElementOfIcon/ElementOfIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ElementOfIcon/ElementOfIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/EmptyIcon/EmptyIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/EmptyIcon/EmptyIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/EpsilonIcon/EpsilonIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/EpsilonIcon/EpsilonIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/EqualsIcon/EqualsIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/EqualsIcon/EqualsIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/EtaIcon/EtaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/EtaIcon/EtaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/EuroIcon/EuroIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/EuroIcon/EuroIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/FractionIcon/FractionIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/FractionIcon/FractionIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/GammaIcon/GammaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/GammaIcon/GammaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanIcon/GreaterThanIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanIcon/GreaterThanIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/InfinityIcon/InfinityIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/InfinityIcon/InfinityIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/IntegralABIcon/IntegralABIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/IntegralABIcon/IntegralABIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/IntegralIcon/IntegralIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/IntegralIcon/IntegralIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/IntersectionIcon/IntersectionIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/IntersectionIcon/IntersectionIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/IntervalIcon/IntervalIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/IntervalIcon/IntervalIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/KroneIcon/KroneIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/KroneIcon/KroneIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/LambdaIcon/LambdaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/LambdaIcon/LambdaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/LessThanIcon/LessThanIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/LessThanIcon/LessThanIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/LessThanOrEqualIcon/LessThanOrEqualIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/LessThanOrEqualIcon/LessThanOrEqualIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/LineSegmentIcon/LineSegmentIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/LineSegmentIcon/LineSegmentIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/MuIcon/MuIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/MuIcon/MuIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/MultiplicationIcon/MultiplicationIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/MultiplicationIcon/MultiplicationIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/NotElementOfIcon/NotElementOfIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/NotElementOfIcon/NotElementOfIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/NotEqualIcon/NotEqualIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/NotEqualIcon/NotEqualIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/NthPowerIcon/NthPowerIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/NthPowerIcon/NthPowerIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/NthRootIcon/NthRootIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/NthRootIcon/NthRootIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/OmegaLowercaseIcon/OmegaLowercaseIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/OmegaLowercaseIcon/OmegaLowercaseIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/OmegaUppercaseIcon/OmegaUppercaseIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/OmegaUppercaseIcon/OmegaUppercaseIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/OrderedPairIcon/OrderedPairIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/OrderedPairIcon/OrderedPairIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ParallelIcon/ParallelIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ParallelIcon/ParallelIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ParenthesesIcon/ParenthesesIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ParenthesesIcon/ParenthesesIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PerMilleIcon/PerMilleIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PerMilleIcon/PerMilleIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PercentIcon/PercentIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PercentIcon/PercentIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PerpendicularIcon/PerpendicularIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PerpendicularIcon/PerpendicularIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PesoIcon/PesoIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PesoIcon/PesoIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PhiIcon/PhiIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PhiIcon/PhiIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PiIcon/PiIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PiIcon/PiIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PlusMinusIcon/PlusMinusIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PlusMinusIcon/PlusMinusIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/PoundIcon/PoundIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/PoundIcon/PoundIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/RhoIcon/RhoIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/RhoIcon/RhoIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketLeftIcon/RoundBracketLeftIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketLeftIcon/RoundBracketLeftIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketRightIcon/RoundBracketRightIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/RoundBracketRightIcon/RoundBracketRightIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SigmaIcon/SigmaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SigmaIcon/SigmaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SigmaSumIcon/SigmaSumIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SigmaSumIcon/SigmaSumIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SlashIcon/SlashIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SlashIcon/SlashIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SquarePowerIcon/SquarePowerIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SquarePowerIcon/SquarePowerIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SquareRootIcon/SquareRootIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SquareRootIcon/SquareRootIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SubsetIcon/SubsetIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SubsetIcon/SubsetIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/SubtractionIcon/SubtractionIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/SubtractionIcon/SubtractionIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ThetaIcon/ThetaIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ThetaIcon/ThetaIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/TildeIcon/TildeIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/TildeIcon/TildeIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/UnionIcon/UnionIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/UnionIcon/UnionIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/XIcon/XIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/XIcon/XIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/YIcon/YIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/YIcon/YIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/YenIcon/YenIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/YenIcon/YenIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ZIcon/ZIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ZIcon/ZIcon.d.ts.map +0 -1
- package/src/features/keyboard/components/AlgebraLayout/keyboardGroups.ts +0 -35
- package/src/features/keyboard/components/BasicLayout/keyboardGroups.ts +0 -64
- package/src/features/keyboard/components/BasicPlusLayout/keyboardGroups.ts +0 -98
- package/src/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.ts +0 -124
- package/src/features/keyboard/components/Numpad/keyboardGroups.ts +0 -40
- package/src/features/keyboard/components/UnderlinedLayout/keyboardGroups.ts +0 -14
- package/src/features/keyboard/components/UnitsLayout/keyboardGroups.ts +0 -213
- package/src/features/keyboard/constants/constants.ts +0 -8
- package/src/features/keyboard/constants/keyboardGroupsByLocale.ts +0 -145
- package/src/features/keyboard/types/MathKeysGroups/basicOperators.tsx +0 -281
- package/src/features/keyboard/types/MathKeysGroups/calculusOperators.tsx +0 -33
- package/src/features/keyboard/types/MathKeysGroups/geometry.tsx +0 -48
- package/src/features/keyboard/types/MathKeysGroups/helpers.ts +0 -5
- package/src/features/keyboard/types/MathKeysGroups/index.ts +0 -7
- package/src/features/keyboard/types/MathKeysGroups/specialOperators.tsx +0 -73
- package/src/features/keyboard/types/MathKeysGroups/symbols.tsx +0 -102
- package/src/features/keyboard/types/MathKeysGroups/textSymbols.tsx +0 -54
- package/src/features/keyboard/types/MathKeysGroups/trigonometric.tsx +0 -145
- package/src/features/keyboard/types/MathKeysGroups/units.tsx +0 -494
- package/src/features/keyboard/types/index.ts +0 -2
- package/src/features/keyboard/types/keyboardGroupIds.ts +0 -32
- package/src/shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon.tsx +0 -23
- package/src/shared/icons/keyboard/AdditionIcon/AdditionIcon.tsx +0 -14
- package/src/shared/icons/keyboard/AlphaIcon/AlphaIcon.tsx +0 -16
- package/src/shared/icons/keyboard/AngleIcon/AngleIcon.tsx +0 -14
- package/src/shared/icons/keyboard/ApproximatelyEqualIcon/ApproximatelyEqualIcon.tsx +0 -22
- package/src/shared/icons/keyboard/BackspaceIcon/BackspaceIcon.tsx +0 -30
- package/src/shared/icons/keyboard/BetaIcon/BetaIcon.tsx +0 -16
- package/src/shared/icons/keyboard/BidirectionalSegmentIcon/BidirectionalSegmentIcon.tsx +0 -20
- package/src/shared/icons/keyboard/CDotIcon/CDotIcon.tsx +0 -11
- package/src/shared/icons/keyboard/CentIcon/CentIcon.tsx +0 -14
- package/src/shared/icons/keyboard/ColonIcon/ColonIcon.tsx +0 -12
- package/src/shared/icons/keyboard/CommaIcon/CommaIcon.tsx +0 -16
- package/src/shared/icons/keyboard/CongruentIcon/CongruentIcon.tsx +0 -28
- package/src/shared/icons/keyboard/CubeRootIcon/CubeRootIcon.tsx +0 -20
- package/src/shared/icons/keyboard/DecimalPointIcon/DecimalPointIcon.tsx +0 -13
- package/src/shared/icons/keyboard/DefiniteIntegralIcon/DefiniteIntegralIcon.tsx +0 -34
- package/src/shared/icons/keyboard/DegreeIcon/DegreeIcon.tsx +0 -11
- package/src/shared/icons/keyboard/DeltaIcon/DeltaIcon.tsx +0 -16
- package/src/shared/icons/keyboard/DerivativeIcon/DerivativeIcon.tsx +0 -32
- package/src/shared/icons/keyboard/DivisionIcon/DivisionIcon.tsx +0 -18
- package/src/shared/icons/keyboard/DollarIcon/DollarIcon.tsx +0 -16
- package/src/shared/icons/keyboard/DoubleIntegralIcon/DoubleIntegralIcon.tsx +0 -22
- package/src/shared/icons/keyboard/ElementOfIcon/ElementOfIcon.tsx +0 -14
- package/src/shared/icons/keyboard/EmptyIcon/EmptyIcon.tsx +0 -18
- package/src/shared/icons/keyboard/EpsilonIcon/EpsilonIcon.tsx +0 -16
- package/src/shared/icons/keyboard/EqualsIcon/EqualsIcon.tsx +0 -22
- package/src/shared/icons/keyboard/EtaIcon/EtaIcon.tsx +0 -18
- package/src/shared/icons/keyboard/EuroIcon/EuroIcon.tsx +0 -14
- package/src/shared/icons/keyboard/FractionIcon/FractionIcon.tsx +0 -20
- package/src/shared/icons/keyboard/GammaIcon/GammaIcon.tsx +0 -18
- package/src/shared/icons/keyboard/GreaterThanIcon/GreaterThanIcon.tsx +0 -16
- package/src/shared/icons/keyboard/GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.tsx +0 -22
- package/src/shared/icons/keyboard/InfinityIcon/InfinityIcon.tsx +0 -16
- package/src/shared/icons/keyboard/IntegralABIcon/IntegralABIcon.tsx +0 -26
- package/src/shared/icons/keyboard/IntegralIcon/IntegralIcon.tsx +0 -16
- package/src/shared/icons/keyboard/IntersectionIcon/IntersectionIcon.tsx +0 -14
- package/src/shared/icons/keyboard/IntervalIcon/IntervalIcon.tsx +0 -14
- package/src/shared/icons/keyboard/KroneIcon/KroneIcon.tsx +0 -18
- package/src/shared/icons/keyboard/LambdaIcon/LambdaIcon.tsx +0 -16
- package/src/shared/icons/keyboard/LessThanIcon/LessThanIcon.tsx +0 -16
- package/src/shared/icons/keyboard/LessThanOrEqualIcon/LessThanOrEqualIcon.tsx +0 -22
- package/src/shared/icons/keyboard/LineSegmentIcon/LineSegmentIcon.tsx +0 -18
- package/src/shared/icons/keyboard/MuIcon/MuIcon.tsx +0 -16
- package/src/shared/icons/keyboard/MultiplicationIcon/MultiplicationIcon.tsx +0 -14
- package/src/shared/icons/keyboard/NotElementOfIcon/NotElementOfIcon.tsx +0 -16
- package/src/shared/icons/keyboard/NotEqualIcon/NotEqualIcon.tsx +0 -28
- package/src/shared/icons/keyboard/NthPowerIcon/NthPowerIcon.tsx +0 -20
- package/src/shared/icons/keyboard/NthRootIcon/NthRootIcon.tsx +0 -27
- package/src/shared/icons/keyboard/OmegaLowercaseIcon/OmegaLowercaseIcon.tsx +0 -16
- package/src/shared/icons/keyboard/OmegaUppercaseIcon/OmegaUppercaseIcon.tsx +0 -16
- package/src/shared/icons/keyboard/OrderedPairIcon/OrderedPairIcon.tsx +0 -30
- package/src/shared/icons/keyboard/ParallelIcon/ParallelIcon.tsx +0 -22
- package/src/shared/icons/keyboard/ParenthesesIcon/ParenthesesIcon.tsx +0 -22
- package/src/shared/icons/keyboard/PerMilleIcon/PerMilleIcon.tsx +0 -36
- package/src/shared/icons/keyboard/PercentIcon/PercentIcon.tsx +0 -28
- package/src/shared/icons/keyboard/PerpendicularIcon/PerpendicularIcon.tsx +0 -20
- package/src/shared/icons/keyboard/PesoIcon/PesoIcon.tsx +0 -16
- package/src/shared/icons/keyboard/PhiIcon/PhiIcon.tsx +0 -16
- package/src/shared/icons/keyboard/PiIcon/PiIcon.tsx +0 -19
- package/src/shared/icons/keyboard/PlusMinusIcon/PlusMinusIcon.tsx +0 -20
- package/src/shared/icons/keyboard/PoundIcon/PoundIcon.tsx +0 -14
- package/src/shared/icons/keyboard/RhoIcon/RhoIcon.tsx +0 -18
- package/src/shared/icons/keyboard/RoundBracketLeftIcon/RoundBracketLeftIcon.tsx +0 -18
- package/src/shared/icons/keyboard/RoundBracketRightIcon/RoundBracketRightIcon.tsx +0 -18
- package/src/shared/icons/keyboard/SigmaIcon/SigmaIcon.tsx +0 -16
- package/src/shared/icons/keyboard/SigmaSumIcon/SigmaSumIcon.tsx +0 -16
- package/src/shared/icons/keyboard/SlashIcon/SlashIcon.tsx +0 -16
- package/src/shared/icons/keyboard/SquarePowerIcon/SquarePowerIcon.tsx +0 -17
- package/src/shared/icons/keyboard/SquarePowerIcon copy/SquarePowerIcon.tsx +0 -17
- package/src/shared/icons/keyboard/SquareRootIcon/SquareRootIcon.tsx +0 -16
- package/src/shared/icons/keyboard/SubsetIcon/SubsetIcon.tsx +0 -16
- package/src/shared/icons/keyboard/SubtractionIcon/SubtractionIcon.tsx +0 -16
- package/src/shared/icons/keyboard/ThetaIcon/ThetaIcon.tsx +0 -16
- package/src/shared/icons/keyboard/TildeIcon/TildeIcon.tsx +0 -18
- package/src/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.tsx +0 -17
- package/src/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.tsx +0 -20
- package/src/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.tsx +0 -20
- package/src/shared/icons/keyboard/UnionIcon/UnionIcon.tsx +0 -14
- package/src/shared/icons/keyboard/XIcon/XIcon.tsx +0 -14
- package/src/shared/icons/keyboard/YIcon/YIcon.tsx +0 -15
- package/src/shared/icons/keyboard/YenIcon/YenIcon.tsx +0 -14
- package/src/shared/icons/keyboard/ZIcon/ZIcon.tsx +0 -14
- /package/dist/commonjs/shared/icons/{keyboard/IntegralABIcon/IntegralABIcon.js → IntegralABIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{AdditionIcon/AdditionIcon.js → AdditionIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{AlphaIcon/AlphaIcon.js → AlphaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{AngleIcon/AngleIcon.js → AngleIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{ApproximatelyEqualIcon/ApproximatelyEqualIcon.js → ApproximatelyEqualIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{BackspaceIcon/BackspaceIcon.js → BackspaceIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{BetaIcon/BetaIcon.js → BetaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{BidirectionalSegmentIcon/BidirectionalSegmentIcon.js → BidirectionalSegmentIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{CDotIcon/CDotIcon.js → CDotIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{CentIcon/CentIcon.js → CentIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{ColonIcon/ColonIcon.js → ColonIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{CommaIcon/CommaIcon.js → CommaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{CongruentIcon/CongruentIcon.js → CongruentIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{CubeRootIcon/CubeRootIcon.js → CubeRootIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DecimalPointIcon/DecimalPointIcon.js → DecimalPointIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DefiniteIntegralIcon/DefiniteIntegralIcon.js → DefiniteIntegralIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DegreeIcon/DegreeIcon.js → DegreeIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DeltaIcon/DeltaIcon.js → DeltaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DerivativeIcon/DerivativeIcon.js → DerivativeIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DivisionIcon/DivisionIcon.js → DivisionIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DollarIcon/DollarIcon.js → DollarIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{DoubleIntegralIcon/DoubleIntegralIcon.js → DoubleIntegralIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{ElementOfIcon/ElementOfIcon.js → ElementOfIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{EmptyIcon/EmptyIcon.js → EmptyIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{EpsilonIcon/EpsilonIcon.js → EpsilonIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{EqualsIcon/EqualsIcon.js → EqualsIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{EtaIcon/EtaIcon.js → EtaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{EuroIcon/EuroIcon.js → EuroIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{FractionIcon/FractionIcon.js → FractionIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{GammaIcon/GammaIcon.js → GammaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{GreaterThanIcon/GreaterThanIcon.js → GreaterThanIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.js → GreaterThanOrEqualIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{InfinityIcon/InfinityIcon.js → InfinityIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{IntegralIcon/IntegralIcon.js → IntegralIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{IntersectionIcon/IntersectionIcon.js → IntersectionIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{IntervalIcon/IntervalIcon.js → IntervalIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{KroneIcon/KroneIcon.js → KroneIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{LambdaIcon/LambdaIcon.js → LambdaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{LessThanIcon/LessThanIcon.js → LessThanIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{LessThanOrEqualIcon/LessThanOrEqualIcon.js → LessThanOrEqualIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{LineSegmentIcon/LineSegmentIcon.js → LineSegmentIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{MuIcon/MuIcon.js → MuIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{MultiplicationIcon/MultiplicationIcon.js → MultiplicationIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{NotElementOfIcon/NotElementOfIcon.js → NotElementOfIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{NotEqualIcon/NotEqualIcon.js → NotEqualIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{NthPowerIcon/NthPowerIcon.js → NthPowerIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{NthRootIcon/NthRootIcon.js → NthRootIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{OmegaLowercaseIcon/OmegaLowercaseIcon.js → OmegaLowercaseIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{OmegaUppercaseIcon/OmegaUppercaseIcon.js → OmegaUppercaseIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{OrderedPairIcon/OrderedPairIcon.js → OrderedPairIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{ParallelIcon/ParallelIcon.js → ParallelIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{ParenthesesIcon/ParenthesesIcon.js → ParenthesesIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PerMilleIcon/PerMilleIcon.js → PerMilleIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PercentIcon/PercentIcon.js → PercentIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PerpendicularIcon/PerpendicularIcon.js → PerpendicularIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PesoIcon/PesoIcon.js → PesoIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PhiIcon/PhiIcon.js → PhiIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PiIcon/PiIcon.js → PiIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PlusMinusIcon/PlusMinusIcon.js → PlusMinusIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{PoundIcon/PoundIcon.js → PoundIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{RhoIcon/RhoIcon.js → RhoIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{RoundBracketLeftIcon/RoundBracketLeftIcon.js → RoundBracketLeftIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{RoundBracketRightIcon/RoundBracketRightIcon.js → RoundBracketRightIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{SigmaIcon/SigmaIcon.js → SigmaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{SigmaSumIcon/SigmaSumIcon.js → SigmaSumIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{SlashIcon/SlashIcon.js → SlashIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{SquarePowerIcon/SquarePowerIcon.js → SquarePowerIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{SquareRootIcon/SquareRootIcon.js → SquareRootIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{SubsetIcon/SubsetIcon.js → SubsetIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{SubtractionIcon/SubtractionIcon.js → SubtractionIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{ThetaIcon/ThetaIcon.js → ThetaIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{TildeIcon/TildeIcon.js → TildeIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{UnderlinedOneIcon/UnderlinedOneIcon.js → UnderlinedOneIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{UnderlinedTenIcon/UnderlinedTenIcon.js → UnderlinedTenIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{UnderlinedUIcon/UnderlinedUIcon.js → UnderlinedUIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{UnionIcon/UnionIcon.js → UnionIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{XIcon/XIcon.js → XIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{YIcon/YIcon.js → YIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{YenIcon/YenIcon.js → YenIcon.js} +0 -0
- /package/dist/commonjs/shared/icons/keyboard/{ZIcon/ZIcon.js → ZIcon.js} +0 -0
- /package/dist/module/shared/icons/{keyboard/IntegralABIcon/IntegralABIcon.js → IntegralABIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{AdditionIcon/AdditionIcon.js → AdditionIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{AlphaIcon/AlphaIcon.js → AlphaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{AngleIcon/AngleIcon.js → AngleIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{ApproximatelyEqualIcon/ApproximatelyEqualIcon.js → ApproximatelyEqualIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{BackspaceIcon/BackspaceIcon.js → BackspaceIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{BetaIcon/BetaIcon.js → BetaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{BidirectionalSegmentIcon/BidirectionalSegmentIcon.js → BidirectionalSegmentIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{CDotIcon/CDotIcon.js → CDotIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{CentIcon/CentIcon.js → CentIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{ColonIcon/ColonIcon.js → ColonIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{CommaIcon/CommaIcon.js → CommaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{CongruentIcon/CongruentIcon.js → CongruentIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{CubeRootIcon/CubeRootIcon.js → CubeRootIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DecimalPointIcon/DecimalPointIcon.js → DecimalPointIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DefiniteIntegralIcon/DefiniteIntegralIcon.js → DefiniteIntegralIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DegreeIcon/DegreeIcon.js → DegreeIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DeltaIcon/DeltaIcon.js → DeltaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DerivativeIcon/DerivativeIcon.js → DerivativeIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DivisionIcon/DivisionIcon.js → DivisionIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DollarIcon/DollarIcon.js → DollarIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{DoubleIntegralIcon/DoubleIntegralIcon.js → DoubleIntegralIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{ElementOfIcon/ElementOfIcon.js → ElementOfIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{EmptyIcon/EmptyIcon.js → EmptyIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{EpsilonIcon/EpsilonIcon.js → EpsilonIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{EqualsIcon/EqualsIcon.js → EqualsIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{EtaIcon/EtaIcon.js → EtaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{EuroIcon/EuroIcon.js → EuroIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{FractionIcon/FractionIcon.js → FractionIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{GammaIcon/GammaIcon.js → GammaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{GreaterThanIcon/GreaterThanIcon.js → GreaterThanIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{GreaterThanOrEqualIcon/GreaterThanOrEqualIcon.js → GreaterThanOrEqualIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{InfinityIcon/InfinityIcon.js → InfinityIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{IntegralIcon/IntegralIcon.js → IntegralIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{IntersectionIcon/IntersectionIcon.js → IntersectionIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{IntervalIcon/IntervalIcon.js → IntervalIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{KroneIcon/KroneIcon.js → KroneIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{LambdaIcon/LambdaIcon.js → LambdaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{LessThanIcon/LessThanIcon.js → LessThanIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{LessThanOrEqualIcon/LessThanOrEqualIcon.js → LessThanOrEqualIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{LineSegmentIcon/LineSegmentIcon.js → LineSegmentIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{MuIcon/MuIcon.js → MuIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{MultiplicationIcon/MultiplicationIcon.js → MultiplicationIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{NotElementOfIcon/NotElementOfIcon.js → NotElementOfIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{NotEqualIcon/NotEqualIcon.js → NotEqualIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{NthPowerIcon/NthPowerIcon.js → NthPowerIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{NthRootIcon/NthRootIcon.js → NthRootIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{OmegaLowercaseIcon/OmegaLowercaseIcon.js → OmegaLowercaseIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{OmegaUppercaseIcon/OmegaUppercaseIcon.js → OmegaUppercaseIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{OrderedPairIcon/OrderedPairIcon.js → OrderedPairIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{ParallelIcon/ParallelIcon.js → ParallelIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{ParenthesesIcon/ParenthesesIcon.js → ParenthesesIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PerMilleIcon/PerMilleIcon.js → PerMilleIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PercentIcon/PercentIcon.js → PercentIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PerpendicularIcon/PerpendicularIcon.js → PerpendicularIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PesoIcon/PesoIcon.js → PesoIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PhiIcon/PhiIcon.js → PhiIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PiIcon/PiIcon.js → PiIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PlusMinusIcon/PlusMinusIcon.js → PlusMinusIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{PoundIcon/PoundIcon.js → PoundIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{RhoIcon/RhoIcon.js → RhoIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{RoundBracketLeftIcon/RoundBracketLeftIcon.js → RoundBracketLeftIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{RoundBracketRightIcon/RoundBracketRightIcon.js → RoundBracketRightIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{SigmaIcon/SigmaIcon.js → SigmaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{SigmaSumIcon/SigmaSumIcon.js → SigmaSumIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{SlashIcon/SlashIcon.js → SlashIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{SquarePowerIcon/SquarePowerIcon.js → SquarePowerIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{SquareRootIcon/SquareRootIcon.js → SquareRootIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{SubsetIcon/SubsetIcon.js → SubsetIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{SubtractionIcon/SubtractionIcon.js → SubtractionIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{ThetaIcon/ThetaIcon.js → ThetaIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{TildeIcon/TildeIcon.js → TildeIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{UnderlinedOneIcon/UnderlinedOneIcon.js → UnderlinedOneIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{UnderlinedTenIcon/UnderlinedTenIcon.js → UnderlinedTenIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{UnderlinedUIcon/UnderlinedUIcon.js → UnderlinedUIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{UnionIcon/UnionIcon.js → UnionIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{XIcon/XIcon.js → XIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{YIcon/YIcon.js → YIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{YenIcon/YenIcon.js → YenIcon.js} +0 -0
- /package/dist/module/shared/icons/keyboard/{ZIcon/ZIcon.js → ZIcon.js} +0 -0
|
@@ -1,24 +1,43 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
ErrorChar,
|
|
3
|
+
EquationItem,
|
|
4
|
+
FullStrokeData,
|
|
5
|
+
IThreadItem,
|
|
6
|
+
SpreadsheetItem,
|
|
7
|
+
} from '../types/units.types'
|
|
2
8
|
import { generateRandomId } from '../../../lib/helpers/helpers'
|
|
3
9
|
|
|
4
10
|
type ThreadItemProps = {
|
|
5
11
|
strokes?: FullStrokeData[]
|
|
6
|
-
text?: string
|
|
7
12
|
key: string
|
|
13
|
+
spreadSheetContent?: SpreadsheetItem[]
|
|
14
|
+
equationContent?: EquationItem[]
|
|
15
|
+
drawBoardImage?: string
|
|
16
|
+
studentInput?: string
|
|
8
17
|
}
|
|
9
18
|
|
|
19
|
+
const DEFAULT_STUDENT_INPUT = 'none'
|
|
20
|
+
|
|
10
21
|
export class ThreadItem implements IThreadItem {
|
|
11
22
|
public readonly id = generateRandomId()
|
|
12
23
|
public readonly history: string[] = []
|
|
24
|
+
public readonly errorStrokesHistory: string[][] = []
|
|
13
25
|
public strokesValidationKey: string | null = null
|
|
14
26
|
public strokes: FullStrokeData[] | null
|
|
15
|
-
public text: string | null = null
|
|
16
27
|
public errorStrokesIds: string[] | null = null
|
|
28
|
+
public errorChars: ErrorChar[] | null = null
|
|
29
|
+
public spreadSheetContent?: SpreadsheetItem[]
|
|
30
|
+
public equationContent?: EquationItem[]
|
|
31
|
+
public drawBoardImage?: string
|
|
32
|
+
public studentInput: string
|
|
17
33
|
|
|
18
34
|
public constructor(props?: ThreadItemProps | null) {
|
|
19
35
|
this.strokes = props?.strokes ?? null
|
|
20
|
-
this.text = props?.text ?? null
|
|
21
36
|
this.strokesValidationKey = props?.key ?? null
|
|
37
|
+
this.spreadSheetContent = props?.spreadSheetContent
|
|
38
|
+
this.equationContent = props?.equationContent
|
|
39
|
+
this.drawBoardImage = props?.drawBoardImage
|
|
40
|
+
this.studentInput = props?.studentInput ?? DEFAULT_STUDENT_INPUT
|
|
22
41
|
}
|
|
23
42
|
|
|
24
43
|
public setStrokes(strokes: FullStrokeData[]) {
|
|
@@ -26,11 +45,6 @@ export class ThreadItem implements IThreadItem {
|
|
|
26
45
|
return this
|
|
27
46
|
}
|
|
28
47
|
|
|
29
|
-
public setText(text: string) {
|
|
30
|
-
this.text = text
|
|
31
|
-
return this
|
|
32
|
-
}
|
|
33
|
-
|
|
34
48
|
public setValidationKey(key: string) {
|
|
35
49
|
this.strokesValidationKey = key
|
|
36
50
|
return this
|
|
@@ -41,19 +55,56 @@ export class ThreadItem implements IThreadItem {
|
|
|
41
55
|
return this
|
|
42
56
|
}
|
|
43
57
|
|
|
44
|
-
public
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
}
|
|
58
|
+
public setErrorChars(chars: ErrorChar[]) {
|
|
59
|
+
this.errorChars = chars
|
|
60
|
+
return this
|
|
61
|
+
}
|
|
50
62
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
63
|
+
public setSpreadSheetContent(content: SpreadsheetItem[]) {
|
|
64
|
+
this.spreadSheetContent = content
|
|
65
|
+
return this
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
public setEquationContent(content: EquationItem[]) {
|
|
69
|
+
this.equationContent = content
|
|
70
|
+
return this
|
|
71
|
+
}
|
|
54
72
|
|
|
55
|
-
|
|
73
|
+
public setDrawBoardImage(image: string) {
|
|
74
|
+
this.drawBoardImage = image
|
|
75
|
+
return this
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
public setStudentInput(studentInput: string) {
|
|
79
|
+
this.studentInput = studentInput
|
|
80
|
+
return this
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
private getContentProps() {
|
|
84
|
+
if (this.strokes?.length) {
|
|
56
85
|
return { stroke: this.strokes }
|
|
57
86
|
}
|
|
87
|
+
if (this.spreadSheetContent?.length) {
|
|
88
|
+
return { spreadSheetContent: this.spreadSheetContent }
|
|
89
|
+
}
|
|
90
|
+
if (this.equationContent?.length) {
|
|
91
|
+
return { equationContent: this.equationContent }
|
|
92
|
+
}
|
|
93
|
+
return {}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
public getNextHintProps() {
|
|
97
|
+
const lastErrorStrokeIds = this.errorStrokesHistory.length
|
|
98
|
+
? this.errorStrokesHistory[this.errorStrokesHistory.length - 1]
|
|
99
|
+
: undefined
|
|
100
|
+
|
|
101
|
+
return {
|
|
102
|
+
hintNumber: this.history.length,
|
|
103
|
+
studentInput: this.studentInput,
|
|
104
|
+
...(this.drawBoardImage && { drawBoardImage: this.drawBoardImage }),
|
|
105
|
+
...this.getContentProps(),
|
|
106
|
+
...(this.history.length && { previousHints: [...this.history] }),
|
|
107
|
+
...(lastErrorStrokeIds?.length && { previousErrorStrokeIds: lastErrorStrokeIds }),
|
|
108
|
+
}
|
|
58
109
|
}
|
|
59
110
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import { ChatAnswer, FullStrokeData, Stroke
|
|
1
|
+
import { ChatAnswer, FullStrokeData, Stroke, EquationItem,
|
|
2
|
+
SpreadsheetItem,
|
|
3
|
+
} from './units.types'
|
|
2
4
|
import { ProblemStandard } from './model.types'
|
|
3
5
|
|
|
4
6
|
export type GetAlternativesPayload = {
|
|
@@ -49,6 +51,11 @@ export type PostMessagePayload = {
|
|
|
49
51
|
imageCdnId?: string
|
|
50
52
|
freeTextMessage?: string
|
|
51
53
|
conversationId?: string | null
|
|
54
|
+
chatHistory?: {
|
|
55
|
+
exerciseId: string
|
|
56
|
+
problemId: string
|
|
57
|
+
chatVersion?: string
|
|
58
|
+
}
|
|
52
59
|
}
|
|
53
60
|
|
|
54
61
|
export type PostMessageResponse = {
|
|
@@ -102,17 +109,31 @@ export type ChatHintPayload = {
|
|
|
102
109
|
correctAnswer: string[]
|
|
103
110
|
userAnswer?: string | string[]
|
|
104
111
|
stroke?: Stroke[]
|
|
105
|
-
|
|
112
|
+
previousHints?: string[]
|
|
113
|
+
previousErrorStrokeIds?: string[]
|
|
106
114
|
language: string
|
|
107
115
|
imageAltText?: string
|
|
108
116
|
imageCdnId?: string
|
|
109
117
|
drawBoardText?: string
|
|
118
|
+
spreadSheetContent?: SpreadsheetItem[]
|
|
119
|
+
equationContent?: EquationItem[]
|
|
120
|
+
drawBoardImage?: string
|
|
121
|
+
hintNumber: number
|
|
122
|
+
studentInput: string
|
|
123
|
+
answerOptions?: string[]
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export type ErrorChar = {
|
|
127
|
+
id: string
|
|
128
|
+
value: string
|
|
110
129
|
}
|
|
111
130
|
|
|
112
131
|
export type ChatHintResponse = {
|
|
113
132
|
message: string
|
|
114
133
|
conversationId?: string | null
|
|
115
134
|
errorStrokeIds?: string[]
|
|
135
|
+
errorCellIds?: string[]
|
|
136
|
+
errorChars?: ErrorChar[]
|
|
116
137
|
}
|
|
117
138
|
export type ErrorSpottingPayload = {
|
|
118
139
|
strokes: FullStrokeData[]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { MutableRefObject } from 'react'
|
|
2
|
+
|
|
3
|
+
export enum FadePosition {
|
|
4
|
+
TOP = 'top',
|
|
5
|
+
BOTTOM = 'bottom',
|
|
6
|
+
BOTH = 'both',
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export type FadeUpdateFn = (fade: FadePosition | undefined) => void
|
|
10
|
+
|
|
11
|
+
export type ScrollState = {
|
|
12
|
+
isScrollable: boolean
|
|
13
|
+
isScrolledUp: boolean
|
|
14
|
+
isAtTop: boolean
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export type FadeOverlaysProps = {
|
|
18
|
+
fadeRef: MutableRefObject<FadeUpdateFn | null>
|
|
19
|
+
}
|
|
@@ -16,7 +16,14 @@ import {
|
|
|
16
16
|
SendMessageResponse,
|
|
17
17
|
} from './api.types'
|
|
18
18
|
import { ExtendWithOptional } from '../../../lib/helpers/types'
|
|
19
|
-
import {
|
|
19
|
+
import {
|
|
20
|
+
EquationItem,
|
|
21
|
+
ChatAnswer,
|
|
22
|
+
ChatItem,
|
|
23
|
+
ConversationMessage,
|
|
24
|
+
FullStrokeData,
|
|
25
|
+
SpreadsheetItem,
|
|
26
|
+
} from './units.types'
|
|
20
27
|
import { WithAbortSignal } from '../../../lib/types/requests'
|
|
21
28
|
import { RequestOptionalConfig } from '../../../lib/effector/createControllerEffect'
|
|
22
29
|
|
|
@@ -25,6 +32,7 @@ export type ChatbotMessages = {
|
|
|
25
32
|
start: ConversationMessage
|
|
26
33
|
endMessage: ConversationMessage
|
|
27
34
|
anotherHintOption: ChatAnswer
|
|
35
|
+
getHint: ChatAnswer
|
|
28
36
|
}
|
|
29
37
|
|
|
30
38
|
export type ChatbotApiRequests = {
|
|
@@ -70,12 +78,14 @@ export type SendHelpParams = {
|
|
|
70
78
|
message: string
|
|
71
79
|
translatedMessage?: string
|
|
72
80
|
isFreeText?: boolean
|
|
81
|
+
clearDefaultMessages?: boolean
|
|
73
82
|
}
|
|
74
83
|
|
|
75
84
|
export type SendHelpProps = SendHelpParams & {
|
|
76
85
|
key: string
|
|
77
86
|
context: ChatbotContext | null
|
|
78
87
|
cache: Record<string, ChatItem>
|
|
88
|
+
alternatives: GetAlternativesResponse | null
|
|
79
89
|
isFreeText?: boolean
|
|
80
90
|
}
|
|
81
91
|
|
|
@@ -114,8 +124,11 @@ type GetVisibleStrokesResponse = {
|
|
|
114
124
|
|
|
115
125
|
type GetBoardContentResponse = {
|
|
116
126
|
strokes?: FullStrokeData[]
|
|
117
|
-
text?: string
|
|
118
127
|
validationKey: string
|
|
128
|
+
spreadSheetContent?: SpreadsheetItem[]
|
|
129
|
+
equationContent?: EquationItem[]
|
|
130
|
+
drawBoardImage?: string
|
|
131
|
+
studentInput: string
|
|
119
132
|
}
|
|
120
133
|
|
|
121
134
|
export type IChatDrawBoardAdapter = {
|
|
@@ -129,7 +142,7 @@ export type IChatDrawBoardAdapter = {
|
|
|
129
142
|
|
|
130
143
|
export type ChatbotContext = {
|
|
131
144
|
language: string
|
|
132
|
-
|
|
145
|
+
problemDescription: string
|
|
133
146
|
problemAnswer: string[]
|
|
134
147
|
translationTargetLanguage: string
|
|
135
148
|
answer?: string | string[]
|
|
@@ -137,6 +150,8 @@ export type ChatbotContext = {
|
|
|
137
150
|
imageDescription?: string
|
|
138
151
|
imageCdnId?: string
|
|
139
152
|
problemStandards?: ProblemStandard[]
|
|
153
|
+
assignmentId?: string
|
|
154
|
+
problemId?: string
|
|
140
155
|
}
|
|
141
156
|
|
|
142
157
|
export type ReinitConversationProps = {
|
|
@@ -2,16 +2,42 @@ export type Stroke = {
|
|
|
2
2
|
x: number[]
|
|
3
3
|
y: number[]
|
|
4
4
|
}
|
|
5
|
+
|
|
5
6
|
export type FullStrokeData = Stroke & {
|
|
6
7
|
id: string
|
|
7
8
|
}
|
|
8
9
|
|
|
10
|
+
export type EquationItem = {
|
|
11
|
+
id: string
|
|
12
|
+
value?: string
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export type SpreadsheetItem = {
|
|
16
|
+
id: string
|
|
17
|
+
value?: string
|
|
18
|
+
point: {
|
|
19
|
+
x: number
|
|
20
|
+
y: number
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export type ErrorChar = {
|
|
25
|
+
id: string
|
|
26
|
+
value: string
|
|
27
|
+
}
|
|
28
|
+
|
|
9
29
|
export type IThreadItem = {
|
|
10
30
|
id: string
|
|
11
31
|
strokesValidationKey: string | null
|
|
12
32
|
strokes: FullStrokeData[] | null
|
|
13
33
|
history: string[]
|
|
34
|
+
errorStrokesHistory: string[][]
|
|
14
35
|
errorStrokesIds: string[] | null
|
|
36
|
+
errorChars: ErrorChar[] | null
|
|
37
|
+
spreadSheetContent?: SpreadsheetItem[]
|
|
38
|
+
equationContent?: EquationItem[]
|
|
39
|
+
drawBoardImage?: string
|
|
40
|
+
studentInput: string
|
|
15
41
|
}
|
|
16
42
|
|
|
17
43
|
export type ChatAnswer = {
|
|
@@ -36,4 +62,5 @@ export type ChatItem = {
|
|
|
36
62
|
isAvailable: boolean
|
|
37
63
|
currentThread: IThreadItem | null
|
|
38
64
|
conversationId?: string | null
|
|
65
|
+
hasBeenOpened?: boolean
|
|
39
66
|
}
|
|
@@ -2,26 +2,23 @@ import React, { useMemo, useState } from 'react'
|
|
|
2
2
|
import { KeysList } from '../KeysList/KeysList'
|
|
3
3
|
import { StyleSheet, useWindowDimensions, View } from 'react-native'
|
|
4
4
|
import { COLORS, IS_MOBILE, SelectGroup, SelectOptionSize } from '@magmamath/react-native-ui'
|
|
5
|
-
import { Locale, useText } from '../../../../shared/translation'
|
|
6
5
|
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
7
6
|
import { SelectedLayout } from './types'
|
|
8
|
-
import {
|
|
7
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
9
8
|
import { getSelectOptions } from './helpers'
|
|
10
9
|
import { KEYBOARD_LAYOUTS } from '../../constants/keyboardLayouts'
|
|
11
10
|
|
|
12
|
-
export const AlgebraLayout = ({ onLayoutChange, ...props }: KeyboardLayoutProps) => {
|
|
11
|
+
export const AlgebraLayout = ({ onLayoutChange, keys, ...props }: KeyboardLayoutProps) => {
|
|
13
12
|
const [selectedLayout, setSelectedLayout] = useState<SelectedLayout>(SelectedLayout.BASIC)
|
|
14
|
-
const t = useText()
|
|
15
13
|
const { width } = useWindowDimensions()
|
|
16
14
|
const selectOptions = getSelectOptions({ selectedLayout, setSelectedLayout, onLayoutChange })
|
|
17
15
|
const isDesktop =
|
|
18
16
|
width > KEYBOARD_LAYOUTS[KeyboardType.AlgebraAdvanced].mobileBreakpoint && !IS_MOBILE
|
|
19
|
-
const locale = t('locale') as Locale
|
|
20
17
|
|
|
21
18
|
const keyboardGroups = useMemo(() => {
|
|
22
|
-
const algebra =
|
|
23
|
-
const basic =
|
|
24
|
-
|
|
19
|
+
const algebra = getMainKeyboardGroup(keys, KeyboardType.AlgebraAdvanced)
|
|
20
|
+
const basic = getMainKeyboardGroup(
|
|
21
|
+
keys,
|
|
25
22
|
isDesktop ? KeyboardType.BasicPlusPlus : KeyboardType.BasicPlusPlusMobile,
|
|
26
23
|
)
|
|
27
24
|
|
|
@@ -29,7 +26,7 @@ export const AlgebraLayout = ({ onLayoutChange, ...props }: KeyboardLayoutProps)
|
|
|
29
26
|
[SelectedLayout.BASIC, basic],
|
|
30
27
|
[SelectedLayout.ALGEBRA, algebra],
|
|
31
28
|
])
|
|
32
|
-
}, [
|
|
29
|
+
}, [isDesktop, keys])
|
|
33
30
|
|
|
34
31
|
const currentKeys = keyboardGroups.get(selectedLayout)?.keys ?? []
|
|
35
32
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react'
|
|
2
2
|
import { COLORS } from '@magmamath/react-native-ui'
|
|
3
3
|
import { AlgebraIcon } from '../../../../shared/icons/AlgebraIcon'
|
|
4
|
-
import { IntegralABIcon } from '../../../../shared/icons/
|
|
4
|
+
import { IntegralABIcon } from '../../../../shared/icons/IntegralABIcon'
|
|
5
5
|
import { SelectedLayout } from './types'
|
|
6
6
|
|
|
7
7
|
type LayoutOption = {
|
|
@@ -2,15 +2,14 @@ import React, { PropsWithChildren } from 'react'
|
|
|
2
2
|
import { KeysList } from '../KeysList/KeysList'
|
|
3
3
|
import { StyleSheet, useWindowDimensions, View } from 'react-native'
|
|
4
4
|
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
5
|
-
import { Locale, useText } from '../../../../shared/translation'
|
|
6
|
-
import { KEYBOARD_GROUPS_BY_LOCALE } from '../../constants/keyboardGroupsByLocale'
|
|
7
5
|
import { IS_MOBILE } from '@magmamath/react-native-ui'
|
|
8
6
|
import { KEYBOARD_LAYOUTS } from '../../constants/keyboardLayouts'
|
|
7
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
8
|
+
|
|
9
|
+
export const BasicLayout = ({ keys, ...props }: KeyboardLayoutProps & PropsWithChildren) => {
|
|
10
|
+
const keysByLocale = getMainKeyboardGroup(keys, KeyboardType.Basic)
|
|
11
|
+
const keysToShow = props.children ? keysByLocale.keys : keysByLocale.keys.slice(0, -1)
|
|
9
12
|
|
|
10
|
-
export const BasicLayout = (props: KeyboardLayoutProps & PropsWithChildren) => {
|
|
11
|
-
const t = useText()
|
|
12
|
-
const keysByLocale = KEYBOARD_GROUPS_BY_LOCALE[t('locale') as Locale][KeyboardType.Basic]
|
|
13
|
-
const keys = props.children ? keysByLocale.keys : keysByLocale.keys.slice(0, -1)
|
|
14
13
|
const { width } = useWindowDimensions()
|
|
15
14
|
const isMobile = width <= KEYBOARD_LAYOUTS[KeyboardType.Basic].mobileBreakpoint || IS_MOBILE
|
|
16
15
|
|
|
@@ -20,7 +19,7 @@ export const BasicLayout = (props: KeyboardLayoutProps & PropsWithChildren) => {
|
|
|
20
19
|
|
|
21
20
|
return (
|
|
22
21
|
<View style={styles.container}>
|
|
23
|
-
<KeysList keys={
|
|
22
|
+
<KeysList keys={keysToShow} numOfRows={2} {...props} />
|
|
24
23
|
{props.children || null}
|
|
25
24
|
</View>
|
|
26
25
|
)
|
|
@@ -2,15 +2,13 @@ import React from 'react'
|
|
|
2
2
|
import { KeysList } from '../KeysList/KeysList'
|
|
3
3
|
import { BasicLayout } from './BasicLayout'
|
|
4
4
|
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
5
|
-
import {
|
|
6
|
-
import { getKeyboardGroup } from '../../helpers'
|
|
5
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
7
6
|
|
|
8
|
-
export const CurrencyBasicLayout = (props: KeyboardLayoutProps) => {
|
|
9
|
-
const
|
|
10
|
-
const keysGroup = getKeyboardGroup(t('locale') as Locale, KeyboardType.BasicCurrency)
|
|
7
|
+
export const CurrencyBasicLayout = ({ keys, ...props }: KeyboardLayoutProps) => {
|
|
8
|
+
const keysGroup = getMainKeyboardGroup(keys, KeyboardType.BasicCurrency)
|
|
11
9
|
|
|
12
10
|
return (
|
|
13
|
-
<BasicLayout {...props}>
|
|
11
|
+
<BasicLayout keys={keys} {...props}>
|
|
14
12
|
<KeysList keys={keysGroup.keys} numOfRows={keysGroup.keys.length} {...props} />
|
|
15
13
|
</BasicLayout>
|
|
16
14
|
)
|
|
@@ -3,16 +3,14 @@ import { KeysList } from '../KeysList/KeysList'
|
|
|
3
3
|
import { StyleSheet } from 'react-native'
|
|
4
4
|
import { BasicLayout } from './BasicLayout'
|
|
5
5
|
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
6
|
-
import {
|
|
7
|
-
import { getKeyboardGroup } from '../../helpers'
|
|
6
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
8
7
|
import { IS_MOBILE } from '@magmamath/react-native-ui'
|
|
9
8
|
|
|
10
|
-
export const TimeBasicLayout = (props: KeyboardLayoutProps) => {
|
|
11
|
-
const
|
|
12
|
-
const keysGroup = getKeyboardGroup(t('locale') as Locale, KeyboardType.BasicTime)
|
|
9
|
+
export const TimeBasicLayout = ({ keys, ...props }: KeyboardLayoutProps) => {
|
|
10
|
+
const keysGroup = getMainKeyboardGroup(keys, KeyboardType.BasicTime)
|
|
13
11
|
|
|
14
12
|
return (
|
|
15
|
-
<BasicLayout {...props}>
|
|
13
|
+
<BasicLayout keys={keys} {...props}>
|
|
16
14
|
<KeysList
|
|
17
15
|
keys={keysGroup.keys}
|
|
18
16
|
numOfRows={keysGroup.numOfRows || keysGroup.keys.length}
|
|
@@ -2,18 +2,16 @@ import React from 'react'
|
|
|
2
2
|
import { KeysList } from '../KeysList/KeysList'
|
|
3
3
|
import { StyleSheet, useWindowDimensions, View } from 'react-native'
|
|
4
4
|
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { MOBILE_LAYOUT_WIDTH } from '../../constants/constants'
|
|
5
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
6
|
+
import { MOBILE_LAYOUT_WIDTH } from '../../constants/keyboard.constants'
|
|
8
7
|
import { IS_MOBILE } from '@magmamath/react-native-ui'
|
|
9
8
|
|
|
10
|
-
export const BasicPlusLayout = (props: KeyboardLayoutProps) => {
|
|
11
|
-
const t = useText()
|
|
12
|
-
const locale = t('locale') as Locale
|
|
9
|
+
export const BasicPlusLayout = ({ keys, ...props }: KeyboardLayoutProps) => {
|
|
13
10
|
const { width } = useWindowDimensions()
|
|
14
11
|
const isMobile = width <= MOBILE_LAYOUT_WIDTH || IS_MOBILE
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
|
|
13
|
+
const keysGroup = getMainKeyboardGroup(
|
|
14
|
+
keys,
|
|
17
15
|
isMobile ? KeyboardType.BasicPlusMobile : KeyboardType.BasicPlus,
|
|
18
16
|
)
|
|
19
17
|
|
|
@@ -2,19 +2,18 @@ import React from 'react'
|
|
|
2
2
|
import { StyleSheet, useWindowDimensions, View } from 'react-native'
|
|
3
3
|
import { KeysList } from '../KeysList/KeysList'
|
|
4
4
|
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
5
|
-
import {
|
|
6
|
-
import { getKeyboardGroup } from '../../helpers'
|
|
5
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
7
6
|
import { IS_MOBILE } from '@magmamath/react-native-ui'
|
|
8
7
|
import { KEYBOARD_LAYOUTS } from '../../constants/keyboardLayouts'
|
|
9
8
|
|
|
10
|
-
export const BasicPlusPlusLayout = (props: KeyboardLayoutProps) => {
|
|
11
|
-
const t = useText()
|
|
9
|
+
export const BasicPlusPlusLayout = ({ keys, ...props }: KeyboardLayoutProps) => {
|
|
12
10
|
const { width } = useWindowDimensions()
|
|
13
|
-
|
|
11
|
+
|
|
14
12
|
const isDesktop =
|
|
15
13
|
width > KEYBOARD_LAYOUTS[KeyboardType.BasicPlusPlus].mobileBreakpoint && !IS_MOBILE
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
|
|
15
|
+
const keysGroup = getMainKeyboardGroup(
|
|
16
|
+
keys,
|
|
18
17
|
isDesktop ? KeyboardType.BasicPlusPlus : KeyboardType.BasicPlusPlusMobile,
|
|
19
18
|
)
|
|
20
19
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React, { useEffect, useMemo, useRef } from 'react'
|
|
2
2
|
import { Animated, StyleProp, StyleSheet, useWindowDimensions, ViewStyle } from 'react-native'
|
|
3
3
|
import { COLORS, IS_MOBILE, IS_WEB, SelectOptionColor, SHADOWS } from '@magmamath/react-native-ui'
|
|
4
|
-
import { KeyboardKey, KeyboardKeyValue } from '../types'
|
|
5
4
|
import { Numpad } from './Numpad/Numpad'
|
|
6
5
|
import { MainLayout } from './MainLayout/MainLayout'
|
|
7
6
|
import {
|
|
@@ -10,9 +9,13 @@ import {
|
|
|
10
9
|
slideInAnimationSettings,
|
|
11
10
|
} from './MainLayout/constants'
|
|
12
11
|
import { isMobileWidth } from '../helpers'
|
|
12
|
+
import { KeyboardConfig } from '@magmamath/frontend-config'
|
|
13
|
+
import { KeyboardKey, KeyboardKeyValue } from '../types/types'
|
|
14
|
+
import { resolveKeyboard } from '../constants/keyboard.helpers'
|
|
13
15
|
|
|
14
16
|
type KeyboardProps = {
|
|
15
17
|
onKeyPress: (key: KeyboardKeyValue) => void
|
|
18
|
+
keys: KeyboardConfig
|
|
16
19
|
characterType?: number
|
|
17
20
|
style?: StyleProp<ViewStyle>
|
|
18
21
|
color?: SelectOptionColor
|
|
@@ -28,6 +31,7 @@ export const Keyboard = ({
|
|
|
28
31
|
isMainLayoutDisabled,
|
|
29
32
|
...props
|
|
30
33
|
}: KeyboardProps) => {
|
|
34
|
+
const resolvedKeys = useMemo(() => resolveKeyboard(props.keys), [props.keys])
|
|
31
35
|
const slideAnim = useRef(new Animated.Value(KEYBOARD_SLIDE_DISTANCE)).current
|
|
32
36
|
|
|
33
37
|
const { width } = useWindowDimensions()
|
|
@@ -62,10 +66,11 @@ export const Keyboard = ({
|
|
|
62
66
|
>
|
|
63
67
|
<MainLayout
|
|
64
68
|
{...props}
|
|
69
|
+
keys={resolvedKeys}
|
|
65
70
|
isDisabled={isMainLayoutDisabled || props.isDisabled}
|
|
66
71
|
characterType={characterType}
|
|
67
72
|
/>
|
|
68
|
-
<Numpad {...props} style={mobileStyles} />
|
|
73
|
+
<Numpad {...props} keys={resolvedKeys} style={mobileStyles} />
|
|
69
74
|
</Animated.View>
|
|
70
75
|
)
|
|
71
76
|
}
|
|
@@ -2,13 +2,13 @@ import React, { useMemo } from 'react'
|
|
|
2
2
|
import { StyleSheet } from 'react-native'
|
|
3
3
|
import {
|
|
4
4
|
ButtonStyle,
|
|
5
|
+
IS_MOBILE,
|
|
5
6
|
SelectGroup,
|
|
6
7
|
SelectOptionColor,
|
|
7
8
|
SelectOptionSize,
|
|
8
9
|
} from '@magmamath/react-native-ui'
|
|
9
10
|
import { KeyboardKey, KeyboardLayoutProps } from '../../types/types'
|
|
10
11
|
import { mapKeyToOption } from './helpers'
|
|
11
|
-
import { IS_MOBILE } from '@magmamath/react-native-ui'
|
|
12
12
|
|
|
13
13
|
type KeysListProps = {
|
|
14
14
|
keys: KeyboardKey[]
|
|
@@ -18,7 +18,7 @@ type KeysListProps = {
|
|
|
18
18
|
style?: {
|
|
19
19
|
option?: ButtonStyle
|
|
20
20
|
}
|
|
21
|
-
} & KeyboardLayoutProps
|
|
21
|
+
} & Omit<KeyboardLayoutProps, 'keys'>
|
|
22
22
|
|
|
23
23
|
export const KeysList = ({
|
|
24
24
|
keys,
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import React, { useEffect, useMemo, useRef, useState
|
|
1
|
+
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
|
2
2
|
import { Animated, StyleSheet, View } from 'react-native'
|
|
3
|
-
import {
|
|
3
|
+
import { IS_MOBILE, IS_WEB, SelectOptionColor } from '@magmamath/react-native-ui'
|
|
4
4
|
import { getLayoutByCharType, isBasicPlusPlusLayout } from '../../constants/keyboardLayouts'
|
|
5
|
-
import { KeyboardKey, KeyboardKeyValue } from '../../types/types'
|
|
6
5
|
import { UnderlinedLayout } from '../UnderlinedLayout/UnderlinedLayout'
|
|
6
|
+
import { KeyboardKey, KeyboardKeyValue, ResolvedKeyboard } from '../../types/types'
|
|
7
7
|
|
|
8
8
|
type LayoutProps = {
|
|
9
|
+
keys: ResolvedKeyboard
|
|
9
10
|
onKeyPress: (key: KeyboardKeyValue) => void
|
|
10
11
|
characterType?: number
|
|
11
12
|
color?: SelectOptionColor
|
|
@@ -3,16 +3,16 @@ import { KeysList } from '../KeysList/KeysList'
|
|
|
3
3
|
import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native'
|
|
4
4
|
import { SPACING } from '@magmamath/react-native-ui'
|
|
5
5
|
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { useText } from '../../../../shared/translation'
|
|
7
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
8
8
|
|
|
9
9
|
type NumpadProps = {
|
|
10
10
|
style?: StyleProp<ViewStyle>
|
|
11
11
|
} & KeyboardLayoutProps
|
|
12
12
|
|
|
13
|
-
export const Numpad = ({ style, ...props }: NumpadProps) => {
|
|
13
|
+
export const Numpad = ({ style, keys, ...props }: NumpadProps) => {
|
|
14
14
|
const t = useText()
|
|
15
|
-
const keyboardGroup =
|
|
15
|
+
const keyboardGroup = getMainKeyboardGroup(keys, KeyboardType.Numpad)
|
|
16
16
|
|
|
17
17
|
return (
|
|
18
18
|
<View style={[styles.container, style]}>
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
import { KeysList } from '../KeysList/KeysList'
|
|
3
|
-
import { KeyboardLayoutProps, KeyboardType } from '../../types/types'
|
|
4
|
-
import {
|
|
5
|
-
import { getKeyboardGroup } from '../../helpers'
|
|
3
|
+
import { KeyboardLayoutProps, KeyboardType, ResolvedKeyboard } from '../../types/types'
|
|
4
|
+
import { getMainKeyboardGroup } from '../../helpers'
|
|
6
5
|
|
|
7
6
|
type UnderlinedLayoutProps = {
|
|
7
|
+
keys: ResolvedKeyboard
|
|
8
8
|
showSlashKey?: boolean
|
|
9
9
|
} & KeyboardLayoutProps
|
|
10
10
|
|
|
11
|
-
export const UnderlinedLayout = (props: UnderlinedLayoutProps) => {
|
|
12
|
-
const
|
|
13
|
-
const
|
|
14
|
-
const keys = props.showSlashKey ? keysGroup.keys : keysGroup.keys.slice(0, -1)
|
|
11
|
+
export const UnderlinedLayout = ({ keys, ...props }: UnderlinedLayoutProps) => {
|
|
12
|
+
const keysGroup = getMainKeyboardGroup(keys, KeyboardType.Underlined)
|
|
13
|
+
const keysToShow = props.showSlashKey ? keysGroup.keys : keysGroup.keys.slice(0, -1)
|
|
15
14
|
|
|
16
|
-
return
|
|
15
|
+
return (
|
|
16
|
+
<KeysList keys={keysToShow} numOfRows={props.showSlashKey ? 2 : keysToShow.length} {...props} />
|
|
17
|
+
)
|
|
17
18
|
}
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
import { KeysList } from '../KeysList/KeysList'
|
|
3
3
|
import { StyleSheet, View } from 'react-native'
|
|
4
|
-
import { COLORS, TabGroup, TabOptionProps, TabVariant
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { Locale } from '@magmamath/students-features'
|
|
8
|
-
import { useText } from '../../../../shared/translation'
|
|
9
|
-
import { KEYBOARD_UNITS_GROUPS_BY_LOCALE } from '../../constants/keyboardGroupsByLocale'
|
|
10
|
-
import { KeyboardUnitsGroupType } from './types'
|
|
4
|
+
import { COLORS, IS_MOBILE, TabGroup, TabOptionProps, TabVariant } from '@magmamath/react-native-ui'
|
|
5
|
+
import { KeyboardLayoutProps, KeyboardUnitsGroupType } from '../../types/types'
|
|
6
|
+
import { getUnitsKeyboardGroup } from '../../helpers'
|
|
11
7
|
|
|
12
8
|
type UnitTabsProps = {
|
|
13
9
|
tabs: TabOptionProps[]
|
|
@@ -15,12 +11,8 @@ type UnitTabsProps = {
|
|
|
15
11
|
onTabChange?: (value: TabOptionProps) => void
|
|
16
12
|
} & KeyboardLayoutProps
|
|
17
13
|
|
|
18
|
-
export const UnitTabs = ({ activeTab, tabs, onTabChange, ...props }: UnitTabsProps) => {
|
|
19
|
-
const
|
|
20
|
-
const locale = t('locale') as Locale
|
|
21
|
-
const keyboardGroups =
|
|
22
|
-
KEYBOARD_UNITS_GROUPS_BY_LOCALE[locale]?.[activeTab.key as KeyboardUnitsGroupType]?.keys ||
|
|
23
|
-
MATH_ENTRY_LENGTH_UNITS_SW_KEYBOARD_GROUPS.keys
|
|
14
|
+
export const UnitTabs = ({ activeTab, tabs, onTabChange, keys, ...props }: UnitTabsProps) => {
|
|
15
|
+
const keyboardGroups = getUnitsKeyboardGroup(keys, activeTab.key as KeyboardUnitsGroupType).keys
|
|
24
16
|
|
|
25
17
|
return (
|
|
26
18
|
<View style={styles.container}>
|