@magmamath/students-features 0.9.100-rc.0 → 0.9.100

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.
Files changed (130) hide show
  1. package/.editorconfig +15 -0
  2. package/.eslintignore +2 -0
  3. package/.eslintrc +22 -0
  4. package/.gitattributes +3 -0
  5. package/.github/actions/setup/action.yml +37 -0
  6. package/.github/workflows/ci.yml +73 -0
  7. package/.gitignore +84 -0
  8. package/.idea/.gitignore +8 -0
  9. package/.idea/codeStyles/Project.xml +62 -0
  10. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  11. package/.idea/copilot.data.migration.agent.xml +6 -0
  12. package/.idea/copilot.data.migration.ask.xml +6 -0
  13. package/.idea/copilot.data.migration.ask2agent.xml +6 -0
  14. package/.idea/copilot.data.migration.edit.xml +6 -0
  15. package/.idea/inspectionProfiles/Project_Default.xml +8 -0
  16. package/.idea/jsLinters/eslint.xml +6 -0
  17. package/.idea/modules.xml +8 -0
  18. package/.idea/prettier.xml +7 -0
  19. package/.idea/students-features.iml +12 -0
  20. package/.idea/vcs.xml +6 -0
  21. package/.idea/workspace.xml +637 -0
  22. package/.nvmrc +1 -0
  23. package/.prettierrc +11 -0
  24. package/.release-it.json +17 -0
  25. package/.watchmanconfig +1 -0
  26. package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +541 -0
  27. package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +28 -0
  28. package/.yarn/releases/yarn-3.6.1.cjs +874 -0
  29. package/babel.config.js +5 -0
  30. package/bob.config.js +25 -0
  31. package/dist/commonjs/features/keyboard/components/UnitsLayout/hooks/useUnitTabs.js +3 -0
  32. package/dist/commonjs/features/keyboard/components/UnitsLayout/hooks/useUnitTabs.js.map +1 -1
  33. package/dist/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.js +9 -1
  34. package/dist/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.js.map +1 -1
  35. package/dist/commonjs/features/keyboard/components/UnitsLayout/types.js +1 -0
  36. package/dist/commonjs/features/keyboard/components/UnitsLayout/types.js.map +1 -1
  37. package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js +2 -1
  38. package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js.map +1 -1
  39. package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js +1 -1
  40. package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js.map +1 -1
  41. package/dist/commonjs/features/keyboard/types/MathKeysGroups/units.js +18 -3
  42. package/dist/commonjs/features/keyboard/types/MathKeysGroups/units.js.map +1 -1
  43. package/dist/commonjs/shared/icons/TimeIcon.js +37 -0
  44. package/dist/commonjs/shared/icons/TimeIcon.js.map +1 -0
  45. package/dist/commonjs/shared/translation/localization/ca.json +2 -1
  46. package/dist/commonjs/shared/translation/localization/de.json +2 -1
  47. package/dist/commonjs/shared/translation/localization/en.json +2 -1
  48. package/dist/commonjs/shared/translation/localization/gb.json +2 -1
  49. package/dist/commonjs/shared/translation/localization/sct.json +2 -1
  50. package/dist/commonjs/shared/translation/localization/sw.json +2 -1
  51. package/dist/module/features/keyboard/components/UnitsLayout/hooks/useUnitTabs.js +3 -0
  52. package/dist/module/features/keyboard/components/UnitsLayout/hooks/useUnitTabs.js.map +1 -1
  53. package/dist/module/features/keyboard/components/UnitsLayout/keyboardGroups.js +9 -1
  54. package/dist/module/features/keyboard/components/UnitsLayout/keyboardGroups.js.map +1 -1
  55. package/dist/module/features/keyboard/components/UnitsLayout/types.js +1 -0
  56. package/dist/module/features/keyboard/components/UnitsLayout/types.js.map +1 -1
  57. package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js +3 -2
  58. package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js.map +1 -1
  59. package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js +1 -1
  60. package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js.map +1 -1
  61. package/dist/module/features/keyboard/types/MathKeysGroups/units.js +18 -3
  62. package/dist/module/features/keyboard/types/MathKeysGroups/units.js.map +1 -1
  63. package/dist/module/shared/icons/TimeIcon.js +29 -0
  64. package/dist/module/shared/icons/TimeIcon.js.map +1 -0
  65. package/dist/module/shared/translation/localization/ca.json +2 -1
  66. package/dist/module/shared/translation/localization/de.json +2 -1
  67. package/dist/module/shared/translation/localization/en.json +2 -1
  68. package/dist/module/shared/translation/localization/gb.json +2 -1
  69. package/dist/module/shared/translation/localization/sct.json +2 -1
  70. package/dist/module/shared/translation/localization/sw.json +2 -1
  71. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/hooks/useUnitTabs.d.ts.map +1 -1
  72. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts +1 -0
  73. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts.map +1 -1
  74. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/types.d.ts +2 -1
  75. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/types.d.ts.map +1 -1
  76. package/dist/typescript/commonjs/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +1 -1
  77. package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/units.d.ts +15 -0
  78. package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/units.d.ts.map +1 -1
  79. package/dist/typescript/commonjs/shared/icons/TimeIcon.d.ts +4 -0
  80. package/dist/typescript/commonjs/shared/icons/TimeIcon.d.ts.map +1 -0
  81. package/dist/typescript/commonjs/shared/translation/constants.d.ts +6 -0
  82. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  83. package/dist/typescript/commonjs/shared/translation/model.d.ts +2 -0
  84. package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
  85. package/dist/typescript/module/features/keyboard/components/UnitsLayout/hooks/useUnitTabs.d.ts.map +1 -1
  86. package/dist/typescript/module/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts +1 -0
  87. package/dist/typescript/module/features/keyboard/components/UnitsLayout/keyboardGroups.d.ts.map +1 -1
  88. package/dist/typescript/module/features/keyboard/components/UnitsLayout/types.d.ts +2 -1
  89. package/dist/typescript/module/features/keyboard/components/UnitsLayout/types.d.ts.map +1 -1
  90. package/dist/typescript/module/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +1 -1
  91. package/dist/typescript/module/features/keyboard/types/MathKeysGroups/units.d.ts +15 -0
  92. package/dist/typescript/module/features/keyboard/types/MathKeysGroups/units.d.ts.map +1 -1
  93. package/dist/typescript/module/shared/icons/TimeIcon.d.ts +4 -0
  94. package/dist/typescript/module/shared/icons/TimeIcon.d.ts.map +1 -0
  95. package/dist/typescript/module/shared/translation/constants.d.ts +6 -0
  96. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  97. package/dist/typescript/module/shared/translation/model.d.ts +2 -0
  98. package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
  99. package/example/.expo/README.md +8 -0
  100. package/example/.expo/devices.json +3 -0
  101. package/example/.expo/web/cache/production/images/favicon/favicon-24272cdaeff82cc5facdaccd982a6f05b60c4504704bbf94c19a6388659880bb-contain-transparent/favicon-48.png +0 -0
  102. package/example/app.json +30 -0
  103. package/example/assets/adaptive-icon.png +0 -0
  104. package/example/assets/favicon.png +0 -0
  105. package/example/assets/icon.png +0 -0
  106. package/example/assets/splash-icon.png +0 -0
  107. package/example/babel.config.js +28 -0
  108. package/example/index.js +8 -0
  109. package/example/metro.config.js +18 -0
  110. package/example/package.json +25 -0
  111. package/example/src/App.tsx +8 -0
  112. package/example/tsconfig.json +6 -0
  113. package/example/yarn.lock +6552 -0
  114. package/package.json +1 -1
  115. package/src/features/keyboard/components/UnitsLayout/hooks/useUnitTabs.ts +4 -0
  116. package/src/features/keyboard/components/UnitsLayout/keyboardGroups.ts +11 -0
  117. package/src/features/keyboard/components/UnitsLayout/types.ts +1 -0
  118. package/src/features/keyboard/constants/keyboardGroupsByLocale.ts +2 -0
  119. package/src/features/keyboard/types/MathKeysGroups/basicOperators.tsx +1 -1
  120. package/src/features/keyboard/types/MathKeysGroups/units.tsx +15 -0
  121. package/src/shared/icons/TimeIcon.tsx +23 -0
  122. package/src/shared/translation/localization/ca.json +2 -1
  123. package/src/shared/translation/localization/de.json +2 -1
  124. package/src/shared/translation/localization/en.json +2 -1
  125. package/src/shared/translation/localization/gb.json +2 -1
  126. package/src/shared/translation/localization/sct.json +2 -1
  127. package/src/shared/translation/localization/sw.json +2 -1
  128. package/tsconfig.build.json +4 -0
  129. package/tsconfig.json +34 -0
  130. package/yarn.lock +8623 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.