@roqua/quby-frontend 0.3.0 → 0.4.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 (94) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/README.md +4 -0
  3. package/lib/components/AnswerPage.d.ts.map +1 -1
  4. package/lib/components/AnswerPage.js +49 -12
  5. package/lib/components/AnswerPage.js.map +1 -1
  6. package/lib/components/Paginator.d.ts +3 -1
  7. package/lib/components/Paginator.d.ts.map +1 -1
  8. package/lib/components/Paginator.js +11 -8
  9. package/lib/components/Paginator.js.map +1 -1
  10. package/lib/components/PanelContent.d.ts +1 -0
  11. package/lib/components/PanelContent.d.ts.map +1 -1
  12. package/lib/components/PanelContent.js +2 -2
  13. package/lib/components/PanelContent.js.map +1 -1
  14. package/lib/components/PanelItem.d.ts +1 -0
  15. package/lib/components/PanelItem.d.ts.map +1 -1
  16. package/lib/components/PanelItem.js +1 -1
  17. package/lib/components/PanelItem.js.map +1 -1
  18. package/lib/components/QuestionDescription.d.ts +1 -1
  19. package/lib/components/QuestionDescription.d.ts.map +1 -1
  20. package/lib/components/QuestionDescription.js +2 -0
  21. package/lib/components/QuestionDescription.js.map +1 -1
  22. package/lib/components/QuestionWrapper.d.ts +3 -2
  23. package/lib/components/QuestionWrapper.d.ts.map +1 -1
  24. package/lib/components/QuestionWrapper.js +20 -3
  25. package/lib/components/QuestionWrapper.js.map +1 -1
  26. package/lib/components/ValidationErrors.js +15 -2
  27. package/lib/components/ValidationErrors.js.map +1 -1
  28. package/lib/components/items/QuestionItem.d.ts +1 -0
  29. package/lib/components/items/QuestionItem.d.ts.map +1 -1
  30. package/lib/components/items/QuestionItem.js +11 -11
  31. package/lib/components/items/QuestionItem.js.map +1 -1
  32. package/lib/components/questions/CheckBoxQuestion.d.ts +1 -0
  33. package/lib/components/questions/CheckBoxQuestion.d.ts.map +1 -1
  34. package/lib/components/questions/CheckBoxQuestion.js +9 -7
  35. package/lib/components/questions/CheckBoxQuestion.js.map +1 -1
  36. package/lib/components/questions/DatePartsQuestion.d.ts +1 -0
  37. package/lib/components/questions/DatePartsQuestion.d.ts.map +1 -1
  38. package/lib/components/questions/DatePartsQuestion.js +4 -4
  39. package/lib/components/questions/DatePartsQuestion.js.map +1 -1
  40. package/lib/components/questions/FloatQuestion.d.ts +2 -1
  41. package/lib/components/questions/FloatQuestion.d.ts.map +1 -1
  42. package/lib/components/questions/FloatQuestion.js +3 -3
  43. package/lib/components/questions/FloatQuestion.js.map +1 -1
  44. package/lib/components/questions/IntegerQuestion.d.ts +2 -1
  45. package/lib/components/questions/IntegerQuestion.d.ts.map +1 -1
  46. package/lib/components/questions/IntegerQuestion.js +3 -3
  47. package/lib/components/questions/IntegerQuestion.js.map +1 -1
  48. package/lib/components/questions/RadioQuestion.d.ts +1 -0
  49. package/lib/components/questions/RadioQuestion.d.ts.map +1 -1
  50. package/lib/components/questions/RadioQuestion.js +8 -6
  51. package/lib/components/questions/RadioQuestion.js.map +1 -1
  52. package/lib/components/questions/ScaleQuestion.d.ts +3 -2
  53. package/lib/components/questions/ScaleQuestion.d.ts.map +1 -1
  54. package/lib/components/questions/ScaleQuestion.js +7 -7
  55. package/lib/components/questions/ScaleQuestion.js.map +1 -1
  56. package/lib/components/questions/SelectQuestion.d.ts +1 -0
  57. package/lib/components/questions/SelectQuestion.d.ts.map +1 -1
  58. package/lib/components/questions/SelectQuestion.js +8 -4
  59. package/lib/components/questions/SelectQuestion.js.map +1 -1
  60. package/lib/components/questions/SliderQuestion.d.ts +1 -0
  61. package/lib/components/questions/SliderQuestion.d.ts.map +1 -1
  62. package/lib/components/questions/SliderQuestion.js +6 -6
  63. package/lib/components/questions/SliderQuestion.js.map +1 -1
  64. package/lib/components/questions/StringQuestion.d.ts +1 -0
  65. package/lib/components/questions/StringQuestion.d.ts.map +1 -1
  66. package/lib/components/questions/StringQuestion.js +4 -3
  67. package/lib/components/questions/StringQuestion.js.map +1 -1
  68. package/lib/components/questions/TextareaQuestion.d.ts +1 -0
  69. package/lib/components/questions/TextareaQuestion.d.ts.map +1 -1
  70. package/lib/components/questions/TextareaQuestion.js +3 -3
  71. package/lib/components/questions/TextareaQuestion.js.map +1 -1
  72. package/lib/core/mock_helpers.d.ts +2 -2
  73. package/lib/core/mock_helpers.d.ts.map +1 -1
  74. package/lib/core/mock_helpers.js +4 -1
  75. package/lib/core/mock_helpers.js.map +1 -1
  76. package/lib/core/questionnaire.d.ts +1 -0
  77. package/lib/core/questionnaire.d.ts.map +1 -1
  78. package/lib/core/questionnaire.js +1 -0
  79. package/lib/core/questionnaire.js.map +1 -1
  80. package/lib/core/questionnaire_json.d.ts +45 -17
  81. package/lib/core/questionnaire_json.d.ts.map +1 -1
  82. package/lib/core/response.d.ts +13 -4
  83. package/lib/core/response.d.ts.map +1 -1
  84. package/lib/core/response.js +57 -7
  85. package/lib/core/response.js.map +1 -1
  86. package/lib/core/validators.d.ts +3 -4
  87. package/lib/core/validators.d.ts.map +1 -1
  88. package/lib/core/validators.js +4 -1
  89. package/lib/core/validators.js.map +1 -1
  90. package/lib/core/visibility_rules.d.ts.map +1 -1
  91. package/lib/core/visibility_rules.js +3 -5
  92. package/lib/core/visibility_rules.js.map +1 -1
  93. package/package.json +2 -1
  94. package/lib/assets/assets/quby/application.css +0 -5003

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.