@turquoisehealth/pit-viper 2.224.1-dev.2 → 2.224.1-dev.3

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 (63) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +79 -1
  2. package/_site/assets/css/pit-viper-consumer.css +79 -1
  3. package/_site/assets/css/pit-viper-v2-scoped.css +68 -1
  4. package/_site/assets/css/pit-viper-v2.css +118 -1
  5. package/_site/assets/css/pit-viper.css +79 -1
  6. package/package.json +1 -1
  7. package/pv-components/dist/stats/vue/ai/stats.html +1 -1
  8. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  9. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-action-button-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-hover-action-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-reasoning-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-sidebar-v2-stats.html +1 -1
  22. package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
  23. package/pv-components/dist/stats/web/pv-step-list-stats.html +4950 -0
  24. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  25. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  26. package/pv-components/dist/vue/ai/components/ai/PvReasoning/PvReasoning.vue.d.ts +11 -3
  27. package/pv-components/dist/vue/ai/components/ai/PvReasoning/types.d.ts +3 -0
  28. package/pv-components/dist/vue/ai/components/ai/PvStepList/PvStepList.vue.d.ts +7 -0
  29. package/pv-components/dist/vue/ai/components/ai/PvStepList/types.d.ts +42 -0
  30. package/pv-components/dist/vue/ai/components/ai/index.d.ts +2 -0
  31. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  32. package/pv-components/dist/vue/ai/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  33. package/pv-components/dist/vue/ai/components/base/PvSidebarV2/types.d.ts +2 -0
  34. package/pv-components/dist/vue/ai/pv-components-ai.mjs +490 -327
  35. package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -1
  36. package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  37. package/pv-components/dist/vue/base/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  38. package/pv-components/dist/vue/base/components/base/PvSidebarV2/types.d.ts +2 -0
  39. package/pv-components/dist/vue/base/pv-components-base.mjs +1091 -983
  40. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  41. package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  42. package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  43. package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/types.d.ts +2 -0
  44. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +13 -8
  45. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  46. package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +8 -4
  47. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +8 -4
  48. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +8 -4
  49. package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +197 -193
  50. package/pv-components/dist/web/components/pv-menu/pv-menu.js +8 -4
  51. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +8 -4
  52. package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +8 -4
  53. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +16 -8
  54. package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +640 -466
  55. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +230 -226
  56. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +8 -4
  57. package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +1431 -1322
  58. package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +213 -209
  59. package/pv-components/dist/web/components/pv-step-list/pv-step-list.js +6309 -0
  60. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +8 -4
  61. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +8 -4
  62. package/pv-components/dist/web/pv-components.iife.js +39 -39
  63. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -4930,7 +4930,7 @@ var drawChart = (function (exports) {
4930
4930
  </script>
4931
4931
  <script>
4932
4932
  /*<!--*/
4933
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"pv-components-ai.mjs","children":[{"name":"src","children":[{"name":"components","children":[{"name":"base","children":[{"name":"PvSpinner","children":[{"uid":"10083601-1","name":"PvSpinner.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-3","name":"PvSpinner.vue"}]},{"name":"PvButton","children":[{"uid":"10083601-5","name":"helpers.ts"},{"uid":"10083601-23","name":"PvButton.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-25","name":"PvButton.vue"}]},{"uid":"10083601-9","name":"baseProps.ts"},{"name":"PvIcon","children":[{"uid":"10083601-11","name":"PvIcon.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-13","name":"PvIcon.vue"}]},{"name":"PvCounterBadge","children":[{"uid":"10083601-15","name":"PvCounterBadge.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-17","name":"PvCounterBadge.vue?vue&type=style&index=0&scoped=013a5d76&lang.css"},{"uid":"10083601-21","name":"PvCounterBadge.vue"}]},{"name":"PvInput","children":[{"uid":"10083601-27","name":"PvInput.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-29","name":"PvInput.vue?vue&type=style&index=0&lang.css"},{"uid":"10083601-31","name":"PvInput.vue"}]},{"name":"PvTextArea","children":[{"uid":"10083601-45","name":"PvTextArea.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-47","name":"PvTextArea.vue"}]},{"name":"PvAccordion","children":[{"uid":"10083601-57","name":"PvAccordion.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-59","name":"PvAccordion.vue?vue&type=style&index=0&scoped=a64056ef&lang.css"},{"uid":"10083601-61","name":"PvAccordion.vue"}]}]},{"name":"ai","children":[{"name":"PvQuestion","children":[{"uid":"10083601-33","name":"PvQuestion.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-35","name":"PvQuestion.vue?vue&type=style&index=0&scoped=38f26601&lang.css"},{"uid":"10083601-37","name":"PvQuestion.vue"}]},{"name":"PvConfirmation","children":[{"uid":"10083601-39","name":"PvConfirmation.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-41","name":"PvConfirmation.vue?vue&type=style&index=0&scoped=c200deca&lang.css"},{"uid":"10083601-43","name":"PvConfirmation.vue"}]},{"name":"PvPromptInput","children":[{"uid":"10083601-49","name":"PvPromptInput.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-51","name":"PvPromptInput.vue?vue&type=style&index=0&scoped=155361b4&lang.css"},{"uid":"10083601-53","name":"PvPromptInput.vue"},{"uid":"10083601-55","name":"types.ts"}]},{"name":"PvReasoning","children":[{"uid":"10083601-63","name":"PvReasoning.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-65","name":"PvReasoning.vue?vue&type=style&index=0&scoped=6111e5ae&lang.css"},{"uid":"10083601-67","name":"PvReasoning.vue"}]},{"name":"PvTool","children":[{"uid":"10083601-69","name":"PvTool.vue?vue&type=script&setup=true&lang.ts"},{"uid":"10083601-71","name":"PvTool.vue?vue&type=style&index=0&scoped=a5e28b1a&lang.css"},{"uid":"10083601-73","name":"PvTool.vue"}]},{"uid":"10083601-75","name":"toolLifecycle.ts"},{"uid":"10083601-77","name":"useStickToBottom.ts"},{"uid":"10083601-79","name":"index.ts"}]}]},{"name":"web-components/utils.ts","uid":"10083601-7"}]},{"uid":"10083601-19","name":"\u0000plugin-vue:export-helper"}]}],"isRoot":true},"nodeParts":{"10083601-1":{"renderedLength":815,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-0"},"10083601-3":{"renderedLength":146,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-2"},"10083601-5":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-4"},"10083601-7":{"renderedLength":234,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-6"},"10083601-9":{"renderedLength":117,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-8"},"10083601-11":{"renderedLength":1101,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-10"},"10083601-13":{"renderedLength":134,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-12"},"10083601-15":{"renderedLength":1400,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-14"},"10083601-17":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-16"},"10083601-19":{"renderedLength":217,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-18"},"10083601-21":{"renderedLength":253,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-20"},"10083601-23":{"renderedLength":2662,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-22"},"10083601-25":{"renderedLength":142,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-24"},"10083601-27":{"renderedLength":3123,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-26"},"10083601-29":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-28"},"10083601-31":{"renderedLength":138,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-30"},"10083601-33":{"renderedLength":10712,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-32"},"10083601-35":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-34"},"10083601-37":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-36"},"10083601-39":{"renderedLength":3134,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-38"},"10083601-41":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-40"},"10083601-43":{"renderedLength":251,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-42"},"10083601-45":{"renderedLength":1956,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-44"},"10083601-47":{"renderedLength":150,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-46"},"10083601-49":{"renderedLength":4232,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-48"},"10083601-51":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-50"},"10083601-53":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-52"},"10083601-55":{"renderedLength":142,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-54"},"10083601-57":{"renderedLength":3142,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-56"},"10083601-59":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-58"},"10083601-61":{"renderedLength":241,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-60"},"10083601-63":{"renderedLength":3335,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-62"},"10083601-65":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-64"},"10083601-67":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-66"},"10083601-69":{"renderedLength":4900,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-68"},"10083601-71":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-70"},"10083601-73":{"renderedLength":219,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-72"},"10083601-75":{"renderedLength":230,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-74"},"10083601-77":{"renderedLength":1836,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-76"},"10083601-79":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"10083601-78"}},"nodeMetas":{"10083601-0":{"id":"/src/components/base/PvSpinner/PvSpinner.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-1"},"imported":[{"uid":"10083601-80"}],"importedBy":[{"uid":"10083601-2"}]},"10083601-2":{"id":"/src/components/base/PvSpinner/PvSpinner.vue","moduleParts":{"pv-components-ai.mjs":"10083601-3"},"imported":[{"uid":"10083601-0"}],"importedBy":[{"uid":"10083601-22"}]},"10083601-4":{"id":"/src/components/base/PvButton/helpers.ts","moduleParts":{"pv-components-ai.mjs":"10083601-5"},"imported":[],"importedBy":[{"uid":"10083601-22"}]},"10083601-6":{"id":"/src/web-components/utils.ts","moduleParts":{"pv-components-ai.mjs":"10083601-7"},"imported":[{"uid":"10083601-80"}],"importedBy":[{"uid":"10083601-10"}]},"10083601-8":{"id":"/src/components/base/baseProps.ts","moduleParts":{"pv-components-ai.mjs":"10083601-9"},"imported":[],"importedBy":[{"uid":"10083601-10"}]},"10083601-10":{"id":"/src/components/base/PvIcon/PvIcon.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-11"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-6"},{"uid":"10083601-8"}],"importedBy":[{"uid":"10083601-12"}]},"10083601-12":{"id":"/src/components/base/PvIcon/PvIcon.vue","moduleParts":{"pv-components-ai.mjs":"10083601-13"},"imported":[{"uid":"10083601-10"}],"importedBy":[{"uid":"10083601-32"},{"uid":"10083601-38"},{"uid":"10083601-62"},{"uid":"10083601-68"},{"uid":"10083601-22"},{"uid":"10083601-26"},{"uid":"10083601-56"}]},"10083601-14":{"id":"/src/components/base/PvCounterBadge/PvCounterBadge.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-15"},"imported":[{"uid":"10083601-80"}],"importedBy":[{"uid":"10083601-20"}]},"10083601-16":{"id":"/src/components/base/PvCounterBadge/PvCounterBadge.vue?vue&type=style&index=0&scoped=013a5d76&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-17"},"imported":[],"importedBy":[{"uid":"10083601-20"}]},"10083601-18":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"pv-components-ai.mjs":"10083601-19"},"imported":[],"importedBy":[{"uid":"10083601-36"},{"uid":"10083601-42"},{"uid":"10083601-52"},{"uid":"10083601-66"},{"uid":"10083601-72"},{"uid":"10083601-20"},{"uid":"10083601-60"}]},"10083601-20":{"id":"/src/components/base/PvCounterBadge/PvCounterBadge.vue","moduleParts":{"pv-components-ai.mjs":"10083601-21"},"imported":[{"uid":"10083601-14"},{"uid":"10083601-16"},{"uid":"10083601-18"}],"importedBy":[{"uid":"10083601-32"},{"uid":"10083601-22"},{"uid":"10083601-56"}]},"10083601-22":{"id":"/src/components/base/PvButton/PvButton.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-23"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-2"},{"uid":"10083601-4"},{"uid":"10083601-12"},{"uid":"10083601-20"}],"importedBy":[{"uid":"10083601-24"}]},"10083601-24":{"id":"/src/components/base/PvButton/PvButton.vue","moduleParts":{"pv-components-ai.mjs":"10083601-25"},"imported":[{"uid":"10083601-22"}],"importedBy":[{"uid":"10083601-32"},{"uid":"10083601-38"},{"uid":"10083601-48"}]},"10083601-26":{"id":"/src/components/base/PvInput/PvInput.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-27"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-12"}],"importedBy":[{"uid":"10083601-30"}]},"10083601-28":{"id":"/src/components/base/PvInput/PvInput.vue?vue&type=style&index=0&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-29"},"imported":[],"importedBy":[{"uid":"10083601-30"}]},"10083601-30":{"id":"/src/components/base/PvInput/PvInput.vue","moduleParts":{"pv-components-ai.mjs":"10083601-31"},"imported":[{"uid":"10083601-26"},{"uid":"10083601-28"}],"importedBy":[{"uid":"10083601-32"}]},"10083601-32":{"id":"/src/components/ai/PvQuestion/PvQuestion.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-33"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-24"},{"uid":"10083601-20"},{"uid":"10083601-12"},{"uid":"10083601-30"}],"importedBy":[{"uid":"10083601-36"}]},"10083601-34":{"id":"/src/components/ai/PvQuestion/PvQuestion.vue?vue&type=style&index=0&scoped=38f26601&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-35"},"imported":[],"importedBy":[{"uid":"10083601-36"}]},"10083601-36":{"id":"/src/components/ai/PvQuestion/PvQuestion.vue","moduleParts":{"pv-components-ai.mjs":"10083601-37"},"imported":[{"uid":"10083601-32"},{"uid":"10083601-34"},{"uid":"10083601-18"}],"importedBy":[{"uid":"10083601-78"}]},"10083601-38":{"id":"/src/components/ai/PvConfirmation/PvConfirmation.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-39"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-24"},{"uid":"10083601-12"}],"importedBy":[{"uid":"10083601-42"}]},"10083601-40":{"id":"/src/components/ai/PvConfirmation/PvConfirmation.vue?vue&type=style&index=0&scoped=c200deca&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-41"},"imported":[],"importedBy":[{"uid":"10083601-42"}]},"10083601-42":{"id":"/src/components/ai/PvConfirmation/PvConfirmation.vue","moduleParts":{"pv-components-ai.mjs":"10083601-43"},"imported":[{"uid":"10083601-38"},{"uid":"10083601-40"},{"uid":"10083601-18"}],"importedBy":[{"uid":"10083601-78"}]},"10083601-44":{"id":"/src/components/base/PvTextArea/PvTextArea.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-45"},"imported":[{"uid":"10083601-80"}],"importedBy":[{"uid":"10083601-46"}]},"10083601-46":{"id":"/src/components/base/PvTextArea/PvTextArea.vue","moduleParts":{"pv-components-ai.mjs":"10083601-47"},"imported":[{"uid":"10083601-44"}],"importedBy":[{"uid":"10083601-48"}]},"10083601-48":{"id":"/src/components/ai/PvPromptInput/PvPromptInput.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-49"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-24"},{"uid":"10083601-46"}],"importedBy":[{"uid":"10083601-52"}]},"10083601-50":{"id":"/src/components/ai/PvPromptInput/PvPromptInput.vue?vue&type=style&index=0&scoped=155361b4&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-51"},"imported":[],"importedBy":[{"uid":"10083601-52"}]},"10083601-52":{"id":"/src/components/ai/PvPromptInput/PvPromptInput.vue","moduleParts":{"pv-components-ai.mjs":"10083601-53"},"imported":[{"uid":"10083601-48"},{"uid":"10083601-50"},{"uid":"10083601-18"}],"importedBy":[{"uid":"10083601-78"}]},"10083601-54":{"id":"/src/components/ai/PvPromptInput/types.ts","moduleParts":{"pv-components-ai.mjs":"10083601-55"},"imported":[],"importedBy":[{"uid":"10083601-78"}]},"10083601-56":{"id":"/src/components/base/PvAccordion/PvAccordion.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-57"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-20"},{"uid":"10083601-12"}],"importedBy":[{"uid":"10083601-60"}]},"10083601-58":{"id":"/src/components/base/PvAccordion/PvAccordion.vue?vue&type=style&index=0&scoped=a64056ef&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-59"},"imported":[],"importedBy":[{"uid":"10083601-60"}]},"10083601-60":{"id":"/src/components/base/PvAccordion/PvAccordion.vue","moduleParts":{"pv-components-ai.mjs":"10083601-61"},"imported":[{"uid":"10083601-56"},{"uid":"10083601-58"},{"uid":"10083601-18"}],"importedBy":[{"uid":"10083601-62"},{"uid":"10083601-68"}]},"10083601-62":{"id":"/src/components/ai/PvReasoning/PvReasoning.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-63"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-60"},{"uid":"10083601-12"}],"importedBy":[{"uid":"10083601-66"}]},"10083601-64":{"id":"/src/components/ai/PvReasoning/PvReasoning.vue?vue&type=style&index=0&scoped=6111e5ae&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-65"},"imported":[],"importedBy":[{"uid":"10083601-66"}]},"10083601-66":{"id":"/src/components/ai/PvReasoning/PvReasoning.vue","moduleParts":{"pv-components-ai.mjs":"10083601-67"},"imported":[{"uid":"10083601-62"},{"uid":"10083601-64"},{"uid":"10083601-18"}],"importedBy":[{"uid":"10083601-78"}]},"10083601-68":{"id":"/src/components/ai/PvTool/PvTool.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"10083601-69"},"imported":[{"uid":"10083601-80"},{"uid":"10083601-60"},{"uid":"10083601-12"}],"importedBy":[{"uid":"10083601-72"}]},"10083601-70":{"id":"/src/components/ai/PvTool/PvTool.vue?vue&type=style&index=0&scoped=a5e28b1a&lang.css","moduleParts":{"pv-components-ai.mjs":"10083601-71"},"imported":[],"importedBy":[{"uid":"10083601-72"}]},"10083601-72":{"id":"/src/components/ai/PvTool/PvTool.vue","moduleParts":{"pv-components-ai.mjs":"10083601-73"},"imported":[{"uid":"10083601-68"},{"uid":"10083601-70"},{"uid":"10083601-18"}],"importedBy":[{"uid":"10083601-78"}]},"10083601-74":{"id":"/src/components/ai/toolLifecycle.ts","moduleParts":{"pv-components-ai.mjs":"10083601-75"},"imported":[],"importedBy":[{"uid":"10083601-78"}]},"10083601-76":{"id":"/src/components/ai/useStickToBottom.ts","moduleParts":{"pv-components-ai.mjs":"10083601-77"},"imported":[{"uid":"10083601-80"}],"importedBy":[{"uid":"10083601-78"}]},"10083601-78":{"id":"/src/components/ai/index.ts","moduleParts":{"pv-components-ai.mjs":"10083601-79"},"imported":[{"uid":"10083601-36"},{"uid":"10083601-42"},{"uid":"10083601-52"},{"uid":"10083601-54"},{"uid":"10083601-66"},{"uid":"10083601-72"},{"uid":"10083601-74"},{"uid":"10083601-76"}],"importedBy":[],"isEntry":true},"10083601-80":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"10083601-76"},{"uid":"10083601-32"},{"uid":"10083601-38"},{"uid":"10083601-48"},{"uid":"10083601-62"},{"uid":"10083601-68"},{"uid":"10083601-22"},{"uid":"10083601-14"},{"uid":"10083601-10"},{"uid":"10083601-26"},{"uid":"10083601-44"},{"uid":"10083601-56"},{"uid":"10083601-6"},{"uid":"10083601-0"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4933
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"pv-components-ai.mjs","children":[{"name":"src","children":[{"name":"components","children":[{"name":"base","children":[{"name":"PvSpinner","children":[{"uid":"8f1ccf7c-1","name":"PvSpinner.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-3","name":"PvSpinner.vue"}]},{"name":"PvButton","children":[{"uid":"8f1ccf7c-5","name":"helpers.ts"},{"uid":"8f1ccf7c-23","name":"PvButton.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-25","name":"PvButton.vue"}]},{"uid":"8f1ccf7c-9","name":"baseProps.ts"},{"name":"PvIcon","children":[{"uid":"8f1ccf7c-11","name":"PvIcon.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-13","name":"PvIcon.vue"}]},{"name":"PvCounterBadge","children":[{"uid":"8f1ccf7c-15","name":"PvCounterBadge.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-17","name":"PvCounterBadge.vue?vue&type=style&index=0&scoped=013a5d76&lang.css"},{"uid":"8f1ccf7c-21","name":"PvCounterBadge.vue"}]},{"name":"PvInput","children":[{"uid":"8f1ccf7c-27","name":"PvInput.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-29","name":"PvInput.vue?vue&type=style&index=0&lang.css"},{"uid":"8f1ccf7c-31","name":"PvInput.vue"}]},{"name":"PvTextArea","children":[{"uid":"8f1ccf7c-45","name":"PvTextArea.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-47","name":"PvTextArea.vue"}]},{"name":"PvAccordion","children":[{"uid":"8f1ccf7c-57","name":"PvAccordion.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-59","name":"PvAccordion.vue?vue&type=style&index=0&scoped=a64056ef&lang.css"},{"uid":"8f1ccf7c-61","name":"PvAccordion.vue"}]}]},{"name":"ai","children":[{"name":"PvQuestion","children":[{"uid":"8f1ccf7c-33","name":"PvQuestion.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-35","name":"PvQuestion.vue?vue&type=style&index=0&scoped=38f26601&lang.css"},{"uid":"8f1ccf7c-37","name":"PvQuestion.vue"}]},{"name":"PvConfirmation","children":[{"uid":"8f1ccf7c-39","name":"PvConfirmation.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-41","name":"PvConfirmation.vue?vue&type=style&index=0&scoped=c200deca&lang.css"},{"uid":"8f1ccf7c-43","name":"PvConfirmation.vue"}]},{"name":"PvPromptInput","children":[{"uid":"8f1ccf7c-49","name":"PvPromptInput.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-51","name":"PvPromptInput.vue?vue&type=style&index=0&scoped=155361b4&lang.css"},{"uid":"8f1ccf7c-53","name":"PvPromptInput.vue"},{"uid":"8f1ccf7c-55","name":"types.ts"}]},{"name":"PvStepList","children":[{"uid":"8f1ccf7c-65","name":"PvStepList.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-67","name":"PvStepList.vue?vue&type=style&index=0&scoped=5ab7d271&lang.css"},{"uid":"8f1ccf7c-69","name":"PvStepList.vue"}]},{"name":"PvReasoning","children":[{"uid":"8f1ccf7c-71","name":"PvReasoning.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-73","name":"PvReasoning.vue?vue&type=style&index=0&scoped=91e8312e&lang.css"},{"uid":"8f1ccf7c-75","name":"PvReasoning.vue"}]},{"name":"PvTool","children":[{"uid":"8f1ccf7c-77","name":"PvTool.vue?vue&type=script&setup=true&lang.ts"},{"uid":"8f1ccf7c-79","name":"PvTool.vue?vue&type=style&index=0&scoped=a5e28b1a&lang.css"},{"uid":"8f1ccf7c-81","name":"PvTool.vue"}]},{"uid":"8f1ccf7c-83","name":"toolLifecycle.ts"},{"uid":"8f1ccf7c-85","name":"useStickToBottom.ts"},{"uid":"8f1ccf7c-87","name":"index.ts"}]}]},{"name":"web-components/utils.ts","uid":"8f1ccf7c-7"},{"name":"composables/useSlotPresence.ts","uid":"8f1ccf7c-63"}]},{"uid":"8f1ccf7c-19","name":"\u0000plugin-vue:export-helper"}]}],"isRoot":true},"nodeParts":{"8f1ccf7c-1":{"renderedLength":815,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-0"},"8f1ccf7c-3":{"renderedLength":146,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-2"},"8f1ccf7c-5":{"renderedLength":348,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-4"},"8f1ccf7c-7":{"renderedLength":234,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-6"},"8f1ccf7c-9":{"renderedLength":117,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-8"},"8f1ccf7c-11":{"renderedLength":1103,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-10"},"8f1ccf7c-13":{"renderedLength":134,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-12"},"8f1ccf7c-15":{"renderedLength":1400,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-14"},"8f1ccf7c-17":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-16"},"8f1ccf7c-19":{"renderedLength":217,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-18"},"8f1ccf7c-21":{"renderedLength":253,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-20"},"8f1ccf7c-23":{"renderedLength":2662,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-22"},"8f1ccf7c-25":{"renderedLength":142,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-24"},"8f1ccf7c-27":{"renderedLength":3123,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-26"},"8f1ccf7c-29":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-28"},"8f1ccf7c-31":{"renderedLength":138,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-30"},"8f1ccf7c-33":{"renderedLength":10712,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-32"},"8f1ccf7c-35":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-34"},"8f1ccf7c-37":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-36"},"8f1ccf7c-39":{"renderedLength":3134,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-38"},"8f1ccf7c-41":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-40"},"8f1ccf7c-43":{"renderedLength":251,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-42"},"8f1ccf7c-45":{"renderedLength":1956,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-44"},"8f1ccf7c-47":{"renderedLength":150,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-46"},"8f1ccf7c-49":{"renderedLength":4232,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-48"},"8f1ccf7c-51":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-50"},"8f1ccf7c-53":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-52"},"8f1ccf7c-55":{"renderedLength":142,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-54"},"8f1ccf7c-57":{"renderedLength":3142,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-56"},"8f1ccf7c-59":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-58"},"8f1ccf7c-61":{"renderedLength":241,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-60"},"8f1ccf7c-63":{"renderedLength":3232,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-62"},"8f1ccf7c-65":{"renderedLength":3767,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-64"},"8f1ccf7c-67":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-66"},"8f1ccf7c-69":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-68"},"8f1ccf7c-71":{"renderedLength":5157,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-70"},"8f1ccf7c-73":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-72"},"8f1ccf7c-75":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-74"},"8f1ccf7c-77":{"renderedLength":4900,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-76"},"8f1ccf7c-79":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-78"},"8f1ccf7c-81":{"renderedLength":219,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-80"},"8f1ccf7c-83":{"renderedLength":230,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-82"},"8f1ccf7c-85":{"renderedLength":1836,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-84"},"8f1ccf7c-87":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"8f1ccf7c-86"}},"nodeMetas":{"8f1ccf7c-0":{"id":"/src/components/base/PvSpinner/PvSpinner.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-1"},"imported":[{"uid":"8f1ccf7c-88"}],"importedBy":[{"uid":"8f1ccf7c-2"}]},"8f1ccf7c-2":{"id":"/src/components/base/PvSpinner/PvSpinner.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-3"},"imported":[{"uid":"8f1ccf7c-0"}],"importedBy":[{"uid":"8f1ccf7c-22"}]},"8f1ccf7c-4":{"id":"/src/components/base/PvButton/helpers.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-5"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-22"}]},"8f1ccf7c-6":{"id":"/src/web-components/utils.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-7"},"imported":[{"uid":"8f1ccf7c-88"}],"importedBy":[{"uid":"8f1ccf7c-62"},{"uid":"8f1ccf7c-10"}]},"8f1ccf7c-8":{"id":"/src/components/base/baseProps.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-9"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-10"}]},"8f1ccf7c-10":{"id":"/src/components/base/PvIcon/PvIcon.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-11"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-6"},{"uid":"8f1ccf7c-8"}],"importedBy":[{"uid":"8f1ccf7c-12"}]},"8f1ccf7c-12":{"id":"/src/components/base/PvIcon/PvIcon.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-13"},"imported":[{"uid":"8f1ccf7c-10"}],"importedBy":[{"uid":"8f1ccf7c-32"},{"uid":"8f1ccf7c-38"},{"uid":"8f1ccf7c-70"},{"uid":"8f1ccf7c-64"},{"uid":"8f1ccf7c-76"},{"uid":"8f1ccf7c-22"},{"uid":"8f1ccf7c-26"},{"uid":"8f1ccf7c-56"}]},"8f1ccf7c-14":{"id":"/src/components/base/PvCounterBadge/PvCounterBadge.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-15"},"imported":[{"uid":"8f1ccf7c-88"}],"importedBy":[{"uid":"8f1ccf7c-20"}]},"8f1ccf7c-16":{"id":"/src/components/base/PvCounterBadge/PvCounterBadge.vue?vue&type=style&index=0&scoped=013a5d76&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-17"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-20"}]},"8f1ccf7c-18":{"id":"\u0000plugin-vue:export-helper","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-19"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-36"},{"uid":"8f1ccf7c-42"},{"uid":"8f1ccf7c-52"},{"uid":"8f1ccf7c-74"},{"uid":"8f1ccf7c-68"},{"uid":"8f1ccf7c-80"},{"uid":"8f1ccf7c-20"},{"uid":"8f1ccf7c-60"}]},"8f1ccf7c-20":{"id":"/src/components/base/PvCounterBadge/PvCounterBadge.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-21"},"imported":[{"uid":"8f1ccf7c-14"},{"uid":"8f1ccf7c-16"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-32"},{"uid":"8f1ccf7c-22"},{"uid":"8f1ccf7c-56"}]},"8f1ccf7c-22":{"id":"/src/components/base/PvButton/PvButton.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-23"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-2"},{"uid":"8f1ccf7c-4"},{"uid":"8f1ccf7c-12"},{"uid":"8f1ccf7c-20"}],"importedBy":[{"uid":"8f1ccf7c-24"}]},"8f1ccf7c-24":{"id":"/src/components/base/PvButton/PvButton.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-25"},"imported":[{"uid":"8f1ccf7c-22"}],"importedBy":[{"uid":"8f1ccf7c-32"},{"uid":"8f1ccf7c-38"},{"uid":"8f1ccf7c-48"}]},"8f1ccf7c-26":{"id":"/src/components/base/PvInput/PvInput.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-27"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-12"}],"importedBy":[{"uid":"8f1ccf7c-30"}]},"8f1ccf7c-28":{"id":"/src/components/base/PvInput/PvInput.vue?vue&type=style&index=0&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-29"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-30"}]},"8f1ccf7c-30":{"id":"/src/components/base/PvInput/PvInput.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-31"},"imported":[{"uid":"8f1ccf7c-26"},{"uid":"8f1ccf7c-28"}],"importedBy":[{"uid":"8f1ccf7c-32"}]},"8f1ccf7c-32":{"id":"/src/components/ai/PvQuestion/PvQuestion.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-33"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-24"},{"uid":"8f1ccf7c-20"},{"uid":"8f1ccf7c-12"},{"uid":"8f1ccf7c-30"}],"importedBy":[{"uid":"8f1ccf7c-36"}]},"8f1ccf7c-34":{"id":"/src/components/ai/PvQuestion/PvQuestion.vue?vue&type=style&index=0&scoped=38f26601&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-35"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-36"}]},"8f1ccf7c-36":{"id":"/src/components/ai/PvQuestion/PvQuestion.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-37"},"imported":[{"uid":"8f1ccf7c-32"},{"uid":"8f1ccf7c-34"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-38":{"id":"/src/components/ai/PvConfirmation/PvConfirmation.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-39"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-24"},{"uid":"8f1ccf7c-12"}],"importedBy":[{"uid":"8f1ccf7c-42"}]},"8f1ccf7c-40":{"id":"/src/components/ai/PvConfirmation/PvConfirmation.vue?vue&type=style&index=0&scoped=c200deca&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-41"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-42"}]},"8f1ccf7c-42":{"id":"/src/components/ai/PvConfirmation/PvConfirmation.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-43"},"imported":[{"uid":"8f1ccf7c-38"},{"uid":"8f1ccf7c-40"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-44":{"id":"/src/components/base/PvTextArea/PvTextArea.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-45"},"imported":[{"uid":"8f1ccf7c-88"}],"importedBy":[{"uid":"8f1ccf7c-46"}]},"8f1ccf7c-46":{"id":"/src/components/base/PvTextArea/PvTextArea.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-47"},"imported":[{"uid":"8f1ccf7c-44"}],"importedBy":[{"uid":"8f1ccf7c-48"}]},"8f1ccf7c-48":{"id":"/src/components/ai/PvPromptInput/PvPromptInput.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-49"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-24"},{"uid":"8f1ccf7c-46"}],"importedBy":[{"uid":"8f1ccf7c-52"}]},"8f1ccf7c-50":{"id":"/src/components/ai/PvPromptInput/PvPromptInput.vue?vue&type=style&index=0&scoped=155361b4&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-51"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-52"}]},"8f1ccf7c-52":{"id":"/src/components/ai/PvPromptInput/PvPromptInput.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-53"},"imported":[{"uid":"8f1ccf7c-48"},{"uid":"8f1ccf7c-50"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-54":{"id":"/src/components/ai/PvPromptInput/types.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-55"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-56":{"id":"/src/components/base/PvAccordion/PvAccordion.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-57"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-20"},{"uid":"8f1ccf7c-12"}],"importedBy":[{"uid":"8f1ccf7c-60"}]},"8f1ccf7c-58":{"id":"/src/components/base/PvAccordion/PvAccordion.vue?vue&type=style&index=0&scoped=a64056ef&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-59"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-60"}]},"8f1ccf7c-60":{"id":"/src/components/base/PvAccordion/PvAccordion.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-61"},"imported":[{"uid":"8f1ccf7c-56"},{"uid":"8f1ccf7c-58"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-70"},{"uid":"8f1ccf7c-76"}]},"8f1ccf7c-62":{"id":"/src/composables/useSlotPresence.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-63"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-6"}],"importedBy":[{"uid":"8f1ccf7c-70"}]},"8f1ccf7c-64":{"id":"/src/components/ai/PvStepList/PvStepList.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-65"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-12"}],"importedBy":[{"uid":"8f1ccf7c-68"}]},"8f1ccf7c-66":{"id":"/src/components/ai/PvStepList/PvStepList.vue?vue&type=style&index=0&scoped=5ab7d271&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-67"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-68"}]},"8f1ccf7c-68":{"id":"/src/components/ai/PvStepList/PvStepList.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-69"},"imported":[{"uid":"8f1ccf7c-64"},{"uid":"8f1ccf7c-66"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-86"},{"uid":"8f1ccf7c-70"}]},"8f1ccf7c-70":{"id":"/src/components/ai/PvReasoning/PvReasoning.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-71"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-60"},{"uid":"8f1ccf7c-12"},{"uid":"8f1ccf7c-62"},{"uid":"8f1ccf7c-68"}],"importedBy":[{"uid":"8f1ccf7c-74"}]},"8f1ccf7c-72":{"id":"/src/components/ai/PvReasoning/PvReasoning.vue?vue&type=style&index=0&scoped=91e8312e&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-73"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-74"}]},"8f1ccf7c-74":{"id":"/src/components/ai/PvReasoning/PvReasoning.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-75"},"imported":[{"uid":"8f1ccf7c-70"},{"uid":"8f1ccf7c-72"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-76":{"id":"/src/components/ai/PvTool/PvTool.vue?vue&type=script&setup=true&lang.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-77"},"imported":[{"uid":"8f1ccf7c-88"},{"uid":"8f1ccf7c-60"},{"uid":"8f1ccf7c-12"}],"importedBy":[{"uid":"8f1ccf7c-80"}]},"8f1ccf7c-78":{"id":"/src/components/ai/PvTool/PvTool.vue?vue&type=style&index=0&scoped=a5e28b1a&lang.css","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-79"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-80"}]},"8f1ccf7c-80":{"id":"/src/components/ai/PvTool/PvTool.vue","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-81"},"imported":[{"uid":"8f1ccf7c-76"},{"uid":"8f1ccf7c-78"},{"uid":"8f1ccf7c-18"}],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-82":{"id":"/src/components/ai/toolLifecycle.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-83"},"imported":[],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-84":{"id":"/src/components/ai/useStickToBottom.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-85"},"imported":[{"uid":"8f1ccf7c-88"}],"importedBy":[{"uid":"8f1ccf7c-86"}]},"8f1ccf7c-86":{"id":"/src/components/ai/index.ts","moduleParts":{"pv-components-ai.mjs":"8f1ccf7c-87"},"imported":[{"uid":"8f1ccf7c-36"},{"uid":"8f1ccf7c-42"},{"uid":"8f1ccf7c-52"},{"uid":"8f1ccf7c-54"},{"uid":"8f1ccf7c-74"},{"uid":"8f1ccf7c-68"},{"uid":"8f1ccf7c-80"},{"uid":"8f1ccf7c-82"},{"uid":"8f1ccf7c-84"}],"importedBy":[],"isEntry":true},"8f1ccf7c-88":{"id":"vue","moduleParts":{},"imported":[],"importedBy":[{"uid":"8f1ccf7c-84"},{"uid":"8f1ccf7c-32"},{"uid":"8f1ccf7c-38"},{"uid":"8f1ccf7c-48"},{"uid":"8f1ccf7c-70"},{"uid":"8f1ccf7c-64"},{"uid":"8f1ccf7c-76"},{"uid":"8f1ccf7c-62"},{"uid":"8f1ccf7c-22"},{"uid":"8f1ccf7c-14"},{"uid":"8f1ccf7c-10"},{"uid":"8f1ccf7c-26"},{"uid":"8f1ccf7c-44"},{"uid":"8f1ccf7c-56"},{"uid":"8f1ccf7c-6"},{"uid":"8f1ccf7c-0"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4934
4934
 
4935
4935
  const run = () => {
4936
4936
  const width = window.innerWidth;