@wger-project/react-components 25.10.16 → 25.11.17

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 (52) hide show
  1. package/README.md +1 -1
  2. package/build/chunks/{browser-ponyfill-DL_vVusK.js → browser-ponyfill-CyEkMYuR.js} +3 -3
  3. package/build/chunks/{browser-ponyfill-DL_vVusK.js.map → browser-ponyfill-CyEkMYuR.js.map} +1 -1
  4. package/build/locales/de/translation.json +334 -334
  5. package/build/locales/en/translation.json +12 -2
  6. package/build/locales/fil/translation.json +3 -0
  7. package/build/locales/fr/translation.json +347 -337
  8. package/build/locales/hr/translation.json +344 -244
  9. package/build/locales/it/translation.json +333 -333
  10. package/build/locales/ko/translation.json +327 -327
  11. package/build/locales/pt_PT/translation.json +330 -330
  12. package/build/locales/sk/translation.json +26 -1
  13. package/build/locales/sl/translation.json +321 -321
  14. package/build/locales/ta/translation.json +325 -325
  15. package/build/locales/uk/translation.json +344 -334
  16. package/build/locales/zh_Hans/translation.json +332 -332
  17. package/build/main.js +137 -236
  18. package/build/main.js.map +1 -1
  19. package/package.json +13 -13
  20. package/src/components/BodyWeight/Form/WeightForm.tsx +3 -4
  21. package/src/components/BodyWeight/WeightChart/index.tsx +26 -29
  22. package/src/components/Exercises/Detail/Head/ExerciseDeleteDialog.tsx +3 -4
  23. package/src/components/Exercises/ExerciseOverview.tsx +4 -4
  24. package/src/components/Exercises/Filter/NameAutcompleter.tsx +41 -39
  25. package/src/components/Exercises/Filter/NameAutocompleter.test.tsx +2 -1
  26. package/src/components/Measurements/Screens/MeasurementCategoryDetail.test.tsx +4 -2
  27. package/src/components/Measurements/widgets/MeasurementChart.tsx +27 -30
  28. package/src/components/Nutrition/components/BmiCalculator.tsx +40 -42
  29. package/src/components/Nutrition/widgets/IngredientAutcompleter.tsx +1 -1
  30. package/src/components/Nutrition/widgets/charts/MacrosPieChart.tsx +17 -19
  31. package/src/components/Nutrition/widgets/charts/NutritionDiaryChart.tsx +39 -38
  32. package/src/components/Nutrition/widgets/charts/NutritionalValuesDashboardChart.tsx +27 -29
  33. package/src/components/Nutrition/widgets/charts/NutritionalValuesPlannedLoggedChart.tsx +20 -19
  34. package/src/components/Nutrition/widgets/forms/NutritionDiaryEntryForm.tsx +15 -4
  35. package/src/components/WorkoutRoutines/Detail/RoutineDetailsTable.tsx +3 -3
  36. package/src/components/WorkoutRoutines/Detail/WorkoutStats.tsx +17 -19
  37. package/src/components/WorkoutRoutines/models/Day.ts +16 -6
  38. package/src/components/WorkoutRoutines/models/SlotEntry.ts +7 -2
  39. package/src/components/WorkoutRoutines/widgets/DayDetails.tsx +4 -4
  40. package/src/components/WorkoutRoutines/widgets/LogWidgets.tsx +35 -38
  41. package/src/components/WorkoutRoutines/widgets/RoutineDetailsCard.tsx +8 -11
  42. package/src/components/WorkoutRoutines/widgets/SlotDetails.tsx +4 -4
  43. package/src/components/WorkoutRoutines/widgets/forms/DayForm.tsx +21 -9
  44. package/src/components/WorkoutRoutines/widgets/forms/DayTypeSelect.tsx +66 -0
  45. package/src/components/WorkoutRoutines/widgets/forms/SessionForm.test.tsx +0 -2
  46. package/src/components/WorkoutRoutines/widgets/forms/SessionLogsForm.tsx +4 -4
  47. package/src/components/WorkoutRoutines/widgets/forms/SlotEntryForm.test.tsx +12 -10
  48. package/src/components/WorkoutRoutines/widgets/forms/SlotEntryForm.tsx +2 -1
  49. package/src/components/WorkoutRoutines/widgets/forms/SlotForm.tsx +1 -1
  50. package/src/services/exerciseTranslation.ts +24 -9
  51. package/src/services/responseType.ts +3 -29
  52. package/src/tests/exercises/searchResponse.ts +47 -22
@@ -277,9 +277,19 @@
277
277
  "myo": "MYO",
278
278
  "partial": "Partial",
279
279
  "forced": "Forced",
280
- "tut": "TUT",
281
- "iso": "ISO",
280
+ "tut": "Time under tension",
281
+ "iso": "Isometric hold",
282
282
  "jump": "Jump"
283
+ },
284
+ "day": {
285
+ "custom": "Custom",
286
+ "enom": "Every minute on the minute",
287
+ "amrap": "As many rounds as possible",
288
+ "hiit": "High intensity interval training",
289
+ "tabata": "Tabata",
290
+ "edt": "Escalating density training",
291
+ "rft": "Rounds for time",
292
+ "afap": "As fast as possible"
283
293
  }
284
294
  },
285
295
  "measurements": {
@@ -0,0 +1,3 @@
1
+ {
2
+ "weight": "Timbang"
3
+ }