@projectcor/maia-components 2.41.0 → 2.41.1-0

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 (173) hide show
  1. package/CHANGELOG.md +840 -0
  2. package/lib/App.js +44 -19
  3. package/lib/components/atoms/ApprovalBox/ApprovalBox.spec.js +135 -0
  4. package/lib/components/atoms/Checkbox/Checkbox.spec.js +27 -0
  5. package/lib/components/atoms/Chip/Chip.spec.js +82 -0
  6. package/lib/components/atoms/ContextMentionChip/ContextMentionChip.spec.js +29 -0
  7. package/lib/components/atoms/Fade/Fade.spec.js +31 -0
  8. package/lib/components/atoms/FrequentlyUsedActions/FrequentlyUsedActions.js +3 -1
  9. package/lib/components/atoms/FrequentlyUsedActions/FrequentlyUsedActions.styles.js +19 -7
  10. package/lib/components/atoms/MAIAButton/MAIAButton.spec.js +42 -0
  11. package/lib/components/atoms/MAIAInput/MAIAInput.spec.js +300 -0
  12. package/lib/components/atoms/ReasoningBlock/ReasoningBlock.js +7 -2
  13. package/lib/components/atoms/ReasoningBlock/ReasoningBlock.spec.js +69 -0
  14. package/lib/components/atoms/ReasoningBlock/ReasoningBlock.styles.js +10 -14
  15. package/lib/components/atoms/ReasoningBlock/ReasoningSteps.js +1 -1
  16. package/lib/components/atoms/ReasoningBlock/ReasoningSteps.spec.js +59 -0
  17. package/lib/components/atoms/ReasoningBlock/ReasoningTimeline.js +57 -37
  18. package/lib/components/atoms/ReasoningBlock/ReasoningTimeline.spec.js +58 -0
  19. package/lib/components/atoms/ReasoningBlock/reasoningLiveNarration.js +18 -12
  20. package/lib/components/atoms/ReasoningBlock/reasoningLiveNarration.spec.js +68 -0
  21. package/lib/components/atoms/ReasoningBlock/useCollapsibleHeight.js +52 -0
  22. package/lib/components/atoms/ReasoningBlock/useCollapsibleHeight.spec.js +90 -0
  23. package/lib/components/atoms/SkillsDropdown/SkillsDropdown.spec.js +107 -0
  24. package/lib/components/atoms/SlashCommandDropdown/SlashCommandDropdown.spec.js +85 -0
  25. package/lib/components/atoms/Switch/Switch.spec.js +41 -0
  26. package/lib/components/index.js +2 -1
  27. package/lib/components/molecules/AbmSection/AbmAccessibilitySection/AbmAccessibilitySection.spec.js +77 -0
  28. package/lib/components/molecules/ChatAIContent/ChatAIContent.js +7 -3
  29. package/lib/components/molecules/ChatAIHome/ChatAIHome.js +21 -6
  30. package/lib/components/molecules/ChatAIHome/ChatAIHome.spec.js +246 -0
  31. package/lib/components/molecules/ChatAIMessages/ChatAICreateAgentActions.spec.js +104 -0
  32. package/lib/components/molecules/ChatAIMessages/ChatAIMessages.js +9 -3
  33. package/lib/components/molecules/ChatAIMessages/ChatAIMessages.spec.js +291 -0
  34. package/lib/components/molecules/ChatAIMessages/ChatAISuggestions.spec.js +46 -0
  35. package/lib/components/molecules/ChatAIMessages/newStyles.js +29 -26
  36. package/lib/components/molecules/ChatAIModal/ChatAIModal.helpers.js +8 -1
  37. package/lib/components/molecules/ChatAIModal/ChatAIModal.helpers.spec.js +148 -0
  38. package/lib/components/molecules/ChatAIModal/ChatAIModal.js +25 -8
  39. package/lib/components/molecules/ChatAIModal/components/ChatAiModalHeader/ChatAiModalHeader.js +65 -61
  40. package/lib/components/molecules/ChatAIModal/components/MaiaMinimizedPill/MaiaMinimizedPill.spec.js +37 -0
  41. package/lib/components/molecules/ChatAIMySkills/ChatAIMySkills.spec.js +128 -0
  42. package/lib/components/molecules/ChatFooter/ChatFooter.js +5 -3
  43. package/lib/components/molecules/ChatFooter/ChatFooter.spec.js +112 -0
  44. package/lib/components/molecules/ContextMentionInput/ContextMentionInput.spec.js +84 -0
  45. package/lib/components/molecules/MessageFeedback/MessageFeedback.spec.js +116 -0
  46. package/lib/components/molecules/Sidebar/Sidebar.js +28 -23
  47. package/lib/components/molecules/Sidebar/Sidebar.spec.js +234 -0
  48. package/lib/components/organisms/AbmAgentModal/AbmAgentModal.js +2 -2
  49. package/lib/components/organisms/AbmAgentModal/AbmAgentModal.spec.js +335 -0
  50. package/lib/components/organisms/AbmSkillModal/AbmSkillModal.spec.js +405 -0
  51. package/lib/components/organisms/ChatAI/ChatAI.spec.js +174 -0
  52. package/lib/components/organisms/ChatAIPage/ChatAIPage.js +486 -0
  53. package/lib/components/organisms/ChatAIPage/ChatAIPage.spec.js +231 -0
  54. package/lib/components/organisms/ChatAIPage/ChatAIPage.styles.js +16 -0
  55. package/lib/components/organisms/ChatAIPage/ChatAIPageHeader.js +253 -0
  56. package/lib/components/organisms/ChatAIPage/ChatAIPageHeader.spec.js +139 -0
  57. package/lib/components/organisms/ChatAIPage/ChatAIPageHeader.styles.js +13 -0
  58. package/lib/components/organisms/ChatAIPage/ChatAIPageHome.js +250 -0
  59. package/lib/components/organisms/ChatAIPage/ChatAIPageHome.spec.js +224 -0
  60. package/lib/components/organisms/ChatAIPage/ChatAIPageHome.styles.js +144 -0
  61. package/lib/components/organisms/ChatAIPage/getDaypart.js +9 -0
  62. package/lib/components/organisms/ChatAIPage/getDaypart.spec.js +19 -0
  63. package/lib/components/organisms/ChatAIPage/index.js +3 -0
  64. package/lib/components/organisms/DeleteAgentModal/DeleteAgentModal.spec.js +59 -0
  65. package/lib/components/organisms/DeleteQuestionModal/DeleteQuestionModal.spec.js +79 -0
  66. package/lib/components/organisms/EditQuestionModal/EditQuestionModal.spec.js +86 -0
  67. package/lib/constants/permissions/index.js +2 -2
  68. package/lib/constants/permissions/utils.js +4 -1
  69. package/lib/constants/permissions/utils.spec.js +34 -0
  70. package/lib/dev/DevMaiaPage.js +30 -0
  71. package/lib/dev/DevReasoningTimeline.js +11 -17
  72. package/lib/hooks/useAgentModel/useCreateAgent.spec.js +95 -0
  73. package/lib/hooks/useAgentModel/useUpdateAgent.spec.js +96 -0
  74. package/lib/hooks/useCaretPosition.spec.js +58 -0
  75. package/lib/hooks/useChatManager/useChatManager.js +7 -7
  76. package/lib/hooks/useChatMessages/useChatMessages.spec.js +279 -0
  77. package/lib/hooks/useDebounce.spec.js +42 -0
  78. package/lib/hooks/useEvent.spec.js +40 -0
  79. package/lib/hooks/useFrequentlyUsedActions.js +31 -12
  80. package/lib/hooks/useIsMaiaPageRoute.js +26 -0
  81. package/lib/hooks/useIsMaiaPageRoute.spec.js +26 -0
  82. package/lib/hooks/useMentionAllowedTypes.spec.js +89 -0
  83. package/lib/hooks/useMinimizedPillNoveltyDot/useMinimizedPillNoveltyDot.spec.js +67 -0
  84. package/lib/hooks/useModal/useModal.spec.js +73 -0
  85. package/lib/hooks/useResize.spec.js +37 -0
  86. package/lib/hooks/useSkillsCatalog.spec.js +88 -0
  87. package/lib/hooks/useSnackBarManager/useSnackBarManager.spec.js +33 -0
  88. package/lib/hooks/useT.spec.js +20 -0
  89. package/lib/hooks/useToggle.spec.js +33 -0
  90. package/lib/index.js +5 -2
  91. package/lib/lang/br/index.js +26 -1
  92. package/lib/lang/en/index.js +26 -1
  93. package/lib/lang/es/index.js +26 -1
  94. package/lib/lang/fr/index.js +26 -1
  95. package/lib/lib/utils.js +9 -0
  96. package/lib/services/maia/Access/updateAccess.spec.js +108 -0
  97. package/lib/services/maia/Actions/getFrequentlyUsedActions.js +1 -1
  98. package/lib/services/maia/Actions/getFrequentlyUsedActions.spec.js +69 -0
  99. package/lib/services/maia/Actions/getSlashCommands.spec.js +74 -0
  100. package/lib/services/maia/Agents/createAgent.spec.js +55 -0
  101. package/lib/services/maia/Agents/deleteAgent.spec.js +42 -0
  102. package/lib/services/maia/Agents/fetchAgentDetail.spec.js +108 -0
  103. package/lib/services/maia/Agents/getAgentById.spec.js +55 -0
  104. package/lib/services/maia/Agents/getAgentSuggestions.spec.js +82 -0
  105. package/lib/services/maia/Agents/setAgentToolGroups.spec.js +45 -0
  106. package/lib/services/maia/Agents/toggleFavorite.spec.js +47 -0
  107. package/lib/services/maia/Agents/updateAgent.spec.js +48 -0
  108. package/lib/services/maia/Chats/deleteChat.spec.js +31 -0
  109. package/lib/services/maia/Chats/getChatMessages.spec.js +150 -0
  110. package/lib/services/maia/Chats/getChatsByUserId.spec.js +149 -0
  111. package/lib/services/maia/Chats/markSessionAsRead.spec.js +30 -0
  112. package/lib/services/maia/Chats/patchChat.spec.js +41 -0
  113. package/lib/services/maia/Chats/wasHelpfulChat.spec.js +28 -0
  114. package/lib/services/maia/Faqs/getFrequentlyAskedQuestions.spec.js +58 -0
  115. package/lib/services/maia/Knowledge/delete.spec.js +45 -0
  116. package/lib/services/maia/Knowledge/download.spec.js +78 -0
  117. package/lib/services/maia/Knowledge/save.spec.js +58 -0
  118. package/lib/services/maia/Orchestrator/orchestrator.spec.js +72 -0
  119. package/lib/services/maia/RecentClients/getRecentClients.spec.js +52 -0
  120. package/lib/services/maia/RecentContexts/getRecentContexts.spec.js +83 -0
  121. package/lib/services/maia/RecentProjects/getRecentProjects.spec.js +82 -0
  122. package/lib/services/maia/RecentTasks/getRecentTasks.spec.js +63 -0
  123. package/lib/services/maia/RecentUsers/getRecentUsers.spec.js +82 -0
  124. package/lib/services/maia/Skills/createSkill.spec.js +68 -0
  125. package/lib/services/maia/Skills/deleteSkill.spec.js +42 -0
  126. package/lib/services/maia/Skills/generateSkill.spec.js +48 -0
  127. package/lib/services/maia/Skills/getSkills.spec.js +152 -0
  128. package/lib/services/maia/Skills/updateSkill.spec.js +62 -0
  129. package/lib/services/maia/client.spec.js +56 -0
  130. package/lib/services/utils/fetchCOR.spec.js +211 -0
  131. package/lib/services/utils/getCookie.spec.js +20 -0
  132. package/lib/store/chatsSidebarOptimistic.spec.js +120 -0
  133. package/lib/store/maiaLastChatPersistence.spec.js +22 -0
  134. package/lib/store/maiaPanelSessionPersistence.spec.js +62 -0
  135. package/lib/store/sessions/sessionStreamManager.js +40 -52
  136. package/lib/store/sessions/sessions.types.spec.js +16 -0
  137. package/lib/store/sessions/useSessionsStore.spec.js +135 -0
  138. package/lib/store/useChatsStore.spec.js +619 -0
  139. package/lib/store/useFaqsStore.spec.js +57 -0
  140. package/lib/styles/cascade.js +29 -3
  141. package/lib/styles/transitions.js +3 -1
  142. package/lib/types/global.d.js +1 -1
  143. package/lib/utils/agentDisplayName.spec.js +44 -0
  144. package/lib/utils/autoApproveStorage.spec.js +25 -0
  145. package/lib/utils/chatInputFiles.spec.js +39 -0
  146. package/lib/utils/contextMentionLabel.spec.js +13 -0
  147. package/lib/utils/contextMentionTriggers.spec.js +38 -0
  148. package/lib/utils/contextMentionTypeLabel.spec.js +14 -0
  149. package/lib/utils/corConnectorMentionTypes.spec.js +23 -0
  150. package/lib/utils/fileDownloadHelper.spec.js +67 -0
  151. package/lib/utils/formatQuickActionMessage.spec.js +27 -0
  152. package/lib/utils/formatUnreadCount.spec.js +12 -0
  153. package/lib/utils/getUnitFileSize.spec.js +18 -0
  154. package/lib/utils/hitlAnalytics.spec.js +100 -0
  155. package/lib/utils/hoursPlannerQuickActionType.js +74 -1
  156. package/lib/utils/hoursPlannerQuickActionType.spec.js +64 -0
  157. package/lib/utils/maiaPageRoute.js +24 -0
  158. package/lib/utils/maiaPageRoute.spec.js +23 -0
  159. package/lib/utils/mapBackendLang.spec.js +19 -0
  160. package/lib/utils/navigateContextEntity.spec.js +50 -0
  161. package/lib/utils/normalizeAgentConnectors.spec.js +89 -0
  162. package/lib/utils/orchestratorSubagents.spec.js +32 -0
  163. package/lib/utils/reasoningMappers.spec.js +103 -0
  164. package/lib/utils/retryCompletion.spec.js +99 -0
  165. package/lib/utils/skillContentSize.spec.js +13 -0
  166. package/lib/utils/slashCommandMarker.spec.js +43 -0
  167. package/lib/utils/sortManagerHoursHomeFuas.spec.js +51 -0
  168. package/lib/utils/sseStreamContent.spec.js +31 -0
  169. package/lib/utils/streamActivityMessages.js +32 -19
  170. package/lib/utils/streamActivityMessages.spec.js +131 -0
  171. package/lib/utils/validateTrimmedFields.spec.js +26 -0
  172. package/package.json +1 -1
  173. package/README.md +0 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,840 @@
1
+ ## [2.41.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.40.0...v2.41.0) (2026-09-17)
2
+
3
+
4
+ ### Features
5
+
6
+ * **maia:** hover and open tooltips on context chip and minimized pill ([39909aa](https://github.com/ProjectCORTeam/maia-components/commit/39909aa3b8842bf7d51c550a344775c04784b8a7))
7
+ * **maia:** make input context chip open task, project or client ([b4fcd84](https://github.com/ProjectCORTeam/maia-components/commit/b4fcd849ff0889138dbd90a9b30f018a5d160cf6))
8
+
9
+ ## [2.40.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.39.4...v2.40.0) (2026-09-17)
10
+
11
+
12
+ ### Features
13
+
14
+ * enhance ChatAIModal with novelty dot for minimized state and logging functionality ([193b95a](https://github.com/ProjectCORTeam/maia-components/commit/193b95a2c128b399ba533228180510cb948736c5))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * eslint on restore flow and drop unused sidebar selection state ([5dd9dd2](https://github.com/ProjectCORTeam/maia-components/commit/5dd9dd2a5a327641bdb9b5461bdad85f976e59c0))
20
+ * **maia:** sidebar selection on restore and remove debug logging ([4ec055c](https://github.com/ProjectCORTeam/maia-components/commit/4ec055c3b0efcda20fbff043ff5d11237708066a))
21
+
22
+ ### [2.39.4](https://github.com/ProjectCORTeam/maia-components/compare/v2.39.3...v2.39.4) (2026-09-17)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * preserve chronological order when paginating chat history ([79f8389](https://github.com/ProjectCORTeam/maia-components/commit/79f8389b090710a1e3eb302cdd275f86fee422de))
28
+
29
+ ### [2.39.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.39.2...v2.39.3) (2026-09-16)
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * Update canCreate logic in MAIAInput to include company_id checks ([232c955](https://github.com/ProjectCORTeam/maia-components/commit/232c955b1621aff65aa5c1aa7dc8e32c99edaa89))
35
+
36
+ ### [2.39.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.39.1...v2.39.2) (2026-09-16)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * Update company_id check in Sidebar component and tests ([a604978](https://github.com/ProjectCORTeam/maia-components/commit/a6049782b821b6ecbd82e96ee835f50f2355a776))
42
+
43
+ ## [2.39.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.38.3...v2.39.0) (2026-09-16)
44
+
45
+
46
+ ### Features
47
+
48
+ * Implement agent management and skill mention dispatch in ChatAIModal ([69dd63e](https://github.com/ProjectCORTeam/maia-components/commit/69dd63e39ff222fefb403b556101e1bab3eaffad))
49
+
50
+ ### [2.38.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.38.2...v2.38.3) (2026-09-16)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * Update repository URL in package.json to include .git extension ([4ca0e83](https://github.com/ProjectCORTeam/maia-components/commit/4ca0e833a14577962a85490a4c132244e8fe4688))
56
+
57
+ ### [2.38.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.38.0...v2.38.1) (2026-09-16)
58
+
59
+
60
+ ### Bug Fixes
61
+
62
+ * **i18n:** update orchestratorPlaceholder text for multiple languages ([1f1cb08](https://github.com/ProjectCORTeam/maia-components/commit/1f1cb08eb0394bc3130906f2c317b0f3284276b1))
63
+
64
+ ## [2.38.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.37.0...v2.38.0) (2026-09-16)
65
+
66
+
67
+ ### Features
68
+
69
+ * Implement skills access control in MAIAInput and ChatAIModal ([fec7ac9](https://github.com/ProjectCORTeam/maia-components/commit/fec7ac921ceb74f68d8585b72505bdfe25c4df2d))
70
+
71
+
72
+ ### Bug Fixes
73
+
74
+ * **home:** excluir agentes custom de FAQs y corregir formato ESLint ([e6e4f73](https://github.com/ProjectCORTeam/maia-components/commit/e6e4f73245386e636ca1e2f6cfe889e06448ae1d))
75
+ * **home:** FAQs solo con contexto cliente pineado (COR-2044266) ([244b120](https://github.com/ProjectCORTeam/maia-components/commit/244b120d8b09a310c75e3220af054518c426b8ca))
76
+ * **home:** ocultar FAQs en sección project ([70b3ff9](https://github.com/ProjectCORTeam/maia-components/commit/70b3ff94dfca7fa654e496fc84d0abcad8fa3e8f))
77
+
78
+ ## [2.37.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.36.0...v2.37.0) (2026-09-15)
79
+
80
+
81
+ ### Features
82
+
83
+ * **ApprovalBox, AbmAgentModal:** enhance event tracking for accessibility changes ([8199672](https://github.com/ProjectCORTeam/maia-components/commit/819967248fd26120ae305b77fa237c85ebc01ce4))
84
+ * merge with master ([6f7a5b7](https://github.com/ProjectCORTeam/maia-components/commit/6f7a5b70c371efd76000ec7bd21ce644fe766747))
85
+ * **tests:** enhance unit tests for agent creation and updates, and add accessibility section tests ([0eb3b94](https://github.com/ProjectCORTeam/maia-components/commit/0eb3b9455f8beb66850ea38c688c07ef2bec15a8))
86
+
87
+
88
+ ### Bug Fixes
89
+
90
+ * **i18n, utils:** improve formatting and readability in language files and normalization functions ([690e4ca](https://github.com/ProjectCORTeam/maia-components/commit/690e4caa9f6b17f84306fe9e74a8ecb04f754841))
91
+
92
+ ## [2.36.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.35.2...v2.36.0) (2026-09-15)
93
+
94
+
95
+ ### Features
96
+
97
+ * add skill mention functionality and new icons ([47e4ed7](https://github.com/ProjectCORTeam/maia-components/commit/47e4ed7f86d416d67c13b1b907f8ef10002f63c4))
98
+ * Enhance skill management and tracking in MAIAInput and ChatAIMySkills components ([88b69c7](https://github.com/ProjectCORTeam/maia-components/commit/88b69c7b3d60fe55125372112262c7245a0d8a03))
99
+ * Enhance skill management and UI interactions in various components ([33b89dc](https://github.com/ProjectCORTeam/maia-components/commit/33b89dc48bfc3c26fcbf6c870a6d429242f0e680))
100
+ * enhance skills integration in ContextMention components ([30783df](https://github.com/ProjectCORTeam/maia-components/commit/30783df569b4051d3d7daf6b6048878650b79ee4))
101
+ * merge with master ([fabf39f](https://github.com/ProjectCORTeam/maia-components/commit/fabf39fda4b3beb7eb94961b1ed62ef2d9b58791))
102
+
103
+
104
+ ### Bug Fixes
105
+
106
+ * delete comments ([0181029](https://github.com/ProjectCORTeam/maia-components/commit/018102931f335d1fbb2afe205038246e7ec4cf37))
107
+ * **dev:** keep unit specs out of webpack typecheck ([e09910f](https://github.com/ProjectCORTeam/maia-components/commit/e09910f98a43e3c396239edd4c5dff83dfee7201))
108
+ * **lint:** allow CJS require in Jest icon mock ([6ea6d2a](https://github.com/ProjectCORTeam/maia-components/commit/6ea6d2a4f4f7122f1a1ec4cc09be27c5664e6a75))
109
+ * make description optional on skill creation ([92a4c77](https://github.com/ProjectCORTeam/maia-components/commit/92a4c77647fc28a0b1f60a7f62a0dfc890275337))
110
+ * open skill collaborator ([3fa2591](https://github.com/ProjectCORTeam/maia-components/commit/3fa2591a62c9c3e94f7add8d2549df28a621a6e5))
111
+ * solved obs ([e2468e7](https://github.com/ProjectCORTeam/maia-components/commit/e2468e7287b93975b2314bbe73463ba2dd4c9a4f))
112
+ * **types:** treat session and FAQ next_offset as number ([f801c3b](https://github.com/ProjectCORTeam/maia-components/commit/f801c3b26871c6ee861a81635d738db77a2fc498))
113
+
114
+ ### [2.35.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.35.2...v2.35.3) (2026-09-10)
115
+
116
+
117
+ ### Bug Fixes
118
+
119
+ * **dev:** keep unit specs out of webpack typecheck ([e09910f](https://github.com/ProjectCORTeam/maia-components/commit/e09910f98a43e3c396239edd4c5dff83dfee7201))
120
+ * **lint:** allow CJS require in Jest icon mock ([6ea6d2a](https://github.com/ProjectCORTeam/maia-components/commit/6ea6d2a4f4f7122f1a1ec4cc09be27c5664e6a75))
121
+ * **types:** treat session and FAQ next_offset as number ([f801c3b](https://github.com/ProjectCORTeam/maia-components/commit/f801c3b26871c6ee861a81635d738db77a2fc498))
122
+
123
+ ### [2.35.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.35.0...v2.35.2) (2026-09-10)
124
+
125
+
126
+ ### Bug Fixes
127
+
128
+ * Pass browser timezone in orchestrator metadata ([#465](https://github.com/ProjectCORTeam/maia-components/pull/465)) ([244dc52](https://github.com/ProjectCORTeam/maia-components/commit/244dc5226f1b6cc57a60d489b4af90be6f763313))
129
+
130
+ ### [2.35.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.35.0...v2.35.1) (2026-09-10)
131
+
132
+
133
+ ### Bug Fixes
134
+
135
+ * Format timezone consts for prettier ([8386592](https://github.com/ProjectCORTeam/maia-components/commit/83865922b0f0dff079d9d1fba94a7ae116752fce))
136
+ * Pass browser timezone in orchestrator metadata ([244dc52](https://github.com/ProjectCORTeam/maia-components/commit/244dc5226f1b6cc57a60d489b4af90be6f763313))
137
+
138
+ ## [2.35.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.34.2...v2.35.0) (2026-09-09)
139
+
140
+
141
+ ### Features
142
+
143
+ * **SkillModal:** implement content size validation and display byte counter ([d92ebf2](https://github.com/ProjectCORTeam/maia-components/commit/d92ebf2d559cd3c1dd2192eddfb9843d3ba64be9))
144
+
145
+
146
+ ### Bug Fixes
147
+
148
+ * **Sidebar:** restrict skill viewing to company 2336 users ([2403170](https://github.com/ProjectCORTeam/maia-components/commit/2403170745d34bfb0bd9049d57c0646d4ba97d6e))
149
+
150
+ ### [2.34.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.34.0...v2.34.1) (2026-09-04)
151
+
152
+
153
+ ### Bug Fixes
154
+
155
+ * Update padding and margin in AgentActivityIndicator and SCLoadingMessagesColumn styles for improved layout consistency ([931d552](https://github.com/ProjectCORTeam/maia-components/commit/931d552cc9fb7bca82e0e6bc53148d8b4f84fdba))
156
+
157
+ ## [2.33.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.32.0...v2.33.0) (2026-09-02)
158
+
159
+
160
+ ### Features
161
+
162
+ * allow 5MB xlsx/xls chat attachments ([9be36c7](https://github.com/ProjectCORTeam/maia-components/commit/9be36c725636e49dca480fe8812ab761e2bfd89f))
163
+
164
+ ## [2.32.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.31.0...v2.32.0) (2026-09-02)
165
+
166
+
167
+ ### Features
168
+
169
+ * enhance chat message scrolling and suggestion handling ([40a14f9](https://github.com/ProjectCORTeam/maia-components/commit/40a14f9ba272ad2b14b38776df3b8fe938263494))
170
+ * reasongin summary and auto-approve ([791d8b0](https://github.com/ProjectCORTeam/maia-components/commit/791d8b08bcb0cd8639cc79575d6ed9350c478f95))
171
+
172
+
173
+ ### Bug Fixes
174
+
175
+ * update HITL tracking to differentiate between manual and auto approvals ([fa21d01](https://github.com/ProjectCORTeam/maia-components/commit/fa21d01b0bcd461aad38afe7836c541215949d15))
176
+
177
+ ## [2.31.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.30.0...v2.31.0) (2026-09-02)
178
+
179
+
180
+ ### Features
181
+
182
+ * Add session restoration handling to ChatAI components ([46b684c](https://github.com/ProjectCORTeam/maia-components/commit/46b684caf8d0c2528723628e3307fe793b88f88d))
183
+ * Implement session persistence for Maia panel state ([e3643e2](https://github.com/ProjectCORTeam/maia-components/commit/e3643e23603060c3ee2bc72d66e9acd92a9f7ee6))
184
+
185
+ ## [2.30.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.29.0...v2.30.0) (2026-09-01)
186
+
187
+
188
+ ### Features
189
+
190
+ * Add retry button to regenerate assistant replies ([054ed9e](https://github.com/ProjectCORTeam/maia-components/commit/054ed9e6984eeeea8112e9c04b9de678e61f7509))
191
+ * Enhance RetryIcon component with customizable dimensions and color ([238a237](https://github.com/ProjectCORTeam/maia-components/commit/238a23751de260237eb0d08d1b2f006f8f809108))
192
+ * Enhance stream handling by capturing partial responses on stop ([394d33f](https://github.com/ProjectCORTeam/maia-components/commit/394d33f3ac38968b885425d6d5fc496810c574ef))
193
+
194
+
195
+ ### Bug Fixes
196
+
197
+ * Fall back to orchestrator when retry turn is missing ([4dab72f](https://github.com/ProjectCORTeam/maia-components/commit/4dab72f4bb09d2eb14c3351e7ea0c0493ff50da8))
198
+
199
+ ## [2.29.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.28.0...v2.29.0) (2026-08-27)
200
+
201
+
202
+ ### Features
203
+
204
+ * Raise ppt/pptx chat attachment limit to 30MB ([3d87d9c](https://github.com/ProjectCORTeam/maia-components/commit/3d87d9cbc6066d2b51bbf8a362cfcfe71791d149))
205
+
206
+ ## [2.28.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.27.1...v2.28.0) (2026-08-26)
207
+
208
+
209
+ ### Features
210
+
211
+ * Introduce sorting utility for manager hours FUAs in ChatAIHome ([f8f499e](https://github.com/ProjectCORTeam/maia-components/commit/f8f499e36ceb34ab784cb597ce67847502cbf869))
212
+
213
+ ### [2.27.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.27.0...v2.27.1) (2026-08-26)
214
+
215
+
216
+ ### Bug Fixes
217
+
218
+ * Correct markChatAsRead invocation in useChatMessages hook ([63d9018](https://github.com/ProjectCORTeam/maia-components/commit/63d9018979a380c1b8d6025dee2ede26b2497e5b))
219
+ * Update layout and spacing in ChatAI components ([7512cb9](https://github.com/ProjectCORTeam/maia-components/commit/7512cb908225a29becbe30fdb0fcf4e205020b50))
220
+
221
+ ## [2.27.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.26.2...v2.27.0) (2026-08-26)
222
+
223
+
224
+ ### Features
225
+
226
+ * add re-measurement delays for minimized pill positioning ([4dbef52](https://github.com/ProjectCORTeam/maia-components/commit/4dbef5280f53e21be497f058d6a7763655c5697a))
227
+ * Add SessionGeneratingDot component for indicating session activity ([1b26150](https://github.com/ProjectCORTeam/maia-components/commit/1b26150dcd5987beed99c3b12e4876b38d0c7516))
228
+ * Enhance chat fetching with background loading support ([0b52289](https://github.com/ProjectCORTeam/maia-components/commit/0b52289828dd3389f7a3530f57bea816c85bd057))
229
+ * Enhance chat session management with HITL context support ([0492227](https://github.com/ProjectCORTeam/maia-components/commit/04922273d021f69a49174cc8938b53b8d5299518))
230
+ * Enhance chat session management with improved scrolling and message loading behavior ([9d492e8](https://github.com/ProjectCORTeam/maia-components/commit/9d492e81084fa17084399ee0d53529ded3ad8116))
231
+ * Enhance chat session management with sidebar integration ([558c89c](https://github.com/ProjectCORTeam/maia-components/commit/558c89c45d15d97d26a04ce09247ab3ca3080bb9))
232
+ * enhance ChatAIModal and ChatAI components with host integration ([aba45a2](https://github.com/ProjectCORTeam/maia-components/commit/aba45a2619310954e74b80d6fd68a30fd9af945a))
233
+ * enhance MaiaMinimizedPill positioning and introduce bottom offset logic ([55cb299](https://github.com/ProjectCORTeam/maia-components/commit/55cb299d2758b3f5f0a9aab8f6f74642f26dcdaf))
234
+ * enhance SessionGeneratingDot and MaiaMinimizedPill components ([b4a0d8f](https://github.com/ProjectCORTeam/maia-components/commit/b4a0d8fb6694b8d78de94b15a3bf00fc4565bf82))
235
+ * Implement session management and streaming functionality ([bdbeb31](https://github.com/ProjectCORTeam/maia-components/commit/bdbeb31ec205f6e09ce21ea8f2feba1754fe8d92))
236
+ * Implement sidebar session management and enhance chat state handling ([8149803](https://github.com/ProjectCORTeam/maia-components/commit/81498037fca760cbb6d6ee7962ab0ff4f25c0359))
237
+ * integrate amplitude events for chat minimization and restoration ([9117971](https://github.com/ProjectCORTeam/maia-components/commit/9117971f41b707d1e66b848d0450052171b4d5d0))
238
+ * Introduce SessionUnreadDot component for unread message indication ([5d93c78](https://github.com/ProjectCORTeam/maia-components/commit/5d93c7861b1c72d23b2f137a5a02721bccd23dc2))
239
+ * maia minimized ([2be38a7](https://github.com/ProjectCORTeam/maia-components/commit/2be38a7999a9d335ed25ec1be0c0bbfae491b3c0))
240
+ * maia minimized ([21fbee1](https://github.com/ProjectCORTeam/maia-components/commit/21fbee1ccaa941ea16f631841d9c038b56bdde9e))
241
+ * restore pacakge ([2f38040](https://github.com/ProjectCORTeam/maia-components/commit/2f38040e798b4664fc2d3291c1d2b4be1304162d))
242
+ * show unread sessions bell in chat sidebar ([4b09f0f](https://github.com/ProjectCORTeam/maia-components/commit/4b09f0f2fc71c11b69d53dfb07653d4724c861f0))
243
+
244
+ ### [2.26.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.26.1...v2.26.2) (2026-08-20)
245
+
246
+
247
+ ### Bug Fixes
248
+
249
+ * centralize Streamdown styles with MaiaStreamdown wrapper ([a21e9b0](https://github.com/ProjectCORTeam/maia-components/commit/a21e9b06629c28141f412374d5d141502f8baca0))
250
+ * correct import order in AttachmentPreviewModal ([e277a1e](https://github.com/ProjectCORTeam/maia-components/commit/e277a1e517743ce6661031da8e3c7199574853aa))
251
+
252
+ ### [2.26.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.26.0...v2.26.1) (2026-08-20)
253
+
254
+
255
+ ### Bug Fixes
256
+
257
+ * render Streamdown bold without Tailwind ([ddd9a88](https://github.com/ProjectCORTeam/maia-components/commit/ddd9a882eb49eb4e63448e3c4b79467f339e3b49))
258
+
259
+ ## [2.26.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.25.1...v2.26.0) (2026-08-20)
260
+
261
+
262
+ ### Features
263
+
264
+ * add mention trigger functionality and new icons for input component ([27d54d2](https://github.com/ProjectCORTeam/maia-components/commit/27d54d2204810c419c301f4fd9d216c492352af5))
265
+ * enhance Chip and MAIAInput components with new icons and styling improvements ([c919e7b](https://github.com/ProjectCORTeam/maia-components/commit/c919e7b98645218c2b4508159c3871c5f19f2c51))
266
+ * enhance input component with slash command functionality and new icons ([c88e1a5](https://github.com/ProjectCORTeam/maia-components/commit/c88e1a5fb8054936994e8b42da6aefca6cfc3a56))
267
+ * enhance slash command dropdown functionality and styling ([5600294](https://github.com/ProjectCORTeam/maia-components/commit/5600294eea355c6d6bd2d8f67f73f08ff4b5fa2c))
268
+ * refactor Chip component to resolve leading icon logic ([ec80c91](https://github.com/ProjectCORTeam/maia-components/commit/ec80c9139404c64db9c3c5e935e7bc9f189dc78e))
269
+
270
+ ### [2.25.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.25.0...v2.25.1) (2026-08-14)
271
+
272
+
273
+ ### Bug Fixes
274
+
275
+ * align jszip override with the direct dependency ([2eaccc0](https://github.com/ProjectCORTeam/maia-components/commit/2eaccc049ed8d002f8027aa6355e69742cf9e8df))
276
+ * preview pptx attachments and use dedicated ppt/pptx icons ([4af809b](https://github.com/ProjectCORTeam/maia-components/commit/4af809b2501c3eab67c48d118d31c5316f09f1a2))
277
+
278
+ ## [2.25.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.24.0...v2.25.0) (2026-08-14)
279
+
280
+
281
+ ### Features
282
+
283
+ * allow ppt and pptx in chat attachments and knowledge ([eae7108](https://github.com/ProjectCORTeam/maia-components/commit/eae7108eb899a54bc19801cb7a1626ba72d8b99a))
284
+
285
+ ## [2.24.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.23.1...v2.24.0) (2026-08-14)
286
+
287
+
288
+ ### Features
289
+
290
+ * paste and drop files in MAIA chat input ([cc4d1ca](https://github.com/ProjectCORTeam/maia-components/commit/cc4d1cab0ada8e21d90d40a56309a0b543afcd40))
291
+
292
+ ### [2.23.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.23.0...v2.23.1) (2026-08-13)
293
+
294
+
295
+ ### Bug Fixes
296
+
297
+ * gate marketplace UI on MULTI_AGENTS flag ([e27c462](https://github.com/ProjectCORTeam/maia-components/commit/e27c4623e4d6fdecfb78d9f2ae54966fba6a737f))
298
+ * replace MAIA_MARKETPLACE_MAIAKER with MAIA_MARKETPLACE ([0fd514e](https://github.com/ProjectCORTeam/maia-components/commit/0fd514efc6cc5aaa713ac77c1d7432a65128b783))
299
+
300
+ ## [2.23.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.22.2...v2.23.0) (2026-08-12)
301
+
302
+
303
+ ### Features
304
+
305
+ * add 'My Skills' navigation option to Sidebar component based on user permissions ([3a0f7be](https://github.com/ProjectCORTeam/maia-components/commit/3a0f7be31811b2ff0f70dbfd083b863355aab069))
306
+ * add company-scoped Skills with on-demand agent injection ([69e74f0](https://github.com/ProjectCORTeam/maia-components/commit/69e74f0421cdab244905c7e9a98fe0aca16bea81))
307
+ * Add skill mention functionality and related UI components ([d333ae7](https://github.com/ProjectCORTeam/maia-components/commit/d333ae71d571d215af4c214693ba2ef1ef4a2670))
308
+ * enable MAIA_SKILLS_ACCESS and integrate skills permission checks in Sidebar and mention hooks ([982b7ed](https://github.com/ProjectCORTeam/maia-components/commit/982b7ed35d826db8df697ee1f40f7b524350c98c))
309
+ * Enhance skill mention functionality with improved search and UI messages ([b3ffbc0](https://github.com/ProjectCORTeam/maia-components/commit/b3ffbc01f389b369cc786308c169b73ed4bb13a5))
310
+ * Implement skill query validation and enhance user feedback in ContextMentionPopover ([3df7f77](https://github.com/ProjectCORTeam/maia-components/commit/3df7f77612a5f9d3675186343a19d466b591be17))
311
+ * restrict skills visibility in sidebar to company 2336 ([986de4e](https://github.com/ProjectCORTeam/maia-components/commit/986de4ea9737689f2207f797f942062966038c32))
312
+
313
+
314
+ ### Bug Fixes
315
+
316
+ * disable skills view in Sidebar component by setting canViewSkills to false ([752febf](https://github.com/ProjectCORTeam/maia-components/commit/752febf94e73ff03191d0cb415507fb6bf644484))
317
+ * solved gemini comments ([12b0b26](https://github.com/ProjectCORTeam/maia-components/commit/12b0b2654e9d4e38373a1c114711022e66e7b287))
318
+ * update canViewSkills logic in Sidebar component to use permissions check ([4c0d276](https://github.com/ProjectCORTeam/maia-components/commit/4c0d2761f6f51a049647f93f518302e3c95b214e))
319
+ * Update mention regex and allowed types to include 'skill' for improved context handling ([27b844e](https://github.com/ProjectCORTeam/maia-components/commit/27b844e741145de47079eb35f3efdd7a59afb7d7))
320
+ * Update Spanish translation for skill query length message ([be1362c](https://github.com/ProjectCORTeam/maia-components/commit/be1362c7ffe5e9cbe1d7245f22f892affaabbba9))
321
+ * Upgrade maxLength to 20k ([15c5014](https://github.com/ProjectCORTeam/maia-components/commit/15c5014091ff51a87d2c7d04cc2ae86afb003ffa))
322
+
323
+ ### [2.22.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.22.1...v2.22.2) (2026-08-12)
324
+
325
+
326
+ ### Bug Fixes
327
+
328
+ * update ChatAIHome component to refine planner home logic ([1dae5ca](https://github.com/ProjectCORTeam/maia-components/commit/1dae5caa6f2dbb7be4e2a552319309f70af3b7ef))
329
+
330
+ ### [2.22.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.22.0...v2.22.1) (2026-08-12)
331
+
332
+
333
+ ### Bug Fixes
334
+
335
+ * update alignment and margin in ChatAIHome styles ([f6a5522](https://github.com/ProjectCORTeam/maia-components/commit/f6a5522a60de8abe81ad4bc0f270c8a53ad8957e))
336
+
337
+ ## [2.22.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.21.0...v2.22.0) (2026-08-12)
338
+
339
+
340
+ ### Features
341
+
342
+ * add ACTION_CATEGORY_MAP hours ([9d048e5](https://github.com/ProjectCORTeam/maia-components/commit/9d048e52dbdb83a68e3315830558838b4d8d64d7))
343
+ * add MAIA Hour Agent feature access functionality ([608b0e2](https://github.com/ProjectCORTeam/maia-components/commit/608b0e2908bb185c1c212eebdbab226e5571aadd))
344
+ * Add new action icons and update localization for planner home ([4743dd9](https://github.com/ProjectCORTeam/maia-components/commit/4743dd94e69ef83d9bbf993d5d9d27237f0efd30))
345
+ * Add support for 'planner' section across components and services ([3aeb48a](https://github.com/ProjectCORTeam/maia-components/commit/3aeb48aeeb993ad2b8d9933e76703640e41bce5a))
346
+ * Enhance ChatAIHome component with vertical centering support ([b1254f7](https://github.com/ProjectCORTeam/maia-components/commit/b1254f71b0802130a3f4a7498ad58cbf4998f447))
347
+ * enhance FrequentlyUsedActions and ChatAIHome components for planner support ([e828fa3](https://github.com/ProjectCORTeam/maia-components/commit/e828fa329fbed1e46c5b2ab65c5c066baf260aa4))
348
+ * enhance FrequentlyUsedActions styling and functionality ([b48613f](https://github.com/ProjectCORTeam/maia-components/commit/b48613f11a63589314f78bbe7946726094adbcd4))
349
+ * Introduce MAIA hours charged event and related utilities ([db8fcc8](https://github.com/ProjectCORTeam/maia-components/commit/db8fcc83bc38ab00583972d44f2958dd96154eca))
350
+
351
+ ## [2.21.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.20.0...v2.21.0) (2026-08-10)
352
+
353
+
354
+ ### Features
355
+
356
+ * add deepLinkSendPendingRef to global context and components ([f71c1b1](https://github.com/ProjectCORTeam/maia-components/commit/f71c1b1e2bd9c1a8700b38021f7ee8fd0c1eea2a))
357
+ * add initialDraft prop for email deep links ([27439c1](https://github.com/ProjectCORTeam/maia-components/commit/27439c1bea2023bde91ac9d92742398db93a33aa))
358
+
359
+ ## [2.20.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.19.1...v2.20.0) (2026-08-10)
360
+
361
+
362
+ ### Features
363
+
364
+ * add Word document preview support and update dependencies ([ca84d0c](https://github.com/ProjectCORTeam/maia-components/commit/ca84d0ca0de6147ca8a0561c551d344cdc1e59d6))
365
+
366
+
367
+ ### Bug Fixes
368
+
369
+ * remove unused file type checks in AttachmentPreviewModal ([3c2b589](https://github.com/ProjectCORTeam/maia-components/commit/3c2b5894d340d626a0a8dbdc08ab362f0fde0c0e))
370
+
371
+ ### [2.19.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.19.0...v2.19.1) (2026-08-05)
372
+
373
+
374
+ ### Bug Fixes
375
+
376
+ * update custom agent warning conditions in ChatAiModalFooter ([3cc3748](https://github.com/ProjectCORTeam/maia-components/commit/3cc3748ae8c4d5b72add03872027d8148763ddfc))
377
+
378
+ ## [2.19.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.18.0...v2.19.0) (2026-08-04)
379
+
380
+
381
+ ### Features
382
+
383
+ * add event tracking for task access changes in AbmAccessibilitySection ([d438a90](https://github.com/ProjectCORTeam/maia-components/commit/d438a907483c4229a91378ae08d3e2c80c373f1d))
384
+
385
+ ## [2.18.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.17.0...v2.18.0) (2026-07-31)
386
+
387
+
388
+ ### Features
389
+
390
+ * track Appcues event for My Agents in Sidebar ([37519f7](https://github.com/ProjectCORTeam/maia-components/commit/37519f780fcb9b12c47dab6c7eb34ff7c9c20693))
391
+
392
+ ## [2.17.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.16.0...v2.17.0) (2026-07-30)
393
+
394
+
395
+ ### Features
396
+
397
+ * add Reintentar suggestion chip on generic chat errors ([c84fb7a](https://github.com/ProjectCORTeam/maia-components/commit/c84fb7a9cfb22f6dedb49d6c87eae211c0fdb9de))
398
+
399
+ ## [2.16.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.15.0...v2.16.0) (2026-07-30)
400
+
401
+
402
+ ### Features
403
+
404
+ * Add Appcues selectors for Sidebar My Agents functionality ([071f820](https://github.com/ProjectCORTeam/maia-components/commit/071f8206a43979525f23d8adf84508142864a765))
405
+
406
+ ## [2.15.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.14.0...v2.15.0) (2026-07-30)
407
+
408
+
409
+ ### Features
410
+
411
+ * add CloseWhileGeneratingModal to handle user confirmation when closing during generation ([5589f98](https://github.com/ProjectCORTeam/maia-components/commit/5589f9845071a348784ed1b7b7ca865fa208baf9))
412
+
413
+ ## [2.14.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.13.1...v2.14.0) (2026-07-30)
414
+
415
+
416
+ ### Features
417
+
418
+ * add new chat layout icons and enhance layout management ([f056e35](https://github.com/ProjectCORTeam/maia-components/commit/f056e35b798b93ccefd6f04911c8e305603348e0))
419
+
420
+ ### [2.13.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.13.0...v2.13.1) (2026-07-30)
421
+
422
+
423
+ ### Bug Fixes
424
+
425
+ * Update chat message handling to correctly extract connectors and agent type from session data ([e7dc979](https://github.com/ProjectCORTeam/maia-components/commit/e7dc9792280157414c086850497e543a11c679dd))
426
+
427
+ ## [2.13.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.12.1...v2.13.0) (2026-07-30)
428
+
429
+
430
+ ### Features
431
+
432
+ * add CorAccessIcon and ChatFooterCorAccess components ([12dd910](https://github.com/ProjectCORTeam/maia-components/commit/12dd91078b24adb5fa547ef906786aeca8508315))
433
+ * add OptionCorPermission and Switch components with styles ([78023bc](https://github.com/ProjectCORTeam/maia-components/commit/78023bcd35624a4e0623e21a596d9ded88ec8f8c))
434
+ * Enhance agent creation and update hooks with connector management ([1a28ffb](https://github.com/ProjectCORTeam/maia-components/commit/1a28ffb34894521b06f5cf1b5f36bee50e06a6fd))
435
+ * Enhance dropdown behavior in AbmGeneralSection ([bb1ae81](https://github.com/ProjectCORTeam/maia-components/commit/bb1ae81eda0c0bdc5686f5913798d32bf5021caa))
436
+ * Enhance normalizeCorEntitySlug to support Spanish tool groups ([7c7e1a1](https://github.com/ProjectCORTeam/maia-components/commit/7c7e1a1e73788aa95d0e7ed4007c4be8f6dd9376))
437
+ * Improve dropdown functionality in AbmGeneralSection ([c0dacc4](https://github.com/ProjectCORTeam/maia-components/commit/c0dacc421698d05cf655c9aa62fe974cbbf2216a))
438
+ * Integrate task access management for agents ([24fc2bd](https://github.com/ProjectCORTeam/maia-components/commit/24fc2bda35e3b3887e071813b05056cafc1d4578))
439
+
440
+
441
+ ### Bug Fixes
442
+
443
+ * Improve stream handling in useChatManager and useOrchestratorStream ([839007f](https://github.com/ProjectCORTeam/maia-components/commit/839007fa0443137f30c9c5e8ae93ad2fe9a996c7))
444
+ * Refine manual approval handling in useChatManager and useOrchestratorStream ([e45cdc2](https://github.com/ProjectCORTeam/maia-components/commit/e45cdc2c26334d4d3719dbc8269241ad8201ccec))
445
+
446
+ ### [2.12.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.12.0...v2.12.1) (2026-07-27)
447
+
448
+
449
+ ### Bug Fixes
450
+
451
+ * **deps:** keep react-dom on React 18 to match react peer ([6683f6c](https://github.com/ProjectCORTeam/maia-components/commit/6683f6c55ee45cb787e8c2c6a431e1aebb8c4592))
452
+
453
+ ## [2.12.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.11.77...v2.12.0) (2026-07-27)
454
+
455
+
456
+ ### Features
457
+
458
+ * Add new project and checklist item editing labels in multiple languages ([d08c657](https://github.com/ProjectCORTeam/maia-components/commit/d08c657a416b129926967689d1eb7e2de2dbed30))
459
+
460
+
461
+ ### Bug Fixes
462
+
463
+ * allow Node 14+ in package engines for Laravel web consumers ([c9264f7](https://github.com/ProjectCORTeam/maia-components/commit/c9264f7645d541508c212f0f9dc54b662efe7524))
464
+ * make ESLint CI install with legacy-peer-deps on Node 20 ([387c619](https://github.com/ProjectCORTeam/maia-components/commit/387c619309b2a63678c09ce6db69ae6c6fee51f3))
465
+ * resolve Dependabot dependency vulnerabilities ([e785e8f](https://github.com/ProjectCORTeam/maia-components/commit/e785e8f53c18bbe0ece6bfb378b8121e9e858323))
466
+ * stop forcing brace-expansion/minimatch majors that break ESLint ([e0e13f2](https://github.com/ProjectCORTeam/maia-components/commit/e0e13f215dd5b208bab4c3031b22bc5c96ba82d6))
467
+
468
+ ## [2.11.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.10.1...v2.11.0) (2026-01-29)
469
+
470
+
471
+ ### Features
472
+
473
+ * integrate multi-agent feature access across ChatAI components ([a60e763](https://github.com/ProjectCORTeam/maia-components/commit/a60e7632400e5203588d1db4f8e144b3a39d94f5))
474
+
475
+
476
+ ### Bug Fixes
477
+
478
+ * adjust recent projects fetch limit in ProjectSelector component ([b7c8f8e](https://github.com/ProjectCORTeam/maia-components/commit/b7c8f8eeecf5a5e7bf98555d50a93292dc0260f9))
479
+
480
+ ## [2.10.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.9.7...v2.10.0) (2026-01-22)
481
+
482
+
483
+ ### Features
484
+
485
+ * enhance AttachmentPreviewModal with error handling and improved styling for unsupported files ([63ae984](https://github.com/ProjectCORTeam/maia-components/commit/63ae984ffd940b5883df666c3a835a312b14c837))
486
+
487
+
488
+ ### Bug Fixes
489
+
490
+ * Used lastIndexOf instead of split ([5e0d227](https://github.com/ProjectCORTeam/maia-components/commit/5e0d227bd2074c9ae99fc29a69eacb8a6e2cb205))
491
+
492
+ ### [2.9.5](https://github.com/ProjectCORTeam/maia-components/compare/v2.9.4...v2.9.5) (2025-12-17)
493
+
494
+
495
+ ### Bug Fixes
496
+
497
+ * change version ([c443a36](https://github.com/ProjectCORTeam/maia-components/commit/c443a3689af3ac95ad7163d6d80a191443aac67c))
498
+ * Open modal when user has any permission (create, edit, or delete) ([d2d1ef1](https://github.com/ProjectCORTeam/maia-components/commit/d2d1ef1907bf879b1e356af7705461c8712a9d17))
499
+
500
+ ## [2.9.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.8.8...v2.9.0) (2025-11-17)
501
+
502
+
503
+ ### Features
504
+
505
+ * to favorite an agent ([6d4b865](https://github.com/ProjectCORTeam/maia-components/commit/6d4b86557c84ebe9d6df82ffda5215f5c2c9b495))
506
+
507
+ ## [2.8.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.7.1...v2.8.0) (2025-10-27)
508
+
509
+
510
+ ### Features
511
+
512
+ * accesibility-section typo ([18e277a](https://github.com/ProjectCORTeam/maia-components/commit/18e277ae7b5a46cf1682b39f17d949b199a31e42))
513
+ * add new accessibility section to abm agent modal ([e32f0f3](https://github.com/ProjectCORTeam/maia-components/commit/e32f0f3ca35a77363f035de77a319edb84e7674c))
514
+ * add select component and handle option selected ([d66462e](https://github.com/ProjectCORTeam/maia-components/commit/d66462e78c784dc340ff1d891a04363bcf597090))
515
+
516
+
517
+ ### Bug Fixes
518
+
519
+ * conflicts ([f700799](https://github.com/ProjectCORTeam/maia-components/commit/f7007999716cb3428a9c17f889f0f89ec9feeea1))
520
+
521
+ ## [2.7.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.6.3...v2.7.0) (2025-10-16)
522
+ ## [2.5.0-feat-accessibility-view.4](https://github.com/ProjectCORTeam/maia-components/compare/v2.5.0-feat-accessibility-view.3...v2.5.0-feat-accessibility-view.4) (2025-09-19)
523
+
524
+
525
+ ### Features
526
+
527
+ * add select component and handle option selected ([d66462e](https://github.com/ProjectCORTeam/maia-components/commit/d66462e78c784dc340ff1d891a04363bcf597090))
528
+
529
+ ## [2.5.0-feat-accessibility-view.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.5.0-feat-accessibility-view.2...v2.5.0-feat-accessibility-view.3) (2025-09-19)
530
+
531
+
532
+ ### Bug Fixes
533
+
534
+ * conflicts ([f700799](https://github.com/ProjectCORTeam/maia-components/commit/f7007999716cb3428a9c17f889f0f89ec9feeea1))
535
+
536
+ ## [2.5.0-feat-accessibility-view.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.5.0-feat-accessibility-view.1...v2.5.0-feat-accessibility-view.2) (2025-09-19)
537
+
538
+
539
+ ### Features
540
+
541
+ * add new accessibility section to abm agent modal ([e32f0f3](https://github.com/ProjectCORTeam/maia-components/commit/e32f0f3ca35a77363f035de77a319edb84e7674c))
542
+
543
+ ## [2.5.0-feat-accessibility-view.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.5...v2.5.0-feat-accessibility-view.1) (2025-09-18)
544
+
545
+
546
+ ### Features
547
+
548
+ * accesibility-section typo ([18e277a](https://github.com/ProjectCORTeam/maia-components/commit/18e277ae7b5a46cf1682b39f17d949b199a31e42))
549
+
550
+ ### [2.4.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.2...v2.4.3) (2025-09-17)
551
+ * project selector ([2aaa00b](https://github.com/ProjectCORTeam/maia-components/commit/2aaa00bb7132ca0f92de919dca2e982e7da98af0))
552
+
553
+
554
+ ### Bug Fixes
555
+
556
+ * add context project when old conversation is selected ([7278f5e](https://github.com/ProjectCORTeam/maia-components/commit/7278f5e7e797fb5d2f028dea8d218d0bd5bf9c87))
557
+ * autoscrolling and agent header tooltip ([2dde264](https://github.com/ProjectCORTeam/maia-components/commit/2dde26463c6512294205f85d835c5d98b4de736e))
558
+ * change styles to modal agent selector ([cd731fb](https://github.com/ProjectCORTeam/maia-components/commit/cd731fb5d38bd53887458a22a3daef5a5e3f5b27))
559
+ * comments ([17e69a4](https://github.com/ProjectCORTeam/maia-components/commit/17e69a4d41cf6e2ad1c9f6fb1412330294c3213a))
560
+ * conditional validation ([bd19ca6](https://github.com/ProjectCORTeam/maia-components/commit/bd19ca637b1d1716223b1fd32c71fa5c6d1d337c))
561
+ * conflicts ([83d7e7f](https://github.com/ProjectCORTeam/maia-components/commit/83d7e7f745d56478b9b3422144f83529ef034d65))
562
+ * conflicts ([a572063](https://github.com/ProjectCORTeam/maia-components/commit/a5720634663de47165bb01a4857f9795009158f4))
563
+ * error state styles and agent header value to request ([81c79e1](https://github.com/ProjectCORTeam/maia-components/commit/81c79e184ecf7e740e8eba6a3f0a3aae9c1cb6d5))
564
+ * hover color to modal agent option ([c5a0b8e](https://github.com/ProjectCORTeam/maia-components/commit/c5a0b8e81e5ded4a554b60a1fef547f9d48c5859))
565
+ * metadata with the project to chat session context ([52c8476](https://github.com/ProjectCORTeam/maia-components/commit/52c84765ffb902059c86fa781b3c6565ccf6916c))
566
+ * paginated chats with limit 20 ([9cbdfd3](https://github.com/ProjectCORTeam/maia-components/commit/9cbdfd3fbdc8e85bde766c2856a4c73fbd14e040))
567
+ * refactor useProject and resolve obs ([d514e07](https://github.com/ProjectCORTeam/maia-components/commit/d514e07434d3d54e0eb76b24d821803f8d314db0))
568
+ * remove duplicated interface ([fc6380c](https://github.com/ProjectCORTeam/maia-components/commit/fc6380c1368ed361c27fdd29f0da210626869ab6))
569
+ * websocket variable commented ([01f04bb](https://github.com/ProjectCORTeam/maia-components/commit/01f04bbdd7942b3244a2a593cfab2e74fc0fa7cc))
570
+
571
+ ## [2.6.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.5.5...v2.6.0) (2025-10-13)
572
+
573
+
574
+ ### Features
575
+
576
+ * add more information to knowledge ([a32ae89](https://github.com/ProjectCORTeam/maia-components/commit/a32ae89927e3948a608340f51bfe837c306a0841))
577
+
578
+
579
+ ### Bug Fixes
580
+
581
+ * sidebar loader component size ([3df8bc5](https://github.com/ProjectCORTeam/maia-components/commit/3df8bc589692e91b7109286e5d9e0f081a95d5e9))
582
+ * update version ([98649a8](https://github.com/ProjectCORTeam/maia-components/commit/98649a85ea54bda33873553753d8482a52d77336))
583
+
584
+ ## [2.6.0-feat-onboarding.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.6.0-feat-onboarding.1...v2.6.0-feat-onboarding.2) (2025-10-13)
585
+
586
+
587
+ ### Bug Fixes
588
+
589
+ * Add trim validation for agent name and initial prompt ([5d306f9](https://github.com/ProjectCORTeam/maia-components/commit/5d306f9b48b855fe7d44fca120a9173931eb5c19))
590
+ * Move trim logic from onChange to onBlur ([1ed1987](https://github.com/ProjectCORTeam/maia-components/commit/1ed198739dea4fd77885b382b08d883e611a197c))
591
+ * prevent textarea auto-scroll when editing at the beginning ([127e977](https://github.com/ProjectCORTeam/maia-components/commit/127e977d286b5af3214f3b309a8713466bea7982))
592
+ * update version ([98649a8](https://github.com/ProjectCORTeam/maia-components/commit/98649a85ea54bda33873553753d8482a52d77336))
593
+ * Validate trimmed fields on save ([38dd836](https://github.com/ProjectCORTeam/maia-components/commit/38dd83681d1b4a8907d89be83fa7c90aade77e28))
594
+
595
+ ### [2.5.6](https://github.com/ProjectCORTeam/maia-components/compare/v2.5.5...v2.5.6) (2025-10-09)
596
+
597
+
598
+ ### Bug Fixes
599
+
600
+ * update version ([98649a8](https://github.com/ProjectCORTeam/maia-components/commit/98649a85ea54bda33873553753d8482a52d77336))
601
+
602
+ ### [2.5.5](https://github.com/ProjectCORTeam/maia-components/compare/v2.5.4...v2.5.5) (2025-10-09)
603
+
604
+
605
+ ### Bug Fixes
606
+
607
+ * prevent textarea auto-scroll when editing at the beginning ([127e977](https://github.com/ProjectCORTeam/maia-components/commit/127e977d286b5af3214f3b309a8713466bea7982))
608
+
609
+ ## [2.5.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.7...v2.5.0) (2025-09-30)
610
+
611
+ ### Features
612
+
613
+ - Enabled GHA Eslint ([2afe30b](https://github.com/ProjectCORTeam/maia-components/commit/2afe30bef3351e9c37eb4a0f22b00c582b7c59a2))
614
+
615
+ ### Bug Fixes
616
+
617
+ - Add npm config set ([06bcd7f](https://github.com/ProjectCORTeam/maia-components/commit/06bcd7fa26c743d3d4ff414c377137617675f5a5))
618
+
619
+ ### [2.4.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.2...v2.4.3) (2025-09-17)
620
+
621
+ ### Bug Fixes
622
+
623
+ - add context project when old conversation is selected ([7278f5e](https://github.com/ProjectCORTeam/maia-components/commit/7278f5e7e797fb5d2f028dea8d218d0bd5bf9c87))
624
+ - comments ([17e69a4](https://github.com/ProjectCORTeam/maia-components/commit/17e69a4d41cf6e2ad1c9f6fb1412330294c3213a))
625
+ - conditional validation ([bd19ca6](https://github.com/ProjectCORTeam/maia-components/commit/bd19ca637b1d1716223b1fd32c71fa5c6d1d337c))
626
+ - conflicts ([a572063](https://github.com/ProjectCORTeam/maia-components/commit/a5720634663de47165bb01a4857f9795009158f4))
627
+ - hide input when not have agents ([1a0fab1](https://github.com/ProjectCORTeam/maia-components/commit/1a0fab182f9f9c1ae85c8f0f4c56a0686bb86cc1))
628
+ - hide input when not have agents ([2189409](https://github.com/ProjectCORTeam/maia-components/commit/2189409e1529acf49553c35a58c5abb2cf03b3f8))
629
+ - metadata with the project to chat session context ([52c8476](https://github.com/ProjectCORTeam/maia-components/commit/52c84765ffb902059c86fa781b3c6565ccf6916c))
630
+ - remove duplicated interface ([fc6380c](https://github.com/ProjectCORTeam/maia-components/commit/fc6380c1368ed361c27fdd29f0da210626869ab6))
631
+ - websocket variable commented ([01f04bb](https://github.com/ProjectCORTeam/maia-components/commit/01f04bbdd7942b3244a2a593cfab2e74fc0fa7cc))
632
+
633
+ ### [2.4.6-feat-modify-metadata-request.5](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.6-feat-modify-metadata-request.4...v2.4.6-feat-modify-metadata-request.5) (2025-09-18)
634
+
635
+ ### Bug Fixes
636
+
637
+ - conditional validation ([bd19ca6](https://github.com/ProjectCORTeam/maia-components/commit/bd19ca637b1d1716223b1fd32c71fa5c6d1d337c))
638
+
639
+ ### [2.4.6-feat-modify-metadata-request.4](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.6-feat-modify-metadata-request.3...v2.4.6-feat-modify-metadata-request.4) (2025-09-18)
640
+
641
+ ## [2.5.0-feat-maia-select-project.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.4...v2.5.0-feat-maia-select-project.1) (2025-09-18)
642
+
643
+ ### Features
644
+
645
+ - project selector ([2aaa00b](https://github.com/ProjectCORTeam/maia-components/commit/2aaa00bb7132ca0f92de919dca2e982e7da98af0))
646
+
647
+ ### Bug Fixes
648
+
649
+ - Added codeowners file ([fddc2b2](https://github.com/ProjectCORTeam/maia-components/commit/fddc2b216aa5cf26332d30ae55952b9f134c5f4f))
650
+
651
+ ## [2.5.0-feat-project-selector.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.4...v2.5.0-feat-project-selector.1) (2025-09-17)
652
+
653
+ ### Features
654
+
655
+ - project selector ([2aaa00b](https://github.com/ProjectCORTeam/maia-components/commit/2aaa00bb7132ca0f92de919dca2e982e7da98af0))
656
+
657
+ ### Bug Fixes
658
+
659
+ - remove duplicated interface ([fc6380c](https://github.com/ProjectCORTeam/maia-components/commit/fc6380c1368ed361c27fdd29f0da210626869ab6))
660
+
661
+ ### [2.4.6-feat-modify-metadata-request.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.6-feat-modify-metadata-request.2...v2.4.6-feat-modify-metadata-request.3) (2025-09-18)
662
+
663
+ ### Bug Fixes
664
+
665
+ - comments ([17e69a4](https://github.com/ProjectCORTeam/maia-components/commit/17e69a4d41cf6e2ad1c9f6fb1412330294c3213a))
666
+
667
+ ### [2.4.6-feat-modify-metadata-request.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.6-feat-modify-metadata-request.1...v2.4.6-feat-modify-metadata-request.2) (2025-09-18)
668
+
669
+ ### Bug Fixes
670
+
671
+ - conflicts ([a572063](https://github.com/ProjectCORTeam/maia-components/commit/a5720634663de47165bb01a4857f9795009158f4))
672
+ - websocket variable commented ([01f04bb](https://github.com/ProjectCORTeam/maia-components/commit/01f04bbdd7942b3244a2a593cfab2e74fc0fa7cc))
673
+
674
+ ### [2.4.6-feat-modify-metadata-request.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.5...v2.4.6-feat-modify-metadata-request.1) (2025-09-18)
675
+
676
+ ### Bug Fixes
677
+
678
+ - add context project when old conversation is selected ([7278f5e](https://github.com/ProjectCORTeam/maia-components/commit/7278f5e7e797fb5d2f028dea8d218d0bd5bf9c87))
679
+ - metadata with the project to chat session context ([52c8476](https://github.com/ProjectCORTeam/maia-components/commit/52c84765ffb902059c86fa781b3c6565ccf6916c))
680
+
681
+ ### [2.4.5-feat-modify-metadata-request.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.4...v2.4.5-feat-modify-metadata-request.1) (2025-09-17)
682
+
683
+ ### Bug Fixes
684
+
685
+ - add context project when old conversation is selected ([7278f5e](https://github.com/ProjectCORTeam/maia-components/commit/7278f5e7e797fb5d2f028dea8d218d0bd5bf9c87))
686
+ - Added codeowners file ([fddc2b2](https://github.com/ProjectCORTeam/maia-components/commit/fddc2b216aa5cf26332d30ae55952b9f134c5f4f))
687
+
688
+ ### [2.4.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.4.2...v2.4.3) (2025-09-17)
689
+
690
+ ### Bug Fixes
691
+
692
+ - delete agent selected ([227ce0c](https://github.com/ProjectCORTeam/maia-components/commit/227ce0ca13c168a02b9bf45fd45198af2d8a18ec))
693
+
694
+ ## [2.3.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.2.0...v2.3.0) (2025-09-16)
695
+
696
+ ### Features
697
+
698
+ - add npm plugin ([64e6fbf](https://github.com/ProjectCORTeam/maia-components/commit/64e6fbf86c8c60283d2a07cec3ada43d43446c67))
699
+ - add space ([c986a19](https://github.com/ProjectCORTeam/maia-components/commit/c986a196af09fc4d5d2dae493f07c2d3d47e4158))
700
+ - remove space ([5a9937a](https://github.com/ProjectCORTeam/maia-components/commit/5a9937a0cd405cf2ab9ce9ea6bffc1f79889dd54))
701
+
702
+ ### Bug Fixes
703
+
704
+ - add npmPublish-tarballDir ([aafb200](https://github.com/ProjectCORTeam/maia-components/commit/aafb200d94d570337f5ed7dd4486eb1c18acc9c9))
705
+ - add-space ([9826a5b](https://github.com/ProjectCORTeam/maia-components/commit/9826a5b4f16c8ee4eb6223a021a62c42cf1442c0))
706
+ - all branches that begin feat/ ([079ec72](https://github.com/ProjectCORTeam/maia-components/commit/079ec7264138bf944e4649dd0fad6ee1e8e8bd41))
707
+ - branch name ([1c6529a](https://github.com/ProjectCORTeam/maia-components/commit/1c6529a6950fcaf6f43ec1f7a1347936a740a08a))
708
+ - config branches ([8e5d191](https://github.com/ProjectCORTeam/maia-components/commit/8e5d1914b2244debc85c930c49281b4b5be859b4))
709
+ - config branches ([1c69da1](https://github.com/ProjectCORTeam/maia-components/commit/1c69da123da00f957e913dae92979664d36078ee))
710
+ - config branches ([b0366f5](https://github.com/ProjectCORTeam/maia-components/commit/b0366f505935795427dd79878fa5308b1c495a32))
711
+ - config branches ([e217001](https://github.com/ProjectCORTeam/maia-components/commit/e217001f24b8eb39c8d01f721c6bb3a2aca22d9d))
712
+ - config branches ([c6d9715](https://github.com/ProjectCORTeam/maia-components/commit/c6d9715516c09aabfd90d4445241a4c45238168a))
713
+ - config branches ([656e8d3](https://github.com/ProjectCORTeam/maia-components/commit/656e8d3bc37108d895a7fcff68628ebb768ab8d6))
714
+ - config branches ([bc94813](https://github.com/ProjectCORTeam/maia-components/commit/bc948138516e188c6efb0f3c60dbdebefd9197de))
715
+ - config branches ([74f884d](https://github.com/ProjectCORTeam/maia-components/commit/74f884dc2d1635fbe7f75ba75d4ef3d487262c05))
716
+ - credentials ([a10ab07](https://github.com/ProjectCORTeam/maia-components/commit/a10ab07abb5e54795737dbe872f8382c0f30b432))
717
+ - npm rc ([ebbe1fe](https://github.com/ProjectCORTeam/maia-components/commit/ebbe1fe78ca8e8eeac41a653ea9474b2e94325ac))
718
+ - npm rc ([1d9d624](https://github.com/ProjectCORTeam/maia-components/commit/1d9d624e2cfe9b0fadc1ed831b59422deeff79f8))
719
+ - npm rc ([d52d2be](https://github.com/ProjectCORTeam/maia-components/commit/d52d2bed0c1bf8eb7ad2edf3d36f906efb31cca6))
720
+ - npm rc ([0ce3338](https://github.com/ProjectCORTeam/maia-components/commit/0ce3338e1fa64060c2d8d793619360b752763694))
721
+ - npm rc ([7cd367c](https://github.com/ProjectCORTeam/maia-components/commit/7cd367cb30875ea74a5636a590430865e068e8d1))
722
+ - plugins version ([31ba72b](https://github.com/ProjectCORTeam/maia-components/commit/31ba72bab07b5679bbc21af0c2465889699e7b1a))
723
+ - prerelease true ([c125a92](https://github.com/ProjectCORTeam/maia-components/commit/c125a9213e6611efa009de1171f2a57917d483bf))
724
+ - pull latest changes ([b9335ad](https://github.com/ProjectCORTeam/maia-components/commit/b9335ad8960399b4f36d493eb37068e15dcf9982))
725
+ - regex ([3c271f1](https://github.com/ProjectCORTeam/maia-components/commit/3c271f1f23ce3db5f0da0ea436e5cb9e793d34a6))
726
+ - regex validation ([6775cfc](https://github.com/ProjectCORTeam/maia-components/commit/6775cfce730d09eada2bdf2ee1227f13f2674a60))
727
+ - regex validation ([dc9bd9b](https://github.com/ProjectCORTeam/maia-components/commit/dc9bd9b48ed1b7ef85d7b9c74fd9b399ebd2db26))
728
+ - without prerelease ([97e60bf](https://github.com/ProjectCORTeam/maia-components/commit/97e60bfdb7976d287b55321d8a6d231702789425))
729
+
730
+ ## [2.1.0](https://github.com/ProjectCORTeam/maia-components/compare/v2.0.3...v2.1.0) (2025-09-12)
731
+
732
+ ### Features
733
+
734
+ - add npm plugin ([64e6fbf](https://github.com/ProjectCORTeam/maia-components/commit/64e6fbf86c8c60283d2a07cec3ada43d43446c67))
735
+ - add space ([c986a19](https://github.com/ProjectCORTeam/maia-components/commit/c986a196af09fc4d5d2dae493f07c2d3d47e4158))
736
+ - remove space ([5a9937a](https://github.com/ProjectCORTeam/maia-components/commit/5a9937a0cd405cf2ab9ce9ea6bffc1f79889dd54))
737
+
738
+ ### Bug Fixes
739
+
740
+ - add npmPublish-tarballDir ([aafb200](https://github.com/ProjectCORTeam/maia-components/commit/aafb200d94d570337f5ed7dd4486eb1c18acc9c9))
741
+ - add-space ([9826a5b](https://github.com/ProjectCORTeam/maia-components/commit/9826a5b4f16c8ee4eb6223a021a62c42cf1442c0))
742
+ - all branches that begin feat/ ([079ec72](https://github.com/ProjectCORTeam/maia-components/commit/079ec7264138bf944e4649dd0fad6ee1e8e8bd41))
743
+ - branch name ([1c6529a](https://github.com/ProjectCORTeam/maia-components/commit/1c6529a6950fcaf6f43ec1f7a1347936a740a08a))
744
+ - config branches ([8e5d191](https://github.com/ProjectCORTeam/maia-components/commit/8e5d1914b2244debc85c930c49281b4b5be859b4))
745
+ - config branches ([1c69da1](https://github.com/ProjectCORTeam/maia-components/commit/1c69da123da00f957e913dae92979664d36078ee))
746
+ - config branches ([b0366f5](https://github.com/ProjectCORTeam/maia-components/commit/b0366f505935795427dd79878fa5308b1c495a32))
747
+ - config branches ([e217001](https://github.com/ProjectCORTeam/maia-components/commit/e217001f24b8eb39c8d01f721c6bb3a2aca22d9d))
748
+ - config branches ([c6d9715](https://github.com/ProjectCORTeam/maia-components/commit/c6d9715516c09aabfd90d4445241a4c45238168a))
749
+ - config branches ([656e8d3](https://github.com/ProjectCORTeam/maia-components/commit/656e8d3bc37108d895a7fcff68628ebb768ab8d6))
750
+ - config branches ([bc94813](https://github.com/ProjectCORTeam/maia-components/commit/bc948138516e188c6efb0f3c60dbdebefd9197de))
751
+ - config branches ([74f884d](https://github.com/ProjectCORTeam/maia-components/commit/74f884dc2d1635fbe7f75ba75d4ef3d487262c05))
752
+ - credentials ([a10ab07](https://github.com/ProjectCORTeam/maia-components/commit/a10ab07abb5e54795737dbe872f8382c0f30b432))
753
+ - npm rc ([ebbe1fe](https://github.com/ProjectCORTeam/maia-components/commit/ebbe1fe78ca8e8eeac41a653ea9474b2e94325ac))
754
+ - npm rc ([1d9d624](https://github.com/ProjectCORTeam/maia-components/commit/1d9d624e2cfe9b0fadc1ed831b59422deeff79f8))
755
+ - npm rc ([d52d2be](https://github.com/ProjectCORTeam/maia-components/commit/d52d2bed0c1bf8eb7ad2edf3d36f906efb31cca6))
756
+ - npm rc ([0ce3338](https://github.com/ProjectCORTeam/maia-components/commit/0ce3338e1fa64060c2d8d793619360b752763694))
757
+ - npm rc ([7cd367c](https://github.com/ProjectCORTeam/maia-components/commit/7cd367cb30875ea74a5636a590430865e068e8d1))
758
+ - plugins version ([31ba72b](https://github.com/ProjectCORTeam/maia-components/commit/31ba72bab07b5679bbc21af0c2465889699e7b1a))
759
+ - prerelease true ([c125a92](https://github.com/ProjectCORTeam/maia-components/commit/c125a9213e6611efa009de1171f2a57917d483bf))
760
+ - pull latest changes ([b9335ad](https://github.com/ProjectCORTeam/maia-components/commit/b9335ad8960399b4f36d493eb37068e15dcf9982))
761
+ - regex ([3c271f1](https://github.com/ProjectCORTeam/maia-components/commit/3c271f1f23ce3db5f0da0ea436e5cb9e793d34a6))
762
+ - regex validation ([6775cfc](https://github.com/ProjectCORTeam/maia-components/commit/6775cfce730d09eada2bdf2ee1227f13f2674a60))
763
+ - regex validation ([dc9bd9b](https://github.com/ProjectCORTeam/maia-components/commit/dc9bd9b48ed1b7ef85d7b9c74fd9b399ebd2db26))
764
+ - without prerelease ([97e60bf](https://github.com/ProjectCORTeam/maia-components/commit/97e60bfdb7976d287b55321d8a6d231702789425))
765
+
766
+ ## [2.1.0-feat-add-ci-cd.7](https://github.com/ProjectCORTeam/maia-components/compare/v2.1.0-feat-add-ci-cd.6...v2.1.0-feat-add-ci-cd.7) (2025-09-09)
767
+
768
+ ### Features
769
+
770
+ - add space ([c986a19](https://github.com/ProjectCORTeam/maia-components/commit/c986a196af09fc4d5d2dae493f07c2d3d47e4158))
771
+
772
+ ## [2.1.0-feat-add-ci-cd.6](https://github.com/ProjectCORTeam/maia-components/compare/v2.1.0-feat-add-ci-cd.5...v2.1.0-feat-add-ci-cd.6) (2025-09-09)
773
+
774
+ ### Bug Fixes
775
+
776
+ - credentials ([a10ab07](https://github.com/ProjectCORTeam/maia-components/commit/a10ab07abb5e54795737dbe872f8382c0f30b432))
777
+ - pull latest changes ([b9335ad](https://github.com/ProjectCORTeam/maia-components/commit/b9335ad8960399b4f36d493eb37068e15dcf9982))
778
+
779
+ ## [2.1.0-feat-add-ci-cd.5](https://github.com/ProjectCORTeam/maia-components/compare/v2.1.0-feat-add-ci-cd.4...v2.1.0-feat-add-ci-cd.5) (2025-09-09)
780
+
781
+ ### Bug Fixes
782
+
783
+ - add npmPublish-tarballDir ([aafb200](https://github.com/ProjectCORTeam/maia-components/commit/aafb200d94d570337f5ed7dd4486eb1c18acc9c9))
784
+
785
+ ## [2.1.0-feat-add-ci-cd.4](https://github.com/ProjectCORTeam/maia-components/compare/v2.1.0-feat-add-ci-cd.3...v2.1.0-feat-add-ci-cd.4) (2025-09-09)
786
+
787
+ ### Bug Fixes
788
+
789
+ - npm rc ([ebbe1fe](https://github.com/ProjectCORTeam/maia-components/commit/ebbe1fe78ca8e8eeac41a653ea9474b2e94325ac))
790
+
791
+ ## [2.1.0-feat-add-ci-cd.3](https://github.com/ProjectCORTeam/maia-components/compare/v2.1.0-feat-add-ci-cd.2...v2.1.0-feat-add-ci-cd.3) (2025-09-09)
792
+
793
+ ### Bug Fixes
794
+
795
+ - npm rc ([1d9d624](https://github.com/ProjectCORTeam/maia-components/commit/1d9d624e2cfe9b0fadc1ed831b59422deeff79f8))
796
+ - npm rc ([d52d2be](https://github.com/ProjectCORTeam/maia-components/commit/d52d2bed0c1bf8eb7ad2edf3d36f906efb31cca6))
797
+
798
+ ## [2.1.0-feat-add-ci-cd.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.1.0-feat-add-ci-cd.1...v2.1.0-feat-add-ci-cd.2) (2025-09-09)
799
+
800
+ ### Features
801
+
802
+ - add npm plugin ([64e6fbf](https://github.com/ProjectCORTeam/maia-components/commit/64e6fbf86c8c60283d2a07cec3ada43d43446c67))
803
+
804
+ ### Bug Fixes
805
+
806
+ - npm rc ([0ce3338](https://github.com/ProjectCORTeam/maia-components/commit/0ce3338e1fa64060c2d8d793619360b752763694))
807
+ - npm rc ([7cd367c](https://github.com/ProjectCORTeam/maia-components/commit/7cd367cb30875ea74a5636a590430865e068e8d1))
808
+ - plugins version ([31ba72b](https://github.com/ProjectCORTeam/maia-components/commit/31ba72bab07b5679bbc21af0c2465889699e7b1a))
809
+
810
+ ## [2.1.0-feat-add-ci-cd.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.0.4-feat-add-ci-cd.2...v2.1.0-feat-add-ci-cd.1) (2025-09-09)
811
+
812
+ ### Features
813
+
814
+ - remove space ([5a9937a](https://github.com/ProjectCORTeam/maia-components/commit/5a9937a0cd405cf2ab9ce9ea6bffc1f79889dd54))
815
+
816
+ ### [2.0.4-feat-add-ci-cd.2](https://github.com/ProjectCORTeam/maia-components/compare/v2.0.4-feat-add-ci-cd.1...v2.0.4-feat-add-ci-cd.2) (2025-09-09)
817
+
818
+ ### Bug Fixes
819
+
820
+ - add-space ([9826a5b](https://github.com/ProjectCORTeam/maia-components/commit/9826a5b4f16c8ee4eb6223a021a62c42cf1442c0))
821
+
822
+ ### [2.0.4-feat-add-ci-cd.1](https://github.com/ProjectCORTeam/maia-components/compare/v2.0.3...v2.0.4-feat-add-ci-cd.1) (2025-09-09)
823
+
824
+ ### Bug Fixes
825
+
826
+ - all branches that begin feat/ ([079ec72](https://github.com/ProjectCORTeam/maia-components/commit/079ec7264138bf944e4649dd0fad6ee1e8e8bd41))
827
+ - branch name ([1c6529a](https://github.com/ProjectCORTeam/maia-components/commit/1c6529a6950fcaf6f43ec1f7a1347936a740a08a))
828
+ - config branches ([8e5d191](https://github.com/ProjectCORTeam/maia-components/commit/8e5d1914b2244debc85c930c49281b4b5be859b4))
829
+ - config branches ([1c69da1](https://github.com/ProjectCORTeam/maia-components/commit/1c69da123da00f957e913dae92979664d36078ee))
830
+ - config branches ([b0366f5](https://github.com/ProjectCORTeam/maia-components/commit/b0366f505935795427dd79878fa5308b1c495a32))
831
+ - config branches ([e217001](https://github.com/ProjectCORTeam/maia-components/commit/e217001f24b8eb39c8d01f721c6bb3a2aca22d9d))
832
+ - config branches ([c6d9715](https://github.com/ProjectCORTeam/maia-components/commit/c6d9715516c09aabfd90d4445241a4c45238168a))
833
+ - config branches ([656e8d3](https://github.com/ProjectCORTeam/maia-components/commit/656e8d3bc37108d895a7fcff68628ebb768ab8d6))
834
+ - config branches ([bc94813](https://github.com/ProjectCORTeam/maia-components/commit/bc948138516e188c6efb0f3c60dbdebefd9197de))
835
+ - config branches ([74f884d](https://github.com/ProjectCORTeam/maia-components/commit/74f884dc2d1635fbe7f75ba75d4ef3d487262c05))
836
+ - prerelease true ([c125a92](https://github.com/ProjectCORTeam/maia-components/commit/c125a9213e6611efa009de1171f2a57917d483bf))
837
+ - regex ([3c271f1](https://github.com/ProjectCORTeam/maia-components/commit/3c271f1f23ce3db5f0da0ea436e5cb9e793d34a6))
838
+ - regex validation ([6775cfc](https://github.com/ProjectCORTeam/maia-components/commit/6775cfce730d09eada2bdf2ee1227f13f2674a60))
839
+ - regex validation ([dc9bd9b](https://github.com/ProjectCORTeam/maia-components/commit/dc9bd9b48ed1b7ef85d7b9c74fd9b399ebd2db26))
840
+ - without prerelease ([97e60bf](https://github.com/ProjectCORTeam/maia-components/commit/97e60bfdb7976d287b55321d8a6d231702789425))