@blueking/chat-x 0.0.51 → 0.0.52-dev.2

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 (199) hide show
  1. package/README.md +15 -8
  2. package/dist/ag-ui/types/contents.d.ts +2 -0
  3. package/dist/ag-ui/types/messages.d.ts +6 -1
  4. package/dist/common/constants.d.ts +2 -0
  5. package/dist/components/ai-buttons/add-menu-btn/add-menu-btn.vue.d.ts +24 -0
  6. package/dist/components/chat-content/collapsible-content/collapsible-content.vue.d.ts +28 -0
  7. package/dist/components/chat-content/file-content/upload-file-item.vue.d.ts +5 -2
  8. package/dist/components/chat-content/file-content/upload-image-item.vue.d.ts +1 -0
  9. package/dist/components/chat-content/flow-agent-content/use-flow-node-actions.d.ts +1 -1
  10. package/dist/components/chat-input/ai-slash-input/ai-slash-input.vue.d.ts +21 -10
  11. package/dist/components/chat-input/ai-slash-input/command.d.ts +6 -3
  12. package/dist/components/chat-input/ai-slash-input/constants.d.ts +2 -0
  13. package/dist/components/chat-input/ai-slash-input/use-menu-trigger.d.ts +17 -0
  14. package/dist/components/chat-input/build-default-placeholder.d.ts +9 -3
  15. package/dist/components/chat-input/chat-input.vue.d.ts +30 -18
  16. package/dist/components/chat-input/input-menu/constants.d.ts +60 -0
  17. package/dist/components/chat-input/input-menu/index.d.ts +4 -0
  18. package/dist/components/chat-input/input-menu/input-menu-option.vue.d.ts +14 -0
  19. package/dist/components/chat-input/input-menu/input-menu-panel.vue.d.ts +17 -0
  20. package/dist/components/chat-input/input-menu/use-input-menu.d.ts +22 -0
  21. package/dist/components/chat-input/model-selector/types.d.ts +3 -2
  22. package/dist/components/chat-message/message-container/message-container.vue.d.ts +1 -1
  23. package/dist/components/chat-message/user-message/user-message.vue.d.ts +1 -1
  24. package/dist/components/mention/create-mention-tippy.d.ts +27 -0
  25. package/dist/components/mention/index.d.ts +4 -0
  26. package/dist/components/{chat-input/ai-slash-input/ai-prompt-list/ai-prompt-list.vue.d.ts → mention/mention-popover.vue.d.ts} +3 -2
  27. package/dist/components/{chat-input/ai-slash-input/ai-skill-list/ai-skill-list.vue.d.ts → mention/mention-tag.vue.d.ts} +7 -3
  28. package/dist/components/{chat-input/ai-slash-input/ai-slash-menu/ai-slash-menu.vue.d.ts → mention/mention-text.vue.d.ts} +3 -3
  29. package/dist/components/resource-icon/index.d.ts +1 -0
  30. package/dist/components/resource-icon/resource-icon.vue.d.ts +11 -0
  31. package/dist/composables/index.d.ts +1 -0
  32. package/dist/composables/use-artifact-preview.d.ts +5 -2
  33. package/dist/composables/use-common.d.ts +0 -9
  34. package/dist/composables/use-global-config.d.ts +4 -0
  35. package/dist/composables/use-input-mention.d.ts +13 -0
  36. package/dist/composables/use-message-group.d.ts +1011 -72
  37. package/dist/icons/index.d.ts +1 -0
  38. package/dist/icons/input.d.ts +21 -0
  39. package/dist/icons/menu-item.d.ts +22 -0
  40. package/dist/index.css +1 -1
  41. package/dist/index.js +5116 -4595
  42. package/dist/index.js.map +1 -1
  43. package/dist/lang/lang.d.ts +13 -3
  44. package/dist/mcp/generated/docs/activity-message.md +3 -3
  45. package/dist/mcp/generated/docs/add-menu-btn.md +91 -0
  46. package/dist/mcp/generated/docs/ai-selection.md +1 -1
  47. package/dist/mcp/generated/docs/ai-slash-input.md +72 -26
  48. package/dist/mcp/generated/docs/assistant-message.md +7 -1
  49. package/dist/mcp/generated/docs/chat-container.md +45 -6
  50. package/dist/mcp/generated/docs/chat-input.md +327 -483
  51. package/dist/mcp/generated/docs/collapsible-content.md +78 -0
  52. package/dist/mcp/generated/docs/constants.md +36 -3
  53. package/dist/mcp/generated/docs/execution-summary.md +1 -23
  54. package/dist/mcp/generated/docs/file-artifact-panel.md +24 -5
  55. package/dist/mcp/generated/docs/file-content.md +4 -0
  56. package/dist/mcp/generated/docs/file-upload-btn.md +15 -12
  57. package/dist/mcp/generated/docs/flow-agent-content.md +10 -12
  58. package/dist/mcp/generated/docs/input-menu-panel.md +166 -0
  59. package/dist/mcp/generated/docs/mention-tag.md +83 -0
  60. package/dist/mcp/generated/docs/mention-text.md +86 -0
  61. package/dist/mcp/generated/docs/message-container.md +1 -1
  62. package/dist/mcp/generated/docs/message-render.md +1 -1
  63. package/dist/mcp/generated/docs/message-tools.md +15 -4
  64. package/dist/mcp/generated/docs/messages.md +3 -0
  65. package/dist/mcp/generated/docs/model-selector.md +4 -2
  66. package/dist/mcp/generated/docs/overflow-tips.md +3 -3
  67. package/dist/mcp/generated/docs/resource-icon.md +102 -0
  68. package/dist/mcp/generated/docs/text-content.md +7 -3
  69. package/dist/mcp/generated/docs/theme.md +27 -35
  70. package/dist/mcp/generated/docs/use-artifact-preview.md +7 -3
  71. package/dist/mcp/generated/docs/use-command-selection.md +1 -1
  72. package/dist/mcp/generated/docs/use-container-scroll.md +2 -1
  73. package/dist/mcp/generated/docs/use-flow-node-actions.md +8 -15
  74. package/dist/mcp/generated/docs/use-global-config.md +11 -4
  75. package/dist/mcp/generated/docs/use-input-mention.md +119 -0
  76. package/dist/mcp/generated/docs/use-menu-keydown.md +15 -16
  77. package/dist/mcp/generated/docs/use-message-group.md +3 -6
  78. package/dist/mcp/generated/docs/user-message.md +39 -17
  79. package/dist/mcp/generated/index.json +233 -81
  80. package/dist/types/editor.d.ts +0 -29
  81. package/dist/types/index.d.ts +1 -0
  82. package/dist/types/input-menu.d.ts +46 -0
  83. package/dist/utils/artifact-tags.d.ts +36 -0
  84. package/dist/utils/collect-message-artifacts.d.ts +14 -0
  85. package/dist/utils/file.d.ts +3 -3
  86. package/dist/utils/index.d.ts +2 -1
  87. package/dist/utils/upload-file.d.ts +6 -1
  88. package/package.json +4 -3
  89. package/skills/blueking-chat-x/SKILL.md +143 -0
  90. package/skills/blueking-chat-x/references/_index.md +153 -0
  91. package/skills/blueking-chat-x/references/components/activity-layout.md +134 -0
  92. package/skills/blueking-chat-x/references/components/activity-message.md +486 -0
  93. package/skills/blueking-chat-x/references/components/add-menu-btn.md +88 -0
  94. package/skills/blueking-chat-x/references/components/ai-image.md +230 -0
  95. package/skills/blueking-chat-x/references/components/ai-loading.md +131 -0
  96. package/skills/blueking-chat-x/references/components/ai-selection.md +439 -0
  97. package/skills/blueking-chat-x/references/components/ai-slash-input.md +102 -0
  98. package/skills/blueking-chat-x/references/components/animation-text.md +202 -0
  99. package/skills/blueking-chat-x/references/components/assistant-message.md +504 -0
  100. package/skills/blueking-chat-x/references/components/chat-container.md +912 -0
  101. package/skills/blueking-chat-x/references/components/chat-input.md +614 -0
  102. package/skills/blueking-chat-x/references/components/cite-content.md +142 -0
  103. package/skills/blueking-chat-x/references/components/code-content.md +211 -0
  104. package/skills/blueking-chat-x/references/components/collapsible-content.md +76 -0
  105. package/skills/blueking-chat-x/references/components/common-error-content.md +73 -0
  106. package/skills/blueking-chat-x/references/components/content-render.md +233 -0
  107. package/skills/blueking-chat-x/references/components/delete-tool.md +191 -0
  108. package/skills/blueking-chat-x/references/components/desc-panel.md +162 -0
  109. package/skills/blueking-chat-x/references/components/detail-section.md +91 -0
  110. package/skills/blueking-chat-x/references/components/execution-summary.md +150 -0
  111. package/skills/blueking-chat-x/references/components/file-artifact-panel.md +307 -0
  112. package/skills/blueking-chat-x/references/components/file-content.md +340 -0
  113. package/skills/blueking-chat-x/references/components/file-icon.md +109 -0
  114. package/skills/blueking-chat-x/references/components/file-upload-btn.md +162 -0
  115. package/skills/blueking-chat-x/references/components/flow-agent-content.md +266 -0
  116. package/skills/blueking-chat-x/references/components/flow-agent-node-detail.md +236 -0
  117. package/skills/blueking-chat-x/references/components/highlight-keyword.md +146 -0
  118. package/skills/blueking-chat-x/references/components/image-content.md +182 -0
  119. package/skills/blueking-chat-x/references/components/image-preview-group.md +184 -0
  120. package/skills/blueking-chat-x/references/components/image-preview.md +226 -0
  121. package/skills/blueking-chat-x/references/components/info-message.md +144 -0
  122. package/skills/blueking-chat-x/references/components/input-attachment.md +49 -0
  123. package/skills/blueking-chat-x/references/components/input-info-alert.md +42 -0
  124. package/skills/blueking-chat-x/references/components/input-menu-panel.md +162 -0
  125. package/skills/blueking-chat-x/references/components/interrupt-message.md +212 -0
  126. package/skills/blueking-chat-x/references/components/key-value-content.md +128 -0
  127. package/skills/blueking-chat-x/references/components/knowledge-rag-content.md +122 -0
  128. package/skills/blueking-chat-x/references/components/latex-content.md +200 -0
  129. package/skills/blueking-chat-x/references/components/loading-message.md +192 -0
  130. package/skills/blueking-chat-x/references/components/markdown-content.md +232 -0
  131. package/skills/blueking-chat-x/references/components/mention-tag.md +79 -0
  132. package/skills/blueking-chat-x/references/components/mention-text.md +83 -0
  133. package/skills/blueking-chat-x/references/components/mermaid-content.md +189 -0
  134. package/skills/blueking-chat-x/references/components/message-container.md +645 -0
  135. package/skills/blueking-chat-x/references/components/message-loading.md +118 -0
  136. package/skills/blueking-chat-x/references/components/message-render.md +327 -0
  137. package/skills/blueking-chat-x/references/components/message-time.md +177 -0
  138. package/skills/blueking-chat-x/references/components/message-tools.md +427 -0
  139. package/skills/blueking-chat-x/references/components/model-selector.md +157 -0
  140. package/skills/blueking-chat-x/references/components/preview-toolbar.md +42 -0
  141. package/skills/blueking-chat-x/references/components/questions-container.md +85 -0
  142. package/skills/blueking-chat-x/references/components/reasoning-message.md +232 -0
  143. package/skills/blueking-chat-x/references/components/reference-content.md +135 -0
  144. package/skills/blueking-chat-x/references/components/reference-doc-content.md +109 -0
  145. package/skills/blueking-chat-x/references/components/resource-icon.md +98 -0
  146. package/skills/blueking-chat-x/references/components/scroll-btn.md +159 -0
  147. package/skills/blueking-chat-x/references/components/selection-footer.md +78 -0
  148. package/skills/blueking-chat-x/references/components/selection-question.md +88 -0
  149. package/skills/blueking-chat-x/references/components/shortcut-btn.md +204 -0
  150. package/skills/blueking-chat-x/references/components/shortcut-btns.md +266 -0
  151. package/skills/blueking-chat-x/references/components/shortcut-render.md +424 -0
  152. package/skills/blueking-chat-x/references/components/simple-table.md +101 -0
  153. package/skills/blueking-chat-x/references/components/text-content.md +80 -0
  154. package/skills/blueking-chat-x/references/components/tool-approval-card.md +183 -0
  155. package/skills/blueking-chat-x/references/components/tool-btn.md +317 -0
  156. package/skills/blueking-chat-x/references/components/tool-message.md +235 -0
  157. package/skills/blueking-chat-x/references/components/toolcall-render.md +348 -0
  158. package/skills/blueking-chat-x/references/components/user-feedback.md +233 -0
  159. package/skills/blueking-chat-x/references/components/user-message.md +444 -0
  160. package/skills/blueking-chat-x/references/components/user-question-answered-card.md +104 -0
  161. package/skills/blueking-chat-x/references/components/user-question-card.md +231 -0
  162. package/skills/blueking-chat-x/references/components/user-question-choice.md +105 -0
  163. package/skills/blueking-chat-x/references/components/user-question-option.md +42 -0
  164. package/skills/blueking-chat-x/references/components/vnode-renderer.md +122 -0
  165. package/skills/blueking-chat-x/references/composables/use-animation-text.md +196 -0
  166. package/skills/blueking-chat-x/references/composables/use-artifact-preview.md +235 -0
  167. package/skills/blueking-chat-x/references/composables/use-clipboard.md +203 -0
  168. package/skills/blueking-chat-x/references/composables/use-command-selection.md +150 -0
  169. package/skills/blueking-chat-x/references/composables/use-container-scroll.md +57 -0
  170. package/skills/blueking-chat-x/references/composables/use-custom-tab.md +158 -0
  171. package/skills/blueking-chat-x/references/composables/use-flow-node-actions.md +164 -0
  172. package/skills/blueking-chat-x/references/composables/use-full-screen.md +112 -0
  173. package/skills/blueking-chat-x/references/composables/use-global-config.md +155 -0
  174. package/skills/blueking-chat-x/references/composables/use-input-mention.md +115 -0
  175. package/skills/blueking-chat-x/references/composables/use-menu-keydown.md +161 -0
  176. package/skills/blueking-chat-x/references/composables/use-message-group.md +244 -0
  177. package/skills/blueking-chat-x/references/composables/use-observer-visible-list.md +188 -0
  178. package/skills/blueking-chat-x/references/composables/use-parent-scrolling.md +46 -0
  179. package/skills/blueking-chat-x/references/directives/index.md +61 -0
  180. package/skills/blueking-chat-x/references/directives/overflow-tips.md +205 -0
  181. package/skills/blueking-chat-x/references/icons/index.md +185 -0
  182. package/skills/blueking-chat-x/references/plugins/index.md +56 -0
  183. package/skills/blueking-chat-x/references/plugins/markdown-container.md +55 -0
  184. package/skills/blueking-chat-x/references/plugins/markdown-latex.md +205 -0
  185. package/skills/blueking-chat-x/references/plugins/markdown-mermaid.md +247 -0
  186. package/skills/blueking-chat-x/references/theme/theme.md +423 -0
  187. package/skills/blueking-chat-x/references/types/constants.md +340 -0
  188. package/skills/blueking-chat-x/references/types/index.md +120 -0
  189. package/skills/blueking-chat-x/references/types/interrupt.md +379 -0
  190. package/skills/blueking-chat-x/references/types/messages.md +556 -0
  191. package/skills/blueking-chat-x/references/types/schema.md +91 -0
  192. package/skills/blueking-chat-x/references/utils/index.md +196 -0
  193. package/skills/blueking-chat-x/scripts/generate-references.mjs +536 -0
  194. package/dist/components/chat-input/ai-slash-editor/ai-slash-editor.vue.d.ts +0 -28
  195. package/dist/components/chat-input/ai-slash-editor/theme.d.ts +0 -24
  196. package/dist/mcp/generated/docs/ai-prompt-list.md +0 -45
  197. package/dist/mcp/generated/docs/ai-skill-list.md +0 -75
  198. package/dist/mcp/generated/docs/ai-slash-editor.md +0 -43
  199. package/dist/mcp/generated/docs/ai-slash-menu.md +0 -42
@@ -64,6 +64,19 @@ export declare const useMessageGroup: (options: {
64
64
  size: number;
65
65
  type: string;
66
66
  }[] | undefined;
67
+ docSchema?: ({
68
+ text: string;
69
+ type: "text";
70
+ } | {
71
+ data: {
72
+ readonly label: string;
73
+ readonly value: string;
74
+ readonly type: string;
75
+ readonly icon: string;
76
+ readonly description: string;
77
+ };
78
+ type: "tag";
79
+ })[][] | undefined;
67
80
  extra?: {
68
81
  cite: string | {
69
82
  data: {
@@ -333,7 +346,7 @@ export declare const useMessageGroup: (options: {
333
346
  multiple?: boolean | undefined;
334
347
  placeholder?: string | undefined;
335
348
  list?: any[] | undefined;
336
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
349
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
337
350
  behavior?: "normal" | "simplicity" | undefined;
338
351
  selectedStyle?: "checkbox" | "check" | undefined;
339
352
  scrollHeight?: number | undefined;
@@ -619,6 +632,19 @@ export declare const useMessageGroup: (options: {
619
632
  size: number;
620
633
  type: string;
621
634
  }[] | undefined;
635
+ docSchema?: ({
636
+ text: string;
637
+ type: "text";
638
+ } | {
639
+ data: {
640
+ readonly label: string;
641
+ readonly value: string;
642
+ readonly type: string;
643
+ readonly icon: string;
644
+ readonly description: string;
645
+ };
646
+ type: "tag";
647
+ })[][] | undefined;
622
648
  extra?: {
623
649
  cite: string | {
624
650
  data: {
@@ -888,7 +914,7 @@ export declare const useMessageGroup: (options: {
888
914
  multiple?: boolean | undefined;
889
915
  placeholder?: string | undefined;
890
916
  list?: any[] | undefined;
891
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
917
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
892
918
  behavior?: "normal" | "simplicity" | undefined;
893
919
  selectedStyle?: "checkbox" | "check" | undefined;
894
920
  scrollHeight?: number | undefined;
@@ -1163,6 +1189,19 @@ export declare const useMessageGroup: (options: {
1163
1189
  size: number;
1164
1190
  type: string;
1165
1191
  }[] | undefined;
1192
+ docSchema?: ({
1193
+ text: string;
1194
+ type: "text";
1195
+ } | {
1196
+ data: {
1197
+ readonly label: string;
1198
+ readonly value: string;
1199
+ readonly type: string;
1200
+ readonly icon: string;
1201
+ readonly description: string;
1202
+ };
1203
+ type: "tag";
1204
+ })[][] | undefined;
1166
1205
  extra?: {
1167
1206
  cite: string | {
1168
1207
  data: {
@@ -1432,7 +1471,7 @@ export declare const useMessageGroup: (options: {
1432
1471
  multiple?: boolean | undefined;
1433
1472
  placeholder?: string | undefined;
1434
1473
  list?: any[] | undefined;
1435
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
1474
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
1436
1475
  behavior?: "normal" | "simplicity" | undefined;
1437
1476
  selectedStyle?: "checkbox" | "check" | undefined;
1438
1477
  scrollHeight?: number | undefined;
@@ -1705,6 +1744,19 @@ export declare const useMessageGroup: (options: {
1705
1744
  size: number;
1706
1745
  type: string;
1707
1746
  }[] | undefined;
1747
+ docSchema?: ({
1748
+ text: string;
1749
+ type: "text";
1750
+ } | {
1751
+ data: {
1752
+ readonly label: string;
1753
+ readonly value: string;
1754
+ readonly type: string;
1755
+ readonly icon: string;
1756
+ readonly description: string;
1757
+ };
1758
+ type: "tag";
1759
+ })[][] | undefined;
1708
1760
  extra?: {
1709
1761
  cite: string | {
1710
1762
  data: {
@@ -1974,7 +2026,7 @@ export declare const useMessageGroup: (options: {
1974
2026
  multiple?: boolean | undefined;
1975
2027
  placeholder?: string | undefined;
1976
2028
  list?: any[] | undefined;
1977
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
2029
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
1978
2030
  behavior?: "normal" | "simplicity" | undefined;
1979
2031
  selectedStyle?: "checkbox" | "check" | undefined;
1980
2032
  scrollHeight?: number | undefined;
@@ -2247,6 +2299,19 @@ export declare const useMessageGroup: (options: {
2247
2299
  size: number;
2248
2300
  type: string;
2249
2301
  }[] | undefined;
2302
+ docSchema?: ({
2303
+ text: string;
2304
+ type: "text";
2305
+ } | {
2306
+ data: {
2307
+ readonly label: string;
2308
+ readonly value: string;
2309
+ readonly type: string;
2310
+ readonly icon: string;
2311
+ readonly description: string;
2312
+ };
2313
+ type: "tag";
2314
+ })[][] | undefined;
2250
2315
  extra?: {
2251
2316
  cite: string | {
2252
2317
  data: {
@@ -2516,7 +2581,7 @@ export declare const useMessageGroup: (options: {
2516
2581
  multiple?: boolean | undefined;
2517
2582
  placeholder?: string | undefined;
2518
2583
  list?: any[] | undefined;
2519
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
2584
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
2520
2585
  behavior?: "normal" | "simplicity" | undefined;
2521
2586
  selectedStyle?: "checkbox" | "check" | undefined;
2522
2587
  scrollHeight?: number | undefined;
@@ -2789,6 +2854,19 @@ export declare const useMessageGroup: (options: {
2789
2854
  size: number;
2790
2855
  type: string;
2791
2856
  }[] | undefined;
2857
+ docSchema?: ({
2858
+ text: string;
2859
+ type: "text";
2860
+ } | {
2861
+ data: {
2862
+ readonly label: string;
2863
+ readonly value: string;
2864
+ readonly type: string;
2865
+ readonly icon: string;
2866
+ readonly description: string;
2867
+ };
2868
+ type: "tag";
2869
+ })[][] | undefined;
2792
2870
  extra?: {
2793
2871
  cite: string | {
2794
2872
  data: {
@@ -3058,7 +3136,7 @@ export declare const useMessageGroup: (options: {
3058
3136
  multiple?: boolean | undefined;
3059
3137
  placeholder?: string | undefined;
3060
3138
  list?: any[] | undefined;
3061
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
3139
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
3062
3140
  behavior?: "normal" | "simplicity" | undefined;
3063
3141
  selectedStyle?: "checkbox" | "check" | undefined;
3064
3142
  scrollHeight?: number | undefined;
@@ -3331,6 +3409,19 @@ export declare const useMessageGroup: (options: {
3331
3409
  size: number;
3332
3410
  type: string;
3333
3411
  }[] | undefined;
3412
+ docSchema?: ({
3413
+ text: string;
3414
+ type: "text";
3415
+ } | {
3416
+ data: {
3417
+ readonly label: string;
3418
+ readonly value: string;
3419
+ readonly type: string;
3420
+ readonly icon: string;
3421
+ readonly description: string;
3422
+ };
3423
+ type: "tag";
3424
+ })[][] | undefined;
3334
3425
  extra?: {
3335
3426
  cite: string | {
3336
3427
  data: {
@@ -3600,7 +3691,7 @@ export declare const useMessageGroup: (options: {
3600
3691
  multiple?: boolean | undefined;
3601
3692
  placeholder?: string | undefined;
3602
3693
  list?: any[] | undefined;
3603
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
3694
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
3604
3695
  behavior?: "normal" | "simplicity" | undefined;
3605
3696
  selectedStyle?: "checkbox" | "check" | undefined;
3606
3697
  scrollHeight?: number | undefined;
@@ -3873,6 +3964,19 @@ export declare const useMessageGroup: (options: {
3873
3964
  size: number;
3874
3965
  type: string;
3875
3966
  }[] | undefined;
3967
+ docSchema?: ({
3968
+ text: string;
3969
+ type: "text";
3970
+ } | {
3971
+ data: {
3972
+ readonly label: string;
3973
+ readonly value: string;
3974
+ readonly type: string;
3975
+ readonly icon: string;
3976
+ readonly description: string;
3977
+ };
3978
+ type: "tag";
3979
+ })[][] | undefined;
3876
3980
  extra?: {
3877
3981
  cite: string | {
3878
3982
  data: {
@@ -4142,7 +4246,7 @@ export declare const useMessageGroup: (options: {
4142
4246
  multiple?: boolean | undefined;
4143
4247
  placeholder?: string | undefined;
4144
4248
  list?: any[] | undefined;
4145
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
4249
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
4146
4250
  behavior?: "normal" | "simplicity" | undefined;
4147
4251
  selectedStyle?: "checkbox" | "check" | undefined;
4148
4252
  scrollHeight?: number | undefined;
@@ -4415,6 +4519,19 @@ export declare const useMessageGroup: (options: {
4415
4519
  size: number;
4416
4520
  type: string;
4417
4521
  }[] | undefined;
4522
+ docSchema?: ({
4523
+ text: string;
4524
+ type: "text";
4525
+ } | {
4526
+ data: {
4527
+ readonly label: string;
4528
+ readonly value: string;
4529
+ readonly type: string;
4530
+ readonly icon: string;
4531
+ readonly description: string;
4532
+ };
4533
+ type: "tag";
4534
+ })[][] | undefined;
4418
4535
  extra?: {
4419
4536
  cite: string | {
4420
4537
  data: {
@@ -4684,7 +4801,7 @@ export declare const useMessageGroup: (options: {
4684
4801
  multiple?: boolean | undefined;
4685
4802
  placeholder?: string | undefined;
4686
4803
  list?: any[] | undefined;
4687
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
4804
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
4688
4805
  behavior?: "normal" | "simplicity" | undefined;
4689
4806
  selectedStyle?: "checkbox" | "check" | undefined;
4690
4807
  scrollHeight?: number | undefined;
@@ -4957,6 +5074,19 @@ export declare const useMessageGroup: (options: {
4957
5074
  size: number;
4958
5075
  type: string;
4959
5076
  }[] | undefined;
5077
+ docSchema?: ({
5078
+ text: string;
5079
+ type: "text";
5080
+ } | {
5081
+ data: {
5082
+ readonly label: string;
5083
+ readonly value: string;
5084
+ readonly type: string;
5085
+ readonly icon: string;
5086
+ readonly description: string;
5087
+ };
5088
+ type: "tag";
5089
+ })[][] | undefined;
4960
5090
  extra?: {
4961
5091
  cite: string | {
4962
5092
  data: {
@@ -5226,7 +5356,7 @@ export declare const useMessageGroup: (options: {
5226
5356
  multiple?: boolean | undefined;
5227
5357
  placeholder?: string | undefined;
5228
5358
  list?: any[] | undefined;
5229
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
5359
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
5230
5360
  behavior?: "normal" | "simplicity" | undefined;
5231
5361
  selectedStyle?: "checkbox" | "check" | undefined;
5232
5362
  scrollHeight?: number | undefined;
@@ -5499,6 +5629,19 @@ export declare const useMessageGroup: (options: {
5499
5629
  size: number;
5500
5630
  type: string;
5501
5631
  }[] | undefined;
5632
+ docSchema?: ({
5633
+ text: string;
5634
+ type: "text";
5635
+ } | {
5636
+ data: {
5637
+ readonly label: string;
5638
+ readonly value: string;
5639
+ readonly type: string;
5640
+ readonly icon: string;
5641
+ readonly description: string;
5642
+ };
5643
+ type: "tag";
5644
+ })[][] | undefined;
5502
5645
  extra?: {
5503
5646
  cite: string | {
5504
5647
  data: {
@@ -5768,7 +5911,7 @@ export declare const useMessageGroup: (options: {
5768
5911
  multiple?: boolean | undefined;
5769
5912
  placeholder?: string | undefined;
5770
5913
  list?: any[] | undefined;
5771
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
5914
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
5772
5915
  behavior?: "normal" | "simplicity" | undefined;
5773
5916
  selectedStyle?: "checkbox" | "check" | undefined;
5774
5917
  scrollHeight?: number | undefined;
@@ -6041,6 +6184,19 @@ export declare const useMessageGroup: (options: {
6041
6184
  size: number;
6042
6185
  type: string;
6043
6186
  }[] | undefined;
6187
+ docSchema?: ({
6188
+ text: string;
6189
+ type: "text";
6190
+ } | {
6191
+ data: {
6192
+ readonly label: string;
6193
+ readonly value: string;
6194
+ readonly type: string;
6195
+ readonly icon: string;
6196
+ readonly description: string;
6197
+ };
6198
+ type: "tag";
6199
+ })[][] | undefined;
6044
6200
  extra?: {
6045
6201
  cite: string | {
6046
6202
  data: {
@@ -6310,7 +6466,7 @@ export declare const useMessageGroup: (options: {
6310
6466
  multiple?: boolean | undefined;
6311
6467
  placeholder?: string | undefined;
6312
6468
  list?: any[] | undefined;
6313
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
6469
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
6314
6470
  behavior?: "normal" | "simplicity" | undefined;
6315
6471
  selectedStyle?: "checkbox" | "check" | undefined;
6316
6472
  scrollHeight?: number | undefined;
@@ -6669,6 +6825,19 @@ export declare const useMessageGroup: (options: {
6669
6825
  size: number;
6670
6826
  type: string;
6671
6827
  }[] | undefined;
6828
+ docSchema?: ({
6829
+ text: string;
6830
+ type: "text";
6831
+ } | {
6832
+ data: {
6833
+ readonly label: string;
6834
+ readonly value: string;
6835
+ readonly type: string;
6836
+ readonly icon: string;
6837
+ readonly description: string;
6838
+ };
6839
+ type: "tag";
6840
+ })[][] | undefined;
6672
6841
  extra?: {
6673
6842
  cite: string | {
6674
6843
  data: {
@@ -6938,7 +7107,7 @@ export declare const useMessageGroup: (options: {
6938
7107
  multiple?: boolean | undefined;
6939
7108
  placeholder?: string | undefined;
6940
7109
  list?: any[] | undefined;
6941
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
7110
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
6942
7111
  behavior?: "normal" | "simplicity" | undefined;
6943
7112
  selectedStyle?: "checkbox" | "check" | undefined;
6944
7113
  scrollHeight?: number | undefined;
@@ -7211,6 +7380,19 @@ export declare const useMessageGroup: (options: {
7211
7380
  size: number;
7212
7381
  type: string;
7213
7382
  }[] | undefined;
7383
+ docSchema?: ({
7384
+ text: string;
7385
+ type: "text";
7386
+ } | {
7387
+ data: {
7388
+ readonly label: string;
7389
+ readonly value: string;
7390
+ readonly type: string;
7391
+ readonly icon: string;
7392
+ readonly description: string;
7393
+ };
7394
+ type: "tag";
7395
+ })[][] | undefined;
7214
7396
  extra?: {
7215
7397
  cite: string | {
7216
7398
  data: {
@@ -7480,7 +7662,7 @@ export declare const useMessageGroup: (options: {
7480
7662
  multiple?: boolean | undefined;
7481
7663
  placeholder?: string | undefined;
7482
7664
  list?: any[] | undefined;
7483
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
7665
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
7484
7666
  behavior?: "normal" | "simplicity" | undefined;
7485
7667
  selectedStyle?: "checkbox" | "check" | undefined;
7486
7668
  scrollHeight?: number | undefined;
@@ -7753,6 +7935,19 @@ export declare const useMessageGroup: (options: {
7753
7935
  size: number;
7754
7936
  type: string;
7755
7937
  }[] | undefined;
7938
+ docSchema?: ({
7939
+ text: string;
7940
+ type: "text";
7941
+ } | {
7942
+ data: {
7943
+ readonly label: string;
7944
+ readonly value: string;
7945
+ readonly type: string;
7946
+ readonly icon: string;
7947
+ readonly description: string;
7948
+ };
7949
+ type: "tag";
7950
+ })[][] | undefined;
7756
7951
  extra?: {
7757
7952
  cite: string | {
7758
7953
  data: {
@@ -8022,7 +8217,7 @@ export declare const useMessageGroup: (options: {
8022
8217
  multiple?: boolean | undefined;
8023
8218
  placeholder?: string | undefined;
8024
8219
  list?: any[] | undefined;
8025
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
8220
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
8026
8221
  behavior?: "normal" | "simplicity" | undefined;
8027
8222
  selectedStyle?: "checkbox" | "check" | undefined;
8028
8223
  scrollHeight?: number | undefined;
@@ -8296,6 +8491,19 @@ export declare const useMessageGroup: (options: {
8296
8491
  size: number;
8297
8492
  type: string;
8298
8493
  }[] | undefined;
8494
+ docSchema?: ({
8495
+ text: string;
8496
+ type: "text";
8497
+ } | {
8498
+ data: {
8499
+ readonly label: string;
8500
+ readonly value: string;
8501
+ readonly type: string;
8502
+ readonly icon: string;
8503
+ readonly description: string;
8504
+ };
8505
+ type: "tag";
8506
+ })[][] | undefined;
8299
8507
  extra?: {
8300
8508
  cite: string | {
8301
8509
  data: {
@@ -8565,7 +8773,7 @@ export declare const useMessageGroup: (options: {
8565
8773
  multiple?: boolean | undefined;
8566
8774
  placeholder?: string | undefined;
8567
8775
  list?: any[] | undefined;
8568
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
8776
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
8569
8777
  behavior?: "normal" | "simplicity" | undefined;
8570
8778
  selectedStyle?: "checkbox" | "check" | undefined;
8571
8779
  scrollHeight?: number | undefined;
@@ -8838,6 +9046,19 @@ export declare const useMessageGroup: (options: {
8838
9046
  size: number;
8839
9047
  type: string;
8840
9048
  }[] | undefined;
9049
+ docSchema?: ({
9050
+ text: string;
9051
+ type: "text";
9052
+ } | {
9053
+ data: {
9054
+ readonly label: string;
9055
+ readonly value: string;
9056
+ readonly type: string;
9057
+ readonly icon: string;
9058
+ readonly description: string;
9059
+ };
9060
+ type: "tag";
9061
+ })[][] | undefined;
8841
9062
  extra?: {
8842
9063
  cite: string | {
8843
9064
  data: {
@@ -9107,7 +9328,7 @@ export declare const useMessageGroup: (options: {
9107
9328
  multiple?: boolean | undefined;
9108
9329
  placeholder?: string | undefined;
9109
9330
  list?: any[] | undefined;
9110
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
9331
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
9111
9332
  behavior?: "normal" | "simplicity" | undefined;
9112
9333
  selectedStyle?: "checkbox" | "check" | undefined;
9113
9334
  scrollHeight?: number | undefined;
@@ -9380,6 +9601,19 @@ export declare const useMessageGroup: (options: {
9380
9601
  size: number;
9381
9602
  type: string;
9382
9603
  }[] | undefined;
9604
+ docSchema?: ({
9605
+ text: string;
9606
+ type: "text";
9607
+ } | {
9608
+ data: {
9609
+ readonly label: string;
9610
+ readonly value: string;
9611
+ readonly type: string;
9612
+ readonly icon: string;
9613
+ readonly description: string;
9614
+ };
9615
+ type: "tag";
9616
+ })[][] | undefined;
9383
9617
  extra?: {
9384
9618
  cite: string | {
9385
9619
  data: {
@@ -9649,7 +9883,7 @@ export declare const useMessageGroup: (options: {
9649
9883
  multiple?: boolean | undefined;
9650
9884
  placeholder?: string | undefined;
9651
9885
  list?: any[] | undefined;
9652
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
9886
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
9653
9887
  behavior?: "normal" | "simplicity" | undefined;
9654
9888
  selectedStyle?: "checkbox" | "check" | undefined;
9655
9889
  scrollHeight?: number | undefined;
@@ -9922,6 +10156,19 @@ export declare const useMessageGroup: (options: {
9922
10156
  size: number;
9923
10157
  type: string;
9924
10158
  }[] | undefined;
10159
+ docSchema?: ({
10160
+ text: string;
10161
+ type: "text";
10162
+ } | {
10163
+ data: {
10164
+ readonly label: string;
10165
+ readonly value: string;
10166
+ readonly type: string;
10167
+ readonly icon: string;
10168
+ readonly description: string;
10169
+ };
10170
+ type: "tag";
10171
+ })[][] | undefined;
9925
10172
  extra?: {
9926
10173
  cite: string | {
9927
10174
  data: {
@@ -10191,7 +10438,7 @@ export declare const useMessageGroup: (options: {
10191
10438
  multiple?: boolean | undefined;
10192
10439
  placeholder?: string | undefined;
10193
10440
  list?: any[] | undefined;
10194
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
10441
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
10195
10442
  behavior?: "normal" | "simplicity" | undefined;
10196
10443
  selectedStyle?: "checkbox" | "check" | undefined;
10197
10444
  scrollHeight?: number | undefined;
@@ -10464,6 +10711,19 @@ export declare const useMessageGroup: (options: {
10464
10711
  size: number;
10465
10712
  type: string;
10466
10713
  }[] | undefined;
10714
+ docSchema?: ({
10715
+ text: string;
10716
+ type: "text";
10717
+ } | {
10718
+ data: {
10719
+ readonly label: string;
10720
+ readonly value: string;
10721
+ readonly type: string;
10722
+ readonly icon: string;
10723
+ readonly description: string;
10724
+ };
10725
+ type: "tag";
10726
+ })[][] | undefined;
10467
10727
  extra?: {
10468
10728
  cite: string | {
10469
10729
  data: {
@@ -10733,7 +10993,7 @@ export declare const useMessageGroup: (options: {
10733
10993
  multiple?: boolean | undefined;
10734
10994
  placeholder?: string | undefined;
10735
10995
  list?: any[] | undefined;
10736
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
10996
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
10737
10997
  behavior?: "normal" | "simplicity" | undefined;
10738
10998
  selectedStyle?: "checkbox" | "check" | undefined;
10739
10999
  scrollHeight?: number | undefined;
@@ -11006,6 +11266,19 @@ export declare const useMessageGroup: (options: {
11006
11266
  size: number;
11007
11267
  type: string;
11008
11268
  }[] | undefined;
11269
+ docSchema?: ({
11270
+ text: string;
11271
+ type: "text";
11272
+ } | {
11273
+ data: {
11274
+ readonly label: string;
11275
+ readonly value: string;
11276
+ readonly type: string;
11277
+ readonly icon: string;
11278
+ readonly description: string;
11279
+ };
11280
+ type: "tag";
11281
+ })[][] | undefined;
11009
11282
  extra?: {
11010
11283
  cite: string | {
11011
11284
  data: {
@@ -11275,7 +11548,7 @@ export declare const useMessageGroup: (options: {
11275
11548
  multiple?: boolean | undefined;
11276
11549
  placeholder?: string | undefined;
11277
11550
  list?: any[] | undefined;
11278
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
11551
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
11279
11552
  behavior?: "normal" | "simplicity" | undefined;
11280
11553
  selectedStyle?: "checkbox" | "check" | undefined;
11281
11554
  scrollHeight?: number | undefined;
@@ -11548,6 +11821,19 @@ export declare const useMessageGroup: (options: {
11548
11821
  size: number;
11549
11822
  type: string;
11550
11823
  }[] | undefined;
11824
+ docSchema?: ({
11825
+ text: string;
11826
+ type: "text";
11827
+ } | {
11828
+ data: {
11829
+ readonly label: string;
11830
+ readonly value: string;
11831
+ readonly type: string;
11832
+ readonly icon: string;
11833
+ readonly description: string;
11834
+ };
11835
+ type: "tag";
11836
+ })[][] | undefined;
11551
11837
  extra?: {
11552
11838
  cite: string | {
11553
11839
  data: {
@@ -11817,7 +12103,7 @@ export declare const useMessageGroup: (options: {
11817
12103
  multiple?: boolean | undefined;
11818
12104
  placeholder?: string | undefined;
11819
12105
  list?: any[] | undefined;
11820
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
12106
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
11821
12107
  behavior?: "normal" | "simplicity" | undefined;
11822
12108
  selectedStyle?: "checkbox" | "check" | undefined;
11823
12109
  scrollHeight?: number | undefined;
@@ -12093,6 +12379,19 @@ export declare const useMessageGroup: (options: {
12093
12379
  size: number;
12094
12380
  type: string;
12095
12381
  }[] | undefined;
12382
+ docSchema?: ({
12383
+ text: string;
12384
+ type: "text";
12385
+ } | {
12386
+ data: {
12387
+ readonly label: string;
12388
+ readonly value: string;
12389
+ readonly type: string;
12390
+ readonly icon: string;
12391
+ readonly description: string;
12392
+ };
12393
+ type: "tag";
12394
+ })[][] | undefined;
12096
12395
  extra?: {
12097
12396
  cite: string | {
12098
12397
  data: {
@@ -12362,7 +12661,7 @@ export declare const useMessageGroup: (options: {
12362
12661
  multiple?: boolean | undefined;
12363
12662
  placeholder?: string | undefined;
12364
12663
  list?: any[] | undefined;
12365
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
12664
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
12366
12665
  behavior?: "normal" | "simplicity" | undefined;
12367
12666
  selectedStyle?: "checkbox" | "check" | undefined;
12368
12667
  scrollHeight?: number | undefined;
@@ -12625,6 +12924,7 @@ export declare const useMessageGroup: (options: {
12625
12924
  filename?: string | undefined;
12626
12925
  id?: string | undefined;
12627
12926
  mimeType: string;
12927
+ outputId?: string | undefined;
12628
12928
  size?: number | undefined;
12629
12929
  type: MessageContentType.Binary;
12630
12930
  url?: string | undefined;
@@ -12646,6 +12946,19 @@ export declare const useMessageGroup: (options: {
12646
12946
  size: number;
12647
12947
  type: string;
12648
12948
  }[] | undefined;
12949
+ docSchema?: ({
12950
+ text: string;
12951
+ type: "text";
12952
+ } | {
12953
+ data: {
12954
+ readonly label: string;
12955
+ readonly value: string;
12956
+ readonly type: string;
12957
+ readonly icon: string;
12958
+ readonly description: string;
12959
+ };
12960
+ type: "tag";
12961
+ })[][] | undefined;
12649
12962
  extra?: {
12650
12963
  cite: string | {
12651
12964
  data: {
@@ -12915,7 +13228,7 @@ export declare const useMessageGroup: (options: {
12915
13228
  multiple?: boolean | undefined;
12916
13229
  placeholder?: string | undefined;
12917
13230
  list?: any[] | undefined;
12918
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
13231
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
12919
13232
  behavior?: "normal" | "simplicity" | undefined;
12920
13233
  selectedStyle?: "checkbox" | "check" | undefined;
12921
13234
  scrollHeight?: number | undefined;
@@ -13224,6 +13537,19 @@ export declare const useMessageGroup: (options: {
13224
13537
  size: number;
13225
13538
  type: string;
13226
13539
  }[] | undefined;
13540
+ docSchema?: ({
13541
+ text: string;
13542
+ type: "text";
13543
+ } | {
13544
+ data: {
13545
+ readonly label: string;
13546
+ readonly value: string;
13547
+ readonly type: string;
13548
+ readonly icon: string;
13549
+ readonly description: string;
13550
+ };
13551
+ type: "tag";
13552
+ })[][] | undefined;
13227
13553
  extra?: {
13228
13554
  cite: string | {
13229
13555
  data: {
@@ -13493,7 +13819,7 @@ export declare const useMessageGroup: (options: {
13493
13819
  multiple?: boolean | undefined;
13494
13820
  placeholder?: string | undefined;
13495
13821
  list?: any[] | undefined;
13496
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
13822
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
13497
13823
  behavior?: "normal" | "simplicity" | undefined;
13498
13824
  selectedStyle?: "checkbox" | "check" | undefined;
13499
13825
  scrollHeight?: number | undefined;
@@ -13779,6 +14105,19 @@ export declare const useMessageGroup: (options: {
13779
14105
  size: number;
13780
14106
  type: string;
13781
14107
  }[] | undefined;
14108
+ docSchema?: ({
14109
+ text: string;
14110
+ type: "text";
14111
+ } | {
14112
+ data: {
14113
+ readonly label: string;
14114
+ readonly value: string;
14115
+ readonly type: string;
14116
+ readonly icon: string;
14117
+ readonly description: string;
14118
+ };
14119
+ type: "tag";
14120
+ })[][] | undefined;
13782
14121
  extra?: {
13783
14122
  cite: string | {
13784
14123
  data: {
@@ -14048,7 +14387,7 @@ export declare const useMessageGroup: (options: {
14048
14387
  multiple?: boolean | undefined;
14049
14388
  placeholder?: string | undefined;
14050
14389
  list?: any[] | undefined;
14051
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
14390
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
14052
14391
  behavior?: "normal" | "simplicity" | undefined;
14053
14392
  selectedStyle?: "checkbox" | "check" | undefined;
14054
14393
  scrollHeight?: number | undefined;
@@ -14323,6 +14662,19 @@ export declare const useMessageGroup: (options: {
14323
14662
  size: number;
14324
14663
  type: string;
14325
14664
  }[] | undefined;
14665
+ docSchema?: ({
14666
+ text: string;
14667
+ type: "text";
14668
+ } | {
14669
+ data: {
14670
+ readonly label: string;
14671
+ readonly value: string;
14672
+ readonly type: string;
14673
+ readonly icon: string;
14674
+ readonly description: string;
14675
+ };
14676
+ type: "tag";
14677
+ })[][] | undefined;
14326
14678
  extra?: {
14327
14679
  cite: string | {
14328
14680
  data: {
@@ -14592,7 +14944,7 @@ export declare const useMessageGroup: (options: {
14592
14944
  multiple?: boolean | undefined;
14593
14945
  placeholder?: string | undefined;
14594
14946
  list?: any[] | undefined;
14595
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
14947
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
14596
14948
  behavior?: "normal" | "simplicity" | undefined;
14597
14949
  selectedStyle?: "checkbox" | "check" | undefined;
14598
14950
  scrollHeight?: number | undefined;
@@ -14865,6 +15217,19 @@ export declare const useMessageGroup: (options: {
14865
15217
  size: number;
14866
15218
  type: string;
14867
15219
  }[] | undefined;
15220
+ docSchema?: ({
15221
+ text: string;
15222
+ type: "text";
15223
+ } | {
15224
+ data: {
15225
+ readonly label: string;
15226
+ readonly value: string;
15227
+ readonly type: string;
15228
+ readonly icon: string;
15229
+ readonly description: string;
15230
+ };
15231
+ type: "tag";
15232
+ })[][] | undefined;
14868
15233
  extra?: {
14869
15234
  cite: string | {
14870
15235
  data: {
@@ -15134,7 +15499,7 @@ export declare const useMessageGroup: (options: {
15134
15499
  multiple?: boolean | undefined;
15135
15500
  placeholder?: string | undefined;
15136
15501
  list?: any[] | undefined;
15137
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
15502
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
15138
15503
  behavior?: "normal" | "simplicity" | undefined;
15139
15504
  selectedStyle?: "checkbox" | "check" | undefined;
15140
15505
  scrollHeight?: number | undefined;
@@ -15407,6 +15772,19 @@ export declare const useMessageGroup: (options: {
15407
15772
  size: number;
15408
15773
  type: string;
15409
15774
  }[] | undefined;
15775
+ docSchema?: ({
15776
+ text: string;
15777
+ type: "text";
15778
+ } | {
15779
+ data: {
15780
+ readonly label: string;
15781
+ readonly value: string;
15782
+ readonly type: string;
15783
+ readonly icon: string;
15784
+ readonly description: string;
15785
+ };
15786
+ type: "tag";
15787
+ })[][] | undefined;
15410
15788
  extra?: {
15411
15789
  cite: string | {
15412
15790
  data: {
@@ -15676,7 +16054,7 @@ export declare const useMessageGroup: (options: {
15676
16054
  multiple?: boolean | undefined;
15677
16055
  placeholder?: string | undefined;
15678
16056
  list?: any[] | undefined;
15679
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
16057
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
15680
16058
  behavior?: "normal" | "simplicity" | undefined;
15681
16059
  selectedStyle?: "checkbox" | "check" | undefined;
15682
16060
  scrollHeight?: number | undefined;
@@ -15949,6 +16327,19 @@ export declare const useMessageGroup: (options: {
15949
16327
  size: number;
15950
16328
  type: string;
15951
16329
  }[] | undefined;
16330
+ docSchema?: ({
16331
+ text: string;
16332
+ type: "text";
16333
+ } | {
16334
+ data: {
16335
+ readonly label: string;
16336
+ readonly value: string;
16337
+ readonly type: string;
16338
+ readonly icon: string;
16339
+ readonly description: string;
16340
+ };
16341
+ type: "tag";
16342
+ })[][] | undefined;
15952
16343
  extra?: {
15953
16344
  cite: string | {
15954
16345
  data: {
@@ -16218,7 +16609,7 @@ export declare const useMessageGroup: (options: {
16218
16609
  multiple?: boolean | undefined;
16219
16610
  placeholder?: string | undefined;
16220
16611
  list?: any[] | undefined;
16221
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
16612
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
16222
16613
  behavior?: "normal" | "simplicity" | undefined;
16223
16614
  selectedStyle?: "checkbox" | "check" | undefined;
16224
16615
  scrollHeight?: number | undefined;
@@ -16491,6 +16882,19 @@ export declare const useMessageGroup: (options: {
16491
16882
  size: number;
16492
16883
  type: string;
16493
16884
  }[] | undefined;
16885
+ docSchema?: ({
16886
+ text: string;
16887
+ type: "text";
16888
+ } | {
16889
+ data: {
16890
+ readonly label: string;
16891
+ readonly value: string;
16892
+ readonly type: string;
16893
+ readonly icon: string;
16894
+ readonly description: string;
16895
+ };
16896
+ type: "tag";
16897
+ })[][] | undefined;
16494
16898
  extra?: {
16495
16899
  cite: string | {
16496
16900
  data: {
@@ -16760,7 +17164,7 @@ export declare const useMessageGroup: (options: {
16760
17164
  multiple?: boolean | undefined;
16761
17165
  placeholder?: string | undefined;
16762
17166
  list?: any[] | undefined;
16763
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
17167
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
16764
17168
  behavior?: "normal" | "simplicity" | undefined;
16765
17169
  selectedStyle?: "checkbox" | "check" | undefined;
16766
17170
  scrollHeight?: number | undefined;
@@ -17033,6 +17437,19 @@ export declare const useMessageGroup: (options: {
17033
17437
  size: number;
17034
17438
  type: string;
17035
17439
  }[] | undefined;
17440
+ docSchema?: ({
17441
+ text: string;
17442
+ type: "text";
17443
+ } | {
17444
+ data: {
17445
+ readonly label: string;
17446
+ readonly value: string;
17447
+ readonly type: string;
17448
+ readonly icon: string;
17449
+ readonly description: string;
17450
+ };
17451
+ type: "tag";
17452
+ })[][] | undefined;
17036
17453
  extra?: {
17037
17454
  cite: string | {
17038
17455
  data: {
@@ -17302,7 +17719,7 @@ export declare const useMessageGroup: (options: {
17302
17719
  multiple?: boolean | undefined;
17303
17720
  placeholder?: string | undefined;
17304
17721
  list?: any[] | undefined;
17305
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
17722
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
17306
17723
  behavior?: "normal" | "simplicity" | undefined;
17307
17724
  selectedStyle?: "checkbox" | "check" | undefined;
17308
17725
  scrollHeight?: number | undefined;
@@ -17575,6 +17992,19 @@ export declare const useMessageGroup: (options: {
17575
17992
  size: number;
17576
17993
  type: string;
17577
17994
  }[] | undefined;
17995
+ docSchema?: ({
17996
+ text: string;
17997
+ type: "text";
17998
+ } | {
17999
+ data: {
18000
+ readonly label: string;
18001
+ readonly value: string;
18002
+ readonly type: string;
18003
+ readonly icon: string;
18004
+ readonly description: string;
18005
+ };
18006
+ type: "tag";
18007
+ })[][] | undefined;
17578
18008
  extra?: {
17579
18009
  cite: string | {
17580
18010
  data: {
@@ -17844,7 +18274,7 @@ export declare const useMessageGroup: (options: {
17844
18274
  multiple?: boolean | undefined;
17845
18275
  placeholder?: string | undefined;
17846
18276
  list?: any[] | undefined;
17847
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
18277
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
17848
18278
  behavior?: "normal" | "simplicity" | undefined;
17849
18279
  selectedStyle?: "checkbox" | "check" | undefined;
17850
18280
  scrollHeight?: number | undefined;
@@ -18117,6 +18547,19 @@ export declare const useMessageGroup: (options: {
18117
18547
  size: number;
18118
18548
  type: string;
18119
18549
  }[] | undefined;
18550
+ docSchema?: ({
18551
+ text: string;
18552
+ type: "text";
18553
+ } | {
18554
+ data: {
18555
+ readonly label: string;
18556
+ readonly value: string;
18557
+ readonly type: string;
18558
+ readonly icon: string;
18559
+ readonly description: string;
18560
+ };
18561
+ type: "tag";
18562
+ })[][] | undefined;
18120
18563
  extra?: {
18121
18564
  cite: string | {
18122
18565
  data: {
@@ -18386,7 +18829,7 @@ export declare const useMessageGroup: (options: {
18386
18829
  multiple?: boolean | undefined;
18387
18830
  placeholder?: string | undefined;
18388
18831
  list?: any[] | undefined;
18389
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
18832
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
18390
18833
  behavior?: "normal" | "simplicity" | undefined;
18391
18834
  selectedStyle?: "checkbox" | "check" | undefined;
18392
18835
  scrollHeight?: number | undefined;
@@ -18659,6 +19102,19 @@ export declare const useMessageGroup: (options: {
18659
19102
  size: number;
18660
19103
  type: string;
18661
19104
  }[] | undefined;
19105
+ docSchema?: ({
19106
+ text: string;
19107
+ type: "text";
19108
+ } | {
19109
+ data: {
19110
+ readonly label: string;
19111
+ readonly value: string;
19112
+ readonly type: string;
19113
+ readonly icon: string;
19114
+ readonly description: string;
19115
+ };
19116
+ type: "tag";
19117
+ })[][] | undefined;
18662
19118
  extra?: {
18663
19119
  cite: string | {
18664
19120
  data: {
@@ -18928,7 +19384,7 @@ export declare const useMessageGroup: (options: {
18928
19384
  multiple?: boolean | undefined;
18929
19385
  placeholder?: string | undefined;
18930
19386
  list?: any[] | undefined;
18931
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
19387
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
18932
19388
  behavior?: "normal" | "simplicity" | undefined;
18933
19389
  selectedStyle?: "checkbox" | "check" | undefined;
18934
19390
  scrollHeight?: number | undefined;
@@ -19201,6 +19657,19 @@ export declare const useMessageGroup: (options: {
19201
19657
  size: number;
19202
19658
  type: string;
19203
19659
  }[] | undefined;
19660
+ docSchema?: ({
19661
+ text: string;
19662
+ type: "text";
19663
+ } | {
19664
+ data: {
19665
+ readonly label: string;
19666
+ readonly value: string;
19667
+ readonly type: string;
19668
+ readonly icon: string;
19669
+ readonly description: string;
19670
+ };
19671
+ type: "tag";
19672
+ })[][] | undefined;
19204
19673
  extra?: {
19205
19674
  cite: string | {
19206
19675
  data: {
@@ -19470,7 +19939,7 @@ export declare const useMessageGroup: (options: {
19470
19939
  multiple?: boolean | undefined;
19471
19940
  placeholder?: string | undefined;
19472
19941
  list?: any[] | undefined;
19473
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
19942
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
19474
19943
  behavior?: "normal" | "simplicity" | undefined;
19475
19944
  selectedStyle?: "checkbox" | "check" | undefined;
19476
19945
  scrollHeight?: number | undefined;
@@ -19829,6 +20298,19 @@ export declare const useMessageGroup: (options: {
19829
20298
  size: number;
19830
20299
  type: string;
19831
20300
  }[] | undefined;
20301
+ docSchema?: ({
20302
+ text: string;
20303
+ type: "text";
20304
+ } | {
20305
+ data: {
20306
+ readonly label: string;
20307
+ readonly value: string;
20308
+ readonly type: string;
20309
+ readonly icon: string;
20310
+ readonly description: string;
20311
+ };
20312
+ type: "tag";
20313
+ })[][] | undefined;
19832
20314
  extra?: {
19833
20315
  cite: string | {
19834
20316
  data: {
@@ -20098,7 +20580,7 @@ export declare const useMessageGroup: (options: {
20098
20580
  multiple?: boolean | undefined;
20099
20581
  placeholder?: string | undefined;
20100
20582
  list?: any[] | undefined;
20101
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
20583
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
20102
20584
  behavior?: "normal" | "simplicity" | undefined;
20103
20585
  selectedStyle?: "checkbox" | "check" | undefined;
20104
20586
  scrollHeight?: number | undefined;
@@ -20371,6 +20853,19 @@ export declare const useMessageGroup: (options: {
20371
20853
  size: number;
20372
20854
  type: string;
20373
20855
  }[] | undefined;
20856
+ docSchema?: ({
20857
+ text: string;
20858
+ type: "text";
20859
+ } | {
20860
+ data: {
20861
+ readonly label: string;
20862
+ readonly value: string;
20863
+ readonly type: string;
20864
+ readonly icon: string;
20865
+ readonly description: string;
20866
+ };
20867
+ type: "tag";
20868
+ })[][] | undefined;
20374
20869
  extra?: {
20375
20870
  cite: string | {
20376
20871
  data: {
@@ -20640,7 +21135,7 @@ export declare const useMessageGroup: (options: {
20640
21135
  multiple?: boolean | undefined;
20641
21136
  placeholder?: string | undefined;
20642
21137
  list?: any[] | undefined;
20643
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
21138
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
20644
21139
  behavior?: "normal" | "simplicity" | undefined;
20645
21140
  selectedStyle?: "checkbox" | "check" | undefined;
20646
21141
  scrollHeight?: number | undefined;
@@ -20913,6 +21408,19 @@ export declare const useMessageGroup: (options: {
20913
21408
  size: number;
20914
21409
  type: string;
20915
21410
  }[] | undefined;
21411
+ docSchema?: ({
21412
+ text: string;
21413
+ type: "text";
21414
+ } | {
21415
+ data: {
21416
+ readonly label: string;
21417
+ readonly value: string;
21418
+ readonly type: string;
21419
+ readonly icon: string;
21420
+ readonly description: string;
21421
+ };
21422
+ type: "tag";
21423
+ })[][] | undefined;
20916
21424
  extra?: {
20917
21425
  cite: string | {
20918
21426
  data: {
@@ -21182,7 +21690,7 @@ export declare const useMessageGroup: (options: {
21182
21690
  multiple?: boolean | undefined;
21183
21691
  placeholder?: string | undefined;
21184
21692
  list?: any[] | undefined;
21185
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
21693
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
21186
21694
  behavior?: "normal" | "simplicity" | undefined;
21187
21695
  selectedStyle?: "checkbox" | "check" | undefined;
21188
21696
  scrollHeight?: number | undefined;
@@ -21456,6 +21964,19 @@ export declare const useMessageGroup: (options: {
21456
21964
  size: number;
21457
21965
  type: string;
21458
21966
  }[] | undefined;
21967
+ docSchema?: ({
21968
+ text: string;
21969
+ type: "text";
21970
+ } | {
21971
+ data: {
21972
+ readonly label: string;
21973
+ readonly value: string;
21974
+ readonly type: string;
21975
+ readonly icon: string;
21976
+ readonly description: string;
21977
+ };
21978
+ type: "tag";
21979
+ })[][] | undefined;
21459
21980
  extra?: {
21460
21981
  cite: string | {
21461
21982
  data: {
@@ -21725,7 +22246,7 @@ export declare const useMessageGroup: (options: {
21725
22246
  multiple?: boolean | undefined;
21726
22247
  placeholder?: string | undefined;
21727
22248
  list?: any[] | undefined;
21728
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
22249
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
21729
22250
  behavior?: "normal" | "simplicity" | undefined;
21730
22251
  selectedStyle?: "checkbox" | "check" | undefined;
21731
22252
  scrollHeight?: number | undefined;
@@ -21998,6 +22519,19 @@ export declare const useMessageGroup: (options: {
21998
22519
  size: number;
21999
22520
  type: string;
22000
22521
  }[] | undefined;
22522
+ docSchema?: ({
22523
+ text: string;
22524
+ type: "text";
22525
+ } | {
22526
+ data: {
22527
+ readonly label: string;
22528
+ readonly value: string;
22529
+ readonly type: string;
22530
+ readonly icon: string;
22531
+ readonly description: string;
22532
+ };
22533
+ type: "tag";
22534
+ })[][] | undefined;
22001
22535
  extra?: {
22002
22536
  cite: string | {
22003
22537
  data: {
@@ -22267,7 +22801,7 @@ export declare const useMessageGroup: (options: {
22267
22801
  multiple?: boolean | undefined;
22268
22802
  placeholder?: string | undefined;
22269
22803
  list?: any[] | undefined;
22270
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
22804
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
22271
22805
  behavior?: "normal" | "simplicity" | undefined;
22272
22806
  selectedStyle?: "checkbox" | "check" | undefined;
22273
22807
  scrollHeight?: number | undefined;
@@ -22540,6 +23074,19 @@ export declare const useMessageGroup: (options: {
22540
23074
  size: number;
22541
23075
  type: string;
22542
23076
  }[] | undefined;
23077
+ docSchema?: ({
23078
+ text: string;
23079
+ type: "text";
23080
+ } | {
23081
+ data: {
23082
+ readonly label: string;
23083
+ readonly value: string;
23084
+ readonly type: string;
23085
+ readonly icon: string;
23086
+ readonly description: string;
23087
+ };
23088
+ type: "tag";
23089
+ })[][] | undefined;
22543
23090
  extra?: {
22544
23091
  cite: string | {
22545
23092
  data: {
@@ -22809,7 +23356,7 @@ export declare const useMessageGroup: (options: {
22809
23356
  multiple?: boolean | undefined;
22810
23357
  placeholder?: string | undefined;
22811
23358
  list?: any[] | undefined;
22812
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
23359
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
22813
23360
  behavior?: "normal" | "simplicity" | undefined;
22814
23361
  selectedStyle?: "checkbox" | "check" | undefined;
22815
23362
  scrollHeight?: number | undefined;
@@ -23082,6 +23629,19 @@ export declare const useMessageGroup: (options: {
23082
23629
  size: number;
23083
23630
  type: string;
23084
23631
  }[] | undefined;
23632
+ docSchema?: ({
23633
+ text: string;
23634
+ type: "text";
23635
+ } | {
23636
+ data: {
23637
+ readonly label: string;
23638
+ readonly value: string;
23639
+ readonly type: string;
23640
+ readonly icon: string;
23641
+ readonly description: string;
23642
+ };
23643
+ type: "tag";
23644
+ })[][] | undefined;
23085
23645
  extra?: {
23086
23646
  cite: string | {
23087
23647
  data: {
@@ -23351,7 +23911,7 @@ export declare const useMessageGroup: (options: {
23351
23911
  multiple?: boolean | undefined;
23352
23912
  placeholder?: string | undefined;
23353
23913
  list?: any[] | undefined;
23354
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
23914
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
23355
23915
  behavior?: "normal" | "simplicity" | undefined;
23356
23916
  selectedStyle?: "checkbox" | "check" | undefined;
23357
23917
  scrollHeight?: number | undefined;
@@ -23624,6 +24184,19 @@ export declare const useMessageGroup: (options: {
23624
24184
  size: number;
23625
24185
  type: string;
23626
24186
  }[] | undefined;
24187
+ docSchema?: ({
24188
+ text: string;
24189
+ type: "text";
24190
+ } | {
24191
+ data: {
24192
+ readonly label: string;
24193
+ readonly value: string;
24194
+ readonly type: string;
24195
+ readonly icon: string;
24196
+ readonly description: string;
24197
+ };
24198
+ type: "tag";
24199
+ })[][] | undefined;
23627
24200
  extra?: {
23628
24201
  cite: string | {
23629
24202
  data: {
@@ -23893,7 +24466,7 @@ export declare const useMessageGroup: (options: {
23893
24466
  multiple?: boolean | undefined;
23894
24467
  placeholder?: string | undefined;
23895
24468
  list?: any[] | undefined;
23896
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
24469
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
23897
24470
  behavior?: "normal" | "simplicity" | undefined;
23898
24471
  selectedStyle?: "checkbox" | "check" | undefined;
23899
24472
  scrollHeight?: number | undefined;
@@ -24166,6 +24739,19 @@ export declare const useMessageGroup: (options: {
24166
24739
  size: number;
24167
24740
  type: string;
24168
24741
  }[] | undefined;
24742
+ docSchema?: ({
24743
+ text: string;
24744
+ type: "text";
24745
+ } | {
24746
+ data: {
24747
+ readonly label: string;
24748
+ readonly value: string;
24749
+ readonly type: string;
24750
+ readonly icon: string;
24751
+ readonly description: string;
24752
+ };
24753
+ type: "tag";
24754
+ })[][] | undefined;
24169
24755
  extra?: {
24170
24756
  cite: string | {
24171
24757
  data: {
@@ -24435,7 +25021,7 @@ export declare const useMessageGroup: (options: {
24435
25021
  multiple?: boolean | undefined;
24436
25022
  placeholder?: string | undefined;
24437
25023
  list?: any[] | undefined;
24438
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
25024
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
24439
25025
  behavior?: "normal" | "simplicity" | undefined;
24440
25026
  selectedStyle?: "checkbox" | "check" | undefined;
24441
25027
  scrollHeight?: number | undefined;
@@ -24708,6 +25294,19 @@ export declare const useMessageGroup: (options: {
24708
25294
  size: number;
24709
25295
  type: string;
24710
25296
  }[] | undefined;
25297
+ docSchema?: ({
25298
+ text: string;
25299
+ type: "text";
25300
+ } | {
25301
+ data: {
25302
+ readonly label: string;
25303
+ readonly value: string;
25304
+ readonly type: string;
25305
+ readonly icon: string;
25306
+ readonly description: string;
25307
+ };
25308
+ type: "tag";
25309
+ })[][] | undefined;
24711
25310
  extra?: {
24712
25311
  cite: string | {
24713
25312
  data: {
@@ -24977,7 +25576,7 @@ export declare const useMessageGroup: (options: {
24977
25576
  multiple?: boolean | undefined;
24978
25577
  placeholder?: string | undefined;
24979
25578
  list?: any[] | undefined;
24980
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
25579
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
24981
25580
  behavior?: "normal" | "simplicity" | undefined;
24982
25581
  selectedStyle?: "checkbox" | "check" | undefined;
24983
25582
  scrollHeight?: number | undefined;
@@ -25253,6 +25852,19 @@ export declare const useMessageGroup: (options: {
25253
25852
  size: number;
25254
25853
  type: string;
25255
25854
  }[] | undefined;
25855
+ docSchema?: ({
25856
+ text: string;
25857
+ type: "text";
25858
+ } | {
25859
+ data: {
25860
+ readonly label: string;
25861
+ readonly value: string;
25862
+ readonly type: string;
25863
+ readonly icon: string;
25864
+ readonly description: string;
25865
+ };
25866
+ type: "tag";
25867
+ })[][] | undefined;
25256
25868
  extra?: {
25257
25869
  cite: string | {
25258
25870
  data: {
@@ -25522,7 +26134,7 @@ export declare const useMessageGroup: (options: {
25522
26134
  multiple?: boolean | undefined;
25523
26135
  placeholder?: string | undefined;
25524
26136
  list?: any[] | undefined;
25525
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
26137
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
25526
26138
  behavior?: "normal" | "simplicity" | undefined;
25527
26139
  selectedStyle?: "checkbox" | "check" | undefined;
25528
26140
  scrollHeight?: number | undefined;
@@ -25785,6 +26397,7 @@ export declare const useMessageGroup: (options: {
25785
26397
  filename?: string | undefined;
25786
26398
  id?: string | undefined;
25787
26399
  mimeType: string;
26400
+ outputId?: string | undefined;
25788
26401
  size?: number | undefined;
25789
26402
  type: MessageContentType.Binary;
25790
26403
  url?: string | undefined;
@@ -25806,6 +26419,19 @@ export declare const useMessageGroup: (options: {
25806
26419
  size: number;
25807
26420
  type: string;
25808
26421
  }[] | undefined;
26422
+ docSchema?: ({
26423
+ text: string;
26424
+ type: "text";
26425
+ } | {
26426
+ data: {
26427
+ readonly label: string;
26428
+ readonly value: string;
26429
+ readonly type: string;
26430
+ readonly icon: string;
26431
+ readonly description: string;
26432
+ };
26433
+ type: "tag";
26434
+ })[][] | undefined;
25809
26435
  extra?: {
25810
26436
  cite: string | {
25811
26437
  data: {
@@ -26075,7 +26701,7 @@ export declare const useMessageGroup: (options: {
26075
26701
  multiple?: boolean | undefined;
26076
26702
  placeholder?: string | undefined;
26077
26703
  list?: any[] | undefined;
26078
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
26704
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
26079
26705
  behavior?: "normal" | "simplicity" | undefined;
26080
26706
  selectedStyle?: "checkbox" | "check" | undefined;
26081
26707
  scrollHeight?: number | undefined;
@@ -26391,6 +27017,19 @@ export declare const useMessageGroup: (options: {
26391
27017
  size: number;
26392
27018
  type: string;
26393
27019
  }[] | undefined;
27020
+ docSchema?: ({
27021
+ text: string;
27022
+ type: "text";
27023
+ } | {
27024
+ data: {
27025
+ readonly label: string;
27026
+ readonly value: string;
27027
+ readonly type: string;
27028
+ readonly icon: string;
27029
+ readonly description: string;
27030
+ };
27031
+ type: "tag";
27032
+ })[][] | undefined;
26394
27033
  extra?: {
26395
27034
  cite: string | {
26396
27035
  data: {
@@ -26660,7 +27299,7 @@ export declare const useMessageGroup: (options: {
26660
27299
  multiple?: boolean | undefined;
26661
27300
  placeholder?: string | undefined;
26662
27301
  list?: any[] | undefined;
26663
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
27302
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
26664
27303
  behavior?: "normal" | "simplicity" | undefined;
26665
27304
  selectedStyle?: "checkbox" | "check" | undefined;
26666
27305
  scrollHeight?: number | undefined;
@@ -26946,6 +27585,19 @@ export declare const useMessageGroup: (options: {
26946
27585
  size: number;
26947
27586
  type: string;
26948
27587
  }[] | undefined;
27588
+ docSchema?: ({
27589
+ text: string;
27590
+ type: "text";
27591
+ } | {
27592
+ data: {
27593
+ readonly label: string;
27594
+ readonly value: string;
27595
+ readonly type: string;
27596
+ readonly icon: string;
27597
+ readonly description: string;
27598
+ };
27599
+ type: "tag";
27600
+ })[][] | undefined;
26949
27601
  extra?: {
26950
27602
  cite: string | {
26951
27603
  data: {
@@ -27215,7 +27867,7 @@ export declare const useMessageGroup: (options: {
27215
27867
  multiple?: boolean | undefined;
27216
27868
  placeholder?: string | undefined;
27217
27869
  list?: any[] | undefined;
27218
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
27870
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
27219
27871
  behavior?: "normal" | "simplicity" | undefined;
27220
27872
  selectedStyle?: "checkbox" | "check" | undefined;
27221
27873
  scrollHeight?: number | undefined;
@@ -27490,6 +28142,19 @@ export declare const useMessageGroup: (options: {
27490
28142
  size: number;
27491
28143
  type: string;
27492
28144
  }[] | undefined;
28145
+ docSchema?: ({
28146
+ text: string;
28147
+ type: "text";
28148
+ } | {
28149
+ data: {
28150
+ readonly label: string;
28151
+ readonly value: string;
28152
+ readonly type: string;
28153
+ readonly icon: string;
28154
+ readonly description: string;
28155
+ };
28156
+ type: "tag";
28157
+ })[][] | undefined;
27493
28158
  extra?: {
27494
28159
  cite: string | {
27495
28160
  data: {
@@ -27759,7 +28424,7 @@ export declare const useMessageGroup: (options: {
27759
28424
  multiple?: boolean | undefined;
27760
28425
  placeholder?: string | undefined;
27761
28426
  list?: any[] | undefined;
27762
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
28427
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
27763
28428
  behavior?: "normal" | "simplicity" | undefined;
27764
28429
  selectedStyle?: "checkbox" | "check" | undefined;
27765
28430
  scrollHeight?: number | undefined;
@@ -28032,6 +28697,19 @@ export declare const useMessageGroup: (options: {
28032
28697
  size: number;
28033
28698
  type: string;
28034
28699
  }[] | undefined;
28700
+ docSchema?: ({
28701
+ text: string;
28702
+ type: "text";
28703
+ } | {
28704
+ data: {
28705
+ readonly label: string;
28706
+ readonly value: string;
28707
+ readonly type: string;
28708
+ readonly icon: string;
28709
+ readonly description: string;
28710
+ };
28711
+ type: "tag";
28712
+ })[][] | undefined;
28035
28713
  extra?: {
28036
28714
  cite: string | {
28037
28715
  data: {
@@ -28301,7 +28979,7 @@ export declare const useMessageGroup: (options: {
28301
28979
  multiple?: boolean | undefined;
28302
28980
  placeholder?: string | undefined;
28303
28981
  list?: any[] | undefined;
28304
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
28982
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
28305
28983
  behavior?: "normal" | "simplicity" | undefined;
28306
28984
  selectedStyle?: "checkbox" | "check" | undefined;
28307
28985
  scrollHeight?: number | undefined;
@@ -28574,6 +29252,19 @@ export declare const useMessageGroup: (options: {
28574
29252
  size: number;
28575
29253
  type: string;
28576
29254
  }[] | undefined;
29255
+ docSchema?: ({
29256
+ text: string;
29257
+ type: "text";
29258
+ } | {
29259
+ data: {
29260
+ readonly label: string;
29261
+ readonly value: string;
29262
+ readonly type: string;
29263
+ readonly icon: string;
29264
+ readonly description: string;
29265
+ };
29266
+ type: "tag";
29267
+ })[][] | undefined;
28577
29268
  extra?: {
28578
29269
  cite: string | {
28579
29270
  data: {
@@ -28843,7 +29534,7 @@ export declare const useMessageGroup: (options: {
28843
29534
  multiple?: boolean | undefined;
28844
29535
  placeholder?: string | undefined;
28845
29536
  list?: any[] | undefined;
28846
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
29537
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
28847
29538
  behavior?: "normal" | "simplicity" | undefined;
28848
29539
  selectedStyle?: "checkbox" | "check" | undefined;
28849
29540
  scrollHeight?: number | undefined;
@@ -29116,6 +29807,19 @@ export declare const useMessageGroup: (options: {
29116
29807
  size: number;
29117
29808
  type: string;
29118
29809
  }[] | undefined;
29810
+ docSchema?: ({
29811
+ text: string;
29812
+ type: "text";
29813
+ } | {
29814
+ data: {
29815
+ readonly label: string;
29816
+ readonly value: string;
29817
+ readonly type: string;
29818
+ readonly icon: string;
29819
+ readonly description: string;
29820
+ };
29821
+ type: "tag";
29822
+ })[][] | undefined;
29119
29823
  extra?: {
29120
29824
  cite: string | {
29121
29825
  data: {
@@ -29385,7 +30089,7 @@ export declare const useMessageGroup: (options: {
29385
30089
  multiple?: boolean | undefined;
29386
30090
  placeholder?: string | undefined;
29387
30091
  list?: any[] | undefined;
29388
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
30092
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
29389
30093
  behavior?: "normal" | "simplicity" | undefined;
29390
30094
  selectedStyle?: "checkbox" | "check" | undefined;
29391
30095
  scrollHeight?: number | undefined;
@@ -29658,6 +30362,19 @@ export declare const useMessageGroup: (options: {
29658
30362
  size: number;
29659
30363
  type: string;
29660
30364
  }[] | undefined;
30365
+ docSchema?: ({
30366
+ text: string;
30367
+ type: "text";
30368
+ } | {
30369
+ data: {
30370
+ readonly label: string;
30371
+ readonly value: string;
30372
+ readonly type: string;
30373
+ readonly icon: string;
30374
+ readonly description: string;
30375
+ };
30376
+ type: "tag";
30377
+ })[][] | undefined;
29661
30378
  extra?: {
29662
30379
  cite: string | {
29663
30380
  data: {
@@ -29927,7 +30644,7 @@ export declare const useMessageGroup: (options: {
29927
30644
  multiple?: boolean | undefined;
29928
30645
  placeholder?: string | undefined;
29929
30646
  list?: any[] | undefined;
29930
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
30647
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
29931
30648
  behavior?: "normal" | "simplicity" | undefined;
29932
30649
  selectedStyle?: "checkbox" | "check" | undefined;
29933
30650
  scrollHeight?: number | undefined;
@@ -30200,6 +30917,19 @@ export declare const useMessageGroup: (options: {
30200
30917
  size: number;
30201
30918
  type: string;
30202
30919
  }[] | undefined;
30920
+ docSchema?: ({
30921
+ text: string;
30922
+ type: "text";
30923
+ } | {
30924
+ data: {
30925
+ readonly label: string;
30926
+ readonly value: string;
30927
+ readonly type: string;
30928
+ readonly icon: string;
30929
+ readonly description: string;
30930
+ };
30931
+ type: "tag";
30932
+ })[][] | undefined;
30203
30933
  extra?: {
30204
30934
  cite: string | {
30205
30935
  data: {
@@ -30469,7 +31199,7 @@ export declare const useMessageGroup: (options: {
30469
31199
  multiple?: boolean | undefined;
30470
31200
  placeholder?: string | undefined;
30471
31201
  list?: any[] | undefined;
30472
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
31202
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
30473
31203
  behavior?: "normal" | "simplicity" | undefined;
30474
31204
  selectedStyle?: "checkbox" | "check" | undefined;
30475
31205
  scrollHeight?: number | undefined;
@@ -30742,6 +31472,19 @@ export declare const useMessageGroup: (options: {
30742
31472
  size: number;
30743
31473
  type: string;
30744
31474
  }[] | undefined;
31475
+ docSchema?: ({
31476
+ text: string;
31477
+ type: "text";
31478
+ } | {
31479
+ data: {
31480
+ readonly label: string;
31481
+ readonly value: string;
31482
+ readonly type: string;
31483
+ readonly icon: string;
31484
+ readonly description: string;
31485
+ };
31486
+ type: "tag";
31487
+ })[][] | undefined;
30745
31488
  extra?: {
30746
31489
  cite: string | {
30747
31490
  data: {
@@ -31011,7 +31754,7 @@ export declare const useMessageGroup: (options: {
31011
31754
  multiple?: boolean | undefined;
31012
31755
  placeholder?: string | undefined;
31013
31756
  list?: any[] | undefined;
31014
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
31757
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
31015
31758
  behavior?: "normal" | "simplicity" | undefined;
31016
31759
  selectedStyle?: "checkbox" | "check" | undefined;
31017
31760
  scrollHeight?: number | undefined;
@@ -31284,6 +32027,19 @@ export declare const useMessageGroup: (options: {
31284
32027
  size: number;
31285
32028
  type: string;
31286
32029
  }[] | undefined;
32030
+ docSchema?: ({
32031
+ text: string;
32032
+ type: "text";
32033
+ } | {
32034
+ data: {
32035
+ readonly label: string;
32036
+ readonly value: string;
32037
+ readonly type: string;
32038
+ readonly icon: string;
32039
+ readonly description: string;
32040
+ };
32041
+ type: "tag";
32042
+ })[][] | undefined;
31287
32043
  extra?: {
31288
32044
  cite: string | {
31289
32045
  data: {
@@ -31553,7 +32309,7 @@ export declare const useMessageGroup: (options: {
31553
32309
  multiple?: boolean | undefined;
31554
32310
  placeholder?: string | undefined;
31555
32311
  list?: any[] | undefined;
31556
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
32312
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
31557
32313
  behavior?: "normal" | "simplicity" | undefined;
31558
32314
  selectedStyle?: "checkbox" | "check" | undefined;
31559
32315
  scrollHeight?: number | undefined;
@@ -31826,6 +32582,19 @@ export declare const useMessageGroup: (options: {
31826
32582
  size: number;
31827
32583
  type: string;
31828
32584
  }[] | undefined;
32585
+ docSchema?: ({
32586
+ text: string;
32587
+ type: "text";
32588
+ } | {
32589
+ data: {
32590
+ readonly label: string;
32591
+ readonly value: string;
32592
+ readonly type: string;
32593
+ readonly icon: string;
32594
+ readonly description: string;
32595
+ };
32596
+ type: "tag";
32597
+ })[][] | undefined;
31829
32598
  extra?: {
31830
32599
  cite: string | {
31831
32600
  data: {
@@ -32095,7 +32864,7 @@ export declare const useMessageGroup: (options: {
32095
32864
  multiple?: boolean | undefined;
32096
32865
  placeholder?: string | undefined;
32097
32866
  list?: any[] | undefined;
32098
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
32867
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
32099
32868
  behavior?: "normal" | "simplicity" | undefined;
32100
32869
  selectedStyle?: "checkbox" | "check" | undefined;
32101
32870
  scrollHeight?: number | undefined;
@@ -32368,6 +33137,19 @@ export declare const useMessageGroup: (options: {
32368
33137
  size: number;
32369
33138
  type: string;
32370
33139
  }[] | undefined;
33140
+ docSchema?: ({
33141
+ text: string;
33142
+ type: "text";
33143
+ } | {
33144
+ data: {
33145
+ readonly label: string;
33146
+ readonly value: string;
33147
+ readonly type: string;
33148
+ readonly icon: string;
33149
+ readonly description: string;
33150
+ };
33151
+ type: "tag";
33152
+ })[][] | undefined;
32371
33153
  extra?: {
32372
33154
  cite: string | {
32373
33155
  data: {
@@ -32637,7 +33419,7 @@ export declare const useMessageGroup: (options: {
32637
33419
  multiple?: boolean | undefined;
32638
33420
  placeholder?: string | undefined;
32639
33421
  list?: any[] | undefined;
32640
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
33422
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
32641
33423
  behavior?: "normal" | "simplicity" | undefined;
32642
33424
  selectedStyle?: "checkbox" | "check" | undefined;
32643
33425
  scrollHeight?: number | undefined;
@@ -32996,6 +33778,19 @@ export declare const useMessageGroup: (options: {
32996
33778
  size: number;
32997
33779
  type: string;
32998
33780
  }[] | undefined;
33781
+ docSchema?: ({
33782
+ text: string;
33783
+ type: "text";
33784
+ } | {
33785
+ data: {
33786
+ readonly label: string;
33787
+ readonly value: string;
33788
+ readonly type: string;
33789
+ readonly icon: string;
33790
+ readonly description: string;
33791
+ };
33792
+ type: "tag";
33793
+ })[][] | undefined;
32999
33794
  extra?: {
33000
33795
  cite: string | {
33001
33796
  data: {
@@ -33265,7 +34060,7 @@ export declare const useMessageGroup: (options: {
33265
34060
  multiple?: boolean | undefined;
33266
34061
  placeholder?: string | undefined;
33267
34062
  list?: any[] | undefined;
33268
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
34063
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
33269
34064
  behavior?: "normal" | "simplicity" | undefined;
33270
34065
  selectedStyle?: "checkbox" | "check" | undefined;
33271
34066
  scrollHeight?: number | undefined;
@@ -33538,6 +34333,19 @@ export declare const useMessageGroup: (options: {
33538
34333
  size: number;
33539
34334
  type: string;
33540
34335
  }[] | undefined;
34336
+ docSchema?: ({
34337
+ text: string;
34338
+ type: "text";
34339
+ } | {
34340
+ data: {
34341
+ readonly label: string;
34342
+ readonly value: string;
34343
+ readonly type: string;
34344
+ readonly icon: string;
34345
+ readonly description: string;
34346
+ };
34347
+ type: "tag";
34348
+ })[][] | undefined;
33541
34349
  extra?: {
33542
34350
  cite: string | {
33543
34351
  data: {
@@ -33807,7 +34615,7 @@ export declare const useMessageGroup: (options: {
33807
34615
  multiple?: boolean | undefined;
33808
34616
  placeholder?: string | undefined;
33809
34617
  list?: any[] | undefined;
33810
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
34618
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
33811
34619
  behavior?: "normal" | "simplicity" | undefined;
33812
34620
  selectedStyle?: "checkbox" | "check" | undefined;
33813
34621
  scrollHeight?: number | undefined;
@@ -34080,6 +34888,19 @@ export declare const useMessageGroup: (options: {
34080
34888
  size: number;
34081
34889
  type: string;
34082
34890
  }[] | undefined;
34891
+ docSchema?: ({
34892
+ text: string;
34893
+ type: "text";
34894
+ } | {
34895
+ data: {
34896
+ readonly label: string;
34897
+ readonly value: string;
34898
+ readonly type: string;
34899
+ readonly icon: string;
34900
+ readonly description: string;
34901
+ };
34902
+ type: "tag";
34903
+ })[][] | undefined;
34083
34904
  extra?: {
34084
34905
  cite: string | {
34085
34906
  data: {
@@ -34349,7 +35170,7 @@ export declare const useMessageGroup: (options: {
34349
35170
  multiple?: boolean | undefined;
34350
35171
  placeholder?: string | undefined;
34351
35172
  list?: any[] | undefined;
34352
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
35173
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
34353
35174
  behavior?: "normal" | "simplicity" | undefined;
34354
35175
  selectedStyle?: "checkbox" | "check" | undefined;
34355
35176
  scrollHeight?: number | undefined;
@@ -34623,6 +35444,19 @@ export declare const useMessageGroup: (options: {
34623
35444
  size: number;
34624
35445
  type: string;
34625
35446
  }[] | undefined;
35447
+ docSchema?: ({
35448
+ text: string;
35449
+ type: "text";
35450
+ } | {
35451
+ data: {
35452
+ readonly label: string;
35453
+ readonly value: string;
35454
+ readonly type: string;
35455
+ readonly icon: string;
35456
+ readonly description: string;
35457
+ };
35458
+ type: "tag";
35459
+ })[][] | undefined;
34626
35460
  extra?: {
34627
35461
  cite: string | {
34628
35462
  data: {
@@ -34892,7 +35726,7 @@ export declare const useMessageGroup: (options: {
34892
35726
  multiple?: boolean | undefined;
34893
35727
  placeholder?: string | undefined;
34894
35728
  list?: any[] | undefined;
34895
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
35729
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
34896
35730
  behavior?: "normal" | "simplicity" | undefined;
34897
35731
  selectedStyle?: "checkbox" | "check" | undefined;
34898
35732
  scrollHeight?: number | undefined;
@@ -35165,6 +35999,19 @@ export declare const useMessageGroup: (options: {
35165
35999
  size: number;
35166
36000
  type: string;
35167
36001
  }[] | undefined;
36002
+ docSchema?: ({
36003
+ text: string;
36004
+ type: "text";
36005
+ } | {
36006
+ data: {
36007
+ readonly label: string;
36008
+ readonly value: string;
36009
+ readonly type: string;
36010
+ readonly icon: string;
36011
+ readonly description: string;
36012
+ };
36013
+ type: "tag";
36014
+ })[][] | undefined;
35168
36015
  extra?: {
35169
36016
  cite: string | {
35170
36017
  data: {
@@ -35434,7 +36281,7 @@ export declare const useMessageGroup: (options: {
35434
36281
  multiple?: boolean | undefined;
35435
36282
  placeholder?: string | undefined;
35436
36283
  list?: any[] | undefined;
35437
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
36284
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
35438
36285
  behavior?: "normal" | "simplicity" | undefined;
35439
36286
  selectedStyle?: "checkbox" | "check" | undefined;
35440
36287
  scrollHeight?: number | undefined;
@@ -35707,6 +36554,19 @@ export declare const useMessageGroup: (options: {
35707
36554
  size: number;
35708
36555
  type: string;
35709
36556
  }[] | undefined;
36557
+ docSchema?: ({
36558
+ text: string;
36559
+ type: "text";
36560
+ } | {
36561
+ data: {
36562
+ readonly label: string;
36563
+ readonly value: string;
36564
+ readonly type: string;
36565
+ readonly icon: string;
36566
+ readonly description: string;
36567
+ };
36568
+ type: "tag";
36569
+ })[][] | undefined;
35710
36570
  extra?: {
35711
36571
  cite: string | {
35712
36572
  data: {
@@ -35976,7 +36836,7 @@ export declare const useMessageGroup: (options: {
35976
36836
  multiple?: boolean | undefined;
35977
36837
  placeholder?: string | undefined;
35978
36838
  list?: any[] | undefined;
35979
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
36839
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
35980
36840
  behavior?: "normal" | "simplicity" | undefined;
35981
36841
  selectedStyle?: "checkbox" | "check" | undefined;
35982
36842
  scrollHeight?: number | undefined;
@@ -36249,6 +37109,19 @@ export declare const useMessageGroup: (options: {
36249
37109
  size: number;
36250
37110
  type: string;
36251
37111
  }[] | undefined;
37112
+ docSchema?: ({
37113
+ text: string;
37114
+ type: "text";
37115
+ } | {
37116
+ data: {
37117
+ readonly label: string;
37118
+ readonly value: string;
37119
+ readonly type: string;
37120
+ readonly icon: string;
37121
+ readonly description: string;
37122
+ };
37123
+ type: "tag";
37124
+ })[][] | undefined;
36252
37125
  extra?: {
36253
37126
  cite: string | {
36254
37127
  data: {
@@ -36518,7 +37391,7 @@ export declare const useMessageGroup: (options: {
36518
37391
  multiple?: boolean | undefined;
36519
37392
  placeholder?: string | undefined;
36520
37393
  list?: any[] | undefined;
36521
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
37394
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
36522
37395
  behavior?: "normal" | "simplicity" | undefined;
36523
37396
  selectedStyle?: "checkbox" | "check" | undefined;
36524
37397
  scrollHeight?: number | undefined;
@@ -36791,6 +37664,19 @@ export declare const useMessageGroup: (options: {
36791
37664
  size: number;
36792
37665
  type: string;
36793
37666
  }[] | undefined;
37667
+ docSchema?: ({
37668
+ text: string;
37669
+ type: "text";
37670
+ } | {
37671
+ data: {
37672
+ readonly label: string;
37673
+ readonly value: string;
37674
+ readonly type: string;
37675
+ readonly icon: string;
37676
+ readonly description: string;
37677
+ };
37678
+ type: "tag";
37679
+ })[][] | undefined;
36794
37680
  extra?: {
36795
37681
  cite: string | {
36796
37682
  data: {
@@ -37060,7 +37946,7 @@ export declare const useMessageGroup: (options: {
37060
37946
  multiple?: boolean | undefined;
37061
37947
  placeholder?: string | undefined;
37062
37948
  list?: any[] | undefined;
37063
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
37949
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
37064
37950
  behavior?: "normal" | "simplicity" | undefined;
37065
37951
  selectedStyle?: "checkbox" | "check" | undefined;
37066
37952
  scrollHeight?: number | undefined;
@@ -37333,6 +38219,19 @@ export declare const useMessageGroup: (options: {
37333
38219
  size: number;
37334
38220
  type: string;
37335
38221
  }[] | undefined;
38222
+ docSchema?: ({
38223
+ text: string;
38224
+ type: "text";
38225
+ } | {
38226
+ data: {
38227
+ readonly label: string;
38228
+ readonly value: string;
38229
+ readonly type: string;
38230
+ readonly icon: string;
38231
+ readonly description: string;
38232
+ };
38233
+ type: "tag";
38234
+ })[][] | undefined;
37336
38235
  extra?: {
37337
38236
  cite: string | {
37338
38237
  data: {
@@ -37602,7 +38501,7 @@ export declare const useMessageGroup: (options: {
37602
38501
  multiple?: boolean | undefined;
37603
38502
  placeholder?: string | undefined;
37604
38503
  list?: any[] | undefined;
37605
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
38504
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
37606
38505
  behavior?: "normal" | "simplicity" | undefined;
37607
38506
  selectedStyle?: "checkbox" | "check" | undefined;
37608
38507
  scrollHeight?: number | undefined;
@@ -37875,6 +38774,19 @@ export declare const useMessageGroup: (options: {
37875
38774
  size: number;
37876
38775
  type: string;
37877
38776
  }[] | undefined;
38777
+ docSchema?: ({
38778
+ text: string;
38779
+ type: "text";
38780
+ } | {
38781
+ data: {
38782
+ readonly label: string;
38783
+ readonly value: string;
38784
+ readonly type: string;
38785
+ readonly icon: string;
38786
+ readonly description: string;
38787
+ };
38788
+ type: "tag";
38789
+ })[][] | undefined;
37878
38790
  extra?: {
37879
38791
  cite: string | {
37880
38792
  data: {
@@ -38144,7 +39056,7 @@ export declare const useMessageGroup: (options: {
38144
39056
  multiple?: boolean | undefined;
38145
39057
  placeholder?: string | undefined;
38146
39058
  list?: any[] | undefined;
38147
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
39059
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
38148
39060
  behavior?: "normal" | "simplicity" | undefined;
38149
39061
  selectedStyle?: "checkbox" | "check" | undefined;
38150
39062
  scrollHeight?: number | undefined;
@@ -38420,6 +39332,19 @@ export declare const useMessageGroup: (options: {
38420
39332
  size: number;
38421
39333
  type: string;
38422
39334
  }[] | undefined;
39335
+ docSchema?: ({
39336
+ text: string;
39337
+ type: "text";
39338
+ } | {
39339
+ data: {
39340
+ readonly label: string;
39341
+ readonly value: string;
39342
+ readonly type: string;
39343
+ readonly icon: string;
39344
+ readonly description: string;
39345
+ };
39346
+ type: "tag";
39347
+ })[][] | undefined;
38423
39348
  extra?: {
38424
39349
  cite: string | {
38425
39350
  data: {
@@ -38689,7 +39614,7 @@ export declare const useMessageGroup: (options: {
38689
39614
  multiple?: boolean | undefined;
38690
39615
  placeholder?: string | undefined;
38691
39616
  list?: any[] | undefined;
38692
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
39617
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
38693
39618
  behavior?: "normal" | "simplicity" | undefined;
38694
39619
  selectedStyle?: "checkbox" | "check" | undefined;
38695
39620
  scrollHeight?: number | undefined;
@@ -38952,6 +39877,7 @@ export declare const useMessageGroup: (options: {
38952
39877
  filename?: string | undefined;
38953
39878
  id?: string | undefined;
38954
39879
  mimeType: string;
39880
+ outputId?: string | undefined;
38955
39881
  size?: number | undefined;
38956
39882
  type: MessageContentType.Binary;
38957
39883
  url?: string | undefined;
@@ -38973,6 +39899,19 @@ export declare const useMessageGroup: (options: {
38973
39899
  size: number;
38974
39900
  type: string;
38975
39901
  }[] | undefined;
39902
+ docSchema?: ({
39903
+ text: string;
39904
+ type: "text";
39905
+ } | {
39906
+ data: {
39907
+ readonly label: string;
39908
+ readonly value: string;
39909
+ readonly type: string;
39910
+ readonly icon: string;
39911
+ readonly description: string;
39912
+ };
39913
+ type: "tag";
39914
+ })[][] | undefined;
38976
39915
  extra?: {
38977
39916
  cite: string | {
38978
39917
  data: {
@@ -39242,7 +40181,7 @@ export declare const useMessageGroup: (options: {
39242
40181
  multiple?: boolean | undefined;
39243
40182
  placeholder?: string | undefined;
39244
40183
  list?: any[] | undefined;
39245
- tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
40184
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
39246
40185
  behavior?: "normal" | "simplicity" | undefined;
39247
40186
  selectedStyle?: "checkbox" | "check" | undefined;
39248
40187
  scrollHeight?: number | undefined;