@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.
- package/README.md +30 -0
- package/dist/components/Accordion/components/AccordionItem/AccordionItem.cjs +1 -1
- package/dist/components/Accordion/components/AccordionItem/AccordionItem.js +1 -1
- package/dist/components/Alert/Alert.cjs +1 -1
- package/dist/components/Alert/Alert.js +1 -1
- package/dist/components/ApprovalCard/ApprovalCard.cjs +1 -0
- package/dist/components/ApprovalCard/ApprovalCard.const.cjs +1 -0
- package/dist/components/ApprovalCard/ApprovalCard.const.d.ts +2 -0
- package/dist/components/ApprovalCard/ApprovalCard.const.js +8 -0
- package/dist/components/ApprovalCard/ApprovalCard.d.ts +2 -0
- package/dist/components/ApprovalCard/ApprovalCard.js +25 -0
- package/dist/components/ApprovalCard/ApprovalCard.types.d.ts +15 -0
- package/dist/components/ApprovalCard/index.d.ts +2 -0
- package/dist/components/ArtifactCard/ArtifactCard.cjs +1 -0
- package/dist/components/ArtifactCard/ArtifactCard.const.cjs +1 -0
- package/dist/components/ArtifactCard/ArtifactCard.const.d.ts +3 -0
- package/dist/components/ArtifactCard/ArtifactCard.const.js +8 -0
- package/dist/components/ArtifactCard/ArtifactCard.d.ts +2 -0
- package/dist/components/ArtifactCard/ArtifactCard.js +43 -0
- package/dist/components/ArtifactCard/ArtifactCard.types.d.ts +15 -0
- package/dist/components/ArtifactCard/index.d.ts +2 -0
- package/dist/components/Avatar/Avatar.cjs +1 -1
- package/dist/components/Avatar/Avatar.js +1 -1
- package/dist/components/BackTop/BackTop.cjs +1 -1
- package/dist/components/BackTop/BackTop.js +1 -1
- package/dist/components/Banner/Banner.const.cjs +1 -1
- package/dist/components/Banner/Banner.const.js +10 -9
- package/dist/components/Blockquote/Blockquote.cjs +1 -1
- package/dist/components/Blockquote/Blockquote.js +1 -1
- package/dist/components/BottomSheet/BottomSheet.cjs +1 -1
- package/dist/components/BottomSheet/BottomSheet.js +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.js +1 -1
- package/dist/components/Calendar/Calendar.cjs +1 -1
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/components/Chart/BarChart.cjs +1 -1
- package/dist/components/Chart/BarChart.d.ts +1 -2
- package/dist/components/Chart/BarChart.js +74 -61
- package/dist/components/Chart/Chart.cjs +1 -1
- package/dist/components/Chart/Chart.const.cjs +1 -1
- package/dist/components/Chart/Chart.const.d.ts +24 -3
- package/dist/components/Chart/Chart.const.js +39 -16
- package/dist/components/Chart/Chart.d.ts +1 -5
- package/dist/components/Chart/Chart.js +23 -24
- package/dist/components/Chart/Chart.types.d.ts +12 -20
- package/dist/components/Chart/Chart.utils.cjs +1 -1
- package/dist/components/Chart/Chart.utils.d.ts +8 -18
- package/dist/components/Chart/Chart.utils.js +39 -3
- package/dist/components/Chart/FunnelChart.cjs +1 -0
- package/dist/components/Chart/FunnelChart.d.ts +2 -0
- package/dist/components/Chart/FunnelChart.js +61 -0
- package/dist/components/Chart/LineChart.cjs +1 -1
- package/dist/components/Chart/LineChart.d.ts +1 -2
- package/dist/components/Chart/LineChart.js +80 -70
- package/dist/components/Chart/PieChart.cjs +1 -1
- package/dist/components/Chart/PieChart.d.ts +1 -2
- package/dist/components/Chart/PieChart.js +140 -105
- package/dist/components/Chart/PieChart.types.d.ts +8 -0
- package/dist/components/Chart/RadarChart.cjs +1 -0
- package/dist/components/Chart/RadarChart.d.ts +2 -0
- package/dist/components/Chart/RadarChart.js +123 -0
- package/dist/components/Chart/index.d.ts +3 -1
- package/dist/components/Chat/Chat.cjs +1 -1
- package/dist/components/Chat/Chat.const.cjs +1 -1
- package/dist/components/Chat/Chat.const.d.ts +9 -22
- package/dist/components/Chat/Chat.const.js +18 -26
- package/dist/components/Chat/Chat.d.ts +1 -20
- package/dist/components/Chat/Chat.js +107 -162
- package/dist/components/Chat/Chat.types.d.ts +20 -27
- package/dist/components/Chat/Chat.utils.cjs +1 -0
- package/dist/components/Chat/Chat.utils.d.ts +2 -0
- package/dist/components/Chat/Chat.utils.js +10 -0
- package/dist/components/Chat/helpers/ChatTypingIndicator.cjs +1 -0
- package/dist/components/Chat/helpers/ChatTypingIndicator.d.ts +3 -0
- package/dist/components/Chat/helpers/ChatTypingIndicator.js +14 -0
- package/dist/components/Chat/index.d.ts +2 -1
- package/dist/components/ChatBubble/ChatBubble.cjs +1 -0
- package/dist/components/ChatBubble/ChatBubble.const.cjs +1 -0
- package/dist/components/ChatBubble/ChatBubble.const.d.ts +13 -0
- package/dist/components/ChatBubble/ChatBubble.const.js +17 -0
- package/dist/components/ChatBubble/ChatBubble.d.ts +2 -0
- package/dist/components/ChatBubble/ChatBubble.js +32 -0
- package/dist/components/ChatBubble/ChatBubble.types.d.ts +12 -0
- package/dist/components/ChatBubble/ChatBubble.utils.cjs +1 -0
- package/dist/components/ChatBubble/ChatBubble.utils.d.ts +6 -0
- package/dist/components/ChatBubble/ChatBubble.utils.js +15 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleSystem.cjs +1 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleSystem.d.ts +2 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleSystem.js +21 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleThread.cjs +1 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleThread.d.ts +4 -0
- package/dist/components/ChatBubble/helpers/ChatBubbleThread.js +63 -0
- package/dist/components/ChatBubble/index.d.ts +2 -0
- package/dist/components/ChatError/ChatError.cjs +1 -0
- package/dist/components/ChatError/ChatError.const.cjs +1 -0
- package/dist/components/ChatError/ChatError.const.d.ts +2 -0
- package/dist/components/ChatError/ChatError.const.js +8 -0
- package/dist/components/ChatError/ChatError.d.ts +2 -0
- package/dist/components/ChatError/ChatError.js +32 -0
- package/dist/components/ChatError/ChatError.types.d.ts +14 -0
- package/dist/components/ChatError/index.d.ts +2 -0
- package/dist/components/CitationList/CitationList.cjs +1 -0
- package/dist/components/CitationList/CitationList.d.ts +2 -0
- package/dist/components/CitationList/CitationList.js +30 -0
- package/dist/components/CitationList/CitationList.types.d.ts +15 -0
- package/dist/components/CitationList/helpers/CitationListTitle.cjs +1 -0
- package/dist/components/CitationList/helpers/CitationListTitle.d.ts +2 -0
- package/dist/components/CitationList/helpers/CitationListTitle.js +10 -0
- package/dist/components/CitationList/helpers/index.d.ts +1 -0
- package/dist/components/CitationList/index.d.ts +2 -0
- package/dist/components/ContextMeter/ContextMeter.cjs +1 -0
- package/dist/components/ContextMeter/ContextMeter.const.cjs +1 -0
- package/dist/components/ContextMeter/ContextMeter.const.d.ts +6 -0
- package/dist/components/ContextMeter/ContextMeter.const.js +11 -0
- package/dist/components/ContextMeter/ContextMeter.d.ts +2 -0
- package/dist/components/ContextMeter/ContextMeter.js +49 -0
- package/dist/components/ContextMeter/ContextMeter.types.d.ts +11 -0
- package/dist/components/ContextMeter/ContextMeter.utils.cjs +1 -0
- package/dist/components/ContextMeter/ContextMeter.utils.d.ts +2 -0
- package/dist/components/ContextMeter/ContextMeter.utils.js +12 -0
- package/dist/components/ContextMeter/index.d.ts +2 -0
- package/dist/components/CurrencyInput/CurrencyInput.cjs +1 -1
- package/dist/components/CurrencyInput/CurrencyInput.js +1 -1
- package/dist/components/DatePicker/DatePicker.cjs +1 -1
- package/dist/components/DatePicker/DatePicker.js +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.js +1 -1
- package/dist/components/Drawer/Drawer.cjs +1 -1
- package/dist/components/Drawer/Drawer.const.cjs +1 -1
- package/dist/components/Drawer/Drawer.const.d.ts +4 -12
- package/dist/components/Drawer/Drawer.const.js +7 -55
- package/dist/components/Drawer/Drawer.d.ts +1 -2
- package/dist/components/Drawer/Drawer.js +78 -112
- package/dist/components/Drawer/Drawer.types.d.ts +20 -4
- package/dist/components/Drawer/Drawer.utils.d.ts +0 -4
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.cjs +1 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.d.ts +2 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.js +26 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.types.d.ts +20 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.cjs +1 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.d.ts +2 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.js +17 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.cjs +1 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.d.ts +2 -0
- package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.js +9 -0
- package/dist/components/Drawer/components/DrawerHeader/index.d.ts +2 -0
- package/dist/components/Drawer/components/index.d.ts +1 -0
- package/dist/components/Drawer/helpers/DrawerOptionalHeader.cjs +1 -0
- package/dist/components/Drawer/helpers/DrawerOptionalHeader.d.ts +2 -0
- package/dist/components/Drawer/helpers/DrawerOptionalHeader.js +9 -0
- package/dist/components/Drawer/helpers/index.d.ts +1 -0
- package/dist/components/Drawer/hooks/index.d.ts +1 -0
- package/dist/components/Drawer/hooks/useDrawer.cjs +1 -0
- package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
- package/dist/components/Drawer/hooks/useDrawer.js +50 -0
- package/dist/components/Drawer/index.d.ts +1 -1
- package/dist/components/Editable/Editable.cjs +1 -1
- package/dist/components/Editable/Editable.js +1 -1
- package/dist/components/EmptyState/EmptyState.cjs +1 -1
- package/dist/components/EmptyState/EmptyState.const.cjs +1 -1
- package/dist/components/EmptyState/EmptyState.const.d.ts +8 -6
- package/dist/components/EmptyState/EmptyState.const.js +15 -8
- package/dist/components/EmptyState/EmptyState.d.ts +1 -2
- package/dist/components/EmptyState/EmptyState.js +39 -43
- package/dist/components/EmptyState/EmptyState.types.d.ts +2 -0
- package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.cjs +1 -0
- package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.d.ts +3 -0
- package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.js +8 -0
- package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.cjs +1 -0
- package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.d.ts +3 -0
- package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.js +8 -0
- package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.cjs +1 -0
- package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.d.ts +3 -0
- package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.js +8 -0
- package/dist/components/EmptyState/helpers/index.d.ts +3 -0
- package/dist/components/EmptyState/index.d.ts +1 -1
- package/dist/components/FileTree/FileTree.cjs +1 -1
- package/dist/components/FileTree/FileTree.js +1 -1
- package/dist/components/FloatingChat/FloatingChat.cjs +1 -1
- package/dist/components/FloatingChat/FloatingChat.const.cjs +1 -1
- package/dist/components/FloatingChat/FloatingChat.const.d.ts +12 -1
- package/dist/components/FloatingChat/FloatingChat.const.js +25 -7
- package/dist/components/FloatingChat/FloatingChat.d.ts +1 -18
- package/dist/components/FloatingChat/FloatingChat.js +93 -124
- package/dist/components/FloatingChat/FloatingChat.types.d.ts +11 -22
- package/dist/components/FloatingChat/FloatingChat.utils.cjs +1 -0
- package/dist/components/FloatingChat/FloatingChat.utils.d.ts +2 -0
- package/dist/components/FloatingChat/FloatingChat.utils.js +12 -0
- package/dist/components/FloatingChat/helpers/FloatingChatHeader.cjs +1 -0
- package/dist/components/FloatingChat/helpers/FloatingChatHeader.d.ts +9 -0
- package/dist/components/FloatingChat/helpers/FloatingChatHeader.js +21 -0
- package/dist/components/FloatingChat/helpers/FloatingChatTrigger.cjs +1 -0
- package/dist/components/FloatingChat/helpers/FloatingChatTrigger.d.ts +9 -0
- package/dist/components/FloatingChat/helpers/FloatingChatTrigger.js +17 -0
- package/dist/components/FloatingChat/index.d.ts +1 -1
- package/dist/components/FormSkeleton/FormSkeleton.cjs +1 -1
- package/dist/components/FormSkeleton/FormSkeleton.d.ts +1 -1
- package/dist/components/FormSkeleton/FormSkeleton.js +35 -24
- package/dist/components/Gauge/Gauge.cjs +1 -1
- package/dist/components/Gauge/Gauge.const.cjs +1 -1
- package/dist/components/Gauge/Gauge.const.d.ts +5 -0
- package/dist/components/Gauge/Gauge.const.js +11 -6
- package/dist/components/Gauge/Gauge.d.ts +1 -2
- package/dist/components/Gauge/Gauge.js +69 -45
- package/dist/components/Gauge/Gauge.types.d.ts +11 -2
- package/dist/components/Gauge/helpers/GaugeLinearBar.cjs +1 -0
- package/dist/components/Gauge/helpers/GaugeLinearBar.d.ts +2 -0
- package/dist/components/Gauge/helpers/GaugeLinearBar.js +40 -0
- package/dist/components/Heatmap/Heatmap.cjs +1 -1
- package/dist/components/Heatmap/Heatmap.const.cjs +1 -1
- package/dist/components/Heatmap/Heatmap.const.d.ts +2 -0
- package/dist/components/Heatmap/Heatmap.const.js +8 -6
- package/dist/components/Heatmap/Heatmap.js +51 -47
- package/dist/components/Heatmap/Heatmap.types.d.ts +1 -1
- package/dist/components/Icon/Icon.d.ts +2 -39
- package/dist/components/Icon/Icon.types.d.ts +1 -17
- package/dist/components/Icon/icons/action.d.ts +1 -85
- package/dist/components/Icon/icons/bear.d.ts +1 -12
- package/dist/components/Icon/icons/charts.d.ts +1 -0
- package/dist/components/Icon/icons/commerce.d.ts +1 -25
- package/dist/components/Icon/icons/communication.d.ts +1 -48
- package/dist/components/Icon/icons/content.d.ts +1 -53
- package/dist/components/Icon/icons/device.d.ts +1 -27
- package/dist/components/Icon/icons/editor.d.ts +1 -54
- package/dist/components/Icon/icons/file.d.ts +1 -25
- package/dist/components/Icon/icons/index.d.ts +1 -9
- package/dist/components/Icon/icons/media.d.ts +1 -64
- package/dist/components/Icon/icons/misc.d.ts +1 -96
- package/dist/components/Icon/icons/navigation.d.ts +1 -56
- package/dist/components/Icon/icons/social.d.ts +1 -24
- package/dist/components/Icon/icons/status.d.ts +1 -61
- package/dist/components/Icon/index.d.ts +3 -605
- package/dist/components/Icon/productIcons.cjs +1 -0
- package/dist/components/Icon/productIcons.d.ts +7 -0
- package/dist/components/Icon/productIcons.js +25 -0
- package/dist/components/ImageAnnotation/ImageAnnotation.cjs +1 -1
- package/dist/components/ImageAnnotation/ImageAnnotation.js +1 -1
- package/dist/components/JsonViewer/JsonViewer.cjs +1 -1
- package/dist/components/JsonViewer/JsonViewer.js +1 -1
- package/dist/components/MediaPlayer/MediaPlayer.cjs +1 -1
- package/dist/components/MediaPlayer/MediaPlayer.js +1 -1
- package/dist/components/MessageActions/MessageActions.cjs +1 -0
- package/dist/components/MessageActions/MessageActions.const.cjs +1 -0
- package/dist/components/MessageActions/MessageActions.const.d.ts +2 -0
- package/dist/components/MessageActions/MessageActions.const.js +10 -0
- package/dist/components/MessageActions/MessageActions.d.ts +2 -0
- package/dist/components/MessageActions/MessageActions.js +31 -0
- package/dist/components/MessageActions/MessageActions.types.d.ts +16 -0
- package/dist/components/MessageActions/index.d.ts +2 -0
- package/dist/components/Modal/Modal.cjs +1 -1
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/ModelSelect/ModelSelect.cjs +1 -0
- package/dist/components/ModelSelect/ModelSelect.const.cjs +1 -0
- package/dist/components/ModelSelect/ModelSelect.const.d.ts +1 -0
- package/dist/components/ModelSelect/ModelSelect.const.js +4 -0
- package/dist/components/ModelSelect/ModelSelect.d.ts +2 -0
- package/dist/components/ModelSelect/ModelSelect.js +41 -0
- package/dist/components/ModelSelect/ModelSelect.types.d.ts +16 -0
- package/dist/components/ModelSelect/index.d.ts +2 -0
- package/dist/components/OverlayPortal/OverlayPortal.const.cjs +1 -1
- package/dist/components/OverlayPortal/OverlayPortal.const.js +6 -5
- package/dist/components/PageNav/PageNav.cjs +1 -1
- package/dist/components/PageNav/PageNav.js +1 -1
- package/dist/components/PasswordInput/PasswordInput.cjs +1 -1
- package/dist/components/PasswordInput/PasswordInput.js +1 -1
- package/dist/components/PromptComposer/PromptComposer.cjs +1 -0
- package/dist/components/PromptComposer/PromptComposer.const.cjs +1 -0
- package/dist/components/PromptComposer/PromptComposer.const.d.ts +6 -0
- package/dist/components/PromptComposer/PromptComposer.const.js +14 -0
- package/dist/components/PromptComposer/PromptComposer.d.ts +2 -0
- package/dist/components/PromptComposer/PromptComposer.js +132 -0
- package/dist/components/PromptComposer/PromptComposer.types.d.ts +45 -0
- package/dist/components/PromptComposer/PromptComposer.utils.cjs +1 -0
- package/dist/components/PromptComposer/PromptComposer.utils.d.ts +5 -0
- package/dist/components/PromptComposer/PromptComposer.utils.js +16 -0
- package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.d.ts +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.js +6 -0
- package/dist/components/PromptComposer/helpers/PromptComposerFileChip.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerFileChip.d.ts +2 -0
- package/dist/components/PromptComposer/helpers/PromptComposerFileChip.js +18 -0
- package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.d.ts +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.js +9 -0
- package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.cjs +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.d.ts +1 -0
- package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.js +6 -0
- package/dist/components/PromptComposer/helpers/index.d.ts +4 -0
- package/dist/components/PromptComposer/index.d.ts +2 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.cjs +1 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.d.ts +2 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.js +39 -0
- package/dist/components/PromptSuggestions/PromptSuggestions.types.d.ts +13 -0
- package/dist/components/PromptSuggestions/index.d.ts +2 -0
- package/dist/components/PropsPlayground/PropsPlayground.cjs +1 -1
- package/dist/components/PropsPlayground/PropsPlayground.js +1 -1
- package/dist/components/Rating/components/StarIcon/StarIcon.cjs +1 -1
- package/dist/components/Rating/components/StarIcon/StarIcon.js +1 -1
- package/dist/components/Result/Result.utils.cjs +1 -1
- package/dist/components/Result/Result.utils.js +1 -1
- package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.js +1 -1
- package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.js +1 -1
- package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.js +1 -1
- package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.cjs +1 -1
- package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.js +1 -1
- package/dist/components/RichEditor/helpers/IconRender.cjs +1 -1
- package/dist/components/RichEditor/helpers/IconRender.js +1 -1
- package/dist/components/RichEditor/helpers/toolbarItemRender.cjs +1 -1
- package/dist/components/RichEditor/helpers/toolbarItemRender.js +1 -1
- package/dist/components/RingProgress/RingProgress.cjs +1 -1
- package/dist/components/RingProgress/RingProgress.const.cjs +1 -1
- package/dist/components/RingProgress/RingProgress.const.d.ts +3 -0
- package/dist/components/RingProgress/RingProgress.const.js +7 -4
- package/dist/components/RingProgress/RingProgress.js +38 -37
- package/dist/components/RingProgress/RingProgress.types.d.ts +1 -0
- package/dist/components/Select/Select.cjs +1 -1
- package/dist/components/Select/Select.js +23 -23
- package/dist/components/Select/helpers/SelectCheckSvg.cjs +1 -0
- package/dist/components/Select/helpers/SelectCheckSvg.d.ts +3 -0
- package/dist/components/Select/helpers/SelectCheckSvg.js +8 -0
- package/dist/components/Select/helpers/SelectChevronDownSvg.cjs +1 -0
- package/dist/components/Select/helpers/SelectChevronDownSvg.d.ts +3 -0
- package/dist/components/Select/helpers/SelectChevronDownSvg.js +8 -0
- package/dist/components/Select/helpers/index.d.ts +2 -0
- package/dist/components/Sidebar/Sidebar.cjs +1 -1
- package/dist/components/Sidebar/Sidebar.js +16 -15
- package/dist/components/Sidebar/Sidebar.types.d.ts +1 -1
- package/dist/components/Sidebar/Sidebar.utils.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.utils.d.ts +2 -0
- package/dist/components/Sidebar/Sidebar.utils.js +11 -0
- package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.cjs +1 -1
- package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.js +1 -1
- package/dist/components/Sidebar/components/SidebarItem/SidebarItem.cjs +1 -1
- package/dist/components/Sidebar/components/SidebarItem/SidebarItem.js +55 -51
- package/dist/components/Sidebar/index.d.ts +1 -0
- package/dist/components/Skeleton/Skeleton.cjs +1 -1
- package/dist/components/Skeleton/Skeleton.const.cjs +2 -2
- package/dist/components/Skeleton/Skeleton.const.js +5 -6
- package/dist/components/Skeleton/Skeleton.js +59 -59
- package/dist/components/SliderRange/SliderRange.cjs +1 -1
- package/dist/components/SliderRange/SliderRange.js +19 -19
- package/dist/components/Sparkline/Sparkline.cjs +1 -1
- package/dist/components/Sparkline/Sparkline.const.cjs +1 -1
- package/dist/components/Sparkline/Sparkline.const.d.ts +5 -0
- package/dist/components/Sparkline/Sparkline.const.js +9 -4
- package/dist/components/Sparkline/Sparkline.d.ts +1 -2
- package/dist/components/Sparkline/Sparkline.js +75 -53
- package/dist/components/Sparkline/Sparkline.types.d.ts +2 -0
- package/dist/components/Sparkline/Sparkline.utils.cjs +1 -1
- package/dist/components/Sparkline/Sparkline.utils.d.ts +7 -12
- package/dist/components/Sparkline/Sparkline.utils.js +33 -20
- package/dist/components/Sparkline/index.d.ts +2 -2
- package/dist/components/StatCard/StatCard.cjs +1 -1
- package/dist/components/StatCard/StatCard.const.cjs +1 -1
- package/dist/components/StatCard/StatCard.const.d.ts +0 -7
- package/dist/components/StatCard/StatCard.const.js +5 -12
- package/dist/components/StatCard/StatCard.d.ts +1 -2
- package/dist/components/StatCard/StatCard.js +48 -37
- package/dist/components/StatCard/StatCard.utils.cjs +1 -0
- package/dist/components/StatCard/StatCard.utils.d.ts +2 -0
- package/dist/components/StatCard/StatCard.utils.js +7 -0
- package/dist/components/Stepper/Stepper.cjs +1 -1
- package/dist/components/Stepper/Stepper.js +1 -1
- package/dist/components/StreamingMessage/StreamingMessage.cjs +1 -0
- package/dist/components/StreamingMessage/StreamingMessage.const.cjs +1 -0
- package/dist/components/StreamingMessage/StreamingMessage.const.d.ts +5 -0
- package/dist/components/StreamingMessage/StreamingMessage.const.js +10 -0
- package/dist/components/StreamingMessage/StreamingMessage.d.ts +2 -0
- package/dist/components/StreamingMessage/StreamingMessage.js +48 -0
- package/dist/components/StreamingMessage/StreamingMessage.types.d.ts +15 -0
- package/dist/components/StreamingMessage/index.d.ts +2 -0
- package/dist/components/Tabs/TabList.cjs +1 -1
- package/dist/components/Tabs/TabList.js +1 -1
- package/dist/components/ThemeSwitcher/ThemeSwitcher.cjs +1 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.const.cjs +1 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.const.d.ts +7 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.const.js +14 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.d.ts +2 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.js +39 -0
- package/dist/components/ThemeSwitcher/ThemeSwitcher.types.d.ts +14 -0
- package/dist/components/ThemeSwitcher/index.d.ts +2 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.cjs +1 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.const.cjs +1 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.const.d.ts +4 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.const.js +9 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.d.ts +2 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.js +45 -0
- package/dist/components/ThinkingBlock/ThinkingBlock.types.d.ts +16 -0
- package/dist/components/ThinkingBlock/index.d.ts +2 -0
- package/dist/components/TimePicker/TimePicker.cjs +1 -1
- package/dist/components/TimePicker/TimePicker.js +1 -1
- package/dist/components/TimelineChart/TimelineChart.cjs +1 -1
- package/dist/components/TimelineChart/TimelineChart.const.cjs +1 -1
- package/dist/components/TimelineChart/TimelineChart.const.d.ts +3 -0
- package/dist/components/TimelineChart/TimelineChart.const.js +7 -4
- package/dist/components/TimelineChart/TimelineChart.js +56 -42
- package/dist/components/TimelineChart/TimelineChart.types.d.ts +1 -1
- package/dist/components/ToolCall/ToolCall.cjs +1 -0
- package/dist/components/ToolCall/ToolCall.const.cjs +1 -0
- package/dist/components/ToolCall/ToolCall.const.d.ts +5 -0
- package/dist/components/ToolCall/ToolCall.const.js +17 -0
- package/dist/components/ToolCall/ToolCall.d.ts +2 -0
- package/dist/components/ToolCall/ToolCall.js +43 -0
- package/dist/components/ToolCall/ToolCall.types.d.ts +20 -0
- package/dist/components/ToolCall/index.d.ts +2 -0
- package/dist/components/Transition/Transition.const.cjs +1 -1
- package/dist/components/Transition/Transition.const.js +12 -6
- package/dist/components/Transition/Transition.types.d.ts +1 -1
- package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
- package/dist/components/TreeSelect/TreeSelect.js +1 -1
- package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.cjs +1 -1
- package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.js +1 -1
- package/dist/components/TreeView/TreeView.cjs +1 -1
- package/dist/components/TreeView/TreeView.js +3 -2
- package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.cjs +1 -1
- package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.js +1 -1
- package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.cjs +1 -1
- package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.js +1 -1
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.ts +39 -11
- package/dist/components/index.js +455 -420
- package/dist/constants/generals.const.cjs +1 -1
- package/dist/constants/generals.const.d.ts +50 -0
- package/dist/constants/generals.const.js +154 -108
- package/dist/constants/keys.const.cjs +1 -1
- package/dist/constants/keys.const.js +2 -1
- package/dist/constants/numbers.const.cjs +1 -1
- package/dist/constants/numbers.const.d.ts +7 -0
- package/dist/constants/numbers.const.js +60 -52
- package/dist/context/BearProvider.cjs +1 -1
- package/dist/context/BearProvider.d.ts +19 -44
- package/dist/context/BearProvider.js +223 -208
- package/dist/context/bearProvider.types.d.ts +4 -0
- package/dist/context/index.d.ts +1 -1
- package/dist/hooks/useFixedAnchorPosition/index.d.ts +1 -1
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.cjs +1 -1
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.d.ts +2 -1
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.js +12 -11
- package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.types.d.ts +1 -1
- package/dist/icons.cjs +1 -1
- package/dist/icons.d.ts +2 -2
- package/dist/icons.js +1 -6
- package/dist/index.cjs +1 -1
- package/dist/index.js +597 -562
- package/dist/styles/_ai-chat.css +487 -0
- package/dist/styles/_base.css +2 -0
- package/dist/styles/_chart.css +144 -0
- package/dist/styles/_drawer.css +213 -0
- package/dist/styles/_effects.css +8 -4
- package/dist/styles/_overlays.css +0 -1
- package/dist/styles/_skeleton.css +90 -0
- package/dist/styles/main.css +4 -0
- package/dist/styles.css +1089 -186
- package/package.json +5 -1
- package/dist/components/FormSkeleton/FormSkeleton.const.cjs +0 -1
- package/dist/components/FormSkeleton/FormSkeleton.const.d.ts +0 -5
- package/dist/components/FormSkeleton/FormSkeleton.const.js +0 -8
- package/dist/components/Icon/Icon.cjs +0 -1
- package/dist/components/Icon/Icon.const.d.ts +0 -1
- package/dist/components/Icon/Icon.js +0 -45
- package/dist/components/Icon/icons/action.cjs +0 -1
- package/dist/components/Icon/icons/action.js +0 -351
- package/dist/components/Icon/icons/bear.cjs +0 -1
- package/dist/components/Icon/icons/bear.js +0 -47
- package/dist/components/Icon/icons/commerce.cjs +0 -1
- package/dist/components/Icon/icons/commerce.js +0 -124
- package/dist/components/Icon/icons/communication.cjs +0 -1
- package/dist/components/Icon/icons/communication.js +0 -184
- package/dist/components/Icon/icons/content.cjs +0 -1
- package/dist/components/Icon/icons/content.js +0 -231
- package/dist/components/Icon/icons/device.cjs +0 -1
- package/dist/components/Icon/icons/device.js +0 -122
- package/dist/components/Icon/icons/editor.cjs +0 -1
- package/dist/components/Icon/icons/editor.js +0 -285
- package/dist/components/Icon/icons/file.cjs +0 -1
- package/dist/components/Icon/icons/file.js +0 -120
- package/dist/components/Icon/icons/media.cjs +0 -1
- package/dist/components/Icon/icons/media.js +0 -306
- package/dist/components/Icon/icons/misc.cjs +0 -1
- package/dist/components/Icon/icons/misc.js +0 -450
- package/dist/components/Icon/icons/navigation.cjs +0 -1
- package/dist/components/Icon/icons/navigation.js +0 -215
- package/dist/components/Icon/icons/social.cjs +0 -1
- package/dist/components/Icon/icons/social.js +0 -89
- package/dist/components/Icon/icons/status.cjs +0 -1
- package/dist/components/Icon/icons/status.js +0 -271
- package/dist/components/Icon/index.cjs +0 -1
- package/dist/components/Icon/index.js +0 -79
package/dist/styles.css
CHANGED
|
@@ -169390,18 +169390,6 @@
|
|
|
169390
169390
|
border-radius: inherit;
|
|
169391
169391
|
}
|
|
169392
169392
|
|
|
169393
|
-
.bear-bg-\[var\(--bear-primary-500\)\] {
|
|
169394
|
-
background-color: var(--bear-primary-500);
|
|
169395
|
-
}
|
|
169396
|
-
|
|
169397
|
-
.bear-\!min-w-\[20px\] {
|
|
169398
|
-
min-width: 20px !important;
|
|
169399
|
-
}
|
|
169400
|
-
|
|
169401
|
-
.bear-max-w-\[70\%\] {
|
|
169402
|
-
max-width: 70%;
|
|
169403
|
-
}
|
|
169404
|
-
|
|
169405
169393
|
.bear-z-\[11500\] {
|
|
169406
169394
|
z-index: 11500;
|
|
169407
169395
|
}
|
|
@@ -169453,9 +169441,11 @@
|
|
|
169453
169441
|
|
|
169454
169442
|
/* Danger colors */
|
|
169455
169443
|
--bear-danger-50: #fef2f2;
|
|
169444
|
+
--bear-danger-200: #fecaca;
|
|
169456
169445
|
--bear-danger-500: #ef4444;
|
|
169457
169446
|
--bear-danger-600: #dc2626;
|
|
169458
169447
|
--bear-danger-700: #b91c1c;
|
|
169448
|
+
--bear-danger-800: #991b1b;
|
|
169459
169449
|
|
|
169460
169450
|
/* Info colors */
|
|
169461
169451
|
--bear-info-50: #eff6ff;
|
|
@@ -169862,13 +169852,13 @@
|
|
|
169862
169852
|
}
|
|
169863
169853
|
|
|
169864
169854
|
@keyframes grow-up {
|
|
169865
|
-
from {
|
|
169866
|
-
to { opacity: 1; }
|
|
169855
|
+
from { transform: scaleY(0); opacity: 0; }
|
|
169856
|
+
to { transform: scaleY(1); opacity: 1; }
|
|
169867
169857
|
}
|
|
169868
169858
|
|
|
169869
169859
|
@keyframes grow-right {
|
|
169870
|
-
from {
|
|
169871
|
-
to { opacity: 1; }
|
|
169860
|
+
from { transform: scaleX(0); opacity: 0; }
|
|
169861
|
+
to { transform: scaleX(1); opacity: 1; }
|
|
169872
169862
|
}
|
|
169873
169863
|
|
|
169874
169864
|
@keyframes draw-line {
|
|
@@ -169904,10 +169894,14 @@
|
|
|
169904
169894
|
/* Animation utility classes */
|
|
169905
169895
|
|
|
169906
169896
|
.animate-grow-up {
|
|
169897
|
+
transform-origin: bottom center;
|
|
169898
|
+
transform-box: fill-box;
|
|
169907
169899
|
animation: grow-up 0.5s ease-out forwards;
|
|
169908
169900
|
}
|
|
169909
169901
|
|
|
169910
169902
|
.animate-grow-right {
|
|
169903
|
+
transform-origin: left center;
|
|
169904
|
+
transform-box: fill-box;
|
|
169911
169905
|
animation: grow-right 0.5s ease-out forwards;
|
|
169912
169906
|
}
|
|
169913
169907
|
|
|
@@ -170008,7 +170002,6 @@
|
|
|
170008
170002
|
}
|
|
170009
170003
|
|
|
170010
170004
|
.Bear-Modal__container,
|
|
170011
|
-
.Bear-Drawer__panel,
|
|
170012
170005
|
.Bear-AlertDialog__container {
|
|
170013
170006
|
position: relative;
|
|
170014
170007
|
z-index: 1;
|
|
@@ -170151,202 +170144,1140 @@
|
|
|
170151
170144
|
color: #ffffff;
|
|
170152
170145
|
}
|
|
170153
170146
|
|
|
170154
|
-
.Bear-ResizableTextarea__handle--grip {
|
|
170155
|
-
background: linear-gradient(135deg, transparent 50%, currentColor 50%);
|
|
170147
|
+
.Bear-ResizableTextarea__handle--grip {
|
|
170148
|
+
background: linear-gradient(135deg, transparent 50%, currentColor 50%);
|
|
170149
|
+
}
|
|
170150
|
+
|
|
170151
|
+
.Bear-SignPad__canvas {
|
|
170152
|
+
position: relative;
|
|
170153
|
+
z-index: 0;
|
|
170154
|
+
}
|
|
170155
|
+
|
|
170156
|
+
.Bear-SignPad__placeholder,
|
|
170157
|
+
.Bear-SignPad__line,
|
|
170158
|
+
.Bear-SignPad__x-mark {
|
|
170159
|
+
z-index: 1;
|
|
170160
|
+
}
|
|
170161
|
+
|
|
170162
|
+
.Bear-SegmentedControl {
|
|
170163
|
+
position: relative;
|
|
170164
|
+
display: inline-flex;
|
|
170165
|
+
padding: 0.25rem;
|
|
170166
|
+
border-radius: 0.5rem;
|
|
170167
|
+
background: var(--bear-bg-tertiary);
|
|
170168
|
+
}
|
|
170169
|
+
|
|
170170
|
+
.Bear-SegmentedControl--full {
|
|
170171
|
+
width: 100%;
|
|
170172
|
+
}
|
|
170173
|
+
|
|
170174
|
+
.Bear-SegmentedControl--disabled {
|
|
170175
|
+
opacity: 0.5;
|
|
170176
|
+
pointer-events: none;
|
|
170177
|
+
}
|
|
170178
|
+
|
|
170179
|
+
.Bear-SegmentedControl__item {
|
|
170180
|
+
position: relative;
|
|
170181
|
+
flex: 1 1 auto;
|
|
170182
|
+
display: inline-flex;
|
|
170183
|
+
align-items: center;
|
|
170184
|
+
justify-content: center;
|
|
170185
|
+
border: 0;
|
|
170186
|
+
border-radius: 0.375rem;
|
|
170187
|
+
background: transparent;
|
|
170188
|
+
color: var(--bear-text-secondary);
|
|
170189
|
+
font-weight: 500;
|
|
170190
|
+
cursor: pointer;
|
|
170191
|
+
transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
|
|
170192
|
+
}
|
|
170193
|
+
|
|
170194
|
+
.Bear-SegmentedControl__item:hover {
|
|
170195
|
+
color: var(--bear-text-primary);
|
|
170196
|
+
}
|
|
170197
|
+
|
|
170198
|
+
.Bear-SegmentedControl__item--active {
|
|
170199
|
+
background: var(--bear-bg-primary);
|
|
170200
|
+
color: var(--bear-text-primary);
|
|
170201
|
+
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
|
|
170202
|
+
}
|
|
170203
|
+
|
|
170204
|
+
.bear-dark .Bear-SegmentedControl__item--active,
|
|
170205
|
+
.dark .Bear-SegmentedControl__item--active {
|
|
170206
|
+
background: var(--bear-bg-secondary);
|
|
170207
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
|
|
170208
|
+
}
|
|
170209
|
+
|
|
170210
|
+
.Bear-SegmentedControl__item--disabled {
|
|
170211
|
+
cursor: not-allowed;
|
|
170212
|
+
opacity: 0.5;
|
|
170213
|
+
}
|
|
170214
|
+
|
|
170215
|
+
.Bear-SegmentedControl__item--sm {
|
|
170216
|
+
min-height: 2rem;
|
|
170217
|
+
padding: 0 0.75rem;
|
|
170218
|
+
font-size: 0.875rem;
|
|
170219
|
+
}
|
|
170220
|
+
|
|
170221
|
+
.Bear-SegmentedControl__item--md {
|
|
170222
|
+
min-height: 2.5rem;
|
|
170223
|
+
padding: 0 1rem;
|
|
170224
|
+
font-size: 1rem;
|
|
170225
|
+
}
|
|
170226
|
+
|
|
170227
|
+
.Bear-SegmentedControl__item--lg {
|
|
170228
|
+
min-height: 3rem;
|
|
170229
|
+
padding: 0 1.25rem;
|
|
170230
|
+
font-size: 1.125rem;
|
|
170231
|
+
}
|
|
170232
|
+
|
|
170233
|
+
.Bear-RichEditor__content {
|
|
170234
|
+
line-height: 1.6;
|
|
170235
|
+
}
|
|
170236
|
+
|
|
170237
|
+
.Bear-RichEditor__content h1,
|
|
170238
|
+
.Bear-RichEditor__content h2,
|
|
170239
|
+
.Bear-RichEditor__content h3,
|
|
170240
|
+
.Bear-RichEditor__content h4,
|
|
170241
|
+
.Bear-RichEditor__content h5,
|
|
170242
|
+
.Bear-RichEditor__content h6 {
|
|
170243
|
+
font-weight: 600;
|
|
170244
|
+
color: var(--bear-text-primary);
|
|
170245
|
+
}
|
|
170246
|
+
|
|
170247
|
+
.Bear-RichEditor__content h1 { font-size: 2rem; margin: 0.67em 0; line-height: 1.2; }
|
|
170248
|
+
|
|
170249
|
+
.Bear-RichEditor__content h2 { font-size: 1.5rem; margin: 0.83em 0; line-height: 1.3; }
|
|
170250
|
+
|
|
170251
|
+
.Bear-RichEditor__content h3 { font-size: 1.25rem; margin: 1em 0; line-height: 1.4; }
|
|
170252
|
+
|
|
170253
|
+
.Bear-RichEditor__content h4 { font-size: 1.125rem; margin: 1.33em 0; }
|
|
170254
|
+
|
|
170255
|
+
.Bear-RichEditor__content h5 { font-size: 1rem; margin: 1.67em 0; }
|
|
170256
|
+
|
|
170257
|
+
.Bear-RichEditor__content h6 {
|
|
170258
|
+
font-size: 0.875rem;
|
|
170259
|
+
text-transform: uppercase;
|
|
170260
|
+
letter-spacing: 0.05em;
|
|
170261
|
+
margin: 2em 0;
|
|
170262
|
+
}
|
|
170263
|
+
|
|
170264
|
+
.Bear-RichEditor__content p { margin: 0.5em 0; }
|
|
170265
|
+
|
|
170266
|
+
.Bear-RichEditor__content ul,
|
|
170267
|
+
.Bear-RichEditor__content ol {
|
|
170268
|
+
padding-left: 1.5em;
|
|
170269
|
+
margin: 0.5em 0;
|
|
170270
|
+
display: block;
|
|
170271
|
+
}
|
|
170272
|
+
|
|
170273
|
+
.Bear-RichEditor__content ul { list-style-type: disc; }
|
|
170274
|
+
|
|
170275
|
+
.Bear-RichEditor__content ol { list-style-type: decimal; }
|
|
170276
|
+
|
|
170277
|
+
.Bear-RichEditor__content li { margin: 0.25em 0; display: list-item; }
|
|
170278
|
+
|
|
170279
|
+
.Bear-RichEditor__content blockquote {
|
|
170280
|
+
border-left: 4px solid var(--bear-primary-500);
|
|
170281
|
+
margin: 1em 0;
|
|
170282
|
+
color: var(--bear-text-secondary);
|
|
170283
|
+
font-style: italic;
|
|
170284
|
+
background: color-mix(in srgb, var(--bear-primary-500) 8%, transparent);
|
|
170285
|
+
padding: 0.5em 1em;
|
|
170286
|
+
border-radius: 0 0.375rem 0.375rem 0;
|
|
170287
|
+
}
|
|
170288
|
+
|
|
170289
|
+
.Bear-RichEditor__content pre,
|
|
170290
|
+
.Bear-RichEditor__content code {
|
|
170291
|
+
background: var(--bear-bg-tertiary);
|
|
170292
|
+
color: var(--bear-text-primary);
|
|
170293
|
+
font-family: var(--bear-font-mono);
|
|
170294
|
+
}
|
|
170295
|
+
|
|
170296
|
+
.Bear-RichEditor__content pre {
|
|
170297
|
+
padding: 1em;
|
|
170298
|
+
border-radius: 0.5rem;
|
|
170299
|
+
font-size: 0.875em;
|
|
170300
|
+
overflow-x: auto;
|
|
170301
|
+
margin: 1em 0;
|
|
170302
|
+
white-space: pre-wrap;
|
|
170303
|
+
word-break: break-word;
|
|
170304
|
+
border: 1px solid var(--bear-border-default);
|
|
170305
|
+
}
|
|
170306
|
+
|
|
170307
|
+
.Bear-RichEditor__content code {
|
|
170308
|
+
padding: 0.125em 0.25em;
|
|
170309
|
+
border-radius: 0.25rem;
|
|
170310
|
+
font-size: 0.875em;
|
|
170311
|
+
}
|
|
170312
|
+
|
|
170313
|
+
.Bear-RichEditor__content a {
|
|
170314
|
+
color: var(--bear-primary-500);
|
|
170315
|
+
text-decoration: underline;
|
|
170316
|
+
cursor: pointer;
|
|
170317
|
+
}
|
|
170318
|
+
|
|
170319
|
+
.Bear-RichEditor__content img {
|
|
170320
|
+
max-width: 100%;
|
|
170321
|
+
height: auto;
|
|
170322
|
+
border-radius: 0.5rem;
|
|
170323
|
+
margin: 1em 0;
|
|
170324
|
+
display: block;
|
|
170325
|
+
}
|
|
170326
|
+
|
|
170327
|
+
.Bear-RichEditor__content table {
|
|
170328
|
+
border-collapse: collapse;
|
|
170329
|
+
width: 100%;
|
|
170330
|
+
margin: 1em 0;
|
|
170331
|
+
}
|
|
170332
|
+
|
|
170333
|
+
.Bear-RichEditor__content th,
|
|
170334
|
+
.Bear-RichEditor__content td {
|
|
170335
|
+
border: 1px solid var(--bear-border-default);
|
|
170336
|
+
padding: 0.5em;
|
|
170337
|
+
text-align: left;
|
|
170338
|
+
}
|
|
170339
|
+
|
|
170340
|
+
.Bear-RichEditor__content th {
|
|
170341
|
+
background: var(--bear-bg-tertiary);
|
|
170342
|
+
font-weight: 600;
|
|
170343
|
+
}
|
|
170344
|
+
|
|
170345
|
+
.Bear-Drawer {
|
|
170346
|
+
position: fixed;
|
|
170347
|
+
inset: 0;
|
|
170348
|
+
z-index: var(--bear-z-overlay, 11000);
|
|
170349
|
+
isolation: isolate;
|
|
170350
|
+
}
|
|
170351
|
+
|
|
170352
|
+
.Bear-Drawer__panel {
|
|
170353
|
+
position: absolute;
|
|
170354
|
+
z-index: 1;
|
|
170355
|
+
display: flex;
|
|
170356
|
+
flex-direction: column;
|
|
170357
|
+
overflow: hidden;
|
|
170358
|
+
background: var(--bear-bg-primary, #fff);
|
|
170359
|
+
box-shadow: 0 25px 50px -12px rgb(15 23 42 / 0.25);
|
|
170360
|
+
opacity: 1;
|
|
170361
|
+
transition:
|
|
170362
|
+
transform var(--bear-drawer-duration, 300ms) ease,
|
|
170363
|
+
opacity var(--bear-drawer-duration, 300ms) ease;
|
|
170364
|
+
}
|
|
170365
|
+
|
|
170366
|
+
.bear-dark .Bear-Drawer__panel,
|
|
170367
|
+
.dark .Bear-Drawer__panel {
|
|
170368
|
+
background: var(--bear-bg-secondary, #171717);
|
|
170369
|
+
}
|
|
170370
|
+
|
|
170371
|
+
.Bear-Drawer__panel--left {
|
|
170372
|
+
left: 0;
|
|
170373
|
+
top: 0;
|
|
170374
|
+
height: 100%;
|
|
170375
|
+
border-right: 1px solid var(--bear-border, #e5e5e5);
|
|
170376
|
+
transform: translateX(-100%);
|
|
170377
|
+
}
|
|
170378
|
+
|
|
170379
|
+
.Bear-Drawer__panel--right {
|
|
170380
|
+
right: 0;
|
|
170381
|
+
top: 0;
|
|
170382
|
+
height: 100%;
|
|
170383
|
+
border-left: 1px solid var(--bear-border, #e5e5e5);
|
|
170384
|
+
transform: translateX(100%);
|
|
170385
|
+
}
|
|
170386
|
+
|
|
170387
|
+
.Bear-Drawer__panel--top {
|
|
170388
|
+
top: 0;
|
|
170389
|
+
left: 0;
|
|
170390
|
+
width: 100%;
|
|
170391
|
+
border-bottom: 1px solid var(--bear-border, #e5e5e5);
|
|
170392
|
+
transform: translateY(-100%);
|
|
170393
|
+
}
|
|
170394
|
+
|
|
170395
|
+
.Bear-Drawer__panel--bottom {
|
|
170396
|
+
bottom: 0;
|
|
170397
|
+
left: 0;
|
|
170398
|
+
width: 100%;
|
|
170399
|
+
border-top: 1px solid var(--bear-border, #e5e5e5);
|
|
170400
|
+
transform: translateY(100%);
|
|
170401
|
+
}
|
|
170402
|
+
|
|
170403
|
+
.Bear-Drawer__panel--open.Bear-Drawer__panel--left,
|
|
170404
|
+
.Bear-Drawer__panel--open.Bear-Drawer__panel--right {
|
|
170405
|
+
transform: translateX(0);
|
|
170406
|
+
}
|
|
170407
|
+
|
|
170408
|
+
.Bear-Drawer__panel--open.Bear-Drawer__panel--top,
|
|
170409
|
+
.Bear-Drawer__panel--open.Bear-Drawer__panel--bottom {
|
|
170410
|
+
transform: translateY(0);
|
|
170411
|
+
}
|
|
170412
|
+
|
|
170413
|
+
.Bear-Drawer__panel--effect-none {
|
|
170414
|
+
transition: none;
|
|
170415
|
+
}
|
|
170416
|
+
|
|
170417
|
+
.Bear-Drawer__panel--left.Bear-Drawer__panel--effect-none,
|
|
170418
|
+
.Bear-Drawer__panel--right.Bear-Drawer__panel--effect-none,
|
|
170419
|
+
.Bear-Drawer__panel--top.Bear-Drawer__panel--effect-none,
|
|
170420
|
+
.Bear-Drawer__panel--bottom.Bear-Drawer__panel--effect-none {
|
|
170421
|
+
transform: none;
|
|
170422
|
+
opacity: 1;
|
|
170423
|
+
}
|
|
170424
|
+
|
|
170425
|
+
.Bear-Drawer__panel--left.Bear-Drawer__panel--effect-fade,
|
|
170426
|
+
.Bear-Drawer__panel--right.Bear-Drawer__panel--effect-fade,
|
|
170427
|
+
.Bear-Drawer__panel--top.Bear-Drawer__panel--effect-fade,
|
|
170428
|
+
.Bear-Drawer__panel--bottom.Bear-Drawer__panel--effect-fade {
|
|
170429
|
+
transform: none;
|
|
170430
|
+
opacity: 0;
|
|
170431
|
+
}
|
|
170432
|
+
|
|
170433
|
+
.Bear-Drawer__panel--effect-fade.Bear-Drawer__panel--open {
|
|
170434
|
+
opacity: 1;
|
|
170435
|
+
}
|
|
170436
|
+
|
|
170437
|
+
.Bear-Drawer__panel--left.Bear-Drawer__panel--effect-scale {
|
|
170438
|
+
transform: scale(0.96);
|
|
170439
|
+
transform-origin: left center;
|
|
170440
|
+
opacity: 0;
|
|
170441
|
+
}
|
|
170442
|
+
|
|
170443
|
+
.Bear-Drawer__panel--right.Bear-Drawer__panel--effect-scale {
|
|
170444
|
+
transform: scale(0.96);
|
|
170445
|
+
transform-origin: right center;
|
|
170446
|
+
opacity: 0;
|
|
170447
|
+
}
|
|
170448
|
+
|
|
170449
|
+
.Bear-Drawer__panel--top.Bear-Drawer__panel--effect-scale {
|
|
170450
|
+
transform: scale(0.96);
|
|
170451
|
+
transform-origin: top center;
|
|
170452
|
+
opacity: 0;
|
|
170453
|
+
}
|
|
170454
|
+
|
|
170455
|
+
.Bear-Drawer__panel--bottom.Bear-Drawer__panel--effect-scale {
|
|
170456
|
+
transform: scale(0.96);
|
|
170457
|
+
transform-origin: bottom center;
|
|
170458
|
+
opacity: 0;
|
|
170459
|
+
}
|
|
170460
|
+
|
|
170461
|
+
.Bear-Drawer__panel--effect-scale.Bear-Drawer__panel--open {
|
|
170462
|
+
transform: scale(1);
|
|
170463
|
+
opacity: 1;
|
|
170464
|
+
}
|
|
170465
|
+
|
|
170466
|
+
.Bear-Drawer__header {
|
|
170467
|
+
display: flex;
|
|
170468
|
+
align-items: center;
|
|
170469
|
+
justify-content: space-between;
|
|
170470
|
+
flex-shrink: 0;
|
|
170471
|
+
padding: 0.75rem 1rem;
|
|
170472
|
+
border-bottom: 1px solid var(--bear-border, #e5e5e5);
|
|
170473
|
+
}
|
|
170474
|
+
|
|
170475
|
+
.Bear-Drawer__title {
|
|
170476
|
+
margin: 0;
|
|
170477
|
+
font-size: 1.125rem;
|
|
170478
|
+
font-weight: 600;
|
|
170479
|
+
color: var(--bear-text-primary, #171717);
|
|
170480
|
+
}
|
|
170481
|
+
|
|
170482
|
+
.Bear-Drawer__header--close-start {
|
|
170483
|
+
flex-direction: row-reverse;
|
|
170484
|
+
}
|
|
170485
|
+
|
|
170486
|
+
.Bear-Drawer__close {
|
|
170487
|
+
padding: 0.25rem;
|
|
170488
|
+
border: 0;
|
|
170489
|
+
border-radius: 0.5rem;
|
|
170490
|
+
background: transparent;
|
|
170491
|
+
color: var(--bear-text-secondary, #737373);
|
|
170492
|
+
cursor: pointer;
|
|
170493
|
+
}
|
|
170494
|
+
|
|
170495
|
+
.Bear-Drawer__close:hover {
|
|
170496
|
+
color: var(--bear-text-primary, #171717);
|
|
170497
|
+
background: var(--bear-bg-tertiary, #f5f5f5);
|
|
170498
|
+
}
|
|
170499
|
+
|
|
170500
|
+
.Bear-Drawer__body {
|
|
170501
|
+
flex: 1 1 auto;
|
|
170502
|
+
min-height: 0;
|
|
170503
|
+
overflow-y: auto;
|
|
170504
|
+
overscroll-behavior: contain;
|
|
170505
|
+
padding: 1rem;
|
|
170506
|
+
}
|
|
170507
|
+
|
|
170508
|
+
.Bear-Drawer__panel--sm.Bear-Drawer__panel--left,
|
|
170509
|
+
.Bear-Drawer__panel--sm.Bear-Drawer__panel--right {
|
|
170510
|
+
width: 16rem;
|
|
170511
|
+
max-width: 100%;
|
|
170512
|
+
}
|
|
170513
|
+
|
|
170514
|
+
.Bear-Drawer__panel--md.Bear-Drawer__panel--left,
|
|
170515
|
+
.Bear-Drawer__panel--md.Bear-Drawer__panel--right {
|
|
170516
|
+
width: 20rem;
|
|
170517
|
+
max-width: 100%;
|
|
170518
|
+
}
|
|
170519
|
+
|
|
170520
|
+
.Bear-Drawer__panel--lg.Bear-Drawer__panel--left,
|
|
170521
|
+
.Bear-Drawer__panel--lg.Bear-Drawer__panel--right {
|
|
170522
|
+
width: 24rem;
|
|
170523
|
+
max-width: 100%;
|
|
170524
|
+
}
|
|
170525
|
+
|
|
170526
|
+
.Bear-Drawer__panel--xl.Bear-Drawer__panel--left,
|
|
170527
|
+
.Bear-Drawer__panel--xl.Bear-Drawer__panel--right {
|
|
170528
|
+
width: 32rem;
|
|
170529
|
+
max-width: 100%;
|
|
170530
|
+
}
|
|
170531
|
+
|
|
170532
|
+
.Bear-Drawer__panel--sm.Bear-Drawer__panel--top,
|
|
170533
|
+
.Bear-Drawer__panel--sm.Bear-Drawer__panel--bottom {
|
|
170534
|
+
height: 8rem;
|
|
170535
|
+
}
|
|
170536
|
+
|
|
170537
|
+
.Bear-Drawer__panel--md.Bear-Drawer__panel--top,
|
|
170538
|
+
.Bear-Drawer__panel--md.Bear-Drawer__panel--bottom {
|
|
170539
|
+
height: 12rem;
|
|
170540
|
+
}
|
|
170541
|
+
|
|
170542
|
+
.Bear-Drawer__panel--lg.Bear-Drawer__panel--top,
|
|
170543
|
+
.Bear-Drawer__panel--lg.Bear-Drawer__panel--bottom {
|
|
170544
|
+
height: 16rem;
|
|
170545
|
+
}
|
|
170546
|
+
|
|
170547
|
+
.Bear-Drawer__panel--xl.Bear-Drawer__panel--top,
|
|
170548
|
+
.Bear-Drawer__panel--xl.Bear-Drawer__panel--bottom {
|
|
170549
|
+
height: 24rem;
|
|
170550
|
+
}
|
|
170551
|
+
|
|
170552
|
+
@media (max-width: 640px) {
|
|
170553
|
+
.Bear-Drawer__panel--left,
|
|
170554
|
+
.Bear-Drawer__panel--right {
|
|
170555
|
+
width: 100%;
|
|
170556
|
+
}
|
|
170557
|
+
}
|
|
170558
|
+
|
|
170559
|
+
.Bear-Chat {
|
|
170560
|
+
display: flex;
|
|
170561
|
+
flex-direction: column;
|
|
170562
|
+
overflow: hidden;
|
|
170563
|
+
height: var(--Bear-Chat-height, 400px);
|
|
170564
|
+
background-color: var(--bear-bg-primary);
|
|
170565
|
+
border: 1px solid var(--bear-border-default);
|
|
170566
|
+
border-radius: var(--bear-radius-lg, 0.75rem);
|
|
170567
|
+
}
|
|
170568
|
+
|
|
170569
|
+
.Bear-Chat__header,
|
|
170570
|
+
.Bear-Chat__footer,
|
|
170571
|
+
.Bear-Chat__composer {
|
|
170572
|
+
flex-shrink: 0;
|
|
170573
|
+
border-color: var(--bear-border-default);
|
|
170574
|
+
}
|
|
170575
|
+
|
|
170576
|
+
.Bear-Chat__header {
|
|
170577
|
+
padding: 0.75rem 1rem;
|
|
170578
|
+
border-bottom: 1px solid var(--bear-border-default);
|
|
170579
|
+
}
|
|
170580
|
+
|
|
170581
|
+
.Bear-Chat__messages {
|
|
170582
|
+
position: relative;
|
|
170583
|
+
flex: 1 1 auto;
|
|
170584
|
+
min-height: 0;
|
|
170585
|
+
overflow-y: auto;
|
|
170586
|
+
padding: 1rem;
|
|
170587
|
+
}
|
|
170588
|
+
|
|
170589
|
+
.Bear-Chat__live {
|
|
170590
|
+
position: absolute;
|
|
170591
|
+
width: 1px;
|
|
170592
|
+
height: 1px;
|
|
170593
|
+
overflow: hidden;
|
|
170594
|
+
clip: rect(0 0 0 0);
|
|
170595
|
+
}
|
|
170596
|
+
|
|
170597
|
+
.Bear-Chat__composer {
|
|
170598
|
+
padding: 0.75rem;
|
|
170599
|
+
border-top: 1px solid var(--bear-border-default);
|
|
170600
|
+
}
|
|
170601
|
+
|
|
170602
|
+
.Bear-Chat__new-messages {
|
|
170603
|
+
position: sticky;
|
|
170604
|
+
bottom: 0.5rem;
|
|
170605
|
+
margin-inline: auto;
|
|
170606
|
+
}
|
|
170607
|
+
|
|
170608
|
+
.Bear-ChatBubble {
|
|
170609
|
+
display: flex;
|
|
170610
|
+
gap: 0.5rem;
|
|
170611
|
+
margin-bottom: 0.75rem;
|
|
170612
|
+
}
|
|
170613
|
+
|
|
170614
|
+
.Bear-ChatBubble--user {
|
|
170615
|
+
flex-direction: row-reverse;
|
|
170616
|
+
}
|
|
170617
|
+
|
|
170618
|
+
.Bear-ChatBubble--system {
|
|
170619
|
+
justify-content: center;
|
|
170620
|
+
}
|
|
170621
|
+
|
|
170622
|
+
.Bear-ChatBubble__body {
|
|
170623
|
+
display: flex;
|
|
170624
|
+
flex-direction: column;
|
|
170625
|
+
max-width: 70%;
|
|
170626
|
+
}
|
|
170627
|
+
|
|
170628
|
+
.Bear-ChatBubble--user .Bear-ChatBubble__body {
|
|
170629
|
+
align-items: flex-end;
|
|
170630
|
+
}
|
|
170631
|
+
|
|
170632
|
+
.Bear-ChatBubble--bot .Bear-ChatBubble__body,
|
|
170633
|
+
.Bear-ChatBubble--assistant .Bear-ChatBubble__body {
|
|
170634
|
+
align-items: flex-start;
|
|
170635
|
+
}
|
|
170636
|
+
|
|
170637
|
+
.Bear-ChatBubble__bubble {
|
|
170638
|
+
padding: 0.5rem 1rem;
|
|
170639
|
+
border-radius: 1rem;
|
|
170640
|
+
background-color: var(--bear-bg-secondary);
|
|
170641
|
+
color: var(--bear-text-primary);
|
|
170642
|
+
}
|
|
170643
|
+
|
|
170644
|
+
.Bear-ChatBubble--user .Bear-ChatBubble__bubble {
|
|
170645
|
+
background-color: var(--bear-primary-500);
|
|
170646
|
+
color: var(--bear-text-inverted, #fff);
|
|
170647
|
+
border-bottom-right-radius: 0.25rem;
|
|
170648
|
+
}
|
|
170649
|
+
|
|
170650
|
+
.Bear-ChatBubble--bot .Bear-ChatBubble__bubble,
|
|
170651
|
+
.Bear-ChatBubble--assistant .Bear-ChatBubble__bubble {
|
|
170652
|
+
border-bottom-left-radius: 0.25rem;
|
|
170653
|
+
}
|
|
170654
|
+
|
|
170655
|
+
.Bear-ChatBubble--system .Bear-ChatBubble__bubble {
|
|
170656
|
+
background-color: transparent;
|
|
170657
|
+
color: var(--bear-text-muted);
|
|
170658
|
+
padding: 0.25rem 0.75rem;
|
|
170659
|
+
}
|
|
170660
|
+
|
|
170661
|
+
.Bear-ChatBubble__meta {
|
|
170662
|
+
display: flex;
|
|
170663
|
+
align-items: center;
|
|
170664
|
+
gap: 0.25rem;
|
|
170665
|
+
margin-top: 0.25rem;
|
|
170666
|
+
}
|
|
170667
|
+
|
|
170668
|
+
.Bear-ChatBubble__status--read {
|
|
170669
|
+
color: var(--bear-info-500);
|
|
170670
|
+
}
|
|
170671
|
+
|
|
170672
|
+
.Bear-ChatBubble__status--error {
|
|
170673
|
+
color: var(--bear-danger-500);
|
|
170674
|
+
}
|
|
170675
|
+
|
|
170676
|
+
.Bear-ChatTyping {
|
|
170677
|
+
display: flex;
|
|
170678
|
+
align-items: center;
|
|
170679
|
+
gap: 0.5rem;
|
|
170680
|
+
margin-bottom: 0.75rem;
|
|
170681
|
+
}
|
|
170682
|
+
|
|
170683
|
+
.Bear-ChatTyping__dots {
|
|
170684
|
+
display: flex;
|
|
170685
|
+
gap: 0.25rem;
|
|
170686
|
+
padding: 0.75rem 1rem;
|
|
170687
|
+
border-radius: 1rem;
|
|
170688
|
+
border-bottom-left-radius: 0.25rem;
|
|
170689
|
+
background-color: var(--bear-bg-secondary);
|
|
170690
|
+
}
|
|
170691
|
+
|
|
170692
|
+
.Bear-ChatTyping__dot {
|
|
170693
|
+
width: 0.5rem;
|
|
170694
|
+
height: 0.5rem;
|
|
170695
|
+
border-radius: 999px;
|
|
170696
|
+
background-color: var(--bear-text-muted);
|
|
170697
|
+
animation: Bear-ChatTyping-bounce 1s ease-in-out infinite;
|
|
170698
|
+
}
|
|
170699
|
+
|
|
170700
|
+
.Bear-ChatTyping__dot:nth-child(2) {
|
|
170701
|
+
animation-delay: 150ms;
|
|
170702
|
+
}
|
|
170703
|
+
|
|
170704
|
+
.Bear-ChatTyping__dot:nth-child(3) {
|
|
170705
|
+
animation-delay: 300ms;
|
|
170706
|
+
}
|
|
170707
|
+
|
|
170708
|
+
@keyframes Bear-ChatTyping-bounce {
|
|
170709
|
+
0%,
|
|
170710
|
+
80%,
|
|
170711
|
+
100% {
|
|
170712
|
+
transform: translateY(0);
|
|
170713
|
+
opacity: 0.45;
|
|
170714
|
+
}
|
|
170715
|
+
40% {
|
|
170716
|
+
transform: translateY(-3px);
|
|
170717
|
+
opacity: 1;
|
|
170718
|
+
}
|
|
170719
|
+
}
|
|
170720
|
+
|
|
170721
|
+
.bear-reduced-motion .Bear-ChatTyping__dot {
|
|
170722
|
+
animation: none;
|
|
170723
|
+
}
|
|
170724
|
+
|
|
170725
|
+
.Bear-PromptComposer {
|
|
170726
|
+
display: flex;
|
|
170727
|
+
flex-direction: column;
|
|
170728
|
+
gap: 0.5rem;
|
|
170729
|
+
}
|
|
170730
|
+
|
|
170731
|
+
.Bear-PromptComposer__files {
|
|
170732
|
+
display: flex;
|
|
170733
|
+
flex-wrap: wrap;
|
|
170734
|
+
gap: 0.5rem;
|
|
170735
|
+
}
|
|
170736
|
+
|
|
170737
|
+
.Bear-PromptComposer__row {
|
|
170738
|
+
display: flex;
|
|
170739
|
+
align-items: flex-end;
|
|
170740
|
+
gap: 0.5rem;
|
|
170741
|
+
}
|
|
170742
|
+
|
|
170743
|
+
.Bear-PromptComposer__field {
|
|
170744
|
+
flex: 1 1 auto;
|
|
170745
|
+
min-width: 0;
|
|
170746
|
+
}
|
|
170747
|
+
|
|
170748
|
+
.Bear-PromptComposer__textarea {
|
|
170749
|
+
display: block;
|
|
170750
|
+
width: 100%;
|
|
170751
|
+
min-height: 2.75rem;
|
|
170752
|
+
max-height: 10rem;
|
|
170753
|
+
resize: none;
|
|
170754
|
+
padding: 0.625rem 0.75rem;
|
|
170755
|
+
border: 1px solid var(--bear-border-default);
|
|
170756
|
+
border-radius: var(--bear-radius-md, 0.5rem);
|
|
170757
|
+
background-color: var(--bear-bg-secondary);
|
|
170758
|
+
color: var(--bear-text-primary);
|
|
170759
|
+
font: inherit;
|
|
170760
|
+
}
|
|
170761
|
+
|
|
170762
|
+
.Bear-PromptComposer__textarea:focus {
|
|
170763
|
+
outline: 2px solid var(--bear-primary-500);
|
|
170764
|
+
outline-offset: 1px;
|
|
170765
|
+
}
|
|
170766
|
+
|
|
170767
|
+
.Bear-PromptComposer__textarea:disabled {
|
|
170768
|
+
opacity: 0.6;
|
|
170769
|
+
}
|
|
170770
|
+
|
|
170771
|
+
.Bear-StreamingMessage {
|
|
170772
|
+
display: flex;
|
|
170773
|
+
flex-direction: column;
|
|
170774
|
+
gap: 0.25rem;
|
|
170775
|
+
}
|
|
170776
|
+
|
|
170777
|
+
.Bear-StreamingMessage__cursor {
|
|
170778
|
+
display: inline-block;
|
|
170779
|
+
width: 0.45em;
|
|
170780
|
+
margin-inline-start: 0.1em;
|
|
170781
|
+
background-color: currentColor;
|
|
170782
|
+
animation: Bear-StreamingMessage-blink 1s step-end infinite;
|
|
170783
|
+
}
|
|
170784
|
+
|
|
170785
|
+
@keyframes Bear-StreamingMessage-blink {
|
|
170786
|
+
50% {
|
|
170787
|
+
opacity: 0;
|
|
170788
|
+
}
|
|
170789
|
+
}
|
|
170790
|
+
|
|
170791
|
+
.bear-reduced-motion .Bear-StreamingMessage__cursor {
|
|
170792
|
+
animation: none;
|
|
170793
|
+
}
|
|
170794
|
+
|
|
170795
|
+
.Bear-ThinkingBlock {
|
|
170796
|
+
border: 1px solid var(--bear-border-subtle);
|
|
170797
|
+
border-radius: var(--bear-radius-md, 0.5rem);
|
|
170798
|
+
background-color: var(--bear-bg-secondary);
|
|
170799
|
+
overflow: hidden;
|
|
170800
|
+
}
|
|
170801
|
+
|
|
170802
|
+
.Bear-ThinkingBlock__trigger {
|
|
170803
|
+
width: 100%;
|
|
170804
|
+
text-align: start;
|
|
170805
|
+
}
|
|
170806
|
+
|
|
170807
|
+
.Bear-ThinkingBlock__body {
|
|
170808
|
+
padding: 0 0.75rem 0.75rem;
|
|
170809
|
+
color: var(--bear-text-secondary);
|
|
170810
|
+
}
|
|
170811
|
+
|
|
170812
|
+
.Bear-PromptSuggestions {
|
|
170813
|
+
display: flex;
|
|
170814
|
+
flex-wrap: wrap;
|
|
170815
|
+
gap: 0.5rem;
|
|
170816
|
+
}
|
|
170817
|
+
|
|
170818
|
+
.Bear-MessageActions {
|
|
170819
|
+
display: flex;
|
|
170820
|
+
flex-wrap: wrap;
|
|
170821
|
+
gap: 0.25rem;
|
|
170822
|
+
}
|
|
170823
|
+
|
|
170824
|
+
.Bear-ChatError {
|
|
170825
|
+
border: 1px solid var(--bear-danger-500);
|
|
170826
|
+
background-color: color-mix(in srgb, var(--bear-danger-500) 12%, var(--bear-bg-primary));
|
|
170827
|
+
color: var(--bear-danger-700);
|
|
170828
|
+
border-radius: var(--bear-radius-md, 0.5rem);
|
|
170829
|
+
padding: 0.75rem 1rem;
|
|
170830
|
+
}
|
|
170831
|
+
|
|
170832
|
+
.Bear-ChatError .Bear-Typography,
|
|
170833
|
+
.Bear-ChatError .Bear-Button {
|
|
170834
|
+
color: inherit;
|
|
170835
|
+
}
|
|
170836
|
+
|
|
170837
|
+
.dark .Bear-ChatError,
|
|
170838
|
+
.bear-dark .Bear-ChatError {
|
|
170839
|
+
background-color: color-mix(in srgb, var(--bear-danger-500) 20%, var(--bear-bg-secondary));
|
|
170840
|
+
color: var(--bear-danger-200);
|
|
170841
|
+
border-color: var(--bear-danger-500);
|
|
170842
|
+
}
|
|
170843
|
+
|
|
170844
|
+
.Bear-ToolCall {
|
|
170845
|
+
border: 1px solid var(--bear-border-default);
|
|
170846
|
+
border-radius: var(--bear-radius-md, 0.5rem);
|
|
170847
|
+
background-color: var(--bear-bg-secondary);
|
|
170848
|
+
padding: 0.75rem 1rem;
|
|
170849
|
+
}
|
|
170850
|
+
|
|
170851
|
+
.Bear-ToolCall--running {
|
|
170852
|
+
border-color: var(--bear-info-500);
|
|
170853
|
+
}
|
|
170854
|
+
|
|
170855
|
+
.Bear-ToolCall--success {
|
|
170856
|
+
border-color: var(--bear-success-500);
|
|
170857
|
+
}
|
|
170858
|
+
|
|
170859
|
+
.Bear-ToolCall--error {
|
|
170860
|
+
border-color: var(--bear-danger-500);
|
|
170861
|
+
}
|
|
170862
|
+
|
|
170863
|
+
.Bear-CitationList {
|
|
170864
|
+
display: flex;
|
|
170865
|
+
flex-direction: column;
|
|
170866
|
+
gap: 0.5rem;
|
|
170867
|
+
}
|
|
170868
|
+
|
|
170869
|
+
.Bear-CitationList__item {
|
|
170870
|
+
border: 1px solid var(--bear-border-subtle);
|
|
170871
|
+
border-radius: var(--bear-radius-md, 0.5rem);
|
|
170872
|
+
padding: 0.5rem 0.75rem;
|
|
170873
|
+
background-color: var(--bear-bg-secondary);
|
|
170874
|
+
}
|
|
170875
|
+
|
|
170876
|
+
.Bear-ApprovalCard,
|
|
170877
|
+
.Bear-ArtifactCard {
|
|
170878
|
+
border: 1px solid var(--bear-border-default);
|
|
170879
|
+
border-radius: var(--bear-radius-md, 0.5rem);
|
|
170880
|
+
background-color: var(--bear-bg-primary);
|
|
170881
|
+
padding: 0.75rem 1rem;
|
|
170882
|
+
}
|
|
170883
|
+
|
|
170884
|
+
.Bear-ContextMeter {
|
|
170885
|
+
display: flex;
|
|
170886
|
+
flex-direction: column;
|
|
170887
|
+
gap: 0.25rem;
|
|
170888
|
+
}
|
|
170889
|
+
|
|
170890
|
+
.Bear-ContextMeter__track {
|
|
170891
|
+
height: 0.375rem;
|
|
170892
|
+
overflow: hidden;
|
|
170893
|
+
border-radius: 999px;
|
|
170894
|
+
background-color: var(--bear-bg-tertiary);
|
|
170895
|
+
}
|
|
170896
|
+
|
|
170897
|
+
.Bear-ContextMeter__fill {
|
|
170898
|
+
height: 100%;
|
|
170899
|
+
width: var(--Bear-ContextMeter-percent, 0%);
|
|
170900
|
+
background-color: var(--bear-primary-500);
|
|
170901
|
+
}
|
|
170902
|
+
|
|
170903
|
+
.Bear-ContextMeter--warn .Bear-ContextMeter__fill {
|
|
170904
|
+
background-color: var(--bear-warning-500);
|
|
170905
|
+
}
|
|
170906
|
+
|
|
170907
|
+
.Bear-ContextMeter--danger .Bear-ContextMeter__fill {
|
|
170908
|
+
background-color: var(--bear-danger-500);
|
|
170909
|
+
}
|
|
170910
|
+
|
|
170911
|
+
.Bear-ModelSelect {
|
|
170912
|
+
min-width: 10rem;
|
|
170913
|
+
}
|
|
170914
|
+
|
|
170915
|
+
.Bear-ThemeSwitcher {
|
|
170916
|
+
display: inline-flex;
|
|
170917
|
+
}
|
|
170918
|
+
|
|
170919
|
+
.Bear-FloatingChat {
|
|
170920
|
+
position: fixed;
|
|
170921
|
+
z-index: var(--bear-z-overlay, 11000);
|
|
170922
|
+
inset-inline-end: var(--Bear-FloatingChat-side, 24px);
|
|
170923
|
+
bottom: var(--Bear-FloatingChat-bottom, 24px);
|
|
170924
|
+
}
|
|
170925
|
+
|
|
170926
|
+
.Bear-FloatingChat--left {
|
|
170927
|
+
inset-inline-end: auto;
|
|
170928
|
+
inset-inline-start: var(--Bear-FloatingChat-side, 24px);
|
|
170929
|
+
}
|
|
170930
|
+
|
|
170931
|
+
.Bear-FloatingChat__window {
|
|
170932
|
+
position: absolute;
|
|
170933
|
+
bottom: calc(var(--Bear-FloatingChat-trigger, 3.5rem) + 0.75rem);
|
|
170934
|
+
inset-inline-end: 0;
|
|
170935
|
+
width: var(--Bear-FloatingChat-width, 360px);
|
|
170936
|
+
height: var(--Bear-FloatingChat-height, 520px);
|
|
170937
|
+
overflow: hidden;
|
|
170938
|
+
border: 1px solid var(--bear-border-default);
|
|
170939
|
+
border-radius: 1rem;
|
|
170940
|
+
background-color: var(--bear-bg-primary);
|
|
170941
|
+
box-shadow: var(--bear-shadow-xl, 0 25px 50px -12px rgb(15 23 42 / 0.25));
|
|
170942
|
+
}
|
|
170943
|
+
|
|
170944
|
+
.Bear-FloatingChat--left .Bear-FloatingChat__window {
|
|
170945
|
+
inset-inline-end: auto;
|
|
170946
|
+
inset-inline-start: 0;
|
|
170947
|
+
}
|
|
170948
|
+
|
|
170949
|
+
.Bear-FloatingChat__window--closed {
|
|
170950
|
+
opacity: 0;
|
|
170951
|
+
pointer-events: none;
|
|
170952
|
+
}
|
|
170953
|
+
|
|
170954
|
+
.Bear-FloatingChat__header {
|
|
170955
|
+
display: flex;
|
|
170956
|
+
align-items: center;
|
|
170957
|
+
gap: 0.75rem;
|
|
170958
|
+
padding: 0.75rem 1rem;
|
|
170959
|
+
background-color: var(--bear-primary-500);
|
|
170960
|
+
color: var(--bear-text-inverted, #fff);
|
|
170961
|
+
}
|
|
170962
|
+
|
|
170963
|
+
.Bear-FloatingChat__title,
|
|
170964
|
+
.Bear-FloatingChat__subtitle {
|
|
170965
|
+
color: inherit;
|
|
170966
|
+
}
|
|
170967
|
+
|
|
170968
|
+
.Bear-FloatingChat__trigger {
|
|
170969
|
+
position: relative;
|
|
170970
|
+
}
|
|
170971
|
+
|
|
170972
|
+
.Bear-FloatingChat__badge {
|
|
170973
|
+
position: absolute;
|
|
170974
|
+
top: -0.25rem;
|
|
170975
|
+
inset-inline-end: -0.25rem;
|
|
170976
|
+
}
|
|
170977
|
+
|
|
170978
|
+
.Bear-FloatingChat__powered {
|
|
170979
|
+
padding: 0.5rem 0.75rem;
|
|
170980
|
+
text-align: center;
|
|
170981
|
+
border-top: 1px solid var(--bear-border-default);
|
|
170982
|
+
}
|
|
170983
|
+
|
|
170984
|
+
.Bear-Drawer--persistent,
|
|
170985
|
+
.Bear-Drawer--permanent {
|
|
170986
|
+
pointer-events: none;
|
|
170987
|
+
}
|
|
170988
|
+
|
|
170989
|
+
.Bear-Drawer--persistent .Bear-Drawer__panel,
|
|
170990
|
+
.Bear-Drawer--permanent .Bear-Drawer__panel {
|
|
170991
|
+
pointer-events: auto;
|
|
170992
|
+
}
|
|
170993
|
+
|
|
170994
|
+
.Bear-Drawer--permanent {
|
|
170995
|
+
position: relative;
|
|
170996
|
+
inset: auto;
|
|
170997
|
+
z-index: auto;
|
|
170998
|
+
isolation: auto;
|
|
170999
|
+
width: max-content;
|
|
171000
|
+
max-width: 100%;
|
|
171001
|
+
pointer-events: auto;
|
|
171002
|
+
}
|
|
171003
|
+
|
|
171004
|
+
.Bear-Drawer--permanent .Bear-Drawer__panel {
|
|
171005
|
+
position: relative;
|
|
171006
|
+
transform: none;
|
|
171007
|
+
opacity: 1;
|
|
171008
|
+
box-shadow: none;
|
|
171009
|
+
}
|
|
171010
|
+
|
|
171011
|
+
.Bear-EmptyState {
|
|
171012
|
+
display: flex;
|
|
171013
|
+
flex-direction: column;
|
|
171014
|
+
align-items: center;
|
|
171015
|
+
text-align: center;
|
|
171016
|
+
}
|
|
171017
|
+
|
|
171018
|
+
.Bear-EmptyState--card {
|
|
171019
|
+
background-color: var(--bear-bg-secondary);
|
|
171020
|
+
border: 1px solid var(--bear-border-default);
|
|
171021
|
+
border-radius: 0.75rem;
|
|
171022
|
+
}
|
|
171023
|
+
|
|
171024
|
+
.Bear-EmptyState__icon {
|
|
171025
|
+
color: var(--bear-text-muted);
|
|
171026
|
+
margin-bottom: 1rem;
|
|
171027
|
+
}
|
|
171028
|
+
|
|
171029
|
+
.Bear-EmptyState__title {
|
|
171030
|
+
font-weight: 600;
|
|
171031
|
+
color: var(--bear-text-primary);
|
|
171032
|
+
margin-bottom: 0.5rem;
|
|
171033
|
+
}
|
|
171034
|
+
|
|
171035
|
+
.Bear-EmptyState__description {
|
|
171036
|
+
color: var(--bear-text-secondary);
|
|
171037
|
+
max-width: 28rem;
|
|
171038
|
+
margin-bottom: 1.5rem;
|
|
170156
171039
|
}
|
|
170157
171040
|
|
|
170158
|
-
.Bear-
|
|
170159
|
-
|
|
170160
|
-
|
|
171041
|
+
.Bear-EmptyState__actions {
|
|
171042
|
+
display: flex;
|
|
171043
|
+
align-items: center;
|
|
171044
|
+
gap: 0.75rem;
|
|
170161
171045
|
}
|
|
170162
171046
|
|
|
170163
|
-
.Bear-
|
|
170164
|
-
|
|
170165
|
-
.Bear-SignPad__x-mark {
|
|
170166
|
-
z-index: 1;
|
|
171047
|
+
.Bear-Chart {
|
|
171048
|
+
width: 100%;
|
|
170167
171049
|
}
|
|
170168
171050
|
|
|
170169
|
-
.Bear-
|
|
170170
|
-
|
|
170171
|
-
|
|
170172
|
-
|
|
170173
|
-
|
|
170174
|
-
background: var(--bear-bg-tertiary);
|
|
171051
|
+
.Bear-Chart--bar,
|
|
171052
|
+
.Bear-Chart--line,
|
|
171053
|
+
.Bear-Chart--radar,
|
|
171054
|
+
.Bear-Chart--funnel {
|
|
171055
|
+
height: var(--Bear-Chart-height, 200px);
|
|
170175
171056
|
}
|
|
170176
171057
|
|
|
170177
|
-
.Bear-
|
|
170178
|
-
|
|
171058
|
+
.Bear-Chart__track {
|
|
171059
|
+
height: 100%;
|
|
171060
|
+
display: flex;
|
|
171061
|
+
align-items: stretch;
|
|
171062
|
+
justify-content: space-between;
|
|
171063
|
+
gap: var(--Bear-Chart-gap, 0.2rem);
|
|
170179
171064
|
}
|
|
170180
171065
|
|
|
170181
|
-
.Bear-
|
|
170182
|
-
|
|
170183
|
-
|
|
171066
|
+
.Bear-Chart--horizontal .Bear-Chart__track {
|
|
171067
|
+
flex-direction: column;
|
|
171068
|
+
align-items: stretch;
|
|
170184
171069
|
}
|
|
170185
171070
|
|
|
170186
|
-
.Bear-
|
|
170187
|
-
|
|
170188
|
-
|
|
170189
|
-
|
|
171071
|
+
.Bear-Chart__col {
|
|
171072
|
+
flex: 1;
|
|
171073
|
+
display: flex;
|
|
171074
|
+
flex-direction: column;
|
|
170190
171075
|
align-items: center;
|
|
170191
|
-
|
|
170192
|
-
|
|
170193
|
-
|
|
170194
|
-
|
|
170195
|
-
color: var(--bear-text-secondary);
|
|
170196
|
-
font-weight: 500;
|
|
170197
|
-
cursor: pointer;
|
|
170198
|
-
transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
|
|
171076
|
+
min-width: 0;
|
|
171077
|
+
min-height: 0;
|
|
171078
|
+
height: 100%;
|
|
171079
|
+
gap: 0.25rem;
|
|
170199
171080
|
}
|
|
170200
171081
|
|
|
170201
|
-
.Bear-
|
|
170202
|
-
|
|
171082
|
+
.Bear-Chart--horizontal .Bear-Chart__col {
|
|
171083
|
+
flex-direction: row;
|
|
171084
|
+
align-items: center;
|
|
171085
|
+
gap: 0.5rem;
|
|
170203
171086
|
}
|
|
170204
171087
|
|
|
170205
|
-
.Bear-
|
|
170206
|
-
|
|
170207
|
-
|
|
170208
|
-
|
|
171088
|
+
.Bear-Chart__plot {
|
|
171089
|
+
width: 100%;
|
|
171090
|
+
flex: 1 1 auto;
|
|
171091
|
+
display: flex;
|
|
171092
|
+
align-items: flex-end;
|
|
171093
|
+
min-height: 0;
|
|
170209
171094
|
}
|
|
170210
171095
|
|
|
170211
|
-
.
|
|
170212
|
-
|
|
170213
|
-
|
|
170214
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
|
|
171096
|
+
.Bear-Chart--horizontal .Bear-Chart__plot {
|
|
171097
|
+
height: 100%;
|
|
171098
|
+
align-items: center;
|
|
170215
171099
|
}
|
|
170216
171100
|
|
|
170217
|
-
.Bear-
|
|
170218
|
-
|
|
170219
|
-
|
|
171101
|
+
.Bear-Chart__stack {
|
|
171102
|
+
display: flex;
|
|
171103
|
+
width: 100%;
|
|
171104
|
+
height: var(--Bear-Chart-size);
|
|
171105
|
+
flex-direction: column-reverse;
|
|
171106
|
+
transform-origin: bottom center;
|
|
170220
171107
|
}
|
|
170221
171108
|
|
|
170222
|
-
.Bear-
|
|
170223
|
-
|
|
170224
|
-
|
|
170225
|
-
|
|
171109
|
+
.Bear-Chart--horizontal .Bear-Chart__stack {
|
|
171110
|
+
width: var(--Bear-Chart-size);
|
|
171111
|
+
height: 75%;
|
|
171112
|
+
flex-direction: row;
|
|
171113
|
+
transform-origin: left center;
|
|
170226
171114
|
}
|
|
170227
171115
|
|
|
170228
|
-
.Bear-
|
|
170229
|
-
|
|
170230
|
-
|
|
170231
|
-
|
|
171116
|
+
.Bear-Chart__segment {
|
|
171117
|
+
background-color: var(--Bear-Chart-color);
|
|
171118
|
+
opacity: 0.9;
|
|
171119
|
+
border-radius: var(--Bear-Chart-radius, 0);
|
|
170232
171120
|
}
|
|
170233
171121
|
|
|
170234
|
-
.Bear-
|
|
170235
|
-
|
|
170236
|
-
|
|
170237
|
-
font-size: 1.125rem;
|
|
171122
|
+
.Bear-Chart--vertical .Bear-Chart__segment {
|
|
171123
|
+
width: 100%;
|
|
171124
|
+
height: var(--Bear-Chart-segment);
|
|
170238
171125
|
}
|
|
170239
171126
|
|
|
170240
|
-
.Bear-
|
|
170241
|
-
|
|
171127
|
+
.Bear-Chart--horizontal .Bear-Chart__segment {
|
|
171128
|
+
height: 100%;
|
|
171129
|
+
width: var(--Bear-Chart-segment);
|
|
170242
171130
|
}
|
|
170243
171131
|
|
|
170244
|
-
.Bear-
|
|
170245
|
-
|
|
170246
|
-
|
|
170247
|
-
.Bear-RichEditor__content h4,
|
|
170248
|
-
.Bear-RichEditor__content h5,
|
|
170249
|
-
.Bear-RichEditor__content h6 {
|
|
170250
|
-
font-weight: 600;
|
|
170251
|
-
color: var(--bear-text-primary);
|
|
171132
|
+
.Bear-Chart__svg {
|
|
171133
|
+
width: 100%;
|
|
171134
|
+
height: 100%;
|
|
170252
171135
|
}
|
|
170253
171136
|
|
|
170254
|
-
.Bear-
|
|
170255
|
-
|
|
170256
|
-
|
|
171137
|
+
.Bear-Chart__labels {
|
|
171138
|
+
display: flex;
|
|
171139
|
+
justify-content: space-between;
|
|
171140
|
+
margin-top: 0.5rem;
|
|
171141
|
+
}
|
|
170257
171142
|
|
|
170258
|
-
.Bear-
|
|
171143
|
+
.Bear-Chart__label,
|
|
171144
|
+
.Bear-Chart__value {
|
|
171145
|
+
max-width: 100%;
|
|
171146
|
+
overflow: hidden;
|
|
171147
|
+
text-overflow: ellipsis;
|
|
171148
|
+
white-space: nowrap;
|
|
171149
|
+
font-size: 0.75rem;
|
|
171150
|
+
color: var(--bear-text-secondary, #4b5563);
|
|
171151
|
+
}
|
|
170259
171152
|
|
|
170260
|
-
.Bear-
|
|
171153
|
+
.Bear-Chart--horizontal .Bear-Chart__label {
|
|
171154
|
+
width: 4rem;
|
|
171155
|
+
flex-shrink: 0;
|
|
171156
|
+
}
|
|
170261
171157
|
|
|
170262
|
-
.Bear-
|
|
171158
|
+
.Bear-Chart--pie {
|
|
171159
|
+
position: relative;
|
|
171160
|
+
max-width: 100%;
|
|
171161
|
+
}
|
|
170263
171162
|
|
|
170264
|
-
.Bear-
|
|
170265
|
-
|
|
170266
|
-
|
|
170267
|
-
|
|
170268
|
-
|
|
171163
|
+
.Bear-Chart__pie-canvas {
|
|
171164
|
+
flex-shrink: 0;
|
|
171165
|
+
min-width: 0;
|
|
171166
|
+
width: var(--Bear-Chart-height, 200px);
|
|
171167
|
+
height: var(--Bear-Chart-height, 200px);
|
|
170269
171168
|
}
|
|
170270
171169
|
|
|
170271
|
-
.Bear-
|
|
171170
|
+
.Bear-Chart__swatch {
|
|
171171
|
+
width: 0.75rem;
|
|
171172
|
+
height: 0.75rem;
|
|
171173
|
+
border-radius: 999px;
|
|
171174
|
+
background-color: var(--Bear-Chart-color);
|
|
171175
|
+
}
|
|
170272
171176
|
|
|
170273
|
-
.Bear-
|
|
170274
|
-
|
|
170275
|
-
|
|
170276
|
-
|
|
170277
|
-
|
|
171177
|
+
.Bear-Chart__funnel-step {
|
|
171178
|
+
width: var(--Bear-Chart-size);
|
|
171179
|
+
min-height: 18px;
|
|
171180
|
+
height: var(--Bear-Chart-step-height);
|
|
171181
|
+
background-color: var(--Bear-Chart-color);
|
|
171182
|
+
transform-origin: left center;
|
|
170278
171183
|
}
|
|
170279
171184
|
|
|
170280
|
-
.Bear-
|
|
171185
|
+
.Bear-Chart--empty {
|
|
171186
|
+
display: flex;
|
|
171187
|
+
align-items: center;
|
|
171188
|
+
justify-content: center;
|
|
171189
|
+
min-height: var(--Bear-Chart-height, 200px);
|
|
171190
|
+
}
|
|
170281
171191
|
|
|
170282
|
-
.Bear-
|
|
171192
|
+
.Bear-Skeleton {
|
|
171193
|
+
display: block;
|
|
171194
|
+
background-color: var(--bear-bg-tertiary, #e5e7eb);
|
|
171195
|
+
border-radius: 0.25rem;
|
|
171196
|
+
}
|
|
170283
171197
|
|
|
170284
|
-
.
|
|
171198
|
+
.dark .Bear-Skeleton,
|
|
171199
|
+
.bear-dark .Bear-Skeleton {
|
|
171200
|
+
background-color: var(--bear-neutral-700, #3f3f46);
|
|
171201
|
+
}
|
|
170285
171202
|
|
|
170286
|
-
.Bear-
|
|
170287
|
-
|
|
170288
|
-
margin: 1em 0;
|
|
170289
|
-
color: var(--bear-text-secondary);
|
|
170290
|
-
font-style: italic;
|
|
170291
|
-
background: color-mix(in srgb, var(--bear-primary-500) 8%, transparent);
|
|
170292
|
-
padding: 0.5em 1em;
|
|
170293
|
-
border-radius: 0 0.375rem 0.375rem 0;
|
|
171203
|
+
.Bear-Skeleton--pulse {
|
|
171204
|
+
animation: bear-skeleton-pulse 1.5s ease-in-out infinite;
|
|
170294
171205
|
}
|
|
170295
171206
|
|
|
170296
|
-
|
|
170297
|
-
|
|
170298
|
-
|
|
170299
|
-
|
|
170300
|
-
|
|
171207
|
+
@keyframes bear-skeleton-pulse {
|
|
171208
|
+
0%,
|
|
171209
|
+
100% {
|
|
171210
|
+
opacity: 1;
|
|
171211
|
+
}
|
|
171212
|
+
50% {
|
|
171213
|
+
opacity: 0.4;
|
|
171214
|
+
}
|
|
170301
171215
|
}
|
|
170302
171216
|
|
|
170303
|
-
.Bear-
|
|
170304
|
-
|
|
170305
|
-
border-radius: 0.5rem;
|
|
170306
|
-
font-size: 0.875em;
|
|
170307
|
-
overflow-x: auto;
|
|
170308
|
-
margin: 1em 0;
|
|
170309
|
-
white-space: pre-wrap;
|
|
170310
|
-
word-break: break-word;
|
|
170311
|
-
border: 1px solid var(--bear-border-default);
|
|
171217
|
+
.bear-reduced-motion .Bear-Skeleton--pulse {
|
|
171218
|
+
animation: none;
|
|
170312
171219
|
}
|
|
170313
171220
|
|
|
170314
|
-
.Bear-
|
|
170315
|
-
|
|
170316
|
-
|
|
170317
|
-
|
|
171221
|
+
.Bear-FormSkeleton {
|
|
171222
|
+
display: flex;
|
|
171223
|
+
flex-direction: column;
|
|
171224
|
+
gap: 1rem;
|
|
171225
|
+
width: 100%;
|
|
170318
171226
|
}
|
|
170319
171227
|
|
|
170320
|
-
.Bear-
|
|
170321
|
-
|
|
170322
|
-
|
|
170323
|
-
|
|
171228
|
+
.Bear-FormSkeleton__field {
|
|
171229
|
+
display: flex;
|
|
171230
|
+
flex-direction: column;
|
|
171231
|
+
gap: 0.5rem;
|
|
170324
171232
|
}
|
|
170325
171233
|
|
|
170326
|
-
.Bear-
|
|
170327
|
-
|
|
170328
|
-
height: auto;
|
|
170329
|
-
border-radius: 0.5rem;
|
|
170330
|
-
margin: 1em 0;
|
|
170331
|
-
display: block;
|
|
171234
|
+
.Bear-FormSkeleton__label {
|
|
171235
|
+
width: 30%;
|
|
170332
171236
|
}
|
|
170333
171237
|
|
|
170334
|
-
.Bear-
|
|
170335
|
-
border-collapse: collapse;
|
|
171238
|
+
.Bear-FormSkeleton__control {
|
|
170336
171239
|
width: 100%;
|
|
170337
|
-
margin: 1em 0;
|
|
170338
171240
|
}
|
|
170339
171241
|
|
|
170340
|
-
.Bear-
|
|
170341
|
-
|
|
171242
|
+
.Bear-StatCard {
|
|
171243
|
+
position: relative;
|
|
171244
|
+
overflow: hidden;
|
|
171245
|
+
border-radius: 1rem;
|
|
171246
|
+
padding: 1.5rem;
|
|
170342
171247
|
border: 1px solid var(--bear-border-default);
|
|
170343
|
-
|
|
170344
|
-
text-align: left;
|
|
171248
|
+
color: #fff;
|
|
170345
171249
|
}
|
|
170346
171250
|
|
|
170347
|
-
.Bear-
|
|
170348
|
-
|
|
170349
|
-
|
|
171251
|
+
.Bear-StatCard__decoration {
|
|
171252
|
+
position: absolute;
|
|
171253
|
+
top: 0;
|
|
171254
|
+
right: 0;
|
|
171255
|
+
width: 8rem;
|
|
171256
|
+
height: 8rem;
|
|
171257
|
+
margin-top: -2rem;
|
|
171258
|
+
margin-right: -2rem;
|
|
171259
|
+
border-radius: 999px;
|
|
171260
|
+
background: #fff;
|
|
171261
|
+
opacity: 0.2;
|
|
171262
|
+
}
|
|
171263
|
+
|
|
171264
|
+
.Bear-StatCard__body {
|
|
171265
|
+
position: relative;
|
|
171266
|
+
z-index: 1;
|
|
171267
|
+
}
|
|
171268
|
+
|
|
171269
|
+
.Bear-StatCard__title {
|
|
171270
|
+
margin: 0 0 0.25rem;
|
|
171271
|
+
font-size: 0.875rem;
|
|
171272
|
+
font-weight: 500;
|
|
171273
|
+
color: rgba(255, 255, 255, 0.8);
|
|
171274
|
+
}
|
|
171275
|
+
|
|
171276
|
+
.Bear-StatCard__value {
|
|
171277
|
+
margin: 0 0 1rem;
|
|
171278
|
+
font-size: 1.875rem;
|
|
171279
|
+
font-weight: 700;
|
|
171280
|
+
color: #fff;
|
|
170350
171281
|
}
|
|
170351
171282
|
|
|
170352
171283
|
.dark .dark\:bear-bg-zinc-900, .bear-dark .dark\:bear-bg-zinc-900 {
|
|
@@ -170596,10 +171527,6 @@
|
|
|
170596
171527
|
scale: 1.05;
|
|
170597
171528
|
}
|
|
170598
171529
|
|
|
170599
|
-
.hover\:bear-bg-white\/30:hover {
|
|
170600
|
-
background-color: rgba(255, 255, 255, 0.3);
|
|
170601
|
-
}
|
|
170602
|
-
|
|
170603
171530
|
.dark .dark\:bear-bg-yellow-800, .bear-dark .dark\:bear-bg-yellow-800 {
|
|
170604
171531
|
background-color: #854d0e;
|
|
170605
171532
|
}
|
|
@@ -171122,30 +172049,6 @@
|
|
|
171122
172049
|
background-color: rgba(127, 29, 29, 0.3);
|
|
171123
172050
|
}
|
|
171124
172051
|
|
|
171125
|
-
.dark .dark\:bear-bg-neutral-900, .bear-dark .dark\:bear-bg-neutral-900 {
|
|
171126
|
-
background-color: #171717;
|
|
171127
|
-
}
|
|
171128
|
-
|
|
171129
|
-
.dark .dark\:bear-text-neutral-400, .bear-dark .dark\:bear-text-neutral-400 {
|
|
171130
|
-
color: #a3a3a3;
|
|
171131
|
-
}
|
|
171132
|
-
|
|
171133
|
-
.hover\:bear-text-neutral-900:hover {
|
|
171134
|
-
color: #171717;
|
|
171135
|
-
}
|
|
171136
|
-
|
|
171137
|
-
.hover\:bear-bg-neutral-100:hover {
|
|
171138
|
-
background-color: #f5f5f5;
|
|
171139
|
-
}
|
|
171140
|
-
|
|
171141
|
-
.dark .dark\:hover\:bear-bg-neutral-700:hover, .bear-dark .dark\:hover\:bear-bg-neutral-700:hover {
|
|
171142
|
-
background-color: #404040;
|
|
171143
|
-
}
|
|
171144
|
-
|
|
171145
|
-
.dark .dark\:bear-text-neutral-300, .bear-dark .dark\:bear-text-neutral-300 {
|
|
171146
|
-
color: #d4d4d4;
|
|
171147
|
-
}
|
|
171148
|
-
|
|
171149
172052
|
.dark .dark\:bear-border-gray-700\/50, .bear-dark .dark\:bear-border-gray-700\/50 {
|
|
171150
172053
|
border-color: rgba(55, 65, 81, 0.5);
|
|
171151
172054
|
}
|
|
@@ -171292,6 +172195,14 @@
|
|
|
171292
172195
|
background-color: #374151;
|
|
171293
172196
|
}
|
|
171294
172197
|
|
|
172198
|
+
.dark .dark\:bear-bg-neutral-900, .bear-dark .dark\:bear-bg-neutral-900 {
|
|
172199
|
+
background-color: #171717;
|
|
172200
|
+
}
|
|
172201
|
+
|
|
172202
|
+
.dark .dark\:bear-text-neutral-300, .bear-dark .dark\:bear-text-neutral-300 {
|
|
172203
|
+
color: #d4d4d4;
|
|
172204
|
+
}
|
|
172205
|
+
|
|
171295
172206
|
.dark .dark\:bear-bg-zinc-900\/80, .bear-dark .dark\:bear-bg-zinc-900\/80 {
|
|
171296
172207
|
background-color: rgba(24, 24, 27, 0.8);
|
|
171297
172208
|
}
|
|
@@ -171634,14 +172545,6 @@
|
|
|
171634
172545
|
color: transparent;
|
|
171635
172546
|
}
|
|
171636
172547
|
|
|
171637
|
-
.bear-text-white\/80 {
|
|
171638
|
-
color: rgba(255, 255, 255, 0.8);
|
|
171639
|
-
}
|
|
171640
|
-
|
|
171641
|
-
.bear-bg-white\/20 {
|
|
171642
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
171643
|
-
}
|
|
171644
|
-
|
|
171645
172548
|
.bear-bg-black\/50 {
|
|
171646
172549
|
background-color: rgba(0, 0, 0, 0.5);
|
|
171647
172550
|
}
|