@forgedevstack/bear 1.3.1 → 1.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (491) hide show
  1. package/README.md +30 -0
  2. package/dist/components/Accordion/components/AccordionItem/AccordionItem.cjs +1 -1
  3. package/dist/components/Accordion/components/AccordionItem/AccordionItem.js +1 -1
  4. package/dist/components/Alert/Alert.cjs +1 -1
  5. package/dist/components/Alert/Alert.js +1 -1
  6. package/dist/components/ApprovalCard/ApprovalCard.cjs +1 -0
  7. package/dist/components/ApprovalCard/ApprovalCard.const.cjs +1 -0
  8. package/dist/components/ApprovalCard/ApprovalCard.const.d.ts +2 -0
  9. package/dist/components/ApprovalCard/ApprovalCard.const.js +8 -0
  10. package/dist/components/ApprovalCard/ApprovalCard.d.ts +2 -0
  11. package/dist/components/ApprovalCard/ApprovalCard.js +25 -0
  12. package/dist/components/ApprovalCard/ApprovalCard.types.d.ts +15 -0
  13. package/dist/components/ApprovalCard/index.d.ts +2 -0
  14. package/dist/components/ArtifactCard/ArtifactCard.cjs +1 -0
  15. package/dist/components/ArtifactCard/ArtifactCard.const.cjs +1 -0
  16. package/dist/components/ArtifactCard/ArtifactCard.const.d.ts +3 -0
  17. package/dist/components/ArtifactCard/ArtifactCard.const.js +8 -0
  18. package/dist/components/ArtifactCard/ArtifactCard.d.ts +2 -0
  19. package/dist/components/ArtifactCard/ArtifactCard.js +43 -0
  20. package/dist/components/ArtifactCard/ArtifactCard.types.d.ts +15 -0
  21. package/dist/components/ArtifactCard/index.d.ts +2 -0
  22. package/dist/components/Avatar/Avatar.cjs +1 -1
  23. package/dist/components/Avatar/Avatar.js +1 -1
  24. package/dist/components/BackTop/BackTop.cjs +1 -1
  25. package/dist/components/BackTop/BackTop.js +1 -1
  26. package/dist/components/Banner/Banner.const.cjs +1 -1
  27. package/dist/components/Banner/Banner.const.js +10 -9
  28. package/dist/components/Blockquote/Blockquote.cjs +1 -1
  29. package/dist/components/Blockquote/Blockquote.js +1 -1
  30. package/dist/components/BottomSheet/BottomSheet.cjs +1 -1
  31. package/dist/components/BottomSheet/BottomSheet.js +1 -1
  32. package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
  33. package/dist/components/Breadcrumbs/Breadcrumbs.js +1 -1
  34. package/dist/components/Calendar/Calendar.cjs +1 -1
  35. package/dist/components/Calendar/Calendar.js +1 -1
  36. package/dist/components/Chart/BarChart.cjs +1 -1
  37. package/dist/components/Chart/BarChart.d.ts +1 -2
  38. package/dist/components/Chart/BarChart.js +74 -61
  39. package/dist/components/Chart/Chart.cjs +1 -1
  40. package/dist/components/Chart/Chart.const.cjs +1 -1
  41. package/dist/components/Chart/Chart.const.d.ts +24 -3
  42. package/dist/components/Chart/Chart.const.js +39 -16
  43. package/dist/components/Chart/Chart.d.ts +1 -5
  44. package/dist/components/Chart/Chart.js +23 -24
  45. package/dist/components/Chart/Chart.types.d.ts +12 -20
  46. package/dist/components/Chart/Chart.utils.cjs +1 -1
  47. package/dist/components/Chart/Chart.utils.d.ts +8 -18
  48. package/dist/components/Chart/Chart.utils.js +39 -3
  49. package/dist/components/Chart/FunnelChart.cjs +1 -0
  50. package/dist/components/Chart/FunnelChart.d.ts +2 -0
  51. package/dist/components/Chart/FunnelChart.js +61 -0
  52. package/dist/components/Chart/LineChart.cjs +1 -1
  53. package/dist/components/Chart/LineChart.d.ts +1 -2
  54. package/dist/components/Chart/LineChart.js +80 -70
  55. package/dist/components/Chart/PieChart.cjs +1 -1
  56. package/dist/components/Chart/PieChart.d.ts +1 -2
  57. package/dist/components/Chart/PieChart.js +140 -105
  58. package/dist/components/Chart/PieChart.types.d.ts +8 -0
  59. package/dist/components/Chart/RadarChart.cjs +1 -0
  60. package/dist/components/Chart/RadarChart.d.ts +2 -0
  61. package/dist/components/Chart/RadarChart.js +123 -0
  62. package/dist/components/Chart/index.d.ts +3 -1
  63. package/dist/components/Chat/Chat.cjs +1 -1
  64. package/dist/components/Chat/Chat.const.cjs +1 -1
  65. package/dist/components/Chat/Chat.const.d.ts +9 -22
  66. package/dist/components/Chat/Chat.const.js +18 -26
  67. package/dist/components/Chat/Chat.d.ts +1 -20
  68. package/dist/components/Chat/Chat.js +107 -162
  69. package/dist/components/Chat/Chat.types.d.ts +20 -27
  70. package/dist/components/Chat/Chat.utils.cjs +1 -0
  71. package/dist/components/Chat/Chat.utils.d.ts +2 -0
  72. package/dist/components/Chat/Chat.utils.js +10 -0
  73. package/dist/components/Chat/helpers/ChatTypingIndicator.cjs +1 -0
  74. package/dist/components/Chat/helpers/ChatTypingIndicator.d.ts +3 -0
  75. package/dist/components/Chat/helpers/ChatTypingIndicator.js +14 -0
  76. package/dist/components/Chat/index.d.ts +2 -1
  77. package/dist/components/ChatBubble/ChatBubble.cjs +1 -0
  78. package/dist/components/ChatBubble/ChatBubble.const.cjs +1 -0
  79. package/dist/components/ChatBubble/ChatBubble.const.d.ts +13 -0
  80. package/dist/components/ChatBubble/ChatBubble.const.js +17 -0
  81. package/dist/components/ChatBubble/ChatBubble.d.ts +2 -0
  82. package/dist/components/ChatBubble/ChatBubble.js +32 -0
  83. package/dist/components/ChatBubble/ChatBubble.types.d.ts +12 -0
  84. package/dist/components/ChatBubble/ChatBubble.utils.cjs +1 -0
  85. package/dist/components/ChatBubble/ChatBubble.utils.d.ts +6 -0
  86. package/dist/components/ChatBubble/ChatBubble.utils.js +15 -0
  87. package/dist/components/ChatBubble/helpers/ChatBubbleSystem.cjs +1 -0
  88. package/dist/components/ChatBubble/helpers/ChatBubbleSystem.d.ts +2 -0
  89. package/dist/components/ChatBubble/helpers/ChatBubbleSystem.js +21 -0
  90. package/dist/components/ChatBubble/helpers/ChatBubbleThread.cjs +1 -0
  91. package/dist/components/ChatBubble/helpers/ChatBubbleThread.d.ts +4 -0
  92. package/dist/components/ChatBubble/helpers/ChatBubbleThread.js +63 -0
  93. package/dist/components/ChatBubble/index.d.ts +2 -0
  94. package/dist/components/ChatError/ChatError.cjs +1 -0
  95. package/dist/components/ChatError/ChatError.const.cjs +1 -0
  96. package/dist/components/ChatError/ChatError.const.d.ts +2 -0
  97. package/dist/components/ChatError/ChatError.const.js +8 -0
  98. package/dist/components/ChatError/ChatError.d.ts +2 -0
  99. package/dist/components/ChatError/ChatError.js +32 -0
  100. package/dist/components/ChatError/ChatError.types.d.ts +14 -0
  101. package/dist/components/ChatError/index.d.ts +2 -0
  102. package/dist/components/CitationList/CitationList.cjs +1 -0
  103. package/dist/components/CitationList/CitationList.d.ts +2 -0
  104. package/dist/components/CitationList/CitationList.js +30 -0
  105. package/dist/components/CitationList/CitationList.types.d.ts +15 -0
  106. package/dist/components/CitationList/helpers/CitationListTitle.cjs +1 -0
  107. package/dist/components/CitationList/helpers/CitationListTitle.d.ts +2 -0
  108. package/dist/components/CitationList/helpers/CitationListTitle.js +10 -0
  109. package/dist/components/CitationList/helpers/index.d.ts +1 -0
  110. package/dist/components/CitationList/index.d.ts +2 -0
  111. package/dist/components/ContextMeter/ContextMeter.cjs +1 -0
  112. package/dist/components/ContextMeter/ContextMeter.const.cjs +1 -0
  113. package/dist/components/ContextMeter/ContextMeter.const.d.ts +6 -0
  114. package/dist/components/ContextMeter/ContextMeter.const.js +11 -0
  115. package/dist/components/ContextMeter/ContextMeter.d.ts +2 -0
  116. package/dist/components/ContextMeter/ContextMeter.js +49 -0
  117. package/dist/components/ContextMeter/ContextMeter.types.d.ts +11 -0
  118. package/dist/components/ContextMeter/ContextMeter.utils.cjs +1 -0
  119. package/dist/components/ContextMeter/ContextMeter.utils.d.ts +2 -0
  120. package/dist/components/ContextMeter/ContextMeter.utils.js +12 -0
  121. package/dist/components/ContextMeter/index.d.ts +2 -0
  122. package/dist/components/CurrencyInput/CurrencyInput.cjs +1 -1
  123. package/dist/components/CurrencyInput/CurrencyInput.js +1 -1
  124. package/dist/components/DatePicker/DatePicker.cjs +1 -1
  125. package/dist/components/DatePicker/DatePicker.js +1 -1
  126. package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
  127. package/dist/components/DateRangePicker/DateRangePicker.js +1 -1
  128. package/dist/components/Drawer/Drawer.cjs +1 -1
  129. package/dist/components/Drawer/Drawer.const.cjs +1 -1
  130. package/dist/components/Drawer/Drawer.const.d.ts +4 -12
  131. package/dist/components/Drawer/Drawer.const.js +7 -55
  132. package/dist/components/Drawer/Drawer.d.ts +1 -2
  133. package/dist/components/Drawer/Drawer.js +78 -112
  134. package/dist/components/Drawer/Drawer.types.d.ts +20 -4
  135. package/dist/components/Drawer/Drawer.utils.d.ts +0 -4
  136. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.cjs +1 -0
  137. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.d.ts +2 -0
  138. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.js +26 -0
  139. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.types.d.ts +20 -0
  140. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.cjs +1 -0
  141. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.d.ts +2 -0
  142. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.js +17 -0
  143. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.cjs +1 -0
  144. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.d.ts +2 -0
  145. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.js +9 -0
  146. package/dist/components/Drawer/components/DrawerHeader/index.d.ts +2 -0
  147. package/dist/components/Drawer/components/index.d.ts +1 -0
  148. package/dist/components/Drawer/helpers/DrawerOptionalHeader.cjs +1 -0
  149. package/dist/components/Drawer/helpers/DrawerOptionalHeader.d.ts +2 -0
  150. package/dist/components/Drawer/helpers/DrawerOptionalHeader.js +9 -0
  151. package/dist/components/Drawer/helpers/index.d.ts +1 -0
  152. package/dist/components/Drawer/hooks/index.d.ts +1 -0
  153. package/dist/components/Drawer/hooks/useDrawer.cjs +1 -0
  154. package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
  155. package/dist/components/Drawer/hooks/useDrawer.js +50 -0
  156. package/dist/components/Drawer/index.d.ts +1 -1
  157. package/dist/components/Editable/Editable.cjs +1 -1
  158. package/dist/components/Editable/Editable.js +1 -1
  159. package/dist/components/EmptyState/EmptyState.cjs +1 -1
  160. package/dist/components/EmptyState/EmptyState.const.cjs +1 -1
  161. package/dist/components/EmptyState/EmptyState.const.d.ts +8 -6
  162. package/dist/components/EmptyState/EmptyState.const.js +15 -8
  163. package/dist/components/EmptyState/EmptyState.d.ts +1 -2
  164. package/dist/components/EmptyState/EmptyState.js +39 -43
  165. package/dist/components/EmptyState/EmptyState.types.d.ts +2 -0
  166. package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.cjs +1 -0
  167. package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.d.ts +3 -0
  168. package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.js +8 -0
  169. package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.cjs +1 -0
  170. package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.d.ts +3 -0
  171. package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.js +8 -0
  172. package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.cjs +1 -0
  173. package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.d.ts +3 -0
  174. package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.js +8 -0
  175. package/dist/components/EmptyState/helpers/index.d.ts +3 -0
  176. package/dist/components/EmptyState/index.d.ts +1 -1
  177. package/dist/components/FileTree/FileTree.cjs +1 -1
  178. package/dist/components/FileTree/FileTree.js +1 -1
  179. package/dist/components/FloatingChat/FloatingChat.cjs +1 -1
  180. package/dist/components/FloatingChat/FloatingChat.const.cjs +1 -1
  181. package/dist/components/FloatingChat/FloatingChat.const.d.ts +12 -1
  182. package/dist/components/FloatingChat/FloatingChat.const.js +25 -7
  183. package/dist/components/FloatingChat/FloatingChat.d.ts +1 -18
  184. package/dist/components/FloatingChat/FloatingChat.js +93 -124
  185. package/dist/components/FloatingChat/FloatingChat.types.d.ts +11 -22
  186. package/dist/components/FloatingChat/FloatingChat.utils.cjs +1 -0
  187. package/dist/components/FloatingChat/FloatingChat.utils.d.ts +2 -0
  188. package/dist/components/FloatingChat/FloatingChat.utils.js +12 -0
  189. package/dist/components/FloatingChat/helpers/FloatingChatHeader.cjs +1 -0
  190. package/dist/components/FloatingChat/helpers/FloatingChatHeader.d.ts +9 -0
  191. package/dist/components/FloatingChat/helpers/FloatingChatHeader.js +21 -0
  192. package/dist/components/FloatingChat/helpers/FloatingChatTrigger.cjs +1 -0
  193. package/dist/components/FloatingChat/helpers/FloatingChatTrigger.d.ts +9 -0
  194. package/dist/components/FloatingChat/helpers/FloatingChatTrigger.js +17 -0
  195. package/dist/components/FloatingChat/index.d.ts +1 -1
  196. package/dist/components/FormSkeleton/FormSkeleton.cjs +1 -1
  197. package/dist/components/FormSkeleton/FormSkeleton.d.ts +1 -1
  198. package/dist/components/FormSkeleton/FormSkeleton.js +35 -24
  199. package/dist/components/Gauge/Gauge.cjs +1 -1
  200. package/dist/components/Gauge/Gauge.const.cjs +1 -1
  201. package/dist/components/Gauge/Gauge.const.d.ts +5 -0
  202. package/dist/components/Gauge/Gauge.const.js +11 -6
  203. package/dist/components/Gauge/Gauge.d.ts +1 -2
  204. package/dist/components/Gauge/Gauge.js +69 -45
  205. package/dist/components/Gauge/Gauge.types.d.ts +11 -2
  206. package/dist/components/Gauge/helpers/GaugeLinearBar.cjs +1 -0
  207. package/dist/components/Gauge/helpers/GaugeLinearBar.d.ts +2 -0
  208. package/dist/components/Gauge/helpers/GaugeLinearBar.js +40 -0
  209. package/dist/components/Heatmap/Heatmap.cjs +1 -1
  210. package/dist/components/Heatmap/Heatmap.const.cjs +1 -1
  211. package/dist/components/Heatmap/Heatmap.const.d.ts +2 -0
  212. package/dist/components/Heatmap/Heatmap.const.js +8 -6
  213. package/dist/components/Heatmap/Heatmap.js +51 -47
  214. package/dist/components/Heatmap/Heatmap.types.d.ts +1 -1
  215. package/dist/components/Icon/Icon.d.ts +2 -39
  216. package/dist/components/Icon/Icon.types.d.ts +1 -17
  217. package/dist/components/Icon/icons/action.d.ts +1 -85
  218. package/dist/components/Icon/icons/bear.d.ts +1 -12
  219. package/dist/components/Icon/icons/charts.d.ts +1 -0
  220. package/dist/components/Icon/icons/commerce.d.ts +1 -25
  221. package/dist/components/Icon/icons/communication.d.ts +1 -48
  222. package/dist/components/Icon/icons/content.d.ts +1 -53
  223. package/dist/components/Icon/icons/device.d.ts +1 -27
  224. package/dist/components/Icon/icons/editor.d.ts +1 -54
  225. package/dist/components/Icon/icons/file.d.ts +1 -25
  226. package/dist/components/Icon/icons/index.d.ts +1 -9
  227. package/dist/components/Icon/icons/media.d.ts +1 -64
  228. package/dist/components/Icon/icons/misc.d.ts +1 -96
  229. package/dist/components/Icon/icons/navigation.d.ts +1 -56
  230. package/dist/components/Icon/icons/social.d.ts +1 -24
  231. package/dist/components/Icon/icons/status.d.ts +1 -61
  232. package/dist/components/Icon/index.d.ts +3 -605
  233. package/dist/components/Icon/productIcons.cjs +1 -0
  234. package/dist/components/Icon/productIcons.d.ts +7 -0
  235. package/dist/components/Icon/productIcons.js +25 -0
  236. package/dist/components/ImageAnnotation/ImageAnnotation.cjs +1 -1
  237. package/dist/components/ImageAnnotation/ImageAnnotation.js +1 -1
  238. package/dist/components/JsonViewer/JsonViewer.cjs +1 -1
  239. package/dist/components/JsonViewer/JsonViewer.js +1 -1
  240. package/dist/components/MediaPlayer/MediaPlayer.cjs +1 -1
  241. package/dist/components/MediaPlayer/MediaPlayer.js +1 -1
  242. package/dist/components/MessageActions/MessageActions.cjs +1 -0
  243. package/dist/components/MessageActions/MessageActions.const.cjs +1 -0
  244. package/dist/components/MessageActions/MessageActions.const.d.ts +2 -0
  245. package/dist/components/MessageActions/MessageActions.const.js +10 -0
  246. package/dist/components/MessageActions/MessageActions.d.ts +2 -0
  247. package/dist/components/MessageActions/MessageActions.js +31 -0
  248. package/dist/components/MessageActions/MessageActions.types.d.ts +16 -0
  249. package/dist/components/MessageActions/index.d.ts +2 -0
  250. package/dist/components/Modal/Modal.cjs +1 -1
  251. package/dist/components/Modal/Modal.js +1 -1
  252. package/dist/components/ModelSelect/ModelSelect.cjs +1 -0
  253. package/dist/components/ModelSelect/ModelSelect.const.cjs +1 -0
  254. package/dist/components/ModelSelect/ModelSelect.const.d.ts +1 -0
  255. package/dist/components/ModelSelect/ModelSelect.const.js +4 -0
  256. package/dist/components/ModelSelect/ModelSelect.d.ts +2 -0
  257. package/dist/components/ModelSelect/ModelSelect.js +41 -0
  258. package/dist/components/ModelSelect/ModelSelect.types.d.ts +16 -0
  259. package/dist/components/ModelSelect/index.d.ts +2 -0
  260. package/dist/components/OverlayPortal/OverlayPortal.const.cjs +1 -1
  261. package/dist/components/OverlayPortal/OverlayPortal.const.js +6 -5
  262. package/dist/components/PageNav/PageNav.cjs +1 -1
  263. package/dist/components/PageNav/PageNav.js +1 -1
  264. package/dist/components/PasswordInput/PasswordInput.cjs +1 -1
  265. package/dist/components/PasswordInput/PasswordInput.js +1 -1
  266. package/dist/components/PromptComposer/PromptComposer.cjs +1 -0
  267. package/dist/components/PromptComposer/PromptComposer.const.cjs +1 -0
  268. package/dist/components/PromptComposer/PromptComposer.const.d.ts +6 -0
  269. package/dist/components/PromptComposer/PromptComposer.const.js +14 -0
  270. package/dist/components/PromptComposer/PromptComposer.d.ts +2 -0
  271. package/dist/components/PromptComposer/PromptComposer.js +132 -0
  272. package/dist/components/PromptComposer/PromptComposer.types.d.ts +45 -0
  273. package/dist/components/PromptComposer/PromptComposer.utils.cjs +1 -0
  274. package/dist/components/PromptComposer/PromptComposer.utils.d.ts +5 -0
  275. package/dist/components/PromptComposer/PromptComposer.utils.js +16 -0
  276. package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.cjs +1 -0
  277. package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.d.ts +1 -0
  278. package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.js +6 -0
  279. package/dist/components/PromptComposer/helpers/PromptComposerFileChip.cjs +1 -0
  280. package/dist/components/PromptComposer/helpers/PromptComposerFileChip.d.ts +2 -0
  281. package/dist/components/PromptComposer/helpers/PromptComposerFileChip.js +18 -0
  282. package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.cjs +1 -0
  283. package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.d.ts +1 -0
  284. package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.js +9 -0
  285. package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.cjs +1 -0
  286. package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.d.ts +1 -0
  287. package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.js +6 -0
  288. package/dist/components/PromptComposer/helpers/index.d.ts +4 -0
  289. package/dist/components/PromptComposer/index.d.ts +2 -0
  290. package/dist/components/PromptSuggestions/PromptSuggestions.cjs +1 -0
  291. package/dist/components/PromptSuggestions/PromptSuggestions.d.ts +2 -0
  292. package/dist/components/PromptSuggestions/PromptSuggestions.js +39 -0
  293. package/dist/components/PromptSuggestions/PromptSuggestions.types.d.ts +13 -0
  294. package/dist/components/PromptSuggestions/index.d.ts +2 -0
  295. package/dist/components/PropsPlayground/PropsPlayground.cjs +1 -1
  296. package/dist/components/PropsPlayground/PropsPlayground.js +1 -1
  297. package/dist/components/Rating/components/StarIcon/StarIcon.cjs +1 -1
  298. package/dist/components/Rating/components/StarIcon/StarIcon.js +1 -1
  299. package/dist/components/Result/Result.utils.cjs +1 -1
  300. package/dist/components/Result/Result.utils.js +1 -1
  301. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.cjs +1 -1
  302. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.js +1 -1
  303. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.cjs +1 -1
  304. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.js +1 -1
  305. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.cjs +1 -1
  306. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.js +1 -1
  307. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.cjs +1 -1
  308. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.js +1 -1
  309. package/dist/components/RichEditor/helpers/IconRender.cjs +1 -1
  310. package/dist/components/RichEditor/helpers/IconRender.js +1 -1
  311. package/dist/components/RichEditor/helpers/toolbarItemRender.cjs +1 -1
  312. package/dist/components/RichEditor/helpers/toolbarItemRender.js +1 -1
  313. package/dist/components/RingProgress/RingProgress.cjs +1 -1
  314. package/dist/components/RingProgress/RingProgress.const.cjs +1 -1
  315. package/dist/components/RingProgress/RingProgress.const.d.ts +3 -0
  316. package/dist/components/RingProgress/RingProgress.const.js +7 -4
  317. package/dist/components/RingProgress/RingProgress.js +38 -37
  318. package/dist/components/RingProgress/RingProgress.types.d.ts +1 -0
  319. package/dist/components/Select/Select.cjs +1 -1
  320. package/dist/components/Select/Select.js +23 -23
  321. package/dist/components/Select/helpers/SelectCheckSvg.cjs +1 -0
  322. package/dist/components/Select/helpers/SelectCheckSvg.d.ts +3 -0
  323. package/dist/components/Select/helpers/SelectCheckSvg.js +8 -0
  324. package/dist/components/Select/helpers/SelectChevronDownSvg.cjs +1 -0
  325. package/dist/components/Select/helpers/SelectChevronDownSvg.d.ts +3 -0
  326. package/dist/components/Select/helpers/SelectChevronDownSvg.js +8 -0
  327. package/dist/components/Select/helpers/index.d.ts +2 -0
  328. package/dist/components/Sidebar/Sidebar.cjs +1 -1
  329. package/dist/components/Sidebar/Sidebar.js +16 -15
  330. package/dist/components/Sidebar/Sidebar.types.d.ts +1 -1
  331. package/dist/components/Sidebar/Sidebar.utils.cjs +1 -0
  332. package/dist/components/Sidebar/Sidebar.utils.d.ts +2 -0
  333. package/dist/components/Sidebar/Sidebar.utils.js +11 -0
  334. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.cjs +1 -1
  335. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.js +1 -1
  336. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.cjs +1 -1
  337. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.js +55 -51
  338. package/dist/components/Sidebar/index.d.ts +1 -0
  339. package/dist/components/Skeleton/Skeleton.cjs +1 -1
  340. package/dist/components/Skeleton/Skeleton.const.cjs +2 -2
  341. package/dist/components/Skeleton/Skeleton.const.js +5 -6
  342. package/dist/components/Skeleton/Skeleton.js +59 -59
  343. package/dist/components/SliderRange/SliderRange.cjs +1 -1
  344. package/dist/components/SliderRange/SliderRange.js +19 -19
  345. package/dist/components/Sparkline/Sparkline.cjs +1 -1
  346. package/dist/components/Sparkline/Sparkline.const.cjs +1 -1
  347. package/dist/components/Sparkline/Sparkline.const.d.ts +5 -0
  348. package/dist/components/Sparkline/Sparkline.const.js +9 -4
  349. package/dist/components/Sparkline/Sparkline.d.ts +1 -2
  350. package/dist/components/Sparkline/Sparkline.js +75 -53
  351. package/dist/components/Sparkline/Sparkline.types.d.ts +2 -0
  352. package/dist/components/Sparkline/Sparkline.utils.cjs +1 -1
  353. package/dist/components/Sparkline/Sparkline.utils.d.ts +7 -12
  354. package/dist/components/Sparkline/Sparkline.utils.js +33 -20
  355. package/dist/components/Sparkline/index.d.ts +2 -2
  356. package/dist/components/StatCard/StatCard.cjs +1 -1
  357. package/dist/components/StatCard/StatCard.const.cjs +1 -1
  358. package/dist/components/StatCard/StatCard.const.d.ts +0 -7
  359. package/dist/components/StatCard/StatCard.const.js +5 -12
  360. package/dist/components/StatCard/StatCard.d.ts +1 -2
  361. package/dist/components/StatCard/StatCard.js +48 -37
  362. package/dist/components/StatCard/StatCard.utils.cjs +1 -0
  363. package/dist/components/StatCard/StatCard.utils.d.ts +2 -0
  364. package/dist/components/StatCard/StatCard.utils.js +7 -0
  365. package/dist/components/Stepper/Stepper.cjs +1 -1
  366. package/dist/components/Stepper/Stepper.js +1 -1
  367. package/dist/components/StreamingMessage/StreamingMessage.cjs +1 -0
  368. package/dist/components/StreamingMessage/StreamingMessage.const.cjs +1 -0
  369. package/dist/components/StreamingMessage/StreamingMessage.const.d.ts +5 -0
  370. package/dist/components/StreamingMessage/StreamingMessage.const.js +10 -0
  371. package/dist/components/StreamingMessage/StreamingMessage.d.ts +2 -0
  372. package/dist/components/StreamingMessage/StreamingMessage.js +48 -0
  373. package/dist/components/StreamingMessage/StreamingMessage.types.d.ts +15 -0
  374. package/dist/components/StreamingMessage/index.d.ts +2 -0
  375. package/dist/components/Tabs/TabList.cjs +1 -1
  376. package/dist/components/Tabs/TabList.js +1 -1
  377. package/dist/components/ThemeSwitcher/ThemeSwitcher.cjs +1 -0
  378. package/dist/components/ThemeSwitcher/ThemeSwitcher.const.cjs +1 -0
  379. package/dist/components/ThemeSwitcher/ThemeSwitcher.const.d.ts +7 -0
  380. package/dist/components/ThemeSwitcher/ThemeSwitcher.const.js +14 -0
  381. package/dist/components/ThemeSwitcher/ThemeSwitcher.d.ts +2 -0
  382. package/dist/components/ThemeSwitcher/ThemeSwitcher.js +39 -0
  383. package/dist/components/ThemeSwitcher/ThemeSwitcher.types.d.ts +14 -0
  384. package/dist/components/ThemeSwitcher/index.d.ts +2 -0
  385. package/dist/components/ThinkingBlock/ThinkingBlock.cjs +1 -0
  386. package/dist/components/ThinkingBlock/ThinkingBlock.const.cjs +1 -0
  387. package/dist/components/ThinkingBlock/ThinkingBlock.const.d.ts +4 -0
  388. package/dist/components/ThinkingBlock/ThinkingBlock.const.js +9 -0
  389. package/dist/components/ThinkingBlock/ThinkingBlock.d.ts +2 -0
  390. package/dist/components/ThinkingBlock/ThinkingBlock.js +45 -0
  391. package/dist/components/ThinkingBlock/ThinkingBlock.types.d.ts +16 -0
  392. package/dist/components/ThinkingBlock/index.d.ts +2 -0
  393. package/dist/components/TimePicker/TimePicker.cjs +1 -1
  394. package/dist/components/TimePicker/TimePicker.js +1 -1
  395. package/dist/components/TimelineChart/TimelineChart.cjs +1 -1
  396. package/dist/components/TimelineChart/TimelineChart.const.cjs +1 -1
  397. package/dist/components/TimelineChart/TimelineChart.const.d.ts +3 -0
  398. package/dist/components/TimelineChart/TimelineChart.const.js +7 -4
  399. package/dist/components/TimelineChart/TimelineChart.js +56 -42
  400. package/dist/components/TimelineChart/TimelineChart.types.d.ts +1 -1
  401. package/dist/components/ToolCall/ToolCall.cjs +1 -0
  402. package/dist/components/ToolCall/ToolCall.const.cjs +1 -0
  403. package/dist/components/ToolCall/ToolCall.const.d.ts +5 -0
  404. package/dist/components/ToolCall/ToolCall.const.js +17 -0
  405. package/dist/components/ToolCall/ToolCall.d.ts +2 -0
  406. package/dist/components/ToolCall/ToolCall.js +43 -0
  407. package/dist/components/ToolCall/ToolCall.types.d.ts +20 -0
  408. package/dist/components/ToolCall/index.d.ts +2 -0
  409. package/dist/components/Transition/Transition.const.cjs +1 -1
  410. package/dist/components/Transition/Transition.const.js +12 -6
  411. package/dist/components/Transition/Transition.types.d.ts +1 -1
  412. package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
  413. package/dist/components/TreeSelect/TreeSelect.js +1 -1
  414. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.cjs +1 -1
  415. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.js +1 -1
  416. package/dist/components/TreeView/TreeView.cjs +1 -1
  417. package/dist/components/TreeView/TreeView.js +3 -2
  418. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.cjs +1 -1
  419. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.js +1 -1
  420. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.cjs +1 -1
  421. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.js +1 -1
  422. package/dist/components/index.cjs +1 -1
  423. package/dist/components/index.d.ts +39 -11
  424. package/dist/components/index.js +455 -420
  425. package/dist/constants/generals.const.cjs +1 -1
  426. package/dist/constants/generals.const.d.ts +50 -0
  427. package/dist/constants/generals.const.js +154 -108
  428. package/dist/constants/keys.const.cjs +1 -1
  429. package/dist/constants/keys.const.js +2 -1
  430. package/dist/constants/numbers.const.cjs +1 -1
  431. package/dist/constants/numbers.const.d.ts +7 -0
  432. package/dist/constants/numbers.const.js +60 -52
  433. package/dist/context/BearProvider.cjs +1 -1
  434. package/dist/context/BearProvider.d.ts +19 -44
  435. package/dist/context/BearProvider.js +223 -208
  436. package/dist/context/bearProvider.types.d.ts +4 -0
  437. package/dist/context/index.d.ts +1 -1
  438. package/dist/hooks/useFixedAnchorPosition/index.d.ts +1 -1
  439. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.cjs +1 -1
  440. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.d.ts +2 -1
  441. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.js +12 -11
  442. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.types.d.ts +1 -1
  443. package/dist/icons.cjs +1 -1
  444. package/dist/icons.d.ts +2 -2
  445. package/dist/icons.js +1 -6
  446. package/dist/index.cjs +1 -1
  447. package/dist/index.js +597 -562
  448. package/dist/styles/_ai-chat.css +487 -0
  449. package/dist/styles/_base.css +2 -0
  450. package/dist/styles/_chart.css +144 -0
  451. package/dist/styles/_drawer.css +213 -0
  452. package/dist/styles/_effects.css +8 -4
  453. package/dist/styles/_overlays.css +0 -1
  454. package/dist/styles/_skeleton.css +90 -0
  455. package/dist/styles/main.css +4 -0
  456. package/dist/styles.css +1089 -186
  457. package/package.json +5 -1
  458. package/dist/components/FormSkeleton/FormSkeleton.const.cjs +0 -1
  459. package/dist/components/FormSkeleton/FormSkeleton.const.d.ts +0 -5
  460. package/dist/components/FormSkeleton/FormSkeleton.const.js +0 -8
  461. package/dist/components/Icon/Icon.cjs +0 -1
  462. package/dist/components/Icon/Icon.const.d.ts +0 -1
  463. package/dist/components/Icon/Icon.js +0 -45
  464. package/dist/components/Icon/icons/action.cjs +0 -1
  465. package/dist/components/Icon/icons/action.js +0 -351
  466. package/dist/components/Icon/icons/bear.cjs +0 -1
  467. package/dist/components/Icon/icons/bear.js +0 -47
  468. package/dist/components/Icon/icons/commerce.cjs +0 -1
  469. package/dist/components/Icon/icons/commerce.js +0 -124
  470. package/dist/components/Icon/icons/communication.cjs +0 -1
  471. package/dist/components/Icon/icons/communication.js +0 -184
  472. package/dist/components/Icon/icons/content.cjs +0 -1
  473. package/dist/components/Icon/icons/content.js +0 -231
  474. package/dist/components/Icon/icons/device.cjs +0 -1
  475. package/dist/components/Icon/icons/device.js +0 -122
  476. package/dist/components/Icon/icons/editor.cjs +0 -1
  477. package/dist/components/Icon/icons/editor.js +0 -285
  478. package/dist/components/Icon/icons/file.cjs +0 -1
  479. package/dist/components/Icon/icons/file.js +0 -120
  480. package/dist/components/Icon/icons/media.cjs +0 -1
  481. package/dist/components/Icon/icons/media.js +0 -306
  482. package/dist/components/Icon/icons/misc.cjs +0 -1
  483. package/dist/components/Icon/icons/misc.js +0 -450
  484. package/dist/components/Icon/icons/navigation.cjs +0 -1
  485. package/dist/components/Icon/icons/navigation.js +0 -215
  486. package/dist/components/Icon/icons/social.cjs +0 -1
  487. package/dist/components/Icon/icons/social.js +0 -89
  488. package/dist/components/Icon/icons/status.cjs +0 -1
  489. package/dist/components/Icon/icons/status.js +0 -271
  490. package/dist/components/Icon/index.cjs +0 -1
  491. package/dist/components/Icon/index.js +0 -79
@@ -1,271 +0,0 @@
1
- import { jsxs as e, jsx as c } from "react/jsx-runtime";
2
- import { Icon as l } from "../Icon.js";
3
- const h = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("polyline", { points: "20 6 9 17 4 12" }) }), o = (n) => /* @__PURE__ */ e(l, { ...n, children: [
4
- /* @__PURE__ */ c("path", { d: "M22 11.08V12a10 10 0 1 1-5.93-9.14" }),
5
- /* @__PURE__ */ c("polyline", { points: "22 4 12 14.01 9 11.01" })
6
- ] }), r = (n) => /* @__PURE__ */ c(l, { ...n, fill: "currentColor", stroke: "none", children: /* @__PURE__ */ c("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" }) }), y = (n) => /* @__PURE__ */ e(l, { ...n, children: [
7
- /* @__PURE__ */ c("path", { d: "M12 2L3.5 6.5v5c0 4.7 3.6 9.1 8.5 10.5 4.9-1.4 8.5-5.8 8.5-10.5v-5L12 2z" }),
8
- /* @__PURE__ */ c("polyline", { points: "9 12 11 14 15 10" })
9
- ] }), d = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("polyline", { points: "20 6 9 17 4 12" }) }), x = (n) => /* @__PURE__ */ e(l, { ...n, children: [
10
- /* @__PURE__ */ c("polyline", { points: "18 7 11 14 6 9" }),
11
- /* @__PURE__ */ c("polyline", { points: "22 7 15 14 13 12" })
12
- ] }), a = (n) => /* @__PURE__ */ e(l, { ...n, children: [
13
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
14
- /* @__PURE__ */ c("path", { d: "m9 12 2 2 4-4" })
15
- ] }), p = (n) => /* @__PURE__ */ e(l, { ...n, children: [
16
- /* @__PURE__ */ c("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
17
- /* @__PURE__ */ c("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
18
- ] }), s = (n) => /* @__PURE__ */ e(l, { ...n, children: [
19
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
20
- /* @__PURE__ */ c("line", { x1: "15", y1: "9", x2: "9", y2: "15" }),
21
- /* @__PURE__ */ c("line", { x1: "9", y1: "9", x2: "15", y2: "15" })
22
- ] }), M = (n) => /* @__PURE__ */ e(l, { ...n, children: [
23
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
24
- /* @__PURE__ */ c("line", { x1: "15", y1: "9", x2: "9", y2: "15" }),
25
- /* @__PURE__ */ c("line", { x1: "9", y1: "9", x2: "15", y2: "15" })
26
- ] }), I = (n) => /* @__PURE__ */ e(l, { ...n, children: [
27
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
28
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "12" }),
29
- /* @__PURE__ */ c("line", { x1: "12", y1: "16", x2: "12.01", y2: "16" })
30
- ] }), v = (n) => /* @__PURE__ */ e(l, { ...n, children: [
31
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
32
- /* @__PURE__ */ c("line", { x1: "15", y1: "9", x2: "9", y2: "15" }),
33
- /* @__PURE__ */ c("line", { x1: "9", y1: "9", x2: "15", y2: "15" })
34
- ] }), L = (n) => /* @__PURE__ */ e(l, { ...n, children: [
35
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
36
- /* @__PURE__ */ c("line", { x1: "4.93", y1: "4.93", x2: "19.07", y2: "19.07" })
37
- ] }), f = (n) => /* @__PURE__ */ e(l, { ...n, children: [
38
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
39
- /* @__PURE__ */ c("line", { x1: "8", y1: "12", x2: "16", y2: "12" })
40
- ] }), g = (n) => /* @__PURE__ */ e(l, { ...n, children: [
41
- /* @__PURE__ */ c("path", { d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" }),
42
- /* @__PURE__ */ c("line", { x1: "12", y1: "9", x2: "12", y2: "13" }),
43
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
44
- ] }), C = (n) => /* @__PURE__ */ e(l, { ...n, children: [
45
- /* @__PURE__ */ c("path", { d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" }),
46
- /* @__PURE__ */ c("line", { x1: "12", y1: "9", x2: "12", y2: "13" }),
47
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
48
- ] }), u = (n) => /* @__PURE__ */ e(l, { ...n, children: [
49
- /* @__PURE__ */ c("path", { d: "M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2z" }),
50
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "12" }),
51
- /* @__PURE__ */ c("line", { x1: "12", y1: "16", x2: "12.01", y2: "16" })
52
- ] }), z = (n) => /* @__PURE__ */ e(l, { ...n, children: [
53
- /* @__PURE__ */ c("path", { d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" }),
54
- /* @__PURE__ */ c("line", { x1: "12", y1: "9", x2: "12", y2: "13" }),
55
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
56
- ] }), V = (n) => /* @__PURE__ */ e(l, { ...n, children: [
57
- /* @__PURE__ */ c("path", { d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" }),
58
- /* @__PURE__ */ c("line", { x1: "12", y1: "9", x2: "12", y2: "13" }),
59
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
60
- ] }), A = (n) => /* @__PURE__ */ e(l, { ...n, children: [
61
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
62
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "12" }),
63
- /* @__PURE__ */ c("line", { x1: "12", y1: "16", x2: "12.01", y2: "16" })
64
- ] }), m = (n) => /* @__PURE__ */ e(l, { ...n, children: [
65
- /* @__PURE__ */ c("polygon", { points: "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2" }),
66
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "12" }),
67
- /* @__PURE__ */ c("line", { x1: "12", y1: "16", x2: "12.01", y2: "16" })
68
- ] }), w = (n) => /* @__PURE__ */ e(l, { ...n, children: [
69
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
70
- /* @__PURE__ */ c("line", { x1: "12", y1: "16", x2: "12", y2: "12" }),
71
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12.01", y2: "8" })
72
- ] }), H = (n) => /* @__PURE__ */ e(l, { ...n, children: [
73
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
74
- /* @__PURE__ */ c("line", { x1: "12", y1: "16", x2: "12", y2: "12" }),
75
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12.01", y2: "8" })
76
- ] }), O = (n) => /* @__PURE__ */ e(l, { ...n, children: [
77
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
78
- /* @__PURE__ */ c("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
79
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
80
- ] }), k = (n) => /* @__PURE__ */ e(l, { ...n, children: [
81
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
82
- /* @__PURE__ */ c("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
83
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
84
- ] }), S = (n) => /* @__PURE__ */ e(l, { ...n, children: [
85
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
86
- /* @__PURE__ */ c("line", { x1: "8", y1: "12", x2: "8.01", y2: "12" }),
87
- /* @__PURE__ */ c("line", { x1: "12", y1: "12", x2: "12.01", y2: "12" }),
88
- /* @__PURE__ */ c("line", { x1: "16", y1: "12", x2: "16.01", y2: "12" })
89
- ] }), b = (n) => /* @__PURE__ */ e(l, { ...n, children: [
90
- /* @__PURE__ */ c("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }),
91
- /* @__PURE__ */ c("circle", { cx: "17", cy: "17", r: "4" }),
92
- /* @__PURE__ */ c("line", { x1: "17", y1: "15", x2: "17", y2: "17" }),
93
- /* @__PURE__ */ c("line", { x1: "17", y1: "17", x2: "19", y2: "17" }),
94
- /* @__PURE__ */ c("line", { x1: "8", y1: "9", x2: "12", y2: "9" }),
95
- /* @__PURE__ */ c("line", { x1: "8", y1: "13", x2: "10", y2: "13" })
96
- ] }), D = (n) => /* @__PURE__ */ e(l, { ...n, children: [
97
- /* @__PURE__ */ c("path", { d: "M5 22h14" }),
98
- /* @__PURE__ */ c("path", { d: "M5 2h14" }),
99
- /* @__PURE__ */ c("path", { d: "M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22" }),
100
- /* @__PURE__ */ c("path", { d: "M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2" })
101
- ] }), F = (n) => /* @__PURE__ */ e(l, { ...n, children: [
102
- /* @__PURE__ */ c("path", { d: "M5 22h14" }),
103
- /* @__PURE__ */ c("path", { d: "M5 2h14" }),
104
- /* @__PURE__ */ c("path", { d: "M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22" }),
105
- /* @__PURE__ */ c("path", { d: "M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2" })
106
- ] }), T = (n) => /* @__PURE__ */ e(l, { ...n, spin: !0, children: [
107
- /* @__PURE__ */ c("line", { x1: "12", y1: "2", x2: "12", y2: "6" }),
108
- /* @__PURE__ */ c("line", { x1: "12", y1: "18", x2: "12", y2: "22" }),
109
- /* @__PURE__ */ c("line", { x1: "4.93", y1: "4.93", x2: "7.76", y2: "7.76" }),
110
- /* @__PURE__ */ c("line", { x1: "16.24", y1: "16.24", x2: "19.07", y2: "19.07" }),
111
- /* @__PURE__ */ c("line", { x1: "2", y1: "12", x2: "6", y2: "12" }),
112
- /* @__PURE__ */ c("line", { x1: "18", y1: "12", x2: "22", y2: "12" }),
113
- /* @__PURE__ */ c("line", { x1: "4.93", y1: "19.07", x2: "7.76", y2: "16.24" }),
114
- /* @__PURE__ */ c("line", { x1: "16.24", y1: "7.76", x2: "19.07", y2: "4.93" })
115
- ] }), P = (n) => /* @__PURE__ */ e(l, { ...n, children: [
116
- /* @__PURE__ */ c("path", { d: "M12 6V2l-4 4 4 4V6c3.31 0 6 2.69 6 6 0 .79-.15 1.55-.42 2.25l1.52 1.52C19.7 14.57 20 13.33 20 12c0-4.42-3.58-8-8-8z" }),
117
- /* @__PURE__ */ c("path", { d: "M12 18c-3.31 0-6-2.69-6-6 0-.79.15-1.55.42-2.25L4.9 8.23C4.3 9.43 4 10.67 4 12c0 4.42 3.58 8 8 8v4l4-4-4-4v4z" })
118
- ] }), B = (n) => /* @__PURE__ */ e(l, { ...n, children: [
119
- /* @__PURE__ */ c("circle", { cx: "12", cy: "19", r: "2" }),
120
- /* @__PURE__ */ c("path", { d: "M12 3v10" })
121
- ] }), W = (n) => /* @__PURE__ */ e(l, { ...n, children: [
122
- /* @__PURE__ */ c("path", { d: "M14 5h8" }),
123
- /* @__PURE__ */ c("path", { d: "M14 10h8" }),
124
- /* @__PURE__ */ c("path", { d: "M14 15h8" }),
125
- /* @__PURE__ */ c("path", { d: "M2 5h8" }),
126
- /* @__PURE__ */ c("path", { d: "M6 5v10l-4 4 4-4" })
127
- ] }), E = (n) => /* @__PURE__ */ e(l, { ...n, children: [
128
- /* @__PURE__ */ c("path", { d: "M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" }),
129
- /* @__PURE__ */ c("line", { x1: "12", y1: "9", x2: "12", y2: "13" }),
130
- /* @__PURE__ */ c("line", { x1: "12", y1: "15", x2: "12.01", y2: "15" })
131
- ] }), N = (n) => /* @__PURE__ */ e(l, { ...n, children: [
132
- /* @__PURE__ */ c("rect", { x: "2", y: "5", width: "20", height: "14", rx: "2" }),
133
- /* @__PURE__ */ c("path", { d: "M7 9v6" }),
134
- /* @__PURE__ */ c("path", { d: "M7 9h3v3H7" }),
135
- /* @__PURE__ */ c("path", { d: "M13 15v-6h3l-3 3 3 3" }),
136
- /* @__PURE__ */ c("path", { d: "M17 9h1v3.5M18 15h-1v-2.5" })
137
- ] }), R = (n) => /* @__PURE__ */ e(l, { ...n, children: [
138
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor" }),
139
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "3", fill: "white" })
140
- ] }), j = (n) => /* @__PURE__ */ e(l, { ...n, children: [
141
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
142
- /* @__PURE__ */ c("line", { x1: "4.93", y1: "4.93", x2: "19.07", y2: "19.07" })
143
- ] }), U = (n) => /* @__PURE__ */ e(l, { ...n, children: [
144
- /* @__PURE__ */ c("path", { d: "M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3" }),
145
- /* @__PURE__ */ c("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
146
- ] }), q = (n) => /* @__PURE__ */ e(l, { ...n, children: [
147
- /* @__PURE__ */ c("path", { d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" }),
148
- /* @__PURE__ */ c("polyline", { points: "10 14 12 16 16 12" })
149
- ] }), G = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }) }), J = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }) }), K = (n) => /* @__PURE__ */ e(l, { ...n, children: [
150
- /* @__PURE__ */ c("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }),
151
- /* @__PURE__ */ c("polyline", { points: "9 12 11 14 15 10" })
152
- ] }), Q = (n) => /* @__PURE__ */ e(l, { ...n, children: [
153
- /* @__PURE__ */ c("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }),
154
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "12" }),
155
- /* @__PURE__ */ c("line", { x1: "12", y1: "16", x2: "12.01", y2: "16" })
156
- ] }), X = (n) => /* @__PURE__ */ e(l, { ...n, children: [
157
- /* @__PURE__ */ c("path", { d: "M19.7 14a6.9 6.9 0 0 0 .3-2V5l-8-3-3.2 1.2" }),
158
- /* @__PURE__ */ c("path", { d: "m2 2 20 20" }),
159
- /* @__PURE__ */ c("path", { d: "M4.7 4.7 4 5v7c0 6 8 10 8 10a20.3 20.3 0 0 0 5.62-4.38" })
160
- ] }), Y = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" }) }), Z = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17" }) }), _ = (n) => /* @__PURE__ */ e(l, { ...n, children: [
161
- /* @__PURE__ */ c("path", { d: "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" }),
162
- /* @__PURE__ */ c("line", { x1: "4", y1: "22", x2: "4", y2: "15" })
163
- ] }), $ = (n) => /* @__PURE__ */ e(l, { ...n, fill: "currentColor", children: [
164
- /* @__PURE__ */ c("path", { d: "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" }),
165
- /* @__PURE__ */ c("line", { x1: "4", y1: "22", x2: "4", y2: "15", stroke: "currentColor" })
166
- ] }), c1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
167
- /* @__PURE__ */ c("circle", { cx: "12", cy: "13", r: "8" }),
168
- /* @__PURE__ */ c("path", { d: "M12 9v4l2 2" }),
169
- /* @__PURE__ */ c("path", { d: "M5 3L2 6" }),
170
- /* @__PURE__ */ c("path", { d: "M22 6l-3-3" }),
171
- /* @__PURE__ */ c("path", { d: "M12 2v2" })
172
- ] }), n1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
173
- /* @__PURE__ */ c("path", { d: "M10 2h4" }),
174
- /* @__PURE__ */ c("path", { d: "M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7" }),
175
- /* @__PURE__ */ c("path", { d: "M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2" }),
176
- /* @__PURE__ */ c("path", { d: "m2 2 20 20" }),
177
- /* @__PURE__ */ c("path", { d: "M12 12v-2" })
178
- ] }), l1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
179
- /* @__PURE__ */ c("path", { d: "M5 12.55a11 11 0 0 1 14.08 0" }),
180
- /* @__PURE__ */ c("path", { d: "M1.42 9a16 16 0 0 1 21.16 0" }),
181
- /* @__PURE__ */ c("path", { d: "M8.53 16.11a6 6 0 0 1 6.95 0" }),
182
- /* @__PURE__ */ c("line", { x1: "12", y1: "20", x2: "12.01", y2: "20" })
183
- ] }), e1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
184
- /* @__PURE__ */ c("line", { x1: "1", y1: "1", x2: "23", y2: "23" }),
185
- /* @__PURE__ */ c("path", { d: "M16.72 11.06A10.94 10.94 0 0 1 19 12.55" }),
186
- /* @__PURE__ */ c("path", { d: "M5 12.55a10.94 10.94 0 0 1 5.17-2.39" }),
187
- /* @__PURE__ */ c("path", { d: "M10.71 5.05A16 16 0 0 1 22.58 9" }),
188
- /* @__PURE__ */ c("path", { d: "M1.42 9a15.91 15.91 0 0 1 4.7-2.88" }),
189
- /* @__PURE__ */ c("path", { d: "M8.53 16.11a6 6 0 0 1 6.95 0" }),
190
- /* @__PURE__ */ c("line", { x1: "12", y1: "20", x2: "12.01", y2: "20" })
191
- ] }), i1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
192
- /* @__PURE__ */ c("path", { d: "M2 20h.01" }),
193
- /* @__PURE__ */ c("path", { d: "M7 20v-4" }),
194
- /* @__PURE__ */ c("path", { d: "M12 20v-8" }),
195
- /* @__PURE__ */ c("path", { d: "M17 20V8" }),
196
- /* @__PURE__ */ c("path", { d: "M22 4v16" })
197
- ] }), t1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
198
- /* @__PURE__ */ c("path", { d: "M2 20h.01" }),
199
- /* @__PURE__ */ c("path", { d: "M7 20v-4" })
200
- ] }), h1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
201
- /* @__PURE__ */ c("rect", { x: "2", y: "7", width: "16", height: "10", rx: "2" }),
202
- /* @__PURE__ */ c("path", { d: "M22 11v2" }),
203
- /* @__PURE__ */ c("rect", { x: "4", y: "9", width: "12", height: "6", fill: "currentColor" })
204
- ] }), o1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
205
- /* @__PURE__ */ c("rect", { x: "2", y: "7", width: "16", height: "10", rx: "2" }),
206
- /* @__PURE__ */ c("path", { d: "M22 11v2" }),
207
- /* @__PURE__ */ c("rect", { x: "4", y: "9", width: "3", height: "6", fill: "currentColor" })
208
- ] }), r1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
209
- /* @__PURE__ */ c("rect", { x: "2", y: "7", width: "16", height: "10", rx: "2" }),
210
- /* @__PURE__ */ c("path", { d: "M22 11v2" }),
211
- /* @__PURE__ */ c("path", { d: "M10 7l-3 5h4l-3 5" })
212
- ] });
213
- export {
214
- A as AlertCircleIcon,
215
- m as AlertOctagonIcon,
216
- V as AlertTriangleIcon,
217
- P as AutorenewIcon,
218
- r1 as BatteryChargingIcon,
219
- h1 as BatteryFullIcon,
220
- o1 as BatteryLowIcon,
221
- L as BlockIcon,
222
- s as CancelIcon,
223
- r as CheckCircleFilledIcon,
224
- o as CheckCircleIcon,
225
- h as CheckIcon,
226
- p as CloseIcon,
227
- q as CloudDoneIcon,
228
- U as CloudOffIcon,
229
- f as DoNotDisturbIcon,
230
- x as DoneAllIcon,
231
- d as DoneIcon,
232
- M as ErrorIcon,
233
- I as ErrorOutlineIcon,
234
- N as FiberNewIcon,
235
- $ as FlagFilledIcon,
236
- _ as FlagIcon,
237
- O as HelpIcon,
238
- k as HelpOutlineIcon,
239
- v as HighlightOffIcon,
240
- F as HourglassEmptyIcon,
241
- D as HourglassIcon,
242
- w as InfoIcon,
243
- H as InfoOutlinedIcon,
244
- T as LoaderIcon,
245
- W as LowPriorityIcon,
246
- E as NewReleasesIcon,
247
- j as OfflineIcon,
248
- R as OnlineIcon,
249
- b as PendingActionsIcon,
250
- S as PendingIcon,
251
- B as PriorityHighIcon,
252
- u as ReportIcon,
253
- z as ReportProblemIcon,
254
- G as SecurityIcon,
255
- Q as ShieldAlertIcon,
256
- K as ShieldCheckIcon,
257
- J as ShieldIcon,
258
- X as ShieldOffIcon,
259
- i1 as SignalIcon,
260
- t1 as SignalLowIcon,
261
- a as TaskAltIcon,
262
- Z as ThumbDownIcon,
263
- Y as ThumbUpIcon,
264
- c1 as TimerIcon,
265
- n1 as TimerOffIcon,
266
- y as VerifiedIcon,
267
- C as WarningAmberIcon,
268
- g as WarningIcon,
269
- l1 as WifiIcon,
270
- e1 as WifiOffIcon
271
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require("react/jsx-runtime");require("react");const n=require("./icons/action.cjs"),o=require("./icons/navigation.cjs"),I=require("./icons/content.cjs"),s=require("./icons/communication.cjs"),c=require("./icons/status.cjs"),i=require("./icons/media.cjs"),r=require("./icons/editor.cjs"),e=require("./icons/misc.cjs"),a=require("./icons/bear.cjs"),t=require("./icons/file.cjs"),C=require("./icons/social.cjs"),h=require("./icons/device.cjs"),l=require("./icons/commerce.cjs"),u=c.CheckIcon,v=o.CloseIcon,d=n.EditIcon,g=n.MoreHorizIcon,q=o.ChevronDownIcon,f=o.ChevronRightIcon,m=o.ChevronLeftIcon,S=o.ChevronsUpIcon,F=o.ChevronsLeftIcon,k=o.ChevronsRightIcon,H=e.XIcon,p=c.InfoIcon,E=c.CheckCircleIcon,B=c.WarningIcon,L=c.ErrorIcon,M=r.QuoteIcon,R=e.CalendarIcon,U=e.ClockIcon,D=t.FolderIcon,O=t.FolderOpenIcon,T=n.StarIcon,b=n.StarBorderIcon,w=n.StarHalfIcon,x=r.FormatColorTextIcon,z=r.HighlightIcon,Q=e.UserIcon,W={...n,...o,...I,...s,...c,...i,...r,...e,...a,...t,...C,...h,...l,Action:n,Navigation:o,Content:I,Communication:s,Status:c,Media:i,Editor:r,Misc:e,Bear:a,File:t,Social:C,Device:h,Commerce:l};exports.BearIcons=W;exports.CalendarIcon=R;exports.CheckCircleIcon=E;exports.CheckIcon=u;exports.ChevronDownIcon=q;exports.ChevronLeftIcon=m;exports.ChevronRightIcon=f;exports.ChevronsLeftIcon=F;exports.ChevronsRightIcon=k;exports.ChevronsUpIcon=S;exports.ClockIcon=U;exports.CloseIcon=v;exports.EditIcon=d;exports.ErrorIcon=L;exports.FolderIcon=D;exports.FolderOpenIcon=O;exports.FormatColorTextIcon=x;exports.HighlightIcon=z;exports.InfoIcon=p;exports.MoreHorizIcon=g;exports.QuoteIcon=M;exports.StarBorderIcon=b;exports.StarHalfIcon=w;exports.StarIcon=T;exports.UserIcon=Q;exports.WarningIcon=B;exports.XIcon=H;
@@ -1,79 +0,0 @@
1
- import "react/jsx-runtime";
2
- import "react";
3
- import * as o from "./icons/action.js";
4
- import { EditIcon as f, StarBorderIcon as l, StarHalfIcon as p, StarIcon as $, MoreHorizIcon as v } from "./icons/action.js";
5
- import * as n from "./icons/navigation.js";
6
- import { CloseIcon as d, ChevronDownIcon as g, ChevronsUpIcon as S, ChevronRightIcon as F, ChevronLeftIcon as k, ChevronsLeftIcon as H, ChevronsRightIcon as u } from "./icons/navigation.js";
7
- import * as c from "./icons/content.js";
8
- import * as r from "./icons/communication.js";
9
- import * as t from "./icons/status.js";
10
- import { CheckIcon as E, InfoIcon as L, ErrorIcon as R, WarningIcon as U, CheckCircleIcon as B } from "./icons/status.js";
11
- import * as s from "./icons/media.js";
12
- import * as e from "./icons/editor.js";
13
- import { QuoteIcon as M, FormatColorTextIcon as x, HighlightIcon as D } from "./icons/editor.js";
14
- import * as I from "./icons/misc.js";
15
- import { XIcon as w, CalendarIcon as z, ClockIcon as O, UserIcon as Q } from "./icons/misc.js";
16
- import * as a from "./icons/bear.js";
17
- import * as i from "./icons/file.js";
18
- import { FolderOpenIcon as T, FolderIcon as W } from "./icons/file.js";
19
- import * as m from "./icons/social.js";
20
- import * as C from "./icons/device.js";
21
- import * as h from "./icons/commerce.js";
22
- const J = E, K = d, P = f, V = v, Y = g, Z = F, _ = k, oo = S, no = H, co = u, ro = w, to = L, so = B, eo = U, Io = R, ao = M, io = z, mo = O, Co = W, ho = T, fo = $, lo = l, po = p, $o = x, vo = D, go = Q, So = {
23
- // Flat access to common icons (shortcuts)
24
- ...o,
25
- ...n,
26
- ...c,
27
- ...r,
28
- ...t,
29
- ...s,
30
- ...e,
31
- ...I,
32
- ...a,
33
- ...i,
34
- ...m,
35
- ...C,
36
- ...h,
37
- Action: o,
38
- Navigation: n,
39
- Content: c,
40
- Communication: r,
41
- Status: t,
42
- Media: s,
43
- Editor: e,
44
- Misc: I,
45
- Bear: a,
46
- File: i,
47
- Social: m,
48
- Device: C,
49
- Commerce: h
50
- };
51
- export {
52
- So as BearIcons,
53
- io as CalendarIcon,
54
- so as CheckCircleIcon,
55
- J as CheckIcon,
56
- Y as ChevronDownIcon,
57
- _ as ChevronLeftIcon,
58
- Z as ChevronRightIcon,
59
- no as ChevronsLeftIcon,
60
- co as ChevronsRightIcon,
61
- oo as ChevronsUpIcon,
62
- mo as ClockIcon,
63
- K as CloseIcon,
64
- P as EditIcon,
65
- Io as ErrorIcon,
66
- Co as FolderIcon,
67
- ho as FolderOpenIcon,
68
- $o as FormatColorTextIcon,
69
- vo as HighlightIcon,
70
- to as InfoIcon,
71
- V as MoreHorizIcon,
72
- ao as QuoteIcon,
73
- lo as StarBorderIcon,
74
- po as StarHalfIcon,
75
- fo as StarIcon,
76
- go as UserIcon,
77
- eo as WarningIcon,
78
- ro as XIcon
79
- };