@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 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const _="(prefers-color-scheme: dark)",T="dark",E="bear-dark",A="class",O="",R=!0,L=!1,I=",",N="0",t="/",S="sm",n="md",o="lg",C="xl",s="default",M="filled",c="pills",D="underline",B="neutral",e="danger",P="primary",U="default",H="primary",r="dark",i="md",G="px",a="%",l="string",F="number",V="horizontal",Y="pointermove",d="pointerup",K="404",u="403",h="500",g="filled",m="half",f="empty",p="bold",y="italic",X="underline",b="strikeThrough",k="formatBlock",J="insertUnorderedList",Z="insertOrderedList",v="removeFormat",W="foreColor",j="hiliteColor",x="createLink",Q="insertHTML",w="justifyLeft",q="justifyCenter",z="justifyRight",$="justifyFull",__="indent",T_="outdent",E_="p",A_="h1",O_="h2",R_="h3",L_="h4",I_="h5",N_="h6",t_="blockquote",S_="pre",n_="divider",o_="headingDropdown",C_="textColor",s_="highlightColor",M_="link",c_="image",D_="signature",B_="alignLeft",e_="alignCenter",P_="alignRight",U_="alignJustify",H_="indent",r_="outdent",i_="clearFormat",G_="more",a_="bold",l_="italic",F_="underline",V_="strikethrough",Y_="bulletList",d_="orderedList",K_="text",u_="highlight",h_="#000000",g_="#fef08a",m_="-50%",f_="start",p_="Select date range",y_="Avatar",X_="circle",b_="info",k_="static",J_="bear-alert-title-",Z_="bear-alert-desc-",v_="AccordionItem must be used within an Accordion",W_="ghost",j_="outlined",x_="standard",Q_="dashed",w_="solid",q_="top",z_="sticky",$_="smooth",_T="auto",TT="button",ET="compact",AT="Today",OT="Last 7 days",RT="Last 30 days",LT="This month",IT="Last month",NT="Clear",tT="Confirm",ST="Cancel",nT="Dismiss",oT="Verified",CT="Try again",sT="Scanning...",MT="Authenticate",cT="Close alert",DT="Close",BT="active",eT="idle",PT="scanning",UT="success",HT="error",rT="fingerprint",iT="Start typing...",GT="rgba(16, 185, 129, 0.2)",aT="AppBar",lT="AppShell",FT="Backdrop",VT="easeOut";exports.ACCORDION_ITEM_CONTEXT_ERROR=v_;exports.ACTIVITY_ICON_BG=GT;exports.ALERT_DESC_ID_PREFIX=Z_;exports.ALERT_TITLE_ID_PREFIX=J_;exports.AVATAR_ALT=y_;exports.AVATAR_VARIANT_CIRCLE=X_;exports.BIOMETRIC_TYPE_FINGERPRINT=rT;exports.BLOCK_BLOCKQUOTE=t_;exports.BLOCK_H1=A_;exports.BLOCK_H2=O_;exports.BLOCK_H3=R_;exports.BLOCK_H4=L_;exports.BLOCK_H5=I_;exports.BLOCK_H6=N_;exports.BLOCK_PARAGRAPH=E_;exports.BLOCK_PRE=S_;exports.BOOLEAN_FALSE=L;exports.BOOLEAN_TRUE=R;exports.BORDER_STYLE_DASHED=Q_;exports.BORDER_STYLE_SOLID=w_;exports.COLOR_BLACK=h_;exports.COLOR_DARK=r;exports.COLOR_DEFAULT=U;exports.COLOR_HIGHLIGHT_YELLOW=g_;exports.COLOR_PRIMARY=H;exports.COLOR_TYPE_HIGHLIGHT=u_;exports.COLOR_TYPE_TEXT=K_;exports.COMMAND_BOLD=p;exports.COMMAND_CREATE_LINK=x;exports.COMMAND_FORE_COLOR=W;exports.COMMAND_FORMAT_BLOCK=k;exports.COMMAND_HILITE_COLOR=j;exports.COMMAND_INDENT=__;exports.COMMAND_INSERT_HTML=Q;exports.COMMAND_INSERT_ORDERED_LIST=Z;exports.COMMAND_INSERT_UNORDERED_LIST=J;exports.COMMAND_ITALIC=y;exports.COMMAND_JUSTIFY_CENTER=q;exports.COMMAND_JUSTIFY_FULL=$;exports.COMMAND_JUSTIFY_LEFT=w;exports.COMMAND_JUSTIFY_RIGHT=z;exports.COMMAND_OUTDENT=T_;exports.COMMAND_REMOVE_FORMAT=v;exports.COMMAND_STRIKE_THROUGH=b;exports.COMMAND_UNDERLINE=X;exports.COMPONENT_NAME_APP_BAR=aT;exports.COMPONENT_NAME_APP_SHELL=lT;exports.COMPONENT_NAME_BACKDROP=FT;exports.DATE_PAD_CHAR=N;exports.DATE_PART_SEPARATOR=t;exports.DENSITY_COMPACT=ET;exports.DIRECTION_HORIZONTAL=V;exports.DOCUMENT_CLASS_ATTRIBUTE=A;exports.DOCUMENT_CLASS_BEAR_DARK=E;exports.DOCUMENT_CLASS_DARK=T;exports.EASING_OUT=VT;exports.EMPTY_STRING=O;exports.EVENT_POINTER_MOVE=Y;exports.EVENT_POINTER_UP=d;exports.INFO=b_;exports.LABEL_AUTHENTICATE=MT;exports.LABEL_CANCEL=ST;exports.LABEL_CLEAR=NT;exports.LABEL_CLOSE=DT;exports.LABEL_CLOSE_ALERT=cT;exports.LABEL_CONFIRM=tT;exports.LABEL_DISMISS=nT;exports.LABEL_SCANNING=sT;exports.LABEL_TRY_AGAIN=CT;exports.LABEL_VERIFIED=oT;exports.PERCENT_UNIT=a;exports.PICKING_START=f_;exports.PLACEHOLDER_SELECT_DATE_RANGE=p_;exports.PLACEHOLDER_START_TYPING=iT;exports.POSITION_STICKY=z_;exports.POSITION_TOP=q_;exports.PREFERS_COLOR_SCHEME_DARK=_;exports.PRESET_LABEL_LAST_MONTH=IT;exports.PRESET_LABEL_LAST_SEVEN=OT;exports.PRESET_LABEL_LAST_THIRTY=RT;exports.PRESET_LABEL_THIS_MONTH=LT;exports.PRESET_LABEL_TODAY=AT;exports.QUERY_BUTTON=TT;exports.RADIUS_MD=i;exports.RATING_STAR_STATE_EMPTY=f;exports.RATING_STAR_STATE_FILLED=g;exports.RATING_STAR_STATE_HALF=m;exports.ROOT_MARGIN_BOTTOM_HALF=m_;exports.SCROLL_BEHAVIOR_AUTO=_T;exports.SCROLL_BEHAVIOR_SMOOTH=$_;exports.SHOW_LABELS_ACTIVE=BT;exports.SIZE_LG=o;exports.SIZE_MD=n;exports.SIZE_SM=S;exports.SIZE_XL=C;exports.STATIC=k_;exports.STATUS_ERROR=HT;exports.STATUS_FORBIDDEN=u;exports.STATUS_IDLE=eT;exports.STATUS_NOT_FOUND=K;exports.STATUS_SCANNING=PT;exports.STATUS_SERVER_ERROR=h;exports.STATUS_SUCCESS=UT;exports.THOUSANDS_SEPARATOR=I;exports.TOOLBAR_ITEM_ALIGN_CENTER=e_;exports.TOOLBAR_ITEM_ALIGN_JUSTIFY=U_;exports.TOOLBAR_ITEM_ALIGN_LEFT=B_;exports.TOOLBAR_ITEM_ALIGN_RIGHT=P_;exports.TOOLBAR_ITEM_BOLD=a_;exports.TOOLBAR_ITEM_BULLET_LIST=Y_;exports.TOOLBAR_ITEM_CLEAR_FORMAT=i_;exports.TOOLBAR_ITEM_DIVIDER=n_;exports.TOOLBAR_ITEM_HEADING_DROPDOWN=o_;exports.TOOLBAR_ITEM_HIGHLIGHT_COLOR=s_;exports.TOOLBAR_ITEM_IMAGE=c_;exports.TOOLBAR_ITEM_INDENT=H_;exports.TOOLBAR_ITEM_ITALIC=l_;exports.TOOLBAR_ITEM_LINK=M_;exports.TOOLBAR_ITEM_MORE=G_;exports.TOOLBAR_ITEM_ORDERED_LIST=d_;exports.TOOLBAR_ITEM_OUTDENT=r_;exports.TOOLBAR_ITEM_SIGNATURE=D_;exports.TOOLBAR_ITEM_STRIKETHROUGH=V_;exports.TOOLBAR_ITEM_TEXT_COLOR=C_;exports.TOOLBAR_ITEM_UNDERLINE=F_;exports.TYPE_NUMBER=F;exports.TYPE_STRING=l;exports.UNIT_PX=G;exports.VARIANT_DANGER=e;exports.VARIANT_DEFAULT=s;exports.VARIANT_FILLED=M;exports.VARIANT_GHOST=W_;exports.VARIANT_NEUTRAL=B;exports.VARIANT_OUTLINED=j_;exports.VARIANT_PILLS=c;exports.VARIANT_PRIMARY=P;exports.VARIANT_STANDARD=x_;exports.VARIANT_UNDERLINE=D;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const _="(prefers-color-scheme: dark)",E="dark",T="bear-dark",A="class",O="",R=!0,L=!1,N=",",I="0",M="/",t="sm",C="md",S="lg",o="xl",n="default",s="filled",c="pills",D="underline",P="neutral",B="danger",e="primary",H="pulse",r="default",U="primary",i="dark",G="md",a="px",l="%",Y="string",F="number",d="horizontal",V="pointermove",K="pointerup",h="404",g="403",p="500",u="filled",m="half",f="empty",y="bold",W="italic",X="underline",b="strikeThrough",k="formatBlock",J="insertUnorderedList",Z="insertOrderedList",v="removeFormat",j="foreColor",w="hiliteColor",x="createLink",Q="insertHTML",q="justifyLeft",z="justifyCenter",$="justifyRight",__="justifyFull",E_="indent",T_="outdent",A_="p",O_="h1",R_="h2",L_="h3",N_="h4",I_="h5",M_="h6",t_="blockquote",C_="pre",S_="divider",o_="headingDropdown",n_="textColor",s_="highlightColor",c_="link",D_="image",P_="signature",B_="alignLeft",e_="alignCenter",H_="alignRight",r_="alignJustify",U_="indent",i_="outdent",G_="clearFormat",a_="more",l_="bold",Y_="italic",F_="underline",d_="strikethrough",V_="bulletList",K_="orderedList",h_="text",g_="highlight",p_="#000000",u_="#fef08a",m_="-50%",f_="start",y_="Select date range",W_="Avatar",X_="circle",b_="info",k_="static",J_="bear-alert-title-",Z_="bear-alert-desc-",v_="AccordionItem must be used within an Accordion",j_="ghost",w_="outlined",x_="standard",Q_="dashed",q_="solid",z_="top",$_="right",_E="sticky",EE="Drawer",TE="Close drawer",AE="smooth",OE="auto",RE="button",LE="compact",NE="Today",IE="Last 7 days",ME="Last 30 days",tE="This month",CE="Last month",SE="Clear",oE="Confirm",nE="Cancel",sE="Dismiss",cE="Verified",DE="Try again",PE="Scanning...",BE="Authenticate",eE="Close alert",HE="Close",rE="Send",UE="Stop",iE="Attach files",GE="Copy",aE="Retry",lE="Approve",YE="Reject",FE="Thinking",dE="Open",VE="Good response",KE="Bad response",hE="Light",gE="Dark",pE="System",uE="New messages",mE="(prefers-reduced-motion: reduce)",fE="bear-reduced-motion",yE="light",WE="dark",XE="system",bE="temporary",kE="permanent",JE="Chat",ZE="ChatBubble",vE="FloatingChat",jE="PromptComposer",wE="StreamingMessage",xE="ThinkingBlock",QE="PromptSuggestions",qE="MessageActions",zE="ChatError",$E="ToolCall",_T="CitationList",ET="ApprovalCard",TT="ModelSelect",AT="ContextMeter",OT="ArtifactCard",RT="ThemeSwitcher",LT="empty",NT="search",IT="inbox",MT="error",tT="active",CT="idle",ST="scanning",oT="success",nT="error",sT="fingerprint",cT="Start typing...",DT="rgba(16, 185, 129, 0.2)",PT="AppBar",BT="AppShell",eT="Backdrop",HT="easeOut";exports.ACCORDION_ITEM_CONTEXT_ERROR=v_;exports.ACTIVITY_ICON_BG=DT;exports.ALERT_DESC_ID_PREFIX=Z_;exports.ALERT_TITLE_ID_PREFIX=J_;exports.ANIMATION_PULSE=H;exports.AVATAR_ALT=W_;exports.AVATAR_VARIANT_CIRCLE=X_;exports.BIOMETRIC_TYPE_FINGERPRINT=sT;exports.BLOCK_BLOCKQUOTE=t_;exports.BLOCK_H1=O_;exports.BLOCK_H2=R_;exports.BLOCK_H3=L_;exports.BLOCK_H4=N_;exports.BLOCK_H5=I_;exports.BLOCK_H6=M_;exports.BLOCK_PARAGRAPH=A_;exports.BLOCK_PRE=C_;exports.BOOLEAN_FALSE=L;exports.BOOLEAN_TRUE=R;exports.BORDER_STYLE_DASHED=Q_;exports.BORDER_STYLE_SOLID=q_;exports.COLOR_BLACK=p_;exports.COLOR_DARK=i;exports.COLOR_DEFAULT=r;exports.COLOR_HIGHLIGHT_YELLOW=u_;exports.COLOR_PRIMARY=U;exports.COLOR_SCHEME_DARK=WE;exports.COLOR_SCHEME_LIGHT=yE;exports.COLOR_SCHEME_SYSTEM=XE;exports.COLOR_TYPE_HIGHLIGHT=g_;exports.COLOR_TYPE_TEXT=h_;exports.COMMAND_BOLD=y;exports.COMMAND_CREATE_LINK=x;exports.COMMAND_FORE_COLOR=j;exports.COMMAND_FORMAT_BLOCK=k;exports.COMMAND_HILITE_COLOR=w;exports.COMMAND_INDENT=E_;exports.COMMAND_INSERT_HTML=Q;exports.COMMAND_INSERT_ORDERED_LIST=Z;exports.COMMAND_INSERT_UNORDERED_LIST=J;exports.COMMAND_ITALIC=W;exports.COMMAND_JUSTIFY_CENTER=z;exports.COMMAND_JUSTIFY_FULL=__;exports.COMMAND_JUSTIFY_LEFT=q;exports.COMMAND_JUSTIFY_RIGHT=$;exports.COMMAND_OUTDENT=T_;exports.COMMAND_REMOVE_FORMAT=v;exports.COMMAND_STRIKE_THROUGH=b;exports.COMMAND_UNDERLINE=X;exports.COMPONENT_NAME_APPROVAL_CARD=ET;exports.COMPONENT_NAME_APP_BAR=PT;exports.COMPONENT_NAME_APP_SHELL=BT;exports.COMPONENT_NAME_ARTIFACT_CARD=OT;exports.COMPONENT_NAME_BACKDROP=eT;exports.COMPONENT_NAME_CHAT=JE;exports.COMPONENT_NAME_CHAT_BUBBLE=ZE;exports.COMPONENT_NAME_CHAT_ERROR=zE;exports.COMPONENT_NAME_CITATION_LIST=_T;exports.COMPONENT_NAME_CONTEXT_METER=AT;exports.COMPONENT_NAME_DRAWER=EE;exports.COMPONENT_NAME_FLOATING_CHAT=vE;exports.COMPONENT_NAME_MESSAGE_ACTIONS=qE;exports.COMPONENT_NAME_MODEL_SELECT=TT;exports.COMPONENT_NAME_PROMPT_COMPOSER=jE;exports.COMPONENT_NAME_PROMPT_SUGGESTIONS=QE;exports.COMPONENT_NAME_STREAMING_MESSAGE=wE;exports.COMPONENT_NAME_THEME_SWITCHER=RT;exports.COMPONENT_NAME_THINKING_BLOCK=xE;exports.COMPONENT_NAME_TOOL_CALL=$E;exports.DATE_PAD_CHAR=I;exports.DATE_PART_SEPARATOR=M;exports.DENSITY_COMPACT=LE;exports.DIRECTION_HORIZONTAL=d;exports.DOCUMENT_CLASS_ATTRIBUTE=A;exports.DOCUMENT_CLASS_BEAR_DARK=T;exports.DOCUMENT_CLASS_DARK=E;exports.DOCUMENT_CLASS_REDUCED_MOTION=fE;exports.DRAWER_VARIANT_PERMANENT=kE;exports.DRAWER_VARIANT_TEMPORARY=bE;exports.EASING_OUT=HT;exports.EMPTY_STATE_PRESET_EMPTY=LT;exports.EMPTY_STATE_PRESET_ERROR=MT;exports.EMPTY_STATE_PRESET_INBOX=IT;exports.EMPTY_STATE_PRESET_SEARCH=NT;exports.EMPTY_STRING=O;exports.EVENT_POINTER_MOVE=V;exports.EVENT_POINTER_UP=K;exports.INFO=b_;exports.LABEL_APPROVE=lE;exports.LABEL_ATTACH=iE;exports.LABEL_AUTHENTICATE=BE;exports.LABEL_BAD_RESPONSE=KE;exports.LABEL_CANCEL=nE;exports.LABEL_CLEAR=SE;exports.LABEL_CLOSE=HE;exports.LABEL_CLOSE_ALERT=eE;exports.LABEL_CLOSE_DRAWER=TE;exports.LABEL_CONFIRM=oE;exports.LABEL_COPY=GE;exports.LABEL_DISMISS=sE;exports.LABEL_GOOD_RESPONSE=VE;exports.LABEL_NEW_MESSAGES=uE;exports.LABEL_OPEN_ARTIFACT=dE;exports.LABEL_REJECT=YE;exports.LABEL_RETRY=aE;exports.LABEL_SCANNING=PE;exports.LABEL_SEND=rE;exports.LABEL_STOP=UE;exports.LABEL_THEME_DARK=gE;exports.LABEL_THEME_LIGHT=hE;exports.LABEL_THEME_SYSTEM=pE;exports.LABEL_THINKING=FE;exports.LABEL_TRY_AGAIN=DE;exports.LABEL_VERIFIED=cE;exports.PERCENT_UNIT=l;exports.PICKING_START=f_;exports.PLACEHOLDER_SELECT_DATE_RANGE=y_;exports.PLACEHOLDER_START_TYPING=cT;exports.POSITION_RIGHT=$_;exports.POSITION_STICKY=_E;exports.POSITION_TOP=z_;exports.PREFERS_COLOR_SCHEME_DARK=_;exports.PREFERS_REDUCED_MOTION=mE;exports.PRESET_LABEL_LAST_MONTH=CE;exports.PRESET_LABEL_LAST_SEVEN=IE;exports.PRESET_LABEL_LAST_THIRTY=ME;exports.PRESET_LABEL_THIS_MONTH=tE;exports.PRESET_LABEL_TODAY=NE;exports.QUERY_BUTTON=RE;exports.RADIUS_MD=G;exports.RATING_STAR_STATE_EMPTY=f;exports.RATING_STAR_STATE_FILLED=u;exports.RATING_STAR_STATE_HALF=m;exports.ROOT_MARGIN_BOTTOM_HALF=m_;exports.SCROLL_BEHAVIOR_AUTO=OE;exports.SCROLL_BEHAVIOR_SMOOTH=AE;exports.SHOW_LABELS_ACTIVE=tT;exports.SIZE_LG=S;exports.SIZE_MD=C;exports.SIZE_SM=t;exports.SIZE_XL=o;exports.STATIC=k_;exports.STATUS_ERROR=nT;exports.STATUS_FORBIDDEN=g;exports.STATUS_IDLE=CT;exports.STATUS_NOT_FOUND=h;exports.STATUS_SCANNING=ST;exports.STATUS_SERVER_ERROR=p;exports.STATUS_SUCCESS=oT;exports.THOUSANDS_SEPARATOR=N;exports.TOOLBAR_ITEM_ALIGN_CENTER=e_;exports.TOOLBAR_ITEM_ALIGN_JUSTIFY=r_;exports.TOOLBAR_ITEM_ALIGN_LEFT=B_;exports.TOOLBAR_ITEM_ALIGN_RIGHT=H_;exports.TOOLBAR_ITEM_BOLD=l_;exports.TOOLBAR_ITEM_BULLET_LIST=V_;exports.TOOLBAR_ITEM_CLEAR_FORMAT=G_;exports.TOOLBAR_ITEM_DIVIDER=S_;exports.TOOLBAR_ITEM_HEADING_DROPDOWN=o_;exports.TOOLBAR_ITEM_HIGHLIGHT_COLOR=s_;exports.TOOLBAR_ITEM_IMAGE=D_;exports.TOOLBAR_ITEM_INDENT=U_;exports.TOOLBAR_ITEM_ITALIC=Y_;exports.TOOLBAR_ITEM_LINK=c_;exports.TOOLBAR_ITEM_MORE=a_;exports.TOOLBAR_ITEM_ORDERED_LIST=K_;exports.TOOLBAR_ITEM_OUTDENT=i_;exports.TOOLBAR_ITEM_SIGNATURE=P_;exports.TOOLBAR_ITEM_STRIKETHROUGH=d_;exports.TOOLBAR_ITEM_TEXT_COLOR=n_;exports.TOOLBAR_ITEM_UNDERLINE=F_;exports.TYPE_NUMBER=F;exports.TYPE_STRING=Y;exports.UNIT_PX=a;exports.VARIANT_DANGER=B;exports.VARIANT_DEFAULT=n;exports.VARIANT_FILLED=s;exports.VARIANT_GHOST=j_;exports.VARIANT_NEUTRAL=P;exports.VARIANT_OUTLINED=w_;exports.VARIANT_PILLS=c;exports.VARIANT_PRIMARY=e;exports.VARIANT_STANDARD=x_;exports.VARIANT_UNDERLINE=D;
@@ -23,6 +23,9 @@ export declare const VARIANT_UNDERLINE: "underline";
23
23
  export declare const VARIANT_NEUTRAL: "neutral";
24
24
  export declare const VARIANT_DANGER: "danger";
25
25
  export declare const VARIANT_PRIMARY: "primary";
26
+ export declare const ANIMATION_PULSE: "pulse";
27
+ export declare const ANIMATION_WAVE: "wave";
28
+ export declare const ANIMATION_NONE: "none";
26
29
  export declare const COLOR_DEFAULT: "default";
27
30
  export declare const COLOR_PRIMARY = "primary";
28
31
  export declare const COLOR_DARK = "dark";
@@ -126,7 +129,11 @@ export declare const BORDER_STYLE_DASHED = "dashed";
126
129
  export declare const BORDER_STYLE_SOLID = "solid";
127
130
  export declare const POSITION_TOP = "top";
128
131
  export declare const POSITION_BOTTOM = "bottom";
132
+ export declare const POSITION_LEFT = "left";
133
+ export declare const POSITION_RIGHT = "right";
129
134
  export declare const POSITION_STICKY = "sticky";
135
+ export declare const COMPONENT_NAME_DRAWER = "Drawer";
136
+ export declare const LABEL_CLOSE_DRAWER = "Close drawer";
130
137
  export declare const SCROLL_BEHAVIOR_SMOOTH = "smooth";
131
138
  export declare const SCROLL_BEHAVIOR_AUTO = "auto";
132
139
  export declare const QUERY_BUTTON = "button";
@@ -146,6 +153,49 @@ export declare const LABEL_SCANNING = "Scanning...";
146
153
  export declare const LABEL_AUTHENTICATE = "Authenticate";
147
154
  export declare const LABEL_CLOSE_ALERT = "Close alert";
148
155
  export declare const LABEL_CLOSE = "Close";
156
+ export declare const LABEL_SEND = "Send";
157
+ export declare const LABEL_STOP = "Stop";
158
+ export declare const LABEL_ATTACH = "Attach files";
159
+ export declare const LABEL_COPY = "Copy";
160
+ export declare const LABEL_RETRY = "Retry";
161
+ export declare const LABEL_APPROVE = "Approve";
162
+ export declare const LABEL_REJECT = "Reject";
163
+ export declare const LABEL_THINKING = "Thinking";
164
+ export declare const LABEL_OPEN_ARTIFACT = "Open";
165
+ export declare const LABEL_GOOD_RESPONSE = "Good response";
166
+ export declare const LABEL_BAD_RESPONSE = "Bad response";
167
+ export declare const LABEL_THEME_LIGHT = "Light";
168
+ export declare const LABEL_THEME_DARK = "Dark";
169
+ export declare const LABEL_THEME_SYSTEM = "System";
170
+ export declare const LABEL_NEW_MESSAGES = "New messages";
171
+ export declare const PREFERS_REDUCED_MOTION = "(prefers-reduced-motion: reduce)";
172
+ export declare const DOCUMENT_CLASS_REDUCED_MOTION = "bear-reduced-motion";
173
+ export declare const COLOR_SCHEME_LIGHT: "light";
174
+ export declare const COLOR_SCHEME_DARK: "dark";
175
+ export declare const COLOR_SCHEME_SYSTEM: "system";
176
+ export declare const DRAWER_VARIANT_TEMPORARY: "temporary";
177
+ export declare const DRAWER_VARIANT_PERSISTENT: "persistent";
178
+ export declare const DRAWER_VARIANT_PERMANENT: "permanent";
179
+ export declare const COMPONENT_NAME_CHAT = "Chat";
180
+ export declare const COMPONENT_NAME_CHAT_BUBBLE = "ChatBubble";
181
+ export declare const COMPONENT_NAME_FLOATING_CHAT = "FloatingChat";
182
+ export declare const COMPONENT_NAME_PROMPT_COMPOSER = "PromptComposer";
183
+ export declare const COMPONENT_NAME_STREAMING_MESSAGE = "StreamingMessage";
184
+ export declare const COMPONENT_NAME_THINKING_BLOCK = "ThinkingBlock";
185
+ export declare const COMPONENT_NAME_PROMPT_SUGGESTIONS = "PromptSuggestions";
186
+ export declare const COMPONENT_NAME_MESSAGE_ACTIONS = "MessageActions";
187
+ export declare const COMPONENT_NAME_CHAT_ERROR = "ChatError";
188
+ export declare const COMPONENT_NAME_TOOL_CALL = "ToolCall";
189
+ export declare const COMPONENT_NAME_CITATION_LIST = "CitationList";
190
+ export declare const COMPONENT_NAME_APPROVAL_CARD = "ApprovalCard";
191
+ export declare const COMPONENT_NAME_MODEL_SELECT = "ModelSelect";
192
+ export declare const COMPONENT_NAME_CONTEXT_METER = "ContextMeter";
193
+ export declare const COMPONENT_NAME_ARTIFACT_CARD = "ArtifactCard";
194
+ export declare const COMPONENT_NAME_THEME_SWITCHER = "ThemeSwitcher";
195
+ export declare const EMPTY_STATE_PRESET_EMPTY: "empty";
196
+ export declare const EMPTY_STATE_PRESET_SEARCH: "search";
197
+ export declare const EMPTY_STATE_PRESET_INBOX: "inbox";
198
+ export declare const EMPTY_STATE_PRESET_ERROR: "error";
149
199
  export declare const SHOW_LABELS_ACTIVE: "active";
150
200
  export declare const STATUS_IDLE: "idle";
151
201
  export declare const STATUS_SCANNING: "scanning";
@@ -1,141 +1,187 @@
1
- const _ = "(prefers-color-scheme: dark)", t = "dark", T = "bear-dark", A = "class", E = "", n = !0, o = !1, s = ",", O = "0", R = "/", L = "sm", c = "md", I = "lg", N = "xl", C = "default", S = "filled", e = "pills", M = "underline", D = "neutral", r = "danger", i = "primary", B = "default", a = "primary", l = "dark", P = "md", d = "px", U = "%", H = "string", G = "number", h = "horizontal", F = "pointermove", u = "pointerup", g = "404", V = "403", Y = "500", m = "filled", K = "half", f = "empty", p = "bold", y = "italic", k = "underline", b = "strikeThrough", X = "formatBlock", J = "insertUnorderedList", v = "insertOrderedList", x = "removeFormat", Z = "foreColor", j = "hiliteColor", W = "createLink", w = "insertHTML", Q = "justifyLeft", q = "justifyCenter", z = "justifyRight", $ = "justifyFull", __ = "indent", t_ = "outdent", T_ = "p", A_ = "h1", E_ = "h2", n_ = "h3", o_ = "h4", s_ = "h5", O_ = "h6", R_ = "blockquote", L_ = "pre", c_ = "divider", I_ = "headingDropdown", N_ = "textColor", C_ = "highlightColor", S_ = "link", e_ = "image", M_ = "signature", D_ = "alignLeft", r_ = "alignCenter", i_ = "alignRight", B_ = "alignJustify", a_ = "indent", l_ = "outdent", P_ = "clearFormat", d_ = "more", U_ = "bold", H_ = "italic", G_ = "underline", h_ = "strikethrough", F_ = "bulletList", u_ = "orderedList", g_ = "text", V_ = "highlight", Y_ = "#000000", m_ = "#fef08a", K_ = "-50%", f_ = "start", p_ = "Select date range", y_ = "Avatar", k_ = "circle", b_ = "info", X_ = "static", J_ = "bear-alert-title-", v_ = "bear-alert-desc-", x_ = "AccordionItem must be used within an Accordion", Z_ = "ghost", j_ = "outlined", W_ = "standard", w_ = "dashed", Q_ = "solid", q_ = "top", z_ = "sticky", $_ = "smooth", _t = "auto", tt = "button", Tt = "compact", At = "Today", Et = "Last 7 days", nt = "Last 30 days", ot = "This month", st = "Last month", Ot = "Clear", Rt = "Confirm", Lt = "Cancel", ct = "Dismiss", It = "Verified", Nt = "Try again", Ct = "Scanning...", St = "Authenticate", et = "Close alert", Mt = "Close", Dt = "active", rt = "idle", it = "scanning", Bt = "success", at = "error", lt = "fingerprint", Pt = "Start typing...", dt = "rgba(16, 185, 129, 0.2)", Ut = "AppBar", Ht = "AppShell", Gt = "Backdrop", ht = "easeOut";
1
+ const _ = "(prefers-color-scheme: dark)", E = "dark", T = "bear-dark", t = "class", A = "", o = !0, n = !1, O = ",", s = "0", c = "/", R = "sm", L = "md", N = "lg", I = "xl", C = "default", M = "filled", S = "pills", e = "underline", r = "neutral", D = "danger", i = "primary", B = "pulse", P = "default", a = "primary", l = "dark", H = "md", d = "px", U = "%", G = "string", h = "number", p = "horizontal", g = "pointermove", m = "pointerup", u = "404", F = "403", Y = "500", V = "filled", K = "half", f = "empty", y = "bold", k = "italic", b = "underline", W = "strikeThrough", X = "formatBlock", v = "insertUnorderedList", x = "insertOrderedList", J = "removeFormat", w = "foreColor", j = "hiliteColor", Z = "createLink", Q = "insertHTML", q = "justifyLeft", z = "justifyCenter", $ = "justifyRight", __ = "justifyFull", E_ = "indent", T_ = "outdent", t_ = "p", A_ = "h1", o_ = "h2", n_ = "h3", O_ = "h4", s_ = "h5", c_ = "h6", R_ = "blockquote", L_ = "pre", N_ = "divider", I_ = "headingDropdown", C_ = "textColor", M_ = "highlightColor", S_ = "link", e_ = "image", r_ = "signature", D_ = "alignLeft", i_ = "alignCenter", B_ = "alignRight", P_ = "alignJustify", a_ = "indent", l_ = "outdent", H_ = "clearFormat", d_ = "more", U_ = "bold", G_ = "italic", h_ = "underline", p_ = "strikethrough", g_ = "bulletList", m_ = "orderedList", u_ = "text", F_ = "highlight", Y_ = "#000000", V_ = "#fef08a", K_ = "-50%", f_ = "start", y_ = "Select date range", k_ = "Avatar", b_ = "circle", W_ = "info", X_ = "static", v_ = "bear-alert-title-", x_ = "bear-alert-desc-", J_ = "AccordionItem must be used within an Accordion", w_ = "ghost", j_ = "outlined", Z_ = "standard", Q_ = "dashed", q_ = "solid", z_ = "top", $_ = "right", _E = "sticky", EE = "Drawer", TE = "Close drawer", tE = "smooth", AE = "auto", oE = "button", nE = "compact", OE = "Today", sE = "Last 7 days", cE = "Last 30 days", RE = "This month", LE = "Last month", NE = "Clear", IE = "Confirm", CE = "Cancel", ME = "Dismiss", SE = "Verified", eE = "Try again", rE = "Scanning...", DE = "Authenticate", iE = "Close alert", BE = "Close", PE = "Send", aE = "Stop", lE = "Attach files", HE = "Copy", dE = "Retry", UE = "Approve", GE = "Reject", hE = "Thinking", pE = "Open", gE = "Good response", mE = "Bad response", uE = "Light", FE = "Dark", YE = "System", VE = "New messages", KE = "(prefers-reduced-motion: reduce)", fE = "bear-reduced-motion", yE = "light", kE = "dark", bE = "system", WE = "temporary", XE = "permanent", vE = "Chat", xE = "ChatBubble", JE = "FloatingChat", wE = "PromptComposer", jE = "StreamingMessage", ZE = "ThinkingBlock", QE = "PromptSuggestions", qE = "MessageActions", zE = "ChatError", $E = "ToolCall", _T = "CitationList", ET = "ApprovalCard", TT = "ModelSelect", tT = "ContextMeter", AT = "ArtifactCard", oT = "ThemeSwitcher", nT = "empty", OT = "search", sT = "inbox", cT = "error", RT = "active", LT = "idle", NT = "scanning", IT = "success", CT = "error", MT = "fingerprint", ST = "Start typing...", eT = "rgba(16, 185, 129, 0.2)", rT = "AppBar", DT = "AppShell", iT = "Backdrop", BT = "easeOut";
2
2
  export {
3
- x_ as ACCORDION_ITEM_CONTEXT_ERROR,
4
- dt as ACTIVITY_ICON_BG,
5
- v_ as ALERT_DESC_ID_PREFIX,
6
- J_ as ALERT_TITLE_ID_PREFIX,
7
- y_ as AVATAR_ALT,
8
- k_ as AVATAR_VARIANT_CIRCLE,
9
- lt as BIOMETRIC_TYPE_FINGERPRINT,
3
+ J_ as ACCORDION_ITEM_CONTEXT_ERROR,
4
+ eT as ACTIVITY_ICON_BG,
5
+ x_ as ALERT_DESC_ID_PREFIX,
6
+ v_ as ALERT_TITLE_ID_PREFIX,
7
+ B as ANIMATION_PULSE,
8
+ k_ as AVATAR_ALT,
9
+ b_ as AVATAR_VARIANT_CIRCLE,
10
+ MT as BIOMETRIC_TYPE_FINGERPRINT,
10
11
  R_ as BLOCK_BLOCKQUOTE,
11
12
  A_ as BLOCK_H1,
12
- E_ as BLOCK_H2,
13
+ o_ as BLOCK_H2,
13
14
  n_ as BLOCK_H3,
14
- o_ as BLOCK_H4,
15
+ O_ as BLOCK_H4,
15
16
  s_ as BLOCK_H5,
16
- O_ as BLOCK_H6,
17
- T_ as BLOCK_PARAGRAPH,
17
+ c_ as BLOCK_H6,
18
+ t_ as BLOCK_PARAGRAPH,
18
19
  L_ as BLOCK_PRE,
19
- o as BOOLEAN_FALSE,
20
- n as BOOLEAN_TRUE,
21
- w_ as BORDER_STYLE_DASHED,
22
- Q_ as BORDER_STYLE_SOLID,
20
+ n as BOOLEAN_FALSE,
21
+ o as BOOLEAN_TRUE,
22
+ Q_ as BORDER_STYLE_DASHED,
23
+ q_ as BORDER_STYLE_SOLID,
23
24
  Y_ as COLOR_BLACK,
24
25
  l as COLOR_DARK,
25
- B as COLOR_DEFAULT,
26
- m_ as COLOR_HIGHLIGHT_YELLOW,
26
+ P as COLOR_DEFAULT,
27
+ V_ as COLOR_HIGHLIGHT_YELLOW,
27
28
  a as COLOR_PRIMARY,
28
- V_ as COLOR_TYPE_HIGHLIGHT,
29
- g_ as COLOR_TYPE_TEXT,
30
- p as COMMAND_BOLD,
31
- W as COMMAND_CREATE_LINK,
32
- Z as COMMAND_FORE_COLOR,
29
+ kE as COLOR_SCHEME_DARK,
30
+ yE as COLOR_SCHEME_LIGHT,
31
+ bE as COLOR_SCHEME_SYSTEM,
32
+ F_ as COLOR_TYPE_HIGHLIGHT,
33
+ u_ as COLOR_TYPE_TEXT,
34
+ y as COMMAND_BOLD,
35
+ Z as COMMAND_CREATE_LINK,
36
+ w as COMMAND_FORE_COLOR,
33
37
  X as COMMAND_FORMAT_BLOCK,
34
38
  j as COMMAND_HILITE_COLOR,
35
- __ as COMMAND_INDENT,
36
- w as COMMAND_INSERT_HTML,
37
- v as COMMAND_INSERT_ORDERED_LIST,
38
- J as COMMAND_INSERT_UNORDERED_LIST,
39
- y as COMMAND_ITALIC,
40
- q as COMMAND_JUSTIFY_CENTER,
41
- $ as COMMAND_JUSTIFY_FULL,
42
- Q as COMMAND_JUSTIFY_LEFT,
43
- z as COMMAND_JUSTIFY_RIGHT,
44
- t_ as COMMAND_OUTDENT,
45
- x as COMMAND_REMOVE_FORMAT,
46
- b as COMMAND_STRIKE_THROUGH,
47
- k as COMMAND_UNDERLINE,
48
- Ut as COMPONENT_NAME_APP_BAR,
49
- Ht as COMPONENT_NAME_APP_SHELL,
50
- Gt as COMPONENT_NAME_BACKDROP,
51
- O as DATE_PAD_CHAR,
52
- R as DATE_PART_SEPARATOR,
53
- Tt as DENSITY_COMPACT,
54
- h as DIRECTION_HORIZONTAL,
55
- A as DOCUMENT_CLASS_ATTRIBUTE,
39
+ E_ as COMMAND_INDENT,
40
+ Q as COMMAND_INSERT_HTML,
41
+ x as COMMAND_INSERT_ORDERED_LIST,
42
+ v as COMMAND_INSERT_UNORDERED_LIST,
43
+ k as COMMAND_ITALIC,
44
+ z as COMMAND_JUSTIFY_CENTER,
45
+ __ as COMMAND_JUSTIFY_FULL,
46
+ q as COMMAND_JUSTIFY_LEFT,
47
+ $ as COMMAND_JUSTIFY_RIGHT,
48
+ T_ as COMMAND_OUTDENT,
49
+ J as COMMAND_REMOVE_FORMAT,
50
+ W as COMMAND_STRIKE_THROUGH,
51
+ b as COMMAND_UNDERLINE,
52
+ ET as COMPONENT_NAME_APPROVAL_CARD,
53
+ rT as COMPONENT_NAME_APP_BAR,
54
+ DT as COMPONENT_NAME_APP_SHELL,
55
+ AT as COMPONENT_NAME_ARTIFACT_CARD,
56
+ iT as COMPONENT_NAME_BACKDROP,
57
+ vE as COMPONENT_NAME_CHAT,
58
+ xE as COMPONENT_NAME_CHAT_BUBBLE,
59
+ zE as COMPONENT_NAME_CHAT_ERROR,
60
+ _T as COMPONENT_NAME_CITATION_LIST,
61
+ tT as COMPONENT_NAME_CONTEXT_METER,
62
+ EE as COMPONENT_NAME_DRAWER,
63
+ JE as COMPONENT_NAME_FLOATING_CHAT,
64
+ qE as COMPONENT_NAME_MESSAGE_ACTIONS,
65
+ TT as COMPONENT_NAME_MODEL_SELECT,
66
+ wE as COMPONENT_NAME_PROMPT_COMPOSER,
67
+ QE as COMPONENT_NAME_PROMPT_SUGGESTIONS,
68
+ jE as COMPONENT_NAME_STREAMING_MESSAGE,
69
+ oT as COMPONENT_NAME_THEME_SWITCHER,
70
+ ZE as COMPONENT_NAME_THINKING_BLOCK,
71
+ $E as COMPONENT_NAME_TOOL_CALL,
72
+ s as DATE_PAD_CHAR,
73
+ c as DATE_PART_SEPARATOR,
74
+ nE as DENSITY_COMPACT,
75
+ p as DIRECTION_HORIZONTAL,
76
+ t as DOCUMENT_CLASS_ATTRIBUTE,
56
77
  T as DOCUMENT_CLASS_BEAR_DARK,
57
- t as DOCUMENT_CLASS_DARK,
58
- ht as EASING_OUT,
59
- E as EMPTY_STRING,
60
- F as EVENT_POINTER_MOVE,
61
- u as EVENT_POINTER_UP,
62
- b_ as INFO,
63
- St as LABEL_AUTHENTICATE,
64
- Lt as LABEL_CANCEL,
65
- Ot as LABEL_CLEAR,
66
- Mt as LABEL_CLOSE,
67
- et as LABEL_CLOSE_ALERT,
68
- Rt as LABEL_CONFIRM,
69
- ct as LABEL_DISMISS,
70
- Ct as LABEL_SCANNING,
71
- Nt as LABEL_TRY_AGAIN,
72
- It as LABEL_VERIFIED,
78
+ E as DOCUMENT_CLASS_DARK,
79
+ fE as DOCUMENT_CLASS_REDUCED_MOTION,
80
+ XE as DRAWER_VARIANT_PERMANENT,
81
+ WE as DRAWER_VARIANT_TEMPORARY,
82
+ BT as EASING_OUT,
83
+ nT as EMPTY_STATE_PRESET_EMPTY,
84
+ cT as EMPTY_STATE_PRESET_ERROR,
85
+ sT as EMPTY_STATE_PRESET_INBOX,
86
+ OT as EMPTY_STATE_PRESET_SEARCH,
87
+ A as EMPTY_STRING,
88
+ g as EVENT_POINTER_MOVE,
89
+ m as EVENT_POINTER_UP,
90
+ W_ as INFO,
91
+ UE as LABEL_APPROVE,
92
+ lE as LABEL_ATTACH,
93
+ DE as LABEL_AUTHENTICATE,
94
+ mE as LABEL_BAD_RESPONSE,
95
+ CE as LABEL_CANCEL,
96
+ NE as LABEL_CLEAR,
97
+ BE as LABEL_CLOSE,
98
+ iE as LABEL_CLOSE_ALERT,
99
+ TE as LABEL_CLOSE_DRAWER,
100
+ IE as LABEL_CONFIRM,
101
+ HE as LABEL_COPY,
102
+ ME as LABEL_DISMISS,
103
+ gE as LABEL_GOOD_RESPONSE,
104
+ VE as LABEL_NEW_MESSAGES,
105
+ pE as LABEL_OPEN_ARTIFACT,
106
+ GE as LABEL_REJECT,
107
+ dE as LABEL_RETRY,
108
+ rE as LABEL_SCANNING,
109
+ PE as LABEL_SEND,
110
+ aE as LABEL_STOP,
111
+ FE as LABEL_THEME_DARK,
112
+ uE as LABEL_THEME_LIGHT,
113
+ YE as LABEL_THEME_SYSTEM,
114
+ hE as LABEL_THINKING,
115
+ eE as LABEL_TRY_AGAIN,
116
+ SE as LABEL_VERIFIED,
73
117
  U as PERCENT_UNIT,
74
118
  f_ as PICKING_START,
75
- p_ as PLACEHOLDER_SELECT_DATE_RANGE,
76
- Pt as PLACEHOLDER_START_TYPING,
77
- z_ as POSITION_STICKY,
78
- q_ as POSITION_TOP,
119
+ y_ as PLACEHOLDER_SELECT_DATE_RANGE,
120
+ ST as PLACEHOLDER_START_TYPING,
121
+ $_ as POSITION_RIGHT,
122
+ _E as POSITION_STICKY,
123
+ z_ as POSITION_TOP,
79
124
  _ as PREFERS_COLOR_SCHEME_DARK,
80
- st as PRESET_LABEL_LAST_MONTH,
81
- Et as PRESET_LABEL_LAST_SEVEN,
82
- nt as PRESET_LABEL_LAST_THIRTY,
83
- ot as PRESET_LABEL_THIS_MONTH,
84
- At as PRESET_LABEL_TODAY,
85
- tt as QUERY_BUTTON,
86
- P as RADIUS_MD,
125
+ KE as PREFERS_REDUCED_MOTION,
126
+ LE as PRESET_LABEL_LAST_MONTH,
127
+ sE as PRESET_LABEL_LAST_SEVEN,
128
+ cE as PRESET_LABEL_LAST_THIRTY,
129
+ RE as PRESET_LABEL_THIS_MONTH,
130
+ OE as PRESET_LABEL_TODAY,
131
+ oE as QUERY_BUTTON,
132
+ H as RADIUS_MD,
87
133
  f as RATING_STAR_STATE_EMPTY,
88
- m as RATING_STAR_STATE_FILLED,
134
+ V as RATING_STAR_STATE_FILLED,
89
135
  K as RATING_STAR_STATE_HALF,
90
136
  K_ as ROOT_MARGIN_BOTTOM_HALF,
91
- _t as SCROLL_BEHAVIOR_AUTO,
92
- $_ as SCROLL_BEHAVIOR_SMOOTH,
93
- Dt as SHOW_LABELS_ACTIVE,
94
- I as SIZE_LG,
95
- c as SIZE_MD,
96
- L as SIZE_SM,
97
- N as SIZE_XL,
137
+ AE as SCROLL_BEHAVIOR_AUTO,
138
+ tE as SCROLL_BEHAVIOR_SMOOTH,
139
+ RT as SHOW_LABELS_ACTIVE,
140
+ N as SIZE_LG,
141
+ L as SIZE_MD,
142
+ R as SIZE_SM,
143
+ I as SIZE_XL,
98
144
  X_ as STATIC,
99
- at as STATUS_ERROR,
100
- V as STATUS_FORBIDDEN,
101
- rt as STATUS_IDLE,
102
- g as STATUS_NOT_FOUND,
103
- it as STATUS_SCANNING,
145
+ CT as STATUS_ERROR,
146
+ F as STATUS_FORBIDDEN,
147
+ LT as STATUS_IDLE,
148
+ u as STATUS_NOT_FOUND,
149
+ NT as STATUS_SCANNING,
104
150
  Y as STATUS_SERVER_ERROR,
105
- Bt as STATUS_SUCCESS,
106
- s as THOUSANDS_SEPARATOR,
107
- r_ as TOOLBAR_ITEM_ALIGN_CENTER,
108
- B_ as TOOLBAR_ITEM_ALIGN_JUSTIFY,
151
+ IT as STATUS_SUCCESS,
152
+ O as THOUSANDS_SEPARATOR,
153
+ i_ as TOOLBAR_ITEM_ALIGN_CENTER,
154
+ P_ as TOOLBAR_ITEM_ALIGN_JUSTIFY,
109
155
  D_ as TOOLBAR_ITEM_ALIGN_LEFT,
110
- i_ as TOOLBAR_ITEM_ALIGN_RIGHT,
156
+ B_ as TOOLBAR_ITEM_ALIGN_RIGHT,
111
157
  U_ as TOOLBAR_ITEM_BOLD,
112
- F_ as TOOLBAR_ITEM_BULLET_LIST,
113
- P_ as TOOLBAR_ITEM_CLEAR_FORMAT,
114
- c_ as TOOLBAR_ITEM_DIVIDER,
158
+ g_ as TOOLBAR_ITEM_BULLET_LIST,
159
+ H_ as TOOLBAR_ITEM_CLEAR_FORMAT,
160
+ N_ as TOOLBAR_ITEM_DIVIDER,
115
161
  I_ as TOOLBAR_ITEM_HEADING_DROPDOWN,
116
- C_ as TOOLBAR_ITEM_HIGHLIGHT_COLOR,
162
+ M_ as TOOLBAR_ITEM_HIGHLIGHT_COLOR,
117
163
  e_ as TOOLBAR_ITEM_IMAGE,
118
164
  a_ as TOOLBAR_ITEM_INDENT,
119
- H_ as TOOLBAR_ITEM_ITALIC,
165
+ G_ as TOOLBAR_ITEM_ITALIC,
120
166
  S_ as TOOLBAR_ITEM_LINK,
121
167
  d_ as TOOLBAR_ITEM_MORE,
122
- u_ as TOOLBAR_ITEM_ORDERED_LIST,
168
+ m_ as TOOLBAR_ITEM_ORDERED_LIST,
123
169
  l_ as TOOLBAR_ITEM_OUTDENT,
124
- M_ as TOOLBAR_ITEM_SIGNATURE,
125
- h_ as TOOLBAR_ITEM_STRIKETHROUGH,
126
- N_ as TOOLBAR_ITEM_TEXT_COLOR,
127
- G_ as TOOLBAR_ITEM_UNDERLINE,
128
- G as TYPE_NUMBER,
129
- H as TYPE_STRING,
170
+ r_ as TOOLBAR_ITEM_SIGNATURE,
171
+ p_ as TOOLBAR_ITEM_STRIKETHROUGH,
172
+ C_ as TOOLBAR_ITEM_TEXT_COLOR,
173
+ h_ as TOOLBAR_ITEM_UNDERLINE,
174
+ h as TYPE_NUMBER,
175
+ G as TYPE_STRING,
130
176
  d as UNIT_PX,
131
- r as VARIANT_DANGER,
177
+ D as VARIANT_DANGER,
132
178
  C as VARIANT_DEFAULT,
133
- S as VARIANT_FILLED,
134
- Z_ as VARIANT_GHOST,
135
- D as VARIANT_NEUTRAL,
179
+ M as VARIANT_FILLED,
180
+ w_ as VARIANT_GHOST,
181
+ r as VARIANT_NEUTRAL,
136
182
  j_ as VARIANT_OUTLINED,
137
- e as VARIANT_PILLS,
183
+ S as VARIANT_PILLS,
138
184
  i as VARIANT_PRIMARY,
139
- W_ as VARIANT_STANDARD,
140
- M as VARIANT_UNDERLINE
185
+ Z_ as VARIANT_STANDARD,
186
+ e as VARIANT_UNDERLINE
141
187
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const E="ArrowDown",_="ArrowUp",o="Enter",t="Escape",A="Tab";exports.KEY_ARROW_DOWN=E;exports.KEY_ARROW_UP=_;exports.KEY_ENTER=o;exports.KEY_ESCAPE=t;exports.KEY_TAB=A;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const E="ArrowDown",_="ArrowUp",o="Enter",t="Escape",A="Tab",K=" ";exports.KEY_ARROW_DOWN=E;exports.KEY_ARROW_UP=_;exports.KEY_ENTER=o;exports.KEY_ESCAPE=t;exports.KEY_SPACE=K;exports.KEY_TAB=A;
@@ -1,8 +1,9 @@
1
- const E = "ArrowDown", o = "ArrowUp", n = "Enter", t = "Escape", _ = "Tab";
1
+ const E = "ArrowDown", o = "ArrowUp", n = "Enter", t = "Escape", _ = "Tab", c = " ";
2
2
  export {
3
3
  E as KEY_ARROW_DOWN,
4
4
  o as KEY_ARROW_UP,
5
5
  n as KEY_ENTER,
6
6
  t as KEY_ESCAPE,
7
+ c as KEY_SPACE,
7
8
  _ as KEY_TAB
8
9
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const E=0,D=1,X=-1,T=2,C=3,P=4,G=5,_=6,R=7,V=8,I=9,M=10,O=11,H=12,A=16,S=20,B=28,e=48,K=64,Z=72,r=80,Q=128,i=160,t=29,l=50,u=90,a=96,N=100,o=120,b=150,c=200,d=220,g=240,n=280,y=300,f=400,j=420,m=640,p=1500,s=2e3,U=11e3,v=R,h=_,k=O,q=T,w=_,x=t,z=E,J=A/I,$=N,EE=E,TE=U,_E=c,NE=s,DE=E,RE=T,IE=o,OE=N,HE=n,AE=S,SE=H,F=.1,Y=.25,W=.5,L=.75,tE=[E,Y,W,L,D],oE=F;exports.AFFIX_DEFAULT_Z_INDEX=OE;exports.ANCHOR_OBSERVER_THRESHOLDS=tE;exports.ANIMATED_COUNTER_DECIMALS=DE;exports.ANIMATED_COUNTER_DURATION=NE;exports.ASPECT_RATIO_WIDE=J;exports.AVATAR_MAX_INITIALS=RE;exports.BACKDROP_DEFAULT_Z_INDEX=TE;exports.BACKDROP_NESTED_Z_INDEX=EE;exports.BACKDROP_TRANSITION_MS=_E;exports.CALENDAR_ROWS=h;exports.DATE_PAD_LENGTH=q;exports.DAYS_IN_WEEK=v;exports.EIGHT=V;exports.EIGHTY=r;exports.ELEVEN=O;exports.ELEVEN_THOUSAND=U;exports.FIFTEEN_HUNDRED=p;exports.FIFTY=l;exports.FIVE=G;exports.FORTY_EIGHT=e;exports.FOUR=P;exports.FOUR_HUNDRED=f;exports.FOUR_HUNDRED_TWENTY=j;exports.HALF=W;exports.HOURS_MIDNIGHT=z;exports.INTERSECTION_THRESHOLD_LOW=oE;exports.LAST_MONTH_INDEX=k;exports.LAST_SEVEN_DAYS_OFFSET=w;exports.LAST_THIRTY_DAYS_OFFSET=x;exports.NEGATIVE_ONE=X;exports.NINE=I;exports.NINETY=u;exports.NINETY_SIX=a;exports.ONE=D;exports.ONE_HUNDRED=N;exports.ONE_HUNDRED_FIFTY=b;exports.ONE_HUNDRED_SIXTY=i;exports.ONE_HUNDRED_TWENTY=o;exports.ONE_HUNDRED_TWENTY_EIGHT=Q;exports.PERCENT_ONE_HUNDRED=$;exports.PRESET_SIDEBAR_MIN_WIDTH_PX=IE;exports.QUARTER=Y;exports.SEVEN=R;exports.SEVENTY_TWO=Z;exports.SIX=_;exports.SIXTEEN=A;exports.SIXTY_FOUR=K;exports.SIX_HUNDRED_FORTY=m;exports.TEN=M;exports.TENTH=F;exports.THREE=C;exports.THREE_HUNDRED=y;exports.THREE_QUARTERS=L;exports.TREE_SELECT_INDENT_PX=AE;exports.TREE_SELECT_MAX_HEIGHT_PX=HE;exports.TREE_SELECT_NODE_PAD_PX=SE;exports.TWELVE=H;exports.TWENTY=S;exports.TWENTY_EIGHT=B;exports.TWENTY_NINE=t;exports.TWO=T;exports.TWO_HUNDRED=c;exports.TWO_HUNDRED_EIGHTY=n;exports.TWO_HUNDRED_FORTY=g;exports.TWO_HUNDRED_TWENTY=d;exports.TWO_THOUSAND=s;exports.ZERO=E;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const E=0,R=1,P=-1,_=2,I=3,G=4,M=5,N=6,O=7,V=8,A=9,B=10,H=11,S=12,K=14,D=16,e=18,t=20,Z=28,r=48,Q=64,i=72,l=80,u=128,a=160,o=29,b=40,d=50,g=90,c=99,y=96,T=100,n=120,f=150,s=200,j=220,m=240,U=280,p=300,v=400,h=420,k=640,q=1500,F=2e3,Y=11e3,w=O,x=N,z=H,J=_,$=N,EE=o,TE=E,_E=D/A,NE=T,DE=E,RE=Y,IE=s,OE=F,AE=E,HE=_,SE=n,tE=T,oE=U,cE=t,nE=S,L=.1,X=.25,W=.5,C=.75,sE=[E,X,W,C,R],UE=L,FE=D,YE=c,LE=T,XE=I;exports.AFFIX_DEFAULT_Z_INDEX=tE;exports.ANCHOR_OBSERVER_THRESHOLDS=sE;exports.ANIMATED_COUNTER_DECIMALS=AE;exports.ANIMATED_COUNTER_DURATION=OE;exports.ASPECT_RATIO_WIDE=_E;exports.AVATAR_MAX_INITIALS=HE;exports.BACKDROP_DEFAULT_Z_INDEX=RE;exports.BACKDROP_NESTED_Z_INDEX=DE;exports.BACKDROP_TRANSITION_MS=IE;exports.CALENDAR_ROWS=x;exports.CHAT_BADGE_MAX=YE;exports.CHAT_STICK_THRESHOLD_PX=FE;exports.CONTEXT_METER_DEFAULT_MAX=LE;exports.DATE_PAD_LENGTH=J;exports.DAYS_IN_WEEK=w;exports.EIGHT=V;exports.EIGHTEEN=e;exports.EIGHTY=l;exports.ELEVEN=H;exports.ELEVEN_THOUSAND=Y;exports.FIFTEEN_HUNDRED=q;exports.FIFTY=d;exports.FIVE=M;exports.FORTY=b;exports.FORTY_EIGHT=r;exports.FOUR=G;exports.FOURTEEN=K;exports.FOUR_HUNDRED=v;exports.FOUR_HUNDRED_TWENTY=h;exports.HALF=W;exports.HOURS_MIDNIGHT=TE;exports.INTERSECTION_THRESHOLD_LOW=UE;exports.LAST_MONTH_INDEX=z;exports.LAST_SEVEN_DAYS_OFFSET=$;exports.LAST_THIRTY_DAYS_OFFSET=EE;exports.NEGATIVE_ONE=P;exports.NINE=A;exports.NINETY=g;exports.NINETY_NINE=c;exports.NINETY_SIX=y;exports.ONE=R;exports.ONE_HUNDRED=T;exports.ONE_HUNDRED_FIFTY=f;exports.ONE_HUNDRED_SIXTY=a;exports.ONE_HUNDRED_TWENTY=n;exports.ONE_HUNDRED_TWENTY_EIGHT=u;exports.PERCENT_ONE_HUNDRED=NE;exports.PRESET_SIDEBAR_MIN_WIDTH_PX=SE;exports.QUARTER=X;exports.SEVEN=O;exports.SEVENTY_TWO=i;exports.SIX=N;exports.SIXTEEN=D;exports.SIXTY_FOUR=Q;exports.SIX_HUNDRED_FORTY=k;exports.TEN=B;exports.TENTH=L;exports.THREE=I;exports.THREE_HUNDRED=p;exports.THREE_QUARTERS=C;exports.TREE_SELECT_INDENT_PX=cE;exports.TREE_SELECT_MAX_HEIGHT_PX=oE;exports.TREE_SELECT_NODE_PAD_PX=nE;exports.TWELVE=S;exports.TWENTY=t;exports.TWENTY_EIGHT=Z;exports.TWENTY_NINE=o;exports.TWO=_;exports.TWO_HUNDRED=s;exports.TWO_HUNDRED_EIGHTY=U;exports.TWO_HUNDRED_FORTY=m;exports.TWO_HUNDRED_TWENTY=j;exports.TWO_THOUSAND=F;exports.TYPING_DOT_COUNT=XE;exports.ZERO=E;
@@ -12,6 +12,7 @@ export declare const NINE = 9;
12
12
  export declare const TEN = 10;
13
13
  export declare const ELEVEN = 11;
14
14
  export declare const TWELVE = 12;
15
+ export declare const FOURTEEN = 14;
15
16
  export declare const SIXTEEN = 16;
16
17
  export declare const EIGHTEEN = 18;
17
18
  export declare const TWENTY = 20;
@@ -25,8 +26,10 @@ export declare const ONE_HUNDRED_TWENTY_EIGHT = 128;
25
26
  export declare const ONE_HUNDRED_SIXTY = 160;
26
27
  export declare const TWENTY_NINE = 29;
27
28
  export declare const THIRTY = 30;
29
+ export declare const FORTY = 40;
28
30
  export declare const FIFTY = 50;
29
31
  export declare const NINETY = 90;
32
+ export declare const NINETY_NINE = 99;
30
33
  export declare const NINETY_SIX = 96;
31
34
  export declare const ONE_HUNDRED = 100;
32
35
  export declare const ONE_HUNDRED_TWENTY = 120;
@@ -75,3 +78,7 @@ export declare const HALF = 0.5;
75
78
  export declare const THREE_QUARTERS = 0.75;
76
79
  export declare const ANCHOR_OBSERVER_THRESHOLDS: number[];
77
80
  export declare const INTERSECTION_THRESHOLD_LOW = 0.1;
81
+ export declare const CHAT_STICK_THRESHOLD_PX = 16;
82
+ export declare const CHAT_BADGE_MAX = 99;
83
+ export declare const CONTEXT_METER_DEFAULT_MAX = 100;
84
+ export declare const TYPING_DOT_COUNT = 3;
@@ -1,70 +1,78 @@
1
- const D = 0, o = 1, t = -1, c = 2, n = 3, s = 4, R = 5, O = 6, I = 7, H = 8, S = 9, A = 10, U = 11, W = 12, Y = 16, F = 20, L = 28, X = 48, C = 64, V = 72, P = 80, G = 128, M = 160, Z = 29, B = 50, K = 90, e = 96, Q = 100, p = 120, r = 150, x = 200, a = 220, b = 240, d = 280, f = 300, g = 400, h = 420, i = 640, j = 1500, k = 2e3, l = 11e3, m = 7, q = 6, u = 11, v = 2, w = 6, y = 29, z = 0, J = 1.7777777777777777, $ = 100, EE = 0, TE = 11e3, NE = 200, _E = 2e3, DE = 0, oE = 2, tE = 120, cE = 100, nE = 280, sE = 20, RE = 12, E = 0.1, T = 0.25, N = 0.5, _ = 0.75, OE = [0, T, N, _, 1], IE = E;
1
+ const D = 0, o = 1, t = -1, c = 2, n = 3, s = 4, R = 5, O = 6, I = 7, H = 8, A = 9, S = 10, U = 11, Y = 12, W = 14, F = 16, X = 18, L = 20, C = 28, G = 48, P = 64, V = 72, M = 80, Z = 128, B = 160, K = 29, e = 40, Q = 50, p = 90, r = 99, x = 96, a = 100, b = 120, d = 150, f = 200, g = 220, h = 240, i = 280, j = 300, k = 400, l = 420, m = 640, q = 1500, u = 2e3, v = 11e3, w = 7, y = 6, z = 11, J = 2, $ = 6, EE = 29, TE = 0, NE = 1.7777777777777777, _E = 100, DE = 0, oE = 11e3, tE = 200, cE = 2e3, nE = 0, sE = 2, RE = 120, OE = 100, IE = 280, HE = 20, AE = 12, E = 0.1, T = 0.25, N = 0.5, _ = 0.75, SE = [0, T, N, _, 1], UE = E, YE = 16, WE = 99, FE = 100, XE = 3;
2
2
  export {
3
- cE as AFFIX_DEFAULT_Z_INDEX,
4
- OE as ANCHOR_OBSERVER_THRESHOLDS,
5
- DE as ANIMATED_COUNTER_DECIMALS,
6
- _E as ANIMATED_COUNTER_DURATION,
7
- J as ASPECT_RATIO_WIDE,
8
- oE as AVATAR_MAX_INITIALS,
9
- TE as BACKDROP_DEFAULT_Z_INDEX,
10
- EE as BACKDROP_NESTED_Z_INDEX,
11
- NE as BACKDROP_TRANSITION_MS,
12
- q as CALENDAR_ROWS,
13
- v as DATE_PAD_LENGTH,
14
- m as DAYS_IN_WEEK,
3
+ OE as AFFIX_DEFAULT_Z_INDEX,
4
+ SE as ANCHOR_OBSERVER_THRESHOLDS,
5
+ nE as ANIMATED_COUNTER_DECIMALS,
6
+ cE as ANIMATED_COUNTER_DURATION,
7
+ NE as ASPECT_RATIO_WIDE,
8
+ sE as AVATAR_MAX_INITIALS,
9
+ oE as BACKDROP_DEFAULT_Z_INDEX,
10
+ DE as BACKDROP_NESTED_Z_INDEX,
11
+ tE as BACKDROP_TRANSITION_MS,
12
+ y as CALENDAR_ROWS,
13
+ WE as CHAT_BADGE_MAX,
14
+ YE as CHAT_STICK_THRESHOLD_PX,
15
+ FE as CONTEXT_METER_DEFAULT_MAX,
16
+ J as DATE_PAD_LENGTH,
17
+ w as DAYS_IN_WEEK,
15
18
  H as EIGHT,
16
- P as EIGHTY,
19
+ X as EIGHTEEN,
20
+ M as EIGHTY,
17
21
  U as ELEVEN,
18
- l as ELEVEN_THOUSAND,
19
- j as FIFTEEN_HUNDRED,
20
- B as FIFTY,
22
+ v as ELEVEN_THOUSAND,
23
+ q as FIFTEEN_HUNDRED,
24
+ Q as FIFTY,
21
25
  R as FIVE,
22
- X as FORTY_EIGHT,
26
+ e as FORTY,
27
+ G as FORTY_EIGHT,
23
28
  s as FOUR,
24
- g as FOUR_HUNDRED,
25
- h as FOUR_HUNDRED_TWENTY,
29
+ W as FOURTEEN,
30
+ k as FOUR_HUNDRED,
31
+ l as FOUR_HUNDRED_TWENTY,
26
32
  N as HALF,
27
- z as HOURS_MIDNIGHT,
28
- IE as INTERSECTION_THRESHOLD_LOW,
29
- u as LAST_MONTH_INDEX,
30
- w as LAST_SEVEN_DAYS_OFFSET,
31
- y as LAST_THIRTY_DAYS_OFFSET,
33
+ TE as HOURS_MIDNIGHT,
34
+ UE as INTERSECTION_THRESHOLD_LOW,
35
+ z as LAST_MONTH_INDEX,
36
+ $ as LAST_SEVEN_DAYS_OFFSET,
37
+ EE as LAST_THIRTY_DAYS_OFFSET,
32
38
  t as NEGATIVE_ONE,
33
- S as NINE,
34
- K as NINETY,
35
- e as NINETY_SIX,
39
+ A as NINE,
40
+ p as NINETY,
41
+ r as NINETY_NINE,
42
+ x as NINETY_SIX,
36
43
  o as ONE,
37
- Q as ONE_HUNDRED,
38
- r as ONE_HUNDRED_FIFTY,
39
- M as ONE_HUNDRED_SIXTY,
40
- p as ONE_HUNDRED_TWENTY,
41
- G as ONE_HUNDRED_TWENTY_EIGHT,
42
- $ as PERCENT_ONE_HUNDRED,
43
- tE as PRESET_SIDEBAR_MIN_WIDTH_PX,
44
+ a as ONE_HUNDRED,
45
+ d as ONE_HUNDRED_FIFTY,
46
+ B as ONE_HUNDRED_SIXTY,
47
+ b as ONE_HUNDRED_TWENTY,
48
+ Z as ONE_HUNDRED_TWENTY_EIGHT,
49
+ _E as PERCENT_ONE_HUNDRED,
50
+ RE as PRESET_SIDEBAR_MIN_WIDTH_PX,
44
51
  T as QUARTER,
45
52
  I as SEVEN,
46
53
  V as SEVENTY_TWO,
47
54
  O as SIX,
48
- Y as SIXTEEN,
49
- C as SIXTY_FOUR,
50
- i as SIX_HUNDRED_FORTY,
51
- A as TEN,
55
+ F as SIXTEEN,
56
+ P as SIXTY_FOUR,
57
+ m as SIX_HUNDRED_FORTY,
58
+ S as TEN,
52
59
  E as TENTH,
53
60
  n as THREE,
54
- f as THREE_HUNDRED,
61
+ j as THREE_HUNDRED,
55
62
  _ as THREE_QUARTERS,
56
- sE as TREE_SELECT_INDENT_PX,
57
- nE as TREE_SELECT_MAX_HEIGHT_PX,
58
- RE as TREE_SELECT_NODE_PAD_PX,
59
- W as TWELVE,
60
- F as TWENTY,
61
- L as TWENTY_EIGHT,
62
- Z as TWENTY_NINE,
63
+ HE as TREE_SELECT_INDENT_PX,
64
+ IE as TREE_SELECT_MAX_HEIGHT_PX,
65
+ AE as TREE_SELECT_NODE_PAD_PX,
66
+ Y as TWELVE,
67
+ L as TWENTY,
68
+ C as TWENTY_EIGHT,
69
+ K as TWENTY_NINE,
63
70
  c as TWO,
64
- x as TWO_HUNDRED,
65
- d as TWO_HUNDRED_EIGHTY,
66
- b as TWO_HUNDRED_FORTY,
67
- a as TWO_HUNDRED_TWENTY,
68
- k as TWO_THOUSAND,
71
+ f as TWO_HUNDRED,
72
+ i as TWO_HUNDRED_EIGHTY,
73
+ h as TWO_HUNDRED_FORTY,
74
+ g as TWO_HUNDRED_TWENTY,
75
+ u as TWO_THOUSAND,
76
+ XE as TYPING_DOT_COUNT,
69
77
  D as ZERO
70
78
  };