@yungu-fed/question-editor 0.1.2 → 0.1.4

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 (116) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.d.ts +10 -6
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +6843 -2030
  5. package/dist/index.mjs +5381 -1583
  6. package/dist/model/classification.d.ts +10 -0
  7. package/dist/model/classification.d.ts.map +1 -0
  8. package/dist/model/line-connect.d.ts +28 -0
  9. package/dist/model/line-connect.d.ts.map +1 -0
  10. package/dist/model/matching.d.ts +27 -0
  11. package/dist/model/matching.d.ts.map +1 -0
  12. package/dist/model/question-element-specs.d.ts +3 -3
  13. package/dist/model/question-element-specs.d.ts.map +1 -1
  14. package/dist/model/question-structure.d.ts +56 -3
  15. package/dist/model/question-structure.d.ts.map +1 -1
  16. package/dist/model/rich-text-blank.d.ts.map +1 -1
  17. package/dist/model/text-marker.d.ts +18 -0
  18. package/dist/model/text-marker.d.ts.map +1 -0
  19. package/dist/model/types.d.ts +143 -8
  20. package/dist/model/types.d.ts.map +1 -1
  21. package/dist/question/content-editor/QuestionContentClassificationEditor.d.ts +14 -0
  22. package/dist/question/content-editor/QuestionContentClassificationEditor.d.ts.map +1 -0
  23. package/dist/question/content-editor/QuestionContentEditor.d.ts +3 -1
  24. package/dist/question/content-editor/QuestionContentEditor.d.ts.map +1 -1
  25. package/dist/question/content-editor/QuestionContentElementEditor.d.ts.map +1 -1
  26. package/dist/question/content-editor/QuestionContentLineConnectEditor.d.ts +15 -0
  27. package/dist/question/content-editor/QuestionContentLineConnectEditor.d.ts.map +1 -0
  28. package/dist/question/content-editor/QuestionContentMatchingEditor.d.ts +15 -0
  29. package/dist/question/content-editor/QuestionContentMatchingEditor.d.ts.map +1 -0
  30. package/dist/question/content-editor/QuestionContentOrderingEditor.d.ts +14 -0
  31. package/dist/question/content-editor/QuestionContentOrderingEditor.d.ts.map +1 -0
  32. package/dist/question/content-editor/QuestionContentSubquestionChildEditor.d.ts.map +1 -1
  33. package/dist/question/content-editor/QuestionContentTextMarkerEditor.d.ts +14 -0
  34. package/dist/question/content-editor/QuestionContentTextMarkerEditor.d.ts.map +1 -0
  35. package/dist/question/content-editor/QuestionContentWordBuilderEditor.d.ts +16 -0
  36. package/dist/question/content-editor/QuestionContentWordBuilderEditor.d.ts.map +1 -0
  37. package/dist/question/content-editor/QuestionRichTextField.d.ts.map +1 -1
  38. package/dist/question/content-editor/helpers.d.ts +42 -6
  39. package/dist/question/content-editor/helpers.d.ts.map +1 -1
  40. package/dist/question/content-editor/i18n.d.ts.map +1 -1
  41. package/dist/question/content-editor/structure.d.ts +3 -2
  42. package/dist/question/content-editor/structure.d.ts.map +1 -1
  43. package/dist/question/content-editor/subquestion-template.d.ts +4 -0
  44. package/dist/question/content-editor/subquestion-template.d.ts.map +1 -0
  45. package/dist/question/content-editor/types.d.ts +159 -13
  46. package/dist/question/content-editor/types.d.ts.map +1 -1
  47. package/dist/question/elements/text-marker/text-marker-plugin.d.ts +3 -0
  48. package/dist/question/elements/text-marker/text-marker-plugin.d.ts.map +1 -0
  49. package/dist/question/i18n/messages.d.ts +5 -0
  50. package/dist/question/i18n/messages.d.ts.map +1 -1
  51. package/dist/question/line-connect/lineConnectLines.d.ts +37 -0
  52. package/dist/question/line-connect/lineConnectLines.d.ts.map +1 -0
  53. package/dist/question/player/QuestionBlankGroupPlayer.d.ts.map +1 -1
  54. package/dist/question/player/QuestionClassificationPlayer.d.ts +14 -0
  55. package/dist/question/player/QuestionClassificationPlayer.d.ts.map +1 -0
  56. package/dist/question/player/QuestionFillTextContentPlayer.d.ts.map +1 -1
  57. package/dist/question/player/QuestionLineConnectPlayer.d.ts +14 -0
  58. package/dist/question/player/QuestionLineConnectPlayer.d.ts.map +1 -0
  59. package/dist/question/player/QuestionMatchingPlayer.d.ts +14 -0
  60. package/dist/question/player/QuestionMatchingPlayer.d.ts.map +1 -0
  61. package/dist/question/player/QuestionOptionGroupPlayer.d.ts.map +1 -1
  62. package/dist/question/player/QuestionOrderingPlayer.d.ts +14 -0
  63. package/dist/question/player/QuestionOrderingPlayer.d.ts.map +1 -0
  64. package/dist/question/player/QuestionPlayerComposite.d.ts.map +1 -1
  65. package/dist/question/player/QuestionPlayerElement.d.ts.map +1 -1
  66. package/dist/question/player/QuestionTextMarkerPlayer.d.ts +14 -0
  67. package/dist/question/player/QuestionTextMarkerPlayer.d.ts.map +1 -0
  68. package/dist/question/player/QuestionWordBuilderPlayer.d.ts +15 -0
  69. package/dist/question/player/QuestionWordBuilderPlayer.d.ts.map +1 -0
  70. package/dist/question/player/helpers.d.ts +13 -2
  71. package/dist/question/player/helpers.d.ts.map +1 -1
  72. package/dist/question/player/types.d.ts +32 -2
  73. package/dist/question/player/types.d.ts.map +1 -1
  74. package/dist/question/preview/QuestionCompositePreview.d.ts.map +1 -1
  75. package/dist/question/renderers/QuestionBlankGroupView.d.ts.map +1 -1
  76. package/dist/question/renderers/QuestionClassificationView.d.ts +10 -0
  77. package/dist/question/renderers/QuestionClassificationView.d.ts.map +1 -0
  78. package/dist/question/renderers/QuestionContentElementView.d.ts.map +1 -1
  79. package/dist/question/renderers/QuestionLineConnectView.d.ts +10 -0
  80. package/dist/question/renderers/QuestionLineConnectView.d.ts.map +1 -0
  81. package/dist/question/renderers/QuestionMatchingView.d.ts +10 -0
  82. package/dist/question/renderers/QuestionMatchingView.d.ts.map +1 -0
  83. package/dist/question/renderers/QuestionOptionGroupView.d.ts.map +1 -1
  84. package/dist/question/renderers/QuestionOrderingView.d.ts +10 -0
  85. package/dist/question/renderers/QuestionOrderingView.d.ts.map +1 -0
  86. package/dist/question/renderers/QuestionRichContentView.d.ts.map +1 -1
  87. package/dist/question/renderers/QuestionRichContentWithBlankView.d.ts +14 -0
  88. package/dist/question/renderers/QuestionRichContentWithBlankView.d.ts.map +1 -0
  89. package/dist/question/renderers/QuestionTextMarkerContent.d.ts +12 -0
  90. package/dist/question/renderers/QuestionTextMarkerContent.d.ts.map +1 -0
  91. package/dist/question/renderers/QuestionTextMarkerView.d.ts +10 -0
  92. package/dist/question/renderers/QuestionTextMarkerView.d.ts.map +1 -0
  93. package/dist/question/renderers/QuestionWordBuilderView.d.ts +11 -0
  94. package/dist/question/renderers/QuestionWordBuilderView.d.ts.map +1 -0
  95. package/dist/question/renderers/classificationAnswers.d.ts +4 -0
  96. package/dist/question/renderers/classificationAnswers.d.ts.map +1 -0
  97. package/dist/question/renderers/lineConnectAnswers.d.ts +4 -0
  98. package/dist/question/renderers/lineConnectAnswers.d.ts.map +1 -0
  99. package/dist/question/renderers/matchingAnswers.d.ts +4 -0
  100. package/dist/question/renderers/matchingAnswers.d.ts.map +1 -0
  101. package/dist/question/renderers/optionGroupAnswers.d.ts +4 -0
  102. package/dist/question/renderers/optionGroupAnswers.d.ts.map +1 -0
  103. package/dist/question/renderers/orderingAnswerGroups.d.ts +4 -0
  104. package/dist/question/renderers/orderingAnswerGroups.d.ts.map +1 -0
  105. package/dist/question/renderers/wordBuilderAnswers.d.ts +4 -0
  106. package/dist/question/renderers/wordBuilderAnswers.d.ts.map +1 -0
  107. package/dist/question/rich-text/RichTextField.d.ts +3 -2
  108. package/dist/question/rich-text/RichTextField.d.ts.map +1 -1
  109. package/dist/question/structure-editor/QuestionStructureCanvas.d.ts +2 -2
  110. package/dist/question/structure-editor/QuestionStructureCanvas.d.ts.map +1 -1
  111. package/dist/question/structure-editor/QuestionStructureEditor.d.ts.map +1 -1
  112. package/dist/question/structure-editor/QuestionStructureSettings.d.ts +6 -3
  113. package/dist/question/structure-editor/QuestionStructureSettings.d.ts.map +1 -1
  114. package/dist/question/structure-editor/structure-editor-labels.d.ts +22 -2
  115. package/dist/question/structure-editor/structure-editor-labels.d.ts.map +1 -1
  116. package/package.json +2 -2

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.