@coorpacademy/app-review 0.10.0 → 0.10.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/es/actions/api/fetch-correction.d.ts +1 -2
- package/es/actions/api/fetch-rank.d.ts +1 -2
- package/es/actions/api/fetch-skill.d.ts +1 -2
- package/es/actions/api/fetch-skills.d.ts +1 -2
- package/es/actions/api/fetch-slide.d.ts +1 -2
- package/es/actions/api/fetch-slides-to-review-by-skill-ref.d.ts +1 -2
- package/es/actions/api/post-answer.d.ts +1 -2
- package/es/actions/api/post-progression.d.ts +1 -2
- package/es/actions/ui/navigation.d.ts +1 -1
- package/es/actions/ui/slides.d.ts +1 -1
- package/es/common/index.d.ts +1 -1
- package/es/configure-store.d.ts +1 -1
- package/es/configure-store.js +1 -1
- package/es/reducers/data/corrections.d.ts +1 -1
- package/es/reducers/data/current-skill.d.ts +1 -1
- package/es/reducers/data/progression.d.ts +1 -1
- package/es/reducers/data/skills.d.ts +1 -1
- package/es/reducers/data/slides.d.ts +1 -1
- package/es/reducers/ui/slide.d.ts +1 -0
- package/es/reducers/ui/slide.js +3 -2
- package/es/services/fetch-correction.d.ts +2 -0
- package/es/services/fetch-correction.js +14 -0
- package/es/services/fetch-rank.d.ts +2 -0
- package/es/services/fetch-rank.js +10 -0
- package/es/services/fetch-skill.d.ts +2 -0
- package/es/services/fetch-skill.js +11 -0
- package/es/services/fetch-skills.d.ts +2 -0
- package/es/services/fetch-skills.js +10 -0
- package/es/services/fetch-slide.d.ts +2 -0
- package/es/services/fetch-slide.js +10 -0
- package/es/services/fetch-slides-to-review-by-skill-ref.d.ts +2 -0
- package/es/services/fetch-slides-to-review-by-skill-ref.js +10 -0
- package/es/services/index.d.ts +2 -0
- package/es/services/index.js +18 -0
- package/es/services/post-answer.d.ts +2 -0
- package/es/services/post-answer.js +20 -0
- package/es/services/post-progression.d.ts +2 -0
- package/es/services/post-progression.js +21 -0
- package/es/services/tools/fetch-responses.d.ts +7 -0
- package/es/services/tools/fetch-responses.js +33 -0
- package/es/services/tools/sleep.d.ts +1 -0
- package/es/services/tools/sleep.js +3 -0
- package/es/types/common.d.ts +186 -10
- package/es/views/skills/index.d.ts +1 -1
- package/es/views/slides/index.d.ts +1 -1
- package/es/views/slides/index.js +2 -0
- package/es/views/slides/map-api-slide-to-ui.d.ts +1 -2
- package/lib/actions/api/fetch-correction.d.ts +1 -2
- package/lib/actions/api/fetch-rank.d.ts +1 -2
- package/lib/actions/api/fetch-skill.d.ts +1 -2
- package/lib/actions/api/fetch-skills.d.ts +1 -2
- package/lib/actions/api/fetch-slide.d.ts +1 -2
- package/lib/actions/api/fetch-slides-to-review-by-skill-ref.d.ts +1 -2
- package/lib/actions/api/post-answer.d.ts +1 -2
- package/lib/actions/api/post-progression.d.ts +1 -2
- package/lib/actions/ui/navigation.d.ts +1 -1
- package/lib/actions/ui/slides.d.ts +1 -1
- package/lib/common/index.d.ts +1 -1
- package/lib/configure-store.d.ts +1 -1
- package/lib/configure-store.js +2 -2
- package/lib/reducers/data/corrections.d.ts +1 -1
- package/lib/reducers/data/current-skill.d.ts +1 -1
- package/lib/reducers/data/progression.d.ts +1 -1
- package/lib/reducers/data/skills.d.ts +1 -1
- package/lib/reducers/data/slides.d.ts +1 -1
- package/lib/reducers/ui/slide.d.ts +1 -0
- package/lib/reducers/ui/slide.js +3 -2
- package/lib/services/fetch-correction.d.ts +2 -0
- package/lib/services/fetch-correction.js +21 -0
- package/lib/services/fetch-rank.d.ts +2 -0
- package/lib/services/fetch-rank.js +17 -0
- package/lib/services/fetch-skill.d.ts +2 -0
- package/lib/services/fetch-skill.js +18 -0
- package/lib/services/fetch-skills.d.ts +2 -0
- package/lib/services/fetch-skills.js +17 -0
- package/lib/services/fetch-slide.d.ts +2 -0
- package/lib/services/fetch-slide.js +17 -0
- package/lib/services/fetch-slides-to-review-by-skill-ref.d.ts +2 -0
- package/lib/services/fetch-slides-to-review-by-skill-ref.js +17 -0
- package/lib/services/index.d.ts +2 -0
- package/lib/services/index.js +22 -0
- package/lib/services/post-answer.d.ts +2 -0
- package/lib/services/post-answer.js +27 -0
- package/lib/services/post-progression.d.ts +2 -0
- package/lib/services/post-progression.js +28 -0
- package/lib/services/tools/fetch-responses.d.ts +7 -0
- package/lib/services/tools/fetch-responses.js +40 -0
- package/lib/services/tools/sleep.d.ts +1 -0
- package/lib/services/tools/sleep.js +7 -0
- package/lib/types/common.d.ts +186 -10
- package/lib/views/skills/index.d.ts +1 -1
- package/lib/views/slides/index.d.ts +1 -1
- package/lib/views/slides/index.js +2 -0
- package/lib/views/slides/map-api-slide-to-ui.d.ts +1 -2
- package/locales/bs/review.json +4 -1
- package/locales/cs/review.json +6 -6
- package/locales/de/review.json +7 -7
- package/locales/es/review.json +7 -7
- package/locales/hr/review.json +1 -1
- package/locales/hu/review.json +7 -7
- package/locales/hy/review.json +4 -1
- package/locales/id/review.json +3 -3
- package/locales/it/review.json +6 -6
- package/locales/ja/review.json +5 -5
- package/locales/ko/review.json +7 -7
- package/locales/nl/review.json +6 -6
- package/locales/pl/review.json +6 -6
- package/locales/pt/review.json +7 -7
- package/locales/ro/review.json +6 -6
- package/locales/sk/review.json +3 -3
- package/locales/th/review.json +5 -5
- package/locales/tl/review.json +7 -7
- package/locales/tr/review.json +2 -2
- package/locales/uk/review.json +7 -7
- package/locales/vi/review.json +3 -3
- package/locales/zh/review.json +4 -4
- package/locales/zh_TW/review.json +6 -6
- package/package.json +3 -4
package/locales/tr/review.json
CHANGED
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"button_text": "Bu beceriyi incele"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "Henüz
|
|
55
|
-
"text": "Farklı becerileri
|
|
54
|
+
"title": "Henüz revize etme becerin yok",
|
|
55
|
+
"text": "Farklı becerileri inceleyebilmen için önce kursları tamamlaman gerekir."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/uk/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Навички, які ви можете
|
|
47
|
-
"list_aria_label": "Контейнер
|
|
46
|
+
"list_title": "Навички, які ви можете оглянути",
|
|
47
|
+
"list_aria_label": "Оглянути Контейнер Навичок",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "Картка
|
|
50
|
-
"text": "{{total}}
|
|
51
|
-
"button_text": "
|
|
49
|
+
"aria_label": "Картка навички",
|
|
50
|
+
"text": "{{total}} питання, які слід переглянути",
|
|
51
|
+
"button_text": "Оглянути навичку"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "У вас ще немає навичок
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "У вас ще немає навичок до перегляду",
|
|
55
|
+
"text": "Спершу вам потрібно завершити курси, до того як ви зможете оглядати різні навички."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/vi/review.json
CHANGED
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"list_title": "Các kỹ năng bạn có thể ôn tập",
|
|
47
|
-
"list_aria_label": "
|
|
47
|
+
"list_aria_label": "Bộ chứa Ôn tập Kỹ năng",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Thẻ Kỹ năng",
|
|
50
|
-
"text": "{{total}} câu hỏi
|
|
50
|
+
"text": "{{total}} câu hỏi để ôn tập",
|
|
51
51
|
"button_text": "Ôn tập kỹ năng này"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
54
|
"title": "Bạn chưa có kỹ năng nào để ôn tập",
|
|
55
|
-
"text": "Trước tiên, bạn cần hoàn thành các khóa học
|
|
55
|
+
"text": "Trước tiên, bạn cần hoàn thành các khóa học rồi mới có thể ôn tập các kỹ năng khác nhau."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/zh/review.json
CHANGED
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"list_title": "您可以复习的技能",
|
|
47
|
-
"list_aria_label": "
|
|
47
|
+
"list_aria_label": "复习技能箱",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "技能卡",
|
|
50
|
-
"text": "
|
|
50
|
+
"text": "{{total}}个问题需要复习",
|
|
51
51
|
"button_text": "复习此技能"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "您还没有需要修改的技能",
|
|
55
|
+
"text": "您需要先完成课程,才能复习不同的技能。"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "您能複習的技能",
|
|
47
|
+
"list_aria_label": "複習技能",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "技能卡",
|
|
50
|
-
"text": "{{total}}
|
|
51
|
-
"button_text": "
|
|
50
|
+
"text": "共有 {{total}} 個問題可複習",
|
|
51
|
+
"button_text": "複習該技能"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "您還沒有能溫習的技能",
|
|
55
|
+
"text": "首先您必須完成課程,才能複習不同的技能。"
|
|
56
56
|
}
|
|
57
57
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coorpacademy/app-review",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.15.0"
|
|
@@ -35,10 +35,9 @@
|
|
|
35
35
|
"main": "lib/index.js",
|
|
36
36
|
"module": "es/index.js",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@coorpacademy/components": "10.29.
|
|
38
|
+
"@coorpacademy/components": "10.29.6",
|
|
39
39
|
"@coorpacademy/progression-engine": "11.5.2",
|
|
40
40
|
"@coorpacademy/redux-task": "1.1.6",
|
|
41
|
-
"@coorpacademy/review-services": "1.0.1",
|
|
42
41
|
"@coorpacademy/translate": "6.2.0",
|
|
43
42
|
"cross-fetch": "^3.1.5",
|
|
44
43
|
"jwt-decode": "^3.1.2",
|
|
@@ -73,5 +72,5 @@
|
|
|
73
72
|
"webpack-cli": "^4.10.0",
|
|
74
73
|
"webpack-dev-server": "^4.11.1"
|
|
75
74
|
},
|
|
76
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "9e2a5d00373677ec2c918c3f47647db88aa914db"
|
|
77
76
|
}
|