@roqua/quby-frontend 0.2.0 → 0.3.0

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 (47) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/lib/assets/assets/quby/application.css +5003 -0
  3. package/lib/assets/quby/application.css +0 -650
  4. package/lib/components/AnswerPage.js +17 -1
  5. package/lib/components/AnswerPage.js.map +1 -1
  6. package/lib/components/Paginator.js +17 -1
  7. package/lib/components/Paginator.js.map +1 -1
  8. package/lib/components/QuestionWrapper.d.ts +2 -2
  9. package/lib/components/QuestionWrapper.d.ts.map +1 -1
  10. package/lib/components/ValidationErrors.d.ts +2 -2
  11. package/lib/components/ValidationErrors.d.ts.map +1 -1
  12. package/lib/components/items/QuestionItem.d.ts.map +1 -1
  13. package/lib/components/items/QuestionItem.js +3 -3
  14. package/lib/components/items/QuestionItem.js.map +1 -1
  15. package/lib/components/questions/DatePartsQuestion.d.ts +9 -0
  16. package/lib/components/questions/DatePartsQuestion.d.ts.map +1 -0
  17. package/lib/components/questions/{DateQuestion.js → DatePartsQuestion.js} +15 -9
  18. package/lib/components/questions/DatePartsQuestion.js.map +1 -0
  19. package/lib/components/questions/IntegerQuestion.d.ts.map +1 -1
  20. package/lib/components/questions/IntegerQuestion.js +4 -1
  21. package/lib/components/questions/IntegerQuestion.js.map +1 -1
  22. package/lib/components/questions/StringQuestion.d.ts.map +1 -1
  23. package/lib/components/questions/StringQuestion.js +1 -2
  24. package/lib/components/questions/StringQuestion.js.map +1 -1
  25. package/lib/components/questions/TextareaQuestion.js +1 -1
  26. package/lib/components/questions/TextareaQuestion.js.map +1 -1
  27. package/lib/core/mock_helpers.d.ts +3 -2
  28. package/lib/core/mock_helpers.d.ts.map +1 -1
  29. package/lib/core/mock_helpers.js +14 -3
  30. package/lib/core/mock_helpers.js.map +1 -1
  31. package/lib/core/questionnaire_json.d.ts +13 -5
  32. package/lib/core/questionnaire_json.d.ts.map +1 -1
  33. package/lib/core/response.d.ts +13 -8
  34. package/lib/core/response.d.ts.map +1 -1
  35. package/lib/core/response.js +8 -1
  36. package/lib/core/response.js.map +1 -1
  37. package/lib/core/validators.d.ts +10 -4
  38. package/lib/core/validators.d.ts.map +1 -1
  39. package/lib/core/validators.js +163 -27
  40. package/lib/core/validators.js.map +1 -1
  41. package/lib/i18n.d.ts.map +1 -1
  42. package/lib/i18n.js +27 -18
  43. package/lib/i18n.js.map +1 -1
  44. package/package.json +2 -1
  45. package/lib/components/questions/DateQuestion.d.ts +0 -9
  46. package/lib/components/questions/DateQuestion.d.ts.map +0 -1
  47. package/lib/components/questions/DateQuestion.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.3.0
2
+
3
+ * Added date_parts question support
4
+ * date-fns dependency added
5
+ * valid_date validation added
6
+
1
7
  # 0.2.0
2
8
 
3
9
  * Basing narrowing of questions on the 'as' attribite instead of the 'type'