@ant-design/agentic-ui 2.0.10 → 2.0.12
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/dist/AgentRunBar/Robot.js +1 -1
- package/dist/AgentRunBar/index.js +1 -1
- package/dist/AgentRunBar/style.js +1 -1
- package/dist/AgenticLayout/index.d.ts +1 -1
- package/dist/AgenticLayout/index.js +1 -1
- package/dist/AgenticLayout/style.js +1 -1
- package/dist/AnswerAlert/style.js +1 -1
- package/dist/BackTo/BackBottom.js +2 -2
- package/dist/BackTo/BackTop.d.ts +14 -4
- package/dist/BackTo/BackTop.js +16 -14
- package/dist/BackTo/ScrollVisibleButton.d.ts +25 -10
- package/dist/BackTo/ScrollVisibleButton.js +27 -21
- package/dist/BackTo/hooks/useScrollVisible.js +2 -2
- package/dist/BackTo/style.js +1 -1
- package/dist/Bubble/AIBubble.d.ts +5 -28
- package/dist/Bubble/AIBubble.js +96 -126
- package/dist/Bubble/BubbleBeforeNode.d.ts +29 -0
- package/dist/Bubble/BubbleBeforeNode.js +80 -0
- package/dist/Bubble/BubbleConfigProvide.d.ts +1 -1
- package/dist/Bubble/BubbleConfigProvide.js +1 -1
- package/dist/Bubble/FileView.d.ts +10 -15
- package/dist/Bubble/FileView.js +63 -68
- package/dist/Bubble/List/style.js +1 -1
- package/dist/Bubble/MessagesContent/BubbleExtra.js +2 -2
- package/dist/Bubble/MessagesContent/CopyButton/index.d.ts +1 -1
- package/dist/Bubble/MessagesContent/CopyButton/index.js +2 -2
- package/dist/Bubble/MessagesContent/DocInfo.js +2 -2
- package/dist/Bubble/MessagesContent/VoiceButton/index.js +3 -3
- package/dist/Bubble/MessagesContent/VoiceButton/style.js +1 -1
- package/dist/Bubble/MessagesContent/docInfoStyle.js +1 -1
- package/dist/Bubble/MessagesContent/index.js +2 -2
- package/dist/Bubble/Title.d.ts +12 -35
- package/dist/Bubble/Title.js +18 -13
- package/dist/Bubble/UserBubble.d.ts +4 -27
- package/dist/Bubble/UserBubble.js +90 -110
- package/dist/Bubble/style.js +1 -1
- package/dist/ChatBoot/ButtonTabGroupStyle.js +1 -1
- package/dist/ChatBoot/ButtonTabStyle.js +1 -1
- package/dist/ChatBoot/CaseReplyStyle.js +1 -1
- package/dist/ChatBoot/style.js +1 -1
- package/dist/ChatLayout/index.d.ts +2 -2
- package/dist/ChatLayout/index.js +3 -3
- package/dist/ChatLayout/style.js +1 -1
- package/dist/ChatLayout/types.d.ts +1 -1
- package/dist/Components/ActionIconBox/index.js +157 -0
- package/dist/Components/ActionIconBox/style.js +117 -0
- package/dist/Components/ActionItemBox/ActionItemBox.js +162 -0
- package/dist/Components/ActionItemBox/index.js +7 -0
- package/dist/Components/ActionItemBox/style.js +373 -0
- package/dist/Components/Button/IconButton/index.js +46 -0
- package/dist/Components/Button/IconButton/style.js +355 -0
- package/dist/Components/Button/SwitchButton/index.js +99 -0
- package/dist/Components/Button/SwitchButton/style.js +158 -0
- package/dist/Components/Button/ToggleButton/index.js +63 -0
- package/dist/Components/Button/ToggleButton/style.js +277 -0
- package/dist/Components/Button/index.js +4 -0
- package/dist/Components/ImageList.js +138 -0
- package/dist/Components/LayoutHeader/index.js +94 -0
- package/dist/Components/LayoutHeader/style.js +70 -0
- package/dist/Components/Loading/index.d.ts +25 -0
- package/dist/Components/Loading/index.js +184 -0
- package/dist/Components/Loading/style.js +46 -0
- package/dist/Components/Robot/index.js +66 -0
- package/dist/Components/Robot/lotties/DazingLottie/index.js +52 -0
- package/dist/Components/Robot/lotties/ThinkingLottie/index.js +52 -0
- package/dist/Components/Robot/lotties/index.js +3 -0
- package/dist/Components/SuggestionList/index.js +195 -0
- package/dist/Components/SuggestionList/style.js +196 -0
- package/dist/Components/VisualList/index.js +188 -0
- package/dist/Components/VisualList/style.js +138 -0
- package/dist/Components/icons/LoadingSpinnerIcon.d.ts +38 -0
- package/dist/Components/icons/LoadingSpinnerIcon.js +83 -0
- package/dist/Components/lotties/DazingLottie/index.js +52 -0
- package/dist/Components/lotties/ThinkingLottie/index.js +52 -0
- package/dist/Components/lotties/index.js +3 -0
- package/dist/Constants/colors.js +98 -0
- package/dist/History/components/HistoryActionsBox.js +1 -1
- package/dist/History/components/HistoryItem.js +1 -1
- package/dist/History/components/LoadMoreComponent.js +2 -2
- package/dist/History/components/NewChatComponent.js +1 -1
- package/dist/History/components/NewChatComponent.style.js +1 -1
- package/dist/History/components/SearchComponent.js +4 -4
- package/dist/History/index.js +1 -1
- package/dist/History/style.js +1 -1
- package/dist/Hooks/useAutoScroll.js +90 -0
- package/dist/Hooks/useClickAway.js +23 -0
- package/dist/Hooks/useCopied.js +22 -0
- package/dist/Hooks/useDebounceFn/index.js +59 -0
- package/dist/Hooks/useLanguage.js +29 -0
- package/dist/Hooks/useRefFunction/index.js +13 -0
- package/dist/Hooks/useSpeechSynthesis.js +108 -0
- package/dist/Hooks/useStyle/index.js +64 -0
- package/dist/Hooks/useThrottleFn/index.js +44 -0
- package/dist/I18n/index.js +122 -0
- package/dist/I18n/locales.js +705 -0
- package/dist/Icons/animated/VoicePlayLottie/index.js +51 -0
- package/dist/Icons/animated/VoicingLottie/index.js +52 -0
- package/dist/MarkdownEditor/BaseMarkdownEditor.js +1 -1
- package/dist/MarkdownEditor/editor/Editor.js +1 -1
- package/dist/MarkdownEditor/editor/components/CommentList/style.js +1 -1
- package/dist/MarkdownEditor/editor/components/ContributorAvatar/style.js +1 -1
- package/dist/MarkdownEditor/editor/components/LazyElement/style.js +1 -1
- package/dist/MarkdownEditor/editor/components/fntTag/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Image/index.js +2 -2
- package/dist/MarkdownEditor/editor/elements/LinkCard/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/List/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Media.js +2 -2
- package/dist/MarkdownEditor/editor/elements/Paragraph.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Schema.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Table/ReadonlyTableComponent.js +2 -2
- package/dist/MarkdownEditor/editor/elements/Table/TableCellIndex/index.js +2 -2
- package/dist/MarkdownEditor/editor/elements/Table/TableCellIndex/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Table/TableCellIndexSpacer/index.js +2 -2
- package/dist/MarkdownEditor/editor/elements/Table/TableCellIndexSpacer/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Table/TableRowIndex/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Table/Td/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/Table/style.d.ts +1 -1
- package/dist/MarkdownEditor/editor/elements/Table/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/TagPopup/style.js +1 -1
- package/dist/MarkdownEditor/editor/elements/index.js +1 -1
- package/dist/MarkdownEditor/editor/parser/parserSlateNodeToMarkdown.js +2 -1
- package/dist/MarkdownEditor/editor/style.d.ts +1 -1
- package/dist/MarkdownEditor/editor/style.js +1 -1
- package/dist/MarkdownEditor/editor/tagStyles.js +1 -1
- package/dist/MarkdownEditor/editor/tools/InsertAutocomplete.d.ts +1 -1
- package/dist/MarkdownEditor/editor/tools/InsertAutocomplete.js +1 -1
- package/dist/MarkdownEditor/editor/tools/InsertLink.js +2 -2
- package/dist/MarkdownEditor/editor/tools/ToolBar/BaseBar.js +1 -1
- package/dist/MarkdownEditor/editor/tools/ToolBar/FloatBar.js +1 -1
- package/dist/MarkdownEditor/editor/tools/ToolBar/ReadonlyBaseBar.js +1 -1
- package/dist/MarkdownEditor/editor/tools/ToolBar/config/toolsConfig.js +1 -1
- package/dist/MarkdownEditor/editor/tools/ToolBar/floatBarStyle.js +1 -1
- package/dist/MarkdownEditor/editor/tools/ToolBar/hooks/useToolBarLogic.js +1 -1
- package/dist/MarkdownEditor/editor/tools/ToolBar/toolBarStyle.js +1 -1
- package/dist/MarkdownEditor/editor/tools/insertAutocompleteStyle.js +1 -1
- package/dist/MarkdownEditor/index.js +1 -1
- package/dist/MarkdownEditor/style.js +1 -1
- package/dist/MarkdownInputField/AttachmentButton/AttachmentButtonPopover.d.ts +9 -72
- package/dist/MarkdownInputField/AttachmentButton/AttachmentButtonPopover.js +61 -46
- package/dist/MarkdownInputField/AttachmentButton/AttachmentFileList/AttachmentFileListItem.js +61 -42
- package/dist/MarkdownInputField/AttachmentButton/AttachmentFileList/index.d.ts +0 -41
- package/dist/MarkdownInputField/AttachmentButton/AttachmentFileList/index.js +56 -59
- package/dist/MarkdownInputField/AttachmentButton/AttachmentFileList/style.js +1 -1
- package/dist/MarkdownInputField/AttachmentButton/index.d.ts +58 -127
- package/dist/MarkdownInputField/AttachmentButton/index.js +170 -154
- package/dist/MarkdownInputField/AttachmentButton/style.js +1 -1
- package/dist/MarkdownInputField/BeforeToolContainer/BeforeToolContainer.js +2 -2
- package/dist/MarkdownInputField/Enlargement/index.d.ts +9 -0
- package/dist/MarkdownInputField/Enlargement/index.js +41 -0
- package/dist/MarkdownInputField/Enlargement/style.d.ts +10 -0
- package/dist/MarkdownInputField/Enlargement/style.js +75 -0
- package/dist/MarkdownInputField/FileMapView/FileMapViewItem.js +1 -1
- package/dist/MarkdownInputField/FileMapView/style.js +1 -1
- package/dist/MarkdownInputField/FileUploadManager/index.js +3 -3
- package/dist/MarkdownInputField/MarkdownInputField.d.ts +24 -0
- package/dist/MarkdownInputField/MarkdownInputField.js +63 -10
- package/dist/MarkdownInputField/QuickActions/index.d.ts +6 -0
- package/dist/MarkdownInputField/QuickActions/index.js +39 -18
- package/dist/MarkdownInputField/RefinePromptButton/style.js +1 -1
- package/dist/MarkdownInputField/SendActions/index.js +2 -2
- package/dist/MarkdownInputField/SendButton/style.js +1 -1
- package/dist/MarkdownInputField/SkillModeBar/hooks/useSkillModeState.js +1 -1
- package/dist/MarkdownInputField/SkillModeBar/style.js +1 -1
- package/dist/MarkdownInputField/Suggestion/index.js +1 -1
- package/dist/MarkdownInputField/TopOperatingArea/style.js +1 -1
- package/dist/MarkdownInputField/VoiceInput/index.js +2 -2
- package/dist/MarkdownInputField/VoiceInput/style.js +1 -1
- package/dist/MarkdownInputField/VoiceInputManager/index.js +1 -1
- package/dist/MarkdownInputField/style.js +60 -3
- package/dist/Plugins/chart/AreaChart/index.js +410 -0
- package/dist/Plugins/chart/AreaChart/style.js +89 -0
- package/dist/Plugins/chart/BarChart/index.js +691 -0
- package/dist/Plugins/chart/BarChart/style.js +89 -0
- package/dist/Plugins/chart/ChartAttrToolBar/ChartAttrToolBarStyle.js +57 -0
- package/dist/Plugins/chart/ChartAttrToolBar/index.js +87 -0
- package/dist/Plugins/chart/ChartMark/Area.js +147 -0
- package/dist/Plugins/chart/ChartMark/Bar.js +151 -0
- package/dist/Plugins/chart/ChartMark/Column.js +150 -0
- package/dist/Plugins/chart/ChartMark/Container.js +81 -0
- package/dist/Plugins/chart/ChartMark/Line.js +150 -0
- package/dist/Plugins/chart/ChartMark/Pie.js +61 -0
- package/dist/Plugins/chart/ChartMark/index.js +13 -0
- package/dist/Plugins/chart/ChartRender.js +611 -0
- package/dist/Plugins/chart/ChartStatistic/index.js +70 -0
- package/dist/Plugins/chart/ChartStatistic/style.js +153 -0
- package/dist/Plugins/chart/ChartStatistic/utils.js +29 -0
- package/dist/Plugins/chart/DonutChart/Legend.js +136 -0
- package/dist/Plugins/chart/DonutChart/constants.js +25 -0
- package/dist/Plugins/chart/DonutChart/hooks.js +123 -0
- package/dist/Plugins/chart/DonutChart/index.js +501 -0
- package/dist/Plugins/chart/DonutChart/plugins.js +45 -0
- package/dist/Plugins/chart/DonutChart/style.js +176 -0
- package/dist/Plugins/chart/FunnelChart/index.js +605 -0
- package/dist/Plugins/chart/FunnelChart/style.js +66 -0
- package/dist/Plugins/chart/LineChart/index.js +396 -0
- package/dist/Plugins/chart/LineChart/style.js +89 -0
- package/dist/Plugins/chart/RadarChart/index.js +627 -0
- package/dist/Plugins/chart/RadarChart/style.js +111 -0
- package/dist/Plugins/chart/ScatterChart/index.js +670 -0
- package/dist/Plugins/chart/ScatterChart/style.js +93 -0
- package/dist/Plugins/chart/components/ChartContainer/ChartContainer.js +87 -0
- package/dist/Plugins/chart/components/ChartContainer/ChartErrorBoundary.js +46 -0
- package/dist/Plugins/chart/components/ChartContainer/ChartErrorBoundaryExample.js +70 -0
- package/dist/Plugins/chart/components/ChartContainer/index.js +7 -0
- package/dist/Plugins/chart/components/ChartContainer/style.js +90 -0
- package/dist/Plugins/chart/components/ChartFilter/ChartFilter.js +101 -0
- package/dist/Plugins/chart/components/ChartFilter/style.js +166 -0
- package/dist/Plugins/chart/components/ChartToolBar/ChartToolBar.js +68 -0
- package/dist/Plugins/chart/components/ChartToolBar/style.js +129 -0
- package/dist/Plugins/chart/components/icons/TimeIcon.js +32 -0
- package/dist/Plugins/chart/components/index.js +36 -0
- package/dist/Plugins/chart/const.js +26 -0
- package/dist/Plugins/chart/hooks/useChartStatistic.js +16 -0
- package/dist/Plugins/chart/index.js +375 -0
- package/dist/Plugins/chart/utils.js +98 -0
- package/dist/Plugins/code/CodeUI/Katex/Katex.js +75 -0
- package/dist/Plugins/code/components/AceEditor.js +257 -0
- package/dist/Plugins/code/components/AceEditorContainer.js +33 -0
- package/dist/Plugins/code/components/CodeContainer.js +63 -0
- package/dist/Plugins/code/components/CodeRenderer.js +163 -0
- package/dist/Plugins/code/components/CodeToolbar.js +206 -0
- package/dist/Plugins/code/components/HtmlPreview.js +23 -0
- package/dist/Plugins/code/components/LanguageSelector.js +110 -0
- package/dist/Plugins/code/components/LoadImage.js +49 -0
- package/dist/Plugins/code/components/ThinkBlock.js +47 -0
- package/dist/Plugins/code/components/index.js +23 -0
- package/dist/Plugins/code/hooks/index.js +9 -0
- package/dist/Plugins/code/hooks/useCodeEditorState.js +69 -0
- package/dist/Plugins/code/hooks/useRenderConditions.js +24 -0
- package/dist/Plugins/code/hooks/useToolbarConfig.js +47 -0
- package/dist/Plugins/code/index.js +98 -0
- package/dist/Plugins/code/langIconMap.js +181 -0
- package/dist/Plugins/code/langIcons/AbapIcon.js +65 -0
- package/dist/Plugins/code/langIcons/ActionscriptIcon.js +63 -0
- package/dist/Plugins/code/langIcons/AdaIcon.js +59 -0
- package/dist/Plugins/code/langIcons/ApacheIcon.js +379 -0
- package/dist/Plugins/code/langIcons/ApexIcon.js +92 -0
- package/dist/Plugins/code/langIcons/AplIcon.js +62 -0
- package/dist/Plugins/code/langIcons/ApplescriptIcon.js +63 -0
- package/dist/Plugins/code/langIcons/AstroIcon.js +69 -0
- package/dist/Plugins/code/langIcons/AwkIcon.js +82 -0
- package/dist/Plugins/code/langIcons/BallerinaIcon.js +68 -0
- package/dist/Plugins/code/langIcons/BatIcon.js +330 -0
- package/dist/Plugins/code/langIcons/BicepIcon.js +66 -0
- package/dist/Plugins/code/langIcons/BladeIcon.js +66 -0
- package/dist/Plugins/code/langIcons/CIcon.js +63 -0
- package/dist/Plugins/code/langIcons/CadenceIcon.js +65 -0
- package/dist/Plugins/code/langIcons/ClojureIcon.js +96 -0
- package/dist/Plugins/code/langIcons/CmakeIcon.js +71 -0
- package/dist/Plugins/code/langIcons/CobolIcon.js +83 -0
- package/dist/Plugins/code/langIcons/CodeqlIcon.js +93 -0
- package/dist/Plugins/code/langIcons/CoffeeIcon.js +63 -0
- package/dist/Plugins/code/langIcons/ConsoleIcon.js +63 -0
- package/dist/Plugins/code/langIcons/CppIcon.js +62 -0
- package/dist/Plugins/code/langIcons/CrystalIcon.js +64 -0
- package/dist/Plugins/code/langIcons/CsharpIcon.js +66 -0
- package/dist/Plugins/code/langIcons/CssIcon.js +59 -0
- package/dist/Plugins/code/langIcons/DIcon.js +60 -0
- package/dist/Plugins/code/langIcons/DartIcon.js +84 -0
- package/dist/Plugins/code/langIcons/DatabaseIcon.js +65 -0
- package/dist/Plugins/code/langIcons/DiffIcon.js +65 -0
- package/dist/Plugins/code/langIcons/DockerIcon.js +63 -0
- package/dist/Plugins/code/langIcons/DotenvIcon.js +64 -0
- package/dist/Plugins/code/langIcons/ElixirIcon.js +66 -0
- package/dist/Plugins/code/langIcons/ElmIcon.js +65 -0
- package/dist/Plugins/code/langIcons/ErbIcon.js +62 -0
- package/dist/Plugins/code/langIcons/ErlangIcon.js +63 -0
- package/dist/Plugins/code/langIcons/FsharpIcon.js +71 -0
- package/dist/Plugins/code/langIcons/GdscriptIcon.js +107 -0
- package/dist/Plugins/code/langIcons/GlslIcon.js +66 -0
- package/dist/Plugins/code/langIcons/GnuplotIcon.js +97 -0
- package/dist/Plugins/code/langIcons/GoIcon.js +102 -0
- package/dist/Plugins/code/langIcons/GraphqlIcon.js +73 -0
- package/dist/Plugins/code/langIcons/GroovyIcon.js +63 -0
- package/dist/Plugins/code/langIcons/HackIcon.js +73 -0
- package/dist/Plugins/code/langIcons/HamlIcon.js +63 -0
- package/dist/Plugins/code/langIcons/HandlebarsIcon.js +64 -0
- package/dist/Plugins/code/langIcons/HaskellIcon.js +75 -0
- package/dist/Plugins/code/langIcons/HclIcon.js +100 -0
- package/dist/Plugins/code/langIcons/HclLightIcon.js +104 -0
- package/dist/Plugins/code/langIcons/HjsonIcon.js +73 -0
- package/dist/Plugins/code/langIcons/HlslIcon.js +93 -0
- package/dist/Plugins/code/langIcons/HtmlIcon.js +63 -0
- package/dist/Plugins/code/langIcons/HttpIcon.js +63 -0
- package/dist/Plugins/code/langIcons/ImbaIcon.js +73 -0
- package/dist/Plugins/code/langIcons/IniIcon.js +62 -0
- package/dist/Plugins/code/langIcons/JavaIcon.js +63 -0
- package/dist/Plugins/code/langIcons/JavascriptIcon.js +63 -0
- package/dist/Plugins/code/langIcons/JinjaIcon.js +82 -0
- package/dist/Plugins/code/langIcons/Json5Icon.js +100 -0
- package/dist/Plugins/code/langIcons/JsonIcon.js +63 -0
- package/dist/Plugins/code/langIcons/JsonnetIcon.js +106 -0
- package/dist/Plugins/code/langIcons/JuliaIcon.js +57 -0
- package/dist/Plugins/code/langIcons/KotlinIcon.js +97 -0
- package/dist/Plugins/code/langIcons/KustoIcon.js +64 -0
- package/dist/Plugins/code/langIcons/LessIcon.js +66 -0
- package/dist/Plugins/code/langIcons/LiquidIcon.js +66 -0
- package/dist/Plugins/code/langIcons/LispIcon.js +63 -0
- package/dist/Plugins/code/langIcons/LuaIcon.js +79 -0
- package/dist/Plugins/code/langIcons/MakefileIcon.js +66 -0
- package/dist/Plugins/code/langIcons/MarkdownIcon.js +63 -0
- package/dist/Plugins/code/langIcons/MarkojsIcon.js +88 -0
- package/dist/Plugins/code/langIcons/MatlabIcon.js +75 -0
- package/dist/Plugins/code/langIcons/MdxIcon.js +62 -0
- package/dist/Plugins/code/langIcons/MermaidIcon.js +73 -0
- package/dist/Plugins/code/langIcons/MojoIcon.js +71 -0
- package/dist/Plugins/code/langIcons/NginxIcon.js +68 -0
- package/dist/Plugins/code/langIcons/NimIcon.js +62 -0
- package/dist/Plugins/code/langIcons/NixIcon.js +65 -0
- package/dist/Plugins/code/langIcons/ObjectiveCIcon.js +67 -0
- package/dist/Plugins/code/langIcons/ObjectiveCppIcon.js +65 -0
- package/dist/Plugins/code/langIcons/OcamlIcon.js +70 -0
- package/dist/Plugins/code/langIcons/PascalIcon.js +60 -0
- package/dist/Plugins/code/langIcons/Perl6Icon.js +401 -0
- package/dist/Plugins/code/langIcons/PerlIcon.js +63 -0
- package/dist/Plugins/code/langIcons/PhpIcon.js +59 -0
- package/dist/Plugins/code/langIcons/PostcssIcon.js +121 -0
- package/dist/Plugins/code/langIcons/PowershellIcon.js +66 -0
- package/dist/Plugins/code/langIcons/PrismaIcon.js +75 -0
- package/dist/Plugins/code/langIcons/PrologIcon.js +66 -0
- package/dist/Plugins/code/langIcons/ProtoIcon.js +81 -0
- package/dist/Plugins/code/langIcons/PugIcon.js +226 -0
- package/dist/Plugins/code/langIcons/PuppetIcon.js +57 -0
- package/dist/Plugins/code/langIcons/PurescriptIcon.js +72 -0
- package/dist/Plugins/code/langIcons/PythonIcon.js +70 -0
- package/dist/Plugins/code/langIcons/RIcon.js +59 -0
- package/dist/Plugins/code/langIcons/RazorIcon.js +65 -0
- package/dist/Plugins/code/langIcons/ReactIcon.js +63 -0
- package/dist/Plugins/code/langIcons/ReactTsIcon.js +66 -0
- package/dist/Plugins/code/langIcons/RubyIcon.js +66 -0
- package/dist/Plugins/code/langIcons/RustIcon.js +63 -0
- package/dist/Plugins/code/langIcons/SasIcon.js +59 -0
- package/dist/Plugins/code/langIcons/SassIcon.js +66 -0
- package/dist/Plugins/code/langIcons/ScalaIcon.js +58 -0
- package/dist/Plugins/code/langIcons/SchemeIcon.js +66 -0
- package/dist/Plugins/code/langIcons/ShaderlabIcon.js +63 -0
- package/dist/Plugins/code/langIcons/SolidityIcon.js +57 -0
- package/dist/Plugins/code/langIcons/SparqlIcon.js +73 -0
- package/dist/Plugins/code/langIcons/StataIcon.js +155 -0
- package/dist/Plugins/code/langIcons/StylusIcon.js +67 -0
- package/dist/Plugins/code/langIcons/SvelteIcon.js +66 -0
- package/dist/Plugins/code/langIcons/SwiftIcon.js +65 -0
- package/dist/Plugins/code/langIcons/SystemverilogIcon.js +137 -0
- package/dist/Plugins/code/langIcons/TclIcon.js +59 -0
- package/dist/Plugins/code/langIcons/TexIcon.js +76 -0
- package/dist/Plugins/code/langIcons/TomlIcon.js +84 -0
- package/dist/Plugins/code/langIcons/TwigIcon.js +63 -0
- package/dist/Plugins/code/langIcons/TypescriptIcon.js +67 -0
- package/dist/Plugins/code/langIcons/VerilogIcon.js +63 -0
- package/dist/Plugins/code/langIcons/VhdlIcon.js +73 -0
- package/dist/Plugins/code/langIcons/VimIcon.js +556 -0
- package/dist/Plugins/code/langIcons/VueIcon.js +72 -0
- package/dist/Plugins/code/langIcons/WebassemblyIcon.js +85 -0
- package/dist/Plugins/code/langIcons/WenyanIcon.js +144 -0
- package/dist/Plugins/code/langIcons/WgslIcon.js +102 -0
- package/dist/Plugins/code/langIcons/WolframlanguageIcon.js +79 -0
- package/dist/Plugins/code/langIcons/XmlIcon.js +59 -0
- package/dist/Plugins/code/langIcons/XslIcon.js +80 -0
- package/dist/Plugins/code/langIcons/YamlIcon.js +63 -0
- package/dist/Plugins/code/langIcons/ZigIcon.js +89 -0
- package/dist/Plugins/code/langIcons/index.js +259 -0
- package/dist/Plugins/code/utils/index.js +5 -0
- package/dist/Plugins/code/utils/langOptions.js +14 -0
- package/dist/Plugins/defaultPlugins.js +17 -0
- package/dist/Plugins/formatter/index.js +114 -0
- package/dist/Plugins/index.js +7 -0
- package/dist/Plugins/katex/InlineKatex.js +124 -0
- package/dist/Plugins/katex/Katex.js +74 -0
- package/dist/Plugins/katex/index.js +113 -0
- package/dist/Plugins/mermaid/Mermaid.js +102 -0
- package/dist/Plugins/mermaid/index.js +165 -0
- package/dist/Quote/style.js +1 -1
- package/dist/Schema/SchemaEditor/AceEditorWrapper.js +126 -0
- package/dist/Schema/SchemaEditor/index.js +291 -0
- package/dist/Schema/SchemaEditor/style.js +274 -0
- package/dist/Schema/SchemaForm/index.d.ts +61 -0
- package/dist/Schema/SchemaForm/index.js +285 -0
- package/dist/Schema/SchemaRenderer/index.d.ts +81 -0
- package/dist/Schema/SchemaRenderer/index.js +610 -0
- package/dist/Schema/SchemaRenderer/templateEngine.js +26 -0
- package/dist/Schema/index.js +15 -0
- package/dist/Schema/validator.js +42 -0
- package/dist/TaskList/index.d.ts +19 -56
- package/dist/TaskList/index.js +109 -86
- package/dist/TaskList/style.js +1 -1
- package/dist/ThoughtChainList/CostMillis.js +1 -1
- package/dist/ThoughtChainList/DeepThink.js +2 -2
- package/dist/ThoughtChainList/DotAni/style.js +1 -1
- package/dist/ThoughtChainList/MarkdownEditor.js +1 -1
- package/dist/ThoughtChainList/RagRetrievalInfo.js +1 -1
- package/dist/ThoughtChainList/TableSql.js +1 -1
- package/dist/ThoughtChainList/TitleInfo.js +1 -1
- package/dist/ThoughtChainList/ToolCall.js +1 -1
- package/dist/ThoughtChainList/WebSearch.js +2 -2
- package/dist/ThoughtChainList/index.js +3 -3
- package/dist/ThoughtChainList/style.js +1 -1
- package/dist/ToolUseBar/ToolUseBarThink.d.ts +19 -0
- package/dist/ToolUseBar/ToolUseBarThink.js +200 -278
- package/dist/ToolUseBar/style.js +1 -1
- package/dist/ToolUseBar/thinkStyle.js +1 -1
- package/dist/Utils/easings.js +13 -0
- package/dist/Utils/formatTime.js +19 -0
- package/dist/Utils/getScroll.js +45 -0
- package/dist/Utils/language.js +168 -0
- package/dist/Utils/proxySandbox/ProxySandbox.js +1061 -0
- package/dist/Utils/proxySandbox/SecurityContextManager.js +369 -0
- package/dist/Utils/proxySandbox/index.js +281 -0
- package/dist/Utils/proxySandbox/types.js +52 -0
- package/dist/Utils/scrollTo.js +63 -0
- package/dist/Utils/throttleByAnimationFrame.js +23 -0
- package/dist/Welcome/style.js +1 -1
- package/dist/Workspace/Browser/index.d.ts +9 -25
- package/dist/Workspace/Browser/index.js +12 -16
- package/dist/Workspace/Browser/style.js +1 -1
- package/dist/Workspace/File/DataSourceStrategy.d.ts +2 -2
- package/dist/Workspace/File/DataSourceStrategy.js +45 -43
- package/dist/Workspace/File/FileComponent.js +2 -2
- package/dist/Workspace/File/FileTypeProcessor.d.ts +1 -4
- package/dist/Workspace/File/FileTypeProcessor.js +10 -18
- package/dist/Workspace/File/PreviewComponent.d.ts +11 -16
- package/dist/Workspace/File/PreviewComponent.js +100 -112
- package/dist/Workspace/File/style.js +1 -1
- package/dist/Workspace/HtmlPreview/index.js +1 -1
- package/dist/Workspace/HtmlPreview/style.js +1 -1
- package/dist/Workspace/RealtimeFollow/index.d.ts +10 -4
- package/dist/Workspace/RealtimeFollow/index.js +175 -152
- package/dist/Workspace/RealtimeFollow/style.js +1 -1
- package/dist/Workspace/Task/style.js +1 -1
- package/dist/Workspace/index.js +1 -1
- package/dist/Workspace/style.js +1 -1
- package/dist/Workspace/utils/codeLanguageUtils.js +1 -1
- package/dist/index.d.ts +28 -28
- package/dist/index.js +27 -27
- package/package.json +11 -11
- package/dist/Bubble/MessagesContent/types.d.ts +0 -32
- package/dist/Bubble/before.d.ts +0 -66
- package/dist/Bubble/before.js +0 -75
- package/dist/components/ActionIconBox/index.js +0 -157
- package/dist/components/ActionIconBox/style.js +0 -117
- package/dist/components/ActionItemBox/ActionItemBox.js +0 -162
- package/dist/components/ActionItemBox/index.js +0 -7
- package/dist/components/ActionItemBox/style.js +0 -373
- package/dist/components/Button/IconButton/index.js +0 -46
- package/dist/components/Button/IconButton/style.js +0 -355
- package/dist/components/Button/SwitchButton/index.js +0 -99
- package/dist/components/Button/SwitchButton/style.js +0 -158
- package/dist/components/Button/ToggleButton/index.js +0 -63
- package/dist/components/Button/ToggleButton/style.js +0 -277
- package/dist/components/Button/index.js +0 -4
- package/dist/components/ImageList.js +0 -138
- package/dist/components/LayoutHeader/index.js +0 -94
- package/dist/components/LayoutHeader/style.js +0 -70
- package/dist/components/Loading/index.d.ts +0 -25
- package/dist/components/Loading/index.js +0 -184
- package/dist/components/Loading/style.js +0 -46
- package/dist/components/Robot/index.js +0 -66
- package/dist/components/Robot/lotties/DazingLottie/index.js +0 -52
- package/dist/components/Robot/lotties/ThinkingLottie/index.js +0 -52
- package/dist/components/Robot/lotties/index.js +0 -3
- package/dist/components/SuggestionList/index.js +0 -195
- package/dist/components/SuggestionList/style.js +0 -196
- package/dist/components/VisualList/index.js +0 -188
- package/dist/components/VisualList/style.js +0 -138
- package/dist/components/icons/LoadingSpinnerIcon.d.ts +0 -38
- package/dist/components/icons/LoadingSpinnerIcon.js +0 -83
- package/dist/components/lotties/DazingLottie/index.js +0 -52
- package/dist/components/lotties/ThinkingLottie/index.js +0 -52
- package/dist/components/lotties/index.js +0 -3
- package/dist/constants/colors.js +0 -98
- package/dist/hooks/useAutoScroll.js +0 -90
- package/dist/hooks/useClickAway.js +0 -23
- package/dist/hooks/useCopied.js +0 -22
- package/dist/hooks/useDebounceFn/index.js +0 -59
- package/dist/hooks/useLanguage.js +0 -29
- package/dist/hooks/useRefFunction/index.js +0 -13
- package/dist/hooks/useSpeechSynthesis.js +0 -108
- package/dist/hooks/useStyle/index.js +0 -64
- package/dist/hooks/useThrottleFn/index.js +0 -44
- package/dist/i18n/index.js +0 -122
- package/dist/i18n/locales.js +0 -705
- package/dist/icons/animated/VoicePlayLottie/index.js +0 -51
- package/dist/icons/animated/VoicingLottie/index.js +0 -52
- package/dist/plugins/chart/AreaChart/index.js +0 -410
- package/dist/plugins/chart/AreaChart/style.js +0 -89
- package/dist/plugins/chart/BarChart/index.js +0 -691
- package/dist/plugins/chart/BarChart/style.js +0 -89
- package/dist/plugins/chart/ChartAttrToolBar/ChartAttrToolBarStyle.js +0 -57
- package/dist/plugins/chart/ChartAttrToolBar/index.js +0 -87
- package/dist/plugins/chart/ChartMark/Area.js +0 -147
- package/dist/plugins/chart/ChartMark/Bar.js +0 -151
- package/dist/plugins/chart/ChartMark/Column.js +0 -150
- package/dist/plugins/chart/ChartMark/Container.js +0 -81
- package/dist/plugins/chart/ChartMark/Line.js +0 -150
- package/dist/plugins/chart/ChartMark/Pie.js +0 -61
- package/dist/plugins/chart/ChartMark/index.js +0 -13
- package/dist/plugins/chart/ChartRender.js +0 -611
- package/dist/plugins/chart/ChartStatistic/index.js +0 -70
- package/dist/plugins/chart/ChartStatistic/style.js +0 -153
- package/dist/plugins/chart/ChartStatistic/utils.js +0 -29
- package/dist/plugins/chart/DonutChart/Legend.js +0 -136
- package/dist/plugins/chart/DonutChart/constants.js +0 -25
- package/dist/plugins/chart/DonutChart/hooks.js +0 -121
- package/dist/plugins/chart/DonutChart/index.js +0 -501
- package/dist/plugins/chart/DonutChart/plugins.js +0 -45
- package/dist/plugins/chart/DonutChart/style.js +0 -176
- package/dist/plugins/chart/FunnelChart/index.js +0 -605
- package/dist/plugins/chart/FunnelChart/style.js +0 -66
- package/dist/plugins/chart/LineChart/index.js +0 -396
- package/dist/plugins/chart/LineChart/style.js +0 -89
- package/dist/plugins/chart/RadarChart/index.js +0 -627
- package/dist/plugins/chart/RadarChart/style.js +0 -111
- package/dist/plugins/chart/ScatterChart/index.js +0 -670
- package/dist/plugins/chart/ScatterChart/style.js +0 -93
- package/dist/plugins/chart/components/ChartContainer/ChartContainer.js +0 -87
- package/dist/plugins/chart/components/ChartContainer/ChartErrorBoundary.js +0 -46
- package/dist/plugins/chart/components/ChartContainer/ChartErrorBoundaryExample.js +0 -70
- package/dist/plugins/chart/components/ChartContainer/index.js +0 -7
- package/dist/plugins/chart/components/ChartContainer/style.js +0 -90
- package/dist/plugins/chart/components/ChartFilter/ChartFilter.js +0 -101
- package/dist/plugins/chart/components/ChartFilter/style.js +0 -166
- package/dist/plugins/chart/components/ChartToolBar/ChartToolBar.js +0 -68
- package/dist/plugins/chart/components/ChartToolBar/style.js +0 -129
- package/dist/plugins/chart/components/icons/TimeIcon.js +0 -32
- package/dist/plugins/chart/components/index.js +0 -36
- package/dist/plugins/chart/const.js +0 -26
- package/dist/plugins/chart/hooks/useChartStatistic.js +0 -16
- package/dist/plugins/chart/index.js +0 -375
- package/dist/plugins/chart/utils.js +0 -98
- package/dist/plugins/code/CodeUI/Katex/Katex.js +0 -75
- package/dist/plugins/code/components/AceEditor.js +0 -257
- package/dist/plugins/code/components/AceEditorContainer.js +0 -33
- package/dist/plugins/code/components/CodeContainer.js +0 -63
- package/dist/plugins/code/components/CodeRenderer.js +0 -163
- package/dist/plugins/code/components/CodeToolbar.js +0 -206
- package/dist/plugins/code/components/HtmlPreview.js +0 -23
- package/dist/plugins/code/components/LanguageSelector.js +0 -110
- package/dist/plugins/code/components/LoadImage.js +0 -49
- package/dist/plugins/code/components/ThinkBlock.js +0 -47
- package/dist/plugins/code/components/index.js +0 -23
- package/dist/plugins/code/hooks/index.js +0 -9
- package/dist/plugins/code/hooks/useCodeEditorState.js +0 -69
- package/dist/plugins/code/hooks/useRenderConditions.js +0 -24
- package/dist/plugins/code/hooks/useToolbarConfig.js +0 -47
- package/dist/plugins/code/index.js +0 -98
- package/dist/plugins/code/langIconMap.js +0 -181
- package/dist/plugins/code/langIcons/AbapIcon.js +0 -65
- package/dist/plugins/code/langIcons/ActionscriptIcon.js +0 -63
- package/dist/plugins/code/langIcons/AdaIcon.js +0 -59
- package/dist/plugins/code/langIcons/ApacheIcon.js +0 -379
- package/dist/plugins/code/langIcons/ApexIcon.js +0 -92
- package/dist/plugins/code/langIcons/AplIcon.js +0 -62
- package/dist/plugins/code/langIcons/ApplescriptIcon.js +0 -63
- package/dist/plugins/code/langIcons/AstroIcon.js +0 -69
- package/dist/plugins/code/langIcons/AwkIcon.js +0 -82
- package/dist/plugins/code/langIcons/BallerinaIcon.js +0 -68
- package/dist/plugins/code/langIcons/BatIcon.js +0 -330
- package/dist/plugins/code/langIcons/BicepIcon.js +0 -66
- package/dist/plugins/code/langIcons/BladeIcon.js +0 -66
- package/dist/plugins/code/langIcons/CIcon.js +0 -63
- package/dist/plugins/code/langIcons/CadenceIcon.js +0 -65
- package/dist/plugins/code/langIcons/ClojureIcon.js +0 -96
- package/dist/plugins/code/langIcons/CmakeIcon.js +0 -71
- package/dist/plugins/code/langIcons/CobolIcon.js +0 -83
- package/dist/plugins/code/langIcons/CodeqlIcon.js +0 -93
- package/dist/plugins/code/langIcons/CoffeeIcon.js +0 -63
- package/dist/plugins/code/langIcons/ConsoleIcon.js +0 -63
- package/dist/plugins/code/langIcons/CppIcon.js +0 -62
- package/dist/plugins/code/langIcons/CrystalIcon.js +0 -64
- package/dist/plugins/code/langIcons/CsharpIcon.js +0 -66
- package/dist/plugins/code/langIcons/CssIcon.js +0 -59
- package/dist/plugins/code/langIcons/DIcon.js +0 -60
- package/dist/plugins/code/langIcons/DartIcon.js +0 -84
- package/dist/plugins/code/langIcons/DatabaseIcon.js +0 -65
- package/dist/plugins/code/langIcons/DiffIcon.js +0 -65
- package/dist/plugins/code/langIcons/DockerIcon.js +0 -63
- package/dist/plugins/code/langIcons/DotenvIcon.js +0 -64
- package/dist/plugins/code/langIcons/ElixirIcon.js +0 -66
- package/dist/plugins/code/langIcons/ElmIcon.js +0 -65
- package/dist/plugins/code/langIcons/ErbIcon.js +0 -62
- package/dist/plugins/code/langIcons/ErlangIcon.js +0 -63
- package/dist/plugins/code/langIcons/FsharpIcon.js +0 -71
- package/dist/plugins/code/langIcons/GdscriptIcon.js +0 -107
- package/dist/plugins/code/langIcons/GlslIcon.js +0 -66
- package/dist/plugins/code/langIcons/GnuplotIcon.js +0 -97
- package/dist/plugins/code/langIcons/GoIcon.js +0 -102
- package/dist/plugins/code/langIcons/GraphqlIcon.js +0 -73
- package/dist/plugins/code/langIcons/GroovyIcon.js +0 -63
- package/dist/plugins/code/langIcons/HackIcon.js +0 -73
- package/dist/plugins/code/langIcons/HamlIcon.js +0 -63
- package/dist/plugins/code/langIcons/HandlebarsIcon.js +0 -64
- package/dist/plugins/code/langIcons/HaskellIcon.js +0 -75
- package/dist/plugins/code/langIcons/HclIcon.js +0 -100
- package/dist/plugins/code/langIcons/HclLightIcon.js +0 -104
- package/dist/plugins/code/langIcons/HjsonIcon.js +0 -73
- package/dist/plugins/code/langIcons/HlslIcon.js +0 -93
- package/dist/plugins/code/langIcons/HtmlIcon.js +0 -63
- package/dist/plugins/code/langIcons/HttpIcon.js +0 -63
- package/dist/plugins/code/langIcons/ImbaIcon.js +0 -73
- package/dist/plugins/code/langIcons/IniIcon.js +0 -62
- package/dist/plugins/code/langIcons/JavaIcon.js +0 -63
- package/dist/plugins/code/langIcons/JavascriptIcon.js +0 -63
- package/dist/plugins/code/langIcons/JinjaIcon.js +0 -82
- package/dist/plugins/code/langIcons/Json5Icon.js +0 -100
- package/dist/plugins/code/langIcons/JsonIcon.js +0 -63
- package/dist/plugins/code/langIcons/JsonnetIcon.js +0 -106
- package/dist/plugins/code/langIcons/JuliaIcon.js +0 -57
- package/dist/plugins/code/langIcons/KotlinIcon.js +0 -97
- package/dist/plugins/code/langIcons/KustoIcon.js +0 -64
- package/dist/plugins/code/langIcons/LessIcon.js +0 -66
- package/dist/plugins/code/langIcons/LiquidIcon.js +0 -66
- package/dist/plugins/code/langIcons/LispIcon.js +0 -63
- package/dist/plugins/code/langIcons/LuaIcon.js +0 -79
- package/dist/plugins/code/langIcons/MakefileIcon.js +0 -66
- package/dist/plugins/code/langIcons/MarkdownIcon.js +0 -63
- package/dist/plugins/code/langIcons/MarkojsIcon.js +0 -88
- package/dist/plugins/code/langIcons/MatlabIcon.js +0 -75
- package/dist/plugins/code/langIcons/MdxIcon.js +0 -62
- package/dist/plugins/code/langIcons/MermaidIcon.js +0 -73
- package/dist/plugins/code/langIcons/MojoIcon.js +0 -71
- package/dist/plugins/code/langIcons/NginxIcon.js +0 -68
- package/dist/plugins/code/langIcons/NimIcon.js +0 -62
- package/dist/plugins/code/langIcons/NixIcon.js +0 -65
- package/dist/plugins/code/langIcons/ObjectiveCIcon.js +0 -67
- package/dist/plugins/code/langIcons/ObjectiveCppIcon.js +0 -65
- package/dist/plugins/code/langIcons/OcamlIcon.js +0 -70
- package/dist/plugins/code/langIcons/PascalIcon.js +0 -60
- package/dist/plugins/code/langIcons/Perl6Icon.js +0 -401
- package/dist/plugins/code/langIcons/PerlIcon.js +0 -63
- package/dist/plugins/code/langIcons/PhpIcon.js +0 -59
- package/dist/plugins/code/langIcons/PostcssIcon.js +0 -121
- package/dist/plugins/code/langIcons/PowershellIcon.js +0 -66
- package/dist/plugins/code/langIcons/PrismaIcon.js +0 -75
- package/dist/plugins/code/langIcons/PrologIcon.js +0 -66
- package/dist/plugins/code/langIcons/ProtoIcon.js +0 -81
- package/dist/plugins/code/langIcons/PugIcon.js +0 -226
- package/dist/plugins/code/langIcons/PuppetIcon.js +0 -57
- package/dist/plugins/code/langIcons/PurescriptIcon.js +0 -72
- package/dist/plugins/code/langIcons/PythonIcon.js +0 -70
- package/dist/plugins/code/langIcons/RIcon.js +0 -59
- package/dist/plugins/code/langIcons/RazorIcon.js +0 -65
- package/dist/plugins/code/langIcons/ReactIcon.js +0 -63
- package/dist/plugins/code/langIcons/ReactTsIcon.js +0 -66
- package/dist/plugins/code/langIcons/RubyIcon.js +0 -66
- package/dist/plugins/code/langIcons/RustIcon.js +0 -63
- package/dist/plugins/code/langIcons/SasIcon.js +0 -59
- package/dist/plugins/code/langIcons/SassIcon.js +0 -66
- package/dist/plugins/code/langIcons/ScalaIcon.js +0 -58
- package/dist/plugins/code/langIcons/SchemeIcon.js +0 -66
- package/dist/plugins/code/langIcons/ShaderlabIcon.js +0 -63
- package/dist/plugins/code/langIcons/SolidityIcon.js +0 -57
- package/dist/plugins/code/langIcons/SparqlIcon.js +0 -73
- package/dist/plugins/code/langIcons/StataIcon.js +0 -155
- package/dist/plugins/code/langIcons/StylusIcon.js +0 -67
- package/dist/plugins/code/langIcons/SvelteIcon.js +0 -66
- package/dist/plugins/code/langIcons/SwiftIcon.js +0 -65
- package/dist/plugins/code/langIcons/SystemverilogIcon.js +0 -137
- package/dist/plugins/code/langIcons/TclIcon.js +0 -59
- package/dist/plugins/code/langIcons/TexIcon.js +0 -76
- package/dist/plugins/code/langIcons/TomlIcon.js +0 -84
- package/dist/plugins/code/langIcons/TwigIcon.js +0 -63
- package/dist/plugins/code/langIcons/TypescriptIcon.js +0 -67
- package/dist/plugins/code/langIcons/VerilogIcon.js +0 -63
- package/dist/plugins/code/langIcons/VhdlIcon.js +0 -73
- package/dist/plugins/code/langIcons/VimIcon.js +0 -556
- package/dist/plugins/code/langIcons/VueIcon.js +0 -72
- package/dist/plugins/code/langIcons/WebassemblyIcon.js +0 -85
- package/dist/plugins/code/langIcons/WenyanIcon.js +0 -144
- package/dist/plugins/code/langIcons/WgslIcon.js +0 -102
- package/dist/plugins/code/langIcons/WolframlanguageIcon.js +0 -79
- package/dist/plugins/code/langIcons/XmlIcon.js +0 -59
- package/dist/plugins/code/langIcons/XslIcon.js +0 -80
- package/dist/plugins/code/langIcons/YamlIcon.js +0 -63
- package/dist/plugins/code/langIcons/ZigIcon.js +0 -89
- package/dist/plugins/code/langIcons/index.js +0 -259
- package/dist/plugins/code/utils/index.js +0 -5
- package/dist/plugins/code/utils/langOptions.js +0 -14
- package/dist/plugins/defaultPlugins.js +0 -17
- package/dist/plugins/formatter/index.js +0 -114
- package/dist/plugins/index.js +0 -7
- package/dist/plugins/katex/InlineKatex.js +0 -124
- package/dist/plugins/katex/Katex.js +0 -74
- package/dist/plugins/katex/index.js +0 -113
- package/dist/plugins/mermaid/Mermaid.js +0 -102
- package/dist/plugins/mermaid/index.js +0 -165
- package/dist/schema/SchemaEditor/AceEditorWrapper.js +0 -126
- package/dist/schema/SchemaEditor/index.js +0 -291
- package/dist/schema/SchemaEditor/style.js +0 -274
- package/dist/schema/SchemaForm/index.d.ts +0 -61
- package/dist/schema/SchemaForm/index.js +0 -285
- package/dist/schema/SchemaRenderer/index.d.ts +0 -81
- package/dist/schema/SchemaRenderer/index.js +0 -610
- package/dist/schema/SchemaRenderer/templateEngine.js +0 -26
- package/dist/schema/index.js +0 -15
- package/dist/schema/types.js +0 -0
- package/dist/schema/validator.js +0 -42
- package/dist/utils/easings.js +0 -13
- package/dist/utils/formatTime.js +0 -19
- package/dist/utils/getScroll.js +0 -45
- package/dist/utils/language.js +0 -168
- package/dist/utils/proxySandbox/ProxySandbox.js +0 -1061
- package/dist/utils/proxySandbox/SecurityContextManager.js +0 -369
- package/dist/utils/proxySandbox/index.js +0 -281
- package/dist/utils/proxySandbox/types.js +0 -52
- package/dist/utils/scrollTo.js +0 -63
- package/dist/utils/throttleByAnimationFrame.js +0 -23
- /package/dist/{components → Components}/ActionIconBox/index.d.ts +0 -0
- /package/dist/{components → Components}/ActionIconBox/style.d.ts +0 -0
- /package/dist/{components → Components}/ActionItemBox/ActionItemBox.d.ts +0 -0
- /package/dist/{components → Components}/ActionItemBox/index.d.ts +0 -0
- /package/dist/{components → Components}/ActionItemBox/style.d.ts +0 -0
- /package/dist/{components → Components}/Button/IconButton/index.d.ts +0 -0
- /package/dist/{components → Components}/Button/IconButton/style.d.ts +0 -0
- /package/dist/{components → Components}/Button/SwitchButton/index.d.ts +0 -0
- /package/dist/{components → Components}/Button/SwitchButton/style.d.ts +0 -0
- /package/dist/{components → Components}/Button/ToggleButton/index.d.ts +0 -0
- /package/dist/{components → Components}/Button/ToggleButton/style.d.ts +0 -0
- /package/dist/{components → Components}/Button/index.d.ts +0 -0
- /package/dist/{components → Components}/ImageList.d.ts +0 -0
- /package/dist/{components → Components}/LayoutHeader/index.d.ts +0 -0
- /package/dist/{components → Components}/LayoutHeader/style.d.ts +0 -0
- /package/dist/{components → Components}/LayoutHeader/types.d.ts +0 -0
- /package/dist/{Bubble/MessagesContent → Components/LayoutHeader}/types.js +0 -0
- /package/dist/{components → Components}/Loading/style.d.ts +0 -0
- /package/dist/{components → Components}/Robot/index.d.ts +0 -0
- /package/dist/{components → Components}/Robot/lotties/DazingLottie/dazing.json +0 -0
- /package/dist/{components → Components}/Robot/lotties/DazingLottie/index.d.ts +0 -0
- /package/dist/{components → Components}/Robot/lotties/ThinkingLottie/index.d.ts +0 -0
- /package/dist/{components → Components}/Robot/lotties/ThinkingLottie/thinking.json +0 -0
- /package/dist/{components → Components}/Robot/lotties/index.d.ts +0 -0
- /package/dist/{components → Components}/SuggestionList/index.d.ts +0 -0
- /package/dist/{components → Components}/SuggestionList/style.d.ts +0 -0
- /package/dist/{components → Components}/VisualList/index.d.ts +0 -0
- /package/dist/{components → Components}/VisualList/style.d.ts +0 -0
- /package/dist/{components → Components}/lotties/DazingLottie/dazing.json +0 -0
- /package/dist/{components → Components}/lotties/DazingLottie/index.d.ts +0 -0
- /package/dist/{components → Components}/lotties/ThinkingLottie/index.d.ts +0 -0
- /package/dist/{components → Components}/lotties/ThinkingLottie/thinking.json +0 -0
- /package/dist/{components → Components}/lotties/index.d.ts +0 -0
- /package/dist/{constants → Constants}/colors.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useAutoScroll.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useClickAway.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useCopied.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useDebounceFn/index.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useLanguage.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useRefFunction/index.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useSpeechSynthesis.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useStyle/index.d.ts +0 -0
- /package/dist/{hooks → Hooks}/useThrottleFn/index.d.ts +0 -0
- /package/dist/{i18n → I18n}/index.d.ts +0 -0
- /package/dist/{i18n → I18n}/locales.d.ts +0 -0
- /package/dist/{icons → Icons}/animated/VoicePlayLottie/index.d.ts +0 -0
- /package/dist/{icons → Icons}/animated/VoicePlayLottie/voicePlay.json +0 -0
- /package/dist/{icons → Icons}/animated/VoicingLottie/index.d.ts +0 -0
- /package/dist/{icons → Icons}/animated/VoicingLottie/voicing.json +0 -0
- /package/dist/{plugins → Plugins}/chart/AreaChart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/AreaChart/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/BarChart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/BarChart/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartAttrToolBar/ChartAttrToolBarStyle.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartAttrToolBar/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/Area.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/Bar.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/Column.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/Container.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/Line.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/Pie.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/useChart.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartMark/useChart.js +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartRender.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartStatistic/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartStatistic/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ChartStatistic/utils.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/DonutChart/Legend.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/DonutChart/constants.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/DonutChart/hooks.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/DonutChart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/DonutChart/plugins.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/DonutChart/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/DonutChart/types.d.ts +0 -0
- /package/dist/{components/LayoutHeader → Plugins/chart/DonutChart}/types.js +0 -0
- /package/dist/{plugins → Plugins}/chart/FunnelChart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/FunnelChart/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/LineChart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/LineChart/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/RadarChart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/RadarChart/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ScatterChart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/ScatterChart/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartContainer/ChartContainer.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartContainer/ChartErrorBoundary.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartContainer/ChartErrorBoundaryExample.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartContainer/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartContainer/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartFilter/ChartFilter.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartFilter/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartToolBar/ChartToolBar.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/ChartToolBar/style.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/icons/TimeIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/components/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/const.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/hooks/useChartStatistic.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/chart/utils.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/Katex.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_AMS-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_AMS-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Italic.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Italic.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Math-Italic.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Math-Italic.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Script-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Script-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size1-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size1-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size2-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size2-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size3-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size3-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size4-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size4-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/code/CodeUI/Katex/katex.min.css +0 -0
- /package/dist/{plugins → Plugins}/code/components/AceEditor.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/AceEditorContainer.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/CodeContainer.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/CodeRenderer.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/CodeToolbar.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/HtmlPreview.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/LanguageSelector.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/LoadImage.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/ThinkBlock.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/components/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/hooks/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/hooks/useCodeEditorState.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/hooks/useRenderConditions.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/hooks/useToolbarConfig.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIconMap.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/AbapIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ActionscriptIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/AdaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ApacheIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ApexIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/AplIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ApplescriptIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/AstroIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/AwkIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/BallerinaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/BatIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/BicepIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/BladeIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CadenceIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ClojureIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CmakeIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CobolIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CodeqlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CoffeeIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ConsoleIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CppIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CrystalIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CsharpIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/CssIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/DIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/DartIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/DatabaseIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/DiffIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/DockerIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/DotenvIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ElixirIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ElmIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ErbIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ErlangIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/FsharpIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/GdscriptIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/GlslIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/GnuplotIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/GoIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/GraphqlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/GroovyIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HackIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HamlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HandlebarsIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HaskellIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HclIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HclLightIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HjsonIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HlslIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HtmlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/HttpIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ImbaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/IniIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/JavaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/JavascriptIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/JinjaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/Json5Icon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/JsonIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/JsonnetIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/JuliaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/KotlinIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/KustoIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/LessIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/LiquidIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/LispIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/LuaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/MakefileIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/MarkdownIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/MarkojsIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/MatlabIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/MdxIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/MermaidIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/MojoIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/NginxIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/NimIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/NixIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ObjectiveCIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ObjectiveCppIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/OcamlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PascalIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/Perl6Icon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PerlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PhpIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PostcssIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PowershellIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PrismaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PrologIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ProtoIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PugIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PuppetIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PurescriptIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/PythonIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/RIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/RazorIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ReactIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ReactTsIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/RubyIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/RustIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SasIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SassIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ScalaIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SchemeIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ShaderlabIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SolidityIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SparqlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/StataIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/StylusIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SvelteIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SwiftIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/SystemverilogIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/TclIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/TexIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/TomlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/TwigIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/TypescriptIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/VerilogIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/VhdlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/VimIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/VueIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/WebassemblyIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/WenyanIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/WgslIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/WolframlanguageIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/XmlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/XslIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/YamlIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/ZigIcon.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/langIcons/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/utils/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/code/utils/langOptions.d.ts +0 -0
- /package/dist/{plugins → Plugins}/defaultPlugins.d.ts +0 -0
- /package/dist/{plugins → Plugins}/formatter/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/katex/InlineKatex.d.ts +0 -0
- /package/dist/{plugins → Plugins}/katex/Katex.d.ts +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_AMS-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_AMS-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Italic.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Italic.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Math-Italic.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Math-Italic.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Script-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Script-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size1-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size1-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size2-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size2-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size3-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size3-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size4-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size4-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- /package/dist/{plugins → Plugins}/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- /package/dist/{plugins → Plugins}/katex/index.d.ts +0 -0
- /package/dist/{plugins → Plugins}/katex/katex.min.css +0 -0
- /package/dist/{plugins → Plugins}/mermaid/Mermaid.d.ts +0 -0
- /package/dist/{plugins → Plugins}/mermaid/index.d.ts +0 -0
- /package/dist/{schema → Schema}/SchemaEditor/AceEditorWrapper.d.ts +0 -0
- /package/dist/{schema → Schema}/SchemaEditor/index.d.ts +0 -0
- /package/dist/{schema → Schema}/SchemaEditor/style.d.ts +0 -0
- /package/dist/{schema → Schema}/SchemaForm/types.d.ts +0 -0
- /package/dist/{plugins/chart/DonutChart → Schema/SchemaForm}/types.js +0 -0
- /package/dist/{schema → Schema}/SchemaRenderer/templateEngine.d.ts +0 -0
- /package/dist/{schema → Schema}/index.d.ts +0 -0
- /package/dist/{schema → Schema}/schema.definition.json +0 -0
- /package/dist/{schema → Schema}/schema.json +0 -0
- /package/dist/{schema → Schema}/types.d.ts +0 -0
- /package/dist/{schema/SchemaForm → Schema}/types.js +0 -0
- /package/dist/{schema → Schema}/validator.d.ts +0 -0
- /package/dist/{types → Types}/slash2.d.ts +0 -0
- /package/dist/{utils → Utils}/easings.d.ts +0 -0
- /package/dist/{utils → Utils}/formatTime.d.ts +0 -0
- /package/dist/{utils → Utils}/getScroll.d.ts +0 -0
- /package/dist/{utils → Utils}/language.d.ts +0 -0
- /package/dist/{utils → Utils}/proxySandbox/ProxySandbox.d.ts +0 -0
- /package/dist/{utils → Utils}/proxySandbox/SecurityContextManager.d.ts +0 -0
- /package/dist/{utils → Utils}/proxySandbox/index.d.ts +0 -0
- /package/dist/{utils → Utils}/proxySandbox/types.d.ts +0 -0
- /package/dist/{utils → Utils}/reset-ant.css +0 -0
- /package/dist/{utils → Utils}/scrollTo.d.ts +0 -0
- /package/dist/{utils → Utils}/throttleByAnimationFrame.d.ts +0 -0
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/PythonIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var PythonIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = 24
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 24 24",
|
|
48
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
49
|
-
}),
|
|
50
|
-
/* @__PURE__ */ React.createElement(
|
|
51
|
-
"path",
|
|
52
|
-
{
|
|
53
|
-
d: "M9.86 2A2.86 2.86 0 0 0 7 4.86v1.68h4.29c.39 0 .71.57.71.96H4.86A2.86 2.86 0 0 0 2 10.36v3.781a2.86 2.86 0 0 0 2.86 2.86h1.18v-2.68a2.85 2.85 0 0 1 2.85-2.86h5.25c1.58 0 2.86-1.271 2.86-2.851V4.86A2.86 2.86 0 0 0 14.14 2zm-.72 1.61c.4 0 .72.12.72.71s-.32.891-.72.891c-.39 0-.71-.3-.71-.89s.32-.711.71-.711z",
|
|
54
|
-
fill: "#3c78aa"
|
|
55
|
-
}
|
|
56
|
-
),
|
|
57
|
-
/* @__PURE__ */ React.createElement(
|
|
58
|
-
"path",
|
|
59
|
-
{
|
|
60
|
-
d: "M17.959 7v2.68a2.85 2.85 0 0 1-2.85 2.859H9.86A2.85 2.85 0 0 0 7 15.389v3.75a2.86 2.86 0 0 0 2.86 2.86h4.28A2.86 2.86 0 0 0 17 19.14v-1.68h-4.291c-.39 0-.709-.57-.709-.96h7.14A2.86 2.86 0 0 0 22 13.64V9.86A2.86 2.86 0 0 0 19.14 7zM8.32 11.513l-.004.004c.012-.002.025-.001.038-.004zm6.54 7.276c.39 0 .71.3.71.89a.71.71 0 0 1-.71.71c-.4 0-.72-.12-.72-.71s.32-.89.72-.89z",
|
|
61
|
-
fill: "#fdd835"
|
|
62
|
-
}
|
|
63
|
-
)
|
|
64
|
-
);
|
|
65
|
-
};
|
|
66
|
-
var PythonIcon_default = PythonIcon;
|
|
67
|
-
export {
|
|
68
|
-
PythonIcon,
|
|
69
|
-
PythonIcon_default as default
|
|
70
|
-
};
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/RIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var RIcon = (_a) => {
|
|
36
|
-
var _b = _a, { size = "1em" } = _b, props = __objRest(_b, ["size"]);
|
|
37
|
-
return /* @__PURE__ */ React.createElement(
|
|
38
|
-
"svg",
|
|
39
|
-
__spreadProps(__spreadValues({
|
|
40
|
-
width: size,
|
|
41
|
-
height: size
|
|
42
|
-
}, props), {
|
|
43
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
44
|
-
viewBox: "0 0 24 24"
|
|
45
|
-
}),
|
|
46
|
-
/* @__PURE__ */ React.createElement(
|
|
47
|
-
"path",
|
|
48
|
-
{
|
|
49
|
-
d: "M11.956 4.05c-5.694 0-10.354 3.106-10.354 6.947 0 3.396 3.686 6.212 8.531 6.813v2.205h3.53V17.82c.88-.093 1.699-.259 2.475-.497l1.43 2.692h3.996l-2.402-4.048c1.936-1.263 3.147-3.034 3.147-4.97 0-3.841-4.659-6.947-10.354-6.947m1.584 2.712c4.349 0 7.558 1.45 7.558 4.753 0 1.77-.952 3.013-2.505 3.779a1.081 1.081 0 0 1-.228-.156c-.373-.165-.994-.352-.994-.352s3.085-.227 3.085-3.302-3.23-3.127-3.23-3.127h-7.092v7.413c-2.64-.766-4.462-2.392-4.462-4.255 0-2.63 3.52-4.753 7.868-4.753m.156 4.12h2.143s.983-.05.983.974c0 1.004-.983 1.004-.983 1.004h-2.143v-1.977m-.031 4.566h.952c.186 0 .28.052.445.207.135.103.28.3.404.476-.57.073-1.17.104-1.801.104z",
|
|
50
|
-
fill: "#1976d2"
|
|
51
|
-
}
|
|
52
|
-
)
|
|
53
|
-
);
|
|
54
|
-
};
|
|
55
|
-
var RIcon_default = RIcon;
|
|
56
|
-
export {
|
|
57
|
-
RIcon,
|
|
58
|
-
RIcon_default as default
|
|
59
|
-
};
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/RazorIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var RazorIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = 24
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 24 24",
|
|
48
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
49
|
-
}),
|
|
50
|
-
/* @__PURE__ */ React.createElement(
|
|
51
|
-
"path",
|
|
52
|
-
{
|
|
53
|
-
d: "M12 15c.81 0 1.5-.3 2.11-.89.59-.61.89-1.3.89-2.11s-.3-1.5-.89-2.11C13.5 9.3 12.81 9 12 9s-1.5.3-2.11.89C9.3 10.5 9 11.19 9 12s.3 1.5.89 2.11c.61.59 1.3.89 2.11.89m0-13c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12v1.45c0 1-.35 1.85-1 2.55-.7.67-1.5 1-2.5 1-1.2 0-2.19-.5-2.94-1.5-1 1-2.18 1.5-3.56 1.5-1.37 0-2.55-.5-3.54-1.46C7.5 14.55 7 13.38 7 12c0-1.37.5-2.55 1.46-3.54C9.45 7.5 10.63 7 12 7c1.38 0 2.55.5 3.54 1.46C16.5 9.45 17 10.63 17 12v1.45c0 .41.16.77.46 1.08s.65.47 1.04.47c.42 0 .77-.16 1.07-.47s.43-.67.43-1.08V12c0-2.19-.77-4.07-2.35-5.65S14.19 4 12 4s-4.07.77-5.65 2.35S4 9.81 4 12s.77 4.07 2.35 5.65S9.81 20 12 20h5v2h-5c-2.75 0-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2z",
|
|
54
|
-
style: {
|
|
55
|
-
fill: "#42a5f5"
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
)
|
|
59
|
-
);
|
|
60
|
-
};
|
|
61
|
-
var RazorIcon_default = RazorIcon;
|
|
62
|
-
export {
|
|
63
|
-
RazorIcon,
|
|
64
|
-
RazorIcon_default as default
|
|
65
|
-
};
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/ReactIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var ReactIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = 24
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 24 24",
|
|
48
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
49
|
-
}),
|
|
50
|
-
/* @__PURE__ */ React.createElement(
|
|
51
|
-
"path",
|
|
52
|
-
{
|
|
53
|
-
d: "M12 10.11c1.03 0 1.87.84 1.87 1.89 0 1-.84 1.85-1.87 1.85S10.13 13 10.13 12c0-1.05.84-1.89 1.87-1.89M7.37 20c.63.38 2.01-.2 3.6-1.7-.52-.59-1.03-1.23-1.51-1.9a22.7 22.7 0 0 1-2.4-.36c-.51 2.14-.32 3.61.31 3.96m.71-5.74-.29-.51c-.11.29-.22.58-.29.86.27.06.57.11.88.16l-.3-.51m6.54-.76.81-1.5-.81-1.5c-.3-.53-.62-1-.91-1.47C13.17 9 12.6 9 12 9s-1.17 0-1.71.03c-.29.47-.61.94-.91 1.47L8.57 12l.81 1.5c.3.53.62 1 .91 1.47.54.03 1.11.03 1.71.03s1.17 0 1.71-.03c.29-.47.61-.94.91-1.47M12 6.78c-.19.22-.39.45-.59.72h1.18c-.2-.27-.4-.5-.59-.72m0 10.44c.19-.22.39-.45.59-.72h-1.18c.2.27.4.5.59.72M16.62 4c-.62-.38-2 .2-3.59 1.7.52.59 1.03 1.23 1.51 1.9.82.08 1.63.2 2.4.36.51-2.14.32-3.61-.32-3.96m-.7 5.74.29.51c.11-.29.22-.58.29-.86-.27-.06-.57-.11-.88-.16l.3.51m1.45-7.05c1.47.84 1.63 3.05 1.01 5.63 2.54.75 4.37 1.99 4.37 3.68s-1.83 2.93-4.37 3.68c.62 2.58.46 4.79-1.01 5.63-1.46.84-3.45-.12-5.37-1.95-1.92 1.83-3.91 2.79-5.38 1.95-1.46-.84-1.62-3.05-1-5.63-2.54-.75-4.37-1.99-4.37-3.68s1.83-2.93 4.37-3.68c-.62-2.58-.46-4.79 1-5.63 1.47-.84 3.46.12 5.38 1.95 1.92-1.83 3.91-2.79 5.37-1.95M17.08 12c.34.75.64 1.5.89 2.26 2.1-.63 3.28-1.53 3.28-2.26s-1.18-1.63-3.28-2.26c-.25.76-.55 1.51-.89 2.26M6.92 12c-.34-.75-.64-1.5-.89-2.26-2.1.63-3.28 1.53-3.28 2.26s1.18 1.63 3.28 2.26c.25-.76.55-1.51.89-2.26m9 2.26-.3.51c.31-.05.61-.1.88-.16-.07-.28-.18-.57-.29-.86l-.29.51m-2.89 4.04c1.59 1.5 2.97 2.08 3.59 1.7.64-.35.83-1.82.32-3.96-.77.16-1.58.28-2.4.36-.48.67-.99 1.31-1.51 1.9M8.08 9.74l.3-.51c-.31.05-.61.1-.88.16.07.28.18.57.29.86l.29-.51m2.89-4.04C9.38 4.2 8 3.62 7.37 4c-.63.35-.82 1.82-.31 3.96a22.7 22.7 0 0 1 2.4-.36c.48-.67.99-1.31 1.51-1.9z",
|
|
54
|
-
fill: "#00bcd4"
|
|
55
|
-
}
|
|
56
|
-
)
|
|
57
|
-
);
|
|
58
|
-
};
|
|
59
|
-
var ReactIcon_default = ReactIcon;
|
|
60
|
-
export {
|
|
61
|
-
ReactIcon,
|
|
62
|
-
ReactIcon_default as default
|
|
63
|
-
};
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/ReactTsIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var ReactTsIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = 24
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 24 24",
|
|
48
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
49
|
-
}),
|
|
50
|
-
/* @__PURE__ */ React.createElement(
|
|
51
|
-
"path",
|
|
52
|
-
{
|
|
53
|
-
d: "M12 10.11c1.03 0 1.87.84 1.87 1.89 0 1-.84 1.85-1.87 1.85S10.13 13 10.13 12c0-1.05.84-1.89 1.87-1.89M7.37 20c.63.38 2.01-.2 3.6-1.7-.52-.59-1.03-1.23-1.51-1.9a22.7 22.7 0 0 1-2.4-.36c-.51 2.14-.32 3.61.31 3.96m.71-5.74-.29-.51c-.11.29-.22.58-.29.86.27.06.57.11.88.16l-.3-.51m6.54-.76.81-1.5-.81-1.5c-.3-.53-.62-1-.91-1.47C13.17 9 12.6 9 12 9s-1.17 0-1.71.03c-.29.47-.61.94-.91 1.47L8.57 12l.81 1.5c.3.53.62 1 .91 1.47.54.03 1.11.03 1.71.03s1.17 0 1.71-.03c.29-.47.61-.94.91-1.47M12 6.78c-.19.22-.39.45-.59.72h1.18c-.2-.27-.4-.5-.59-.72m0 10.44c.19-.22.39-.45.59-.72h-1.18c.2.27.4.5.59.72M16.62 4c-.62-.38-2 .2-3.59 1.7.52.59 1.03 1.23 1.51 1.9.82.08 1.63.2 2.4.36.51-2.14.32-3.61-.32-3.96m-.7 5.74.29.51c.11-.29.22-.58.29-.86-.27-.06-.57-.11-.88-.16l.3.51m1.45-7.05c1.47.84 1.63 3.05 1.01 5.63 2.54.75 4.37 1.99 4.37 3.68s-1.83 2.93-4.37 3.68c.62 2.58.46 4.79-1.01 5.63-1.46.84-3.45-.12-5.37-1.95-1.92 1.83-3.91 2.79-5.38 1.95-1.46-.84-1.62-3.05-1-5.63-2.54-.75-4.37-1.99-4.37-3.68s1.83-2.93 4.37-3.68c-.62-2.58-.46-4.79 1-5.63 1.47-.84 3.46.12 5.38 1.95 1.92-1.83 3.91-2.79 5.37-1.95M17.08 12c.34.75.64 1.5.89 2.26 2.1-.63 3.28-1.53 3.28-2.26s-1.18-1.63-3.28-2.26c-.25.76-.55 1.51-.89 2.26M6.92 12c-.34-.75-.64-1.5-.89-2.26-2.1.63-3.28 1.53-3.28 2.26s1.18 1.63 3.28 2.26c.25-.76.55-1.51.89-2.26m9 2.26-.3.51c.31-.05.61-.1.88-.16-.07-.28-.18-.57-.29-.86l-.29.51m-2.89 4.04c1.59 1.5 2.97 2.08 3.59 1.7.64-.35.83-1.82.32-3.96-.77.16-1.58.28-2.4.36-.48.67-.99 1.31-1.51 1.9M8.08 9.74l.3-.51c-.31.05-.61.1-.88.16.07.28.18.57.29.86l.29-.51m2.89-4.04C9.38 4.2 8 3.62 7.37 4c-.63.35-.82 1.82-.31 3.96a22.7 22.7 0 0 1 2.4-.36c.48-.67.99-1.31 1.51-1.9z",
|
|
54
|
-
fill: "#00bcd4",
|
|
55
|
-
style: {
|
|
56
|
-
fill: "#0288d1"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
)
|
|
60
|
-
);
|
|
61
|
-
};
|
|
62
|
-
var ReactTsIcon_default = ReactTsIcon;
|
|
63
|
-
export {
|
|
64
|
-
ReactTsIcon,
|
|
65
|
-
ReactTsIcon_default as default
|
|
66
|
-
};
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/RubyIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var RubyIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = "1em"
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 24 24",
|
|
48
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
49
|
-
}),
|
|
50
|
-
/* @__PURE__ */ React.createElement(
|
|
51
|
-
"path",
|
|
52
|
-
{
|
|
53
|
-
d: "M18.041 3.177c2.24.382 2.879 1.919 2.843 3.527V6.67l-1.013 13.266-13.132.897h.008c-1.093-.044-3.518-.151-3.634-3.545l1.217-2.222 2.462 5.74 2.097-6.77-.045.009.018-.018 6.85 2.186L13.945 9.3l6.53-.409-5.144-4.212 2.71-1.51v.009M3.113 17.252v.017-.017M6.916 6.874c2.63-2.622 6.033-4.168 7.34-2.844 1.297 1.306-.072 4.523-2.702 7.135-2.666 2.613-6.015 4.248-7.322 2.933-1.306-1.324.036-4.612 2.675-7.224z",
|
|
54
|
-
style: {
|
|
55
|
-
fill: "#f44336",
|
|
56
|
-
strokeWidth: ".88855"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
)
|
|
60
|
-
);
|
|
61
|
-
};
|
|
62
|
-
var RubyIcon_default = RubyIcon;
|
|
63
|
-
export {
|
|
64
|
-
RubyIcon,
|
|
65
|
-
RubyIcon_default as default
|
|
66
|
-
};
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/RustIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var RustIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = "1em"
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 144 144",
|
|
48
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
49
|
-
}),
|
|
50
|
-
/* @__PURE__ */ React.createElement(
|
|
51
|
-
"path",
|
|
52
|
-
{
|
|
53
|
-
d: "M68.252 26.207a3.561 3.561 0 0 1 7.123 0 3.561 3.561 0 0 1-7.123 0M25.766 58.452a3.561 3.561 0 0 1 7.123 0 3.561 3.561 0 0 1-7.123 0m84.97.166a3.561 3.561 0 0 1 7.123 0 3.561 3.561 0 0 1-7.123 0m-74.661 4.88a3.252 3.252 0 0 0 1.651-4.29l-1.58-3.574h6.214v28.01H29.823a43.847 43.847 0 0 1-1.42-16.738zm25.994.688V55.93h14.798c.764 0 5.397.883 5.397 4.347 0 2.877-3.553 3.908-6.475 3.908zm-20.203 44.452a3.561 3.561 0 0 1 7.123 0 3.561 3.561 0 0 1-7.123 0m52.769.166a3.561 3.561 0 0 1 7.123 0 3.561 3.561 0 0 1-7.123 0m1.101-8.076a3.246 3.246 0 0 0-3.856 2.498l-1.787 8.342a43.847 43.847 0 0 1-36.566-.175l-1.787-8.342a3.246 3.246 0 0 0-3.854-2.497l-7.365 1.581a43.847 43.847 0 0 1-3.808-4.488h35.834c.406 0 .676-.074.676-.443V84.528c0-.369-.27-.442-.676-.442h-10.48v-8.035h11.335c1.035 0 5.532.296 6.97 6.045.45 1.768 1.44 7.519 2.116 9.36.674 2.065 3.417 6.19 6.34 6.19h18.501a43.847 43.847 0 0 1-4.06 4.7zm19.898-33.468a43.847 43.847 0 0 1 .093 7.612h-4.499c-.45 0-.631.296-.631.737v2.066c0 4.863-2.742 5.92-5.145 6.19-2.288.258-4.825-.958-5.138-2.358-1.35-7.593-3.6-9.214-7.152-12.016 4.409-2.8 8.996-6.93 8.996-12.457 0-5.97-4.092-9.729-6.881-11.572-3.914-2.58-8.246-3.096-9.415-3.096H39.336A43.847 43.847 0 0 1 63.867 28.52l5.484 5.753a3.243 3.243 0 0 0 4.59.105l6.137-5.869a43.847 43.847 0 0 1 30.017 21.38l-4.201 9.487a3.256 3.256 0 0 0 1.652 4.29zm10.477.154-.143-1.467 4.327-4.036c.88-.82.55-2.472-.574-2.891l-5.532-2.068-.433-1.428 3.45-4.792c.704-.974.058-2.53-1.127-2.724l-5.833-.949-.7-1.31 2.45-5.38c.502-1.095-.43-2.496-1.636-2.45l-5.92.206-.935-1.135 1.36-5.766c.275-1.17-.913-2.36-2.084-2.085l-5.765 1.359-1.136-.935.207-5.92c.046-1.198-1.357-2.135-2.45-1.637l-5.379 2.452-1.31-.703-.95-5.833c-.193-1.183-1.75-1.83-2.723-1.128l-4.796 3.45-1.425-.432-2.068-5.532c-.42-1.127-2.072-1.452-2.89-.576l-4.036 4.33-1.467-.143-3.117-5.036c-.63-1.02-2.318-1.02-2.946 0l-3.117 5.036-1.467.143-4.037-4.33c-.819-.876-2.47-.551-2.89.576l-2.069 5.532-1.426.432-4.795-3.45c-.974-.703-2.53-.055-2.723 1.128l-.951 5.833-1.31.703-5.379-2.452c-1.093-.5-2.496.439-2.45 1.637l.206 5.92-1.136.935-5.765-1.36c-1.171-.272-2.36.915-2.086 2.086l1.358 5.766-.933 1.135-5.92-.206c-1.193-.035-2.134 1.355-1.637 2.45l2.453 5.38-.703 1.31-5.832.949c-1.185.192-1.827 1.75-1.128 2.724l3.45 4.792-.433 1.428-5.532 2.068c-1.123.42-1.452 2.07-.574 2.891l4.328 4.036-.143 1.467-5.035 3.116c-1.02.63-1.02 2.318 0 2.946l5.035 3.117.143 1.467-4.328 4.037c-.878.818-.549 2.468.574 2.89l5.532 2.068.433 1.428-3.45 4.793c-.701.976-.056 2.532 1.129 2.723l5.831.948.703 1.312-2.453 5.378c-.5 1.093.444 2.5 1.638 2.451l5.917-.207.935 1.136-1.358 5.768c-.275 1.168.915 2.355 2.086 2.08l5.765-1.357 1.137.932-.207 5.921c-.046 1.199 1.357 2.136 2.45 1.636l5.379-2.45 1.31.702.95 5.83c.193 1.187 1.75 1.829 2.725 1.13l4.792-3.453 1.427.435 2.069 5.53c.42 1.123 2.072 1.454 2.89.574l4.037-4.328 1.467.146 3.117 5.035c.628 1.016 2.316 1.018 2.946 0l3.117-5.035 1.467-.146 4.036 4.328c.818.88 2.47.549 2.89-.574l2.068-5.53 1.428-.435 4.793 3.453c.974.699 2.53.055 2.722-1.13l.952-5.83 1.31-.703 5.378 2.451c1.093.5 2.493-.435 2.45-1.636l-.206-5.92 1.135-.933 5.765 1.357c1.171.275 2.36-.912 2.085-2.08l-1.358-5.768.932-1.136 5.92.207c1.194.048 2.138-1.358 1.636-2.451l-2.45-5.378.7-1.312 5.833-.948c1.187-.19 1.831-1.747 1.127-2.723l-3.45-4.793.433-1.428 5.532-2.068c1.125-.422 1.454-2.072.574-2.89l-4.327-4.037.143-1.467 5.035-3.117c1.02-.628 1.021-2.315.001-2.946z",
|
|
54
|
-
fill: "#ff7043"
|
|
55
|
-
}
|
|
56
|
-
)
|
|
57
|
-
);
|
|
58
|
-
};
|
|
59
|
-
var RustIcon_default = RustIcon;
|
|
60
|
-
export {
|
|
61
|
-
RustIcon,
|
|
62
|
-
RustIcon_default as default
|
|
63
|
-
};
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/SasIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var SasIcon = (_a) => {
|
|
36
|
-
var _b = _a, { size = "1em" } = _b, props = __objRest(_b, ["size"]);
|
|
37
|
-
return /* @__PURE__ */ React.createElement(
|
|
38
|
-
"svg",
|
|
39
|
-
__spreadProps(__spreadValues({
|
|
40
|
-
width: size,
|
|
41
|
-
height: size
|
|
42
|
-
}, props), {
|
|
43
|
-
viewBox: "0 0 6.35 6.35",
|
|
44
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
45
|
-
}),
|
|
46
|
-
/* @__PURE__ */ React.createElement(
|
|
47
|
-
"path",
|
|
48
|
-
{
|
|
49
|
-
d: "M3.16.546a1.915 1.915 0 0 0-.667.13c-.378.157-.678.4-.846.74-.255.452-.296 1.032.04 1.536.31.474.72.908 1.148 1.407.382.139.572-.272.515-.42-.276-.35-.57-.695-.804-1.06a1.101 1.101 0 0 1-.07-.906c.075-.198.503-.84 1.372-.836.345.04.658.059 1.086.53a1.602 1.602 0 0 0-.536-.753A2.046 2.046 0 0 0 3.159.546zm.245 1.4c-.277.002-.406.227-.348.437.253.365.578.748.869 1.122.316.609.092 1.077-.512 1.472-.82.458-1.576.116-2.026-.298.234.489.423.636.471.679.31.27.81.527 1.62.423.456-.102 1.06-.256 1.396-1.097.093-.265.125-.54.03-.843-.09-.338-.274-.58-.466-.829-.3-.351-.77-.979-.906-1.053a.602.602 0 0 0-.128-.013z",
|
|
50
|
-
fill: "#039be5"
|
|
51
|
-
}
|
|
52
|
-
)
|
|
53
|
-
);
|
|
54
|
-
};
|
|
55
|
-
var SasIcon_default = SasIcon;
|
|
56
|
-
export {
|
|
57
|
-
SasIcon,
|
|
58
|
-
SasIcon_default as default
|
|
59
|
-
};
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/SassIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var SassIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = "1em"
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 500 500",
|
|
48
|
-
xmlSpace: "preserve",
|
|
49
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
50
|
-
}),
|
|
51
|
-
/* @__PURE__ */ React.createElement(
|
|
52
|
-
"path",
|
|
53
|
-
{
|
|
54
|
-
d: "M419.047 96.227C406.855 48.39 327.54 32.67 252.472 59.336c-44.68 15.876-93.029 40.785-127.81 73.31-41.349 38.675-47.943 72.329-45.216 86.396 9.583 49.621 77.585 82.068 105.535 106.125v.144c-8.246 4.051-68.565 34.585-82.684 65.8-14.893 32.932 2.372 56.556 13.804 59.742 35.424 9.858 71.765-7.866 91.312-37.01 18.852-28.12 17.279-64.422 9.085-82.488 11.3-2.976 24.476-4.313 41.218-2.36 47.248 5.52 56.517 35.017 54.747 47.367s-11.681 19.14-14.998 21.185-4.326 2.767-4.05 4.287c.406 2.216 1.94 2.137 4.758 1.652 3.894-.655 24.804-10.042 25.709-32.827 1.14-28.934-26.587-61.302-75.684-60.45-20.216.354-32.933 2.268-42.123 5.69a82.505 82.505 0 0 0-2.084-2.308c-30.35-32.382-86.46-55.285-84.088-98.823.866-15.824 6.372-57.5 107.817-108.053 83.104-41.414 149.638-30.009 161.135-4.759 16.427 36.079-35.554 103.137-121.857 112.812-32.88 3.684-50.199-9.06-54.499-13.805-4.536-4.995-5.204-5.218-6.909-4.287-2.753 1.534-1.01 5.939 0 8.574 2.583 6.712 13.15 18.603 31.176 24.516 15.863 5.204 54.459 8.062 101.157-9.99 52.282-20.255 93.12-76.523 81.124-123.549zM196.584 339.995c3.92 14.5 3.487 28.016-.564 40.247a65.289 65.289 0 0 1-3.225 7.97c-3.12 6.477-7.315 12.534-12.441 18.132-15.654 17.07-37.508 23.533-46.882 18.092-10.12-5.873-5.047-29.943 13.084-49.11 19.52-20.635 47.602-33.902 47.602-33.902l-.039-.08 2.465-1.35z",
|
|
55
|
-
fill: "#ec407a",
|
|
56
|
-
stroke: "#ec407a",
|
|
57
|
-
strokeWidth: "16.287"
|
|
58
|
-
}
|
|
59
|
-
)
|
|
60
|
-
);
|
|
61
|
-
};
|
|
62
|
-
var SassIcon_default = SassIcon;
|
|
63
|
-
export {
|
|
64
|
-
SassIcon,
|
|
65
|
-
SassIcon_default as default
|
|
66
|
-
};
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defProps = Object.defineProperties;
|
|
3
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
var __objRest = (source, exclude) => {
|
|
21
|
-
var target = {};
|
|
22
|
-
for (var prop in source)
|
|
23
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
24
|
-
target[prop] = source[prop];
|
|
25
|
-
if (source != null && __getOwnPropSymbols)
|
|
26
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
27
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
28
|
-
target[prop] = source[prop];
|
|
29
|
-
}
|
|
30
|
-
return target;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// src/plugins/code/langIcons/ScalaIcon.tsx
|
|
34
|
-
import React from "react";
|
|
35
|
-
var ScalaIcon = (_a) => {
|
|
36
|
-
var _b = _a, {
|
|
37
|
-
size = 24
|
|
38
|
-
} = _b, props = __objRest(_b, [
|
|
39
|
-
"size"
|
|
40
|
-
]);
|
|
41
|
-
return /* @__PURE__ */ React.createElement(
|
|
42
|
-
"svg",
|
|
43
|
-
__spreadProps(__spreadValues({
|
|
44
|
-
width: size,
|
|
45
|
-
height: size
|
|
46
|
-
}, props), {
|
|
47
|
-
viewBox: "0 0 256 256",
|
|
48
|
-
xmlSpace: "preserve",
|
|
49
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
50
|
-
}),
|
|
51
|
-
/* @__PURE__ */ React.createElement("g", { fill: "#f44336", fillRule: "evenodd" }, /* @__PURE__ */ React.createElement("path", { d: "m53.461 50.891 149.1-21.982v49.488l-149.1 21.982zm-.014 63.437 149.1-21.982v49.488l-149.1 21.982zm-.005 63.272 149.098-21.983v49.488L53.442 227.087z" }), /* @__PURE__ */ React.createElement("path", { d: "m56.28 91.659 95.604 30.921-2.832 8.757-95.604-30.921zm50.66-30.285 95.604 30.922-2.832 8.757-95.604-30.922zm-50.662 93.663 95.604 30.921-2.832 8.758-95.604-30.922zm50.67-30.386 95.604 30.922-2.833 8.757-95.603-30.922z" }))
|
|
52
|
-
);
|
|
53
|
-
};
|
|
54
|
-
var ScalaIcon_default = ScalaIcon;
|
|
55
|
-
export {
|
|
56
|
-
ScalaIcon,
|
|
57
|
-
ScalaIcon_default as default
|
|
58
|
-
};
|