@orkg/scidquest 1.1.0 → 1.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 (62) hide show
  1. package/README.md +1 -1
  2. package/dist/assets/pdf.worker.min.mjs +28 -0
  3. package/dist/components/AI/AIConfigurationButton.d.ts +3 -0
  4. package/dist/components/AI/AIConfigurationDialog.d.ts +7 -0
  5. package/dist/components/TemplateQuestionaire/AIAssistantButton.d.ts +33 -0
  6. package/dist/components/TemplateQuestionaire/BufferedTextField.d.ts +19 -0
  7. package/dist/components/TemplateQuestionaire/FieldRow.d.ts +8 -0
  8. package/dist/components/TemplateQuestionaire/ImportDialog.d.ts +12 -0
  9. package/dist/components/TemplateQuestionaire/InfoTooltip.d.ts +7 -0
  10. package/dist/components/TemplateQuestionaire/InlineValidationFeedback.d.ts +8 -0
  11. package/dist/components/TemplateQuestionaire/NodeWrapper.d.ts +8 -0
  12. package/dist/components/TemplateQuestionaire/QuestionnaireAIHistoryDialog.d.ts +15 -0
  13. package/dist/components/TemplateQuestionaire/Questions/GroupQuestion.d.ts +30 -0
  14. package/dist/components/TemplateQuestionaire/Questions/MultiSelectQuestion.d.ts +31 -0
  15. package/dist/components/TemplateQuestionaire/Questions/QuestionRenderer.d.ts +32 -0
  16. package/dist/components/TemplateQuestionaire/Questions/RepeatGroupQuestion.d.ts +30 -0
  17. package/dist/components/TemplateQuestionaire/Questions/RepeatTextQuestion.d.ts +31 -0
  18. package/dist/components/TemplateQuestionaire/Questions/SelectQuestion.d.ts +31 -0
  19. package/dist/components/TemplateQuestionaire/Questions/TextQuestion.d.ts +32 -0
  20. package/dist/components/TemplateQuestionaire/SectionAccordion.d.ts +42 -0
  21. package/dist/components/TemplateQuestionaire/SuggestionBox.d.ts +30 -0
  22. package/dist/components/TemplateQuestionaire/TopSummaryBar.d.ts +43 -0
  23. package/dist/components/TemplateQuestionaire/ValidationStatusButton.d.ts +33 -0
  24. package/dist/context/QuestionnaireAIContext.d.ts +48 -0
  25. package/dist/hooks/useSuggestionGenerator.d.ts +30 -0
  26. package/dist/lib/adapter.d.ts +3 -0
  27. package/dist/lib/components/PDFUpload.d.ts +10 -0
  28. package/dist/lib/components/PdfViewer.d.ts +27 -0
  29. package/dist/lib/components/ResearchQuestionnaireApp.d.ts +32 -0
  30. package/dist/lib/components/ResearchQuestionnaireFieldAiWrapper.d.ts +25 -0
  31. package/dist/lib/components/TemplateQuestionnaire.d.ts +27 -0
  32. package/dist/lib/context.d.ts +14 -0
  33. package/dist/lib/hooks/useSuggestionGenerator.d.ts +26 -0
  34. package/dist/lib/index.d.ts +25 -0
  35. package/dist/lib/questionnaire-template-helpers.d.ts +10 -0
  36. package/dist/lib/research-questionnaire-workspace.d.ts +33 -0
  37. package/dist/lib/types.d.ts +121 -0
  38. package/dist/lib/utils/createLLMServiceFromAIService.d.ts +3 -0
  39. package/dist/scidquest.es.js +6441 -64432
  40. package/dist/semanticChunker-CNi7GgV8.js +84 -0
  41. package/dist/services/aiService.d.ts +39 -0
  42. package/dist/services/backendAIService.d.ts +191 -0
  43. package/dist/store/hooks.d.ts +4 -0
  44. package/dist/store/slices/aiSlice.d.ts +21 -0
  45. package/dist/store/store.d.ts +9 -0
  46. package/dist/types/context.d.ts +39 -0
  47. package/dist/utils/contextGatherer.d.ts +39 -0
  48. package/dist/utils/fuzzyPdfMatcher.d.ts +15 -0
  49. package/dist/utils/pdf.d.ts +25 -0
  50. package/dist/utils/pdfWorker.d.ts +10 -0
  51. package/dist/utils/robustPdfMatcher.d.ts +22 -0
  52. package/dist/utils/semanticChunker.d.ts +27 -0
  53. package/dist/utils/simplePdfMatcher.d.ts +13 -0
  54. package/dist/utils/structuredPdfExtractor.d.ts +34 -0
  55. package/dist/utils/suggestions.d.ts +88 -0
  56. package/dist/utils/theme.d.ts +6 -0
  57. package/dist/utils/tokenEstimator.d.ts +32 -0
  58. package/dist/utils/tokenPdfMatcher.d.ts +14 -0
  59. package/dist/utils/unicodeNormalizer.d.ts +13 -0
  60. package/dist/utils/validationRules.d.ts +51 -0
  61. package/package.json +30 -8
  62. package/dist/semanticChunker-CEckDeUn.js +0 -102
package/README.md CHANGED
@@ -302,7 +302,7 @@ function Panel({ pdfText }: { pdfText: string }) {
302
302
  setAnswers={setAnswers}
303
303
  layout="split"
304
304
  showPdfViewer
305
- onAnswersChange={(next) => console.log("answers", next)}
305
+ onAnswersChange={() => {}}
306
306
  />
307
307
  ```
308
308