@magmamath/students-features 0.9.106 → 0.9.107-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.
Files changed (152) hide show
  1. package/dist/commonjs/features/voiceRecord/components/VoiceRecord.js +82 -0
  2. package/dist/commonjs/features/voiceRecord/components/VoiceRecord.js.map +1 -0
  3. package/dist/commonjs/features/voiceRecord/components/VoiceRecordButton.js +45 -0
  4. package/dist/commonjs/features/voiceRecord/components/VoiceRecordButton.js.map +1 -0
  5. package/dist/commonjs/features/voiceRecord/components/VoiceRecordDelete.js +32 -0
  6. package/dist/commonjs/features/voiceRecord/components/VoiceRecordDelete.js.map +1 -0
  7. package/dist/commonjs/features/voiceRecord/components/VoiceRecordDevider.js +27 -0
  8. package/dist/commonjs/features/voiceRecord/components/VoiceRecordDevider.js.map +1 -0
  9. package/dist/commonjs/features/voiceRecord/components/VoiceRecordTimer.js +44 -0
  10. package/dist/commonjs/features/voiceRecord/components/VoiceRecordTimer.js.map +1 -0
  11. package/dist/commonjs/features/voiceRecord/helpers.js +34 -0
  12. package/dist/commonjs/features/voiceRecord/helpers.js.map +1 -0
  13. package/dist/commonjs/features/voiceRecord/hooks/useVoiceRecorder.hook.js +36 -0
  14. package/dist/commonjs/features/voiceRecord/hooks/useVoiceRecorder.hook.js.map +1 -0
  15. package/dist/commonjs/features/voiceRecord/index.js +28 -0
  16. package/dist/commonjs/features/voiceRecord/index.js.map +1 -0
  17. package/dist/commonjs/features/voiceRecord/model/VoiceRecord.model.js +37 -0
  18. package/dist/commonjs/features/voiceRecord/model/VoiceRecord.model.js.map +1 -0
  19. package/dist/commonjs/features/voiceRecord/model/VoiceRecordApi.js +9 -0
  20. package/dist/commonjs/features/voiceRecord/model/VoiceRecordApi.js.map +1 -0
  21. package/dist/commonjs/index.js +12 -0
  22. package/dist/commonjs/index.js.map +1 -1
  23. package/dist/module/features/voiceRecord/components/VoiceRecord.js +74 -0
  24. package/dist/module/features/voiceRecord/components/VoiceRecord.js.map +1 -0
  25. package/dist/module/features/voiceRecord/components/VoiceRecordButton.js +39 -0
  26. package/dist/module/features/voiceRecord/components/VoiceRecordButton.js.map +1 -0
  27. package/dist/module/features/voiceRecord/components/VoiceRecordDelete.js +26 -0
  28. package/dist/module/features/voiceRecord/components/VoiceRecordDelete.js.map +1 -0
  29. package/dist/module/features/voiceRecord/components/VoiceRecordDevider.js +21 -0
  30. package/dist/module/features/voiceRecord/components/VoiceRecordDevider.js.map +1 -0
  31. package/dist/module/features/voiceRecord/components/VoiceRecordTimer.js +38 -0
  32. package/dist/module/features/voiceRecord/components/VoiceRecordTimer.js.map +1 -0
  33. package/dist/module/features/voiceRecord/helpers.js +28 -0
  34. package/dist/module/features/voiceRecord/helpers.js.map +1 -0
  35. package/dist/module/features/voiceRecord/hooks/useVoiceRecorder.hook.js +31 -0
  36. package/dist/module/features/voiceRecord/hooks/useVoiceRecorder.hook.js.map +1 -0
  37. package/dist/module/features/voiceRecord/index.js +5 -0
  38. package/dist/module/features/voiceRecord/index.js.map +1 -0
  39. package/dist/module/features/voiceRecord/model/VoiceRecord.model.js +32 -0
  40. package/dist/module/features/voiceRecord/model/VoiceRecord.model.js.map +1 -0
  41. package/dist/module/features/voiceRecord/model/VoiceRecordApi.js +4 -0
  42. package/dist/module/features/voiceRecord/model/VoiceRecordApi.js.map +1 -0
  43. package/dist/module/index.js +1 -0
  44. package/dist/module/index.js.map +1 -1
  45. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecord.d.ts +10 -0
  46. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecord.d.ts.map +1 -0
  47. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordButton.d.ts +10 -0
  48. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordButton.d.ts.map +1 -0
  49. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordDelete.d.ts +7 -0
  50. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordDelete.d.ts.map +1 -0
  51. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordDevider.d.ts +3 -0
  52. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordDevider.d.ts.map +1 -0
  53. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordTimer.d.ts +9 -0
  54. package/dist/typescript/commonjs/features/voiceRecord/components/VoiceRecordTimer.d.ts.map +1 -0
  55. package/dist/typescript/commonjs/features/voiceRecord/helpers.d.ts +4 -0
  56. package/dist/typescript/commonjs/features/voiceRecord/helpers.d.ts.map +1 -0
  57. package/dist/typescript/commonjs/features/voiceRecord/hooks/useVoiceRecorder.hook.d.ts +9 -0
  58. package/dist/typescript/commonjs/features/voiceRecord/hooks/useVoiceRecorder.hook.d.ts.map +1 -0
  59. package/dist/typescript/commonjs/features/voiceRecord/index.d.ts +3 -0
  60. package/dist/typescript/commonjs/features/voiceRecord/index.d.ts.map +1 -0
  61. package/dist/typescript/commonjs/features/voiceRecord/model/VoiceRecord.model.d.ts +17 -0
  62. package/dist/typescript/commonjs/features/voiceRecord/model/VoiceRecord.model.d.ts.map +1 -0
  63. package/dist/typescript/commonjs/features/voiceRecord/model/VoiceRecordApi.d.ts +3 -0
  64. package/dist/typescript/commonjs/features/voiceRecord/model/VoiceRecordApi.d.ts.map +1 -0
  65. package/dist/typescript/commonjs/index.d.ts +1 -0
  66. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  67. package/dist/typescript/module/features/voiceRecord/components/VoiceRecord.d.ts +10 -0
  68. package/dist/typescript/module/features/voiceRecord/components/VoiceRecord.d.ts.map +1 -0
  69. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordButton.d.ts +10 -0
  70. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordButton.d.ts.map +1 -0
  71. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordDelete.d.ts +7 -0
  72. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordDelete.d.ts.map +1 -0
  73. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordDevider.d.ts +3 -0
  74. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordDevider.d.ts.map +1 -0
  75. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordTimer.d.ts +9 -0
  76. package/dist/typescript/module/features/voiceRecord/components/VoiceRecordTimer.d.ts.map +1 -0
  77. package/dist/typescript/module/features/voiceRecord/helpers.d.ts +4 -0
  78. package/dist/typescript/module/features/voiceRecord/helpers.d.ts.map +1 -0
  79. package/dist/typescript/module/features/voiceRecord/hooks/useVoiceRecorder.hook.d.ts +9 -0
  80. package/dist/typescript/module/features/voiceRecord/hooks/useVoiceRecorder.hook.d.ts.map +1 -0
  81. package/dist/typescript/module/features/voiceRecord/index.d.ts +3 -0
  82. package/dist/typescript/module/features/voiceRecord/index.d.ts.map +1 -0
  83. package/dist/typescript/module/features/voiceRecord/model/VoiceRecord.model.d.ts +17 -0
  84. package/dist/typescript/module/features/voiceRecord/model/VoiceRecord.model.d.ts.map +1 -0
  85. package/dist/typescript/module/features/voiceRecord/model/VoiceRecordApi.d.ts +3 -0
  86. package/dist/typescript/module/features/voiceRecord/model/VoiceRecordApi.d.ts.map +1 -0
  87. package/dist/typescript/module/index.d.ts +1 -0
  88. package/dist/typescript/module/index.d.ts.map +1 -1
  89. package/package.json +7 -3
  90. package/src/features/voiceRecord/components/VoiceRecord.tsx +78 -0
  91. package/src/features/voiceRecord/components/VoiceRecordButton.tsx +44 -0
  92. package/src/features/voiceRecord/components/VoiceRecordDelete.tsx +24 -0
  93. package/src/features/voiceRecord/components/VoiceRecordDevider.tsx +17 -0
  94. package/src/features/voiceRecord/components/VoiceRecordTimer.tsx +37 -0
  95. package/src/features/voiceRecord/helpers.ts +30 -0
  96. package/src/features/voiceRecord/hooks/useVoiceRecorder.hook.ts +39 -0
  97. package/src/features/voiceRecord/index.ts +2 -0
  98. package/src/features/voiceRecord/model/VoiceRecord.model.ts +41 -0
  99. package/src/features/voiceRecord/model/VoiceRecordApi.ts +1 -0
  100. package/src/index.ts +1 -0
  101. package/.editorconfig +0 -15
  102. package/.eslintignore +0 -2
  103. package/.eslintrc +0 -22
  104. package/.gitattributes +0 -3
  105. package/.github/actions/setup/action.yml +0 -37
  106. package/.github/workflows/ci.yml +0 -73
  107. package/.gitignore +0 -84
  108. package/.idea/.gitignore +0 -8
  109. package/.idea/codeStyles/Project.xml +0 -62
  110. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  111. package/.idea/copilot.data.migration.agent.xml +0 -6
  112. package/.idea/copilot.data.migration.ask.xml +0 -6
  113. package/.idea/copilot.data.migration.ask2agent.xml +0 -6
  114. package/.idea/copilot.data.migration.edit.xml +0 -6
  115. package/.idea/inspectionProfiles/Project_Default.xml +0 -8
  116. package/.idea/jsLinters/eslint.xml +0 -6
  117. package/.idea/modules.xml +0 -8
  118. package/.idea/prettier.xml +0 -7
  119. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_30_12_2025,_11_06_[Changes]/shelved.patch +0 -18
  120. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_30_12_2025,_11_07_[Changes]/shelved.patch +0 -18
  121. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_30_12_2025__11_06__Changes_.xml +0 -4
  122. package/.idea/shelf/Uncommitted_changes_before_Checkout_at_30_12_2025__11_07__Changes_.xml +0 -4
  123. package/.idea/students-features.iml +0 -12
  124. package/.idea/vcs.xml +0 -6
  125. package/.idea/workspace.xml +0 -646
  126. package/.nvmrc +0 -1
  127. package/.prettierrc +0 -11
  128. package/.release-it.json +0 -17
  129. package/.watchmanconfig +0 -1
  130. package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +0 -541
  131. package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +0 -28
  132. package/.yarn/releases/yarn-3.6.1.cjs +0 -874
  133. package/babel.config.js +0 -5
  134. package/bob.config.js +0 -25
  135. package/example/.expo/README.md +0 -8
  136. package/example/.expo/devices.json +0 -3
  137. package/example/.expo/web/cache/production/images/favicon/favicon-24272cdaeff82cc5facdaccd982a6f05b60c4504704bbf94c19a6388659880bb-contain-transparent/favicon-48.png +0 -0
  138. package/example/app.json +0 -30
  139. package/example/assets/adaptive-icon.png +0 -0
  140. package/example/assets/favicon.png +0 -0
  141. package/example/assets/icon.png +0 -0
  142. package/example/assets/splash-icon.png +0 -0
  143. package/example/babel.config.js +0 -28
  144. package/example/index.js +0 -8
  145. package/example/metro.config.js +0 -18
  146. package/example/package.json +0 -25
  147. package/example/src/App.tsx +0 -8
  148. package/example/tsconfig.json +0 -6
  149. package/example/yarn.lock +0 -6552
  150. package/tsconfig.build.json +0 -4
  151. package/tsconfig.json +0 -34
  152. package/yarn.lock +0 -8623
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="EditMigrationStateService">
4
- <option name="migrationStatus" value="COMPLETED" />
5
- </component>
6
- </project>
@@ -1,8 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="EditorConfigUnusedDeclaration" enabled="false" level="WARNING" enabled_by_default="false" />
5
- <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
6
- <inspection_tool class="UnusedDefine" enabled="true" level="WARNING" enabled_by_default="true" />
7
- </profile>
8
- </component>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="EslintConfiguration">
4
- <option name="fix-on-save" value="true" />
5
- </component>
6
- </project>
package/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/students-features.iml" filepath="$PROJECT_DIR$/.idea/students-features.iml" />
6
- </modules>
7
- </component>
8
- </project>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="PrettierConfiguration">
4
- <option name="myConfigurationMode" value="AUTOMATIC" />
5
- <option name="myRunOnSave" value="true" />
6
- </component>
7
- </project>
@@ -1,18 +0,0 @@
1
- Index: package.json
2
- IDEA additional info:
3
- Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
4
- <+>{\n \"name\": \"@magmamath/students-features\",\n \"version\": \"0.9.104-rc.10\",\n \"description\": \"Magmamath features library\",\n \"source\": \"src/index.ts\",\n \"main\": \"src/index.ts\",\n \"react-native\": \"src/index.ts\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/typescript/module/index.d.ts\",\n \"files\": [\n \"src\",\n \"dist\",\n \"!dist/typescript/example\"\n ],\n \"scripts\": {\n \"clean\": \"del-cli dist\",\n \"prepare\": \"bob build\",\n \"release\": \"release-it\"\n },\n \"peerDependencies\": {\n \"@magmamath/react-native-ui\": \"*\",\n \"effector\": \"^23.2.3\",\n \"effector-react\": \"^23.2.1\",\n \"react\": \"*\",\n \"react-native\": \"*\",\n \"react-native-gesture-handler\": \"*\",\n \"react-native-modalfy\": \"*\",\n \"react-native-reanimated\": \">=0.3.16\",\n \"react-native-svg\": \"^15.10.0\"\n },\n \"devDependencies\": {\n \"@magmamath/react-native-ui\": \"0.4.61\",\n \"@react-native/eslint-config\": \"^0.73.1\",\n \"@release-it/conventional-changelog\": \"^9.0.2\",\n \"@types/jest\": \"^29.5.5\",\n \"@types/react\": \"^18.2.44\",\n \"del-cli\": \"^5.1.0\",\n \"effector\": \"^23.2.3\",\n \"effector-react\": \"^23.2.1\",\n \"eslint\": \"^8.51.0\",\n \"eslint-config-prettier\": \"^9.0.0\",\n \"eslint-plugin-prettier\": \"^5.0.1\",\n \"jest\": \"^29.7.0\",\n \"prettier\": \"^3.0.3\",\n \"react\": \"18.3.1\",\n \"react-native\": \"0.76.3\",\n \"react-native-builder-bob\": \"^0.33.3\",\n \"react-native-gesture-handler\": \"^2.28.0\",\n \"react-native-modalfy\": \"^3.7.0\",\n \"react-native-reanimated\": \"^3.17.2\",\n \"react-native-svg\": \"^15.10.0\",\n \"release-it\": \"^17.10.0\",\n \"typescript\": \"^5.2.2\"\n },\n \"resolutions\": {\n \"@types/react\": \"^18.2.44\"\n },\n \"repository\": \"https://github.com/matteappen/magmamath-features.git\",\n \"author\": \"magmamath <magmamath@gmail.com> (https://magmamath.com)\",\n \"publishConfig\": {\n \"access\": \"restricted\"\n },\n \"jest\": {\n \"preset\": \"react-native\",\n \"modulePathIgnorePatterns\": [\n \"<rootDir>/example/node_modules\",\n \"<rootDir>/dist/\"\n ]\n },\n \"commitlint\": {\n \"extends\": [\n \"@commitlint/config-conventional\"\n ]\n },\n \"create-react-native-library\": {\n \"languages\": \"js\",\n \"type\": \"library\",\n \"version\": \"0.44.3\"\n }\n}\n
5
- Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
6
- <+>UTF-8
7
- ===================================================================
8
- diff --git a/package.json b/package.json
9
- --- a/package.json (revision df14dcea77671cc4bcaa20dc729207b5a7da555b)
10
- +++ b/package.json (date 1767088527165)
11
- @@ -1,6 +1,6 @@
12
- {
13
- "name": "@magmamath/students-features",
14
- - "version": "0.9.104-rc.10",
15
- + "version": "0.9.14-rc.10",
16
- "description": "Magmamath features library",
17
- "source": "src/index.ts",
18
- "main": "src/index.ts",
@@ -1,18 +0,0 @@
1
- Index: package.json
2
- IDEA additional info:
3
- Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
4
- <+>{\n \"name\": \"@magmamath/students-features\",\n \"version\": \"0.9.14-rc.6\",\n \"description\": \"Magmamath features library\",\n \"source\": \"src/index.ts\",\n \"main\": \"src/index.ts\",\n \"react-native\": \"src/index.ts\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/typescript/module/index.d.ts\",\n \"files\": [\n \"src\",\n \"dist\",\n \"!dist/typescript/example\"\n ],\n \"scripts\": {\n \"clean\": \"del-cli dist\",\n \"prepare\": \"bob build\",\n \"release\": \"release-it\"\n },\n \"peerDependencies\": {\n \"@magmamath/react-native-ui\": \"*\",\n \"effector\": \"^23.2.3\",\n \"effector-react\": \"^23.2.1\",\n \"react\": \"*\",\n \"react-native\": \"*\",\n \"react-native-gesture-handler\": \"*\",\n \"react-native-modalfy\": \"*\",\n \"react-native-reanimated\": \">=0.3.16\",\n \"react-native-svg\": \"^15.10.0\"\n },\n \"devDependencies\": {\n \"@magmamath/react-native-ui\": \"0.4.61\",\n \"@react-native/eslint-config\": \"^0.73.1\",\n \"@release-it/conventional-changelog\": \"^9.0.2\",\n \"@types/jest\": \"^29.5.5\",\n \"@types/react\": \"^18.2.44\",\n \"del-cli\": \"^5.1.0\",\n \"effector\": \"^23.2.3\",\n \"effector-react\": \"^23.2.1\",\n \"eslint\": \"^8.51.0\",\n \"eslint-config-prettier\": \"^9.0.0\",\n \"eslint-plugin-prettier\": \"^5.0.1\",\n \"jest\": \"^29.7.0\",\n \"prettier\": \"^3.0.3\",\n \"react\": \"18.3.1\",\n \"react-native\": \"0.76.3\",\n \"react-native-builder-bob\": \"^0.33.3\",\n \"react-native-gesture-handler\": \"^2.28.0\",\n \"react-native-modalfy\": \"^3.7.0\",\n \"react-native-reanimated\": \"^3.17.2\",\n \"react-native-svg\": \"^15.10.0\",\n \"release-it\": \"^17.10.0\",\n \"typescript\": \"^5.2.2\"\n },\n \"resolutions\": {\n \"@types/react\": \"^18.2.44\"\n },\n \"repository\": \"https://github.com/matteappen/magmamath-features.git\",\n \"author\": \"magmamath <magmamath@gmail.com> (https://magmamath.com)\",\n \"publishConfig\": {\n \"access\": \"restricted\"\n },\n \"jest\": {\n \"preset\": \"react-native\",\n \"modulePathIgnorePatterns\": [\n \"<rootDir>/example/node_modules\",\n \"<rootDir>/dist/\"\n ]\n },\n \"commitlint\": {\n \"extends\": [\n \"@commitlint/config-conventional\"\n ]\n },\n \"create-react-native-library\": {\n \"languages\": \"js\",\n \"type\": \"library\",\n \"version\": \"0.44.3\"\n }\n}\n
5
- Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
6
- <+>UTF-8
7
- ===================================================================
8
- diff --git a/package.json b/package.json
9
- --- a/package.json (revision c4c33d0411d1dc03e5c235776e35c58c3e7b767c)
10
- +++ b/package.json (date 1767089196499)
11
- @@ -1,6 +1,6 @@
12
- {
13
- "name": "@magmamath/students-features",
14
- - "version": "0.9.14-rc.6",
15
- + "version": "0.9.14-rc.10",
16
- "description": "Magmamath features library",
17
- "source": "src/index.ts",
18
- "main": "src/index.ts",
@@ -1,4 +0,0 @@
1
- <changelist name="Uncommitted_changes_before_Checkout_at_30_12_2025,_11_06_[Changes]" date="1767089196557" recycled="true" deleted="true">
2
- <option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_30_12_2025,_11_06_[Changes]/shelved.patch" />
3
- <option name="DESCRIPTION" value="Uncommitted changes before Checkout at 30/12/2025, 11:06 [Changes]" />
4
- </changelist>
@@ -1,4 +0,0 @@
1
- <changelist name="Uncommitted_changes_before_Checkout_at_30_12_2025,_11_07_[Changes]" date="1767089274852" recycled="true" deleted="true">
2
- <option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_30_12_2025,_11_07_[Changes]/shelved.patch" />
3
- <option name="DESCRIPTION" value="Uncommitted changes before Checkout at 30/12/2025, 11:07 [Changes]" />
4
- </changelist>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="WEB_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <content url="file://$MODULE_DIR$">
5
- <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
- <excludeFolder url="file://$MODULE_DIR$/temp" />
7
- <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
- </content>
9
- <orderEntry type="inheritedJdk" />
10
- <orderEntry type="sourceFolder" forTests="false" />
11
- </component>
12
- </module>
package/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="Git" />
5
- </component>
6
- </project>