@hubstr/kit 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +29 -29
- package/analytics/src/providers/ga4.ts +2 -2
- package/analytics/src/providers/posthog-node.ts +2 -2
- package/analytics/src/providers/posthog.ts +2 -2
- package/analytics/src/providers/xads.ts +2 -2
- package/analytics/src/react/hooks.ts +1 -1
- package/assets-logo/assets/logo-flat.svg +1 -1
- package/assets-logo/assets/logo-high-contrast.svg +1 -1
- package/assets-logo/assets/logo-text.svg +1 -1
- package/charts/src/AccuracyBarChart/index.tsx +9 -9
- package/charts/src/AreaChart/index.tsx +10 -10
- package/charts/src/BarChart/demos/xAxisLabelFormatter.tsx +1 -1
- package/charts/src/BarChart/index.tsx +9 -9
- package/charts/src/BarChart/renderShape.tsx +1 -1
- package/charts/src/BarList/index.tsx +3 -3
- package/charts/src/ComposedChart/index.tsx +7 -7
- package/charts/src/ComposedChart/types.ts +2 -2
- package/charts/src/DataBars/CategoryBar.tsx +3 -3
- package/charts/src/DataBars/DeltaBar.tsx +2 -2
- package/charts/src/DonutChart/DonutChartTooltip.tsx +3 -3
- package/charts/src/DonutChart/index.tsx +7 -7
- package/charts/src/DonutChart/inputParser.ts +2 -2
- package/charts/src/FunnelChart/index.tsx +7 -7
- package/charts/src/Heatmaps/Calendar.tsx +1 -1
- package/charts/src/Heatmaps/ChartLabels.tsx +2 -2
- package/charts/src/Heatmaps/index.tsx +6 -6
- package/charts/src/Legend/index.tsx +1 -1
- package/charts/src/LineChart/index.tsx +10 -10
- package/charts/src/ScatterChart/ScatterChartTooltip.tsx +3 -3
- package/charts/src/ScatterChart/index.tsx +10 -10
- package/charts/src/ScatterChart/renderShape.tsx +1 -1
- package/charts/src/SparkChart/SparkAreaChart.tsx +5 -5
- package/charts/src/SparkChart/SparkBarChart.tsx +4 -4
- package/charts/src/SparkChart/SparkLineChart.tsx +5 -5
- package/charts/src/common/BaseChartProps.tsx +2 -2
- package/charts/src/common/BaseSparkChartProps.tsx +1 -1
- package/charts/src/common/ChartLegend.tsx +2 -2
- package/charts/src/common/ChartTooltip/index.tsx +1 -1
- package/charts/src/common/CustomTooltipProps.tsx +2 -2
- package/charts/src/common/CustomYAxisTick.tsx +1 -1
- package/charts/src/hooks/useOnWindowResize.ts +1 -1
- package/charts/src/hooks/usePrefersReducedMotion.ts +1 -1
- package/charts/src/index.ts +1 -1
- package/charts/src/utils/calendar.ts +2 -2
- package/charts/src/utils/getMaxLabelLength.ts +2 -2
- package/charts/src/utils/index.ts +1 -1
- package/editor/src/codemirror/loader.ts +1 -1
- package/editor/src/common/sys.ts +3 -3
- package/editor/src/const/hotkey.ts +1 -1
- package/editor/src/editor-kernel/__tests__/lexical-patch.test.ts +1 -1
- package/editor/src/editor-kernel/__tests__/node.test.ts +14 -14
- package/editor/src/editor-kernel/__tests__/utils.test.ts +1 -1
- package/editor/src/editor-kernel/index.ts +1 -1
- package/editor/src/editor-kernel/kernel.ts +7 -7
- package/editor/src/editor-kernel/plugin.ts +1 -1
- package/editor/src/editor-kernel/react/react-context.ts +1 -1
- package/editor/src/editor-kernel/react/react-editor.tsx +1 -1
- package/editor/src/editor-kernel/react/useAnchor.ts +1 -1
- package/editor/src/editor-kernel/react/useDecorators.tsx +2 -2
- package/editor/src/editor-kernel/react/useEditable.ts +1 -1
- package/editor/src/editor-kernel/react/useTranslation.ts +1 -1
- package/editor/src/editor-kernel/utils.ts +1 -1
- package/editor/src/headless/__tests__/headless-editor.test.ts +2 -2
- package/editor/src/headless/index.ts +17 -17
- package/editor/src/plugins/auto-complete/plugin/index.ts +4 -4
- package/editor/src/plugins/auto-complete/react/ReactAutoCompletePlugin.tsx +2 -2
- package/editor/src/plugins/auto-complete/react/type.ts +1 -1
- package/editor/src/plugins/block/command/index.ts +1 -1
- package/editor/src/plugins/block/plugin/index.ts +2 -2
- package/editor/src/plugins/block/react/ReactBlockPlugin.tsx +5 -5
- package/editor/src/plugins/block/react/drag/drag-session.ts +2 -2
- package/editor/src/plugins/block/service/i-block-menu-service.ts +2 -2
- package/editor/src/plugins/code/__tests__/litexml.test.ts +5 -5
- package/editor/src/plugins/code/command/index.ts +1 -1
- package/editor/src/plugins/code/node/code.ts +1 -1
- package/editor/src/plugins/code/plugin/index.ts +6 -6
- package/editor/src/plugins/code/plugin/registry.ts +3 -3
- package/editor/src/plugins/code/react/CodeReactPlugin.tsx +2 -2
- package/editor/src/plugins/codeblock/__tests__/litexml.test.ts +5 -5
- package/editor/src/plugins/codeblock/plugin/CodeHighlighterShiki.ts +1 -1
- package/editor/src/plugins/codeblock/plugin/FacadeShiki.ts +2 -2
- package/editor/src/plugins/codeblock/plugin/index.ts +6 -6
- package/editor/src/plugins/codeblock/react/ReactCodeblockPlugin.tsx +2 -2
- package/editor/src/plugins/codeblock/react/type.ts +1 -1
- package/editor/src/plugins/codemirror-block/__tests__/litexml.test.ts +5 -5
- package/editor/src/plugins/codemirror-block/command/index.ts +1 -1
- package/editor/src/plugins/codemirror-block/lib/index.ts +1 -1
- package/editor/src/plugins/codemirror-block/lib/mode.ts +1 -1
- package/editor/src/plugins/codemirror-block/node/CodeMirrorNode.ts +1 -1
- package/editor/src/plugins/codemirror-block/plugin/index.ts +5 -5
- package/editor/src/plugins/codemirror-block/react/CodemirrorNode.tsx +3 -3
- package/editor/src/plugins/codemirror-block/react/ReactCodemirrorNode.tsx +1 -1
- package/editor/src/plugins/common/data-source/json-data-source.ts +4 -4
- package/editor/src/plugins/common/data-source/text-data-source.ts +3 -3
- package/editor/src/plugins/common/node/ElementDOMSlot.ts +1 -1
- package/editor/src/plugins/common/node/cursor.ts +1 -1
- package/editor/src/plugins/common/plugin/__test__/litexml.test.ts +5 -5
- package/editor/src/plugins/common/plugin/__test__/markdown.test.ts +4 -4
- package/editor/src/plugins/common/plugin/index.ts +7 -7
- package/editor/src/plugins/common/plugin/mdReader.ts +3 -3
- package/editor/src/plugins/common/plugin/paste-handler.ts +1 -1
- package/editor/src/plugins/common/plugin/register.ts +4 -4
- package/editor/src/plugins/common/react/Placeholder/index.tsx +2 -2
- package/editor/src/plugins/common/react/ReactPlainText.tsx +4 -4
- package/editor/src/plugins/common/react/type.ts +2 -2
- package/editor/src/plugins/common/utils/__test__/utils.test.ts +3 -3
- package/editor/src/plugins/common/utils/index.ts +2 -2
- package/editor/src/plugins/content-blocks/data-source/content-blocks-data-source.ts +2 -2
- package/editor/src/plugins/content-blocks/demos/headless.tsx +1 -1
- package/editor/src/plugins/content-blocks/demos/index.tsx +1 -1
- package/editor/src/plugins/content-blocks/plugin/index.ts +4 -4
- package/editor/src/plugins/content-blocks/types.ts +1 -1
- package/editor/src/plugins/content-blocks/utils/__tests__/extract.test.ts +2 -2
- package/editor/src/plugins/content-blocks/utils/extract.ts +4 -4
- package/editor/src/plugins/file/command/index.ts +1 -1
- package/editor/src/plugins/file/node/FileNode.ts +1 -1
- package/editor/src/plugins/file/plugin/index.ts +7 -7
- package/editor/src/plugins/file/react/ReactFilePlugin.tsx +2 -2
- package/editor/src/plugins/file/react/components/ReactFile.tsx +2 -2
- package/editor/src/plugins/file/react/type.ts +2 -2
- package/editor/src/plugins/hr/node/HorizontalRuleNode.ts +1 -1
- package/editor/src/plugins/hr/plugin/index.ts +5 -5
- package/editor/src/plugins/hr/react/ReactHRPlugin.tsx +2 -2
- package/editor/src/plugins/hr/react/components/HRNode.tsx +1 -1
- package/editor/src/plugins/image/__test__/litexml.test.ts +5 -5
- package/editor/src/plugins/image/command/index.ts +1 -1
- package/editor/src/plugins/image/plugin/index.ts +8 -8
- package/editor/src/plugins/image/react/ReactImagePlugin.tsx +2 -2
- package/editor/src/plugins/image/react/components/BrokenImage.tsx +1 -1
- package/editor/src/plugins/image/react/components/Image.tsx +2 -2
- package/editor/src/plugins/image/react/components/ImageEditPopover.tsx +3 -3
- package/editor/src/plugins/image/react/components/__tests__/Image.test.tsx +2 -2
- package/editor/src/plugins/inode/plugin/index.ts +2 -2
- package/editor/src/plugins/inode/react/index.tsx +1 -1
- package/editor/src/plugins/inode/service/index.ts +2 -2
- package/editor/src/plugins/link/__test__/litexml.test.ts +5 -5
- package/editor/src/plugins/link/node/LinkNode.ts +2 -2
- package/editor/src/plugins/link/plugin/index.ts +5 -5
- package/editor/src/plugins/link/plugin/registry.ts +2 -2
- package/editor/src/plugins/link/react/ReactLinkPlugin.tsx +4 -4
- package/editor/src/plugins/link/react/components/LinkEdit.tsx +4 -4
- package/editor/src/plugins/link/react/components/LinkToolbar.tsx +5 -5
- package/editor/src/plugins/link/react/type.ts +1 -1
- package/editor/src/plugins/link/service/i-link-service.ts +2 -2
- package/editor/src/plugins/link-highlight/node/link-highlight.ts +1 -1
- package/editor/src/plugins/link-highlight/plugin/index.ts +6 -6
- package/editor/src/plugins/link-highlight/plugin/registry.ts +3 -3
- package/editor/src/plugins/link-highlight/react/ReactLinkHighlightPlugin.tsx +2 -2
- package/editor/src/plugins/link-highlight/utils/index.ts +1 -1
- package/editor/src/plugins/list/__test__/litexml.test.ts +5 -5
- package/editor/src/plugins/list/plugin/index.test.ts +4 -4
- package/editor/src/plugins/list/plugin/index.ts +6 -6
- package/editor/src/plugins/list/plugin/registry.ts +2 -2
- package/editor/src/plugins/list/react/ReactListPlugin.tsx +2 -2
- package/editor/src/plugins/list/utils/index.ts +1 -1
- package/editor/src/plugins/litexml/__test__/command.test.ts +6 -6
- package/editor/src/plugins/litexml/__test__/secondary_diff.test.ts +5 -5
- package/editor/src/plugins/litexml/command/index.ts +2 -2
- package/editor/src/plugins/litexml/data-source/litexml-data-source.ts +6 -6
- package/editor/src/plugins/litexml/node/DiffNode.ts +2 -2
- package/editor/src/plugins/litexml/plugin/index.ts +3 -3
- package/editor/src/plugins/litexml/react/DiffNodeToolbar/index.tsx +2 -2
- package/editor/src/plugins/litexml/react/hooks/useHasDiffNode.ts +1 -1
- package/editor/src/plugins/litexml/react/index.tsx +2 -2
- package/editor/src/plugins/litexml/service/litexml-service.ts +1 -1
- package/editor/src/plugins/markdown/command/__tests__/command.test.ts +1 -1
- package/editor/src/plugins/markdown/command/index.ts +2 -2
- package/editor/src/plugins/markdown/data-source/markdown/parse.test.ts +1 -1
- package/editor/src/plugins/markdown/data-source/markdown/parse.ts +2 -2
- package/editor/src/plugins/markdown/data-source/markdown-data-source.ts +5 -5
- package/editor/src/plugins/markdown/plugin/index.ts +3 -3
- package/editor/src/plugins/markdown/react/index.tsx +3 -3
- package/editor/src/plugins/markdown/service/shortcut.ts +4 -4
- package/editor/src/plugins/markdown/utils/index.ts +1 -1
- package/editor/src/plugins/markdown/utils/logger.ts +1 -1
- package/editor/src/plugins/markdown/utils/url-validator.ts +1 -1
- package/editor/src/plugins/math/__tests__/litexml.test.ts +5 -5
- package/editor/src/plugins/math/__tests__/math.test.ts +1 -1
- package/editor/src/plugins/math/node/index.ts +1 -1
- package/editor/src/plugins/math/plugin/index.ts +6 -6
- package/editor/src/plugins/math/react/components/MathEditor.tsx +3 -3
- package/editor/src/plugins/math/react/components/MathEditorContainer.tsx +1 -1
- package/editor/src/plugins/math/react/components/MathEditorContent.tsx +2 -2
- package/editor/src/plugins/math/react/components/MathInline.tsx +3 -3
- package/editor/src/plugins/math/react/components/Placeholder.tsx +1 -1
- package/editor/src/plugins/math/react/index.tsx +2 -2
- package/editor/src/plugins/mention/__test__/litexml.test.ts +5 -5
- package/editor/src/plugins/mention/node/MentionNode.ts +1 -1
- package/editor/src/plugins/mention/plugin/__tests__/mention.test.ts +4 -4
- package/editor/src/plugins/mention/plugin/index.ts +6 -6
- package/editor/src/plugins/mention/react/ReactMentionPlugin.tsx +2 -2
- package/editor/src/plugins/mention/react/components/Mention.tsx +1 -1
- package/editor/src/plugins/mention/react/type.ts +1 -1
- package/editor/src/plugins/slash/plugin/index.ts +2 -2
- package/editor/src/plugins/slash/react/ReactSlashPlugin.tsx +3 -3
- package/editor/src/plugins/slash/react/type.ts +3 -3
- package/editor/src/plugins/slash/service/i-slash-service.ts +3 -3
- package/editor/src/plugins/table/__test__/litexml.test.ts +5 -5
- package/editor/src/plugins/table/node/index.ts +2 -2
- package/editor/src/plugins/table/plugin/index.ts +7 -7
- package/editor/src/plugins/table/react/TableActionMenu/ActionMenu.tsx +1 -1
- package/editor/src/plugins/table/react/TableActionMenu/index.tsx +2 -2
- package/editor/src/plugins/table/react/TableColController.tsx +2 -2
- package/editor/src/plugins/table/react/TableControllerMenu.tsx +1 -1
- package/editor/src/plugins/table/react/TableHoverActions/index.tsx +2 -2
- package/editor/src/plugins/table/react/TableHoverActions/utils.ts +1 -1
- package/editor/src/plugins/table/react/TableRowController.tsx +1 -1
- package/editor/src/plugins/table/react/index.tsx +4 -4
- package/editor/src/plugins/table/react/type.ts +1 -1
- package/editor/src/plugins/table/service/i-table-controller-menu-service.ts +2 -2
- package/editor/src/plugins/table/utils/index.ts +1 -1
- package/editor/src/plugins/toolbar/react/index.tsx +3 -3
- package/editor/src/plugins/upload/plugin/index.ts +3 -3
- package/editor/src/plugins/upload/service/i-upload-service.ts +2 -2
- package/editor/src/plugins/virtual-block/plugin/index.ts +2 -2
- package/editor/src/plugins/virtual-block/plugin/register.ts +4 -4
- package/editor/src/plugins/virtual-block/react/ReactVirtualBlock.tsx +1 -1
- package/editor/src/react/ChatInput/ChatInput.tsx +1 -1
- package/editor/src/react/ChatInputActionBar/demos/index.tsx +1 -1
- package/editor/src/react/ChatInputActions/components/useDisplayActionCount.ts +1 -1
- package/editor/src/react/Editor/Editor.tsx +6 -6
- package/editor/src/react/Editor/demos/Container.tsx +1 -1
- package/editor/src/react/Editor/demos/XmlModifier.tsx +2 -2
- package/editor/src/react/Editor/demos/actions.ts +1 -1
- package/editor/src/react/Editor/demos/index.tsx +1 -1
- package/editor/src/react/Editor/demos/pasteAsPlainText.tsx +1 -1
- package/editor/src/react/Editor/type.ts +4 -4
- package/editor/src/react/EditorProvider/demos/index.tsx +1 -1
- package/editor/src/react/EditorProvider/index.tsx +1 -1
- package/editor/src/react/SlashMenu/SlashMenu.tsx +1 -1
- package/editor/src/react/SlashMenu/type.ts +2 -2
- package/editor/src/react/hooks/useEditor.ts +2 -2
- package/editor/src/react/hooks/useEditorState/index.ts +13 -13
- package/editor/src/react/index.ts +1 -1
- package/editor/src/renderer/nodes/index.ts +13 -13
- package/editor/src/renderer/renderers/file.tsx +1 -1
- package/editor/src/renderer/style.ts +6 -6
- package/editor/src/types/kernel.ts +3 -3
- package/editor/src/types/locale.ts +1 -1
- package/editor/src/utils/hotkey/parseHotkeys.ts +2 -2
- package/editor/src/utils/hotkey/registerHotkey.ts +4 -4
- package/package.json +308 -308
- package/tts/src/core/EdgeSpeechTTS/index.ts +4 -4
- package/tts/src/core/EdgeSpeechTTS/options.ts +1 -1
- package/tts/src/core/MicrosoftSpeechTTS/index.ts +4 -4
- package/tts/src/core/MicrosoftSpeechTTS/voiceList.ts +1 -1
- package/tts/src/core/OpenAISTT/index.ts +2 -2
- package/tts/src/core/OpenAITTS/index.ts +2 -2
- package/tts/src/core/SpeechSynthesisTTS/index.ts +1 -1
- package/tts/src/core/SpeechSynthesisTTS/options.ts +2 -2
- package/tts/src/core/VoiceList.ts +5 -5
- package/tts/src/core/index.ts +8 -8
- package/tts/src/core/utils/getVoiceList.ts +1 -1
- package/tts/src/react/AudioPlayer/index.tsx +1 -1
- package/tts/src/react/hooks/useAudioPlayer.ts +1 -1
- package/tts/src/react/hooks/useBlobUrl.ts +3 -3
- package/tts/src/react/hooks/useStreamAudioPlayer.ts +1 -1
- package/tts/src/react/useAudioRecorder/index.ts +2 -2
- package/tts/src/react/useEdgeSpeech/index.ts +2 -2
- package/tts/src/react/useMicrosoftSpeech/index.ts +2 -2
- package/tts/src/react/useOpenAISTT/demos/AutoStop.tsx +1 -1
- package/tts/src/react/useOpenAISTT/demos/index.tsx +1 -1
- package/tts/src/react/useOpenAISTT/useOpenAISTTAutoStop.ts +2 -2
- package/tts/src/react/useOpenAISTT/useOpenAISTTCore.ts +1 -1
- package/tts/src/react/useOpenAISTT/useOpenAISTTInteractive.ts +2 -2
- package/tts/src/react/useOpenAISTT/useOpenAISTTRecorder.ts +3 -3
- package/tts/src/react/useOpenAITTS/demos/index.tsx +1 -1
- package/tts/src/react/useOpenAITTS/index.ts +2 -2
- package/tts/src/react/useSpeechRecognition/useSpeechRecognitionAutoStop.ts +1 -1
- package/tts/src/react/useSpeechRecognition/useSpeechRecognitionCore.ts +1 -1
- package/tts/src/react/useSpeechRecognition/useSpeechRecognitionInteractive.ts +2 -2
- package/tts/src/react/useSpeechSynthes/index.ts +2 -2
- package/tts/src/react/useTTS/index.ts +3 -3
- package/tts/src/server/createOpenaiAudioTranscriptions.ts +1 -1
- package/ui/src/A/index.tsx +2 -2
- package/ui/src/Accordion/AccordionItem.tsx +5 -5
- package/ui/src/Accordion/demos/Action.tsx +1 -1
- package/ui/src/Accordion/demos/Standalone.tsx +1 -1
- package/ui/src/Accordion/demos/data.tsx +1 -1
- package/ui/src/Accordion/demos/index.tsx +1 -1
- package/ui/src/Accordion/type.ts +1 -1
- package/ui/src/ActionIcon/ActionIcon.tsx +3 -3
- package/ui/src/ActionIcon/components/utils.ts +1 -1
- package/ui/src/ActionIcon/demos/DropdownMenu.tsx +2 -2
- package/ui/src/ActionIcon/demos/Size.tsx +1 -1
- package/ui/src/ActionIcon/demos/Variant.tsx +1 -1
- package/ui/src/ActionIcon/style.ts +1 -1
- package/ui/src/ActionIcon/type.ts +3 -3
- package/ui/src/ActionIconGroup/ActionIconGroup.tsx +4 -4
- package/ui/src/ActionIconGroup/style.ts +1 -1
- package/ui/src/ActionIconGroup/type.ts +5 -5
- package/ui/src/Alert/Alert.tsx +4 -4
- package/ui/src/Alert/style.ts +1 -1
- package/ui/src/Alert/type.ts +1 -1
- package/ui/src/AutoComplete/style.ts +1 -1
- package/ui/src/Avatar/Avatar.tsx +5 -5
- package/ui/src/Avatar/AvatarGroup/index.tsx +1 -1
- package/ui/src/Avatar/demos/Bordered.tsx +1 -1
- package/ui/src/Avatar/demos/ErrorFallback.tsx +1 -1
- package/ui/src/Avatar/demos/Text.tsx +1 -1
- package/ui/src/Avatar/style.ts +1 -1
- package/ui/src/Avatar/type.ts +2 -2
- package/ui/src/Block/Block.tsx +1 -1
- package/ui/src/Block/style.ts +1 -1
- package/ui/src/Block/type.ts +1 -1
- package/ui/src/Burger/Burger.tsx +2 -2
- package/ui/src/Burger/style.ts +1 -1
- package/ui/src/Burger/type.ts +1 -1
- package/ui/src/Button/Button.tsx +1 -1
- package/ui/src/Button/demos/Variant.tsx +1 -1
- package/ui/src/Button/style.ts +1 -1
- package/ui/src/Button/type.ts +1 -1
- package/ui/src/Checkbox/Checkbox.tsx +3 -3
- package/ui/src/Checkbox/CheckboxGroup.tsx +1 -1
- package/ui/src/Checkbox/demos/CheckboxGroupDisabled.tsx +1 -1
- package/ui/src/Checkbox/demos/CheckboxGroupOptions.tsx +1 -1
- package/ui/src/Checkbox/demos/CheckboxGroupUsage.tsx +1 -1
- package/ui/src/Checkbox/demos/Indeterminate.tsx +1 -1
- package/ui/src/Checkbox/demos/Size.tsx +1 -1
- package/ui/src/Checkbox/demos/WithText.tsx +1 -1
- package/ui/src/Checkbox/type.ts +3 -3
- package/ui/src/CodeDiff/DiffPanel.tsx +7 -7
- package/ui/src/CodeDiff/demos/ActionsRender.tsx +1 -1
- package/ui/src/CodeDiff/demos/Variants.tsx +1 -1
- package/ui/src/CodeDiff/style.ts +1 -1
- package/ui/src/CodeDiff/theme.ts +1 -1
- package/ui/src/CodeDiff/type.ts +1 -1
- package/ui/src/CodeEditor/CodeEditor.tsx +3 -3
- package/ui/src/CodeEditor/style.ts +1 -1
- package/ui/src/CodeEditor/type.ts +2 -2
- package/ui/src/Collapse/Collapse.tsx +2 -2
- package/ui/src/Collapse/demos/Padding.tsx +1 -1
- package/ui/src/Collapse/demos/data.tsx +1 -1
- package/ui/src/Collapse/style.ts +1 -1
- package/ui/src/Collapse/type.ts +1 -1
- package/ui/src/ColorSwatches/ColorSwatches.tsx +4 -4
- package/ui/src/ColorSwatches/type.ts +1 -1
- package/ui/src/ConfigProvider/index.tsx +3 -3
- package/ui/src/ContextMenu/index.ts +1 -1
- package/ui/src/CopyButton/CopyButton.tsx +3 -3
- package/ui/src/CopyButton/type.ts +1 -1
- package/ui/src/DatePicker/style.ts +1 -1
- package/ui/src/DownloadButton/DownloadButton.tsx +2 -2
- package/ui/src/DownloadButton/type.ts +1 -1
- package/ui/src/DraggablePanel/DraggablePanel.tsx +2 -2
- package/ui/src/DraggablePanel/components/DraggablePanelBody.tsx +2 -2
- package/ui/src/DraggablePanel/components/DraggablePanelContainer.tsx +2 -2
- package/ui/src/DraggablePanel/components/DraggablePanelFooter.tsx +2 -2
- package/ui/src/DraggablePanel/components/DraggablePanelHeader.tsx +3 -3
- package/ui/src/DraggablePanel/demos/DragToCollapse.tsx +1 -1
- package/ui/src/DraggablePanel/demos/Layout.tsx +1 -1
- package/ui/src/DraggablePanel/demos/StableLayout.tsx +2 -2
- package/ui/src/DraggablePanel/demos/index.tsx +1 -1
- package/ui/src/DraggablePanel/type.ts +1 -1
- package/ui/src/DraggableSideNav/DraggableSideNav.tsx +2 -2
- package/ui/src/DraggableSideNav/demos/Body.tsx +1 -1
- package/ui/src/DraggableSideNav/demos/Footer.tsx +1 -1
- package/ui/src/DraggableSideNav/demos/Header.tsx +1 -1
- package/ui/src/DraggableSideNav/demos/index.tsx +3 -3
- package/ui/src/DraggableSideNav/type.ts +1 -1
- package/ui/src/Drawer/Drawer.tsx +2 -2
- package/ui/src/Drawer/type.ts +1 -1
- package/ui/src/Dropdown/Dropdown.tsx +2 -2
- package/ui/src/Dropdown/demos/ContextMenu.tsx +1 -1
- package/ui/src/Dropdown/type.ts +3 -3
- package/ui/src/DropdownMenu/index.ts +2 -2
- package/ui/src/EditableText/ControlInput.tsx +3 -3
- package/ui/src/EditableText/EditableText.tsx +2 -2
- package/ui/src/EditableText/type.ts +2 -2
- package/ui/src/EditorSlashMenu/atoms.tsx +2 -2
- package/ui/src/EmojiPicker/AvatarUploader.tsx +7 -7
- package/ui/src/EmojiPicker/EmojiPicker.tsx +9 -9
- package/ui/src/EmojiPicker/demos/Control.tsx +1 -1
- package/ui/src/EmojiPicker/type.ts +3 -3
- package/ui/src/Empty/Empty.tsx +5 -5
- package/ui/src/Empty/type.ts +4 -4
- package/ui/src/FileTypeIcon/FileTypeIcon.tsx +1 -1
- package/ui/src/FileTypeIcon/components/FileIcon.tsx +1 -1
- package/ui/src/FileTypeIcon/components/FolderIcon.tsx +1 -1
- package/ui/src/FileTypeIcon/demos/Icon.tsx +1 -1
- package/ui/src/FileTypeIcon/type.ts +1 -1
- package/ui/src/FluentEmoji/FluentEmoji.tsx +3 -3
- package/ui/src/FluentEmoji/demos/index.tsx +1 -1
- package/ui/src/FluentEmoji/type.ts +2 -2
- package/ui/src/Footer/Footer.tsx +1 -1
- package/ui/src/Footer/type.ts +1 -1
- package/ui/src/Form/components/FormFlatGroup.tsx +1 -1
- package/ui/src/Form/components/FormFooter.tsx +1 -1
- package/ui/src/Form/components/FormGroup.tsx +3 -3
- package/ui/src/Form/components/FormSubmitFooter.tsx +6 -6
- package/ui/src/Form/components/FormTitle.tsx +2 -2
- package/ui/src/Form/demos/SubmitFooter.tsx +1 -1
- package/ui/src/Form/demos/index.tsx +1 -1
- package/ui/src/Form/style.ts +1 -1
- package/ui/src/Form/type.ts +6 -6
- package/ui/src/FormModal/FormModal.tsx +4 -4
- package/ui/src/FormModal/type.ts +3 -3
- package/ui/src/Grid/Grid.tsx +1 -1
- package/ui/src/Grid/type.ts +1 -1
- package/ui/src/GroupAvatar/GroupAvatar.tsx +3 -3
- package/ui/src/GroupAvatar/demos/CornerShape.tsx +2 -2
- package/ui/src/GroupAvatar/demos/index.tsx +1 -1
- package/ui/src/GroupAvatar/style.ts +1 -1
- package/ui/src/GroupAvatar/type.ts +3 -3
- package/ui/src/GuideCard/GuideCard.tsx +3 -3
- package/ui/src/GuideCard/style.ts +1 -1
- package/ui/src/GuideCard/type.ts +3 -3
- package/ui/src/Header/Header.tsx +1 -1
- package/ui/src/Header/type.ts +1 -1
- package/ui/src/Highlighter/FullFeatured.tsx +7 -7
- package/ui/src/Highlighter/Highlighter.tsx +4 -4
- package/ui/src/Highlighter/LangSelect.tsx +4 -4
- package/ui/src/Highlighter/SyntaxHighlighter/StaticRenderer.tsx +1 -1
- package/ui/src/Highlighter/SyntaxHighlighter/StreamRenderer.tsx +1 -1
- package/ui/src/Highlighter/SyntaxHighlighter/style.ts +1 -1
- package/ui/src/Highlighter/style.ts +1 -1
- package/ui/src/Highlighter/type.ts +3 -3
- package/ui/src/Hotkey/Hotkey.tsx +6 -6
- package/ui/src/Hotkey/demos/InverseTheme.tsx +1 -1
- package/ui/src/Hotkey/demos/MacStyle.tsx +1 -1
- package/ui/src/Hotkey/demos/Mouse.tsx +1 -1
- package/ui/src/Hotkey/style.ts +1 -1
- package/ui/src/Hotkey/type.ts +1 -1
- package/ui/src/HotkeyInput/HotkeyInput.tsx +6 -6
- package/ui/src/HotkeyInput/style.ts +1 -1
- package/ui/src/HtmlPreview/HtmlPreview.tsx +9 -9
- package/ui/src/HtmlPreview/demos/SlowStream.tsx +1 -1
- package/ui/src/HtmlPreview/demos/Streaming.tsx +1 -1
- package/ui/src/HtmlPreview/type.ts +2 -2
- package/ui/src/Icon/type.ts +1 -1
- package/ui/src/Image/Image.tsx +1 -1
- package/ui/src/Image/components/Toolbar.tsx +7 -7
- package/ui/src/Image/components/usePreview.tsx +1 -1
- package/ui/src/Image/components/usePreviewGroup.tsx +1 -1
- package/ui/src/Image/demos/Gallery.tsx +1 -1
- package/ui/src/Image/style.ts +1 -1
- package/ui/src/ImageSelect/ImageSelect.tsx +3 -3
- package/ui/src/ImageSelect/styles.ts +1 -1
- package/ui/src/ImageSelect/type.ts +2 -2
- package/ui/src/Img/index.tsx +2 -2
- package/ui/src/Input/style.ts +1 -1
- package/ui/src/Layout/Layout.tsx +1 -1
- package/ui/src/Layout/demos/index.tsx +1 -1
- package/ui/src/Layout/style.ts +1 -1
- package/ui/src/Layout/type.ts +1 -1
- package/ui/src/List/List.tsx +1 -1
- package/ui/src/List/ListItem/index.tsx +4 -4
- package/ui/src/List/ListItem/style.ts +1 -1
- package/ui/src/List/type.ts +1 -1
- package/ui/src/Markdown/Markdown.tsx +2 -2
- package/ui/src/Markdown/SyntaxMarkdown/MarkdownRender.tsx +1 -1
- package/ui/src/Markdown/SyntaxMarkdown/StreamdownRender.tsx +8 -8
- package/ui/src/Markdown/SyntaxMarkdown/style.ts +1 -1
- package/ui/src/Markdown/SyntaxMarkdown/useSmoothStreamContent.ts +3 -3
- package/ui/src/Markdown/components/CodeBlock.tsx +6 -6
- package/ui/src/Markdown/components/Footnotes.tsx +4 -4
- package/ui/src/Markdown/components/MarkdownProvider.tsx +1 -1
- package/ui/src/Markdown/components/MarkdownTable/index.tsx +1 -1
- package/ui/src/Markdown/components/SearchResultCards/SearchResultCard.tsx +6 -6
- package/ui/src/Markdown/components/SearchResultCards/index.tsx +2 -2
- package/ui/src/Markdown/demos/StreamingPlayground.tsx +1 -1
- package/ui/src/Markdown/demos/advanced/htmlPreviewArticle.tsx +1 -1
- package/ui/src/Markdown/demos/advanced/htmlPreviewReport.tsx +2 -2
- package/ui/src/Markdown/demos/advanced/htmlPreviewStream.tsx +1 -1
- package/ui/src/Markdown/demos/content.ts +4 -4
- package/ui/src/Markdown/demos/custom/citations/index.tsx +1 -1
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntArtifact/Component.tsx +1 -1
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntThinking/Component.tsx +1 -1
- package/ui/src/Markdown/demos/custom/thinking/index.tsx +1 -1
- package/ui/src/Markdown/demos/streamingAnimationRepro.tsx +1 -1
- package/ui/src/Markdown/plugins/rehypeStreamAnimated.ts +1 -1
- package/ui/src/Markdown/streamProfiler/StreamdownProfilerPanel.tsx +1 -1
- package/ui/src/Markdown/streamProfiler/profiler.ts +2 -2
- package/ui/src/Markdown/type.ts +6 -6
- package/ui/src/MaskShadow/MaskShadow.tsx +1 -1
- package/ui/src/MaskShadow/type.ts +1 -1
- package/ui/src/MaterialFileTypeIcon/MaterialFileTypeIcon.tsx +4 -4
- package/ui/src/MaterialFileTypeIcon/type.ts +1 -1
- package/ui/src/Menu/Menu.tsx +2 -2
- package/ui/src/Menu/baseItem.ts +1 -1
- package/ui/src/Menu/checkboxItem.ts +1 -1
- package/ui/src/Menu/demos/index.tsx +1 -1
- package/ui/src/Menu/renderUtils.tsx +1 -1
- package/ui/src/Menu/style.ts +1 -1
- package/ui/src/Menu/switchItem.ts +1 -1
- package/ui/src/Menu/type.ts +1 -1
- package/ui/src/Menu/utils.tsx +1 -1
- package/ui/src/Mermaid/FullFeatured.tsx +7 -7
- package/ui/src/Mermaid/Mermaid.tsx +4 -4
- package/ui/src/Mermaid/SyntaxMermaid/StaticMermaid.tsx +2 -2
- package/ui/src/Mermaid/SyntaxMermaid/StreamMermaid.tsx +2 -2
- package/ui/src/Mermaid/type.ts +2 -2
- package/ui/src/Modal/Modal.tsx +2 -2
- package/ui/src/Modal/ModalStackItem.tsx +1 -1
- package/ui/src/Modal/RawModalStackItem.tsx +1 -1
- package/ui/src/Modal/imperative.tsx +3 -3
- package/ui/src/Popover/index.ts +2 -2
- package/ui/src/ScrollArea/index.ts +1 -1
- package/ui/src/ScrollShadow/ScrollShadow.tsx +2 -2
- package/ui/src/ScrollShadow/type.ts +1 -1
- package/ui/src/SearchBar/SearchBar.tsx +4 -4
- package/ui/src/SearchBar/style.ts +1 -1
- package/ui/src/SearchBar/type.ts +1 -1
- package/ui/src/Segmented/style.ts +1 -1
- package/ui/src/Segmented/type.ts +1 -1
- package/ui/src/Select/Select.tsx +1 -1
- package/ui/src/Select/style.ts +1 -1
- package/ui/src/Select/type.ts +1 -1
- package/ui/src/SideNav/SideNav.tsx +1 -1
- package/ui/src/SideNav/type.ts +1 -1
- package/ui/src/Skeleton/Skeleton.tsx +1 -1
- package/ui/src/Skeleton/SkeletonBlock.tsx +2 -2
- package/ui/src/Skeleton/SkeletonParagraph.tsx +1 -1
- package/ui/src/Skeleton/SkeletonTags.tsx +1 -1
- package/ui/src/Skeleton/demos/Avatar.tsx +1 -1
- package/ui/src/Skeleton/demos/Block.tsx +1 -1
- package/ui/src/Skeleton/demos/Button.tsx +1 -1
- package/ui/src/Skeleton/demos/Paragraph.tsx +1 -1
- package/ui/src/Skeleton/demos/Tags.tsx +1 -1
- package/ui/src/Skeleton/demos/Title.tsx +1 -1
- package/ui/src/Skeleton/index.ts +1 -1
- package/ui/src/SliderWithInput/SliderWithInput.tsx +2 -2
- package/ui/src/SliderWithInput/type.ts +2 -2
- package/ui/src/Snippet/Snippet.tsx +4 -4
- package/ui/src/Snippet/style.ts +1 -1
- package/ui/src/Snippet/type.ts +1 -1
- package/ui/src/SortableList/SortableList.tsx +1 -1
- package/ui/src/SortableList/components/DragHandle.tsx +1 -1
- package/ui/src/SortableList/components/SortableItem.tsx +2 -2
- package/ui/src/SortableList/style.ts +1 -1
- package/ui/src/SortableList/type.ts +1 -1
- package/ui/src/Tabs/Tabs.tsx +1 -1
- package/ui/src/Tag/Tag.tsx +2 -2
- package/ui/src/Tag/demos/Color.tsx +1 -1
- package/ui/src/Tag/styles.ts +1 -1
- package/ui/src/Text/Text.tsx +2 -2
- package/ui/src/Text/type.ts +2 -2
- package/ui/src/ThemeProvider/GlobalStyle/antdOverride.ts +1 -1
- package/ui/src/ThemeProvider/GlobalStyle/global.ts +1 -1
- package/ui/src/ThemeProvider/Meta.tsx +1 -1
- package/ui/src/ThemeProvider/ThemeProvider.tsx +5 -5
- package/ui/src/ThemeProvider/demos/CustomFonts.tsx +1 -1
- package/ui/src/ThemeProvider/type.ts +1 -1
- package/ui/src/ThemeSwitch/ThemeSwitch.tsx +5 -5
- package/ui/src/ThemeSwitch/type.ts +2 -2
- package/ui/src/Toast/index.ts +1 -1
- package/ui/src/Toc/TocMobile.tsx +1 -1
- package/ui/src/Toc/style.ts +1 -1
- package/ui/src/Toc/utils.ts +1 -1
- package/ui/src/Tooltip/index.ts +2 -2
- package/ui/src/Video/index.tsx +3 -3
- package/ui/src/Video/style.ts +1 -1
- package/ui/src/awesome/AuroraBackground/AuroraBackground.tsx +1 -1
- package/ui/src/awesome/AuroraBackground/type.ts +1 -1
- package/ui/src/awesome/BottomGradientButton/BottomGradientButton.tsx +1 -1
- package/ui/src/awesome/BottomGradientButton/style.ts +1 -1
- package/ui/src/awesome/BottomGradientButton/type.ts +1 -1
- package/ui/src/awesome/Features/FeatureItem.tsx +5 -5
- package/ui/src/awesome/Features/Features.tsx +1 -1
- package/ui/src/awesome/Features/type.ts +3 -3
- package/ui/src/awesome/Giscus/style.ts +1 -1
- package/ui/src/awesome/GradientButton/GradientButton.tsx +1 -1
- package/ui/src/awesome/GradientButton/style.ts +1 -1
- package/ui/src/awesome/GradientButton/type.ts +1 -1
- package/ui/src/awesome/GridBackground/GridShowcase.tsx +1 -1
- package/ui/src/awesome/GridBackground/components/Grid.tsx +1 -1
- package/ui/src/awesome/GridBackground/type.ts +2 -2
- package/ui/src/awesome/Hero/Hero.tsx +5 -5
- package/ui/src/awesome/Hero/style.ts +1 -1
- package/ui/src/awesome/Spotlight/type.ts +1 -1
- package/ui/src/awesome/SpotlightCard/SpotlightCard.tsx +1 -1
- package/ui/src/awesome/SpotlightCard/SpotlightCardItem.tsx +1 -1
- package/ui/src/awesome/SpotlightCard/demos/index.tsx +1 -1
- package/ui/src/awesome/SpotlightCard/type.ts +1 -1
- package/ui/src/awesome/TypewriterEffect/TypewriterEffect.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/advanced.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/callback.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/colors.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/cursorBehavior.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/cursorStyles.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/customSpeed.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/emoji.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/initialDelay.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/segmentModes.tsx +1 -1
- package/ui/src/awesome/TypewriterEffect/demos/variableSpeed.tsx +1 -1
- package/ui/src/base-ui/Button/Button.tsx +1 -1
- package/ui/src/base-ui/ContextMenu/ContextMenuHost.tsx +4 -4
- package/ui/src/base-ui/ContextMenu/ContextMenuTrigger.tsx +1 -1
- package/ui/src/base-ui/ContextMenu/__tests__/slots.test.tsx +1 -1
- package/ui/src/base-ui/ContextMenu/renderItems.tsx +9 -9
- package/ui/src/base-ui/ContextMenu/store.ts +1 -1
- package/ui/src/base-ui/ContextMenu/style.ts +1 -1
- package/ui/src/base-ui/ContextMenu/type.ts +1 -1
- package/ui/src/base-ui/DropdownMenu/DropdownMenu.tsx +2 -2
- package/ui/src/base-ui/DropdownMenu/atoms.tsx +6 -6
- package/ui/src/base-ui/DropdownMenu/renderItems.tsx +3 -3
- package/ui/src/base-ui/DropdownMenu/type.ts +3 -3
- package/ui/src/base-ui/Modal/Modal.tsx +1 -1
- package/ui/src/base-ui/Modal/atoms.tsx +3 -3
- package/ui/src/base-ui/Modal/imperative.tsx +3 -3
- package/ui/src/base-ui/Popover/Popover.tsx +1 -1
- package/ui/src/base-ui/Popover/PopoverGroup.tsx +3 -3
- package/ui/src/base-ui/Popover/PopoverInGroup.tsx +2 -2
- package/ui/src/base-ui/Popover/PopoverPortal.tsx +1 -1
- package/ui/src/base-ui/Popover/PopoverStandalone.tsx +4 -4
- package/ui/src/base-ui/Popover/atoms.tsx +3 -3
- package/ui/src/base-ui/Popover/demos/dropdown-menu.tsx +1 -1
- package/ui/src/base-ui/Popover/type.ts +2 -2
- package/ui/src/base-ui/Select/Select.tsx +1 -1
- package/ui/src/base-ui/Select/atoms.tsx +3 -3
- package/ui/src/base-ui/Select/hooks.tsx +1 -1
- package/ui/src/base-ui/Select/parts.tsx +2 -2
- package/ui/src/base-ui/Select/renderOptions.tsx +2 -2
- package/ui/src/base-ui/Select/style.ts +1 -1
- package/ui/src/base-ui/Select/type.ts +1 -1
- package/ui/src/base-ui/Switch/Switch.tsx +1 -1
- package/ui/src/base-ui/Switch/atoms.tsx +1 -1
- package/ui/src/base-ui/Toast/Toast.tsx +1 -1
- package/ui/src/base-ui/Toast/imperative.tsx +2 -2
- package/ui/src/base-ui/Toast/type.ts +1 -1
- package/ui/src/base-ui/Tooltip/TooltipContent.tsx +1 -1
- package/ui/src/base-ui/Tooltip/TooltipGroup.tsx +4 -4
- package/ui/src/base-ui/Tooltip/TooltipInGroup.tsx +1 -1
- package/ui/src/base-ui/Tooltip/TooltipStandalone.tsx +5 -5
- package/ui/src/base-ui/Tooltip/demos/group-children-preserve.tsx +1 -1
- package/ui/src/base-ui/Tooltip/demos/group-remove-trigger.tsx +1 -1
- package/ui/src/base-ui/Tooltip/demos/group-shared.tsx +1 -1
- package/ui/src/base-ui/Tooltip/demos/group.tsx +1 -1
- package/ui/src/base-ui/Tooltip/type.ts +2 -2
- package/ui/src/brand/BrandLoading/index.tsx +1 -1
- package/ui/src/brand/Hubstr/index.tsx +7 -7
- package/ui/src/brand/HubstrChat/index.tsx +8 -8
- package/ui/src/brand/HubstrChatText/index.tsx +1 -1
- package/ui/src/brand/HubstrText/index.tsx +1 -1
- package/ui/src/brand/Logo3d/index.tsx +1 -1
- package/ui/src/brand/LogoFlat/index.tsx +1 -1
- package/ui/src/brand/LogoMark.tsx +29 -29
- package/ui/src/brand/LogoMono/index.tsx +1 -1
- package/ui/src/brand/LogoThree/Loading.tsx +2 -2
- package/ui/src/brand/LogoThree/LogoSpline.tsx +1 -1
- package/ui/src/brand/LogoThree/index.tsx +2 -2
- package/ui/src/brand/components/Divider.tsx +1 -1
- package/ui/src/chat/BackBottom/BackBottom.tsx +1 -1
- package/ui/src/chat/Bubble/Bubble.tsx +1 -1
- package/ui/src/chat/Bubble/style.ts +1 -1
- package/ui/src/chat/Bubble/type.ts +1 -1
- package/ui/src/chat/ChatHeader/ChatHeader.tsx +2 -2
- package/ui/src/chat/ChatHeader/ChatHeaderTitle.tsx +1 -1
- package/ui/src/chat/ChatHeader/type.ts +1 -1
- package/ui/src/chat/ChatInputArea/ChatInputArea.tsx +1 -1
- package/ui/src/chat/ChatInputArea/components/ChatInputActionBar.tsx +1 -1
- package/ui/src/chat/ChatInputArea/components/ChatInputAreaInner.tsx +1 -1
- package/ui/src/chat/ChatInputArea/components/ChatSendButton.tsx +3 -3
- package/ui/src/chat/ChatInputArea/demos/index.tsx +1 -1
- package/ui/src/chat/ChatInputArea/style.ts +1 -1
- package/ui/src/chat/ChatInputArea/type.ts +3 -3
- package/ui/src/chat/ChatItem/ChatItem.tsx +3 -3
- package/ui/src/chat/ChatItem/components/Actions.tsx +2 -2
- package/ui/src/chat/ChatItem/components/Avatar.tsx +2 -2
- package/ui/src/chat/ChatItem/components/ErrorContent.tsx +3 -3
- package/ui/src/chat/ChatItem/components/Loading.tsx +3 -3
- package/ui/src/chat/ChatItem/components/MessageContent.tsx +4 -4
- package/ui/src/chat/ChatItem/components/Title.tsx +3 -3
- package/ui/src/chat/ChatItem/type.ts +7 -7
- package/ui/src/chat/ChatList/components/ChatActionsBar.tsx +1 -1
- package/ui/src/chat/ChatList/components/ChatListItem.tsx +4 -4
- package/ui/src/chat/ChatList/components/HistoryDivider.tsx +2 -2
- package/ui/src/chat/ChatList/components/useChatListActionsBar.tsx +1 -1
- package/ui/src/chat/ChatList/demos/data.ts +1 -1
- package/ui/src/chat/ChatList/type.ts +5 -5
- package/ui/src/chat/EditableMessage/EditableMessage.tsx +3 -3
- package/ui/src/chat/EditableMessage/type.ts +3 -3
- package/ui/src/chat/EditableMessageList/EditableMessageList.tsx +7 -7
- package/ui/src/chat/EditableMessageList/messageReducer.ts +1 -1
- package/ui/src/chat/EditableMessageList/type.ts +1 -1
- package/ui/src/chat/MessageInput/MessageInput.tsx +7 -7
- package/ui/src/chat/MessageInput/demos/index.tsx +1 -1
- package/ui/src/chat/MessageInput/type.ts +3 -3
- package/ui/src/chat/MessageModal/MessageModal.tsx +9 -9
- package/ui/src/chat/MessageModal/TextArea.tsx +1 -1
- package/ui/src/chat/MessageModal/type.ts +2 -2
- package/ui/src/chat/TokenTag/TokenTag.tsx +3 -3
- package/ui/src/chat/TokenTag/type.ts +1 -1
- package/ui/src/color/ColorScales/ScaleRow.tsx +2 -2
- package/ui/src/color/ColorScales/index.tsx +1 -1
- package/ui/src/color/CssVar/ScaleRow.tsx +2 -2
- package/ui/src/color/CssVar/VarRow.tsx +2 -2
- package/ui/src/color/CssVar/index.tsx +1 -1
- package/ui/src/color/neutrals/index.ts +1 -1
- package/ui/src/hooks/useHighlight.ts +2 -2
- package/ui/src/hooks/useMarkdown/useMarkdownComponents.tsx +8 -8
- package/ui/src/hooks/useMarkdown/useMarkdownContent.ts +1 -1
- package/ui/src/hooks/useMarkdown/useMarkdownRehypePlugins.ts +3 -3
- package/ui/src/hooks/useMarkdown/useMarkdownRemarkPlugins.ts +5 -5
- package/ui/src/hooks/useStableValue.ts +1 -1
- package/ui/src/hooks/useStreamHighlight.ts +2 -2
- package/ui/src/i18n/context.tsx +4 -4
- package/ui/src/i18n/demos/ConfigProvider.tsx +4 -4
- package/ui/src/i18n/demos/DynamicImport.tsx +2 -2
- package/ui/src/i18n/demos/index.tsx +4 -4
- package/ui/src/icons/lucideExtra/demos/index.tsx +1 -1
- package/ui/src/index.ts +1 -1
- package/ui/src/mdx/Callout/index.tsx +2 -2
- package/ui/src/mdx/Cards/Card.tsx +6 -6
- package/ui/src/mdx/Cards/index.tsx +1 -1
- package/ui/src/mdx/FileTree/File.tsx +2 -2
- package/ui/src/mdx/FileTree/Folder.tsx +2 -2
- package/ui/src/mdx/FileTree/index.tsx +1 -1
- package/ui/src/mdx/Mdx/index.tsx +5 -5
- package/ui/src/mdx/Steps/index.tsx +1 -1
- package/ui/src/mdx/Tabs/Tab.tsx +1 -1
- package/ui/src/mdx/Tabs/index.tsx +2 -2
- package/ui/src/mdx/mdxComponents/Citation/PopoverPanel.tsx +2 -2
- package/ui/src/mdx/mdxComponents/Citation/index.tsx +2 -2
- package/ui/src/mdx/mdxComponents/CodeBlock.tsx +2 -2
- package/ui/src/mdx/mdxComponents/Image.tsx +1 -1
- package/ui/src/mdx/mdxComponents/Link.tsx +4 -4
- package/ui/src/mdx/mdxComponents/Pre.tsx +5 -5
- package/ui/src/mdx/mdxComponents/Section.tsx +1 -1
- package/ui/src/mdx/mdxComponents/Video.tsx +1 -1
- package/ui/src/mdx/mdxComponents/index.ts +7 -7
- package/ui/src/mobile/ChatHeader/ChatHeader.tsx +3 -3
- package/ui/src/mobile/ChatHeader/ChatHeaderTitle.tsx +1 -1
- package/ui/src/mobile/ChatHeader/demos/index.tsx +1 -1
- package/ui/src/mobile/ChatHeader/type.ts +1 -1
- package/ui/src/mobile/ChatInputArea/ChatInputArea.tsx +4 -4
- package/ui/src/mobile/ChatInputArea/components/ChatSendButton.tsx +1 -1
- package/ui/src/mobile/ChatInputArea/demos/index.tsx +1 -1
- package/ui/src/mobile/ChatInputArea/type.ts +2 -2
- package/ui/src/mobile/SafeArea/demos/index.tsx +1 -1
- package/ui/src/mobile/SafeArea/type.ts +1 -1
- package/ui/src/mobile/TabBar/TabBar.tsx +2 -2
- package/ui/src/mobile/TabBar/type.ts +1 -1
- package/ui/src/storybook/StoryBook/index.tsx +2 -2
- package/ui/src/styles/customTheme.ts +2 -2
- package/ui/src/styles/theme/algorithms/darkAlgorithm.ts +5 -5
- package/ui/src/styles/theme/algorithms/lightAlgorithm.ts +3 -3
- package/ui/src/styles/theme/customStylish.ts +1 -1
- package/ui/src/styles/theme/customStylishStatic.ts +1 -1
- package/ui/src/styles/theme/customToken.ts +3 -3
- package/ui/src/styles/theme/generateColorPalette.ts +1 -1
- package/ui/src/styles/theme/token/dark.ts +1 -1
- package/ui/src/styles/theme/token/light.ts +1 -1
- package/ui/src/utils/parseTrigger.ts +1 -1
package/package.json
CHANGED
|
@@ -1,308 +1,308 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@hubstr/kit",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Hubstr UI, icons, editor, charts, TTS, analytics, and CLI tooling.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Hubstr",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "git+ssh://git@github.com/hubstr-io/kit.git"
|
|
10
|
-
},
|
|
11
|
-
"type": "module",
|
|
12
|
-
"sideEffects": [
|
|
13
|
-
"**/*.css"
|
|
14
|
-
],
|
|
15
|
-
"publishConfig": {
|
|
16
|
-
"access": "public",
|
|
17
|
-
"registry": "https://registry.npmjs.org"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"analytics/src",
|
|
21
|
-
"assets-logo/assets",
|
|
22
|
-
"charts/src",
|
|
23
|
-
"cli-ui/dist",
|
|
24
|
-
"commitlint-config/dist",
|
|
25
|
-
"editor/patches",
|
|
26
|
-
"editor/scripts/postinstall-lexical-patch.cjs",
|
|
27
|
-
"editor/src",
|
|
28
|
-
"emojilib",
|
|
29
|
-
"eslint-config/dist",
|
|
30
|
-
"fluent-emoji/es",
|
|
31
|
-
"i18n-cli/dist",
|
|
32
|
-
"icons/es",
|
|
33
|
-
"lint/dist",
|
|
34
|
-
"market-sdk/dist",
|
|
35
|
-
"market-types/dist",
|
|
36
|
-
"prettier-config/dist",
|
|
37
|
-
"remarklint-config/dist",
|
|
38
|
-
"semantic-release-config/dist",
|
|
39
|
-
"seo-cli/dist",
|
|
40
|
-
"stylelint-config/dist",
|
|
41
|
-
"tts/src",
|
|
42
|
-
"ui/src",
|
|
43
|
-
"webfont-geist/css",
|
|
44
|
-
"webfont-geist-mono/css"
|
|
45
|
-
],
|
|
46
|
-
"exports": {
|
|
47
|
-
"./ui": "./ui/src/index.ts",
|
|
48
|
-
"./ui/base-ui": "./ui/src/base-ui/index.ts",
|
|
49
|
-
"./ui/icons": "./ui/src/icons/index.ts",
|
|
50
|
-
"./ui/awesome": "./ui/src/awesome/index.ts",
|
|
51
|
-
"./ui/brand": "./ui/src/brand/index.ts",
|
|
52
|
-
"./ui/chat": "./ui/src/chat/index.ts",
|
|
53
|
-
"./ui/color": "./ui/src/color/index.ts",
|
|
54
|
-
"./ui/i18n": "./ui/src/i18n/index.ts",
|
|
55
|
-
"./ui/mdx": "./ui/src/mdx/index.ts",
|
|
56
|
-
"./ui/mobile": "./ui/src/mobile/index.ts",
|
|
57
|
-
"./ui/storybook": "./ui/src/storybook/index.ts",
|
|
58
|
-
"./icons": {
|
|
59
|
-
"types": "./icons/es/index.d.ts",
|
|
60
|
-
"import": "./icons/es/index.js",
|
|
61
|
-
"default": "./icons/es/index.js"
|
|
62
|
-
},
|
|
63
|
-
"./editor": "./editor/src/index.ts",
|
|
64
|
-
"./editor/react": "./editor/src/react/index.ts",
|
|
65
|
-
"./editor/renderer": "./editor/src/renderer/index.ts",
|
|
66
|
-
"./editor/headless": "./editor/src/headless/index.ts",
|
|
67
|
-
"./editor/codemirror": "./editor/src/codemirror/index.ts",
|
|
68
|
-
"./tts": "./tts/src/index.ts",
|
|
69
|
-
"./tts/react": "./tts/src/react/index.ts",
|
|
70
|
-
"./tts/server": "./tts/src/server/index.ts",
|
|
71
|
-
"./charts": "./charts/src/index.ts",
|
|
72
|
-
"./analytics": "./analytics/src/index.ts",
|
|
73
|
-
"./analytics/react": "./analytics/src/react/index.ts",
|
|
74
|
-
"./analytics/server": "./analytics/src/server.ts",
|
|
75
|
-
"./fluent-emoji": {
|
|
76
|
-
"types": "./fluent-emoji/es/index.d.ts",
|
|
77
|
-
"import": "./fluent-emoji/es/index.js",
|
|
78
|
-
"default": "./fluent-emoji/es/index.js"
|
|
79
|
-
},
|
|
80
|
-
"./market-sdk": "./market-sdk/dist/index.mjs",
|
|
81
|
-
"./market-types": "./market-types/dist/index.mjs",
|
|
82
|
-
"./lint": "./lint/dist/index.js",
|
|
83
|
-
"./eslint-config": "./eslint-config/dist/index.js",
|
|
84
|
-
"./commitlint-config": "./commitlint-config/dist/index.js",
|
|
85
|
-
"./prettier-config": "./prettier-config/dist/index.js",
|
|
86
|
-
"./remarklint-config": "./remarklint-config/dist/index.js",
|
|
87
|
-
"./stylelint-config": "./stylelint-config/dist/index.js",
|
|
88
|
-
"./semantic-release-config": "./semantic-release-config/dist/index.js",
|
|
89
|
-
"./semantic-release-config/changelog": "./semantic-release-config/dist/changelog.js",
|
|
90
|
-
"./semantic-release-config/monorepo": "./semantic-release-config/dist/monorepo.js",
|
|
91
|
-
"./cli-ui": "./cli-ui/dist/index.js",
|
|
92
|
-
"./emojilib": "./emojilib/index.json",
|
|
93
|
-
"./assets-logo": "./assets-logo/assets/logo.png",
|
|
94
|
-
"./assets-logo/*": "./assets-logo/assets/*",
|
|
95
|
-
"./webfont-geist/css": "./webfont-geist/css/index.css",
|
|
96
|
-
"./webfont-geist-mono/css": "./webfont-geist-mono/css/index.css"
|
|
97
|
-
},
|
|
98
|
-
"bin": {
|
|
99
|
-
"hubstr-i18n": "./i18n-cli/dist/cli.js",
|
|
100
|
-
"hubstr-seo": "./seo-cli/dist/cli.js"
|
|
101
|
-
},
|
|
102
|
-
"scripts": {
|
|
103
|
-
"postinstall": "node ./editor/scripts/postinstall-lexical-patch.cjs"
|
|
104
|
-
},
|
|
105
|
-
"peerDependencies": {
|
|
106
|
-
"antd": "^6.1.1",
|
|
107
|
-
"motion": "^12.0.0",
|
|
108
|
-
"react": "^19.0.0",
|
|
109
|
-
"react-dom": "^19.0.0"
|
|
110
|
-
},
|
|
111
|
-
"dependencies": {
|
|
112
|
-
"@ant-design/cssinjs": "^2.1.2",
|
|
113
|
-
"@base-ui/react": "1.5.0",
|
|
114
|
-
"@dnd-kit/core": "^6.3.1",
|
|
115
|
-
"@dnd-kit/modifiers": "^9.0.0",
|
|
116
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
117
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
118
|
-
"@emoji-mart/data": "^1.2.1",
|
|
119
|
-
"@emoji-mart/react": "^1.1.1",
|
|
120
|
-
"@emotion/is-prop-valid": "^1.4.0",
|
|
121
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
|
|
122
|
-
"@eslint-react/eslint-plugin": "^2.12.4",
|
|
123
|
-
"@eslint/js": "^10.0.1",
|
|
124
|
-
"@floating-ui/dom": "^1.7.4",
|
|
125
|
-
"@floating-ui/react": "^0.27.19",
|
|
126
|
-
"@giscus/react": "^3.1.0",
|
|
127
|
-
"@lexical/clipboard": "0.42.0",
|
|
128
|
-
"@lexical/code-core": "0.42.0",
|
|
129
|
-
"@lexical/dragon": "0.42.0",
|
|
130
|
-
"@lexical/headless": "0.42.0",
|
|
131
|
-
"@lexical/history": "0.42.0",
|
|
132
|
-
"@lexical/link": "0.42.0",
|
|
133
|
-
"@lexical/list": "0.42.0",
|
|
134
|
-
"@lexical/rich-text": "0.42.0",
|
|
135
|
-
"@lexical/selection": "0.42.0",
|
|
136
|
-
"@lexical/table": "0.42.0",
|
|
137
|
-
"@lexical/utils": "0.42.0",
|
|
138
|
-
"@mdx-js/mdx": "^3.1.1",
|
|
139
|
-
"@mdx-js/react": "^3.1.1",
|
|
140
|
-
"@next/eslint-plugin-next": "^16.1.6",
|
|
141
|
-
"@pierre/diffs": "1.2.8",
|
|
142
|
-
"@radix-ui/react-slot": "^1.2.5",
|
|
143
|
-
"@shikijs/core": "^4.2.0",
|
|
144
|
-
"@shikijs/engine-javascript": "^3.20.0",
|
|
145
|
-
"@shikijs/transformers": "^4.2.0",
|
|
146
|
-
"@splinetool/runtime": "0.9.526",
|
|
147
|
-
"@xmldom/xmldom": "^0.8.11",
|
|
148
|
-
"ahooks": "^3.9.7",
|
|
149
|
-
"antd-style": "^4.1.0",
|
|
150
|
-
"arr-rotate": "^1.0.0",
|
|
151
|
-
"chalk": "^5.3.0",
|
|
152
|
-
"chroma-js": "^3.2.0",
|
|
153
|
-
"class-variance-authority": "^0.7.1",
|
|
154
|
-
"cli-spinners": "^3.0.0",
|
|
155
|
-
"clsx": "^2.1.1",
|
|
156
|
-
"commander": "^13.0.0",
|
|
157
|
-
"commitlint-config-gitmoji": "^2.3.1",
|
|
158
|
-
"conf": "^13.1.0",
|
|
159
|
-
"consola": "^3.3.3",
|
|
160
|
-
"cosmiconfig": "^9.0.0",
|
|
161
|
-
"date-fns": "^4.1.0",
|
|
162
|
-
"dayjs": "^1.11.21",
|
|
163
|
-
"debug": "^4.4.3",
|
|
164
|
-
"deepmerge": "^4.3.1",
|
|
165
|
-
"dirty-json": "^0.9.2",
|
|
166
|
-
"dotenv": "^16.4.7",
|
|
167
|
-
"eld": "^2.0.3",
|
|
168
|
-
"emoji-mart": "^5.6.0",
|
|
169
|
-
"emoji-regex": "^10.6.0",
|
|
170
|
-
"es-toolkit": "^1.47.0",
|
|
171
|
-
"eslint-config-prettier": "^9.1.2",
|
|
172
|
-
"eslint-import-resolver-typescript": "^4.4.4",
|
|
173
|
-
"eslint-plugin-import-x": "^4.16.1",
|
|
174
|
-
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
175
|
-
"eslint-plugin-perfectionist": "^5.5.0",
|
|
176
|
-
"eslint-plugin-react": "^7.37.5",
|
|
177
|
-
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
178
|
-
"eslint-plugin-react-hooks": "5.2.0",
|
|
179
|
-
"eslint-plugin-react-native": "^5.0.0",
|
|
180
|
-
"eslint-plugin-react-refresh": "^0.5.0",
|
|
181
|
-
"eslint-plugin-regexp": "^3.0.0",
|
|
182
|
-
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
183
|
-
"eslint-plugin-unicorn": "^63.0.0",
|
|
184
|
-
"eslint-plugin-unused-imports": "^4.4.1",
|
|
185
|
-
"eslint-plugin-yml": "^3.1.2",
|
|
186
|
-
"eventemitter3": "^5.0.1",
|
|
187
|
-
"fast-deep-equal": "^3.1.3",
|
|
188
|
-
"figures": "^6.1.0",
|
|
189
|
-
"fuse.js": "^7.1.0",
|
|
190
|
-
"glob": "^10.4.5",
|
|
191
|
-
"globals": "^17.3.0",
|
|
192
|
-
"gpt-tokenizer": "^2.8.1",
|
|
193
|
-
"gray-matter": "^4.0.3",
|
|
194
|
-
"hast-util-to-jsx-runtime": "^2.3.6",
|
|
195
|
-
"html-url-attributes": "^3.0.1",
|
|
196
|
-
"immer": "^11.1.8",
|
|
197
|
-
"ink": "^6.0.0",
|
|
198
|
-
"jose": "^6.1.3",
|
|
199
|
-
"json-stable-stringify": "^1.2.1",
|
|
200
|
-
"just-diff": "^6.0.2",
|
|
201
|
-
"katex": "^0.16.47",
|
|
202
|
-
"leva": "^0.10.1",
|
|
203
|
-
"lexical": "0.42.0",
|
|
204
|
-
"lodash-es": "^4.17.21",
|
|
205
|
-
"lucide-react": "^1.17.0",
|
|
206
|
-
"markdown-to-txt": "^2.0.1",
|
|
207
|
-
"marked": "^17.0.6",
|
|
208
|
-
"mermaid": "^11.15.0",
|
|
209
|
-
"motion": "^12.40.0",
|
|
210
|
-
"numeral": "^2.0.6",
|
|
211
|
-
"openai": "^6.15.0",
|
|
212
|
-
"p-map": "^7.0.3",
|
|
213
|
-
"pangu": "^4.0.7",
|
|
214
|
-
"polished": "^4.3.1",
|
|
215
|
-
"postcss-less": "^6.0.0",
|
|
216
|
-
"postcss-styled-syntax": "^0.7.0",
|
|
217
|
-
"posthog-js": "^1.103.0",
|
|
218
|
-
"prettier-plugin-packagejson": "^2.5.6",
|
|
219
|
-
"prettier-plugin-sh": "^0.14.0",
|
|
220
|
-
"prettier-plugin-sort-json": "^4.1.0",
|
|
221
|
-
"query-string": "^9.4.0",
|
|
222
|
-
"rc-collapse": "^4.0.0",
|
|
223
|
-
"rc-footer": "^0.6.8",
|
|
224
|
-
"rc-image": "^7.12.0",
|
|
225
|
-
"rc-input-number": "^9.5.0",
|
|
226
|
-
"rc-menu": "^9.16.1",
|
|
227
|
-
"re-resizable": "^6.11.2",
|
|
228
|
-
"react": "^19.0.0",
|
|
229
|
-
"react-avatar-editor": "^15.1.0",
|
|
230
|
-
"react-error-boundary": "^6.1.2",
|
|
231
|
-
"react-hotkeys-hook": "^5.3.2",
|
|
232
|
-
"react-markdown": "^10.1.0",
|
|
233
|
-
"react-merge-refs": "^3.0.2",
|
|
234
|
-
"react-rnd": "^10.5.3",
|
|
235
|
-
"react-zoom-pan-pinch": "^3.7.0",
|
|
236
|
-
"recharts": "^2.15.4",
|
|
237
|
-
"rehype-github-alerts": "^4.2.0",
|
|
238
|
-
"rehype-katex": "^7.0.1",
|
|
239
|
-
"rehype-raw": "^7.0.0",
|
|
240
|
-
"remark": "^15.0.1",
|
|
241
|
-
"remark-breaks": "^4.0.0",
|
|
242
|
-
"remark-cjk-friendly": "^2.0.1",
|
|
243
|
-
"remark-frontmatter": "^5.0.0",
|
|
244
|
-
"remark-gfm": "^4.0.1",
|
|
245
|
-
"remark-github": "^12.0.0",
|
|
246
|
-
"remark-lint": "^10.0.0",
|
|
247
|
-
"remark-lint-checkbox-content-indent": "^5.0.0",
|
|
248
|
-
"remark-lint-frontmatter-schema": "^3.15.4",
|
|
249
|
-
"remark-lint-heading-whitespace": "^1.0.0",
|
|
250
|
-
"remark-lint-linebreak-style": "^4.0.0",
|
|
251
|
-
"remark-lint-list-item-indent": "^4.0.0",
|
|
252
|
-
"remark-lint-list-item-spacing": "^5.0.0",
|
|
253
|
-
"remark-lint-no-duplicate-headings-in-section": "^4.0.0",
|
|
254
|
-
"remark-lint-no-empty-sections": "^4.0.0",
|
|
255
|
-
"remark-lint-no-empty-url": "^4.0.0",
|
|
256
|
-
"remark-lint-no-file-name-irregular-characters": "^3.0.0",
|
|
257
|
-
"remark-lint-no-heading-indent": "^5.0.0",
|
|
258
|
-
"remark-lint-no-heading-like-paragraph": "^4.0.0",
|
|
259
|
-
"remark-lint-no-paragraph-content-indent": "^5.0.0",
|
|
260
|
-
"remark-lint-no-reference-like-url": "^4.0.0",
|
|
261
|
-
"remark-lint-no-shell-dollars": "^4.0.0",
|
|
262
|
-
"remark-lint-no-tabs": "^4.0.0",
|
|
263
|
-
"remark-lint-no-unneeded-full-reference-image": "^4.0.0",
|
|
264
|
-
"remark-lint-no-unneeded-full-reference-link": "^4.0.0",
|
|
265
|
-
"remark-lint-ordered-list-marker-value": "^4.0.0",
|
|
266
|
-
"remark-lint-write-good": "^1.2.0",
|
|
267
|
-
"remark-math": "^6.0.0",
|
|
268
|
-
"remark-pangu": "^2.2.0",
|
|
269
|
-
"remark-parse": "^11.0.0",
|
|
270
|
-
"remark-preset-lint-consistent": "^6.0.0",
|
|
271
|
-
"remark-preset-lint-markdown-style-guide": "^6.0.0",
|
|
272
|
-
"remark-preset-lint-recommended": "^7.0.0",
|
|
273
|
-
"remark-rehype": "^11.1.2",
|
|
274
|
-
"remark-remove-unused-definitions": "^2.0.0",
|
|
275
|
-
"remark-sort-definitions": "^2.0.0",
|
|
276
|
-
"remark-stringify": "^11.0.0",
|
|
277
|
-
"remark-supersub": "^1.0.0",
|
|
278
|
-
"remark-textr": "^6.1.0",
|
|
279
|
-
"remark-toc": "^9.0.0",
|
|
280
|
-
"remend": "^1.3.0",
|
|
281
|
-
"semantic-release-config-gitmoji": "^1.5.3",
|
|
282
|
-
"shiki": "^4.2.0",
|
|
283
|
-
"shiki-stream": "^0.1.5",
|
|
284
|
-
"stylelint-config-clean-order": "^7.0.0",
|
|
285
|
-
"stylelint-config-recommended": "^14.0.1",
|
|
286
|
-
"stylelint-config-standard": "^37.0.0",
|
|
287
|
-
"stylelint-less": "^3.0.1",
|
|
288
|
-
"stylelint-order": "^6.0.4",
|
|
289
|
-
"stylelint-use-logical-spec": "^5.0.1",
|
|
290
|
-
"swr": "^2.4.1",
|
|
291
|
-
"ts-key-enum": "^3.0.13",
|
|
292
|
-
"ts-md5": "^2.0.1",
|
|
293
|
-
"typescript-eslint": "^8.55.0",
|
|
294
|
-
"unified": "^11.0.5",
|
|
295
|
-
"unist-util-visit": "^5.0.0",
|
|
296
|
-
"update-notifier": "^7.3.1",
|
|
297
|
-
"url-join": "^5.0.0",
|
|
298
|
-
"use-merge-value": "^1.2.0",
|
|
299
|
-
"uuid": "^13.0.2",
|
|
300
|
-
"vfile": "^6.0.3",
|
|
301
|
-
"virtua": "^0.49.1",
|
|
302
|
-
"zod": "^3.22.4",
|
|
303
|
-
"zustand": "^5.0.3"
|
|
304
|
-
},
|
|
305
|
-
"optionalDependencies": {
|
|
306
|
-
"posthog-node": "^4.2.1"
|
|
307
|
-
}
|
|
308
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@hubstr/kit",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Hubstr UI, icons, editor, charts, TTS, analytics, and CLI tooling.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Hubstr",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+ssh://git@github.com/hubstr-io/kit.git"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"**/*.css"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"registry": "https://registry.npmjs.org"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"analytics/src",
|
|
21
|
+
"assets-logo/assets",
|
|
22
|
+
"charts/src",
|
|
23
|
+
"cli-ui/dist",
|
|
24
|
+
"commitlint-config/dist",
|
|
25
|
+
"editor/patches",
|
|
26
|
+
"editor/scripts/postinstall-lexical-patch.cjs",
|
|
27
|
+
"editor/src",
|
|
28
|
+
"emojilib",
|
|
29
|
+
"eslint-config/dist",
|
|
30
|
+
"fluent-emoji/es",
|
|
31
|
+
"i18n-cli/dist",
|
|
32
|
+
"icons/es",
|
|
33
|
+
"lint/dist",
|
|
34
|
+
"market-sdk/dist",
|
|
35
|
+
"market-types/dist",
|
|
36
|
+
"prettier-config/dist",
|
|
37
|
+
"remarklint-config/dist",
|
|
38
|
+
"semantic-release-config/dist",
|
|
39
|
+
"seo-cli/dist",
|
|
40
|
+
"stylelint-config/dist",
|
|
41
|
+
"tts/src",
|
|
42
|
+
"ui/src",
|
|
43
|
+
"webfont-geist/css",
|
|
44
|
+
"webfont-geist-mono/css"
|
|
45
|
+
],
|
|
46
|
+
"exports": {
|
|
47
|
+
"./ui": "./ui/src/index.ts",
|
|
48
|
+
"./ui/base-ui": "./ui/src/base-ui/index.ts",
|
|
49
|
+
"./ui/icons": "./ui/src/icons/index.ts",
|
|
50
|
+
"./ui/awesome": "./ui/src/awesome/index.ts",
|
|
51
|
+
"./ui/brand": "./ui/src/brand/index.ts",
|
|
52
|
+
"./ui/chat": "./ui/src/chat/index.ts",
|
|
53
|
+
"./ui/color": "./ui/src/color/index.ts",
|
|
54
|
+
"./ui/i18n": "./ui/src/i18n/index.ts",
|
|
55
|
+
"./ui/mdx": "./ui/src/mdx/index.ts",
|
|
56
|
+
"./ui/mobile": "./ui/src/mobile/index.ts",
|
|
57
|
+
"./ui/storybook": "./ui/src/storybook/index.ts",
|
|
58
|
+
"./icons": {
|
|
59
|
+
"types": "./icons/es/index.d.ts",
|
|
60
|
+
"import": "./icons/es/index.js",
|
|
61
|
+
"default": "./icons/es/index.js"
|
|
62
|
+
},
|
|
63
|
+
"./editor": "./editor/src/index.ts",
|
|
64
|
+
"./editor/react": "./editor/src/react/index.ts",
|
|
65
|
+
"./editor/renderer": "./editor/src/renderer/index.ts",
|
|
66
|
+
"./editor/headless": "./editor/src/headless/index.ts",
|
|
67
|
+
"./editor/codemirror": "./editor/src/codemirror/index.ts",
|
|
68
|
+
"./tts": "./tts/src/index.ts",
|
|
69
|
+
"./tts/react": "./tts/src/react/index.ts",
|
|
70
|
+
"./tts/server": "./tts/src/server/index.ts",
|
|
71
|
+
"./charts": "./charts/src/index.ts",
|
|
72
|
+
"./analytics": "./analytics/src/index.ts",
|
|
73
|
+
"./analytics/react": "./analytics/src/react/index.ts",
|
|
74
|
+
"./analytics/server": "./analytics/src/server.ts",
|
|
75
|
+
"./fluent-emoji": {
|
|
76
|
+
"types": "./fluent-emoji/es/index.d.ts",
|
|
77
|
+
"import": "./fluent-emoji/es/index.js",
|
|
78
|
+
"default": "./fluent-emoji/es/index.js"
|
|
79
|
+
},
|
|
80
|
+
"./market-sdk": "./market-sdk/dist/index.mjs",
|
|
81
|
+
"./market-types": "./market-types/dist/index.mjs",
|
|
82
|
+
"./lint": "./lint/dist/index.js",
|
|
83
|
+
"./eslint-config": "./eslint-config/dist/index.js",
|
|
84
|
+
"./commitlint-config": "./commitlint-config/dist/index.js",
|
|
85
|
+
"./prettier-config": "./prettier-config/dist/index.js",
|
|
86
|
+
"./remarklint-config": "./remarklint-config/dist/index.js",
|
|
87
|
+
"./stylelint-config": "./stylelint-config/dist/index.js",
|
|
88
|
+
"./semantic-release-config": "./semantic-release-config/dist/index.js",
|
|
89
|
+
"./semantic-release-config/changelog": "./semantic-release-config/dist/changelog.js",
|
|
90
|
+
"./semantic-release-config/monorepo": "./semantic-release-config/dist/monorepo.js",
|
|
91
|
+
"./cli-ui": "./cli-ui/dist/index.js",
|
|
92
|
+
"./emojilib": "./emojilib/index.json",
|
|
93
|
+
"./assets-logo": "./assets-logo/assets/logo.png",
|
|
94
|
+
"./assets-logo/*": "./assets-logo/assets/*",
|
|
95
|
+
"./webfont-geist/css": "./webfont-geist/css/index.css",
|
|
96
|
+
"./webfont-geist-mono/css": "./webfont-geist-mono/css/index.css"
|
|
97
|
+
},
|
|
98
|
+
"bin": {
|
|
99
|
+
"hubstr-i18n": "./i18n-cli/dist/cli.js",
|
|
100
|
+
"hubstr-seo": "./seo-cli/dist/cli.js"
|
|
101
|
+
},
|
|
102
|
+
"scripts": {
|
|
103
|
+
"postinstall": "node ./editor/scripts/postinstall-lexical-patch.cjs"
|
|
104
|
+
},
|
|
105
|
+
"peerDependencies": {
|
|
106
|
+
"antd": "^6.1.1",
|
|
107
|
+
"motion": "^12.0.0",
|
|
108
|
+
"react": "^19.0.0",
|
|
109
|
+
"react-dom": "^19.0.0"
|
|
110
|
+
},
|
|
111
|
+
"dependencies": {
|
|
112
|
+
"@ant-design/cssinjs": "^2.1.2",
|
|
113
|
+
"@base-ui/react": "1.5.0",
|
|
114
|
+
"@dnd-kit/core": "^6.3.1",
|
|
115
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
116
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
117
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
118
|
+
"@emoji-mart/data": "^1.2.1",
|
|
119
|
+
"@emoji-mart/react": "^1.1.1",
|
|
120
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
121
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
|
|
122
|
+
"@eslint-react/eslint-plugin": "^2.12.4",
|
|
123
|
+
"@eslint/js": "^10.0.1",
|
|
124
|
+
"@floating-ui/dom": "^1.7.4",
|
|
125
|
+
"@floating-ui/react": "^0.27.19",
|
|
126
|
+
"@giscus/react": "^3.1.0",
|
|
127
|
+
"@lexical/clipboard": "0.42.0",
|
|
128
|
+
"@lexical/code-core": "0.42.0",
|
|
129
|
+
"@lexical/dragon": "0.42.0",
|
|
130
|
+
"@lexical/headless": "0.42.0",
|
|
131
|
+
"@lexical/history": "0.42.0",
|
|
132
|
+
"@lexical/link": "0.42.0",
|
|
133
|
+
"@lexical/list": "0.42.0",
|
|
134
|
+
"@lexical/rich-text": "0.42.0",
|
|
135
|
+
"@lexical/selection": "0.42.0",
|
|
136
|
+
"@lexical/table": "0.42.0",
|
|
137
|
+
"@lexical/utils": "0.42.0",
|
|
138
|
+
"@mdx-js/mdx": "^3.1.1",
|
|
139
|
+
"@mdx-js/react": "^3.1.1",
|
|
140
|
+
"@next/eslint-plugin-next": "^16.1.6",
|
|
141
|
+
"@pierre/diffs": "1.2.8",
|
|
142
|
+
"@radix-ui/react-slot": "^1.2.5",
|
|
143
|
+
"@shikijs/core": "^4.2.0",
|
|
144
|
+
"@shikijs/engine-javascript": "^3.20.0",
|
|
145
|
+
"@shikijs/transformers": "^4.2.0",
|
|
146
|
+
"@splinetool/runtime": "0.9.526",
|
|
147
|
+
"@xmldom/xmldom": "^0.8.11",
|
|
148
|
+
"ahooks": "^3.9.7",
|
|
149
|
+
"antd-style": "^4.1.0",
|
|
150
|
+
"arr-rotate": "^1.0.0",
|
|
151
|
+
"chalk": "^5.3.0",
|
|
152
|
+
"chroma-js": "^3.2.0",
|
|
153
|
+
"class-variance-authority": "^0.7.1",
|
|
154
|
+
"cli-spinners": "^3.0.0",
|
|
155
|
+
"clsx": "^2.1.1",
|
|
156
|
+
"commander": "^13.0.0",
|
|
157
|
+
"commitlint-config-gitmoji": "^2.3.1",
|
|
158
|
+
"conf": "^13.1.0",
|
|
159
|
+
"consola": "^3.3.3",
|
|
160
|
+
"cosmiconfig": "^9.0.0",
|
|
161
|
+
"date-fns": "^4.1.0",
|
|
162
|
+
"dayjs": "^1.11.21",
|
|
163
|
+
"debug": "^4.4.3",
|
|
164
|
+
"deepmerge": "^4.3.1",
|
|
165
|
+
"dirty-json": "^0.9.2",
|
|
166
|
+
"dotenv": "^16.4.7",
|
|
167
|
+
"eld": "^2.0.3",
|
|
168
|
+
"emoji-mart": "^5.6.0",
|
|
169
|
+
"emoji-regex": "^10.6.0",
|
|
170
|
+
"es-toolkit": "^1.47.0",
|
|
171
|
+
"eslint-config-prettier": "^9.1.2",
|
|
172
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
173
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
174
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
175
|
+
"eslint-plugin-perfectionist": "^5.5.0",
|
|
176
|
+
"eslint-plugin-react": "^7.37.5",
|
|
177
|
+
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
178
|
+
"eslint-plugin-react-hooks": "5.2.0",
|
|
179
|
+
"eslint-plugin-react-native": "^5.0.0",
|
|
180
|
+
"eslint-plugin-react-refresh": "^0.5.0",
|
|
181
|
+
"eslint-plugin-regexp": "^3.0.0",
|
|
182
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
183
|
+
"eslint-plugin-unicorn": "^63.0.0",
|
|
184
|
+
"eslint-plugin-unused-imports": "^4.4.1",
|
|
185
|
+
"eslint-plugin-yml": "^3.1.2",
|
|
186
|
+
"eventemitter3": "^5.0.1",
|
|
187
|
+
"fast-deep-equal": "^3.1.3",
|
|
188
|
+
"figures": "^6.1.0",
|
|
189
|
+
"fuse.js": "^7.1.0",
|
|
190
|
+
"glob": "^10.4.5",
|
|
191
|
+
"globals": "^17.3.0",
|
|
192
|
+
"gpt-tokenizer": "^2.8.1",
|
|
193
|
+
"gray-matter": "^4.0.3",
|
|
194
|
+
"hast-util-to-jsx-runtime": "^2.3.6",
|
|
195
|
+
"html-url-attributes": "^3.0.1",
|
|
196
|
+
"immer": "^11.1.8",
|
|
197
|
+
"ink": "^6.0.0",
|
|
198
|
+
"jose": "^6.1.3",
|
|
199
|
+
"json-stable-stringify": "^1.2.1",
|
|
200
|
+
"just-diff": "^6.0.2",
|
|
201
|
+
"katex": "^0.16.47",
|
|
202
|
+
"leva": "^0.10.1",
|
|
203
|
+
"lexical": "0.42.0",
|
|
204
|
+
"lodash-es": "^4.17.21",
|
|
205
|
+
"lucide-react": "^1.17.0",
|
|
206
|
+
"markdown-to-txt": "^2.0.1",
|
|
207
|
+
"marked": "^17.0.6",
|
|
208
|
+
"mermaid": "^11.15.0",
|
|
209
|
+
"motion": "^12.40.0",
|
|
210
|
+
"numeral": "^2.0.6",
|
|
211
|
+
"openai": "^6.15.0",
|
|
212
|
+
"p-map": "^7.0.3",
|
|
213
|
+
"pangu": "^4.0.7",
|
|
214
|
+
"polished": "^4.3.1",
|
|
215
|
+
"postcss-less": "^6.0.0",
|
|
216
|
+
"postcss-styled-syntax": "^0.7.0",
|
|
217
|
+
"posthog-js": "^1.103.0",
|
|
218
|
+
"prettier-plugin-packagejson": "^2.5.6",
|
|
219
|
+
"prettier-plugin-sh": "^0.14.0",
|
|
220
|
+
"prettier-plugin-sort-json": "^4.1.0",
|
|
221
|
+
"query-string": "^9.4.0",
|
|
222
|
+
"rc-collapse": "^4.0.0",
|
|
223
|
+
"rc-footer": "^0.6.8",
|
|
224
|
+
"rc-image": "^7.12.0",
|
|
225
|
+
"rc-input-number": "^9.5.0",
|
|
226
|
+
"rc-menu": "^9.16.1",
|
|
227
|
+
"re-resizable": "^6.11.2",
|
|
228
|
+
"react": "^19.0.0",
|
|
229
|
+
"react-avatar-editor": "^15.1.0",
|
|
230
|
+
"react-error-boundary": "^6.1.2",
|
|
231
|
+
"react-hotkeys-hook": "^5.3.2",
|
|
232
|
+
"react-markdown": "^10.1.0",
|
|
233
|
+
"react-merge-refs": "^3.0.2",
|
|
234
|
+
"react-rnd": "^10.5.3",
|
|
235
|
+
"react-zoom-pan-pinch": "^3.7.0",
|
|
236
|
+
"recharts": "^2.15.4",
|
|
237
|
+
"rehype-github-alerts": "^4.2.0",
|
|
238
|
+
"rehype-katex": "^7.0.1",
|
|
239
|
+
"rehype-raw": "^7.0.0",
|
|
240
|
+
"remark": "^15.0.1",
|
|
241
|
+
"remark-breaks": "^4.0.0",
|
|
242
|
+
"remark-cjk-friendly": "^2.0.1",
|
|
243
|
+
"remark-frontmatter": "^5.0.0",
|
|
244
|
+
"remark-gfm": "^4.0.1",
|
|
245
|
+
"remark-github": "^12.0.0",
|
|
246
|
+
"remark-lint": "^10.0.0",
|
|
247
|
+
"remark-lint-checkbox-content-indent": "^5.0.0",
|
|
248
|
+
"remark-lint-frontmatter-schema": "^3.15.4",
|
|
249
|
+
"remark-lint-heading-whitespace": "^1.0.0",
|
|
250
|
+
"remark-lint-linebreak-style": "^4.0.0",
|
|
251
|
+
"remark-lint-list-item-indent": "^4.0.0",
|
|
252
|
+
"remark-lint-list-item-spacing": "^5.0.0",
|
|
253
|
+
"remark-lint-no-duplicate-headings-in-section": "^4.0.0",
|
|
254
|
+
"remark-lint-no-empty-sections": "^4.0.0",
|
|
255
|
+
"remark-lint-no-empty-url": "^4.0.0",
|
|
256
|
+
"remark-lint-no-file-name-irregular-characters": "^3.0.0",
|
|
257
|
+
"remark-lint-no-heading-indent": "^5.0.0",
|
|
258
|
+
"remark-lint-no-heading-like-paragraph": "^4.0.0",
|
|
259
|
+
"remark-lint-no-paragraph-content-indent": "^5.0.0",
|
|
260
|
+
"remark-lint-no-reference-like-url": "^4.0.0",
|
|
261
|
+
"remark-lint-no-shell-dollars": "^4.0.0",
|
|
262
|
+
"remark-lint-no-tabs": "^4.0.0",
|
|
263
|
+
"remark-lint-no-unneeded-full-reference-image": "^4.0.0",
|
|
264
|
+
"remark-lint-no-unneeded-full-reference-link": "^4.0.0",
|
|
265
|
+
"remark-lint-ordered-list-marker-value": "^4.0.0",
|
|
266
|
+
"remark-lint-write-good": "^1.2.0",
|
|
267
|
+
"remark-math": "^6.0.0",
|
|
268
|
+
"remark-pangu": "^2.2.0",
|
|
269
|
+
"remark-parse": "^11.0.0",
|
|
270
|
+
"remark-preset-lint-consistent": "^6.0.0",
|
|
271
|
+
"remark-preset-lint-markdown-style-guide": "^6.0.0",
|
|
272
|
+
"remark-preset-lint-recommended": "^7.0.0",
|
|
273
|
+
"remark-rehype": "^11.1.2",
|
|
274
|
+
"remark-remove-unused-definitions": "^2.0.0",
|
|
275
|
+
"remark-sort-definitions": "^2.0.0",
|
|
276
|
+
"remark-stringify": "^11.0.0",
|
|
277
|
+
"remark-supersub": "^1.0.0",
|
|
278
|
+
"remark-textr": "^6.1.0",
|
|
279
|
+
"remark-toc": "^9.0.0",
|
|
280
|
+
"remend": "^1.3.0",
|
|
281
|
+
"semantic-release-config-gitmoji": "^1.5.3",
|
|
282
|
+
"shiki": "^4.2.0",
|
|
283
|
+
"shiki-stream": "^0.1.5",
|
|
284
|
+
"stylelint-config-clean-order": "^7.0.0",
|
|
285
|
+
"stylelint-config-recommended": "^14.0.1",
|
|
286
|
+
"stylelint-config-standard": "^37.0.0",
|
|
287
|
+
"stylelint-less": "^3.0.1",
|
|
288
|
+
"stylelint-order": "^6.0.4",
|
|
289
|
+
"stylelint-use-logical-spec": "^5.0.1",
|
|
290
|
+
"swr": "^2.4.1",
|
|
291
|
+
"ts-key-enum": "^3.0.13",
|
|
292
|
+
"ts-md5": "^2.0.1",
|
|
293
|
+
"typescript-eslint": "^8.55.0",
|
|
294
|
+
"unified": "^11.0.5",
|
|
295
|
+
"unist-util-visit": "^5.0.0",
|
|
296
|
+
"update-notifier": "^7.3.1",
|
|
297
|
+
"url-join": "^5.0.0",
|
|
298
|
+
"use-merge-value": "^1.2.0",
|
|
299
|
+
"uuid": "^13.0.2",
|
|
300
|
+
"vfile": "^6.0.3",
|
|
301
|
+
"virtua": "^0.49.1",
|
|
302
|
+
"zod": "^3.22.4",
|
|
303
|
+
"zustand": "^5.0.3"
|
|
304
|
+
},
|
|
305
|
+
"optionalDependencies": {
|
|
306
|
+
"posthog-node": "^4.2.1"
|
|
307
|
+
}
|
|
308
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import edgeVoiceList from '
|
|
2
|
-
import voiceName from '
|
|
3
|
-
import { arrayBufferConvert } from '
|
|
4
|
-
import { getVoiceLocaleOptions } from '
|
|
1
|
+
import edgeVoiceList from './edgeVoiceList';
|
|
2
|
+
import voiceName from '../data/voiceList';
|
|
3
|
+
import { arrayBufferConvert } from '../utils/arrayBufferConvert';
|
|
4
|
+
import { getVoiceLocaleOptions } from '../utils/getVoiceList';
|
|
5
5
|
|
|
6
6
|
import { type EdgeSpeechPayload, createEdgeSpeech } from './createEdgeSpeech';
|
|
7
7
|
import { getEdgeVoiceOptions } from './options';
|