agentic-ui-libs 0.4.0-beta.2 → 1.0.0-beta.10

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 (99) hide show
  1. package/dist/assets/style.css +4170 -1
  2. package/dist/features/dashboard/AgentListView.d.ts.map +1 -1
  3. package/dist/features/dashboard/AnalyticsChart.d.ts.map +1 -1
  4. package/dist/features/dashboard/AnalyticsTable.d.ts.map +1 -1
  5. package/dist/features/dashboard/Dashboard.d.ts.map +1 -1
  6. package/dist/features/dashboard/DashboardSection.d.ts.map +1 -1
  7. package/dist/features/dashboard/MetricCard.d.ts.map +1 -1
  8. package/dist/features/dashboard/ModelListView.d.ts.map +1 -1
  9. package/dist/features/dashboard/RunsSlider.d.ts.map +1 -1
  10. package/dist/features/dashboard/SectionControls.d.ts.map +1 -1
  11. package/dist/features/dashboard/ToolListView.d.ts.map +1 -1
  12. package/dist/features/debug-logs/DebugPanel.d.ts.map +1 -1
  13. package/dist/features/debug-logs/components/DataViewer.d.ts.map +1 -1
  14. package/dist/features/debug-logs/components/DebugCard.d.ts.map +1 -1
  15. package/dist/features/md-editor/MDEditor.d.ts +5 -0
  16. package/dist/features/md-editor/MDEditor.d.ts.map +1 -0
  17. package/dist/features/md-editor/components/AIContextMenu.d.ts +10 -0
  18. package/dist/features/md-editor/components/AIContextMenu.d.ts.map +1 -0
  19. package/dist/features/md-editor/components/AIRefinePanel.d.ts +5 -0
  20. package/dist/features/md-editor/components/AIRefinePanel.d.ts.map +1 -0
  21. package/dist/features/md-editor/components/DragHandle.d.ts +8 -0
  22. package/dist/features/md-editor/components/DragHandle.d.ts.map +1 -0
  23. package/dist/features/md-editor/components/InlineToolbar.d.ts +15 -0
  24. package/dist/features/md-editor/components/InlineToolbar.d.ts.map +1 -0
  25. package/dist/features/md-editor/components/MentionChip.d.ts +12 -0
  26. package/dist/features/md-editor/components/MentionChip.d.ts.map +1 -0
  27. package/dist/features/md-editor/components/SlashMenu.d.ts +16 -0
  28. package/dist/features/md-editor/components/SlashMenu.d.ts.map +1 -0
  29. package/dist/features/md-editor/components/TableToolbar.d.ts +9 -0
  30. package/dist/features/md-editor/components/TableToolbar.d.ts.map +1 -0
  31. package/dist/features/md-editor/components/VariableChip.d.ts +12 -0
  32. package/dist/features/md-editor/components/VariableChip.d.ts.map +1 -0
  33. package/dist/features/md-editor/components/VariableMenu.d.ts +27 -0
  34. package/dist/features/md-editor/components/VariableMenu.d.ts.map +1 -0
  35. package/dist/features/md-editor/components/index.d.ts +9 -0
  36. package/dist/features/md-editor/components/index.d.ts.map +1 -0
  37. package/dist/features/md-editor/extensions/AIRefineExtension.d.ts +20 -0
  38. package/dist/features/md-editor/extensions/AIRefineExtension.d.ts.map +1 -0
  39. package/dist/features/md-editor/extensions/MentionChip.d.ts +22 -0
  40. package/dist/features/md-editor/extensions/MentionChip.d.ts.map +1 -0
  41. package/dist/features/md-editor/extensions/MentionCommand.d.ts +13 -0
  42. package/dist/features/md-editor/extensions/MentionCommand.d.ts.map +1 -0
  43. package/dist/features/md-editor/extensions/SlashCommand.d.ts +31 -0
  44. package/dist/features/md-editor/extensions/SlashCommand.d.ts.map +1 -0
  45. package/dist/features/md-editor/extensions/VariableChip.d.ts +21 -0
  46. package/dist/features/md-editor/extensions/VariableChip.d.ts.map +1 -0
  47. package/dist/features/md-editor/extensions/index.d.ts +5 -0
  48. package/dist/features/md-editor/extensions/index.d.ts.map +1 -0
  49. package/dist/features/md-editor/index.d.ts +9 -0
  50. package/dist/features/md-editor/index.d.ts.map +1 -0
  51. package/dist/features/md-editor/types.d.ts +368 -0
  52. package/dist/features/md-editor/types.d.ts.map +1 -0
  53. package/dist/features/md-editor/utils/index.d.ts +2 -0
  54. package/dist/features/md-editor/utils/index.d.ts.map +1 -0
  55. package/dist/features/md-editor/utils/markdown.d.ts +19 -0
  56. package/dist/features/md-editor/utils/markdown.d.ts.map +1 -0
  57. package/dist/features/prompt-editor/PromptEditor.d.ts +14 -0
  58. package/dist/features/prompt-editor/PromptEditor.d.ts.map +1 -0
  59. package/dist/features/prompt-editor/RefinePanel.d.ts +41 -0
  60. package/dist/features/prompt-editor/RefinePanel.d.ts.map +1 -0
  61. package/dist/features/prompt-editor/components/AddToolbar.d.ts +8 -0
  62. package/dist/features/prompt-editor/components/AddToolbar.d.ts.map +1 -0
  63. package/dist/features/prompt-editor/components/ChatMessage.d.ts +13 -0
  64. package/dist/features/prompt-editor/components/ChatMessage.d.ts.map +1 -0
  65. package/dist/features/prompt-editor/components/CodeEditor.d.ts +8 -0
  66. package/dist/features/prompt-editor/components/CodeEditor.d.ts.map +1 -0
  67. package/dist/features/prompt-editor/components/ContentBlock.d.ts +23 -0
  68. package/dist/features/prompt-editor/components/ContentBlock.d.ts.map +1 -0
  69. package/dist/features/prompt-editor/components/EditableContent.d.ts +16 -0
  70. package/dist/features/prompt-editor/components/EditableContent.d.ts.map +1 -0
  71. package/dist/features/prompt-editor/components/FormattingToolbar.d.ts +10 -0
  72. package/dist/features/prompt-editor/components/FormattingToolbar.d.ts.map +1 -0
  73. package/dist/features/prompt-editor/components/Header.d.ts +2 -0
  74. package/dist/features/prompt-editor/components/Header.d.ts.map +1 -0
  75. package/dist/features/prompt-editor/components/InsertMenu.d.ts +14 -0
  76. package/dist/features/prompt-editor/components/InsertMenu.d.ts.map +1 -0
  77. package/dist/features/prompt-editor/components/RefineDropdown.d.ts +14 -0
  78. package/dist/features/prompt-editor/components/RefineDropdown.d.ts.map +1 -0
  79. package/dist/features/prompt-editor/components/Section.d.ts +27 -0
  80. package/dist/features/prompt-editor/components/Section.d.ts.map +1 -0
  81. package/dist/features/prompt-editor/components/SectionHeader.d.ts +15 -0
  82. package/dist/features/prompt-editor/components/SectionHeader.d.ts.map +1 -0
  83. package/dist/features/prompt-editor/components/icons.d.ts +16 -0
  84. package/dist/features/prompt-editor/components/icons.d.ts.map +1 -0
  85. package/dist/features/prompt-editor/data/insertableItems.d.ts +17 -0
  86. package/dist/features/prompt-editor/data/insertableItems.d.ts.map +1 -0
  87. package/dist/features/prompt-editor/index.d.ts +19 -0
  88. package/dist/features/prompt-editor/index.d.ts.map +1 -0
  89. package/dist/features/prompt-editor/services/EditorUtils.d.ts +48 -0
  90. package/dist/features/prompt-editor/services/EditorUtils.d.ts.map +1 -0
  91. package/dist/features/prompt-editor/services/PromptApiService.d.ts +22 -0
  92. package/dist/features/prompt-editor/services/PromptApiService.d.ts.map +1 -0
  93. package/dist/features/prompt-editor/types.d.ts +102 -0
  94. package/dist/features/prompt-editor/types.d.ts.map +1 -0
  95. package/dist/index.d.ts +2 -0
  96. package/dist/index.d.ts.map +1 -1
  97. package/dist/index.js +63937 -19750
  98. package/dist/ui-libs.umd.js +74597 -305
  99. package/package.json +34 -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.