@magmamath/students-features 1.3.3 → 1.3.4-rc.1
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/keyboard/components/AlgebraLayout/AlgebraLayout.js +72 -20
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js +41 -0
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js.map +1 -0
- package/dist/commonjs/features/keyboard/components/{SwitchableLayout → AlgebraLayout}/types.js +1 -1
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/types.js.map +1 -0
- package/dist/commonjs/features/keyboard/constants/groups/index.js +0 -11
- package/dist/commonjs/features/keyboard/constants/groups/index.js.map +1 -1
- package/dist/commonjs/features/keyboard/constants/keyboard.constants.js +1 -6
- package/dist/commonjs/features/keyboard/constants/keyboard.constants.js.map +1 -1
- package/dist/commonjs/features/keyboard/constants/keyboard.helpers.js +0 -2
- package/dist/commonjs/features/keyboard/constants/keyboard.helpers.js.map +1 -1
- package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js +8 -18
- package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js.map +1 -1
- package/dist/commonjs/features/keyboard/constants/keys/geometry.constants.js +1 -86
- package/dist/commonjs/features/keyboard/constants/keys/geometry.constants.js.map +1 -1
- package/dist/commonjs/features/keyboard/constants/keys/text.constants.js +9 -9
- package/dist/commonjs/features/keyboard/constants/keys/units.constants.js +1 -2
- package/dist/commonjs/features/keyboard/constants/keys/units.constants.js.map +1 -1
- package/dist/commonjs/features/keyboard/types/types.js +0 -1
- package/dist/commonjs/features/keyboard/types/types.js.map +1 -1
- package/dist/commonjs/features/voice/constants.js +13 -3
- package/dist/commonjs/features/voice/constants.js.map +1 -1
- package/dist/commonjs/features/voice/recording/components/VoiceRecord.js +19 -5
- package/dist/commonjs/features/voice/recording/components/VoiceRecord.js.map +1 -1
- package/dist/commonjs/features/voice/recording/components/VoiceRecordButton.js +71 -20
- package/dist/commonjs/features/voice/recording/components/VoiceRecordButton.js.map +1 -1
- package/dist/commonjs/features/voice/recording/components/VoiceRecordDeleteButton.js +2 -2
- package/dist/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.js +3 -3
- package/dist/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.js.map +1 -1
- package/dist/commonjs/features/voice/recording/model/VoiceRecord.model.js +5 -0
- package/dist/commonjs/features/voice/recording/model/VoiceRecord.model.js.map +1 -1
- package/dist/commonjs/features/voice/types.js +6 -0
- package/dist/commonjs/features/voice/types.js.map +1 -1
- package/dist/commonjs/shared/icons/keyboard/AngleIcon.js +3 -4
- package/dist/commonjs/shared/icons/keyboard/AngleIcon.js.map +1 -1
- package/dist/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.js +8 -12
- package/dist/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.js.map +1 -1
- package/dist/commonjs/shared/icons/keyboard/LineSegmentIcon.js +6 -11
- package/dist/commonjs/shared/icons/keyboard/LineSegmentIcon.js.map +1 -1
- package/dist/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.js +8 -12
- package/dist/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.js.map +1 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +72 -21
- package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js +36 -0
- package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js.map +1 -0
- package/dist/module/features/keyboard/components/{SwitchableLayout → AlgebraLayout}/types.js +1 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/types.js.map +1 -0
- package/dist/module/features/keyboard/constants/groups/index.js +0 -1
- package/dist/module/features/keyboard/constants/groups/index.js.map +1 -1
- package/dist/module/features/keyboard/constants/keyboard.constants.js +0 -5
- package/dist/module/features/keyboard/constants/keyboard.constants.js.map +1 -1
- package/dist/module/features/keyboard/constants/keyboard.helpers.js +1 -3
- package/dist/module/features/keyboard/constants/keyboard.helpers.js.map +1 -1
- package/dist/module/features/keyboard/constants/keyboardLayouts.js +9 -19
- package/dist/module/features/keyboard/constants/keyboardLayouts.js.map +1 -1
- package/dist/module/features/keyboard/constants/keys/geometry.constants.js +1 -86
- package/dist/module/features/keyboard/constants/keys/geometry.constants.js.map +1 -1
- package/dist/module/features/keyboard/constants/keys/text.constants.js +9 -9
- package/dist/module/features/keyboard/constants/keys/units.constants.js +1 -2
- package/dist/module/features/keyboard/constants/keys/units.constants.js.map +1 -1
- package/dist/module/features/keyboard/types/types.js +0 -1
- package/dist/module/features/keyboard/types/types.js.map +1 -1
- package/dist/module/features/voice/constants.js +12 -2
- package/dist/module/features/voice/constants.js.map +1 -1
- package/dist/module/features/voice/recording/components/VoiceRecord.js +20 -6
- package/dist/module/features/voice/recording/components/VoiceRecord.js.map +1 -1
- package/dist/module/features/voice/recording/components/VoiceRecordButton.js +73 -22
- package/dist/module/features/voice/recording/components/VoiceRecordButton.js.map +1 -1
- package/dist/module/features/voice/recording/components/VoiceRecordDeleteButton.js +2 -2
- package/dist/module/features/voice/recording/hooks/useVoiceRecorderAnimation.js +3 -3
- package/dist/module/features/voice/recording/hooks/useVoiceRecorderAnimation.js.map +1 -1
- package/dist/module/features/voice/recording/model/VoiceRecord.model.js +5 -0
- package/dist/module/features/voice/recording/model/VoiceRecord.model.js.map +1 -1
- package/dist/module/features/voice/types.js +5 -1
- package/dist/module/features/voice/types.js.map +1 -1
- package/dist/module/shared/icons/keyboard/AngleIcon.js +3 -4
- package/dist/module/shared/icons/keyboard/AngleIcon.js.map +1 -1
- package/dist/module/shared/icons/keyboard/BidirectionalSegmentIcon.js +9 -13
- package/dist/module/shared/icons/keyboard/BidirectionalSegmentIcon.js.map +1 -1
- package/dist/module/shared/icons/keyboard/LineSegmentIcon.js +7 -12
- package/dist/module/shared/icons/keyboard/LineSegmentIcon.js.map +1 -1
- package/dist/module/shared/icons/keyboard/RightDirectedSegmentIcon.js +9 -13
- package/dist/module/shared/icons/keyboard/RightDirectedSegmentIcon.js.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/AlgebraLayout/helpers.d.ts +15 -0
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/types.d.ts +5 -0
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/keyboard/constants/groups/index.d.ts +0 -1
- package/dist/typescript/commonjs/features/keyboard/constants/groups/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/constants/keyboard.constants.d.ts +0 -5
- package/dist/typescript/commonjs/features/keyboard/constants/keyboard.constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/constants/keyboard.helpers.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts +4 -13
- package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/constants/keys/geometry.constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/constants/keys/units.constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/types/types.d.ts +0 -1
- package/dist/typescript/commonjs/features/keyboard/types/types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/constants.d.ts +12 -2
- package/dist/typescript/commonjs/features/voice/constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecord.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecordButton.d.ts +1 -3
- package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecordButton.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts +2 -1
- package/dist/typescript/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/recording/model/VoiceRecord.model.d.ts +3 -1
- package/dist/typescript/commonjs/features/voice/recording/model/VoiceRecord.model.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/types.d.ts +4 -0
- package/dist/typescript/commonjs/features/voice/types.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/AngleIcon.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LineSegmentIcon.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.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/AlgebraLayout/helpers.d.ts +15 -0
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/types.d.ts +5 -0
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/types.d.ts.map +1 -0
- package/dist/typescript/module/features/keyboard/constants/groups/index.d.ts +0 -1
- package/dist/typescript/module/features/keyboard/constants/groups/index.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/constants/keyboard.constants.d.ts +0 -5
- package/dist/typescript/module/features/keyboard/constants/keyboard.constants.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/constants/keyboard.helpers.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts +4 -13
- package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/constants/keys/geometry.constants.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/constants/keys/units.constants.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/types/types.d.ts +0 -1
- package/dist/typescript/module/features/keyboard/types/types.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/constants.d.ts +12 -2
- package/dist/typescript/module/features/voice/constants.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/components/VoiceRecord.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/components/VoiceRecordButton.d.ts +1 -3
- package/dist/typescript/module/features/voice/recording/components/VoiceRecordButton.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts +2 -1
- package/dist/typescript/module/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/recording/model/VoiceRecord.model.d.ts +3 -1
- package/dist/typescript/module/features/voice/recording/model/VoiceRecord.model.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/types.d.ts +4 -0
- package/dist/typescript/module/features/voice/types.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/keyboard/AngleIcon.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/keyboard/LineSegmentIcon.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/keyboard/RightDirectedSegmentIcon.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx +73 -17
- package/src/features/keyboard/components/AlgebraLayout/helpers.tsx +52 -0
- package/src/features/keyboard/components/AlgebraLayout/types.ts +4 -0
- package/src/features/keyboard/constants/groups/index.ts +0 -1
- package/src/features/keyboard/constants/keyboard.constants.ts +0 -6
- package/src/features/keyboard/constants/keyboard.helpers.ts +0 -3
- package/src/features/keyboard/constants/keyboardLayouts.ts +5 -15
- package/src/features/keyboard/constants/keys/geometry.constants.tsx +1 -61
- package/src/features/keyboard/constants/keys/text.constants.tsx +9 -9
- package/src/features/keyboard/constants/keys/units.constants.tsx +0 -1
- package/src/features/keyboard/types/types.ts +0 -1
- package/src/features/voice/constants.ts +13 -2
- package/src/features/voice/recording/components/VoiceRecord.tsx +28 -5
- package/src/features/voice/recording/components/VoiceRecordButton.tsx +99 -30
- package/src/features/voice/recording/components/VoiceRecordDeleteButton.tsx +2 -2
- package/src/features/voice/recording/hooks/useVoiceRecorderAnimation.ts +8 -4
- package/src/features/voice/recording/model/VoiceRecord.model.ts +7 -0
- package/src/features/voice/types.ts +5 -0
- package/src/shared/icons/keyboard/AngleIcon.tsx +2 -4
- package/src/shared/icons/keyboard/BidirectionalSegmentIcon.tsx +8 -5
- package/src/shared/icons/keyboard/LineSegmentIcon.tsx +7 -6
- package/src/shared/icons/keyboard/RightDirectedSegmentIcon.tsx +8 -5
- package/.claude/settings.local.json +0 -25
- package/.editorconfig +0 -15
- package/.eslintignore +0 -2
- package/.eslintrc +0 -22
- package/.gitattributes +0 -3
- package/.github/actions/setup/action.yml +0 -37
- package/.github/workflows/ci.yml +0 -73
- package/.gitignore +0 -84
- package/.idea/.gitignore +0 -8
- package/.idea/codeStyles/Project.xml +0 -62
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/copilot.data.migration.agent.xml +0 -6
- package/.idea/copilot.data.migration.ask.xml +0 -6
- package/.idea/copilot.data.migration.ask2agent.xml +0 -6
- package/.idea/copilot.data.migration.edit.xml +0 -6
- package/.idea/inspectionProfiles/Project_Default.xml +0 -8
- package/.idea/jsLinters/eslint.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/prettier.xml +0 -7
- package/.idea/students-features.iml +0 -12
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -667
- package/.nvmrc +0 -1
- package/.prettierrc +0 -11
- package/.release-it.json +0 -17
- package/.watchmanconfig +0 -1
- package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +0 -541
- package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +0 -28
- package/.yarn/releases/yarn-3.6.1.cjs +0 -874
- package/babel.config.js +0 -5
- package/bob.config.js +0 -25
- package/dist/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.js +0 -33
- package/dist/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.js +0 -94
- package/dist/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/SwitchableLayout/helpers.js +0 -25
- package/dist/commonjs/features/keyboard/components/SwitchableLayout/helpers.js.map +0 -1
- package/dist/commonjs/features/keyboard/components/SwitchableLayout/types.js.map +0 -1
- package/dist/commonjs/features/keyboard/constants/groups/geometry.constants.js +0 -11
- package/dist/commonjs/features/keyboard/constants/groups/geometry.constants.js.map +0 -1
- package/dist/commonjs/shared/icons/GeometryIcon.js +0 -32
- package/dist/commonjs/shared/icons/GeometryIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ImpliesIcon.js +0 -30
- package/dist/commonjs/shared/icons/keyboard/ImpliesIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/LetterAIcon.js +0 -29
- package/dist/commonjs/shared/icons/keyboard/LetterAIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/LetterBIcon.js +0 -29
- package/dist/commonjs/shared/icons/keyboard/LetterBIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/LetterCIcon.js +0 -29
- package/dist/commonjs/shared/icons/keyboard/LetterCIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/ThereforeIcon.js +0 -42
- package/dist/commonjs/shared/icons/keyboard/ThereforeIcon.js.map +0 -1
- package/dist/commonjs/shared/icons/keyboard/TriangleIcon.js +0 -32
- package/dist/commonjs/shared/icons/keyboard/TriangleIcon.js.map +0 -1
- package/dist/module/features/keyboard/components/GeometryLayout/GeometryLayout.js +0 -27
- package/dist/module/features/keyboard/components/GeometryLayout/GeometryLayout.js.map +0 -1
- package/dist/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.js +0 -87
- package/dist/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.js.map +0 -1
- package/dist/module/features/keyboard/components/SwitchableLayout/helpers.js +0 -21
- package/dist/module/features/keyboard/components/SwitchableLayout/helpers.js.map +0 -1
- package/dist/module/features/keyboard/components/SwitchableLayout/types.js.map +0 -1
- package/dist/module/features/keyboard/constants/groups/geometry.constants.js +0 -7
- package/dist/module/features/keyboard/constants/groups/geometry.constants.js.map +0 -1
- package/dist/module/shared/icons/GeometryIcon.js +0 -24
- package/dist/module/shared/icons/GeometryIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ImpliesIcon.js +0 -22
- package/dist/module/shared/icons/keyboard/ImpliesIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/LetterAIcon.js +0 -21
- package/dist/module/shared/icons/keyboard/LetterAIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/LetterBIcon.js +0 -21
- package/dist/module/shared/icons/keyboard/LetterBIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/LetterCIcon.js +0 -21
- package/dist/module/shared/icons/keyboard/LetterCIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/ThereforeIcon.js +0 -34
- package/dist/module/shared/icons/keyboard/ThereforeIcon.js.map +0 -1
- package/dist/module/shared/icons/keyboard/TriangleIcon.js +0 -24
- package/dist/module/shared/icons/keyboard/TriangleIcon.js.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts +0 -4
- package/dist/typescript/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts +0 -4
- package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/helpers.d.ts +0 -12
- package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/helpers.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/types.d.ts +0 -21
- package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/types.d.ts.map +0 -1
- package/dist/typescript/commonjs/features/keyboard/constants/groups/geometry.constants.d.ts +0 -3
- package/dist/typescript/commonjs/features/keyboard/constants/groups/geometry.constants.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/GeometryIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/GeometryIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ImpliesIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ImpliesIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LetterAIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/LetterAIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LetterBIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/LetterBIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/LetterCIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/LetterCIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/ThereforeIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/ThereforeIcon.d.ts.map +0 -1
- package/dist/typescript/commonjs/shared/icons/keyboard/TriangleIcon.d.ts +0 -4
- package/dist/typescript/commonjs/shared/icons/keyboard/TriangleIcon.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts +0 -4
- package/dist/typescript/module/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts +0 -4
- package/dist/typescript/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/SwitchableLayout/helpers.d.ts +0 -12
- package/dist/typescript/module/features/keyboard/components/SwitchableLayout/helpers.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/components/SwitchableLayout/types.d.ts +0 -21
- package/dist/typescript/module/features/keyboard/components/SwitchableLayout/types.d.ts.map +0 -1
- package/dist/typescript/module/features/keyboard/constants/groups/geometry.constants.d.ts +0 -3
- package/dist/typescript/module/features/keyboard/constants/groups/geometry.constants.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/GeometryIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/GeometryIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ImpliesIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ImpliesIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/LetterAIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/LetterAIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/LetterBIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/LetterBIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/LetterCIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/LetterCIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/ThereforeIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/ThereforeIcon.d.ts.map +0 -1
- package/dist/typescript/module/shared/icons/keyboard/TriangleIcon.d.ts +0 -4
- package/dist/typescript/module/shared/icons/keyboard/TriangleIcon.d.ts.map +0 -1
- package/example/.expo/README.md +0 -8
- package/example/.expo/devices.json +0 -3
- package/example/.expo/web/cache/production/images/favicon/favicon-24272cdaeff82cc5facdaccd982a6f05b60c4504704bbf94c19a6388659880bb-contain-transparent/favicon-48.png +0 -0
- package/example/app.json +0 -30
- package/example/assets/adaptive-icon.png +0 -0
- package/example/assets/favicon.png +0 -0
- package/example/assets/icon.png +0 -0
- package/example/assets/splash-icon.png +0 -0
- package/example/babel.config.js +0 -28
- package/example/index.js +0 -8
- package/example/metro.config.js +0 -18
- package/example/package.json +0 -25
- package/example/src/App.tsx +0 -8
- package/example/tsconfig.json +0 -6
- package/src/features/keyboard/components/GeometryLayout/GeometryLayout.tsx +0 -21
- package/src/features/keyboard/components/SwitchableLayout/SwitchableLayout.tsx +0 -100
- package/src/features/keyboard/components/SwitchableLayout/helpers.tsx +0 -31
- package/src/features/keyboard/components/SwitchableLayout/types.ts +0 -24
- package/src/features/keyboard/constants/groups/geometry.constants.ts +0 -25
- package/src/shared/icons/GeometryIcon.tsx +0 -18
- package/src/shared/icons/keyboard/ImpliesIcon.tsx +0 -16
- package/src/shared/icons/keyboard/LetterAIcon.tsx +0 -14
- package/src/shared/icons/keyboard/LetterBIcon.tsx +0 -14
- package/src/shared/icons/keyboard/LetterCIcon.tsx +0 -14
- package/src/shared/icons/keyboard/ThereforeIcon.tsx +0 -15
- package/src/shared/icons/keyboard/TriangleIcon.tsx +0 -18
- package/tsconfig.build.json +0 -4
- package/tsconfig.json +0 -34
- package/yarn.lock +0 -10957
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React, { useMemo, useState } from 'react';
|
|
4
|
-
import { KeysList } from "../KeysList/KeysList.js";
|
|
5
|
-
import { StyleSheet, useWindowDimensions, View } from 'react-native';
|
|
6
|
-
import { COLORS, IS_MOBILE, SelectGroup, SelectOptionSize, SPACING } from '@magmamath/react-native-ui';
|
|
7
|
-
import { KeyboardType } from "../../types/types.js";
|
|
8
|
-
import { SelectedLayout } from "./types.js";
|
|
9
|
-
import { getMainKeyboardGroup } from "../../helpers.js";
|
|
10
|
-
import { getSelectOptions } from "./helpers.js";
|
|
11
|
-
import { KEYBOARD_LAYOUTS } from "../../constants/keyboardLayouts.js";
|
|
12
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
export const SwitchableLayout = ({
|
|
14
|
-
onLayoutChange,
|
|
15
|
-
keys,
|
|
16
|
-
config,
|
|
17
|
-
...props
|
|
18
|
-
}) => {
|
|
19
|
-
const [selectedLayout, setSelectedLayout] = useState(SelectedLayout.BASIC);
|
|
20
|
-
const {
|
|
21
|
-
width
|
|
22
|
-
} = useWindowDimensions();
|
|
23
|
-
const selectOptions = getSelectOptions({
|
|
24
|
-
selectedLayout,
|
|
25
|
-
onBasicPressIn: () => {
|
|
26
|
-
setSelectedLayout(SelectedLayout.BASIC);
|
|
27
|
-
onLayoutChange?.(false);
|
|
28
|
-
},
|
|
29
|
-
onSecondaryPressIn: () => {
|
|
30
|
-
setSelectedLayout(SelectedLayout.SECONDARY);
|
|
31
|
-
onLayoutChange?.(true);
|
|
32
|
-
},
|
|
33
|
-
BasicIcon: config.BasicIcon,
|
|
34
|
-
SecondaryIcon: config.SecondaryIcon
|
|
35
|
-
});
|
|
36
|
-
const isDesktop = width > KEYBOARD_LAYOUTS[config.secondaryKeyboardType].mobileBreakpoint && !IS_MOBILE;
|
|
37
|
-
const keyboardGroups = useMemo(() => {
|
|
38
|
-
const secondary = getMainKeyboardGroup(keys, config.secondaryKeyboardType);
|
|
39
|
-
const basic = getMainKeyboardGroup(keys, isDesktop ? KeyboardType.BasicPlusPlus : KeyboardType.BasicPlusPlusMobile);
|
|
40
|
-
return new Map([[SelectedLayout.BASIC, basic], [SelectedLayout.SECONDARY, secondary]]);
|
|
41
|
-
}, [isDesktop, keys, config.secondaryKeyboardType]);
|
|
42
|
-
const currentKeys = keyboardGroups.get(selectedLayout)?.keys ?? [];
|
|
43
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
44
|
-
style: styles.container,
|
|
45
|
-
children: [isDesktop && /*#__PURE__*/_jsx(SelectGroup, {
|
|
46
|
-
numOfRows: 2,
|
|
47
|
-
options: selectOptions,
|
|
48
|
-
size: SelectOptionSize.SMALL,
|
|
49
|
-
style: {
|
|
50
|
-
container: styles.optionContainer,
|
|
51
|
-
option: {
|
|
52
|
-
container: styles.option
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
color: props.color,
|
|
56
|
-
selectedOptions: [selectedLayout === SelectedLayout.BASIC ? selectOptions[0] : selectOptions[1]]
|
|
57
|
-
}), /*#__PURE__*/_jsx(KeysList, {
|
|
58
|
-
keys: currentKeys,
|
|
59
|
-
numOfRows: 3,
|
|
60
|
-
...props
|
|
61
|
-
})]
|
|
62
|
-
});
|
|
63
|
-
};
|
|
64
|
-
const styles = StyleSheet.create({
|
|
65
|
-
container: {
|
|
66
|
-
display: 'flex',
|
|
67
|
-
flexDirection: 'row',
|
|
68
|
-
gap: SPACING[400],
|
|
69
|
-
paddingRight: SPACING[400]
|
|
70
|
-
},
|
|
71
|
-
optionContainer: {
|
|
72
|
-
flexGrow: 0,
|
|
73
|
-
flexShrink: 0,
|
|
74
|
-
flexBasis: IS_MOBILE ? 60 : 'auto',
|
|
75
|
-
width: 'auto',
|
|
76
|
-
paddingRight: 18,
|
|
77
|
-
borderRightWidth: 1,
|
|
78
|
-
borderRightColor: COLORS.NEUTRAL_3,
|
|
79
|
-
maxWidth: 65,
|
|
80
|
-
gap: 9
|
|
81
|
-
},
|
|
82
|
-
option: {
|
|
83
|
-
flexBasis: 45,
|
|
84
|
-
width: 44
|
|
85
|
-
}
|
|
86
|
-
});
|
|
87
|
-
//# sourceMappingURL=SwitchableLayout.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","useMemo","useState","KeysList","StyleSheet","useWindowDimensions","View","COLORS","IS_MOBILE","SelectGroup","SelectOptionSize","SPACING","KeyboardType","SelectedLayout","getMainKeyboardGroup","getSelectOptions","KEYBOARD_LAYOUTS","jsx","_jsx","jsxs","_jsxs","SwitchableLayout","onLayoutChange","keys","config","props","selectedLayout","setSelectedLayout","BASIC","width","selectOptions","onBasicPressIn","onSecondaryPressIn","SECONDARY","BasicIcon","SecondaryIcon","isDesktop","secondaryKeyboardType","mobileBreakpoint","keyboardGroups","secondary","basic","BasicPlusPlus","BasicPlusPlusMobile","Map","currentKeys","get","style","styles","container","children","numOfRows","options","size","SMALL","optionContainer","option","color","selectedOptions","create","display","flexDirection","gap","paddingRight","flexGrow","flexShrink","flexBasis","borderRightWidth","borderRightColor","NEUTRAL_3","maxWidth"],"sourceRoot":"../../../../../../src","sources":["features/keyboard/components/SwitchableLayout/SwitchableLayout.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import { SelectedLayout } from "./types.js";
|
|
4
|
-
export function getSelectOptions({
|
|
5
|
-
selectedLayout,
|
|
6
|
-
onBasicPressIn,
|
|
7
|
-
onSecondaryPressIn,
|
|
8
|
-
BasicIcon,
|
|
9
|
-
SecondaryIcon
|
|
10
|
-
}) {
|
|
11
|
-
return [{
|
|
12
|
-
key: SelectedLayout.BASIC,
|
|
13
|
-
title: BasicIcon(selectedLayout === SelectedLayout.BASIC),
|
|
14
|
-
onPressIn: onBasicPressIn
|
|
15
|
-
}, {
|
|
16
|
-
key: SelectedLayout.SECONDARY,
|
|
17
|
-
title: SecondaryIcon(selectedLayout === SelectedLayout.SECONDARY),
|
|
18
|
-
onPressIn: onSecondaryPressIn
|
|
19
|
-
}];
|
|
20
|
-
}
|
|
21
|
-
//# sourceMappingURL=helpers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["SelectedLayout","getSelectOptions","selectedLayout","onBasicPressIn","onSecondaryPressIn","BasicIcon","SecondaryIcon","key","BASIC","title","onPressIn","SECONDARY"],"sourceRoot":"../../../../../../src","sources":["features/keyboard/components/SwitchableLayout/helpers.tsx"],"mappings":";;AACA,SAASA,cAAc,QAAsB,YAAS;AAUtD,OAAO,SAASC,gBAAgBA,CAAC;EAC/BC,cAAc;EACdC,cAAc;EACdC,kBAAkB;EAClBC,SAAS;EACTC;AACqB,CAAC,EAAkB;EACxC,OAAO,CACL;IACEC,GAAG,EAAEP,cAAc,CAACQ,KAAK;IACzBC,KAAK,EAAEJ,SAAS,CAACH,cAAc,KAAKF,cAAc,CAACQ,KAAK,CAAC;IACzDE,SAAS,EAAEP;EACb,CAAC,EACD;IACEI,GAAG,EAAEP,cAAc,CAACW,SAAS;IAC7BF,KAAK,EAAEH,aAAa,CAACJ,cAAc,KAAKF,cAAc,CAACW,SAAS,CAAC;IACjED,SAAS,EAAEN;EACb,CAAC,CACF;AACH","ignoreList":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["SelectedLayout"],"sourceRoot":"../../../../../../src","sources":["features/keyboard/components/SwitchableLayout/types.ts"],"mappings":";;AAIA,WAAYA,cAAc,0BAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAA,OAAdA,cAAc;AAAA","ignoreList":[]}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import { MATH_BASIC_OPERATORS, MATH_GEOMETRY_SYMBOLS } from "../keys/index.js";
|
|
4
|
-
export const KEYBOARD_GEOMETRY = {
|
|
5
|
-
keys: [MATH_GEOMETRY_SYMBOLS.ANGLE, MATH_GEOMETRY_SYMBOLS.TRIANGLE, MATH_GEOMETRY_SYMBOLS.THEREFORE, MATH_GEOMETRY_SYMBOLS.IMPLIES, MATH_BASIC_OPERATORS.SIMILARITY, MATH_GEOMETRY_SYMBOLS.LINE_SEGMENT, MATH_GEOMETRY_SYMBOLS.RIGHT_DIRECTED_SEGMENT, MATH_GEOMETRY_SYMBOLS.BIDIRECTIONAL_SEGMENT, MATH_GEOMETRY_SYMBOLS.PERPENDICULAR, MATH_BASIC_OPERATORS.APPROXIMATELY_EQUAL, MATH_GEOMETRY_SYMBOLS.A, MATH_GEOMETRY_SYMBOLS.B, MATH_GEOMETRY_SYMBOLS.C, MATH_GEOMETRY_SYMBOLS.PARALLEL, MATH_BASIC_OPERATORS.CONGRUENT]
|
|
6
|
-
};
|
|
7
|
-
//# sourceMappingURL=geometry.constants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["MATH_BASIC_OPERATORS","MATH_GEOMETRY_SYMBOLS","KEYBOARD_GEOMETRY","keys","ANGLE","TRIANGLE","THEREFORE","IMPLIES","SIMILARITY","LINE_SEGMENT","RIGHT_DIRECTED_SEGMENT","BIDIRECTIONAL_SEGMENT","PERPENDICULAR","APPROXIMATELY_EQUAL","A","B","C","PARALLEL","CONGRUENT"],"sourceRoot":"../../../../../../src","sources":["features/keyboard/constants/groups/geometry.constants.ts"],"mappings":";;AAAA,SACEA,oBAAoB,EACpBC,qBAAqB,QAChB,kBAAS;AAGhB,OAAO,MAAMC,iBAAgC,GAAG;EAC9CC,IAAI,EAAE,CACJF,qBAAqB,CAACG,KAAK,EAC3BH,qBAAqB,CAACI,QAAQ,EAC9BJ,qBAAqB,CAACK,SAAS,EAC/BL,qBAAqB,CAACM,OAAO,EAC7BP,oBAAoB,CAACQ,UAAU,EAC/BP,qBAAqB,CAACQ,YAAY,EAClCR,qBAAqB,CAACS,sBAAsB,EAC5CT,qBAAqB,CAACU,qBAAqB,EAC3CV,qBAAqB,CAACW,aAAa,EACnCZ,oBAAoB,CAACa,mBAAmB,EACxCZ,qBAAqB,CAACa,CAAC,EACvBb,qBAAqB,CAACc,CAAC,EACvBd,qBAAqB,CAACe,CAAC,EACvBf,qBAAqB,CAACgB,QAAQ,EAC9BjB,oBAAoB,CAACkB,SAAS;AAElC,CAAC","ignoreList":[]}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import Svg, { Path } from 'react-native-svg';
|
|
5
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
-
export const GeometryIcon = ({
|
|
7
|
-
size = 16,
|
|
8
|
-
color
|
|
9
|
-
}) => {
|
|
10
|
-
return /*#__PURE__*/_jsxs(Svg, {
|
|
11
|
-
width: size,
|
|
12
|
-
height: size,
|
|
13
|
-
viewBox: "0 0 16 16",
|
|
14
|
-
fill: "none",
|
|
15
|
-
children: [/*#__PURE__*/_jsx(Path, {
|
|
16
|
-
d: "M15.499 16.0009H14.998L15.499 15.4999V16.0009ZM0.399414 15.9902C0.204051 15.9502 0.0497107 15.7968 0.00976562 15.6015L0 15.5009V0.500901C9.37645e-05 0.0555518 0.538555 -0.167482 0.853516 0.147385L15.8525 15.1474C16.1674 15.4624 15.9444 16.0009 15.499 16.0009V15.4999L14.998 16.0009H0.5L0.399414 15.9902ZM1.59961 14.4003H12.8428L1.59961 3.15715V14.4003Z",
|
|
17
|
-
fill: color
|
|
18
|
-
}), /*#__PURE__*/_jsx(Path, {
|
|
19
|
-
d: "M5.09541 10.7012C5.20587 10.7012 5.29541 10.7907 5.29541 10.9012V13.5055C5.29541 13.616 5.20587 13.7055 5.09541 13.7055H4.20604C4.09558 13.7055 4.00604 13.616 4.00604 13.5055V12.1898C4.00604 12.0793 3.9165 11.9898 3.80604 11.9898H2.49108C2.38062 11.9898 2.29108 11.9002 2.29108 11.7898V10.9012C2.29108 10.7907 2.38062 10.7012 2.49108 10.7012H5.09541Z",
|
|
20
|
-
fill: color
|
|
21
|
-
})]
|
|
22
|
-
});
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=GeometryIcon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","GeometryIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../src","sources":["shared/icons/GeometryIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE5C,OAAO,MAAMC,YAAY,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC/D,oBACEH,KAAA,CAACL,GAAG;IAACS,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC7DV,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,kWAAkW;MACpWF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFL,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,gWAAgW;MAClWF,IAAI,EAAEJ;IAAM,CACb,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import Svg, { Path } from 'react-native-svg';
|
|
5
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
-
const ASPECT_RATIO = 20 / 18;
|
|
7
|
-
export const ImpliesIcon = ({
|
|
8
|
-
size = 20,
|
|
9
|
-
color
|
|
10
|
-
}) => {
|
|
11
|
-
return /*#__PURE__*/_jsx(Svg, {
|
|
12
|
-
width: size,
|
|
13
|
-
height: size / ASPECT_RATIO,
|
|
14
|
-
viewBox: "0 0 20 18",
|
|
15
|
-
fill: "none",
|
|
16
|
-
children: /*#__PURE__*/_jsx(Path, {
|
|
17
|
-
d: "M11.1808 4.25566C11.4933 3.94351 12.0004 3.94333 12.3127 4.25566L16.4904 8.43438C16.8025 8.74673 16.8025 9.25289 16.4904 9.56524L12.3127 13.7439C12.0004 14.0563 11.4933 14.0561 11.1808 13.7439C10.8684 13.4315 10.8684 12.9245 11.1808 12.6121L11.5441 12.2488H4.07538C3.63366 12.2487 3.27557 11.8908 3.27557 11.449C3.27573 11.0074 3.63376 10.6494 4.07538 10.6492H12.9781C13.0841 10.6492 13.1859 10.6071 13.2609 10.5321L14.7224 9.07052C14.7615 9.03146 14.7615 8.96815 14.7224 8.92909L13.2599 7.46657C13.1849 7.39156 13.0832 7.34941 12.9771 7.34941H4.07538C3.63366 7.34928 3.27557 6.99136 3.27557 6.54961C3.27573 6.108 3.63376 5.74994 4.07538 5.74981H11.5432L11.1808 5.3875C10.8685 5.07514 10.8686 4.5681 11.1808 4.25566Z",
|
|
18
|
-
fill: color
|
|
19
|
-
})
|
|
20
|
-
});
|
|
21
|
-
};
|
|
22
|
-
//# sourceMappingURL=ImpliesIcon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","Svg","Path","jsx","_jsx","ASPECT_RATIO","ImpliesIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/ImpliesIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEJ,IAAA,CAACH,GAAG;IAACQ,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC5ET,IAAA,CAACF,IAAI;MACHY,CAAC,EAAC,8sBAA8sB;MAChtBF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import Svg, { Path } from 'react-native-svg';
|
|
5
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
-
export const LetterAIcon = ({
|
|
7
|
-
size = 16,
|
|
8
|
-
color
|
|
9
|
-
}) => {
|
|
10
|
-
return /*#__PURE__*/_jsx(Svg, {
|
|
11
|
-
width: size,
|
|
12
|
-
height: size,
|
|
13
|
-
viewBox: "0 0 16 16",
|
|
14
|
-
fill: "none",
|
|
15
|
-
children: /*#__PURE__*/_jsx(Path, {
|
|
16
|
-
d: "M10.352 14L9.92 11.2H5.152L3.424 14H1.584L8.608 2.8H10.16L12 14H10.352ZM6.064 9.68H9.712L8.976 4.96L6.064 9.68Z",
|
|
17
|
-
fill: color
|
|
18
|
-
})
|
|
19
|
-
});
|
|
20
|
-
};
|
|
21
|
-
//# sourceMappingURL=LetterAIcon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","Svg","Path","jsx","_jsx","LetterAIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LetterAIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEH,IAAA,CAACH,GAAG;IAACO,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC7DR,IAAA,CAACF,IAAI;MACHW,CAAC,EAAC,iHAAiH;MACnHF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import Svg, { Path } from 'react-native-svg';
|
|
5
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
-
export const LetterBIcon = ({
|
|
7
|
-
size = 16,
|
|
8
|
-
color
|
|
9
|
-
}) => {
|
|
10
|
-
return /*#__PURE__*/_jsx(Svg, {
|
|
11
|
-
width: size,
|
|
12
|
-
height: size,
|
|
13
|
-
viewBox: "0 0 16 16",
|
|
14
|
-
fill: "none",
|
|
15
|
-
children: /*#__PURE__*/_jsx(Path, {
|
|
16
|
-
d: "M9.752 2.8C11.592 2.8 12.488 3.984 12.488 5.248C12.488 6.496 11.688 7.76 10.152 8.08C11.448 8.432 12.04 9.424 12.04 10.464C12.04 12.208 10.504 14 7.848 14H3.544L6.136 2.8H9.752ZM5.496 12.512H8.04C9.64 12.512 10.408 11.472 10.408 10.464C10.408 9.616 9.752 8.864 8.52 8.864H6.344L5.496 12.512ZM6.632 7.552H8.712C10.088 7.552 10.856 6.56 10.856 5.648C10.856 4.8 10.328 4.288 9.224 4.288H7.384L6.632 7.552Z",
|
|
17
|
-
fill: color
|
|
18
|
-
})
|
|
19
|
-
});
|
|
20
|
-
};
|
|
21
|
-
//# sourceMappingURL=LetterBIcon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","Svg","Path","jsx","_jsx","LetterBIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LetterBIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEH,IAAA,CAACH,GAAG;IAACO,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC7DR,IAAA,CAACF,IAAI;MACHW,CAAC,EAAC,oZAAoZ;MACtZF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import Svg, { Path } from 'react-native-svg';
|
|
5
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
-
export const LetterCIcon = ({
|
|
7
|
-
size = 16,
|
|
8
|
-
color
|
|
9
|
-
}) => {
|
|
10
|
-
return /*#__PURE__*/_jsx(Svg, {
|
|
11
|
-
width: size,
|
|
12
|
-
height: size,
|
|
13
|
-
viewBox: "0 0 16 16",
|
|
14
|
-
fill: "none",
|
|
15
|
-
children: /*#__PURE__*/_jsx(Path, {
|
|
16
|
-
d: "M7.98 12.688C9.596 12.688 10.716 11.808 11.516 10.272L12.86 11.024C11.692 13.232 10.012 14.256 7.82 14.256C4.444 14.256 2.732 11.808 2.732 9.024C2.732 5.68 5.148 2.544 8.94 2.544C10.876 2.544 12.348 3.376 13.324 4.88L11.996 5.856C11.356 4.752 10.316 4.096 8.796 4.096C5.948 4.096 4.38 6.464 4.38 8.816C4.38 10.896 5.612 12.688 7.98 12.688Z",
|
|
17
|
-
fill: color
|
|
18
|
-
})
|
|
19
|
-
});
|
|
20
|
-
};
|
|
21
|
-
//# sourceMappingURL=LetterCIcon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","Svg","Path","jsx","_jsx","LetterCIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LetterCIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEH,IAAA,CAACH,GAAG;IAACO,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC7DR,IAAA,CAACF,IAAI;MACHW,CAAC,EAAC,qVAAqV;MACvVF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import Svg, { Circle } from 'react-native-svg';
|
|
5
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
-
const ASPECT_RATIO = 20 / 18;
|
|
7
|
-
export const ThereforeIcon = ({
|
|
8
|
-
size = 20,
|
|
9
|
-
color
|
|
10
|
-
}) => {
|
|
11
|
-
return /*#__PURE__*/_jsxs(Svg, {
|
|
12
|
-
width: size,
|
|
13
|
-
height: size / ASPECT_RATIO,
|
|
14
|
-
viewBox: "0 0 20 18",
|
|
15
|
-
fill: "none",
|
|
16
|
-
children: [/*#__PURE__*/_jsx(Circle, {
|
|
17
|
-
cx: "7.07972",
|
|
18
|
-
cy: "11.6398",
|
|
19
|
-
r: "1.8",
|
|
20
|
-
fill: color
|
|
21
|
-
}), /*#__PURE__*/_jsx(Circle, {
|
|
22
|
-
cx: "12.9203",
|
|
23
|
-
cy: "11.6398",
|
|
24
|
-
r: "1.8",
|
|
25
|
-
fill: color
|
|
26
|
-
}), /*#__PURE__*/_jsx(Circle, {
|
|
27
|
-
cx: "10",
|
|
28
|
-
cy: "6.36006",
|
|
29
|
-
r: "1.8",
|
|
30
|
-
fill: color
|
|
31
|
-
})]
|
|
32
|
-
});
|
|
33
|
-
};
|
|
34
|
-
//# sourceMappingURL=ThereforeIcon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","Svg","Circle","jsx","_jsx","jsxs","_jsxs","ASPECT_RATIO","ThereforeIcon","size","color","width","height","viewBox","fill","children","cx","cy","r"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/ThereforeIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,MAAM,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE9C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,aAAa,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAChE,oBACEJ,KAAA,CAACL,GAAG;IAACU,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC5EX,IAAA,CAACF,MAAM;MAACc,EAAE,EAAC,SAAS;MAACC,EAAE,EAAC,SAAS;MAACC,CAAC,EAAC,KAAK;MAACJ,IAAI,EAAEJ;IAAM,CAAE,CAAC,eACzDN,IAAA,CAACF,MAAM;MAACc,EAAE,EAAC,SAAS;MAACC,EAAE,EAAC,SAAS;MAACC,CAAC,EAAC,KAAK;MAACJ,IAAI,EAAEJ;IAAM,CAAE,CAAC,eACzDN,IAAA,CAACF,MAAM;MAACc,EAAE,EAAC,IAAI;MAACC,EAAE,EAAC,SAAS;MAACC,CAAC,EAAC,KAAK;MAACJ,IAAI,EAAEJ;IAAM,CAAE,CAAC;EAAA,CACjD,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import Svg, { Path } from 'react-native-svg';
|
|
5
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
-
const ASPECT_RATIO = 20 / 18;
|
|
7
|
-
export const TriangleIcon = ({
|
|
8
|
-
size = 20,
|
|
9
|
-
color
|
|
10
|
-
}) => {
|
|
11
|
-
return /*#__PURE__*/_jsx(Svg, {
|
|
12
|
-
width: size,
|
|
13
|
-
height: size / ASPECT_RATIO,
|
|
14
|
-
viewBox: "0 0 20 18",
|
|
15
|
-
fill: "none",
|
|
16
|
-
children: /*#__PURE__*/_jsx(Path, {
|
|
17
|
-
d: "M9.82983 3.56494C9.9081 3.43933 10.0913 3.43941 10.1697 3.56494L16.2488 13.3228C16.3317 13.4559 16.2366 13.6281 16.0798 13.6284H3.92065C3.76376 13.6284 3.66791 13.456 3.75073 13.3228L9.82983 3.56494Z",
|
|
18
|
-
stroke: color,
|
|
19
|
-
strokeWidth: "1.6",
|
|
20
|
-
strokeLinejoin: "round"
|
|
21
|
-
})
|
|
22
|
-
});
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=TriangleIcon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","Svg","Path","jsx","_jsx","ASPECT_RATIO","TriangleIcon","size","color","width","height","viewBox","fill","children","d","stroke","strokeWidth","strokeLinejoin"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/TriangleIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,YAAY,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC/D,oBACEJ,IAAA,CAACH,GAAG;IAACQ,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC5ET,IAAA,CAACF,IAAI;MACHY,CAAC,EAAC,yMAAyM;MAC3MC,MAAM,EAAEP,KAAM;MACdQ,WAAW,EAAC,KAAK;MACjBC,cAAc,EAAC;IAAO,CACvB;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
|
package/dist/typescript/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GeometryLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/GeometryLayout/GeometryLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAgBrE,eAAO,MAAM,cAAc,UAAW,mBAAmB,sBAExD,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SwitchableLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/SwitchableLayout/SwitchableLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAA;AAWhD,OAAO,EAAkB,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAK/D,eAAO,MAAM,gBAAgB,+CAK1B,qBAAqB,sBAsDvB,CAAA"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { SelectedLayout, LayoutOption } from './types';
|
|
3
|
-
type GetSelectOptionsProps = {
|
|
4
|
-
selectedLayout: SelectedLayout;
|
|
5
|
-
onBasicPressIn: () => void;
|
|
6
|
-
onSecondaryPressIn: () => void;
|
|
7
|
-
BasicIcon: (isSelected: boolean) => ReactNode;
|
|
8
|
-
SecondaryIcon: (isSelected: boolean) => ReactNode;
|
|
9
|
-
};
|
|
10
|
-
export declare function getSelectOptions({ selectedLayout, onBasicPressIn, onSecondaryPressIn, BasicIcon, SecondaryIcon, }: GetSelectOptionsProps): LayoutOption[];
|
|
11
|
-
export {};
|
|
12
|
-
//# sourceMappingURL=helpers.d.ts.map
|
package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/helpers.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/SwitchableLayout/helpers.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAEtD,KAAK,qBAAqB,GAAG;IAC3B,cAAc,EAAE,cAAc,CAAA;IAC9B,cAAc,EAAE,MAAM,IAAI,CAAA;IAC1B,kBAAkB,EAAE,MAAM,IAAI,CAAA;IAC9B,SAAS,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;IAC7C,aAAa,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;CAClD,CAAA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,cAAc,EACd,cAAc,EACd,kBAAkB,EAClB,SAAS,EACT,aAAa,GACd,EAAE,qBAAqB,GAAG,YAAY,EAAE,CAaxC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { KeyboardLayoutProps } from '../../types/types';
|
|
3
|
-
import { KEYBOARD_LAYOUTS } from '../../constants/keyboardLayouts';
|
|
4
|
-
export declare enum SelectedLayout {
|
|
5
|
-
BASIC = "basic",
|
|
6
|
-
SECONDARY = "secondary"
|
|
7
|
-
}
|
|
8
|
-
export type LayoutOption = {
|
|
9
|
-
key: SelectedLayout;
|
|
10
|
-
title: ReactNode;
|
|
11
|
-
onPressIn: () => void;
|
|
12
|
-
};
|
|
13
|
-
export type SwitchableLayoutConfig = {
|
|
14
|
-
secondaryKeyboardType: keyof typeof KEYBOARD_LAYOUTS;
|
|
15
|
-
BasicIcon: (isSelected: boolean) => ReactNode;
|
|
16
|
-
SecondaryIcon: (isSelected: boolean) => ReactNode;
|
|
17
|
-
};
|
|
18
|
-
export type SwitchableLayoutProps = KeyboardLayoutProps & {
|
|
19
|
-
config: SwitchableLayoutConfig;
|
|
20
|
-
};
|
|
21
|
-
//# sourceMappingURL=types.d.ts.map
|
package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/types.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/SwitchableLayout/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AAElE,oBAAY,cAAc;IACxB,KAAK,UAAU;IACf,SAAS,cAAc;CACxB;AAED,MAAM,MAAM,YAAY,GAAG;IACzB,GAAG,EAAE,cAAc,CAAA;IACnB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,EAAE,MAAM,IAAI,CAAA;CACtB,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,qBAAqB,EAAE,MAAM,OAAO,gBAAgB,CAAA;IACpD,SAAS,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;IAC7C,aAAa,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;CAClD,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,mBAAmB,GAAG;IACxD,MAAM,EAAE,sBAAsB,CAAA;CAC/B,CAAA"}
|
package/dist/typescript/commonjs/features/keyboard/constants/groups/geometry.constants.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"geometry.constants.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/constants/groups/geometry.constants.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAEjD,eAAO,MAAM,iBAAiB,EAAE,aAkB/B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GeometryIcon.d.ts","sourceRoot":"","sources":["../../../../../src/shared/icons/GeometryIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAGjD,eAAO,MAAM,YAAY,oBAA0B,SAAS,sBAa3D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ImpliesIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/ImpliesIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAKxC,eAAO,MAAM,WAAW,oBAA0B,SAAS,sBAS1D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LetterAIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/LetterAIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAGxC,eAAO,MAAM,WAAW,oBAA0B,SAAS,sBAS1D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LetterBIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/LetterBIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAGxC,eAAO,MAAM,WAAW,oBAA0B,SAAS,sBAS1D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LetterCIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/LetterCIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAGxC,eAAO,MAAM,WAAW,oBAA0B,SAAS,sBAS1D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ThereforeIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/ThereforeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAKxC,eAAO,MAAM,aAAa,oBAA0B,SAAS,sBAQ5D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"TriangleIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/TriangleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAKxC,eAAO,MAAM,YAAY,oBAA0B,SAAS,sBAW3D,CAAA"}
|
package/dist/typescript/module/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GeometryLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/GeometryLayout/GeometryLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAgBrE,eAAO,MAAM,cAAc,UAAW,mBAAmB,sBAExD,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SwitchableLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/SwitchableLayout/SwitchableLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAA;AAWhD,OAAO,EAAkB,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAK/D,eAAO,MAAM,gBAAgB,+CAK1B,qBAAqB,sBAsDvB,CAAA"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { SelectedLayout, LayoutOption } from './types';
|
|
3
|
-
type GetSelectOptionsProps = {
|
|
4
|
-
selectedLayout: SelectedLayout;
|
|
5
|
-
onBasicPressIn: () => void;
|
|
6
|
-
onSecondaryPressIn: () => void;
|
|
7
|
-
BasicIcon: (isSelected: boolean) => ReactNode;
|
|
8
|
-
SecondaryIcon: (isSelected: boolean) => ReactNode;
|
|
9
|
-
};
|
|
10
|
-
export declare function getSelectOptions({ selectedLayout, onBasicPressIn, onSecondaryPressIn, BasicIcon, SecondaryIcon, }: GetSelectOptionsProps): LayoutOption[];
|
|
11
|
-
export {};
|
|
12
|
-
//# sourceMappingURL=helpers.d.ts.map
|
package/dist/typescript/module/features/keyboard/components/SwitchableLayout/helpers.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/SwitchableLayout/helpers.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAEtD,KAAK,qBAAqB,GAAG;IAC3B,cAAc,EAAE,cAAc,CAAA;IAC9B,cAAc,EAAE,MAAM,IAAI,CAAA;IAC1B,kBAAkB,EAAE,MAAM,IAAI,CAAA;IAC9B,SAAS,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;IAC7C,aAAa,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;CAClD,CAAA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,cAAc,EACd,cAAc,EACd,kBAAkB,EAClB,SAAS,EACT,aAAa,GACd,EAAE,qBAAqB,GAAG,YAAY,EAAE,CAaxC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { KeyboardLayoutProps } from '../../types/types';
|
|
3
|
-
import { KEYBOARD_LAYOUTS } from '../../constants/keyboardLayouts';
|
|
4
|
-
export declare enum SelectedLayout {
|
|
5
|
-
BASIC = "basic",
|
|
6
|
-
SECONDARY = "secondary"
|
|
7
|
-
}
|
|
8
|
-
export type LayoutOption = {
|
|
9
|
-
key: SelectedLayout;
|
|
10
|
-
title: ReactNode;
|
|
11
|
-
onPressIn: () => void;
|
|
12
|
-
};
|
|
13
|
-
export type SwitchableLayoutConfig = {
|
|
14
|
-
secondaryKeyboardType: keyof typeof KEYBOARD_LAYOUTS;
|
|
15
|
-
BasicIcon: (isSelected: boolean) => ReactNode;
|
|
16
|
-
SecondaryIcon: (isSelected: boolean) => ReactNode;
|
|
17
|
-
};
|
|
18
|
-
export type SwitchableLayoutProps = KeyboardLayoutProps & {
|
|
19
|
-
config: SwitchableLayoutConfig;
|
|
20
|
-
};
|
|
21
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/SwitchableLayout/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AAElE,oBAAY,cAAc;IACxB,KAAK,UAAU;IACf,SAAS,cAAc;CACxB;AAED,MAAM,MAAM,YAAY,GAAG;IACzB,GAAG,EAAE,cAAc,CAAA;IACnB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,EAAE,MAAM,IAAI,CAAA;CACtB,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,qBAAqB,EAAE,MAAM,OAAO,gBAAgB,CAAA;IACpD,SAAS,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;IAC7C,aAAa,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,SAAS,CAAA;CAClD,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,mBAAmB,GAAG;IACxD,MAAM,EAAE,sBAAsB,CAAA;CAC/B,CAAA"}
|
package/dist/typescript/module/features/keyboard/constants/groups/geometry.constants.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"geometry.constants.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/constants/groups/geometry.constants.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAEjD,eAAO,MAAM,iBAAiB,EAAE,aAkB/B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GeometryIcon.d.ts","sourceRoot":"","sources":["../../../../../src/shared/icons/GeometryIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAGjD,eAAO,MAAM,YAAY,oBAA0B,SAAS,sBAa3D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ImpliesIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/ImpliesIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAKxC,eAAO,MAAM,WAAW,oBAA0B,SAAS,sBAS1D,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LetterAIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/icons/keyboard/LetterAIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAGxC,eAAO,MAAM,WAAW,oBAA0B,SAAS,sBAS1D,CAAA"}
|