@hubstr/kit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +29 -0
- package/analytics/src/base.ts +108 -0
- package/analytics/src/config.ts +74 -0
- package/analytics/src/global.ts +280 -0
- package/analytics/src/index.test.ts +556 -0
- package/analytics/src/index.ts +48 -0
- package/analytics/src/manager.ts +210 -0
- package/analytics/src/providers/ga4.ts +264 -0
- package/analytics/src/providers/posthog-node.ts +301 -0
- package/analytics/src/providers/posthog.test.ts +57 -0
- package/analytics/src/providers/posthog.ts +242 -0
- package/analytics/src/providers/xads.test.ts +235 -0
- package/analytics/src/providers/xads.ts +285 -0
- package/analytics/src/react/hooks.ts +117 -0
- package/analytics/src/react/index.ts +23 -0
- package/analytics/src/react/provider.tsx +289 -0
- package/analytics/src/server.ts +88 -0
- package/analytics/src/types.ts +127 -0
- package/assets-logo/assets/logo-flat.svg +1 -0
- package/assets-logo/assets/logo-high-contrast.svg +1 -0
- package/assets-logo/assets/logo-text.svg +1 -0
- package/assets-logo/assets/logo.png +0 -0
- package/charts/src/AccuracyBarChart/demos/index.tsx +91 -0
- package/charts/src/AccuracyBarChart/index.md +50 -0
- package/charts/src/AccuracyBarChart/index.tsx +529 -0
- package/charts/src/AccuracyBarChart/styles.ts +67 -0
- package/charts/src/AreaChart/demos/axis.tsx +81 -0
- package/charts/src/AreaChart/demos/clickEvent.tsx +85 -0
- package/charts/src/AreaChart/demos/customColors.tsx +65 -0
- package/charts/src/AreaChart/demos/customTooltip.tsx +66 -0
- package/charts/src/AreaChart/demos/example.tsx +84 -0
- package/charts/src/AreaChart/demos/index.tsx +131 -0
- package/charts/src/AreaChart/index.md +42 -0
- package/charts/src/AreaChart/index.tsx +466 -0
- package/charts/src/AreaChart/styles.ts +24 -0
- package/charts/src/BarChart/demos/axis.tsx +52 -0
- package/charts/src/BarChart/demos/clickEvent.tsx +84 -0
- package/charts/src/BarChart/demos/customColors.tsx +65 -0
- package/charts/src/BarChart/demos/customTooltip.tsx +85 -0
- package/charts/src/BarChart/demos/example.tsx +50 -0
- package/charts/src/BarChart/demos/groups.tsx +58 -0
- package/charts/src/BarChart/demos/index.tsx +101 -0
- package/charts/src/BarChart/demos/loading.tsx +5 -0
- package/charts/src/BarChart/demos/noData.tsx +5 -0
- package/charts/src/BarChart/demos/xAxisLabelFormatter.tsx +45 -0
- package/charts/src/BarChart/index.md +62 -0
- package/charts/src/BarChart/index.tsx +407 -0
- package/charts/src/BarChart/renderShape.tsx +35 -0
- package/charts/src/BarChart/styles.ts +24 -0
- package/charts/src/BarList/demos/clickEvent.tsx +21 -0
- package/charts/src/BarList/demos/customColors.tsx +14 -0
- package/charts/src/BarList/demos/example.tsx +45 -0
- package/charts/src/BarList/demos/index.tsx +29 -0
- package/charts/src/BarList/index.md +29 -0
- package/charts/src/BarList/index.tsx +181 -0
- package/charts/src/BarList/styles.ts +60 -0
- package/charts/src/ComposedChart/demos/axis.tsx +33 -0
- package/charts/src/ComposedChart/demos/domain.tsx +46 -0
- package/charts/src/ComposedChart/demos/example.tsx +29 -0
- package/charts/src/ComposedChart/demos/index.tsx +74 -0
- package/charts/src/ComposedChart/demos/loading.tsx +13 -0
- package/charts/src/ComposedChart/demos/noData.tsx +12 -0
- package/charts/src/ComposedChart/index.md +36 -0
- package/charts/src/ComposedChart/index.tsx +344 -0
- package/charts/src/ComposedChart/styles.ts +24 -0
- package/charts/src/ComposedChart/types.ts +74 -0
- package/charts/src/DataBars/CategoryBar.tsx +204 -0
- package/charts/src/DataBars/DeltaBar.tsx +133 -0
- package/charts/src/DataBars/MarkerBar.tsx +105 -0
- package/charts/src/DataBars/ProgressBar.tsx +76 -0
- package/charts/src/DataBars/demos/CategoryBar.tsx +13 -0
- package/charts/src/DataBars/demos/DeltaBar.tsx +12 -0
- package/charts/src/DataBars/demos/MarkerBar.tsx +16 -0
- package/charts/src/DataBars/demos/ProgressBar.tsx +7 -0
- package/charts/src/DataBars/index.md +26 -0
- package/charts/src/DataBars/index.tsx +4 -0
- package/charts/src/DataBars/styles.ts +27 -0
- package/charts/src/DonutChart/DonutChartTooltip.tsx +38 -0
- package/charts/src/DonutChart/demos/clickEvent.tsx +47 -0
- package/charts/src/DonutChart/demos/customColors.tsx +41 -0
- package/charts/src/DonutChart/demos/customTooltip.tsx +72 -0
- package/charts/src/DonutChart/demos/example.tsx +51 -0
- package/charts/src/DonutChart/demos/index.tsx +62 -0
- package/charts/src/DonutChart/demos/withLegend.tsx +37 -0
- package/charts/src/DonutChart/index.md +41 -0
- package/charts/src/DonutChart/index.tsx +249 -0
- package/charts/src/DonutChart/inputParser.ts +12 -0
- package/charts/src/DonutChart/renderInactiveShape.tsx +22 -0
- package/charts/src/DonutChart/styles.ts +24 -0
- package/charts/src/FunnelChart/ArrowRightIcon.tsx +9 -0
- package/charts/src/FunnelChart/demos/CalculateFrom.tsx +30 -0
- package/charts/src/FunnelChart/demos/index.tsx +45 -0
- package/charts/src/FunnelChart/index.md +18 -0
- package/charts/src/FunnelChart/index.tsx +635 -0
- package/charts/src/FunnelChart/styles.ts +24 -0
- package/charts/src/FunnelChart/types.ts +30 -0
- package/charts/src/Heatmaps/Calendar.tsx +245 -0
- package/charts/src/Heatmaps/ChartLabels.tsx +168 -0
- package/charts/src/Heatmaps/Footer.tsx +138 -0
- package/charts/src/Heatmaps/demos/activityLevels.tsx +5 -0
- package/charts/src/Heatmaps/demos/clickEvent.tsx +17 -0
- package/charts/src/Heatmaps/demos/customColors.tsx +25 -0
- package/charts/src/Heatmaps/demos/customTooltip.tsx +34 -0
- package/charts/src/Heatmaps/demos/customization.tsx +7 -0
- package/charts/src/Heatmaps/demos/data.ts +2590 -0
- package/charts/src/Heatmaps/demos/dataRanges.tsx +12 -0
- package/charts/src/Heatmaps/demos/example.tsx +5 -0
- package/charts/src/Heatmaps/demos/i18n.tsx +32 -0
- package/charts/src/Heatmaps/demos/index.tsx +60 -0
- package/charts/src/Heatmaps/demos/loading.tsx +5 -0
- package/charts/src/Heatmaps/index.md +59 -0
- package/charts/src/Heatmaps/index.tsx +260 -0
- package/charts/src/Heatmaps/styles.ts +43 -0
- package/charts/src/Legend/LegendItem.tsx +81 -0
- package/charts/src/Legend/ScrollButton.tsx +59 -0
- package/charts/src/Legend/demos/index.tsx +17 -0
- package/charts/src/Legend/index.md +11 -0
- package/charts/src/Legend/index.tsx +207 -0
- package/charts/src/LineChart/demos/axis.tsx +81 -0
- package/charts/src/LineChart/demos/clickEvent.tsx +85 -0
- package/charts/src/LineChart/demos/customColors.tsx +65 -0
- package/charts/src/LineChart/demos/customTooltip.tsx +66 -0
- package/charts/src/LineChart/demos/example.tsx +84 -0
- package/charts/src/LineChart/demos/index.tsx +120 -0
- package/charts/src/LineChart/index.md +42 -0
- package/charts/src/LineChart/index.tsx +411 -0
- package/charts/src/LineChart/styles.ts +24 -0
- package/charts/src/ScatterChart/ScatterChartTooltip.tsx +85 -0
- package/charts/src/ScatterChart/ScatterChartTooltipRow.tsx +33 -0
- package/charts/src/ScatterChart/demos/axis.tsx +154 -0
- package/charts/src/ScatterChart/demos/clickEvent.tsx +162 -0
- package/charts/src/ScatterChart/demos/customColors.tsx +80 -0
- package/charts/src/ScatterChart/demos/customTooltip.tsx +118 -0
- package/charts/src/ScatterChart/demos/example.tsx +152 -0
- package/charts/src/ScatterChart/demos/index.tsx +192 -0
- package/charts/src/ScatterChart/index.md +42 -0
- package/charts/src/ScatterChart/index.tsx +397 -0
- package/charts/src/ScatterChart/renderShape.tsx +27 -0
- package/charts/src/ScatterChart/styles.ts +24 -0
- package/charts/src/SparkChart/SparkAreaChart.tsx +135 -0
- package/charts/src/SparkChart/SparkBarChart.tsx +92 -0
- package/charts/src/SparkChart/SparkLineChart.tsx +94 -0
- package/charts/src/SparkChart/demos/SparkAreaChart.tsx +43 -0
- package/charts/src/SparkChart/demos/SparkBarChart.tsx +43 -0
- package/charts/src/SparkChart/demos/SparkLineChart.tsx +43 -0
- package/charts/src/SparkChart/index.md +22 -0
- package/charts/src/SparkChart/index.tsx +3 -0
- package/charts/src/Tracker/TrackerBlock.tsx +67 -0
- package/charts/src/Tracker/demos/clickEvent.tsx +40 -0
- package/charts/src/Tracker/demos/customColors.tsx +27 -0
- package/charts/src/Tracker/demos/customTooltip.tsx +77 -0
- package/charts/src/Tracker/demos/example.tsx +30 -0
- package/charts/src/Tracker/demos/index.tsx +55 -0
- package/charts/src/Tracker/index.md +35 -0
- package/charts/src/Tracker/index.tsx +102 -0
- package/charts/src/Tracker/styles.ts +20 -0
- package/charts/src/common/BaseAnimationTimingProps.tsx +8 -0
- package/charts/src/common/BaseChartProps.tsx +65 -0
- package/charts/src/common/BaseSparkChartProps.tsx +18 -0
- package/charts/src/common/ChartLegend.tsx +45 -0
- package/charts/src/common/ChartTooltip/ChartTooltipFrame.tsx +25 -0
- package/charts/src/common/ChartTooltip/ChartTooltipRow.tsx +37 -0
- package/charts/src/common/ChartTooltip/index.tsx +71 -0
- package/charts/src/common/CustomTooltipProps.tsx +14 -0
- package/charts/src/common/CustomYAxisTick.tsx +42 -0
- package/charts/src/common/NoData.tsx +50 -0
- package/charts/src/common/utils.ts +63 -0
- package/charts/src/hooks/useOnWindowResize.ts +16 -0
- package/charts/src/hooks/usePrefersReducedMotion.ts +27 -0
- package/charts/src/hooks/useThemeColorRange.ts +28 -0
- package/charts/src/index.ts +24 -0
- package/charts/src/types/charts.ts +119 -0
- package/charts/src/types/global.d.ts +9 -0
- package/charts/src/utils/calendar.ts +255 -0
- package/charts/src/utils/getMaxLabelLength.ts +80 -0
- package/charts/src/utils/index.ts +29 -0
- package/charts/src/utils/theme.ts +49 -0
- package/cli-ui/dist/index.d.ts +447 -0
- package/cli-ui/dist/index.js +1 -0
- package/commitlint-config/dist/index.cjs +14 -0
- package/commitlint-config/dist/index.d.cts +10 -0
- package/commitlint-config/dist/index.d.cts.map +1 -0
- package/commitlint-config/dist/index.d.ts +10 -0
- package/commitlint-config/dist/index.d.ts.map +1 -0
- package/commitlint-config/dist/index.js +13 -0
- package/commitlint-config/dist/index.js.map +1 -0
- package/editor/patches/lexical@0.42.0.patch +82 -0
- package/editor/scripts/postinstall-lexical-patch.cjs +243 -0
- package/editor/src/codemirror/components/CopyButton.tsx +27 -0
- package/editor/src/codemirror/components/LanguageSelect.tsx +73 -0
- package/editor/src/codemirror/components/MoreOptions.tsx +60 -0
- package/editor/src/codemirror/components/Toolbar.tsx +64 -0
- package/editor/src/codemirror/components/style.ts +7 -0
- package/editor/src/codemirror/constants.ts +204 -0
- package/editor/src/codemirror/index.ts +21 -0
- package/editor/src/codemirror/loader.ts +168 -0
- package/editor/src/codemirror/style.ts +82 -0
- package/editor/src/codemirror/theme.ts +131 -0
- package/editor/src/codemirror/types.ts +55 -0
- package/editor/src/common/__tests__/sys.test.ts +63 -0
- package/editor/src/common/canUseDOM.ts +12 -0
- package/editor/src/common/sys.ts +34 -0
- package/editor/src/const/hotkey.ts +78 -0
- package/editor/src/editor-kernel/__tests__/basic-kernel.test.ts +196 -0
- package/editor/src/editor-kernel/__tests__/data-source.test.ts +160 -0
- package/editor/src/editor-kernel/__tests__/decorator-registration.test.ts +103 -0
- package/editor/src/editor-kernel/__tests__/event.test.ts +24 -0
- package/editor/src/editor-kernel/__tests__/lexical-patch.test.ts +115 -0
- package/editor/src/editor-kernel/__tests__/node.test.ts +106 -0
- package/editor/src/editor-kernel/__tests__/plugin.test.ts +280 -0
- package/editor/src/editor-kernel/__tests__/utils.test.ts +197 -0
- package/editor/src/editor-kernel/data-source.ts +22 -0
- package/editor/src/editor-kernel/event.ts +14 -0
- package/editor/src/editor-kernel/index.ts +21 -0
- package/editor/src/editor-kernel/inode/helper.ts +97 -0
- package/editor/src/editor-kernel/inode/i-element-node.ts +3 -0
- package/editor/src/editor-kernel/inode/i-node.ts +3 -0
- package/editor/src/editor-kernel/inode/index.ts +5 -0
- package/editor/src/editor-kernel/inode/paragraph-node.ts +7 -0
- package/editor/src/editor-kernel/inode/root-node.ts +6 -0
- package/editor/src/editor-kernel/inode/text-node.ts +6 -0
- package/editor/src/editor-kernel/kernel.ts +989 -0
- package/editor/src/editor-kernel/plugin.ts +70 -0
- package/editor/src/editor-kernel/react/LexicalErrorBoundary.tsx +38 -0
- package/editor/src/editor-kernel/react/PortalAnchor.tsx +22 -0
- package/editor/src/editor-kernel/react/PortalContainer.tsx +46 -0
- package/editor/src/editor-kernel/react/index.ts +5 -0
- package/editor/src/editor-kernel/react/react-context.ts +51 -0
- package/editor/src/editor-kernel/react/react-editor.tsx +65 -0
- package/editor/src/editor-kernel/react/useAnchor.ts +21 -0
- package/editor/src/editor-kernel/react/useDecorators.tsx +125 -0
- package/editor/src/editor-kernel/react/useEditable.ts +28 -0
- package/editor/src/editor-kernel/react/useLexicalEditor.ts +28 -0
- package/editor/src/editor-kernel/react/useLexicalNodeSelection.ts +129 -0
- package/editor/src/editor-kernel/react/useTranslation.ts +18 -0
- package/editor/src/editor-kernel/types.ts +0 -0
- package/editor/src/editor-kernel/utils.ts +219 -0
- package/editor/src/global.d.ts +14 -0
- package/editor/src/headless/__tests__/extract-media-from-editor-state.test.ts +211 -0
- package/editor/src/headless/__tests__/headless-editor.test.ts +445 -0
- package/editor/src/headless/extract-media-from-editor-state.ts +90 -0
- package/editor/src/headless/index.ts +388 -0
- package/editor/src/index.ts +73 -0
- package/editor/src/locale/index.ts +62 -0
- package/editor/src/plugins/__tests__/basic-plugin.test.ts +230 -0
- package/editor/src/plugins/auto-complete/index.ts +2 -0
- package/editor/src/plugins/auto-complete/node/placeholderNode.ts +124 -0
- package/editor/src/plugins/auto-complete/plugin/index.ts +651 -0
- package/editor/src/plugins/auto-complete/react/ReactAutoCompletePlugin.tsx +73 -0
- package/editor/src/plugins/auto-complete/react/index.ts +1 -0
- package/editor/src/plugins/auto-complete/react/style.ts +10 -0
- package/editor/src/plugins/auto-complete/react/type.ts +23 -0
- package/editor/src/plugins/block/command/index.ts +273 -0
- package/editor/src/plugins/block/index.ts +4 -0
- package/editor/src/plugins/block/plugin/index.ts +278 -0
- package/editor/src/plugins/block/react/ReactBlockPlugin.tsx +968 -0
- package/editor/src/plugins/block/react/core/constants.ts +4 -0
- package/editor/src/plugins/block/react/core/runtime-context.ts +40 -0
- package/editor/src/plugins/block/react/core/types.ts +18 -0
- package/editor/src/plugins/block/react/drag/drag-session.ts +425 -0
- package/editor/src/plugins/block/react/drag/drag-utils.ts +188 -0
- package/editor/src/plugins/block/react/index.ts +3 -0
- package/editor/src/plugins/block/react/style.ts +71 -0
- package/editor/src/plugins/block/service/i-block-menu-service.ts +186 -0
- package/editor/src/plugins/block/service/index.ts +1 -0
- package/editor/src/plugins/code/__tests__/litexml.test.ts +34 -0
- package/editor/src/plugins/code/command/index.ts +53 -0
- package/editor/src/plugins/code/demos/data.json +132 -0
- package/editor/src/plugins/code/demos/index.tsx +14 -0
- package/editor/src/plugins/code/index.md +188 -0
- package/editor/src/plugins/code/index.ts +3 -0
- package/editor/src/plugins/code/node/code.ts +153 -0
- package/editor/src/plugins/code/plugin/index.ts +112 -0
- package/editor/src/plugins/code/plugin/registry.ts +66 -0
- package/editor/src/plugins/code/react/CodeReactPlugin.tsx +29 -0
- package/editor/src/plugins/code/react/index.tsx +1 -0
- package/editor/src/plugins/code/react/style.ts +21 -0
- package/editor/src/plugins/code/react/type.ts +4 -0
- package/editor/src/plugins/codeblock/__tests__/litexml.test.ts +33 -0
- package/editor/src/plugins/codeblock/command/index.ts +58 -0
- package/editor/src/plugins/codeblock/command/symbols.ts +5 -0
- package/editor/src/plugins/codeblock/demos/data.json +158 -0
- package/editor/src/plugins/codeblock/demos/index.tsx +19 -0
- package/editor/src/plugins/codeblock/index.md +160 -0
- package/editor/src/plugins/codeblock/index.ts +4 -0
- package/editor/src/plugins/codeblock/plugin/CodeHighlighterShiki.ts +926 -0
- package/editor/src/plugins/codeblock/plugin/FacadeShiki.ts +411 -0
- package/editor/src/plugins/codeblock/plugin/index.ts +328 -0
- package/editor/src/plugins/codeblock/plugin/invariant.ts +22 -0
- package/editor/src/plugins/codeblock/react/ReactCodeblockPlugin.tsx +30 -0
- package/editor/src/plugins/codeblock/react/index.tsx +2 -0
- package/editor/src/plugins/codeblock/react/style.ts +56 -0
- package/editor/src/plugins/codeblock/react/type.ts +6 -0
- package/editor/src/plugins/codeblock/utils/language.ts +13 -0
- package/editor/src/plugins/codemirror-block/__tests__/litexml.test.ts +67 -0
- package/editor/src/plugins/codemirror-block/command/index.ts +133 -0
- package/editor/src/plugins/codemirror-block/index.ts +10 -0
- package/editor/src/plugins/codemirror-block/lib/index.ts +8 -0
- package/editor/src/plugins/codemirror-block/lib/mode.ts +37 -0
- package/editor/src/plugins/codemirror-block/node/CodeMirrorNode.ts +361 -0
- package/editor/src/plugins/codemirror-block/plugin/index.ts +116 -0
- package/editor/src/plugins/codemirror-block/react/CodemirrorNode.tsx +342 -0
- package/editor/src/plugins/codemirror-block/react/ReactCodemirrorNode.tsx +28 -0
- package/editor/src/plugins/codemirror-block/react/index.ts +1 -0
- package/editor/src/plugins/codemirror-block/react/type.ts +3 -0
- package/editor/src/plugins/common/command/index.ts +46 -0
- package/editor/src/plugins/common/data-source/json-data-source.ts +221 -0
- package/editor/src/plugins/common/data-source/text-data-source.ts +37 -0
- package/editor/src/plugins/common/demos/data.json +85 -0
- package/editor/src/plugins/common/demos/index.tsx +13 -0
- package/editor/src/plugins/common/index.md +83 -0
- package/editor/src/plugins/common/index.ts +10 -0
- package/editor/src/plugins/common/node/ElementDOMSlot.ts +43 -0
- package/editor/src/plugins/common/node/cursor.ts +309 -0
- package/editor/src/plugins/common/plugin/__test__/litexml.test.ts +79 -0
- package/editor/src/plugins/common/plugin/__test__/markdown.test.ts +54 -0
- package/editor/src/plugins/common/plugin/index.ts +660 -0
- package/editor/src/plugins/common/plugin/mdReader.ts +98 -0
- package/editor/src/plugins/common/plugin/paste-handler.ts +138 -0
- package/editor/src/plugins/common/plugin/register.ts +504 -0
- package/editor/src/plugins/common/react/Placeholder/index.tsx +108 -0
- package/editor/src/plugins/common/react/Placeholder/style.ts +21 -0
- package/editor/src/plugins/common/react/ReactEditorContent.tsx +13 -0
- package/editor/src/plugins/common/react/ReactPlainText.tsx +258 -0
- package/editor/src/plugins/common/react/index.ts +3 -0
- package/editor/src/plugins/common/react/style.ts +213 -0
- package/editor/src/plugins/common/react/type.ts +82 -0
- package/editor/src/plugins/common/utils/__test__/utils.test.ts +749 -0
- package/editor/src/plugins/common/utils/index.ts +222 -0
- package/editor/src/plugins/content-blocks/data-source/content-blocks-data-source.ts +31 -0
- package/editor/src/plugins/content-blocks/demos/data.json +81 -0
- package/editor/src/plugins/content-blocks/demos/headless.tsx +125 -0
- package/editor/src/plugins/content-blocks/demos/index.tsx +105 -0
- package/editor/src/plugins/content-blocks/index.md +273 -0
- package/editor/src/plugins/content-blocks/index.ts +16 -0
- package/editor/src/plugins/content-blocks/plugin/index.ts +40 -0
- package/editor/src/plugins/content-blocks/types.ts +39 -0
- package/editor/src/plugins/content-blocks/utils/__tests__/extract-media-lists.test.ts +59 -0
- package/editor/src/plugins/content-blocks/utils/__tests__/extract.test.ts +274 -0
- package/editor/src/plugins/content-blocks/utils/extract-media-lists.ts +35 -0
- package/editor/src/plugins/content-blocks/utils/extract.ts +290 -0
- package/editor/src/plugins/file/command/index.ts +50 -0
- package/editor/src/plugins/file/demos/data.json +30 -0
- package/editor/src/plugins/file/demos/index.tsx +23 -0
- package/editor/src/plugins/file/index.md +315 -0
- package/editor/src/plugins/file/index.ts +3 -0
- package/editor/src/plugins/file/node/FileNode.ts +190 -0
- package/editor/src/plugins/file/plugin/index.ts +165 -0
- package/editor/src/plugins/file/react/ReactFilePlugin.tsx +47 -0
- package/editor/src/plugins/file/react/components/ReactFile.tsx +60 -0
- package/editor/src/plugins/file/react/index.ts +2 -0
- package/editor/src/plugins/file/react/style.ts +33 -0
- package/editor/src/plugins/file/react/type.ts +12 -0
- package/editor/src/plugins/file/utils/index.ts +36 -0
- package/editor/src/plugins/hr/command/index.ts +21 -0
- package/editor/src/plugins/hr/demos/data.json +55 -0
- package/editor/src/plugins/hr/demos/index.tsx +14 -0
- package/editor/src/plugins/hr/index.md +323 -0
- package/editor/src/plugins/hr/index.ts +3 -0
- package/editor/src/plugins/hr/node/HorizontalRuleNode.ts +88 -0
- package/editor/src/plugins/hr/plugin/index.ts +103 -0
- package/editor/src/plugins/hr/react/ReactHRPlugin.tsx +30 -0
- package/editor/src/plugins/hr/react/components/HRNode.tsx +53 -0
- package/editor/src/plugins/hr/react/index.tsx +2 -0
- package/editor/src/plugins/hr/react/style.ts +32 -0
- package/editor/src/plugins/hr/react/type.ts +3 -0
- package/editor/src/plugins/image/__test__/litexml.test.ts +37 -0
- package/editor/src/plugins/image/command/index.ts +87 -0
- package/editor/src/plugins/image/demos/data.json +53 -0
- package/editor/src/plugins/image/demos/index.tsx +82 -0
- package/editor/src/plugins/image/index.md +261 -0
- package/editor/src/plugins/image/index.ts +3 -0
- package/editor/src/plugins/image/node/basie-image-node.ts +137 -0
- package/editor/src/plugins/image/node/block-image-node.tsx +189 -0
- package/editor/src/plugins/image/node/image-node.tsx +174 -0
- package/editor/src/plugins/image/plugin/index.ts +262 -0
- package/editor/src/plugins/image/react/ReactImagePlugin.tsx +78 -0
- package/editor/src/plugins/image/react/components/BrokenImage.tsx +23 -0
- package/editor/src/plugins/image/react/components/Image.tsx +262 -0
- package/editor/src/plugins/image/react/components/ImageEditPopover.tsx +202 -0
- package/editor/src/plugins/image/react/components/LazyImage.tsx +114 -0
- package/editor/src/plugins/image/react/components/ResizeHandle.tsx +106 -0
- package/editor/src/plugins/image/react/components/__tests__/Image.test.tsx +138 -0
- package/editor/src/plugins/image/react/components/style.ts +140 -0
- package/editor/src/plugins/image/react/components/useSupenseImage.ts +21 -0
- package/editor/src/plugins/image/react/index.ts +2 -0
- package/editor/src/plugins/image/react/style.ts +33 -0
- package/editor/src/plugins/image/react/type.ts +16 -0
- package/editor/src/plugins/inode/index.ts +3 -0
- package/editor/src/plugins/inode/plugin/index.ts +41 -0
- package/editor/src/plugins/inode/react/index.tsx +21 -0
- package/editor/src/plugins/inode/service/index.ts +30 -0
- package/editor/src/plugins/link/__test__/litexml.test.ts +37 -0
- package/editor/src/plugins/link/command/index.ts +62 -0
- package/editor/src/plugins/link/demos/data.json +44 -0
- package/editor/src/plugins/link/demos/index.tsx +14 -0
- package/editor/src/plugins/link/index.md +291 -0
- package/editor/src/plugins/link/index.ts +4 -0
- package/editor/src/plugins/link/node/LinkNode.ts +703 -0
- package/editor/src/plugins/link/plugin/index.ts +161 -0
- package/editor/src/plugins/link/plugin/registry.ts +126 -0
- package/editor/src/plugins/link/react/ReactLinkPlugin.tsx +58 -0
- package/editor/src/plugins/link/react/components/LinkEdit.tsx +283 -0
- package/editor/src/plugins/link/react/components/LinkToolbar.tsx +208 -0
- package/editor/src/plugins/link/react/index.tsx +2 -0
- package/editor/src/plugins/link/react/style.ts +40 -0
- package/editor/src/plugins/link/react/type.ts +11 -0
- package/editor/src/plugins/link/service/i-link-service.ts +25 -0
- package/editor/src/plugins/link/utils/index.ts +55 -0
- package/editor/src/plugins/link-highlight/command/index.ts +60 -0
- package/editor/src/plugins/link-highlight/demos/data.json +68 -0
- package/editor/src/plugins/link-highlight/demos/index.tsx +19 -0
- package/editor/src/plugins/link-highlight/index.md +443 -0
- package/editor/src/plugins/link-highlight/index.ts +4 -0
- package/editor/src/plugins/link-highlight/node/link-highlight.ts +173 -0
- package/editor/src/plugins/link-highlight/plugin/index.ts +218 -0
- package/editor/src/plugins/link-highlight/plugin/registry.ts +63 -0
- package/editor/src/plugins/link-highlight/react/ReactLinkHighlightPlugin.tsx +32 -0
- package/editor/src/plugins/link-highlight/react/index.tsx +1 -0
- package/editor/src/plugins/link-highlight/react/style.ts +14 -0
- package/editor/src/plugins/link-highlight/react/type.ts +13 -0
- package/editor/src/plugins/link-highlight/utils/index.ts +43 -0
- package/editor/src/plugins/list/__test__/litexml.test.ts +37 -0
- package/editor/src/plugins/list/command/index.ts +7 -0
- package/editor/src/plugins/list/demos/data.json +241 -0
- package/editor/src/plugins/list/demos/index.tsx +14 -0
- package/editor/src/plugins/list/index.md +301 -0
- package/editor/src/plugins/list/index.ts +3 -0
- package/editor/src/plugins/list/plugin/checkList.ts +264 -0
- package/editor/src/plugins/list/plugin/index.test.ts +36 -0
- package/editor/src/plugins/list/plugin/index.ts +266 -0
- package/editor/src/plugins/list/plugin/registry.ts +151 -0
- package/editor/src/plugins/list/react/ReactListPlugin.tsx +28 -0
- package/editor/src/plugins/list/react/index.ts +2 -0
- package/editor/src/plugins/list/react/style.ts +123 -0
- package/editor/src/plugins/list/react/type.ts +4 -0
- package/editor/src/plugins/list/utils/index.ts +98 -0
- package/editor/src/plugins/litexml/__test__/command.test.ts +319 -0
- package/editor/src/plugins/litexml/__test__/secondary_diff.test.ts +387 -0
- package/editor/src/plugins/litexml/command/diffCommand.ts +134 -0
- package/editor/src/plugins/litexml/command/index.ts +544 -0
- package/editor/src/plugins/litexml/command/symbols.ts +78 -0
- package/editor/src/plugins/litexml/data-source/litexml-data-source.ts +397 -0
- package/editor/src/plugins/litexml/index.ts +23 -0
- package/editor/src/plugins/litexml/node/DiffNode.ts +153 -0
- package/editor/src/plugins/litexml/plugin/index.ts +179 -0
- package/editor/src/plugins/litexml/react/DiffNodeToolbar/index.tsx +73 -0
- package/editor/src/plugins/litexml/react/DiffNodeToolbar/style.ts +22 -0
- package/editor/src/plugins/litexml/react/hooks/useHasDiffNode.ts +53 -0
- package/editor/src/plugins/litexml/react/index.tsx +28 -0
- package/editor/src/plugins/litexml/react/style.ts +124 -0
- package/editor/src/plugins/litexml/service/litexml-service.ts +142 -0
- package/editor/src/plugins/litexml/utils/index.ts +109 -0
- package/editor/src/plugins/markdown/command/__tests__/command.test.ts +612 -0
- package/editor/src/plugins/markdown/command/index.ts +131 -0
- package/editor/src/plugins/markdown/data-source/markdown/parse.test.ts +173 -0
- package/editor/src/plugins/markdown/data-source/markdown/parse.ts +325 -0
- package/editor/src/plugins/markdown/data-source/markdown/supersub.ts +17 -0
- package/editor/src/plugins/markdown/data-source/markdown-data-source.ts +236 -0
- package/editor/src/plugins/markdown/data-source/markdown-writer-context.ts +64 -0
- package/editor/src/plugins/markdown/index.md +396 -0
- package/editor/src/plugins/markdown/index.ts +13 -0
- package/editor/src/plugins/markdown/plugin/__tests__/paste.test.ts +122 -0
- package/editor/src/plugins/markdown/plugin/index.ts +461 -0
- package/editor/src/plugins/markdown/react/index.tsx +37 -0
- package/editor/src/plugins/markdown/service/shortcut.ts +286 -0
- package/editor/src/plugins/markdown/service/transformers.ts +378 -0
- package/editor/src/plugins/markdown/utils/detectLanguage.ts +310 -0
- package/editor/src/plugins/markdown/utils/index.ts +243 -0
- package/editor/src/plugins/markdown/utils/logger.ts +3 -0
- package/editor/src/plugins/markdown/utils/url-validator.ts +6 -0
- package/editor/src/plugins/math/__tests__/litexml.test.ts +37 -0
- package/editor/src/plugins/math/__tests__/math.test.ts +111 -0
- package/editor/src/plugins/math/__tests__/utils.test.ts +40 -0
- package/editor/src/plugins/math/command/index.ts +79 -0
- package/editor/src/plugins/math/demos/data.json +149 -0
- package/editor/src/plugins/math/demos/index.tsx +14 -0
- package/editor/src/plugins/math/index.md +377 -0
- package/editor/src/plugins/math/index.ts +3 -0
- package/editor/src/plugins/math/node/index.ts +234 -0
- package/editor/src/plugins/math/plugin/index.ts +175 -0
- package/editor/src/plugins/math/react/components/MathEditor.tsx +280 -0
- package/editor/src/plugins/math/react/components/MathEditorContainer.tsx +126 -0
- package/editor/src/plugins/math/react/components/MathEditorContent.tsx +199 -0
- package/editor/src/plugins/math/react/components/MathInline.tsx +139 -0
- package/editor/src/plugins/math/react/components/Placeholder.tsx +36 -0
- package/editor/src/plugins/math/react/index.tsx +30 -0
- package/editor/src/plugins/math/react/style.ts +102 -0
- package/editor/src/plugins/math/react/type.ts +11 -0
- package/editor/src/plugins/math/utils/index.ts +27 -0
- package/editor/src/plugins/mention/__test__/litexml.test.ts +68 -0
- package/editor/src/plugins/mention/command/index.ts +35 -0
- package/editor/src/plugins/mention/demos/data.json +39 -0
- package/editor/src/plugins/mention/demos/index.tsx +68 -0
- package/editor/src/plugins/mention/index.md +100 -0
- package/editor/src/plugins/mention/index.ts +4 -0
- package/editor/src/plugins/mention/node/MentionNode.ts +136 -0
- package/editor/src/plugins/mention/plugin/__tests__/mention.test.ts +60 -0
- package/editor/src/plugins/mention/plugin/index.ts +115 -0
- package/editor/src/plugins/mention/plugin/register.ts +38 -0
- package/editor/src/plugins/mention/react/ReactMentionPlugin.tsx +32 -0
- package/editor/src/plugins/mention/react/components/Mention.tsx +45 -0
- package/editor/src/plugins/mention/react/index.ts +2 -0
- package/editor/src/plugins/mention/react/style.ts +35 -0
- package/editor/src/plugins/mention/react/type.ts +9 -0
- package/editor/src/plugins/slash/demos/index.tsx +55 -0
- package/editor/src/plugins/slash/index.md +204 -0
- package/editor/src/plugins/slash/index.ts +4 -0
- package/editor/src/plugins/slash/plugin/index.ts +295 -0
- package/editor/src/plugins/slash/react/ReactSlashOption.tsx +13 -0
- package/editor/src/plugins/slash/react/ReactSlashPlugin.tsx +300 -0
- package/editor/src/plugins/slash/react/components/DefaultSlashMenu.tsx +174 -0
- package/editor/src/plugins/slash/react/components/SlashMenu.tsx +71 -0
- package/editor/src/plugins/slash/react/index.ts +4 -0
- package/editor/src/plugins/slash/react/style.ts +8 -0
- package/editor/src/plugins/slash/react/type.ts +113 -0
- package/editor/src/plugins/slash/react/utils.ts +32 -0
- package/editor/src/plugins/slash/service/i-slash-service.ts +134 -0
- package/editor/src/plugins/slash/utils/utils.ts +236 -0
- package/editor/src/plugins/table/__test__/litexml.test.ts +48 -0
- package/editor/src/plugins/table/command/index.ts +508 -0
- package/editor/src/plugins/table/demos/data.json +345 -0
- package/editor/src/plugins/table/demos/index.tsx +14 -0
- package/editor/src/plugins/table/demos/scrollable.json +2454 -0
- package/editor/src/plugins/table/demos/scrollable.tsx +14 -0
- package/editor/src/plugins/table/index.md +228 -0
- package/editor/src/plugins/table/index.ts +9 -0
- package/editor/src/plugins/table/node/index.ts +236 -0
- package/editor/src/plugins/table/plugin/index.ts +482 -0
- package/editor/src/plugins/table/react/TableActionMenu/ActionMenu.tsx +464 -0
- package/editor/src/plugins/table/react/TableActionMenu/index.tsx +229 -0
- package/editor/src/plugins/table/react/TableActionMenu/style.ts +18 -0
- package/editor/src/plugins/table/react/TableActionMenu/utils.ts +62 -0
- package/editor/src/plugins/table/react/TableColController.tsx +507 -0
- package/editor/src/plugins/table/react/TableController/hooks.ts +300 -0
- package/editor/src/plugins/table/react/TableController/style.ts +263 -0
- package/editor/src/plugins/table/react/TableController/utils.ts +22 -0
- package/editor/src/plugins/table/react/TableControllerButton.tsx +146 -0
- package/editor/src/plugins/table/react/TableControllerMenu.tsx +196 -0
- package/editor/src/plugins/table/react/TableHoverActions/index.tsx +248 -0
- package/editor/src/plugins/table/react/TableHoverActions/style.ts +14 -0
- package/editor/src/plugins/table/react/TableHoverActions/utils.ts +65 -0
- package/editor/src/plugins/table/react/TableInsertButton.tsx +42 -0
- package/editor/src/plugins/table/react/TableResize/index.tsx +573 -0
- package/editor/src/plugins/table/react/TableResize/style.ts +17 -0
- package/editor/src/plugins/table/react/TableResize/utils.ts +20 -0
- package/editor/src/plugins/table/react/TableRowController.tsx +500 -0
- package/editor/src/plugins/table/react/hooks.ts +148 -0
- package/editor/src/plugins/table/react/index.tsx +271 -0
- package/editor/src/plugins/table/react/style.ts +154 -0
- package/editor/src/plugins/table/react/type.ts +9 -0
- package/editor/src/plugins/table/react/useAutoFitPastedTable.ts +360 -0
- package/editor/src/plugins/table/service/i-table-controller-menu-service.ts +81 -0
- package/editor/src/plugins/table/service/index.ts +1 -0
- package/editor/src/plugins/table/utils/autoFitColumnWidth.ts +132 -0
- package/editor/src/plugins/table/utils/distributeColumnWidth.ts +67 -0
- package/editor/src/plugins/table/utils/index.ts +298 -0
- package/editor/src/plugins/toolbar/command/index.ts +34 -0
- package/editor/src/plugins/toolbar/index.ts +2 -0
- package/editor/src/plugins/toolbar/react/index.tsx +178 -0
- package/editor/src/plugins/toolbar/react/style.ts +53 -0
- package/editor/src/plugins/toolbar/react/type.ts +6 -0
- package/editor/src/plugins/toolbar/utils/getDOMRangeRect.ts +24 -0
- package/editor/src/plugins/toolbar/utils/setFloatingElemPosition.ts +85 -0
- package/editor/src/plugins/upload/index.md +375 -0
- package/editor/src/plugins/upload/index.ts +7 -0
- package/editor/src/plugins/upload/plugin/index.ts +72 -0
- package/editor/src/plugins/upload/service/i-upload-service.ts +56 -0
- package/editor/src/plugins/upload/utils/index.ts +23 -0
- package/editor/src/plugins/virtual-block/index.ts +2 -0
- package/editor/src/plugins/virtual-block/plugin/index.ts +32 -0
- package/editor/src/plugins/virtual-block/plugin/register.ts +327 -0
- package/editor/src/plugins/virtual-block/react/ReactVirtualBlock.tsx +21 -0
- package/editor/src/plugins/virtual-block/react/index.tsx +1 -0
- package/editor/src/react/ChatInput/ChatInput.tsx +148 -0
- package/editor/src/react/ChatInput/demos/ActionToolbar.tsx +114 -0
- package/editor/src/react/ChatInput/demos/Container.tsx +61 -0
- package/editor/src/react/ChatInput/demos/InputEditor.tsx +191 -0
- package/editor/src/react/ChatInput/demos/TypoToolbar.tsx +167 -0
- package/editor/src/react/ChatInput/demos/data.ts +117 -0
- package/editor/src/react/ChatInput/demos/index.tsx +122 -0
- package/editor/src/react/ChatInput/index.md +40 -0
- package/editor/src/react/ChatInput/index.ts +2 -0
- package/editor/src/react/ChatInput/style.ts +119 -0
- package/editor/src/react/ChatInput/type.ts +29 -0
- package/editor/src/react/ChatInputActionBar/ChatInputActionBar.tsx +36 -0
- package/editor/src/react/ChatInputActionBar/demos/index.tsx +86 -0
- package/editor/src/react/ChatInputActionBar/index.md +29 -0
- package/editor/src/react/ChatInputActionBar/index.ts +2 -0
- package/editor/src/react/ChatInputActionBar/style.ts +7 -0
- package/editor/src/react/ChatInputActionBar/type.ts +7 -0
- package/editor/src/react/ChatInputActions/ChatInputActions.tsx +97 -0
- package/editor/src/react/ChatInputActions/components/ActionItem.tsx +82 -0
- package/editor/src/react/ChatInputActions/components/ActionRender.tsx +58 -0
- package/editor/src/react/ChatInputActions/components/CollapsedActions.tsx +81 -0
- package/editor/src/react/ChatInputActions/components/useDisplayActionCount.ts +59 -0
- package/editor/src/react/ChatInputActions/demos/Collapse.tsx +74 -0
- package/editor/src/react/ChatInputActions/demos/index.tsx +69 -0
- package/editor/src/react/ChatInputActions/index.md +83 -0
- package/editor/src/react/ChatInputActions/index.ts +2 -0
- package/editor/src/react/ChatInputActions/style.ts +18 -0
- package/editor/src/react/ChatInputActions/type.ts +48 -0
- package/editor/src/react/CodeLanguageSelect/CodeLanguageSelect.tsx +78 -0
- package/editor/src/react/CodeLanguageSelect/demos/index.tsx +5 -0
- package/editor/src/react/CodeLanguageSelect/index.md +34 -0
- package/editor/src/react/CodeLanguageSelect/index.ts +2 -0
- package/editor/src/react/CodeLanguageSelect/style.ts +7 -0
- package/editor/src/react/CodeLanguageSelect/type.ts +3 -0
- package/editor/src/react/Editor/Editor.tsx +154 -0
- package/editor/src/react/Editor/demos/Container.tsx +120 -0
- package/editor/src/react/Editor/demos/Toolbar.tsx +238 -0
- package/editor/src/react/Editor/demos/XmlModifier.tsx +101 -0
- package/editor/src/react/Editor/demos/actions.ts +29 -0
- package/editor/src/react/Editor/demos/data.json +546 -0
- package/editor/src/react/Editor/demos/disableMakrdownData.json +272 -0
- package/editor/src/react/Editor/demos/disableMarkdown.tsx +221 -0
- package/editor/src/react/Editor/demos/editable.tsx +54 -0
- package/editor/src/react/Editor/demos/index.tsx +379 -0
- package/editor/src/react/Editor/demos/pasteAsPlainText.tsx +365 -0
- package/editor/src/react/Editor/demos/useToolbarItems.tsx +195 -0
- package/editor/src/react/Editor/index.md +392 -0
- package/editor/src/react/Editor/index.ts +24 -0
- package/editor/src/react/Editor/type.ts +67 -0
- package/editor/src/react/Editor/utils.ts +8 -0
- package/editor/src/react/EditorProvider/demos/index.tsx +40 -0
- package/editor/src/react/EditorProvider/index.md +109 -0
- package/editor/src/react/EditorProvider/index.tsx +41 -0
- package/editor/src/react/FloatActions/FloatActions.tsx +55 -0
- package/editor/src/react/FloatActions/components/ActionItem.tsx +80 -0
- package/editor/src/react/FloatActions/components/ActionRender.tsx +58 -0
- package/editor/src/react/FloatActions/components/CollapsedActions.tsx +81 -0
- package/editor/src/react/FloatActions/demos/Collapse.tsx +74 -0
- package/editor/src/react/FloatActions/demos/index.tsx +69 -0
- package/editor/src/react/FloatActions/index.md +82 -0
- package/editor/src/react/FloatActions/index.ts +2 -0
- package/editor/src/react/FloatActions/style.ts +17 -0
- package/editor/src/react/FloatActions/type.ts +45 -0
- package/editor/src/react/FloatMenu/FloatMenu.tsx +55 -0
- package/editor/src/react/FloatMenu/index.ts +2 -0
- package/editor/src/react/FloatMenu/style.ts +26 -0
- package/editor/src/react/FloatMenu/type.ts +22 -0
- package/editor/src/react/SendButton/SendButton.tsx +153 -0
- package/editor/src/react/SendButton/components/SendIcon.tsx +35 -0
- package/editor/src/react/SendButton/components/StopIcon.tsx +57 -0
- package/editor/src/react/SendButton/demos/index.tsx +58 -0
- package/editor/src/react/SendButton/index.md +31 -0
- package/editor/src/react/SendButton/index.ts +2 -0
- package/editor/src/react/SendButton/style.ts +67 -0
- package/editor/src/react/SendButton/type.ts +9 -0
- package/editor/src/react/SlashMenu/SlashMenu.tsx +69 -0
- package/editor/src/react/SlashMenu/index.ts +2 -0
- package/editor/src/react/SlashMenu/type.ts +15 -0
- package/editor/src/react/hooks/useEditor.ts +8 -0
- package/editor/src/react/hooks/useEditorState/index.ts +612 -0
- package/editor/src/react/hooks/useEditorState/utils.ts +50 -0
- package/editor/src/react/hooks/useSize.ts +75 -0
- package/editor/src/react/index.ts +22 -0
- package/editor/src/renderer/LexicalDiff/demos/borderless.tsx +41 -0
- package/editor/src/renderer/LexicalDiff/demos/complex-document.tsx +44 -0
- package/editor/src/renderer/LexicalDiff/demos/diff-node.tsx +29 -0
- package/editor/src/renderer/LexicalDiff/demos/fixtures.ts +148 -0
- package/editor/src/renderer/LexicalDiff/demos/index.tsx +134 -0
- package/editor/src/renderer/LexicalDiff/demos/inline-modifications.tsx +32 -0
- package/editor/src/renderer/LexicalDiff/demos/list-diff.tsx +39 -0
- package/editor/src/renderer/LexicalDiff/demos/renderers.tsx +184 -0
- package/editor/src/renderer/LexicalDiff/index.md +62 -0
- package/editor/src/renderer/LexicalDiff.tsx +166 -0
- package/editor/src/renderer/LexicalRenderer/demos/compare.tsx +174 -0
- package/editor/src/renderer/LexicalRenderer/demos/data.json +1670 -0
- package/editor/src/renderer/LexicalRenderer/demos/fixture.json +886 -0
- package/editor/src/renderer/LexicalRenderer/demos/index.tsx +13 -0
- package/editor/src/renderer/LexicalRenderer/demos/mermaid.json +62 -0
- package/editor/src/renderer/LexicalRenderer/demos/paperParagraph.json +34 -0
- package/editor/src/renderer/LexicalRenderer/index.md +34 -0
- package/editor/src/renderer/LexicalRenderer.tsx +61 -0
- package/editor/src/renderer/__tests__/LexicalDiff.test.tsx +380 -0
- package/editor/src/renderer/__tests__/LexicalRenderer.test.tsx +439 -0
- package/editor/src/renderer/__tests__/benchmark.bench.tsx +86 -0
- package/editor/src/renderer/__tests__/render-builtin-node.test.tsx +110 -0
- package/editor/src/renderer/__tests__/render-text-node.test.tsx +72 -0
- package/editor/src/renderer/diff/compute.ts +584 -0
- package/editor/src/renderer/diff/style.ts +123 -0
- package/editor/src/renderer/diff/types.ts +32 -0
- package/editor/src/renderer/engine/render-builtin-node.tsx +312 -0
- package/editor/src/renderer/engine/render-text-node.tsx +47 -0
- package/editor/src/renderer/engine/render-tree.ts +74 -0
- package/editor/src/renderer/engine/shiki.ts +32 -0
- package/editor/src/renderer/engine/utils.ts +15 -0
- package/editor/src/renderer/index.ts +22 -0
- package/editor/src/renderer/nodes/index.ts +47 -0
- package/editor/src/renderer/renderers/codeblock.tsx +26 -0
- package/editor/src/renderer/renderers/file.tsx +30 -0
- package/editor/src/renderer/renderers/horizontalrule.tsx +27 -0
- package/editor/src/renderer/renderers/image.tsx +31 -0
- package/editor/src/renderer/renderers/index.ts +20 -0
- package/editor/src/renderer/renderers/math.tsx +20 -0
- package/editor/src/renderer/renderers/mention.tsx +12 -0
- package/editor/src/renderer/renderers/mermaid.tsx +21 -0
- package/editor/src/renderer/style.ts +63 -0
- package/editor/src/renderer/types.ts +35 -0
- package/editor/src/types/global.d.ts +88 -0
- package/editor/src/types/hotkey.ts +97 -0
- package/editor/src/types/index.ts +2 -0
- package/editor/src/types/kernel.ts +425 -0
- package/editor/src/types/locale.ts +25 -0
- package/editor/src/utils/cx.ts +3 -0
- package/editor/src/utils/debug.ts +306 -0
- package/editor/src/utils/hotkey/isHotkeyMatch.ts +14 -0
- package/editor/src/utils/hotkey/parseHotkeys.ts +56 -0
- package/editor/src/utils/hotkey/registerHotkey.ts +46 -0
- package/editor/src/utils/scrollIntoView.ts +47 -0
- package/editor/src/utils/updatePosition.ts +43 -0
- package/editor/src/utils/url.ts +56 -0
- package/emojilib/README.md +73 -0
- package/emojilib/index.json +1872 -0
- package/emojilib/package.json +27 -0
- package/eslint-config/dist/eslint-typegen.d.ts +10213 -0
- package/eslint-config/dist/index.cjs +600 -0
- package/eslint-config/dist/index.d.cts +98 -0
- package/eslint-config/dist/index.d.cts.map +1 -0
- package/eslint-config/dist/index.d.ts +98 -0
- package/eslint-config/dist/index.d.ts.map +1 -0
- package/eslint-config/dist/index.js +565 -0
- package/eslint-config/dist/index.js.map +1 -0
- package/fluent-emoji/es/FluentEmoji/index.d.ts +13 -0
- package/fluent-emoji/es/FluentEmoji/index.js +86 -0
- package/fluent-emoji/es/FluentEmoji/style.d.ts +3 -0
- package/fluent-emoji/es/FluentEmoji/style.js +9 -0
- package/fluent-emoji/es/getEmojiByCharacter/index.d.ts +2 -0
- package/fluent-emoji/es/getEmojiByCharacter/index.js +14 -0
- package/fluent-emoji/es/getFluentEmojiCDN/demo.d.ts +2 -0
- package/fluent-emoji/es/getFluentEmojiCDN/demo.js +46 -0
- package/fluent-emoji/es/getFluentEmojiCDN/index.d.ts +6 -0
- package/fluent-emoji/es/getFluentEmojiCDN/index.js +22 -0
- package/fluent-emoji/es/getFluentEmojiCDN/utils.d.ts +8 -0
- package/fluent-emoji/es/getFluentEmojiCDN/utils.js +68 -0
- package/fluent-emoji/es/index.d.ts +3 -0
- package/fluent-emoji/es/index.js +3 -0
- package/i18n-cli/dist/cli.js +22 -0
- package/i18n-cli/dist/index.cjs +1 -0
- package/i18n-cli/dist/index.d.cts +303 -0
- package/i18n-cli/dist/index.d.mts +303 -0
- package/i18n-cli/dist/index.mjs +1 -0
- package/icons/es/Ace/components/Avatar.d.ts +5 -0
- package/icons/es/Ace/components/Avatar.js +25 -0
- package/icons/es/Ace/components/Combine.d.ts +5 -0
- package/icons/es/Ace/components/Combine.js +26 -0
- package/icons/es/Ace/components/Mono.d.ts +3 -0
- package/icons/es/Ace/components/Mono.js +40 -0
- package/icons/es/Ace/components/Text.d.ts +3 -0
- package/icons/es/Ace/components/Text.js +39 -0
- package/icons/es/Ace/index.d.ts +13 -0
- package/icons/es/Ace/index.js +12 -0
- package/icons/es/Ace/style.d.ts +7 -0
- package/icons/es/Ace/style.js +9 -0
- package/icons/es/Adobe/components/Avatar.d.ts +5 -0
- package/icons/es/Adobe/components/Avatar.js +25 -0
- package/icons/es/Adobe/components/Color.d.ts +3 -0
- package/icons/es/Adobe/components/Color.js +39 -0
- package/icons/es/Adobe/components/Combine.d.ts +7 -0
- package/icons/es/Adobe/components/Combine.js +32 -0
- package/icons/es/Adobe/components/Mono.d.ts +3 -0
- package/icons/es/Adobe/components/Mono.js +40 -0
- package/icons/es/Adobe/components/Text.d.ts +3 -0
- package/icons/es/Adobe/components/Text.js +39 -0
- package/icons/es/Adobe/index.d.ts +15 -0
- package/icons/es/Adobe/index.js +14 -0
- package/icons/es/Adobe/style.d.ts +7 -0
- package/icons/es/Adobe/style.js +9 -0
- package/icons/es/AdobeFirefly/components/Avatar.d.ts +5 -0
- package/icons/es/AdobeFirefly/components/Avatar.js +25 -0
- package/icons/es/AdobeFirefly/components/Color.d.ts +3 -0
- package/icons/es/AdobeFirefly/components/Color.js +40 -0
- package/icons/es/AdobeFirefly/components/Combine.d.ts +5 -0
- package/icons/es/AdobeFirefly/components/Combine.js +32 -0
- package/icons/es/AdobeFirefly/components/Mono.d.ts +3 -0
- package/icons/es/AdobeFirefly/components/Mono.js +40 -0
- package/icons/es/AdobeFirefly/components/Text.d.ts +3 -0
- package/icons/es/AdobeFirefly/components/Text.js +39 -0
- package/icons/es/AdobeFirefly/index.d.ts +15 -0
- package/icons/es/AdobeFirefly/index.js +14 -0
- package/icons/es/AdobeFirefly/style.d.ts +7 -0
- package/icons/es/AdobeFirefly/style.js +9 -0
- package/icons/es/AgentVoice/components/Avatar.d.ts +5 -0
- package/icons/es/AgentVoice/components/Avatar.js +25 -0
- package/icons/es/AgentVoice/components/Color.d.ts +3 -0
- package/icons/es/AgentVoice/components/Color.js +39 -0
- package/icons/es/AgentVoice/components/Combine.d.ts +7 -0
- package/icons/es/AgentVoice/components/Combine.js +32 -0
- package/icons/es/AgentVoice/components/Mono.d.ts +3 -0
- package/icons/es/AgentVoice/components/Mono.js +40 -0
- package/icons/es/AgentVoice/components/Text.d.ts +3 -0
- package/icons/es/AgentVoice/components/Text.js +40 -0
- package/icons/es/AgentVoice/index.d.ts +15 -0
- package/icons/es/AgentVoice/index.js +14 -0
- package/icons/es/AgentVoice/style.d.ts +7 -0
- package/icons/es/AgentVoice/style.js +9 -0
- package/icons/es/Agui/components/Avatar.d.ts +5 -0
- package/icons/es/Agui/components/Avatar.js +25 -0
- package/icons/es/Agui/components/Combine.d.ts +5 -0
- package/icons/es/Agui/components/Combine.js +26 -0
- package/icons/es/Agui/components/Mono.d.ts +3 -0
- package/icons/es/Agui/components/Mono.js +41 -0
- package/icons/es/Agui/components/Text.d.ts +3 -0
- package/icons/es/Agui/components/Text.js +39 -0
- package/icons/es/Agui/index.d.ts +13 -0
- package/icons/es/Agui/index.js +12 -0
- package/icons/es/Agui/style.d.ts +7 -0
- package/icons/es/Agui/style.js +9 -0
- package/icons/es/Ai2/components/Avatar.d.ts +5 -0
- package/icons/es/Ai2/components/Avatar.js +25 -0
- package/icons/es/Ai2/components/Color.d.ts +3 -0
- package/icons/es/Ai2/components/Color.js +39 -0
- package/icons/es/Ai2/components/Combine.d.ts +7 -0
- package/icons/es/Ai2/components/Combine.js +32 -0
- package/icons/es/Ai2/components/Mono.d.ts +3 -0
- package/icons/es/Ai2/components/Mono.js +40 -0
- package/icons/es/Ai2/components/Text.d.ts +3 -0
- package/icons/es/Ai2/components/Text.js +39 -0
- package/icons/es/Ai2/index.d.ts +16 -0
- package/icons/es/Ai2/index.js +14 -0
- package/icons/es/Ai2/style.d.ts +7 -0
- package/icons/es/Ai2/style.js +9 -0
- package/icons/es/Ai21/components/Avatar.d.ts +5 -0
- package/icons/es/Ai21/components/Avatar.js +28 -0
- package/icons/es/Ai21/components/Brand.d.ts +1 -0
- package/icons/es/Ai21/components/Brand.js +1 -0
- package/icons/es/Ai21/components/BrandColor.d.ts +3 -0
- package/icons/es/Ai21/components/BrandColor.js +42 -0
- package/icons/es/Ai21/components/Combine.d.ts +7 -0
- package/icons/es/Ai21/components/Combine.js +29 -0
- package/icons/es/Ai21/components/Mono.d.ts +3 -0
- package/icons/es/Ai21/components/Mono.js +40 -0
- package/icons/es/Ai21/components/Text.d.ts +3 -0
- package/icons/es/Ai21/components/Text.js +41 -0
- package/icons/es/Ai21/index.d.ts +18 -0
- package/icons/es/Ai21/index.js +17 -0
- package/icons/es/Ai21/style.d.ts +8 -0
- package/icons/es/Ai21/style.js +10 -0
- package/icons/es/Ai302/components/Avatar.d.ts +5 -0
- package/icons/es/Ai302/components/Avatar.js +24 -0
- package/icons/es/Ai302/components/Color.d.ts +3 -0
- package/icons/es/Ai302/components/Color.js +45 -0
- package/icons/es/Ai302/components/Combine.d.ts +7 -0
- package/icons/es/Ai302/components/Combine.js +32 -0
- package/icons/es/Ai302/components/Inner.d.ts +3 -0
- package/icons/es/Ai302/components/Inner.js +40 -0
- package/icons/es/Ai302/components/Mono.d.ts +3 -0
- package/icons/es/Ai302/components/Mono.js +48 -0
- package/icons/es/Ai302/components/Text.d.ts +3 -0
- package/icons/es/Ai302/components/Text.js +40 -0
- package/icons/es/Ai302/index.d.ts +15 -0
- package/icons/es/Ai302/index.js +14 -0
- package/icons/es/Ai302/style.d.ts +7 -0
- package/icons/es/Ai302/style.js +9 -0
- package/icons/es/Ai360/components/Avatar.d.ts +5 -0
- package/icons/es/Ai360/components/Avatar.js +25 -0
- package/icons/es/Ai360/components/Color.d.ts +3 -0
- package/icons/es/Ai360/components/Color.js +134 -0
- package/icons/es/Ai360/components/Combine.d.ts +7 -0
- package/icons/es/Ai360/components/Combine.js +32 -0
- package/icons/es/Ai360/components/Mono.d.ts +3 -0
- package/icons/es/Ai360/components/Mono.js +49 -0
- package/icons/es/Ai360/components/Text.d.ts +3 -0
- package/icons/es/Ai360/components/Text.js +42 -0
- package/icons/es/Ai360/index.d.ts +16 -0
- package/icons/es/Ai360/index.js +15 -0
- package/icons/es/Ai360/style.d.ts +8 -0
- package/icons/es/Ai360/style.js +10 -0
- package/icons/es/AiHubMix/components/Avatar.d.ts +5 -0
- package/icons/es/AiHubMix/components/Avatar.js +25 -0
- package/icons/es/AiHubMix/components/Color.d.ts +3 -0
- package/icons/es/AiHubMix/components/Color.js +44 -0
- package/icons/es/AiHubMix/components/Combine.d.ts +7 -0
- package/icons/es/AiHubMix/components/Combine.js +32 -0
- package/icons/es/AiHubMix/components/Inner.d.ts +3 -0
- package/icons/es/AiHubMix/components/Inner.js +41 -0
- package/icons/es/AiHubMix/components/Mono.d.ts +3 -0
- package/icons/es/AiHubMix/components/Mono.js +41 -0
- package/icons/es/AiHubMix/components/Text.d.ts +3 -0
- package/icons/es/AiHubMix/components/Text.js +40 -0
- package/icons/es/AiHubMix/index.d.ts +15 -0
- package/icons/es/AiHubMix/index.js +14 -0
- package/icons/es/AiHubMix/style.d.ts +7 -0
- package/icons/es/AiHubMix/style.js +9 -0
- package/icons/es/AiMass/components/Avatar.d.ts +5 -0
- package/icons/es/AiMass/components/Avatar.js +25 -0
- package/icons/es/AiMass/components/Color.d.ts +3 -0
- package/icons/es/AiMass/components/Color.js +42 -0
- package/icons/es/AiMass/components/Combine.d.ts +7 -0
- package/icons/es/AiMass/components/Combine.js +32 -0
- package/icons/es/AiMass/components/Mono.d.ts +3 -0
- package/icons/es/AiMass/components/Mono.js +42 -0
- package/icons/es/AiMass/components/Text.d.ts +3 -0
- package/icons/es/AiMass/components/Text.js +50 -0
- package/icons/es/AiMass/index.d.ts +15 -0
- package/icons/es/AiMass/index.js +14 -0
- package/icons/es/AiMass/style.d.ts +7 -0
- package/icons/es/AiMass/style.js +9 -0
- package/icons/es/AiStudio/components/Avatar.d.ts +5 -0
- package/icons/es/AiStudio/components/Avatar.js +25 -0
- package/icons/es/AiStudio/components/Combine.d.ts +5 -0
- package/icons/es/AiStudio/components/Combine.js +26 -0
- package/icons/es/AiStudio/components/Mono.d.ts +3 -0
- package/icons/es/AiStudio/components/Mono.js +42 -0
- package/icons/es/AiStudio/components/Text.d.ts +3 -0
- package/icons/es/AiStudio/components/Text.js +39 -0
- package/icons/es/AiStudio/index.d.ts +13 -0
- package/icons/es/AiStudio/index.js +12 -0
- package/icons/es/AiStudio/style.d.ts +7 -0
- package/icons/es/AiStudio/style.js +9 -0
- package/icons/es/AionLabs/components/Avatar.d.ts +5 -0
- package/icons/es/AionLabs/components/Avatar.js +25 -0
- package/icons/es/AionLabs/components/Color.d.ts +3 -0
- package/icons/es/AionLabs/components/Color.js +216 -0
- package/icons/es/AionLabs/components/Combine.d.ts +7 -0
- package/icons/es/AionLabs/components/Combine.js +32 -0
- package/icons/es/AionLabs/components/Mono.d.ts +3 -0
- package/icons/es/AionLabs/components/Mono.js +42 -0
- package/icons/es/AionLabs/components/Text.d.ts +3 -0
- package/icons/es/AionLabs/components/Text.js +39 -0
- package/icons/es/AionLabs/index.d.ts +15 -0
- package/icons/es/AionLabs/index.js +14 -0
- package/icons/es/AionLabs/style.d.ts +7 -0
- package/icons/es/AionLabs/style.js +9 -0
- package/icons/es/AirJelly/components/Avatar.d.ts +5 -0
- package/icons/es/AirJelly/components/Avatar.js +25 -0
- package/icons/es/AirJelly/components/Color.d.ts +3 -0
- package/icons/es/AirJelly/components/Color.js +39 -0
- package/icons/es/AirJelly/components/Combine.d.ts +7 -0
- package/icons/es/AirJelly/components/Combine.js +32 -0
- package/icons/es/AirJelly/components/Mono.d.ts +3 -0
- package/icons/es/AirJelly/components/Mono.js +40 -0
- package/icons/es/AirJelly/components/Text.d.ts +3 -0
- package/icons/es/AirJelly/components/Text.js +39 -0
- package/icons/es/AirJelly/index.d.ts +15 -0
- package/icons/es/AirJelly/index.js +14 -0
- package/icons/es/AirJelly/style.d.ts +7 -0
- package/icons/es/AirJelly/style.js +9 -0
- package/icons/es/AkashChat/components/Avatar.d.ts +5 -0
- package/icons/es/AkashChat/components/Avatar.js +25 -0
- package/icons/es/AkashChat/components/Color.d.ts +3 -0
- package/icons/es/AkashChat/components/Color.js +65 -0
- package/icons/es/AkashChat/components/Combine.d.ts +7 -0
- package/icons/es/AkashChat/components/Combine.js +32 -0
- package/icons/es/AkashChat/components/Mono.d.ts +3 -0
- package/icons/es/AkashChat/components/Mono.js +47 -0
- package/icons/es/AkashChat/components/Text.d.ts +3 -0
- package/icons/es/AkashChat/components/Text.js +43 -0
- package/icons/es/AkashChat/index.d.ts +15 -0
- package/icons/es/AkashChat/index.js +14 -0
- package/icons/es/AkashChat/style.d.ts +7 -0
- package/icons/es/AkashChat/style.js +9 -0
- package/icons/es/AlephAlpha/components/Avatar.d.ts +5 -0
- package/icons/es/AlephAlpha/components/Avatar.js +25 -0
- package/icons/es/AlephAlpha/components/Combine.d.ts +5 -0
- package/icons/es/AlephAlpha/components/Combine.js +26 -0
- package/icons/es/AlephAlpha/components/Mono.d.ts +3 -0
- package/icons/es/AlephAlpha/components/Mono.js +40 -0
- package/icons/es/AlephAlpha/components/Text.d.ts +3 -0
- package/icons/es/AlephAlpha/components/Text.js +43 -0
- package/icons/es/AlephAlpha/index.d.ts +13 -0
- package/icons/es/AlephAlpha/index.js +12 -0
- package/icons/es/AlephAlpha/style.d.ts +7 -0
- package/icons/es/AlephAlpha/style.js +9 -0
- package/icons/es/Alibaba/components/Avatar.d.ts +5 -0
- package/icons/es/Alibaba/components/Avatar.js +25 -0
- package/icons/es/Alibaba/components/BrandColor.d.ts +3 -0
- package/icons/es/Alibaba/components/BrandColor.js +39 -0
- package/icons/es/Alibaba/components/BrandMono.d.ts +3 -0
- package/icons/es/Alibaba/components/BrandMono.js +39 -0
- package/icons/es/Alibaba/components/Color.d.ts +3 -0
- package/icons/es/Alibaba/components/Color.js +40 -0
- package/icons/es/Alibaba/components/Mono.d.ts +3 -0
- package/icons/es/Alibaba/components/Mono.js +40 -0
- package/icons/es/Alibaba/components/Text.d.ts +3 -0
- package/icons/es/Alibaba/components/Text.js +39 -0
- package/icons/es/Alibaba/components/TextCn.d.ts +3 -0
- package/icons/es/Alibaba/components/TextCn.js +39 -0
- package/icons/es/Alibaba/index.d.ts +19 -0
- package/icons/es/Alibaba/index.js +18 -0
- package/icons/es/Alibaba/style.d.ts +5 -0
- package/icons/es/Alibaba/style.js +7 -0
- package/icons/es/AlibabaCloud/components/Avatar.d.ts +5 -0
- package/icons/es/AlibabaCloud/components/Avatar.js +25 -0
- package/icons/es/AlibabaCloud/components/Color.d.ts +3 -0
- package/icons/es/AlibabaCloud/components/Color.js +42 -0
- package/icons/es/AlibabaCloud/components/Combine.d.ts +7 -0
- package/icons/es/AlibabaCloud/components/Combine.js +32 -0
- package/icons/es/AlibabaCloud/components/Mono.d.ts +3 -0
- package/icons/es/AlibabaCloud/components/Mono.js +42 -0
- package/icons/es/AlibabaCloud/components/Text.d.ts +3 -0
- package/icons/es/AlibabaCloud/components/Text.js +39 -0
- package/icons/es/AlibabaCloud/components/TextCn.d.ts +3 -0
- package/icons/es/AlibabaCloud/components/TextCn.js +47 -0
- package/icons/es/AlibabaCloud/index.d.ts +17 -0
- package/icons/es/AlibabaCloud/index.js +16 -0
- package/icons/es/AlibabaCloud/style.d.ts +7 -0
- package/icons/es/AlibabaCloud/style.js +9 -0
- package/icons/es/Amp/components/Avatar.d.ts +5 -0
- package/icons/es/Amp/components/Avatar.js +25 -0
- package/icons/es/Amp/components/Color.d.ts +3 -0
- package/icons/es/Amp/components/Color.js +45 -0
- package/icons/es/Amp/components/Combine.d.ts +7 -0
- package/icons/es/Amp/components/Combine.js +32 -0
- package/icons/es/Amp/components/Mono.d.ts +3 -0
- package/icons/es/Amp/components/Mono.js +44 -0
- package/icons/es/Amp/components/Text.d.ts +3 -0
- package/icons/es/Amp/components/Text.js +39 -0
- package/icons/es/Amp/index.d.ts +15 -0
- package/icons/es/Amp/index.js +14 -0
- package/icons/es/Amp/style.d.ts +7 -0
- package/icons/es/Amp/style.js +9 -0
- package/icons/es/AntGroup/components/Avatar.d.ts +5 -0
- package/icons/es/AntGroup/components/Avatar.js +25 -0
- package/icons/es/AntGroup/components/BrandColor.d.ts +3 -0
- package/icons/es/AntGroup/components/BrandColor.js +119 -0
- package/icons/es/AntGroup/components/BrandMono.d.ts +3 -0
- package/icons/es/AntGroup/components/BrandMono.js +45 -0
- package/icons/es/AntGroup/components/Color.d.ts +3 -0
- package/icons/es/AntGroup/components/Color.js +110 -0
- package/icons/es/AntGroup/components/Mono.d.ts +3 -0
- package/icons/es/AntGroup/components/Mono.js +40 -0
- package/icons/es/AntGroup/components/Text.d.ts +3 -0
- package/icons/es/AntGroup/components/Text.js +39 -0
- package/icons/es/AntGroup/components/TextCn.d.ts +3 -0
- package/icons/es/AntGroup/components/TextCn.js +39 -0
- package/icons/es/AntGroup/index.d.ts +19 -0
- package/icons/es/AntGroup/index.js +18 -0
- package/icons/es/AntGroup/style.d.ts +5 -0
- package/icons/es/AntGroup/style.js +7 -0
- package/icons/es/Anthropic/components/Avatar.d.ts +5 -0
- package/icons/es/Anthropic/components/Avatar.js +25 -0
- package/icons/es/Anthropic/components/Mono.d.ts +3 -0
- package/icons/es/Anthropic/components/Mono.js +40 -0
- package/icons/es/Anthropic/components/Text.d.ts +3 -0
- package/icons/es/Anthropic/components/Text.js +39 -0
- package/icons/es/Anthropic/index.d.ts +11 -0
- package/icons/es/Anthropic/index.js +10 -0
- package/icons/es/Anthropic/style.d.ts +7 -0
- package/icons/es/Anthropic/style.js +9 -0
- package/icons/es/Antigravity/components/Avatar.d.ts +5 -0
- package/icons/es/Antigravity/components/Avatar.js +25 -0
- package/icons/es/Antigravity/components/Color.d.ts +3 -0
- package/icons/es/Antigravity/components/Color.js +348 -0
- package/icons/es/Antigravity/components/Combine.d.ts +7 -0
- package/icons/es/Antigravity/components/Combine.js +32 -0
- package/icons/es/Antigravity/components/Mono.d.ts +3 -0
- package/icons/es/Antigravity/components/Mono.js +40 -0
- package/icons/es/Antigravity/components/Text.d.ts +3 -0
- package/icons/es/Antigravity/components/Text.js +39 -0
- package/icons/es/Antigravity/index.d.ts +16 -0
- package/icons/es/Antigravity/index.js +14 -0
- package/icons/es/Antigravity/style.d.ts +7 -0
- package/icons/es/Antigravity/style.js +9 -0
- package/icons/es/Anyscale/components/Avatar.d.ts +5 -0
- package/icons/es/Anyscale/components/Avatar.js +25 -0
- package/icons/es/Anyscale/components/Color.d.ts +3 -0
- package/icons/es/Anyscale/components/Color.js +39 -0
- package/icons/es/Anyscale/components/Combine.d.ts +7 -0
- package/icons/es/Anyscale/components/Combine.js +32 -0
- package/icons/es/Anyscale/components/Mono.d.ts +3 -0
- package/icons/es/Anyscale/components/Mono.js +40 -0
- package/icons/es/Anyscale/components/Text.d.ts +3 -0
- package/icons/es/Anyscale/components/Text.js +39 -0
- package/icons/es/Anyscale/index.d.ts +15 -0
- package/icons/es/Anyscale/index.js +14 -0
- package/icons/es/Anyscale/style.d.ts +7 -0
- package/icons/es/Anyscale/style.js +9 -0
- package/icons/es/Apertis/components/Avatar.d.ts +5 -0
- package/icons/es/Apertis/components/Avatar.js +25 -0
- package/icons/es/Apertis/components/Color.d.ts +3 -0
- package/icons/es/Apertis/components/Color.js +136 -0
- package/icons/es/Apertis/components/Combine.d.ts +7 -0
- package/icons/es/Apertis/components/Combine.js +32 -0
- package/icons/es/Apertis/components/Mono.d.ts +3 -0
- package/icons/es/Apertis/components/Mono.js +49 -0
- package/icons/es/Apertis/components/Text.d.ts +3 -0
- package/icons/es/Apertis/components/Text.js +39 -0
- package/icons/es/Apertis/index.d.ts +15 -0
- package/icons/es/Apertis/index.js +14 -0
- package/icons/es/Apertis/style.d.ts +7 -0
- package/icons/es/Apertis/style.js +9 -0
- package/icons/es/Apple/components/Avatar.d.ts +5 -0
- package/icons/es/Apple/components/Avatar.js +25 -0
- package/icons/es/Apple/components/Combine.d.ts +5 -0
- package/icons/es/Apple/components/Combine.js +26 -0
- package/icons/es/Apple/components/Mono.d.ts +3 -0
- package/icons/es/Apple/components/Mono.js +40 -0
- package/icons/es/Apple/components/Text.d.ts +3 -0
- package/icons/es/Apple/components/Text.js +39 -0
- package/icons/es/Apple/index.d.ts +13 -0
- package/icons/es/Apple/index.js +12 -0
- package/icons/es/Apple/style.d.ts +7 -0
- package/icons/es/Apple/style.js +9 -0
- package/icons/es/Arcee/components/Avatar.d.ts +5 -0
- package/icons/es/Arcee/components/Avatar.js +25 -0
- package/icons/es/Arcee/components/Color.d.ts +3 -0
- package/icons/es/Arcee/components/Color.js +39 -0
- package/icons/es/Arcee/components/Combine.d.ts +7 -0
- package/icons/es/Arcee/components/Combine.js +32 -0
- package/icons/es/Arcee/components/Mono.d.ts +3 -0
- package/icons/es/Arcee/components/Mono.js +40 -0
- package/icons/es/Arcee/components/Text.d.ts +3 -0
- package/icons/es/Arcee/components/Text.js +39 -0
- package/icons/es/Arcee/index.d.ts +16 -0
- package/icons/es/Arcee/index.js +14 -0
- package/icons/es/Arcee/style.d.ts +7 -0
- package/icons/es/Arcee/style.js +9 -0
- package/icons/es/AskVerdict/components/Avatar.d.ts +5 -0
- package/icons/es/AskVerdict/components/Avatar.js +25 -0
- package/icons/es/AskVerdict/components/Color.d.ts +3 -0
- package/icons/es/AskVerdict/components/Color.js +77 -0
- package/icons/es/AskVerdict/components/Combine.d.ts +7 -0
- package/icons/es/AskVerdict/components/Combine.js +32 -0
- package/icons/es/AskVerdict/components/Mono.d.ts +3 -0
- package/icons/es/AskVerdict/components/Mono.js +52 -0
- package/icons/es/AskVerdict/components/Text.d.ts +3 -0
- package/icons/es/AskVerdict/components/Text.js +39 -0
- package/icons/es/AskVerdict/index.d.ts +15 -0
- package/icons/es/AskVerdict/index.js +14 -0
- package/icons/es/AskVerdict/style.d.ts +7 -0
- package/icons/es/AskVerdict/style.js +9 -0
- package/icons/es/AssemblyAI/components/Avatar.d.ts +5 -0
- package/icons/es/AssemblyAI/components/Avatar.js +25 -0
- package/icons/es/AssemblyAI/components/Color.d.ts +3 -0
- package/icons/es/AssemblyAI/components/Color.js +42 -0
- package/icons/es/AssemblyAI/components/Combine.d.ts +7 -0
- package/icons/es/AssemblyAI/components/Combine.js +32 -0
- package/icons/es/AssemblyAI/components/Mono.d.ts +3 -0
- package/icons/es/AssemblyAI/components/Mono.js +42 -0
- package/icons/es/AssemblyAI/components/Text.d.ts +3 -0
- package/icons/es/AssemblyAI/components/Text.js +39 -0
- package/icons/es/AssemblyAI/index.d.ts +15 -0
- package/icons/es/AssemblyAI/index.js +14 -0
- package/icons/es/AssemblyAI/style.d.ts +7 -0
- package/icons/es/AssemblyAI/style.js +9 -0
- package/icons/es/AtlasCloud/components/Avatar.d.ts +5 -0
- package/icons/es/AtlasCloud/components/Avatar.js +25 -0
- package/icons/es/AtlasCloud/components/Combine.d.ts +4 -0
- package/icons/es/AtlasCloud/components/Combine.js +24 -0
- package/icons/es/AtlasCloud/components/Mono.d.ts +3 -0
- package/icons/es/AtlasCloud/components/Mono.js +40 -0
- package/icons/es/AtlasCloud/components/Text.d.ts +3 -0
- package/icons/es/AtlasCloud/components/Text.js +40 -0
- package/icons/es/AtlasCloud/index.d.ts +13 -0
- package/icons/es/AtlasCloud/index.js +12 -0
- package/icons/es/AtlasCloud/style.d.ts +7 -0
- package/icons/es/AtlasCloud/style.js +7 -0
- package/icons/es/Automatic/components/Avatar.d.ts +5 -0
- package/icons/es/Automatic/components/Avatar.js +25 -0
- package/icons/es/Automatic/components/Color.d.ts +3 -0
- package/icons/es/Automatic/components/Color.js +51 -0
- package/icons/es/Automatic/components/Combine.d.ts +7 -0
- package/icons/es/Automatic/components/Combine.js +32 -0
- package/icons/es/Automatic/components/Mono.d.ts +3 -0
- package/icons/es/Automatic/components/Mono.js +52 -0
- package/icons/es/Automatic/components/Text.d.ts +1 -0
- package/icons/es/Automatic/components/Text.js +1 -0
- package/icons/es/Automatic/index.d.ts +15 -0
- package/icons/es/Automatic/index.js +14 -0
- package/icons/es/Automatic/style.d.ts +7 -0
- package/icons/es/Automatic/style.js +9 -0
- package/icons/es/Aws/components/Avatar.d.ts +5 -0
- package/icons/es/Aws/components/Avatar.js +25 -0
- package/icons/es/Aws/components/BrandColor.d.ts +3 -0
- package/icons/es/Aws/components/BrandColor.js +42 -0
- package/icons/es/Aws/components/BrandMono.d.ts +3 -0
- package/icons/es/Aws/components/BrandMono.js +41 -0
- package/icons/es/Aws/components/Color.d.ts +3 -0
- package/icons/es/Aws/components/Color.js +43 -0
- package/icons/es/Aws/components/Combine.d.ts +7 -0
- package/icons/es/Aws/components/Combine.js +32 -0
- package/icons/es/Aws/components/Mono.d.ts +3 -0
- package/icons/es/Aws/components/Mono.js +42 -0
- package/icons/es/Aws/components/Text.d.ts +3 -0
- package/icons/es/Aws/components/Text.js +39 -0
- package/icons/es/Aws/index.d.ts +19 -0
- package/icons/es/Aws/index.js +18 -0
- package/icons/es/Aws/style.d.ts +7 -0
- package/icons/es/Aws/style.js +9 -0
- package/icons/es/Aya/components/Avatar.d.ts +5 -0
- package/icons/es/Aya/components/Avatar.js +25 -0
- package/icons/es/Aya/components/Color.d.ts +3 -0
- package/icons/es/Aya/components/Color.js +39 -0
- package/icons/es/Aya/components/Combine.d.ts +7 -0
- package/icons/es/Aya/components/Combine.js +32 -0
- package/icons/es/Aya/components/Mono.d.ts +3 -0
- package/icons/es/Aya/components/Mono.js +40 -0
- package/icons/es/Aya/components/Text.d.ts +3 -0
- package/icons/es/Aya/components/Text.js +39 -0
- package/icons/es/Aya/index.d.ts +15 -0
- package/icons/es/Aya/index.js +14 -0
- package/icons/es/Aya/style.d.ts +7 -0
- package/icons/es/Aya/style.js +9 -0
- package/icons/es/Azure/components/Avatar.d.ts +5 -0
- package/icons/es/Azure/components/Avatar.js +25 -0
- package/icons/es/Azure/components/Color.d.ts +3 -0
- package/icons/es/Azure/components/Color.js +110 -0
- package/icons/es/Azure/components/Combine.d.ts +7 -0
- package/icons/es/Azure/components/Combine.js +32 -0
- package/icons/es/Azure/components/Mono.d.ts +3 -0
- package/icons/es/Azure/components/Mono.js +46 -0
- package/icons/es/Azure/components/Text.d.ts +3 -0
- package/icons/es/Azure/components/Text.js +39 -0
- package/icons/es/Azure/index.d.ts +15 -0
- package/icons/es/Azure/index.js +14 -0
- package/icons/es/Azure/style.d.ts +7 -0
- package/icons/es/Azure/style.js +9 -0
- package/icons/es/AzureAI/components/Avatar.d.ts +5 -0
- package/icons/es/AzureAI/components/Avatar.js +25 -0
- package/icons/es/AzureAI/components/Color.d.ts +3 -0
- package/icons/es/AzureAI/components/Color.js +177 -0
- package/icons/es/AzureAI/components/Combine.d.ts +7 -0
- package/icons/es/AzureAI/components/Combine.js +32 -0
- package/icons/es/AzureAI/components/Mono.d.ts +3 -0
- package/icons/es/AzureAI/components/Mono.js +47 -0
- package/icons/es/AzureAI/components/Text.d.ts +3 -0
- package/icons/es/AzureAI/components/Text.js +43 -0
- package/icons/es/AzureAI/index.d.ts +15 -0
- package/icons/es/AzureAI/index.js +14 -0
- package/icons/es/AzureAI/style.d.ts +7 -0
- package/icons/es/AzureAI/style.js +9 -0
- package/icons/es/BAAI/components/Avatar.d.ts +5 -0
- package/icons/es/BAAI/components/Avatar.js +25 -0
- package/icons/es/BAAI/components/Combine.d.ts +5 -0
- package/icons/es/BAAI/components/Combine.js +26 -0
- package/icons/es/BAAI/components/Mono.d.ts +3 -0
- package/icons/es/BAAI/components/Mono.js +41 -0
- package/icons/es/BAAI/components/Text.d.ts +3 -0
- package/icons/es/BAAI/components/Text.js +39 -0
- package/icons/es/BAAI/index.d.ts +13 -0
- package/icons/es/BAAI/index.js +12 -0
- package/icons/es/BAAI/style.d.ts +7 -0
- package/icons/es/BAAI/style.js +9 -0
- package/icons/es/Baichuan/components/Avatar.d.ts +5 -0
- package/icons/es/Baichuan/components/Avatar.js +25 -0
- package/icons/es/Baichuan/components/Color.d.ts +3 -0
- package/icons/es/Baichuan/components/Color.js +59 -0
- package/icons/es/Baichuan/components/Combine.d.ts +7 -0
- package/icons/es/Baichuan/components/Combine.js +36 -0
- package/icons/es/Baichuan/components/Mono.d.ts +3 -0
- package/icons/es/Baichuan/components/Mono.js +40 -0
- package/icons/es/Baichuan/components/Text.d.ts +3 -0
- package/icons/es/Baichuan/components/Text.js +39 -0
- package/icons/es/Baichuan/index.d.ts +16 -0
- package/icons/es/Baichuan/index.js +15 -0
- package/icons/es/Baichuan/style.d.ts +8 -0
- package/icons/es/Baichuan/style.js +10 -0
- package/icons/es/Baidu/components/Avatar.d.ts +5 -0
- package/icons/es/Baidu/components/Avatar.js +25 -0
- package/icons/es/Baidu/components/BrandColor.d.ts +3 -0
- package/icons/es/Baidu/components/BrandColor.js +41 -0
- package/icons/es/Baidu/components/BrandMono.d.ts +3 -0
- package/icons/es/Baidu/components/BrandMono.js +41 -0
- package/icons/es/Baidu/components/Color.d.ts +3 -0
- package/icons/es/Baidu/components/Color.js +40 -0
- package/icons/es/Baidu/components/Mono.d.ts +3 -0
- package/icons/es/Baidu/components/Mono.js +40 -0
- package/icons/es/Baidu/components/Text.d.ts +3 -0
- package/icons/es/Baidu/components/Text.js +39 -0
- package/icons/es/Baidu/components/TextCn.d.ts +3 -0
- package/icons/es/Baidu/components/TextCn.js +39 -0
- package/icons/es/Baidu/index.d.ts +19 -0
- package/icons/es/Baidu/index.js +18 -0
- package/icons/es/Baidu/style.d.ts +5 -0
- package/icons/es/Baidu/style.js +7 -0
- package/icons/es/BaiduCloud/components/Avatar.d.ts +5 -0
- package/icons/es/BaiduCloud/components/Avatar.js +25 -0
- package/icons/es/BaiduCloud/components/Color.d.ts +3 -0
- package/icons/es/BaiduCloud/components/Color.js +45 -0
- package/icons/es/BaiduCloud/components/Combine.d.ts +7 -0
- package/icons/es/BaiduCloud/components/Combine.js +32 -0
- package/icons/es/BaiduCloud/components/Mono.d.ts +3 -0
- package/icons/es/BaiduCloud/components/Mono.js +44 -0
- package/icons/es/BaiduCloud/components/Text.d.ts +3 -0
- package/icons/es/BaiduCloud/components/Text.js +52 -0
- package/icons/es/BaiduCloud/index.d.ts +15 -0
- package/icons/es/BaiduCloud/index.js +14 -0
- package/icons/es/BaiduCloud/style.d.ts +7 -0
- package/icons/es/BaiduCloud/style.js +9 -0
- package/icons/es/Bailian/components/Avatar.d.ts +5 -0
- package/icons/es/Bailian/components/Avatar.js +25 -0
- package/icons/es/Bailian/components/Color.d.ts +3 -0
- package/icons/es/Bailian/components/Color.js +57 -0
- package/icons/es/Bailian/components/Combine.d.ts +7 -0
- package/icons/es/Bailian/components/Combine.js +32 -0
- package/icons/es/Bailian/components/Mono.d.ts +3 -0
- package/icons/es/Bailian/components/Mono.js +57 -0
- package/icons/es/Bailian/components/Text.d.ts +3 -0
- package/icons/es/Bailian/components/Text.js +39 -0
- package/icons/es/Bailian/index.d.ts +15 -0
- package/icons/es/Bailian/index.js +14 -0
- package/icons/es/Bailian/style.d.ts +7 -0
- package/icons/es/Bailian/style.js +9 -0
- package/icons/es/Baseten/components/Avatar.d.ts +5 -0
- package/icons/es/Baseten/components/Avatar.js +25 -0
- package/icons/es/Baseten/components/Combine.d.ts +5 -0
- package/icons/es/Baseten/components/Combine.js +26 -0
- package/icons/es/Baseten/components/Mono.d.ts +3 -0
- package/icons/es/Baseten/components/Mono.js +40 -0
- package/icons/es/Baseten/components/Text.d.ts +3 -0
- package/icons/es/Baseten/components/Text.js +39 -0
- package/icons/es/Baseten/index.d.ts +13 -0
- package/icons/es/Baseten/index.js +12 -0
- package/icons/es/Baseten/style.d.ts +7 -0
- package/icons/es/Baseten/style.js +9 -0
- package/icons/es/Bedrock/components/Avatar.d.ts +5 -0
- package/icons/es/Bedrock/components/Avatar.js +25 -0
- package/icons/es/Bedrock/components/Color.d.ts +3 -0
- package/icons/es/Bedrock/components/Color.js +62 -0
- package/icons/es/Bedrock/components/Combine.d.ts +7 -0
- package/icons/es/Bedrock/components/Combine.js +32 -0
- package/icons/es/Bedrock/components/Mono.d.ts +3 -0
- package/icons/es/Bedrock/components/Mono.js +40 -0
- package/icons/es/Bedrock/components/Text.d.ts +3 -0
- package/icons/es/Bedrock/components/Text.js +39 -0
- package/icons/es/Bedrock/index.d.ts +16 -0
- package/icons/es/Bedrock/index.js +15 -0
- package/icons/es/Bedrock/style.d.ts +8 -0
- package/icons/es/Bedrock/style.js +10 -0
- package/icons/es/Bfl/components/Avatar.d.ts +5 -0
- package/icons/es/Bfl/components/Avatar.js +25 -0
- package/icons/es/Bfl/components/Combine.d.ts +5 -0
- package/icons/es/Bfl/components/Combine.js +26 -0
- package/icons/es/Bfl/components/Mono.d.ts +3 -0
- package/icons/es/Bfl/components/Mono.js +40 -0
- package/icons/es/Bfl/components/Text.d.ts +3 -0
- package/icons/es/Bfl/components/Text.js +39 -0
- package/icons/es/Bfl/index.d.ts +13 -0
- package/icons/es/Bfl/index.js +12 -0
- package/icons/es/Bfl/style.d.ts +7 -0
- package/icons/es/Bfl/style.js +9 -0
- package/icons/es/Bilibili/components/Avatar.d.ts +5 -0
- package/icons/es/Bilibili/components/Avatar.js +25 -0
- package/icons/es/Bilibili/components/Color.d.ts +3 -0
- package/icons/es/Bilibili/components/Color.js +41 -0
- package/icons/es/Bilibili/components/Combine.d.ts +7 -0
- package/icons/es/Bilibili/components/Combine.js +32 -0
- package/icons/es/Bilibili/components/Mono.d.ts +3 -0
- package/icons/es/Bilibili/components/Mono.js +41 -0
- package/icons/es/Bilibili/components/Text.d.ts +3 -0
- package/icons/es/Bilibili/components/Text.js +39 -0
- package/icons/es/Bilibili/index.d.ts +15 -0
- package/icons/es/Bilibili/index.js +14 -0
- package/icons/es/Bilibili/style.d.ts +7 -0
- package/icons/es/Bilibili/style.js +9 -0
- package/icons/es/BilibiliIndex/components/Avatar.d.ts +5 -0
- package/icons/es/BilibiliIndex/components/Avatar.js +25 -0
- package/icons/es/BilibiliIndex/components/Combine.d.ts +5 -0
- package/icons/es/BilibiliIndex/components/Combine.js +26 -0
- package/icons/es/BilibiliIndex/components/Mono.d.ts +3 -0
- package/icons/es/BilibiliIndex/components/Mono.js +40 -0
- package/icons/es/BilibiliIndex/components/Text.d.ts +3 -0
- package/icons/es/BilibiliIndex/components/Text.js +39 -0
- package/icons/es/BilibiliIndex/index.d.ts +13 -0
- package/icons/es/BilibiliIndex/index.js +12 -0
- package/icons/es/BilibiliIndex/style.d.ts +7 -0
- package/icons/es/BilibiliIndex/style.js +9 -0
- package/icons/es/Bing/components/Avatar.d.ts +5 -0
- package/icons/es/Bing/components/Avatar.js +28 -0
- package/icons/es/Bing/components/Color.d.ts +3 -0
- package/icons/es/Bing/components/Color.js +104 -0
- package/icons/es/Bing/components/Combine.d.ts +7 -0
- package/icons/es/Bing/components/Combine.js +32 -0
- package/icons/es/Bing/components/Mono.d.ts +3 -0
- package/icons/es/Bing/components/Mono.js +40 -0
- package/icons/es/Bing/components/Text.d.ts +3 -0
- package/icons/es/Bing/components/Text.js +39 -0
- package/icons/es/Bing/index.d.ts +16 -0
- package/icons/es/Bing/index.js +15 -0
- package/icons/es/Bing/style.d.ts +8 -0
- package/icons/es/Bing/style.js +10 -0
- package/icons/es/BriaAI/components/Avatar.d.ts +5 -0
- package/icons/es/BriaAI/components/Avatar.js +25 -0
- package/icons/es/BriaAI/components/Color.d.ts +3 -0
- package/icons/es/BriaAI/components/Color.js +57 -0
- package/icons/es/BriaAI/components/Combine.d.ts +7 -0
- package/icons/es/BriaAI/components/Combine.js +32 -0
- package/icons/es/BriaAI/components/Mono.d.ts +3 -0
- package/icons/es/BriaAI/components/Mono.js +52 -0
- package/icons/es/BriaAI/components/Text.d.ts +3 -0
- package/icons/es/BriaAI/components/Text.js +42 -0
- package/icons/es/BriaAI/index.d.ts +15 -0
- package/icons/es/BriaAI/index.js +14 -0
- package/icons/es/BriaAI/style.d.ts +7 -0
- package/icons/es/BriaAI/style.js +9 -0
- package/icons/es/BurnCloud/components/Avatar.d.ts +5 -0
- package/icons/es/BurnCloud/components/Avatar.js +25 -0
- package/icons/es/BurnCloud/components/Color.d.ts +3 -0
- package/icons/es/BurnCloud/components/Color.js +57 -0
- package/icons/es/BurnCloud/components/Combine.d.ts +7 -0
- package/icons/es/BurnCloud/components/Combine.js +32 -0
- package/icons/es/BurnCloud/components/Mono.d.ts +3 -0
- package/icons/es/BurnCloud/components/Mono.js +40 -0
- package/icons/es/BurnCloud/components/Text.d.ts +3 -0
- package/icons/es/BurnCloud/components/Text.js +40 -0
- package/icons/es/BurnCloud/index.d.ts +15 -0
- package/icons/es/BurnCloud/index.js +14 -0
- package/icons/es/BurnCloud/style.d.ts +7 -0
- package/icons/es/BurnCloud/style.js +9 -0
- package/icons/es/ByteDance/components/Avatar.d.ts +5 -0
- package/icons/es/ByteDance/components/Avatar.js +25 -0
- package/icons/es/ByteDance/components/BrandColor.d.ts +3 -0
- package/icons/es/ByteDance/components/BrandColor.js +54 -0
- package/icons/es/ByteDance/components/BrandMono.d.ts +3 -0
- package/icons/es/ByteDance/components/BrandMono.js +47 -0
- package/icons/es/ByteDance/components/Color.d.ts +3 -0
- package/icons/es/ByteDance/components/Color.js +51 -0
- package/icons/es/ByteDance/components/Mono.d.ts +3 -0
- package/icons/es/ByteDance/components/Mono.js +46 -0
- package/icons/es/ByteDance/components/Text.d.ts +3 -0
- package/icons/es/ByteDance/components/Text.js +39 -0
- package/icons/es/ByteDance/components/TextCn.d.ts +3 -0
- package/icons/es/ByteDance/components/TextCn.js +39 -0
- package/icons/es/ByteDance/index.d.ts +19 -0
- package/icons/es/ByteDance/index.js +18 -0
- package/icons/es/ByteDance/style.d.ts +5 -0
- package/icons/es/ByteDance/style.js +7 -0
- package/icons/es/CapCut/components/Avatar.d.ts +5 -0
- package/icons/es/CapCut/components/Avatar.js +25 -0
- package/icons/es/CapCut/components/Combine.d.ts +5 -0
- package/icons/es/CapCut/components/Combine.js +29 -0
- package/icons/es/CapCut/components/Mono.d.ts +3 -0
- package/icons/es/CapCut/components/Mono.js +40 -0
- package/icons/es/CapCut/components/Text.d.ts +3 -0
- package/icons/es/CapCut/components/Text.js +39 -0
- package/icons/es/CapCut/index.d.ts +13 -0
- package/icons/es/CapCut/index.js +12 -0
- package/icons/es/CapCut/style.d.ts +7 -0
- package/icons/es/CapCut/style.js +9 -0
- package/icons/es/CentML/components/Avatar.d.ts +5 -0
- package/icons/es/CentML/components/Avatar.js +25 -0
- package/icons/es/CentML/components/BrandColor.d.ts +3 -0
- package/icons/es/CentML/components/BrandColor.js +45 -0
- package/icons/es/CentML/components/BrandMono.d.ts +3 -0
- package/icons/es/CentML/components/BrandMono.js +46 -0
- package/icons/es/CentML/components/Color.d.ts +3 -0
- package/icons/es/CentML/components/Color.js +42 -0
- package/icons/es/CentML/components/Combine.d.ts +7 -0
- package/icons/es/CentML/components/Combine.js +30 -0
- package/icons/es/CentML/components/Mono.d.ts +3 -0
- package/icons/es/CentML/components/Mono.js +42 -0
- package/icons/es/CentML/components/Text.d.ts +3 -0
- package/icons/es/CentML/components/Text.js +46 -0
- package/icons/es/CentML/index.d.ts +19 -0
- package/icons/es/CentML/index.js +18 -0
- package/icons/es/CentML/style.d.ts +7 -0
- package/icons/es/CentML/style.js +9 -0
- package/icons/es/Cerebras/components/Avatar.d.ts +5 -0
- package/icons/es/Cerebras/components/Avatar.js +25 -0
- package/icons/es/Cerebras/components/BrandColor.d.ts +3 -0
- package/icons/es/Cerebras/components/BrandColor.js +45 -0
- package/icons/es/Cerebras/components/BrandMono.d.ts +3 -0
- package/icons/es/Cerebras/components/BrandMono.js +44 -0
- package/icons/es/Cerebras/components/Color.d.ts +3 -0
- package/icons/es/Cerebras/components/Color.js +44 -0
- package/icons/es/Cerebras/components/Combine.d.ts +7 -0
- package/icons/es/Cerebras/components/Combine.js +30 -0
- package/icons/es/Cerebras/components/Mono.d.ts +3 -0
- package/icons/es/Cerebras/components/Mono.js +43 -0
- package/icons/es/Cerebras/components/Text.d.ts +3 -0
- package/icons/es/Cerebras/components/Text.js +52 -0
- package/icons/es/Cerebras/index.d.ts +19 -0
- package/icons/es/Cerebras/index.js +18 -0
- package/icons/es/Cerebras/style.d.ts +7 -0
- package/icons/es/Cerebras/style.js +9 -0
- package/icons/es/ChatGLM/components/Avatar.d.ts +5 -0
- package/icons/es/ChatGLM/components/Avatar.js +28 -0
- package/icons/es/ChatGLM/components/Color.d.ts +3 -0
- package/icons/es/ChatGLM/components/Color.js +59 -0
- package/icons/es/ChatGLM/components/Combine.d.ts +7 -0
- package/icons/es/ChatGLM/components/Combine.js +32 -0
- package/icons/es/ChatGLM/components/Mono.d.ts +3 -0
- package/icons/es/ChatGLM/components/Mono.js +40 -0
- package/icons/es/ChatGLM/components/Text.d.ts +3 -0
- package/icons/es/ChatGLM/components/Text.js +39 -0
- package/icons/es/ChatGLM/index.d.ts +16 -0
- package/icons/es/ChatGLM/index.js +15 -0
- package/icons/es/ChatGLM/style.d.ts +8 -0
- package/icons/es/ChatGLM/style.js +10 -0
- package/icons/es/CherryStudio/components/Avatar.d.ts +5 -0
- package/icons/es/CherryStudio/components/Avatar.js +25 -0
- package/icons/es/CherryStudio/components/Color.d.ts +3 -0
- package/icons/es/CherryStudio/components/Color.js +45 -0
- package/icons/es/CherryStudio/components/Combine.d.ts +7 -0
- package/icons/es/CherryStudio/components/Combine.js +32 -0
- package/icons/es/CherryStudio/components/Mono.d.ts +3 -0
- package/icons/es/CherryStudio/components/Mono.js +44 -0
- package/icons/es/CherryStudio/components/Text.d.ts +3 -0
- package/icons/es/CherryStudio/components/Text.js +57 -0
- package/icons/es/CherryStudio/index.d.ts +15 -0
- package/icons/es/CherryStudio/index.js +14 -0
- package/icons/es/CherryStudio/style.d.ts +7 -0
- package/icons/es/CherryStudio/style.js +9 -0
- package/icons/es/Civitai/components/Avatar.d.ts +5 -0
- package/icons/es/Civitai/components/Avatar.js +25 -0
- package/icons/es/Civitai/components/Color.d.ts +3 -0
- package/icons/es/Civitai/components/Color.js +85 -0
- package/icons/es/Civitai/components/Combine.d.ts +7 -0
- package/icons/es/Civitai/components/Combine.js +33 -0
- package/icons/es/Civitai/components/Mono.d.ts +3 -0
- package/icons/es/Civitai/components/Mono.js +42 -0
- package/icons/es/Civitai/components/Text.d.ts +3 -0
- package/icons/es/Civitai/components/Text.js +41 -0
- package/icons/es/Civitai/components/TextColor.d.ts +3 -0
- package/icons/es/Civitai/components/TextColor.js +42 -0
- package/icons/es/Civitai/index.d.ts +17 -0
- package/icons/es/Civitai/index.js +16 -0
- package/icons/es/Civitai/style.d.ts +7 -0
- package/icons/es/Civitai/style.js +9 -0
- package/icons/es/Claude/components/Avatar.d.ts +5 -0
- package/icons/es/Claude/components/Avatar.js +25 -0
- package/icons/es/Claude/components/Color.d.ts +3 -0
- package/icons/es/Claude/components/Color.js +40 -0
- package/icons/es/Claude/components/Combine.d.ts +7 -0
- package/icons/es/Claude/components/Combine.js +32 -0
- package/icons/es/Claude/components/Mono.d.ts +3 -0
- package/icons/es/Claude/components/Mono.js +40 -0
- package/icons/es/Claude/components/Text.d.ts +3 -0
- package/icons/es/Claude/components/Text.js +39 -0
- package/icons/es/Claude/index.d.ts +15 -0
- package/icons/es/Claude/index.js +14 -0
- package/icons/es/Claude/style.d.ts +7 -0
- package/icons/es/Claude/style.js +9 -0
- package/icons/es/ClaudeCode/components/Avatar.d.ts +5 -0
- package/icons/es/ClaudeCode/components/Avatar.js +25 -0
- package/icons/es/ClaudeCode/components/Color.d.ts +3 -0
- package/icons/es/ClaudeCode/components/Color.js +41 -0
- package/icons/es/ClaudeCode/components/Combine.d.ts +7 -0
- package/icons/es/ClaudeCode/components/Combine.js +32 -0
- package/icons/es/ClaudeCode/components/Mono.d.ts +3 -0
- package/icons/es/ClaudeCode/components/Mono.js +41 -0
- package/icons/es/ClaudeCode/components/Text.d.ts +3 -0
- package/icons/es/ClaudeCode/components/Text.js +40 -0
- package/icons/es/ClaudeCode/index.d.ts +16 -0
- package/icons/es/ClaudeCode/index.js +14 -0
- package/icons/es/ClaudeCode/style.d.ts +7 -0
- package/icons/es/ClaudeCode/style.js +9 -0
- package/icons/es/Cline/components/Avatar.d.ts +5 -0
- package/icons/es/Cline/components/Avatar.js +25 -0
- package/icons/es/Cline/components/Combine.d.ts +5 -0
- package/icons/es/Cline/components/Combine.js +29 -0
- package/icons/es/Cline/components/Mono.d.ts +3 -0
- package/icons/es/Cline/components/Mono.js +42 -0
- package/icons/es/Cline/components/Text.d.ts +3 -0
- package/icons/es/Cline/components/Text.js +39 -0
- package/icons/es/Cline/index.d.ts +13 -0
- package/icons/es/Cline/index.js +12 -0
- package/icons/es/Cline/style.d.ts +7 -0
- package/icons/es/Cline/style.js +9 -0
- package/icons/es/Clipdrop/components/Avatar.d.ts +5 -0
- package/icons/es/Clipdrop/components/Avatar.js +25 -0
- package/icons/es/Clipdrop/components/Combine.d.ts +5 -0
- package/icons/es/Clipdrop/components/Combine.js +29 -0
- package/icons/es/Clipdrop/components/Mono.d.ts +3 -0
- package/icons/es/Clipdrop/components/Mono.js +41 -0
- package/icons/es/Clipdrop/components/Text.d.ts +3 -0
- package/icons/es/Clipdrop/components/Text.js +39 -0
- package/icons/es/Clipdrop/index.d.ts +13 -0
- package/icons/es/Clipdrop/index.js +12 -0
- package/icons/es/Clipdrop/style.d.ts +7 -0
- package/icons/es/Clipdrop/style.js +9 -0
- package/icons/es/Cloudflare/components/Avatar.d.ts +5 -0
- package/icons/es/Cloudflare/components/Avatar.js +25 -0
- package/icons/es/Cloudflare/components/Color.d.ts +3 -0
- package/icons/es/Cloudflare/components/Color.js +42 -0
- package/icons/es/Cloudflare/components/Combine.d.ts +7 -0
- package/icons/es/Cloudflare/components/Combine.js +32 -0
- package/icons/es/Cloudflare/components/Mono.d.ts +3 -0
- package/icons/es/Cloudflare/components/Mono.js +42 -0
- package/icons/es/Cloudflare/components/Text.d.ts +3 -0
- package/icons/es/Cloudflare/components/Text.js +39 -0
- package/icons/es/Cloudflare/index.d.ts +15 -0
- package/icons/es/Cloudflare/index.js +14 -0
- package/icons/es/Cloudflare/style.d.ts +7 -0
- package/icons/es/Cloudflare/style.js +9 -0
- package/icons/es/CodeBuddy/components/Avatar.d.ts +5 -0
- package/icons/es/CodeBuddy/components/Avatar.js +25 -0
- package/icons/es/CodeBuddy/components/Color.d.ts +3 -0
- package/icons/es/CodeBuddy/components/Color.js +64 -0
- package/icons/es/CodeBuddy/components/Combine.d.ts +7 -0
- package/icons/es/CodeBuddy/components/Combine.js +32 -0
- package/icons/es/CodeBuddy/components/Mono.d.ts +3 -0
- package/icons/es/CodeBuddy/components/Mono.js +42 -0
- package/icons/es/CodeBuddy/components/Text.d.ts +3 -0
- package/icons/es/CodeBuddy/components/Text.js +49 -0
- package/icons/es/CodeBuddy/index.d.ts +16 -0
- package/icons/es/CodeBuddy/index.js +15 -0
- package/icons/es/CodeBuddy/style.d.ts +8 -0
- package/icons/es/CodeBuddy/style.js +10 -0
- package/icons/es/CodeFlicker/components/Avatar.d.ts +5 -0
- package/icons/es/CodeFlicker/components/Avatar.js +25 -0
- package/icons/es/CodeFlicker/components/Color.d.ts +3 -0
- package/icons/es/CodeFlicker/components/Color.js +185 -0
- package/icons/es/CodeFlicker/components/Combine.d.ts +7 -0
- package/icons/es/CodeFlicker/components/Combine.js +32 -0
- package/icons/es/CodeFlicker/components/Mono.d.ts +3 -0
- package/icons/es/CodeFlicker/components/Mono.js +42 -0
- package/icons/es/CodeFlicker/components/Text.d.ts +3 -0
- package/icons/es/CodeFlicker/components/Text.js +43 -0
- package/icons/es/CodeFlicker/index.d.ts +15 -0
- package/icons/es/CodeFlicker/index.js +14 -0
- package/icons/es/CodeFlicker/style.d.ts +7 -0
- package/icons/es/CodeFlicker/style.js +9 -0
- package/icons/es/CodeGeeX/components/Avatar.d.ts +5 -0
- package/icons/es/CodeGeeX/components/Avatar.js +25 -0
- package/icons/es/CodeGeeX/components/Color.d.ts +3 -0
- package/icons/es/CodeGeeX/components/Color.js +42 -0
- package/icons/es/CodeGeeX/components/Combine.d.ts +7 -0
- package/icons/es/CodeGeeX/components/Combine.js +36 -0
- package/icons/es/CodeGeeX/components/Mono.d.ts +3 -0
- package/icons/es/CodeGeeX/components/Mono.js +42 -0
- package/icons/es/CodeGeeX/components/Text.d.ts +3 -0
- package/icons/es/CodeGeeX/components/Text.js +52 -0
- package/icons/es/CodeGeeX/index.d.ts +16 -0
- package/icons/es/CodeGeeX/index.js +15 -0
- package/icons/es/CodeGeeX/style.d.ts +8 -0
- package/icons/es/CodeGeeX/style.js +10 -0
- package/icons/es/Codex/components/Avatar.d.ts +5 -0
- package/icons/es/Codex/components/Avatar.js +25 -0
- package/icons/es/Codex/components/Color.d.ts +3 -0
- package/icons/es/Codex/components/Color.js +64 -0
- package/icons/es/Codex/components/Combine.d.ts +7 -0
- package/icons/es/Codex/components/Combine.js +32 -0
- package/icons/es/Codex/components/Inner.d.ts +3 -0
- package/icons/es/Codex/components/Inner.js +63 -0
- package/icons/es/Codex/components/Mono.d.ts +3 -0
- package/icons/es/Codex/components/Mono.js +41 -0
- package/icons/es/Codex/components/Text.d.ts +3 -0
- package/icons/es/Codex/components/Text.js +39 -0
- package/icons/es/Codex/index.d.ts +15 -0
- package/icons/es/Codex/index.js +14 -0
- package/icons/es/Codex/style.d.ts +7 -0
- package/icons/es/Codex/style.js +9 -0
- package/icons/es/CogVideo/components/Avatar.d.ts +5 -0
- package/icons/es/CogVideo/components/Avatar.js +25 -0
- package/icons/es/CogVideo/components/Color.d.ts +3 -0
- package/icons/es/CogVideo/components/Color.js +476 -0
- package/icons/es/CogVideo/components/Combine.d.ts +7 -0
- package/icons/es/CogVideo/components/Combine.js +32 -0
- package/icons/es/CogVideo/components/Mono.d.ts +3 -0
- package/icons/es/CogVideo/components/Mono.js +27 -0
- package/icons/es/CogVideo/components/Text.d.ts +3 -0
- package/icons/es/CogVideo/components/Text.js +40 -0
- package/icons/es/CogVideo/index.d.ts +16 -0
- package/icons/es/CogVideo/index.js +14 -0
- package/icons/es/CogVideo/style.d.ts +7 -0
- package/icons/es/CogVideo/style.js +9 -0
- package/icons/es/CogView/components/Avatar.d.ts +5 -0
- package/icons/es/CogView/components/Avatar.js +25 -0
- package/icons/es/CogView/components/Color.d.ts +3 -0
- package/icons/es/CogView/components/Color.js +594 -0
- package/icons/es/CogView/components/Combine.d.ts +7 -0
- package/icons/es/CogView/components/Combine.js +32 -0
- package/icons/es/CogView/components/Mono.d.ts +3 -0
- package/icons/es/CogView/components/Mono.js +27 -0
- package/icons/es/CogView/components/Text.d.ts +3 -0
- package/icons/es/CogView/components/Text.js +40 -0
- package/icons/es/CogView/index.d.ts +16 -0
- package/icons/es/CogView/index.js +14 -0
- package/icons/es/CogView/style.d.ts +7 -0
- package/icons/es/CogView/style.js +9 -0
- package/icons/es/Cohere/components/Avatar.d.ts +5 -0
- package/icons/es/Cohere/components/Avatar.js +25 -0
- package/icons/es/Cohere/components/Color.d.ts +3 -0
- package/icons/es/Cohere/components/Color.js +49 -0
- package/icons/es/Cohere/components/Combine.d.ts +7 -0
- package/icons/es/Cohere/components/Combine.js +36 -0
- package/icons/es/Cohere/components/Mono.d.ts +3 -0
- package/icons/es/Cohere/components/Mono.js +46 -0
- package/icons/es/Cohere/components/Text.d.ts +3 -0
- package/icons/es/Cohere/components/Text.js +39 -0
- package/icons/es/Cohere/index.d.ts +15 -0
- package/icons/es/Cohere/index.js +14 -0
- package/icons/es/Cohere/style.d.ts +7 -0
- package/icons/es/Cohere/style.js +9 -0
- package/icons/es/Colab/components/Avatar.d.ts +5 -0
- package/icons/es/Colab/components/Avatar.js +25 -0
- package/icons/es/Colab/components/Color.d.ts +3 -0
- package/icons/es/Colab/components/Color.js +45 -0
- package/icons/es/Colab/components/Combine.d.ts +7 -0
- package/icons/es/Colab/components/Combine.js +36 -0
- package/icons/es/Colab/components/Mono.d.ts +3 -0
- package/icons/es/Colab/components/Mono.js +40 -0
- package/icons/es/Colab/components/Text.d.ts +3 -0
- package/icons/es/Colab/components/Text.js +39 -0
- package/icons/es/Colab/index.d.ts +15 -0
- package/icons/es/Colab/index.js +14 -0
- package/icons/es/Colab/style.d.ts +8 -0
- package/icons/es/Colab/style.js +10 -0
- package/icons/es/CometAPI/components/Avatar.d.ts +5 -0
- package/icons/es/CometAPI/components/Avatar.js +25 -0
- package/icons/es/CometAPI/components/Color.d.ts +3 -0
- package/icons/es/CometAPI/components/Color.js +48 -0
- package/icons/es/CometAPI/components/Combine.d.ts +7 -0
- package/icons/es/CometAPI/components/Combine.js +32 -0
- package/icons/es/CometAPI/components/Mono.d.ts +3 -0
- package/icons/es/CometAPI/components/Mono.js +42 -0
- package/icons/es/CometAPI/components/Text.d.ts +3 -0
- package/icons/es/CometAPI/components/Text.js +39 -0
- package/icons/es/CometAPI/index.d.ts +15 -0
- package/icons/es/CometAPI/index.js +14 -0
- package/icons/es/CometAPI/style.d.ts +7 -0
- package/icons/es/CometAPI/style.js +9 -0
- package/icons/es/ComfyUI/components/Avatar.d.ts +5 -0
- package/icons/es/ComfyUI/components/Avatar.js +25 -0
- package/icons/es/ComfyUI/components/Color.d.ts +3 -0
- package/icons/es/ComfyUI/components/Color.js +39 -0
- package/icons/es/ComfyUI/components/Combine.d.ts +7 -0
- package/icons/es/ComfyUI/components/Combine.js +29 -0
- package/icons/es/ComfyUI/components/Mono.d.ts +3 -0
- package/icons/es/ComfyUI/components/Mono.js +40 -0
- package/icons/es/ComfyUI/components/Text.d.ts +3 -0
- package/icons/es/ComfyUI/components/Text.js +39 -0
- package/icons/es/ComfyUI/index.d.ts +15 -0
- package/icons/es/ComfyUI/index.js +14 -0
- package/icons/es/ComfyUI/style.d.ts +7 -0
- package/icons/es/ComfyUI/style.js +9 -0
- package/icons/es/CommandA/components/Avatar.d.ts +5 -0
- package/icons/es/CommandA/components/Avatar.js +25 -0
- package/icons/es/CommandA/components/Color.d.ts +3 -0
- package/icons/es/CommandA/components/Color.js +49 -0
- package/icons/es/CommandA/components/Combine.d.ts +7 -0
- package/icons/es/CommandA/components/Combine.js +32 -0
- package/icons/es/CommandA/components/Mono.d.ts +3 -0
- package/icons/es/CommandA/components/Mono.js +46 -0
- package/icons/es/CommandA/components/Text.d.ts +3 -0
- package/icons/es/CommandA/components/Text.js +41 -0
- package/icons/es/CommandA/index.d.ts +15 -0
- package/icons/es/CommandA/index.js +14 -0
- package/icons/es/CommandA/style.d.ts +7 -0
- package/icons/es/CommandA/style.js +9 -0
- package/icons/es/Copilot/components/Avatar.d.ts +5 -0
- package/icons/es/Copilot/components/Avatar.js +25 -0
- package/icons/es/Copilot/components/Color.d.ts +3 -0
- package/icons/es/Copilot/components/Color.js +178 -0
- package/icons/es/Copilot/components/Combine.d.ts +7 -0
- package/icons/es/Copilot/components/Combine.js +32 -0
- package/icons/es/Copilot/components/Mono.d.ts +3 -0
- package/icons/es/Copilot/components/Mono.js +40 -0
- package/icons/es/Copilot/components/Text.d.ts +3 -0
- package/icons/es/Copilot/components/Text.js +39 -0
- package/icons/es/Copilot/index.d.ts +15 -0
- package/icons/es/Copilot/index.js +14 -0
- package/icons/es/Copilot/style.d.ts +7 -0
- package/icons/es/Copilot/style.js +9 -0
- package/icons/es/CopilotKit/components/Avatar.d.ts +5 -0
- package/icons/es/CopilotKit/components/Avatar.js +25 -0
- package/icons/es/CopilotKit/components/Color.d.ts +3 -0
- package/icons/es/CopilotKit/components/Color.js +133 -0
- package/icons/es/CopilotKit/components/Combine.d.ts +7 -0
- package/icons/es/CopilotKit/components/Combine.js +33 -0
- package/icons/es/CopilotKit/components/Mono.d.ts +3 -0
- package/icons/es/CopilotKit/components/Mono.js +52 -0
- package/icons/es/CopilotKit/components/Text.d.ts +3 -0
- package/icons/es/CopilotKit/components/Text.js +39 -0
- package/icons/es/CopilotKit/index.d.ts +15 -0
- package/icons/es/CopilotKit/index.js +14 -0
- package/icons/es/CopilotKit/style.d.ts +7 -0
- package/icons/es/CopilotKit/style.js +9 -0
- package/icons/es/Coqui/components/Avatar.d.ts +5 -0
- package/icons/es/Coqui/components/Avatar.js +25 -0
- package/icons/es/Coqui/components/Color.d.ts +3 -0
- package/icons/es/Coqui/components/Color.js +42 -0
- package/icons/es/Coqui/components/Combine.d.ts +7 -0
- package/icons/es/Coqui/components/Combine.js +32 -0
- package/icons/es/Coqui/components/Mono.d.ts +3 -0
- package/icons/es/Coqui/components/Mono.js +42 -0
- package/icons/es/Coqui/components/Text.d.ts +3 -0
- package/icons/es/Coqui/components/Text.js +44 -0
- package/icons/es/Coqui/index.d.ts +15 -0
- package/icons/es/Coqui/index.js +14 -0
- package/icons/es/Coqui/style.d.ts +7 -0
- package/icons/es/Coqui/style.js +9 -0
- package/icons/es/Coze/components/Avatar.d.ts +5 -0
- package/icons/es/Coze/components/Avatar.js +25 -0
- package/icons/es/Coze/components/Combine.d.ts +5 -0
- package/icons/es/Coze/components/Combine.js +29 -0
- package/icons/es/Coze/components/Mono.d.ts +3 -0
- package/icons/es/Coze/components/Mono.js +41 -0
- package/icons/es/Coze/components/Text.d.ts +3 -0
- package/icons/es/Coze/components/Text.js +42 -0
- package/icons/es/Coze/index.d.ts +13 -0
- package/icons/es/Coze/index.js +12 -0
- package/icons/es/Coze/style.d.ts +7 -0
- package/icons/es/Coze/style.js +9 -0
- package/icons/es/CrewAI/components/Avatar.d.ts +5 -0
- package/icons/es/CrewAI/components/Avatar.js +25 -0
- package/icons/es/CrewAI/components/Brand.d.ts +3 -0
- package/icons/es/CrewAI/components/Brand.js +45 -0
- package/icons/es/CrewAI/components/BrandColor.d.ts +3 -0
- package/icons/es/CrewAI/components/BrandColor.js +48 -0
- package/icons/es/CrewAI/components/Color.d.ts +3 -0
- package/icons/es/CrewAI/components/Color.js +42 -0
- package/icons/es/CrewAI/components/Combine.d.ts +7 -0
- package/icons/es/CrewAI/components/Combine.js +32 -0
- package/icons/es/CrewAI/components/Mono.d.ts +3 -0
- package/icons/es/CrewAI/components/Mono.js +41 -0
- package/icons/es/CrewAI/components/Text.d.ts +3 -0
- package/icons/es/CrewAI/components/Text.js +39 -0
- package/icons/es/CrewAI/index.d.ts +19 -0
- package/icons/es/CrewAI/index.js +18 -0
- package/icons/es/CrewAI/style.d.ts +7 -0
- package/icons/es/CrewAI/style.js +9 -0
- package/icons/es/Crusoe/components/Avatar.d.ts +5 -0
- package/icons/es/Crusoe/components/Avatar.js +25 -0
- package/icons/es/Crusoe/components/Color.d.ts +3 -0
- package/icons/es/Crusoe/components/Color.js +64 -0
- package/icons/es/Crusoe/components/Combine.d.ts +7 -0
- package/icons/es/Crusoe/components/Combine.js +32 -0
- package/icons/es/Crusoe/components/Mono.d.ts +3 -0
- package/icons/es/Crusoe/components/Mono.js +61 -0
- package/icons/es/Crusoe/components/Text.d.ts +3 -0
- package/icons/es/Crusoe/components/Text.js +40 -0
- package/icons/es/Crusoe/index.d.ts +15 -0
- package/icons/es/Crusoe/index.js +14 -0
- package/icons/es/Crusoe/style.d.ts +7 -0
- package/icons/es/Crusoe/style.js +9 -0
- package/icons/es/Cursor/components/Avatar.d.ts +5 -0
- package/icons/es/Cursor/components/Avatar.js +25 -0
- package/icons/es/Cursor/components/Combine.d.ts +5 -0
- package/icons/es/Cursor/components/Combine.js +26 -0
- package/icons/es/Cursor/components/Mono.d.ts +3 -0
- package/icons/es/Cursor/components/Mono.js +40 -0
- package/icons/es/Cursor/components/Text.d.ts +3 -0
- package/icons/es/Cursor/components/Text.js +39 -0
- package/icons/es/Cursor/index.d.ts +18 -0
- package/icons/es/Cursor/index.js +12 -0
- package/icons/es/Cursor/style.d.ts +7 -0
- package/icons/es/Cursor/style.js +9 -0
- package/icons/es/CyberCut/components/Avatar.d.ts +5 -0
- package/icons/es/CyberCut/components/Avatar.js +25 -0
- package/icons/es/CyberCut/components/Combine.d.ts +5 -0
- package/icons/es/CyberCut/components/Combine.js +27 -0
- package/icons/es/CyberCut/components/Mono.d.ts +3 -0
- package/icons/es/CyberCut/components/Mono.js +64 -0
- package/icons/es/CyberCut/components/Text.d.ts +3 -0
- package/icons/es/CyberCut/components/Text.js +42 -0
- package/icons/es/CyberCut/index.d.ts +13 -0
- package/icons/es/CyberCut/index.js +12 -0
- package/icons/es/CyberCut/style.d.ts +7 -0
- package/icons/es/CyberCut/style.js +9 -0
- package/icons/es/Dalle/components/Avatar.d.ts +5 -0
- package/icons/es/Dalle/components/Avatar.js +23 -0
- package/icons/es/Dalle/components/Color.d.ts +3 -0
- package/icons/es/Dalle/components/Color.js +51 -0
- package/icons/es/Dalle/components/Combine.d.ts +5 -0
- package/icons/es/Dalle/components/Combine.js +36 -0
- package/icons/es/Dalle/components/Mono.d.ts +3 -0
- package/icons/es/Dalle/components/Mono.js +53 -0
- package/icons/es/Dalle/components/Text.d.ts +3 -0
- package/icons/es/Dalle/components/Text.js +39 -0
- package/icons/es/Dalle/index.d.ts +16 -0
- package/icons/es/Dalle/index.js +15 -0
- package/icons/es/Dalle/style.d.ts +8 -0
- package/icons/es/Dalle/style.js +10 -0
- package/icons/es/Dbrx/components/Avatar.d.ts +5 -0
- package/icons/es/Dbrx/components/Avatar.js +25 -0
- package/icons/es/Dbrx/components/BrandColor.d.ts +3 -0
- package/icons/es/Dbrx/components/BrandColor.js +42 -0
- package/icons/es/Dbrx/components/BrandMono.d.ts +3 -0
- package/icons/es/Dbrx/components/BrandMono.js +41 -0
- package/icons/es/Dbrx/components/Color.d.ts +3 -0
- package/icons/es/Dbrx/components/Color.js +40 -0
- package/icons/es/Dbrx/components/Combine.d.ts +7 -0
- package/icons/es/Dbrx/components/Combine.js +32 -0
- package/icons/es/Dbrx/components/Mono.d.ts +3 -0
- package/icons/es/Dbrx/components/Mono.js +40 -0
- package/icons/es/Dbrx/components/Text.d.ts +3 -0
- package/icons/es/Dbrx/components/Text.js +39 -0
- package/icons/es/Dbrx/index.d.ts +19 -0
- package/icons/es/Dbrx/index.js +18 -0
- package/icons/es/Dbrx/style.d.ts +7 -0
- package/icons/es/Dbrx/style.js +9 -0
- package/icons/es/DeepAI/components/Avatar.d.ts +5 -0
- package/icons/es/DeepAI/components/Avatar.js +25 -0
- package/icons/es/DeepAI/components/Combine.d.ts +5 -0
- package/icons/es/DeepAI/components/Combine.js +26 -0
- package/icons/es/DeepAI/components/Mono.d.ts +3 -0
- package/icons/es/DeepAI/components/Mono.js +40 -0
- package/icons/es/DeepAI/components/Text.d.ts +3 -0
- package/icons/es/DeepAI/components/Text.js +39 -0
- package/icons/es/DeepAI/index.d.ts +13 -0
- package/icons/es/DeepAI/index.js +12 -0
- package/icons/es/DeepAI/style.d.ts +7 -0
- package/icons/es/DeepAI/style.js +9 -0
- package/icons/es/DeepCogito/components/Avatar.d.ts +5 -0
- package/icons/es/DeepCogito/components/Avatar.js +25 -0
- package/icons/es/DeepCogito/components/Color.d.ts +3 -0
- package/icons/es/DeepCogito/components/Color.js +39 -0
- package/icons/es/DeepCogito/components/Combine.d.ts +7 -0
- package/icons/es/DeepCogito/components/Combine.js +32 -0
- package/icons/es/DeepCogito/components/Mono.d.ts +3 -0
- package/icons/es/DeepCogito/components/Mono.js +40 -0
- package/icons/es/DeepCogito/components/Text.d.ts +3 -0
- package/icons/es/DeepCogito/components/Text.js +39 -0
- package/icons/es/DeepCogito/index.d.ts +16 -0
- package/icons/es/DeepCogito/index.js +14 -0
- package/icons/es/DeepCogito/style.d.ts +7 -0
- package/icons/es/DeepCogito/style.js +9 -0
- package/icons/es/DeepInfra/components/Avatar.d.ts +5 -0
- package/icons/es/DeepInfra/components/Avatar.js +25 -0
- package/icons/es/DeepInfra/components/Color.d.ts +3 -0
- package/icons/es/DeepInfra/components/Color.js +42 -0
- package/icons/es/DeepInfra/components/Combine.d.ts +7 -0
- package/icons/es/DeepInfra/components/Combine.js +32 -0
- package/icons/es/DeepInfra/components/Mono.d.ts +3 -0
- package/icons/es/DeepInfra/components/Mono.js +42 -0
- package/icons/es/DeepInfra/components/Text.d.ts +3 -0
- package/icons/es/DeepInfra/components/Text.js +41 -0
- package/icons/es/DeepInfra/index.d.ts +15 -0
- package/icons/es/DeepInfra/index.js +14 -0
- package/icons/es/DeepInfra/style.d.ts +7 -0
- package/icons/es/DeepInfra/style.js +9 -0
- package/icons/es/DeepL/components/Avatar.d.ts +5 -0
- package/icons/es/DeepL/components/Avatar.js +25 -0
- package/icons/es/DeepL/components/Color.d.ts +3 -0
- package/icons/es/DeepL/components/Color.js +43 -0
- package/icons/es/DeepL/components/Combine.d.ts +7 -0
- package/icons/es/DeepL/components/Combine.js +32 -0
- package/icons/es/DeepL/components/Mono.d.ts +3 -0
- package/icons/es/DeepL/components/Mono.js +43 -0
- package/icons/es/DeepL/components/Text.d.ts +3 -0
- package/icons/es/DeepL/components/Text.js +39 -0
- package/icons/es/DeepL/index.d.ts +15 -0
- package/icons/es/DeepL/index.js +14 -0
- package/icons/es/DeepL/style.d.ts +7 -0
- package/icons/es/DeepL/style.js +9 -0
- package/icons/es/DeepMind/components/Avatar.d.ts +5 -0
- package/icons/es/DeepMind/components/Avatar.js +25 -0
- package/icons/es/DeepMind/components/Color.d.ts +3 -0
- package/icons/es/DeepMind/components/Color.js +40 -0
- package/icons/es/DeepMind/components/Combine.d.ts +7 -0
- package/icons/es/DeepMind/components/Combine.js +32 -0
- package/icons/es/DeepMind/components/Mono.d.ts +3 -0
- package/icons/es/DeepMind/components/Mono.js +40 -0
- package/icons/es/DeepMind/components/Text.d.ts +3 -0
- package/icons/es/DeepMind/components/Text.js +39 -0
- package/icons/es/DeepMind/index.d.ts +15 -0
- package/icons/es/DeepMind/index.js +14 -0
- package/icons/es/DeepMind/style.d.ts +7 -0
- package/icons/es/DeepMind/style.js +9 -0
- package/icons/es/DeepSeek/components/Avatar.d.ts +5 -0
- package/icons/es/DeepSeek/components/Avatar.js +25 -0
- package/icons/es/DeepSeek/components/Color.d.ts +3 -0
- package/icons/es/DeepSeek/components/Color.js +39 -0
- package/icons/es/DeepSeek/components/Combine.d.ts +7 -0
- package/icons/es/DeepSeek/components/Combine.js +32 -0
- package/icons/es/DeepSeek/components/Mono.d.ts +3 -0
- package/icons/es/DeepSeek/components/Mono.js +40 -0
- package/icons/es/DeepSeek/components/Text.d.ts +3 -0
- package/icons/es/DeepSeek/components/Text.js +39 -0
- package/icons/es/DeepSeek/index.d.ts +15 -0
- package/icons/es/DeepSeek/index.js +14 -0
- package/icons/es/DeepSeek/style.d.ts +7 -0
- package/icons/es/DeepSeek/style.js +9 -0
- package/icons/es/Devin/components/Avatar.d.ts +5 -0
- package/icons/es/Devin/components/Avatar.js +25 -0
- package/icons/es/Devin/components/Color.d.ts +3 -0
- package/icons/es/Devin/components/Color.js +45 -0
- package/icons/es/Devin/components/Combine.d.ts +7 -0
- package/icons/es/Devin/components/Combine.js +32 -0
- package/icons/es/Devin/components/Mono.d.ts +3 -0
- package/icons/es/Devin/components/Mono.js +44 -0
- package/icons/es/Devin/components/Text.d.ts +3 -0
- package/icons/es/Devin/components/Text.js +38 -0
- package/icons/es/Devin/index.d.ts +15 -0
- package/icons/es/Devin/index.js +14 -0
- package/icons/es/Devin/style.d.ts +7 -0
- package/icons/es/Devin/style.js +9 -0
- package/icons/es/Dify/components/Avatar.d.ts +5 -0
- package/icons/es/Dify/components/Avatar.js +25 -0
- package/icons/es/Dify/components/Color.d.ts +3 -0
- package/icons/es/Dify/components/Color.js +42 -0
- package/icons/es/Dify/components/Combine.d.ts +7 -0
- package/icons/es/Dify/components/Combine.js +29 -0
- package/icons/es/Dify/components/Mono.d.ts +3 -0
- package/icons/es/Dify/components/Mono.js +42 -0
- package/icons/es/Dify/components/Text.d.ts +3 -0
- package/icons/es/Dify/components/Text.js +45 -0
- package/icons/es/Dify/components/TextColor.d.ts +3 -0
- package/icons/es/Dify/components/TextColor.js +47 -0
- package/icons/es/Dify/index.d.ts +16 -0
- package/icons/es/Dify/index.js +14 -0
- package/icons/es/Dify/style.d.ts +7 -0
- package/icons/es/Dify/style.js +9 -0
- package/icons/es/Doc2X/components/Avatar.d.ts +5 -0
- package/icons/es/Doc2X/components/Avatar.js +25 -0
- package/icons/es/Doc2X/components/Color.d.ts +3 -0
- package/icons/es/Doc2X/components/Color.js +42 -0
- package/icons/es/Doc2X/components/Combine.d.ts +7 -0
- package/icons/es/Doc2X/components/Combine.js +32 -0
- package/icons/es/Doc2X/components/Mono.d.ts +3 -0
- package/icons/es/Doc2X/components/Mono.js +43 -0
- package/icons/es/Doc2X/components/Text.d.ts +3 -0
- package/icons/es/Doc2X/components/Text.js +39 -0
- package/icons/es/Doc2X/index.d.ts +15 -0
- package/icons/es/Doc2X/index.js +14 -0
- package/icons/es/Doc2X/style.d.ts +7 -0
- package/icons/es/Doc2X/style.js +9 -0
- package/icons/es/DocSearch/components/Avatar.d.ts +5 -0
- package/icons/es/DocSearch/components/Avatar.js +25 -0
- package/icons/es/DocSearch/components/Color.d.ts +3 -0
- package/icons/es/DocSearch/components/Color.js +42 -0
- package/icons/es/DocSearch/components/Combine.d.ts +7 -0
- package/icons/es/DocSearch/components/Combine.js +32 -0
- package/icons/es/DocSearch/components/Mono.d.ts +3 -0
- package/icons/es/DocSearch/components/Mono.js +42 -0
- package/icons/es/DocSearch/components/Text.d.ts +3 -0
- package/icons/es/DocSearch/components/Text.js +39 -0
- package/icons/es/DocSearch/index.d.ts +15 -0
- package/icons/es/DocSearch/index.js +14 -0
- package/icons/es/DocSearch/style.d.ts +7 -0
- package/icons/es/DocSearch/style.js +9 -0
- package/icons/es/Dolphin/components/Avatar.d.ts +5 -0
- package/icons/es/Dolphin/components/Avatar.js +25 -0
- package/icons/es/Dolphin/components/Combine.d.ts +5 -0
- package/icons/es/Dolphin/components/Combine.js +26 -0
- package/icons/es/Dolphin/components/Mono.d.ts +3 -0
- package/icons/es/Dolphin/components/Mono.js +40 -0
- package/icons/es/Dolphin/components/Text.d.ts +3 -0
- package/icons/es/Dolphin/components/Text.js +39 -0
- package/icons/es/Dolphin/index.d.ts +13 -0
- package/icons/es/Dolphin/index.js +12 -0
- package/icons/es/Dolphin/style.d.ts +7 -0
- package/icons/es/Dolphin/style.js +9 -0
- package/icons/es/Doubao/components/Avatar.d.ts +5 -0
- package/icons/es/Doubao/components/Avatar.js +25 -0
- package/icons/es/Doubao/components/Color.d.ts +3 -0
- package/icons/es/Doubao/components/Color.js +48 -0
- package/icons/es/Doubao/components/Combine.d.ts +7 -0
- package/icons/es/Doubao/components/Combine.js +32 -0
- package/icons/es/Doubao/components/Mono.d.ts +3 -0
- package/icons/es/Doubao/components/Mono.js +46 -0
- package/icons/es/Doubao/components/Text.d.ts +3 -0
- package/icons/es/Doubao/components/Text.js +40 -0
- package/icons/es/Doubao/index.d.ts +15 -0
- package/icons/es/Doubao/index.js +14 -0
- package/icons/es/Doubao/style.d.ts +7 -0
- package/icons/es/Doubao/style.js +9 -0
- package/icons/es/DreamMachine/components/Avatar.d.ts +5 -0
- package/icons/es/DreamMachine/components/Avatar.js +25 -0
- package/icons/es/DreamMachine/components/Combine.d.ts +5 -0
- package/icons/es/DreamMachine/components/Combine.js +29 -0
- package/icons/es/DreamMachine/components/Mono.d.ts +3 -0
- package/icons/es/DreamMachine/components/Mono.js +44 -0
- package/icons/es/DreamMachine/components/Text.d.ts +3 -0
- package/icons/es/DreamMachine/components/Text.js +39 -0
- package/icons/es/DreamMachine/index.d.ts +13 -0
- package/icons/es/DreamMachine/index.js +12 -0
- package/icons/es/DreamMachine/style.d.ts +7 -0
- package/icons/es/DreamMachine/style.js +9 -0
- package/icons/es/ElevenLabs/components/Avatar.d.ts +5 -0
- package/icons/es/ElevenLabs/components/Avatar.js +25 -0
- package/icons/es/ElevenLabs/components/Combine.d.ts +5 -0
- package/icons/es/ElevenLabs/components/Combine.js +24 -0
- package/icons/es/ElevenLabs/components/Mono.d.ts +3 -0
- package/icons/es/ElevenLabs/components/Mono.js +40 -0
- package/icons/es/ElevenLabs/components/Text.d.ts +3 -0
- package/icons/es/ElevenLabs/components/Text.js +44 -0
- package/icons/es/ElevenLabs/index.d.ts +13 -0
- package/icons/es/ElevenLabs/index.js +12 -0
- package/icons/es/ElevenLabs/style.d.ts +7 -0
- package/icons/es/ElevenLabs/style.js +9 -0
- package/icons/es/ElevenX/components/Avatar.d.ts +5 -0
- package/icons/es/ElevenX/components/Avatar.js +25 -0
- package/icons/es/ElevenX/components/Combine.d.ts +5 -0
- package/icons/es/ElevenX/components/Combine.js +26 -0
- package/icons/es/ElevenX/components/Mono.d.ts +3 -0
- package/icons/es/ElevenX/components/Mono.js +40 -0
- package/icons/es/ElevenX/components/Text.d.ts +3 -0
- package/icons/es/ElevenX/components/Text.js +39 -0
- package/icons/es/ElevenX/index.d.ts +13 -0
- package/icons/es/ElevenX/index.js +12 -0
- package/icons/es/ElevenX/style.d.ts +7 -0
- package/icons/es/ElevenX/style.js +9 -0
- package/icons/es/EssentialAI/components/Avatar.d.ts +5 -0
- package/icons/es/EssentialAI/components/Avatar.js +25 -0
- package/icons/es/EssentialAI/components/Color.d.ts +3 -0
- package/icons/es/EssentialAI/components/Color.js +58 -0
- package/icons/es/EssentialAI/components/Combine.d.ts +7 -0
- package/icons/es/EssentialAI/components/Combine.js +32 -0
- package/icons/es/EssentialAI/components/Mono.d.ts +3 -0
- package/icons/es/EssentialAI/components/Mono.js +40 -0
- package/icons/es/EssentialAI/components/Text.d.ts +3 -0
- package/icons/es/EssentialAI/components/Text.js +39 -0
- package/icons/es/EssentialAI/index.d.ts +16 -0
- package/icons/es/EssentialAI/index.js +15 -0
- package/icons/es/EssentialAI/style.d.ts +8 -0
- package/icons/es/EssentialAI/style.js +10 -0
- package/icons/es/Exa/components/Avatar.d.ts +5 -0
- package/icons/es/Exa/components/Avatar.js +25 -0
- package/icons/es/Exa/components/Color.d.ts +3 -0
- package/icons/es/Exa/components/Color.js +41 -0
- package/icons/es/Exa/components/Combine.d.ts +7 -0
- package/icons/es/Exa/components/Combine.js +32 -0
- package/icons/es/Exa/components/Mono.d.ts +3 -0
- package/icons/es/Exa/components/Mono.js +41 -0
- package/icons/es/Exa/components/Text.d.ts +3 -0
- package/icons/es/Exa/components/Text.js +39 -0
- package/icons/es/Exa/index.d.ts +15 -0
- package/icons/es/Exa/index.js +14 -0
- package/icons/es/Exa/style.d.ts +7 -0
- package/icons/es/Exa/style.js +9 -0
- package/icons/es/Fal/components/Avatar.d.ts +5 -0
- package/icons/es/Fal/components/Avatar.js +25 -0
- package/icons/es/Fal/components/Color.d.ts +3 -0
- package/icons/es/Fal/components/Color.js +41 -0
- package/icons/es/Fal/components/Combine.d.ts +5 -0
- package/icons/es/Fal/components/Combine.js +26 -0
- package/icons/es/Fal/components/Mono.d.ts +3 -0
- package/icons/es/Fal/components/Mono.js +41 -0
- package/icons/es/Fal/components/Text.d.ts +3 -0
- package/icons/es/Fal/components/Text.js +42 -0
- package/icons/es/Fal/index.d.ts +15 -0
- package/icons/es/Fal/index.js +14 -0
- package/icons/es/Fal/style.d.ts +7 -0
- package/icons/es/Fal/style.js +9 -0
- package/icons/es/FastGPT/components/Avatar.d.ts +5 -0
- package/icons/es/FastGPT/components/Avatar.js +25 -0
- package/icons/es/FastGPT/components/Color.d.ts +3 -0
- package/icons/es/FastGPT/components/Color.js +81 -0
- package/icons/es/FastGPT/components/Combine.d.ts +7 -0
- package/icons/es/FastGPT/components/Combine.js +32 -0
- package/icons/es/FastGPT/components/Mono.d.ts +3 -0
- package/icons/es/FastGPT/components/Mono.js +42 -0
- package/icons/es/FastGPT/components/Text.d.ts +3 -0
- package/icons/es/FastGPT/components/Text.js +39 -0
- package/icons/es/FastGPT/index.d.ts +15 -0
- package/icons/es/FastGPT/index.js +14 -0
- package/icons/es/FastGPT/style.d.ts +7 -0
- package/icons/es/FastGPT/style.js +9 -0
- package/icons/es/Featherless/components/Avatar.d.ts +5 -0
- package/icons/es/Featherless/components/Avatar.js +29 -0
- package/icons/es/Featherless/components/Color.d.ts +3 -0
- package/icons/es/Featherless/components/Color.js +39 -0
- package/icons/es/Featherless/components/Combine.d.ts +7 -0
- package/icons/es/Featherless/components/Combine.js +32 -0
- package/icons/es/Featherless/components/Mono.d.ts +3 -0
- package/icons/es/Featherless/components/Mono.js +40 -0
- package/icons/es/Featherless/components/Text.d.ts +3 -0
- package/icons/es/Featherless/components/Text.js +39 -0
- package/icons/es/Featherless/index.d.ts +15 -0
- package/icons/es/Featherless/index.js +14 -0
- package/icons/es/Featherless/style.d.ts +7 -0
- package/icons/es/Featherless/style.js +9 -0
- package/icons/es/Figma/components/Avatar.d.ts +5 -0
- package/icons/es/Figma/components/Avatar.js +25 -0
- package/icons/es/Figma/components/Color.d.ts +3 -0
- package/icons/es/Figma/components/Color.js +51 -0
- package/icons/es/Figma/components/Combine.d.ts +7 -0
- package/icons/es/Figma/components/Combine.js +32 -0
- package/icons/es/Figma/components/Mono.d.ts +3 -0
- package/icons/es/Figma/components/Mono.js +41 -0
- package/icons/es/Figma/components/Text.d.ts +3 -0
- package/icons/es/Figma/components/Text.js +39 -0
- package/icons/es/Figma/index.d.ts +15 -0
- package/icons/es/Figma/index.js +14 -0
- package/icons/es/Figma/style.d.ts +7 -0
- package/icons/es/Figma/style.js +9 -0
- package/icons/es/Fireworks/components/Avatar.d.ts +5 -0
- package/icons/es/Fireworks/components/Avatar.js +25 -0
- package/icons/es/Fireworks/components/Color.d.ts +3 -0
- package/icons/es/Fireworks/components/Color.js +41 -0
- package/icons/es/Fireworks/components/Combine.d.ts +7 -0
- package/icons/es/Fireworks/components/Combine.js +32 -0
- package/icons/es/Fireworks/components/Mono.d.ts +3 -0
- package/icons/es/Fireworks/components/Mono.js +41 -0
- package/icons/es/Fireworks/components/Text.d.ts +3 -0
- package/icons/es/Fireworks/components/Text.js +39 -0
- package/icons/es/Fireworks/index.d.ts +15 -0
- package/icons/es/Fireworks/index.js +14 -0
- package/icons/es/Fireworks/style.d.ts +7 -0
- package/icons/es/Fireworks/style.js +9 -0
- package/icons/es/FishAudio/components/Avatar.d.ts +5 -0
- package/icons/es/FishAudio/components/Avatar.js +25 -0
- package/icons/es/FishAudio/components/Combine.d.ts +5 -0
- package/icons/es/FishAudio/components/Combine.js +26 -0
- package/icons/es/FishAudio/components/Mono.d.ts +3 -0
- package/icons/es/FishAudio/components/Mono.js +43 -0
- package/icons/es/FishAudio/components/Text.d.ts +3 -0
- package/icons/es/FishAudio/components/Text.js +39 -0
- package/icons/es/FishAudio/index.d.ts +13 -0
- package/icons/es/FishAudio/index.js +12 -0
- package/icons/es/FishAudio/style.d.ts +7 -0
- package/icons/es/FishAudio/style.js +9 -0
- package/icons/es/Flora/components/Avatar.d.ts +5 -0
- package/icons/es/Flora/components/Avatar.js +25 -0
- package/icons/es/Flora/components/Combine.d.ts +5 -0
- package/icons/es/Flora/components/Combine.js +29 -0
- package/icons/es/Flora/components/Mono.d.ts +3 -0
- package/icons/es/Flora/components/Mono.js +40 -0
- package/icons/es/Flora/components/Text.d.ts +3 -0
- package/icons/es/Flora/components/Text.js +40 -0
- package/icons/es/Flora/index.d.ts +13 -0
- package/icons/es/Flora/index.js +12 -0
- package/icons/es/Flora/style.d.ts +7 -0
- package/icons/es/Flora/style.js +9 -0
- package/icons/es/Flowith/components/Avatar.d.ts +5 -0
- package/icons/es/Flowith/components/Avatar.js +25 -0
- package/icons/es/Flowith/components/Combine.d.ts +5 -0
- package/icons/es/Flowith/components/Combine.js +26 -0
- package/icons/es/Flowith/components/Mono.d.ts +3 -0
- package/icons/es/Flowith/components/Mono.js +41 -0
- package/icons/es/Flowith/components/Text.d.ts +3 -0
- package/icons/es/Flowith/components/Text.js +39 -0
- package/icons/es/Flowith/index.d.ts +13 -0
- package/icons/es/Flowith/index.js +12 -0
- package/icons/es/Flowith/style.d.ts +7 -0
- package/icons/es/Flowith/style.js +9 -0
- package/icons/es/Flux/components/Avatar.d.ts +5 -0
- package/icons/es/Flux/components/Avatar.js +25 -0
- package/icons/es/Flux/components/Combine.d.ts +5 -0
- package/icons/es/Flux/components/Combine.js +26 -0
- package/icons/es/Flux/components/Mono.d.ts +3 -0
- package/icons/es/Flux/components/Mono.js +42 -0
- package/icons/es/Flux/components/Text.d.ts +3 -0
- package/icons/es/Flux/components/Text.js +39 -0
- package/icons/es/Flux/index.d.ts +13 -0
- package/icons/es/Flux/index.js +12 -0
- package/icons/es/Flux/style.d.ts +7 -0
- package/icons/es/Flux/style.js +9 -0
- package/icons/es/Friendli/components/Avatar.d.ts +5 -0
- package/icons/es/Friendli/components/Avatar.js +25 -0
- package/icons/es/Friendli/components/Combine.d.ts +5 -0
- package/icons/es/Friendli/components/Combine.js +26 -0
- package/icons/es/Friendli/components/Mono.d.ts +3 -0
- package/icons/es/Friendli/components/Mono.js +44 -0
- package/icons/es/Friendli/components/Text.d.ts +3 -0
- package/icons/es/Friendli/components/Text.js +39 -0
- package/icons/es/Friendli/index.d.ts +13 -0
- package/icons/es/Friendli/index.js +12 -0
- package/icons/es/Friendli/style.d.ts +7 -0
- package/icons/es/Friendli/style.js +9 -0
- package/icons/es/GLMV/components/Avatar.d.ts +5 -0
- package/icons/es/GLMV/components/Avatar.js +25 -0
- package/icons/es/GLMV/components/Color.d.ts +3 -0
- package/icons/es/GLMV/components/Color.js +51 -0
- package/icons/es/GLMV/components/Combine.d.ts +7 -0
- package/icons/es/GLMV/components/Combine.js +32 -0
- package/icons/es/GLMV/components/Mono.d.ts +3 -0
- package/icons/es/GLMV/components/Mono.js +48 -0
- package/icons/es/GLMV/components/Text.d.ts +3 -0
- package/icons/es/GLMV/components/Text.js +39 -0
- package/icons/es/GLMV/index.d.ts +15 -0
- package/icons/es/GLMV/index.js +14 -0
- package/icons/es/GLMV/style.d.ts +7 -0
- package/icons/es/GLMV/style.js +9 -0
- package/icons/es/Gemini/components/Avatar.d.ts +5 -0
- package/icons/es/Gemini/components/Avatar.js +25 -0
- package/icons/es/Gemini/components/Color.d.ts +3 -0
- package/icons/es/Gemini/components/Color.js +104 -0
- package/icons/es/Gemini/components/Combine.d.ts +7 -0
- package/icons/es/Gemini/components/Combine.js +32 -0
- package/icons/es/Gemini/components/Mono.d.ts +3 -0
- package/icons/es/Gemini/components/Mono.js +40 -0
- package/icons/es/Gemini/components/Text.d.ts +3 -0
- package/icons/es/Gemini/components/Text.js +39 -0
- package/icons/es/Gemini/index.d.ts +16 -0
- package/icons/es/Gemini/index.js +14 -0
- package/icons/es/Gemini/style.d.ts +7 -0
- package/icons/es/Gemini/style.js +9 -0
- package/icons/es/GeminiCLI/components/Avatar.d.ts +5 -0
- package/icons/es/GeminiCLI/components/Avatar.js +25 -0
- package/icons/es/GeminiCLI/components/Color.d.ts +3 -0
- package/icons/es/GeminiCLI/components/Color.js +66 -0
- package/icons/es/GeminiCLI/components/Combine.d.ts +7 -0
- package/icons/es/GeminiCLI/components/Combine.js +32 -0
- package/icons/es/GeminiCLI/components/Mono.d.ts +3 -0
- package/icons/es/GeminiCLI/components/Mono.js +43 -0
- package/icons/es/GeminiCLI/components/Text.d.ts +3 -0
- package/icons/es/GeminiCLI/components/Text.js +39 -0
- package/icons/es/GeminiCLI/index.d.ts +16 -0
- package/icons/es/GeminiCLI/index.js +14 -0
- package/icons/es/GeminiCLI/style.d.ts +7 -0
- package/icons/es/GeminiCLI/style.js +9 -0
- package/icons/es/Gemma/components/Avatar.d.ts +5 -0
- package/icons/es/Gemma/components/Avatar.js +25 -0
- package/icons/es/Gemma/components/Color.d.ts +3 -0
- package/icons/es/Gemma/components/Color.js +62 -0
- package/icons/es/Gemma/components/Combine.d.ts +7 -0
- package/icons/es/Gemma/components/Combine.js +32 -0
- package/icons/es/Gemma/components/Mono.d.ts +3 -0
- package/icons/es/Gemma/components/Mono.js +40 -0
- package/icons/es/Gemma/components/Simple.d.ts +3 -0
- package/icons/es/Gemma/components/Simple.js +39 -0
- package/icons/es/Gemma/components/Text.d.ts +3 -0
- package/icons/es/Gemma/components/Text.js +39 -0
- package/icons/es/Gemma/index.d.ts +17 -0
- package/icons/es/Gemma/index.js +17 -0
- package/icons/es/Gemma/style.d.ts +8 -0
- package/icons/es/Gemma/style.js +10 -0
- package/icons/es/GiteeAI/components/Avatar.d.ts +5 -0
- package/icons/es/GiteeAI/components/Avatar.js +25 -0
- package/icons/es/GiteeAI/components/Combine.d.ts +5 -0
- package/icons/es/GiteeAI/components/Combine.js +26 -0
- package/icons/es/GiteeAI/components/Mono.d.ts +3 -0
- package/icons/es/GiteeAI/components/Mono.js +41 -0
- package/icons/es/GiteeAI/components/Text.d.ts +3 -0
- package/icons/es/GiteeAI/components/Text.js +39 -0
- package/icons/es/GiteeAI/index.d.ts +13 -0
- package/icons/es/GiteeAI/index.js +12 -0
- package/icons/es/GiteeAI/style.d.ts +7 -0
- package/icons/es/GiteeAI/style.js +9 -0
- package/icons/es/Github/components/Avatar.d.ts +5 -0
- package/icons/es/Github/components/Avatar.js +25 -0
- package/icons/es/Github/components/Combine.d.ts +5 -0
- package/icons/es/Github/components/Combine.js +26 -0
- package/icons/es/Github/components/Mono.d.ts +3 -0
- package/icons/es/Github/components/Mono.js +40 -0
- package/icons/es/Github/components/Text.d.ts +3 -0
- package/icons/es/Github/components/Text.js +39 -0
- package/icons/es/Github/index.d.ts +13 -0
- package/icons/es/Github/index.js +12 -0
- package/icons/es/Github/style.d.ts +7 -0
- package/icons/es/Github/style.js +9 -0
- package/icons/es/GithubCopilot/components/Avatar.d.ts +5 -0
- package/icons/es/GithubCopilot/components/Avatar.js +25 -0
- package/icons/es/GithubCopilot/components/Combine.d.ts +5 -0
- package/icons/es/GithubCopilot/components/Combine.js +26 -0
- package/icons/es/GithubCopilot/components/Mono.d.ts +3 -0
- package/icons/es/GithubCopilot/components/Mono.js +40 -0
- package/icons/es/GithubCopilot/components/Text.d.ts +3 -0
- package/icons/es/GithubCopilot/components/Text.js +39 -0
- package/icons/es/GithubCopilot/index.d.ts +13 -0
- package/icons/es/GithubCopilot/index.js +12 -0
- package/icons/es/GithubCopilot/style.d.ts +7 -0
- package/icons/es/GithubCopilot/style.js +9 -0
- package/icons/es/Glama/components/Avatar.d.ts +5 -0
- package/icons/es/Glama/components/Avatar.js +25 -0
- package/icons/es/Glama/components/Combine.d.ts +5 -0
- package/icons/es/Glama/components/Combine.js +26 -0
- package/icons/es/Glama/components/Mono.d.ts +3 -0
- package/icons/es/Glama/components/Mono.js +44 -0
- package/icons/es/Glama/components/Text.d.ts +3 -0
- package/icons/es/Glama/components/Text.js +39 -0
- package/icons/es/Glama/index.d.ts +13 -0
- package/icons/es/Glama/index.js +12 -0
- package/icons/es/Glama/style.d.ts +7 -0
- package/icons/es/Glama/style.js +9 -0
- package/icons/es/Glif/components/Avatar.d.ts +5 -0
- package/icons/es/Glif/components/Avatar.js +25 -0
- package/icons/es/Glif/components/Mono.d.ts +3 -0
- package/icons/es/Glif/components/Mono.js +40 -0
- package/icons/es/Glif/components/Text.d.ts +3 -0
- package/icons/es/Glif/components/Text.js +43 -0
- package/icons/es/Glif/index.d.ts +11 -0
- package/icons/es/Glif/index.js +10 -0
- package/icons/es/Glif/style.d.ts +7 -0
- package/icons/es/Glif/style.js +9 -0
- package/icons/es/Google/components/Avatar.d.ts +5 -0
- package/icons/es/Google/components/Avatar.js +25 -0
- package/icons/es/Google/components/BrandColor.d.ts +3 -0
- package/icons/es/Google/components/BrandColor.js +54 -0
- package/icons/es/Google/components/BrandMono.d.ts +3 -0
- package/icons/es/Google/components/BrandMono.js +39 -0
- package/icons/es/Google/components/Color.d.ts +3 -0
- package/icons/es/Google/components/Color.js +48 -0
- package/icons/es/Google/components/Mono.d.ts +3 -0
- package/icons/es/Google/components/Mono.js +46 -0
- package/icons/es/Google/index.d.ts +15 -0
- package/icons/es/Google/index.js +14 -0
- package/icons/es/Google/style.d.ts +5 -0
- package/icons/es/Google/style.js +7 -0
- package/icons/es/GoogleCloud/components/Avatar.d.ts +5 -0
- package/icons/es/GoogleCloud/components/Avatar.js +25 -0
- package/icons/es/GoogleCloud/components/BrandColor.d.ts +3 -0
- package/icons/es/GoogleCloud/components/BrandColor.js +57 -0
- package/icons/es/GoogleCloud/components/BrandMono.d.ts +3 -0
- package/icons/es/GoogleCloud/components/BrandMono.js +51 -0
- package/icons/es/GoogleCloud/components/Color.d.ts +3 -0
- package/icons/es/GoogleCloud/components/Color.js +48 -0
- package/icons/es/GoogleCloud/components/Mono.d.ts +3 -0
- package/icons/es/GoogleCloud/components/Mono.js +41 -0
- package/icons/es/GoogleCloud/index.d.ts +15 -0
- package/icons/es/GoogleCloud/index.js +14 -0
- package/icons/es/GoogleCloud/style.d.ts +5 -0
- package/icons/es/GoogleCloud/style.js +7 -0
- package/icons/es/Goose/components/Avatar.d.ts +5 -0
- package/icons/es/Goose/components/Avatar.js +25 -0
- package/icons/es/Goose/components/Combine.d.ts +5 -0
- package/icons/es/Goose/components/Combine.js +29 -0
- package/icons/es/Goose/components/Mono.d.ts +3 -0
- package/icons/es/Goose/components/Mono.js +40 -0
- package/icons/es/Goose/components/Text.d.ts +3 -0
- package/icons/es/Goose/components/Text.js +39 -0
- package/icons/es/Goose/index.d.ts +13 -0
- package/icons/es/Goose/index.js +12 -0
- package/icons/es/Goose/style.d.ts +7 -0
- package/icons/es/Goose/style.js +9 -0
- package/icons/es/Gradio/components/Avatar.d.ts +5 -0
- package/icons/es/Gradio/components/Avatar.js +25 -0
- package/icons/es/Gradio/components/Color.d.ts +3 -0
- package/icons/es/Gradio/components/Color.js +104 -0
- package/icons/es/Gradio/components/Combine.d.ts +7 -0
- package/icons/es/Gradio/components/Combine.js +32 -0
- package/icons/es/Gradio/components/Mono.d.ts +3 -0
- package/icons/es/Gradio/components/Mono.js +47 -0
- package/icons/es/Gradio/components/Text.d.ts +3 -0
- package/icons/es/Gradio/components/Text.js +39 -0
- package/icons/es/Gradio/index.d.ts +15 -0
- package/icons/es/Gradio/index.js +14 -0
- package/icons/es/Gradio/style.d.ts +7 -0
- package/icons/es/Gradio/style.js +9 -0
- package/icons/es/Greptile/components/Avatar.d.ts +5 -0
- package/icons/es/Greptile/components/Avatar.js +25 -0
- package/icons/es/Greptile/components/Color.d.ts +3 -0
- package/icons/es/Greptile/components/Color.js +41 -0
- package/icons/es/Greptile/components/Combine.d.ts +7 -0
- package/icons/es/Greptile/components/Combine.js +32 -0
- package/icons/es/Greptile/components/Mono.d.ts +3 -0
- package/icons/es/Greptile/components/Mono.js +41 -0
- package/icons/es/Greptile/components/Text.d.ts +3 -0
- package/icons/es/Greptile/components/Text.js +39 -0
- package/icons/es/Greptile/index.d.ts +15 -0
- package/icons/es/Greptile/index.js +14 -0
- package/icons/es/Greptile/style.d.ts +7 -0
- package/icons/es/Greptile/style.js +9 -0
- package/icons/es/Grok/components/Avatar.d.ts +5 -0
- package/icons/es/Grok/components/Avatar.js +25 -0
- package/icons/es/Grok/components/Combine.d.ts +5 -0
- package/icons/es/Grok/components/Combine.js +26 -0
- package/icons/es/Grok/components/Mono.d.ts +3 -0
- package/icons/es/Grok/components/Mono.js +40 -0
- package/icons/es/Grok/components/Text.d.ts +3 -0
- package/icons/es/Grok/components/Text.js +39 -0
- package/icons/es/Grok/index.d.ts +13 -0
- package/icons/es/Grok/index.js +12 -0
- package/icons/es/Grok/style.d.ts +7 -0
- package/icons/es/Grok/style.js +9 -0
- package/icons/es/Groq/components/Avatar.d.ts +5 -0
- package/icons/es/Groq/components/Avatar.js +25 -0
- package/icons/es/Groq/components/Combine.d.ts +4 -0
- package/icons/es/Groq/components/Combine.js +24 -0
- package/icons/es/Groq/components/Mono.d.ts +3 -0
- package/icons/es/Groq/components/Mono.js +40 -0
- package/icons/es/Groq/components/Text.d.ts +3 -0
- package/icons/es/Groq/components/Text.js +39 -0
- package/icons/es/Groq/index.d.ts +13 -0
- package/icons/es/Groq/index.js +12 -0
- package/icons/es/Groq/style.d.ts +7 -0
- package/icons/es/Groq/style.js +9 -0
- package/icons/es/Hailuo/components/Avatar.d.ts +5 -0
- package/icons/es/Hailuo/components/Avatar.js +25 -0
- package/icons/es/Hailuo/components/Color.d.ts +3 -0
- package/icons/es/Hailuo/components/Color.js +68 -0
- package/icons/es/Hailuo/components/Combine.d.ts +7 -0
- package/icons/es/Hailuo/components/Combine.js +32 -0
- package/icons/es/Hailuo/components/Mono.d.ts +3 -0
- package/icons/es/Hailuo/components/Mono.js +40 -0
- package/icons/es/Hailuo/components/Text.d.ts +3 -0
- package/icons/es/Hailuo/components/Text.js +39 -0
- package/icons/es/Hailuo/index.d.ts +16 -0
- package/icons/es/Hailuo/index.js +15 -0
- package/icons/es/Hailuo/style.d.ts +8 -0
- package/icons/es/Hailuo/style.js +10 -0
- package/icons/es/Haiper/components/Avatar.d.ts +5 -0
- package/icons/es/Haiper/components/Avatar.js +25 -0
- package/icons/es/Haiper/components/Combine.d.ts +5 -0
- package/icons/es/Haiper/components/Combine.js +29 -0
- package/icons/es/Haiper/components/Mono.d.ts +3 -0
- package/icons/es/Haiper/components/Mono.js +41 -0
- package/icons/es/Haiper/components/Text.d.ts +3 -0
- package/icons/es/Haiper/components/Text.js +39 -0
- package/icons/es/Haiper/index.d.ts +13 -0
- package/icons/es/Haiper/index.js +12 -0
- package/icons/es/Haiper/style.d.ts +7 -0
- package/icons/es/Haiper/style.js +9 -0
- package/icons/es/Hedra/components/Avatar.d.ts +5 -0
- package/icons/es/Hedra/components/Avatar.js +25 -0
- package/icons/es/Hedra/components/Combine.d.ts +5 -0
- package/icons/es/Hedra/components/Combine.js +29 -0
- package/icons/es/Hedra/components/Mono.d.ts +3 -0
- package/icons/es/Hedra/components/Mono.js +40 -0
- package/icons/es/Hedra/components/Text.d.ts +3 -0
- package/icons/es/Hedra/components/Text.js +40 -0
- package/icons/es/Hedra/index.d.ts +13 -0
- package/icons/es/Hedra/index.js +12 -0
- package/icons/es/Hedra/style.d.ts +7 -0
- package/icons/es/Hedra/style.js +9 -0
- package/icons/es/HermesAgent/components/Avatar.d.ts +5 -0
- package/icons/es/HermesAgent/components/Avatar.js +25 -0
- package/icons/es/HermesAgent/components/Combine.d.ts +5 -0
- package/icons/es/HermesAgent/components/Combine.js +26 -0
- package/icons/es/HermesAgent/components/Mono.d.ts +3 -0
- package/icons/es/HermesAgent/components/Mono.js +45 -0
- package/icons/es/HermesAgent/components/Text.d.ts +3 -0
- package/icons/es/HermesAgent/components/Text.js +39 -0
- package/icons/es/HermesAgent/index.d.ts +13 -0
- package/icons/es/HermesAgent/index.js +12 -0
- package/icons/es/HermesAgent/style.d.ts +7 -0
- package/icons/es/HermesAgent/style.js +9 -0
- package/icons/es/Higress/components/Avatar.d.ts +5 -0
- package/icons/es/Higress/components/Avatar.js +25 -0
- package/icons/es/Higress/components/Color.d.ts +3 -0
- package/icons/es/Higress/components/Color.js +90 -0
- package/icons/es/Higress/components/Combine.d.ts +7 -0
- package/icons/es/Higress/components/Combine.js +22 -0
- package/icons/es/Higress/components/Mono.d.ts +3 -0
- package/icons/es/Higress/components/Mono.js +48 -0
- package/icons/es/Higress/components/Text.d.ts +3 -0
- package/icons/es/Higress/components/Text.js +51 -0
- package/icons/es/Higress/components/TextColor.d.ts +3 -0
- package/icons/es/Higress/components/TextColor.js +97 -0
- package/icons/es/Higress/index.d.ts +16 -0
- package/icons/es/Higress/index.js +15 -0
- package/icons/es/Higress/style.d.ts +8 -0
- package/icons/es/Higress/style.js +10 -0
- package/icons/es/Huawei/components/Avatar.d.ts +5 -0
- package/icons/es/Huawei/components/Avatar.js +25 -0
- package/icons/es/Huawei/components/Color.d.ts +3 -0
- package/icons/es/Huawei/components/Color.js +39 -0
- package/icons/es/Huawei/components/Combine.d.ts +7 -0
- package/icons/es/Huawei/components/Combine.js +32 -0
- package/icons/es/Huawei/components/Mono.d.ts +3 -0
- package/icons/es/Huawei/components/Mono.js +40 -0
- package/icons/es/Huawei/components/Text.d.ts +3 -0
- package/icons/es/Huawei/components/Text.js +39 -0
- package/icons/es/Huawei/components/TextCn.d.ts +3 -0
- package/icons/es/Huawei/components/TextCn.js +39 -0
- package/icons/es/Huawei/index.d.ts +17 -0
- package/icons/es/Huawei/index.js +16 -0
- package/icons/es/Huawei/style.d.ts +7 -0
- package/icons/es/Huawei/style.js +9 -0
- package/icons/es/HuaweiCloud/components/Avatar.d.ts +5 -0
- package/icons/es/HuaweiCloud/components/Avatar.js +25 -0
- package/icons/es/HuaweiCloud/components/Color.d.ts +3 -0
- package/icons/es/HuaweiCloud/components/Color.js +39 -0
- package/icons/es/HuaweiCloud/components/Combine.d.ts +7 -0
- package/icons/es/HuaweiCloud/components/Combine.js +32 -0
- package/icons/es/HuaweiCloud/components/Mono.d.ts +3 -0
- package/icons/es/HuaweiCloud/components/Mono.js +40 -0
- package/icons/es/HuaweiCloud/components/Text.d.ts +3 -0
- package/icons/es/HuaweiCloud/components/Text.js +39 -0
- package/icons/es/HuaweiCloud/components/TextCn.d.ts +3 -0
- package/icons/es/HuaweiCloud/components/TextCn.js +39 -0
- package/icons/es/HuaweiCloud/index.d.ts +17 -0
- package/icons/es/HuaweiCloud/index.js +16 -0
- package/icons/es/HuaweiCloud/style.d.ts +7 -0
- package/icons/es/HuaweiCloud/style.js +9 -0
- package/icons/es/Hubstr/components/Avatar.d.ts +5 -0
- package/icons/es/Hubstr/components/Avatar.js +25 -0
- package/icons/es/Hubstr/components/Color.d.ts +3 -0
- package/icons/es/Hubstr/components/Color.js +20 -0
- package/icons/es/Hubstr/components/Combine.d.ts +7 -0
- package/icons/es/Hubstr/components/Combine.js +32 -0
- package/icons/es/Hubstr/components/Mono.d.ts +3 -0
- package/icons/es/Hubstr/components/Mono.js +15 -0
- package/icons/es/Hubstr/components/Morden.d.ts +3 -0
- package/icons/es/Hubstr/components/Morden.js +3 -0
- package/icons/es/Hubstr/components/Text.d.ts +3 -0
- package/icons/es/Hubstr/components/Text.js +34 -0
- package/icons/es/Hubstr/index.d.ts +17 -0
- package/icons/es/Hubstr/index.js +16 -0
- package/icons/es/Hubstr/style.d.ts +7 -0
- package/icons/es/Hubstr/style.js +9 -0
- package/icons/es/HuggingFace/components/Avatar.d.ts +5 -0
- package/icons/es/HuggingFace/components/Avatar.js +25 -0
- package/icons/es/HuggingFace/components/Color.d.ts +3 -0
- package/icons/es/HuggingFace/components/Color.js +54 -0
- package/icons/es/HuggingFace/components/Combine.d.ts +7 -0
- package/icons/es/HuggingFace/components/Combine.js +32 -0
- package/icons/es/HuggingFace/components/Mono.d.ts +3 -0
- package/icons/es/HuggingFace/components/Mono.js +40 -0
- package/icons/es/HuggingFace/components/Text.d.ts +3 -0
- package/icons/es/HuggingFace/components/Text.js +39 -0
- package/icons/es/HuggingFace/index.d.ts +15 -0
- package/icons/es/HuggingFace/index.js +14 -0
- package/icons/es/HuggingFace/style.d.ts +7 -0
- package/icons/es/HuggingFace/style.js +9 -0
- package/icons/es/Hunyuan/components/Avatar.d.ts +5 -0
- package/icons/es/Hunyuan/components/Avatar.js +25 -0
- package/icons/es/Hunyuan/components/Color.d.ts +3 -0
- package/icons/es/Hunyuan/components/Color.js +53 -0
- package/icons/es/Hunyuan/components/Combine.d.ts +7 -0
- package/icons/es/Hunyuan/components/Combine.js +32 -0
- package/icons/es/Hunyuan/components/Mono.d.ts +3 -0
- package/icons/es/Hunyuan/components/Mono.js +40 -0
- package/icons/es/Hunyuan/components/Text.d.ts +3 -0
- package/icons/es/Hunyuan/components/Text.js +39 -0
- package/icons/es/Hunyuan/index.d.ts +15 -0
- package/icons/es/Hunyuan/index.js +14 -0
- package/icons/es/Hunyuan/style.d.ts +7 -0
- package/icons/es/Hunyuan/style.js +9 -0
- package/icons/es/Hyperbolic/components/Avatar.d.ts +5 -0
- package/icons/es/Hyperbolic/components/Avatar.js +25 -0
- package/icons/es/Hyperbolic/components/Color.d.ts +3 -0
- package/icons/es/Hyperbolic/components/Color.js +39 -0
- package/icons/es/Hyperbolic/components/Combine.d.ts +7 -0
- package/icons/es/Hyperbolic/components/Combine.js +32 -0
- package/icons/es/Hyperbolic/components/Mono.d.ts +3 -0
- package/icons/es/Hyperbolic/components/Mono.js +40 -0
- package/icons/es/Hyperbolic/components/Text.d.ts +3 -0
- package/icons/es/Hyperbolic/components/Text.js +39 -0
- package/icons/es/Hyperbolic/index.d.ts +15 -0
- package/icons/es/Hyperbolic/index.js +14 -0
- package/icons/es/Hyperbolic/style.d.ts +7 -0
- package/icons/es/Hyperbolic/style.js +9 -0
- package/icons/es/IBM/components/Avatar.d.ts +5 -0
- package/icons/es/IBM/components/Avatar.js +25 -0
- package/icons/es/IBM/components/Combine.d.ts +5 -0
- package/icons/es/IBM/components/Combine.js +24 -0
- package/icons/es/IBM/components/Mono.d.ts +3 -0
- package/icons/es/IBM/components/Mono.js +41 -0
- package/icons/es/IBM/components/Text.d.ts +3 -0
- package/icons/es/IBM/components/Text.js +40 -0
- package/icons/es/IBM/index.d.ts +13 -0
- package/icons/es/IBM/index.js +12 -0
- package/icons/es/IBM/style.d.ts +7 -0
- package/icons/es/IBM/style.js +9 -0
- package/icons/es/IFlyTekCloud/components/Avatar.d.ts +5 -0
- package/icons/es/IFlyTekCloud/components/Avatar.js +25 -0
- package/icons/es/IFlyTekCloud/components/Color.d.ts +3 -0
- package/icons/es/IFlyTekCloud/components/Color.js +39 -0
- package/icons/es/IFlyTekCloud/components/Combine.d.ts +7 -0
- package/icons/es/IFlyTekCloud/components/Combine.js +32 -0
- package/icons/es/IFlyTekCloud/components/Mono.d.ts +3 -0
- package/icons/es/IFlyTekCloud/components/Mono.js +40 -0
- package/icons/es/IFlyTekCloud/components/Text.d.ts +3 -0
- package/icons/es/IFlyTekCloud/components/Text.js +39 -0
- package/icons/es/IFlyTekCloud/index.d.ts +15 -0
- package/icons/es/IFlyTekCloud/index.js +14 -0
- package/icons/es/IFlyTekCloud/style.d.ts +7 -0
- package/icons/es/IFlyTekCloud/style.js +9 -0
- package/icons/es/Ideogram/components/Avatar.d.ts +5 -0
- package/icons/es/Ideogram/components/Avatar.js +25 -0
- package/icons/es/Ideogram/components/Combine.d.ts +5 -0
- package/icons/es/Ideogram/components/Combine.js +26 -0
- package/icons/es/Ideogram/components/Mono.d.ts +3 -0
- package/icons/es/Ideogram/components/Mono.js +40 -0
- package/icons/es/Ideogram/components/Text.d.ts +3 -0
- package/icons/es/Ideogram/components/Text.js +39 -0
- package/icons/es/Ideogram/index.d.ts +13 -0
- package/icons/es/Ideogram/index.js +12 -0
- package/icons/es/Ideogram/style.d.ts +7 -0
- package/icons/es/Ideogram/style.js +9 -0
- package/icons/es/Inception/components/Avatar.d.ts +5 -0
- package/icons/es/Inception/components/Avatar.js +25 -0
- package/icons/es/Inception/components/Combine.d.ts +5 -0
- package/icons/es/Inception/components/Combine.js +26 -0
- package/icons/es/Inception/components/Mono.d.ts +3 -0
- package/icons/es/Inception/components/Mono.js +40 -0
- package/icons/es/Inception/components/Text.d.ts +3 -0
- package/icons/es/Inception/components/Text.js +47 -0
- package/icons/es/Inception/index.d.ts +13 -0
- package/icons/es/Inception/index.js +12 -0
- package/icons/es/Inception/style.d.ts +7 -0
- package/icons/es/Inception/style.js +9 -0
- package/icons/es/Inference/components/Avatar.d.ts +5 -0
- package/icons/es/Inference/components/Avatar.js +25 -0
- package/icons/es/Inference/components/Combine.d.ts +5 -0
- package/icons/es/Inference/components/Combine.js +24 -0
- package/icons/es/Inference/components/Mono.d.ts +3 -0
- package/icons/es/Inference/components/Mono.js +40 -0
- package/icons/es/Inference/components/Text.d.ts +3 -0
- package/icons/es/Inference/components/Text.js +39 -0
- package/icons/es/Inference/index.d.ts +13 -0
- package/icons/es/Inference/index.js +12 -0
- package/icons/es/Inference/style.d.ts +7 -0
- package/icons/es/Inference/style.js +9 -0
- package/icons/es/Infermatic/components/Avatar.d.ts +5 -0
- package/icons/es/Infermatic/components/Avatar.js +25 -0
- package/icons/es/Infermatic/components/Color.d.ts +3 -0
- package/icons/es/Infermatic/components/Color.js +39 -0
- package/icons/es/Infermatic/components/Combine.d.ts +7 -0
- package/icons/es/Infermatic/components/Combine.js +32 -0
- package/icons/es/Infermatic/components/Mono.d.ts +3 -0
- package/icons/es/Infermatic/components/Mono.js +40 -0
- package/icons/es/Infermatic/components/Text.d.ts +3 -0
- package/icons/es/Infermatic/components/Text.js +39 -0
- package/icons/es/Infermatic/index.d.ts +15 -0
- package/icons/es/Infermatic/index.js +14 -0
- package/icons/es/Infermatic/style.d.ts +7 -0
- package/icons/es/Infermatic/style.js +9 -0
- package/icons/es/Infinigence/components/Avatar.d.ts +5 -0
- package/icons/es/Infinigence/components/Avatar.js +25 -0
- package/icons/es/Infinigence/components/Color.d.ts +3 -0
- package/icons/es/Infinigence/components/Color.js +42 -0
- package/icons/es/Infinigence/components/Combine.d.ts +7 -0
- package/icons/es/Infinigence/components/Combine.js +32 -0
- package/icons/es/Infinigence/components/Mono.d.ts +3 -0
- package/icons/es/Infinigence/components/Mono.js +42 -0
- package/icons/es/Infinigence/components/Text.d.ts +3 -0
- package/icons/es/Infinigence/components/Text.js +43 -0
- package/icons/es/Infinigence/components/TextCn.d.ts +3 -0
- package/icons/es/Infinigence/components/TextCn.js +43 -0
- package/icons/es/Infinigence/index.d.ts +17 -0
- package/icons/es/Infinigence/index.js +16 -0
- package/icons/es/Infinigence/style.d.ts +7 -0
- package/icons/es/Infinigence/style.js +9 -0
- package/icons/es/Inflection/components/Avatar.d.ts +5 -0
- package/icons/es/Inflection/components/Avatar.js +25 -0
- package/icons/es/Inflection/components/Combine.d.ts +5 -0
- package/icons/es/Inflection/components/Combine.js +24 -0
- package/icons/es/Inflection/components/Mono.d.ts +3 -0
- package/icons/es/Inflection/components/Mono.js +40 -0
- package/icons/es/Inflection/components/Text.d.ts +3 -0
- package/icons/es/Inflection/components/Text.js +39 -0
- package/icons/es/Inflection/index.d.ts +13 -0
- package/icons/es/Inflection/index.js +12 -0
- package/icons/es/Inflection/style.d.ts +7 -0
- package/icons/es/Inflection/style.js +9 -0
- package/icons/es/InternLM/components/Avatar.d.ts +5 -0
- package/icons/es/InternLM/components/Avatar.js +25 -0
- package/icons/es/InternLM/components/Color.d.ts +3 -0
- package/icons/es/InternLM/components/Color.js +77 -0
- package/icons/es/InternLM/components/Combine.d.ts +7 -0
- package/icons/es/InternLM/components/Combine.js +36 -0
- package/icons/es/InternLM/components/Mono.d.ts +3 -0
- package/icons/es/InternLM/components/Mono.js +67 -0
- package/icons/es/InternLM/components/Text.d.ts +3 -0
- package/icons/es/InternLM/components/Text.js +42 -0
- package/icons/es/InternLM/index.d.ts +15 -0
- package/icons/es/InternLM/index.js +14 -0
- package/icons/es/InternLM/style.d.ts +7 -0
- package/icons/es/InternLM/style.js +9 -0
- package/icons/es/Jimeng/components/Avatar.d.ts +5 -0
- package/icons/es/Jimeng/components/Avatar.js +25 -0
- package/icons/es/Jimeng/components/Color.d.ts +3 -0
- package/icons/es/Jimeng/components/Color.js +182 -0
- package/icons/es/Jimeng/components/Combine.d.ts +7 -0
- package/icons/es/Jimeng/components/Combine.js +32 -0
- package/icons/es/Jimeng/components/Mono.d.ts +3 -0
- package/icons/es/Jimeng/components/Mono.js +40 -0
- package/icons/es/Jimeng/components/Text.d.ts +3 -0
- package/icons/es/Jimeng/components/Text.js +39 -0
- package/icons/es/Jimeng/index.d.ts +15 -0
- package/icons/es/Jimeng/index.js +14 -0
- package/icons/es/Jimeng/style.d.ts +7 -0
- package/icons/es/Jimeng/style.js +9 -0
- package/icons/es/Jina/components/Avatar.d.ts +5 -0
- package/icons/es/Jina/components/Avatar.js +25 -0
- package/icons/es/Jina/components/Mono.d.ts +3 -0
- package/icons/es/Jina/components/Mono.js +40 -0
- package/icons/es/Jina/components/Text.d.ts +3 -0
- package/icons/es/Jina/components/Text.js +43 -0
- package/icons/es/Jina/index.d.ts +11 -0
- package/icons/es/Jina/index.js +10 -0
- package/icons/es/Jina/style.d.ts +7 -0
- package/icons/es/Jina/style.js +9 -0
- package/icons/es/Junie/components/Avatar.d.ts +5 -0
- package/icons/es/Junie/components/Avatar.js +25 -0
- package/icons/es/Junie/components/Color.d.ts +3 -0
- package/icons/es/Junie/components/Color.js +39 -0
- package/icons/es/Junie/components/Combine.d.ts +7 -0
- package/icons/es/Junie/components/Combine.js +32 -0
- package/icons/es/Junie/components/Mono.d.ts +3 -0
- package/icons/es/Junie/components/Mono.js +40 -0
- package/icons/es/Junie/components/Text.d.ts +3 -0
- package/icons/es/Junie/components/Text.js +39 -0
- package/icons/es/Junie/index.d.ts +15 -0
- package/icons/es/Junie/index.js +14 -0
- package/icons/es/Junie/style.d.ts +7 -0
- package/icons/es/Junie/style.js +9 -0
- package/icons/es/KiloCode/components/Avatar.d.ts +5 -0
- package/icons/es/KiloCode/components/Avatar.js +25 -0
- package/icons/es/KiloCode/components/Combine.d.ts +5 -0
- package/icons/es/KiloCode/components/Combine.js +26 -0
- package/icons/es/KiloCode/components/Inner.d.ts +3 -0
- package/icons/es/KiloCode/components/Inner.js +40 -0
- package/icons/es/KiloCode/components/Mono.d.ts +3 -0
- package/icons/es/KiloCode/components/Mono.js +40 -0
- package/icons/es/KiloCode/components/Text.d.ts +3 -0
- package/icons/es/KiloCode/components/Text.js +39 -0
- package/icons/es/KiloCode/index.d.ts +13 -0
- package/icons/es/KiloCode/index.js +12 -0
- package/icons/es/KiloCode/style.d.ts +7 -0
- package/icons/es/KiloCode/style.js +9 -0
- package/icons/es/Kimi/components/Avatar.d.ts +5 -0
- package/icons/es/Kimi/components/Avatar.js +25 -0
- package/icons/es/Kimi/components/Color.d.ts +3 -0
- package/icons/es/Kimi/components/Color.js +42 -0
- package/icons/es/Kimi/components/Combine.d.ts +5 -0
- package/icons/es/Kimi/components/Combine.js +32 -0
- package/icons/es/Kimi/components/Mono.d.ts +3 -0
- package/icons/es/Kimi/components/Mono.js +42 -0
- package/icons/es/Kimi/components/Text.d.ts +3 -0
- package/icons/es/Kimi/components/Text.js +39 -0
- package/icons/es/Kimi/index.d.ts +15 -0
- package/icons/es/Kimi/index.js +14 -0
- package/icons/es/Kimi/style.d.ts +7 -0
- package/icons/es/Kimi/style.js +9 -0
- package/icons/es/Kiro/components/Avatar.d.ts +5 -0
- package/icons/es/Kiro/components/Avatar.js +25 -0
- package/icons/es/Kiro/components/Color.d.ts +3 -0
- package/icons/es/Kiro/components/Color.js +45 -0
- package/icons/es/Kiro/components/Combine.d.ts +7 -0
- package/icons/es/Kiro/components/Combine.js +32 -0
- package/icons/es/Kiro/components/Mono.d.ts +3 -0
- package/icons/es/Kiro/components/Mono.js +40 -0
- package/icons/es/Kiro/components/Text.d.ts +3 -0
- package/icons/es/Kiro/components/Text.js +43 -0
- package/icons/es/Kiro/index.d.ts +15 -0
- package/icons/es/Kiro/index.js +14 -0
- package/icons/es/Kiro/style.d.ts +7 -0
- package/icons/es/Kiro/style.js +9 -0
- package/icons/es/Kling/components/Avatar.d.ts +5 -0
- package/icons/es/Kling/components/Avatar.js +25 -0
- package/icons/es/Kling/components/Color.d.ts +3 -0
- package/icons/es/Kling/components/Color.js +129 -0
- package/icons/es/Kling/components/Combine.d.ts +7 -0
- package/icons/es/Kling/components/Combine.js +32 -0
- package/icons/es/Kling/components/Mono.d.ts +3 -0
- package/icons/es/Kling/components/Mono.js +41 -0
- package/icons/es/Kling/components/Text.d.ts +3 -0
- package/icons/es/Kling/components/Text.js +39 -0
- package/icons/es/Kling/index.d.ts +16 -0
- package/icons/es/Kling/index.js +15 -0
- package/icons/es/Kling/style.d.ts +8 -0
- package/icons/es/Kling/style.js +10 -0
- package/icons/es/Kluster/components/Avatar.d.ts +5 -0
- package/icons/es/Kluster/components/Avatar.js +25 -0
- package/icons/es/Kluster/components/Color.d.ts +3 -0
- package/icons/es/Kluster/components/Color.js +42 -0
- package/icons/es/Kluster/components/Combine.d.ts +7 -0
- package/icons/es/Kluster/components/Combine.js +32 -0
- package/icons/es/Kluster/components/Mono.d.ts +3 -0
- package/icons/es/Kluster/components/Mono.js +42 -0
- package/icons/es/Kluster/components/Text.d.ts +3 -0
- package/icons/es/Kluster/components/Text.js +39 -0
- package/icons/es/Kluster/index.d.ts +15 -0
- package/icons/es/Kluster/index.js +14 -0
- package/icons/es/Kluster/style.d.ts +7 -0
- package/icons/es/Kluster/style.js +9 -0
- package/icons/es/Kolors/components/Avatar.d.ts +5 -0
- package/icons/es/Kolors/components/Avatar.js +25 -0
- package/icons/es/Kolors/components/Color.d.ts +3 -0
- package/icons/es/Kolors/components/Color.js +61 -0
- package/icons/es/Kolors/components/Combine.d.ts +7 -0
- package/icons/es/Kolors/components/Combine.js +32 -0
- package/icons/es/Kolors/components/Mono.d.ts +3 -0
- package/icons/es/Kolors/components/Mono.js +41 -0
- package/icons/es/Kolors/components/Text.d.ts +3 -0
- package/icons/es/Kolors/components/Text.js +39 -0
- package/icons/es/Kolors/index.d.ts +16 -0
- package/icons/es/Kolors/index.js +15 -0
- package/icons/es/Kolors/style.d.ts +8 -0
- package/icons/es/Kolors/style.js +10 -0
- package/icons/es/Krea/components/Avatar.d.ts +5 -0
- package/icons/es/Krea/components/Avatar.js +25 -0
- package/icons/es/Krea/components/Combine.d.ts +5 -0
- package/icons/es/Krea/components/Combine.js +29 -0
- package/icons/es/Krea/components/Mono.d.ts +3 -0
- package/icons/es/Krea/components/Mono.js +42 -0
- package/icons/es/Krea/components/Text.d.ts +3 -0
- package/icons/es/Krea/components/Text.js +39 -0
- package/icons/es/Krea/index.d.ts +13 -0
- package/icons/es/Krea/index.js +12 -0
- package/icons/es/Krea/style.d.ts +7 -0
- package/icons/es/Krea/style.js +9 -0
- package/icons/es/KwaiKAT/components/Avatar.d.ts +5 -0
- package/icons/es/KwaiKAT/components/Avatar.js +25 -0
- package/icons/es/KwaiKAT/components/Combine.d.ts +7 -0
- package/icons/es/KwaiKAT/components/Combine.js +30 -0
- package/icons/es/KwaiKAT/components/Mono.d.ts +3 -0
- package/icons/es/KwaiKAT/components/Mono.js +42 -0
- package/icons/es/KwaiKAT/components/Text.d.ts +3 -0
- package/icons/es/KwaiKAT/components/Text.js +44 -0
- package/icons/es/KwaiKAT/components/TextColor.d.ts +3 -0
- package/icons/es/KwaiKAT/components/TextColor.js +46 -0
- package/icons/es/KwaiKAT/index.d.ts +15 -0
- package/icons/es/KwaiKAT/index.js +14 -0
- package/icons/es/KwaiKAT/style.d.ts +7 -0
- package/icons/es/KwaiKAT/style.js +9 -0
- package/icons/es/Kwaipilot/components/Avatar.d.ts +5 -0
- package/icons/es/Kwaipilot/components/Avatar.js +25 -0
- package/icons/es/Kwaipilot/components/Color.d.ts +3 -0
- package/icons/es/Kwaipilot/components/Color.js +82 -0
- package/icons/es/Kwaipilot/components/Combine.d.ts +7 -0
- package/icons/es/Kwaipilot/components/Combine.js +32 -0
- package/icons/es/Kwaipilot/components/Mono.d.ts +3 -0
- package/icons/es/Kwaipilot/components/Mono.js +41 -0
- package/icons/es/Kwaipilot/components/Text.d.ts +3 -0
- package/icons/es/Kwaipilot/components/Text.js +47 -0
- package/icons/es/Kwaipilot/index.d.ts +15 -0
- package/icons/es/Kwaipilot/index.js +14 -0
- package/icons/es/Kwaipilot/style.d.ts +7 -0
- package/icons/es/Kwaipilot/style.js +9 -0
- package/icons/es/LG/components/Avatar.d.ts +5 -0
- package/icons/es/LG/components/Avatar.js +24 -0
- package/icons/es/LG/components/Color.d.ts +3 -0
- package/icons/es/LG/components/Color.js +39 -0
- package/icons/es/LG/components/Combine.d.ts +7 -0
- package/icons/es/LG/components/Combine.js +32 -0
- package/icons/es/LG/components/Inner.d.ts +3 -0
- package/icons/es/LG/components/Inner.js +40 -0
- package/icons/es/LG/components/Mono.d.ts +3 -0
- package/icons/es/LG/components/Mono.js +40 -0
- package/icons/es/LG/components/Text.d.ts +3 -0
- package/icons/es/LG/components/Text.js +39 -0
- package/icons/es/LG/index.d.ts +15 -0
- package/icons/es/LG/index.js +14 -0
- package/icons/es/LG/style.d.ts +7 -0
- package/icons/es/LG/style.js +9 -0
- package/icons/es/LLaVA/components/Avatar.d.ts +5 -0
- package/icons/es/LLaVA/components/Avatar.js +25 -0
- package/icons/es/LLaVA/components/Color.d.ts +3 -0
- package/icons/es/LLaVA/components/Color.js +371 -0
- package/icons/es/LLaVA/components/Combine.d.ts +7 -0
- package/icons/es/LLaVA/components/Combine.js +36 -0
- package/icons/es/LLaVA/components/Mono.d.ts +3 -0
- package/icons/es/LLaVA/components/Mono.js +40 -0
- package/icons/es/LLaVA/components/Text.d.ts +3 -0
- package/icons/es/LLaVA/components/Text.js +39 -0
- package/icons/es/LLaVA/index.d.ts +16 -0
- package/icons/es/LLaVA/index.js +15 -0
- package/icons/es/LLaVA/style.d.ts +8 -0
- package/icons/es/LLaVA/style.js +10 -0
- package/icons/es/Lambda/components/Avatar.d.ts +5 -0
- package/icons/es/Lambda/components/Avatar.js +25 -0
- package/icons/es/Lambda/components/Combine.d.ts +5 -0
- package/icons/es/Lambda/components/Combine.js +26 -0
- package/icons/es/Lambda/components/Mono.d.ts +3 -0
- package/icons/es/Lambda/components/Mono.js +40 -0
- package/icons/es/Lambda/components/Text.d.ts +3 -0
- package/icons/es/Lambda/components/Text.js +39 -0
- package/icons/es/Lambda/index.d.ts +13 -0
- package/icons/es/Lambda/index.js +12 -0
- package/icons/es/Lambda/style.d.ts +7 -0
- package/icons/es/Lambda/style.js +9 -0
- package/icons/es/LangChain/components/Avatar.d.ts +5 -0
- package/icons/es/LangChain/components/Avatar.js +25 -0
- package/icons/es/LangChain/components/Color.d.ts +3 -0
- package/icons/es/LangChain/components/Color.js +39 -0
- package/icons/es/LangChain/components/Combine.d.ts +7 -0
- package/icons/es/LangChain/components/Combine.js +32 -0
- package/icons/es/LangChain/components/Mono.d.ts +3 -0
- package/icons/es/LangChain/components/Mono.js +40 -0
- package/icons/es/LangChain/components/Text.d.ts +3 -0
- package/icons/es/LangChain/components/Text.js +39 -0
- package/icons/es/LangChain/index.d.ts +15 -0
- package/icons/es/LangChain/index.js +14 -0
- package/icons/es/LangChain/style.d.ts +7 -0
- package/icons/es/LangChain/style.js +9 -0
- package/icons/es/LangGraph/components/Avatar.d.ts +5 -0
- package/icons/es/LangGraph/components/Avatar.js +25 -0
- package/icons/es/LangGraph/components/Color.d.ts +3 -0
- package/icons/es/LangGraph/components/Color.js +41 -0
- package/icons/es/LangGraph/components/Combine.d.ts +7 -0
- package/icons/es/LangGraph/components/Combine.js +32 -0
- package/icons/es/LangGraph/components/Mono.d.ts +3 -0
- package/icons/es/LangGraph/components/Mono.js +41 -0
- package/icons/es/LangGraph/components/Text.d.ts +3 -0
- package/icons/es/LangGraph/components/Text.js +39 -0
- package/icons/es/LangGraph/index.d.ts +15 -0
- package/icons/es/LangGraph/index.js +14 -0
- package/icons/es/LangGraph/style.d.ts +7 -0
- package/icons/es/LangGraph/style.js +9 -0
- package/icons/es/LangSmith/components/Avatar.d.ts +5 -0
- package/icons/es/LangSmith/components/Avatar.js +25 -0
- package/icons/es/LangSmith/components/Color.d.ts +3 -0
- package/icons/es/LangSmith/components/Color.js +39 -0
- package/icons/es/LangSmith/components/Combine.d.ts +7 -0
- package/icons/es/LangSmith/components/Combine.js +32 -0
- package/icons/es/LangSmith/components/Mono.d.ts +3 -0
- package/icons/es/LangSmith/components/Mono.js +40 -0
- package/icons/es/LangSmith/components/Text.d.ts +3 -0
- package/icons/es/LangSmith/components/Text.js +39 -0
- package/icons/es/LangSmith/index.d.ts +15 -0
- package/icons/es/LangSmith/index.js +14 -0
- package/icons/es/LangSmith/style.d.ts +7 -0
- package/icons/es/LangSmith/style.js +9 -0
- package/icons/es/Langfuse/components/Avatar.d.ts +5 -0
- package/icons/es/Langfuse/components/Avatar.js +25 -0
- package/icons/es/Langfuse/components/Color.d.ts +3 -0
- package/icons/es/Langfuse/components/Color.js +45 -0
- package/icons/es/Langfuse/components/Combine.d.ts +7 -0
- package/icons/es/Langfuse/components/Combine.js +32 -0
- package/icons/es/Langfuse/components/Mono.d.ts +3 -0
- package/icons/es/Langfuse/components/Mono.js +44 -0
- package/icons/es/Langfuse/components/Text.d.ts +3 -0
- package/icons/es/Langfuse/components/Text.js +39 -0
- package/icons/es/Langfuse/index.d.ts +15 -0
- package/icons/es/Langfuse/index.js +14 -0
- package/icons/es/Langfuse/style.d.ts +7 -0
- package/icons/es/Langfuse/style.js +9 -0
- package/icons/es/LeptonAI/components/Avatar.d.ts +5 -0
- package/icons/es/LeptonAI/components/Avatar.js +25 -0
- package/icons/es/LeptonAI/components/Color.d.ts +3 -0
- package/icons/es/LeptonAI/components/Color.js +49 -0
- package/icons/es/LeptonAI/components/Combine.d.ts +7 -0
- package/icons/es/LeptonAI/components/Combine.js +32 -0
- package/icons/es/LeptonAI/components/Mono.d.ts +3 -0
- package/icons/es/LeptonAI/components/Mono.js +46 -0
- package/icons/es/LeptonAI/components/Text.d.ts +3 -0
- package/icons/es/LeptonAI/components/Text.js +39 -0
- package/icons/es/LeptonAI/index.d.ts +15 -0
- package/icons/es/LeptonAI/index.js +14 -0
- package/icons/es/LeptonAI/style.d.ts +7 -0
- package/icons/es/LeptonAI/style.js +9 -0
- package/icons/es/Lightricks/components/Avatar.d.ts +5 -0
- package/icons/es/Lightricks/components/Avatar.js +25 -0
- package/icons/es/Lightricks/components/Combine.d.ts +5 -0
- package/icons/es/Lightricks/components/Combine.js +29 -0
- package/icons/es/Lightricks/components/Mono.d.ts +3 -0
- package/icons/es/Lightricks/components/Mono.js +40 -0
- package/icons/es/Lightricks/components/Text.d.ts +3 -0
- package/icons/es/Lightricks/components/Text.js +39 -0
- package/icons/es/Lightricks/index.d.ts +13 -0
- package/icons/es/Lightricks/index.js +12 -0
- package/icons/es/Lightricks/style.d.ts +7 -0
- package/icons/es/Lightricks/style.js +9 -0
- package/icons/es/Liquid/components/Avatar.d.ts +5 -0
- package/icons/es/Liquid/components/Avatar.js +25 -0
- package/icons/es/Liquid/components/Combine.d.ts +5 -0
- package/icons/es/Liquid/components/Combine.js +26 -0
- package/icons/es/Liquid/components/Mono.d.ts +3 -0
- package/icons/es/Liquid/components/Mono.js +40 -0
- package/icons/es/Liquid/components/Text.d.ts +3 -0
- package/icons/es/Liquid/components/Text.js +39 -0
- package/icons/es/Liquid/index.d.ts +13 -0
- package/icons/es/Liquid/index.js +12 -0
- package/icons/es/Liquid/style.d.ts +7 -0
- package/icons/es/Liquid/style.js +9 -0
- package/icons/es/LiveKit/components/Avatar.d.ts +5 -0
- package/icons/es/LiveKit/components/Avatar.js +25 -0
- package/icons/es/LiveKit/components/Color.d.ts +3 -0
- package/icons/es/LiveKit/components/Color.js +42 -0
- package/icons/es/LiveKit/components/Combine.d.ts +7 -0
- package/icons/es/LiveKit/components/Combine.js +32 -0
- package/icons/es/LiveKit/components/Mono.d.ts +3 -0
- package/icons/es/LiveKit/components/Mono.js +42 -0
- package/icons/es/LiveKit/components/Text.d.ts +3 -0
- package/icons/es/LiveKit/components/Text.js +39 -0
- package/icons/es/LiveKit/index.d.ts +15 -0
- package/icons/es/LiveKit/index.js +14 -0
- package/icons/es/LiveKit/style.d.ts +7 -0
- package/icons/es/LiveKit/style.js +9 -0
- package/icons/es/LlamaIndex/components/Avatar.d.ts +5 -0
- package/icons/es/LlamaIndex/components/Avatar.js +25 -0
- package/icons/es/LlamaIndex/components/Color.d.ts +3 -0
- package/icons/es/LlamaIndex/components/Color.js +65 -0
- package/icons/es/LlamaIndex/components/Combine.d.ts +7 -0
- package/icons/es/LlamaIndex/components/Combine.js +29 -0
- package/icons/es/LlamaIndex/components/Mono.d.ts +3 -0
- package/icons/es/LlamaIndex/components/Mono.js +40 -0
- package/icons/es/LlamaIndex/components/Text.d.ts +3 -0
- package/icons/es/LlamaIndex/components/Text.js +54 -0
- package/icons/es/LlamaIndex/index.d.ts +15 -0
- package/icons/es/LlamaIndex/index.js +14 -0
- package/icons/es/LlamaIndex/style.d.ts +7 -0
- package/icons/es/LlamaIndex/style.js +9 -0
- package/icons/es/LlmApi/components/Avatar.d.ts +5 -0
- package/icons/es/LlmApi/components/Avatar.js +25 -0
- package/icons/es/LlmApi/components/Color.d.ts +3 -0
- package/icons/es/LlmApi/components/Color.js +58 -0
- package/icons/es/LlmApi/components/Combine.d.ts +7 -0
- package/icons/es/LlmApi/components/Combine.js +32 -0
- package/icons/es/LlmApi/components/Mono.d.ts +3 -0
- package/icons/es/LlmApi/components/Mono.js +43 -0
- package/icons/es/LlmApi/components/Text.d.ts +3 -0
- package/icons/es/LlmApi/components/Text.js +40 -0
- package/icons/es/LlmApi/index.d.ts +15 -0
- package/icons/es/LlmApi/index.js +14 -0
- package/icons/es/LlmApi/style.d.ts +7 -0
- package/icons/es/LlmApi/style.js +7 -0
- package/icons/es/LmStudio/components/Avatar.d.ts +5 -0
- package/icons/es/LmStudio/components/Avatar.js +25 -0
- package/icons/es/LmStudio/components/Combine.d.ts +7 -0
- package/icons/es/LmStudio/components/Combine.js +35 -0
- package/icons/es/LmStudio/components/Mono.d.ts +3 -0
- package/icons/es/LmStudio/components/Mono.js +43 -0
- package/icons/es/LmStudio/components/Text.d.ts +3 -0
- package/icons/es/LmStudio/components/Text.js +44 -0
- package/icons/es/LmStudio/index.d.ts +14 -0
- package/icons/es/LmStudio/index.js +13 -0
- package/icons/es/LmStudio/style.d.ts +8 -0
- package/icons/es/LmStudio/style.js +10 -0
- package/icons/es/LongCat/components/Avatar.d.ts +5 -0
- package/icons/es/LongCat/components/Avatar.js +25 -0
- package/icons/es/LongCat/components/Color.d.ts +3 -0
- package/icons/es/LongCat/components/Color.js +44 -0
- package/icons/es/LongCat/components/Combine.d.ts +7 -0
- package/icons/es/LongCat/components/Combine.js +32 -0
- package/icons/es/LongCat/components/Mono.d.ts +3 -0
- package/icons/es/LongCat/components/Mono.js +43 -0
- package/icons/es/LongCat/components/Text.d.ts +3 -0
- package/icons/es/LongCat/components/Text.js +40 -0
- package/icons/es/LongCat/index.d.ts +15 -0
- package/icons/es/LongCat/index.js +14 -0
- package/icons/es/LongCat/style.d.ts +7 -0
- package/icons/es/LongCat/style.js +9 -0
- package/icons/es/Lovable/components/Avatar.d.ts +5 -0
- package/icons/es/Lovable/components/Avatar.js +25 -0
- package/icons/es/Lovable/components/Color.d.ts +3 -0
- package/icons/es/Lovable/components/Color.js +70 -0
- package/icons/es/Lovable/components/Combine.d.ts +7 -0
- package/icons/es/Lovable/components/Combine.js +32 -0
- package/icons/es/Lovable/components/Mono.d.ts +3 -0
- package/icons/es/Lovable/components/Mono.js +41 -0
- package/icons/es/Lovable/components/Text.d.ts +3 -0
- package/icons/es/Lovable/components/Text.js +39 -0
- package/icons/es/Lovable/index.d.ts +15 -0
- package/icons/es/Lovable/index.js +14 -0
- package/icons/es/Lovable/style.d.ts +7 -0
- package/icons/es/Lovable/style.js +9 -0
- package/icons/es/Lovart/components/Avatar.d.ts +5 -0
- package/icons/es/Lovart/components/Avatar.js +25 -0
- package/icons/es/Lovart/components/Combine.d.ts +5 -0
- package/icons/es/Lovart/components/Combine.js +26 -0
- package/icons/es/Lovart/components/Inner.d.ts +3 -0
- package/icons/es/Lovart/components/Inner.js +45 -0
- package/icons/es/Lovart/components/Mono.d.ts +3 -0
- package/icons/es/Lovart/components/Mono.js +40 -0
- package/icons/es/Lovart/components/Text.d.ts +3 -0
- package/icons/es/Lovart/components/Text.js +39 -0
- package/icons/es/Lovart/index.d.ts +13 -0
- package/icons/es/Lovart/index.js +12 -0
- package/icons/es/Lovart/style.d.ts +7 -0
- package/icons/es/Lovart/style.js +9 -0
- package/icons/es/Luma/components/Avatar.d.ts +5 -0
- package/icons/es/Luma/components/Avatar.js +25 -0
- package/icons/es/Luma/components/Color.d.ts +3 -0
- package/icons/es/Luma/components/Color.js +144 -0
- package/icons/es/Luma/components/Combine.d.ts +7 -0
- package/icons/es/Luma/components/Combine.js +32 -0
- package/icons/es/Luma/components/Mono.d.ts +3 -0
- package/icons/es/Luma/components/Mono.js +44 -0
- package/icons/es/Luma/components/Text.d.ts +3 -0
- package/icons/es/Luma/components/Text.js +39 -0
- package/icons/es/Luma/index.d.ts +16 -0
- package/icons/es/Luma/index.js +14 -0
- package/icons/es/Luma/style.d.ts +7 -0
- package/icons/es/Luma/style.js +9 -0
- package/icons/es/MCP/components/Avatar.d.ts +5 -0
- package/icons/es/MCP/components/Avatar.js +25 -0
- package/icons/es/MCP/components/Combine.d.ts +5 -0
- package/icons/es/MCP/components/Combine.js +29 -0
- package/icons/es/MCP/components/Mono.d.ts +3 -0
- package/icons/es/MCP/components/Mono.js +42 -0
- package/icons/es/MCP/components/Text.d.ts +3 -0
- package/icons/es/MCP/components/Text.js +39 -0
- package/icons/es/MCP/index.d.ts +13 -0
- package/icons/es/MCP/index.js +12 -0
- package/icons/es/MCP/style.d.ts +7 -0
- package/icons/es/MCP/style.js +9 -0
- package/icons/es/Magic/components/Avatar.d.ts +5 -0
- package/icons/es/Magic/components/Avatar.js +25 -0
- package/icons/es/Magic/components/Combine.d.ts +5 -0
- package/icons/es/Magic/components/Combine.js +26 -0
- package/icons/es/Magic/components/Mono.d.ts +3 -0
- package/icons/es/Magic/components/Mono.js +42 -0
- package/icons/es/Magic/components/Text.d.ts +3 -0
- package/icons/es/Magic/components/Text.js +39 -0
- package/icons/es/Magic/index.d.ts +13 -0
- package/icons/es/Magic/index.js +12 -0
- package/icons/es/Magic/style.d.ts +7 -0
- package/icons/es/Magic/style.js +9 -0
- package/icons/es/Make/components/Avatar.d.ts +5 -0
- package/icons/es/Make/components/Avatar.js +25 -0
- package/icons/es/Make/components/Color.d.ts +3 -0
- package/icons/es/Make/components/Color.js +134 -0
- package/icons/es/Make/components/Combine.d.ts +7 -0
- package/icons/es/Make/components/Combine.js +32 -0
- package/icons/es/Make/components/Mono.d.ts +3 -0
- package/icons/es/Make/components/Mono.js +44 -0
- package/icons/es/Make/components/Text.d.ts +3 -0
- package/icons/es/Make/components/Text.js +41 -0
- package/icons/es/Make/index.d.ts +15 -0
- package/icons/es/Make/index.js +14 -0
- package/icons/es/Make/style.d.ts +7 -0
- package/icons/es/Make/style.js +9 -0
- package/icons/es/Manus/components/Avatar.d.ts +5 -0
- package/icons/es/Manus/components/Avatar.js +25 -0
- package/icons/es/Manus/components/Combine.d.ts +5 -0
- package/icons/es/Manus/components/Combine.js +26 -0
- package/icons/es/Manus/components/Mono.d.ts +3 -0
- package/icons/es/Manus/components/Mono.js +45 -0
- package/icons/es/Manus/components/Text.d.ts +3 -0
- package/icons/es/Manus/components/Text.js +39 -0
- package/icons/es/Manus/index.d.ts +13 -0
- package/icons/es/Manus/index.js +12 -0
- package/icons/es/Manus/style.d.ts +7 -0
- package/icons/es/Manus/style.js +9 -0
- package/icons/es/Mastra/components/Avatar.d.ts +5 -0
- package/icons/es/Mastra/components/Avatar.js +25 -0
- package/icons/es/Mastra/components/Combine.d.ts +5 -0
- package/icons/es/Mastra/components/Combine.js +26 -0
- package/icons/es/Mastra/components/Mono.d.ts +3 -0
- package/icons/es/Mastra/components/Mono.js +43 -0
- package/icons/es/Mastra/components/Text.d.ts +3 -0
- package/icons/es/Mastra/components/Text.js +39 -0
- package/icons/es/Mastra/index.d.ts +13 -0
- package/icons/es/Mastra/index.js +12 -0
- package/icons/es/Mastra/style.d.ts +7 -0
- package/icons/es/Mastra/style.js +9 -0
- package/icons/es/McpSo/components/Avatar.d.ts +5 -0
- package/icons/es/McpSo/components/Avatar.js +25 -0
- package/icons/es/McpSo/components/Color.d.ts +3 -0
- package/icons/es/McpSo/components/Color.js +42 -0
- package/icons/es/McpSo/components/Combine.d.ts +7 -0
- package/icons/es/McpSo/components/Combine.js +32 -0
- package/icons/es/McpSo/components/Mono.d.ts +3 -0
- package/icons/es/McpSo/components/Mono.js +42 -0
- package/icons/es/McpSo/components/Text.d.ts +3 -0
- package/icons/es/McpSo/components/Text.js +39 -0
- package/icons/es/McpSo/index.d.ts +15 -0
- package/icons/es/McpSo/index.js +14 -0
- package/icons/es/McpSo/style.d.ts +7 -0
- package/icons/es/McpSo/style.js +9 -0
- package/icons/es/Menlo/components/Avatar.d.ts +5 -0
- package/icons/es/Menlo/components/Avatar.js +25 -0
- package/icons/es/Menlo/components/Color.d.ts +3 -0
- package/icons/es/Menlo/components/Color.js +39 -0
- package/icons/es/Menlo/components/Combine.d.ts +7 -0
- package/icons/es/Menlo/components/Combine.js +29 -0
- package/icons/es/Menlo/components/Mono.d.ts +3 -0
- package/icons/es/Menlo/components/Mono.js +40 -0
- package/icons/es/Menlo/components/Text.d.ts +3 -0
- package/icons/es/Menlo/components/Text.js +39 -0
- package/icons/es/Menlo/index.d.ts +15 -0
- package/icons/es/Menlo/index.js +14 -0
- package/icons/es/Menlo/style.d.ts +7 -0
- package/icons/es/Menlo/style.js +9 -0
- package/icons/es/Meshy/components/Avatar.d.ts +5 -0
- package/icons/es/Meshy/components/Avatar.js +25 -0
- package/icons/es/Meshy/components/Color.d.ts +3 -0
- package/icons/es/Meshy/components/Color.js +106 -0
- package/icons/es/Meshy/components/Combine.d.ts +7 -0
- package/icons/es/Meshy/components/Combine.js +32 -0
- package/icons/es/Meshy/components/Mono.d.ts +3 -0
- package/icons/es/Meshy/components/Mono.js +42 -0
- package/icons/es/Meshy/components/Text.d.ts +3 -0
- package/icons/es/Meshy/components/Text.js +39 -0
- package/icons/es/Meshy/index.d.ts +15 -0
- package/icons/es/Meshy/index.js +14 -0
- package/icons/es/Meshy/style.d.ts +7 -0
- package/icons/es/Meshy/style.js +9 -0
- package/icons/es/Meta/components/Avatar.d.ts +5 -0
- package/icons/es/Meta/components/Avatar.js +25 -0
- package/icons/es/Meta/components/BrandColor.d.ts +3 -0
- package/icons/es/Meta/components/BrandColor.js +293 -0
- package/icons/es/Meta/components/BrandMono.d.ts +3 -0
- package/icons/es/Meta/components/BrandMono.js +39 -0
- package/icons/es/Meta/components/Color.d.ts +3 -0
- package/icons/es/Meta/components/Color.js +277 -0
- package/icons/es/Meta/components/Combine.d.ts +7 -0
- package/icons/es/Meta/components/Combine.js +32 -0
- package/icons/es/Meta/components/Mono.d.ts +3 -0
- package/icons/es/Meta/components/Mono.js +40 -0
- package/icons/es/Meta/components/Text.d.ts +3 -0
- package/icons/es/Meta/components/Text.js +39 -0
- package/icons/es/Meta/index.d.ts +20 -0
- package/icons/es/Meta/index.js +19 -0
- package/icons/es/Meta/style.d.ts +8 -0
- package/icons/es/Meta/style.js +10 -0
- package/icons/es/MetaAI/components/Avatar.d.ts +5 -0
- package/icons/es/MetaAI/components/Avatar.js +25 -0
- package/icons/es/MetaAI/components/Color.d.ts +3 -0
- package/icons/es/MetaAI/components/Color.js +190 -0
- package/icons/es/MetaAI/components/Combine.d.ts +7 -0
- package/icons/es/MetaAI/components/Combine.js +32 -0
- package/icons/es/MetaAI/components/Mono.d.ts +3 -0
- package/icons/es/MetaAI/components/Mono.js +40 -0
- package/icons/es/MetaAI/components/Text.d.ts +3 -0
- package/icons/es/MetaAI/components/Text.js +39 -0
- package/icons/es/MetaAI/index.d.ts +15 -0
- package/icons/es/MetaAI/index.js +14 -0
- package/icons/es/MetaAI/style.d.ts +7 -0
- package/icons/es/MetaAI/style.js +9 -0
- package/icons/es/MetaGPT/components/Avatar.d.ts +5 -0
- package/icons/es/MetaGPT/components/Avatar.js +25 -0
- package/icons/es/MetaGPT/components/Combine.d.ts +5 -0
- package/icons/es/MetaGPT/components/Combine.js +26 -0
- package/icons/es/MetaGPT/components/Mono.d.ts +3 -0
- package/icons/es/MetaGPT/components/Mono.js +46 -0
- package/icons/es/MetaGPT/components/Text.d.ts +3 -0
- package/icons/es/MetaGPT/components/Text.js +39 -0
- package/icons/es/MetaGPT/index.d.ts +13 -0
- package/icons/es/MetaGPT/index.js +12 -0
- package/icons/es/MetaGPT/style.d.ts +7 -0
- package/icons/es/MetaGPT/style.js +9 -0
- package/icons/es/Microsoft/components/Avatar.d.ts +5 -0
- package/icons/es/Microsoft/components/Avatar.js +25 -0
- package/icons/es/Microsoft/components/Color.d.ts +3 -0
- package/icons/es/Microsoft/components/Color.js +48 -0
- package/icons/es/Microsoft/components/Combine.d.ts +7 -0
- package/icons/es/Microsoft/components/Combine.js +32 -0
- package/icons/es/Microsoft/components/Mono.d.ts +3 -0
- package/icons/es/Microsoft/components/Mono.js +46 -0
- package/icons/es/Microsoft/components/Text.d.ts +3 -0
- package/icons/es/Microsoft/components/Text.js +40 -0
- package/icons/es/Microsoft/index.d.ts +15 -0
- package/icons/es/Microsoft/index.js +14 -0
- package/icons/es/Microsoft/style.d.ts +7 -0
- package/icons/es/Microsoft/style.js +9 -0
- package/icons/es/Midjourney/components/Avatar.d.ts +5 -0
- package/icons/es/Midjourney/components/Avatar.js +25 -0
- package/icons/es/Midjourney/components/Combine.d.ts +5 -0
- package/icons/es/Midjourney/components/Combine.js +26 -0
- package/icons/es/Midjourney/components/Mono.d.ts +3 -0
- package/icons/es/Midjourney/components/Mono.js +40 -0
- package/icons/es/Midjourney/components/Text.d.ts +3 -0
- package/icons/es/Midjourney/components/Text.js +39 -0
- package/icons/es/Midjourney/index.d.ts +13 -0
- package/icons/es/Midjourney/index.js +12 -0
- package/icons/es/Midjourney/style.d.ts +7 -0
- package/icons/es/Midjourney/style.js +9 -0
- package/icons/es/Minimax/components/Avatar.d.ts +5 -0
- package/icons/es/Minimax/components/Avatar.js +28 -0
- package/icons/es/Minimax/components/Color.d.ts +3 -0
- package/icons/es/Minimax/components/Color.js +59 -0
- package/icons/es/Minimax/components/Combine.d.ts +7 -0
- package/icons/es/Minimax/components/Combine.js +36 -0
- package/icons/es/Minimax/components/Mono.d.ts +3 -0
- package/icons/es/Minimax/components/Mono.js +40 -0
- package/icons/es/Minimax/components/Text.d.ts +3 -0
- package/icons/es/Minimax/components/Text.js +39 -0
- package/icons/es/Minimax/index.d.ts +16 -0
- package/icons/es/Minimax/index.js +15 -0
- package/icons/es/Minimax/style.d.ts +8 -0
- package/icons/es/Minimax/style.js +10 -0
- package/icons/es/Mistral/components/Avatar.d.ts +5 -0
- package/icons/es/Mistral/components/Avatar.js +25 -0
- package/icons/es/Mistral/components/Color.d.ts +3 -0
- package/icons/es/Mistral/components/Color.js +51 -0
- package/icons/es/Mistral/components/Combine.d.ts +7 -0
- package/icons/es/Mistral/components/Combine.js +32 -0
- package/icons/es/Mistral/components/Mono.d.ts +3 -0
- package/icons/es/Mistral/components/Mono.js +41 -0
- package/icons/es/Mistral/components/Text.d.ts +3 -0
- package/icons/es/Mistral/components/Text.js +39 -0
- package/icons/es/Mistral/index.d.ts +15 -0
- package/icons/es/Mistral/index.js +14 -0
- package/icons/es/Mistral/style.d.ts +7 -0
- package/icons/es/Mistral/style.js +9 -0
- package/icons/es/ModelScope/components/Avatar.d.ts +5 -0
- package/icons/es/ModelScope/components/Avatar.js +25 -0
- package/icons/es/ModelScope/components/Color.d.ts +3 -0
- package/icons/es/ModelScope/components/Color.js +48 -0
- package/icons/es/ModelScope/components/Combine.d.ts +7 -0
- package/icons/es/ModelScope/components/Combine.js +32 -0
- package/icons/es/ModelScope/components/Mono.d.ts +3 -0
- package/icons/es/ModelScope/components/Mono.js +45 -0
- package/icons/es/ModelScope/components/Text.d.ts +3 -0
- package/icons/es/ModelScope/components/Text.js +40 -0
- package/icons/es/ModelScope/index.d.ts +16 -0
- package/icons/es/ModelScope/index.js +14 -0
- package/icons/es/ModelScope/style.d.ts +7 -0
- package/icons/es/ModelScope/style.js +9 -0
- package/icons/es/Monica/components/Avatar.d.ts +5 -0
- package/icons/es/Monica/components/Avatar.js +25 -0
- package/icons/es/Monica/components/Color.d.ts +3 -0
- package/icons/es/Monica/components/Color.js +72 -0
- package/icons/es/Monica/components/Combine.d.ts +7 -0
- package/icons/es/Monica/components/Combine.js +32 -0
- package/icons/es/Monica/components/Mono.d.ts +3 -0
- package/icons/es/Monica/components/Mono.js +43 -0
- package/icons/es/Monica/components/Text.d.ts +3 -0
- package/icons/es/Monica/components/Text.js +39 -0
- package/icons/es/Monica/index.d.ts +16 -0
- package/icons/es/Monica/index.js +15 -0
- package/icons/es/Monica/style.d.ts +8 -0
- package/icons/es/Monica/style.js +10 -0
- package/icons/es/Moonshot/components/Avatar.d.ts +5 -0
- package/icons/es/Moonshot/components/Avatar.js +25 -0
- package/icons/es/Moonshot/components/Combine.d.ts +5 -0
- package/icons/es/Moonshot/components/Combine.js +26 -0
- package/icons/es/Moonshot/components/Mono.d.ts +3 -0
- package/icons/es/Moonshot/components/Mono.js +40 -0
- package/icons/es/Moonshot/components/Text.d.ts +3 -0
- package/icons/es/Moonshot/components/Text.js +39 -0
- package/icons/es/Moonshot/index.d.ts +13 -0
- package/icons/es/Moonshot/index.js +12 -0
- package/icons/es/Moonshot/style.d.ts +7 -0
- package/icons/es/Moonshot/style.js +9 -0
- package/icons/es/Morph/components/Avatar.d.ts +5 -0
- package/icons/es/Morph/components/Avatar.js +25 -0
- package/icons/es/Morph/components/Color.d.ts +3 -0
- package/icons/es/Morph/components/Color.js +39 -0
- package/icons/es/Morph/components/Combine.d.ts +7 -0
- package/icons/es/Morph/components/Combine.js +32 -0
- package/icons/es/Morph/components/Mono.d.ts +3 -0
- package/icons/es/Morph/components/Mono.js +40 -0
- package/icons/es/Morph/components/Text.d.ts +3 -0
- package/icons/es/Morph/components/Text.js +42 -0
- package/icons/es/Morph/index.d.ts +16 -0
- package/icons/es/Morph/index.js +14 -0
- package/icons/es/Morph/style.d.ts +7 -0
- package/icons/es/Morph/style.js +9 -0
- package/icons/es/Moxt/components/Avatar.d.ts +5 -0
- package/icons/es/Moxt/components/Avatar.js +25 -0
- package/icons/es/Moxt/components/Color.d.ts +3 -0
- package/icons/es/Moxt/components/Color.js +44 -0
- package/icons/es/Moxt/components/Combine.d.ts +7 -0
- package/icons/es/Moxt/components/Combine.js +32 -0
- package/icons/es/Moxt/components/Mono.d.ts +3 -0
- package/icons/es/Moxt/components/Mono.js +43 -0
- package/icons/es/Moxt/components/Text.d.ts +3 -0
- package/icons/es/Moxt/components/Text.js +39 -0
- package/icons/es/Moxt/index.d.ts +15 -0
- package/icons/es/Moxt/index.js +14 -0
- package/icons/es/Moxt/style.d.ts +7 -0
- package/icons/es/Moxt/style.js +9 -0
- package/icons/es/MyShell/components/Avatar.d.ts +5 -0
- package/icons/es/MyShell/components/Avatar.js +25 -0
- package/icons/es/MyShell/components/Color.d.ts +3 -0
- package/icons/es/MyShell/components/Color.js +84 -0
- package/icons/es/MyShell/components/Combine.d.ts +7 -0
- package/icons/es/MyShell/components/Combine.js +32 -0
- package/icons/es/MyShell/components/Mono.d.ts +3 -0
- package/icons/es/MyShell/components/Mono.js +43 -0
- package/icons/es/MyShell/components/Text.d.ts +3 -0
- package/icons/es/MyShell/components/Text.js +39 -0
- package/icons/es/MyShell/index.d.ts +15 -0
- package/icons/es/MyShell/index.js +14 -0
- package/icons/es/MyShell/style.d.ts +7 -0
- package/icons/es/MyShell/style.js +9 -0
- package/icons/es/N8n/components/Avatar.d.ts +5 -0
- package/icons/es/N8n/components/Avatar.js +25 -0
- package/icons/es/N8n/components/Color.d.ts +3 -0
- package/icons/es/N8n/components/Color.js +41 -0
- package/icons/es/N8n/components/Combine.d.ts +7 -0
- package/icons/es/N8n/components/Combine.js +32 -0
- package/icons/es/N8n/components/Mono.d.ts +3 -0
- package/icons/es/N8n/components/Mono.js +41 -0
- package/icons/es/N8n/components/Text.d.ts +3 -0
- package/icons/es/N8n/components/Text.js +39 -0
- package/icons/es/N8n/index.d.ts +15 -0
- package/icons/es/N8n/index.js +14 -0
- package/icons/es/N8n/style.d.ts +7 -0
- package/icons/es/N8n/style.js +9 -0
- package/icons/es/NPLCloud/components/Avatar.d.ts +5 -0
- package/icons/es/NPLCloud/components/Avatar.js +25 -0
- package/icons/es/NPLCloud/components/Color.d.ts +3 -0
- package/icons/es/NPLCloud/components/Color.js +39 -0
- package/icons/es/NPLCloud/components/Combine.d.ts +7 -0
- package/icons/es/NPLCloud/components/Combine.js +32 -0
- package/icons/es/NPLCloud/components/Mono.d.ts +3 -0
- package/icons/es/NPLCloud/components/Mono.js +40 -0
- package/icons/es/NPLCloud/components/Text.d.ts +3 -0
- package/icons/es/NPLCloud/components/Text.js +39 -0
- package/icons/es/NPLCloud/index.d.ts +15 -0
- package/icons/es/NPLCloud/index.js +14 -0
- package/icons/es/NPLCloud/style.d.ts +7 -0
- package/icons/es/NPLCloud/style.js +9 -0
- package/icons/es/NanoBanana/components/Avatar.d.ts +5 -0
- package/icons/es/NanoBanana/components/Avatar.js +25 -0
- package/icons/es/NanoBanana/components/Color.d.ts +3 -0
- package/icons/es/NanoBanana/components/Color.js +56 -0
- package/icons/es/NanoBanana/components/Combine.d.ts +7 -0
- package/icons/es/NanoBanana/components/Combine.js +32 -0
- package/icons/es/NanoBanana/components/Inner.d.ts +3 -0
- package/icons/es/NanoBanana/components/Inner.js +59 -0
- package/icons/es/NanoBanana/components/Mono.d.ts +3 -0
- package/icons/es/NanoBanana/components/Mono.js +40 -0
- package/icons/es/NanoBanana/components/Text.d.ts +3 -0
- package/icons/es/NanoBanana/components/Text.js +39 -0
- package/icons/es/NanoBanana/index.d.ts +16 -0
- package/icons/es/NanoBanana/index.js +14 -0
- package/icons/es/NanoBanana/style.d.ts +7 -0
- package/icons/es/NanoBanana/style.js +9 -0
- package/icons/es/Nebius/components/Avatar.d.ts +5 -0
- package/icons/es/Nebius/components/Avatar.js +25 -0
- package/icons/es/Nebius/components/Mono.d.ts +3 -0
- package/icons/es/Nebius/components/Mono.js +42 -0
- package/icons/es/Nebius/components/Text.d.ts +3 -0
- package/icons/es/Nebius/components/Text.js +46 -0
- package/icons/es/Nebius/index.d.ts +11 -0
- package/icons/es/Nebius/index.js +10 -0
- package/icons/es/Nebius/style.d.ts +5 -0
- package/icons/es/Nebius/style.js +7 -0
- package/icons/es/NewAPI/components/Avatar.d.ts +5 -0
- package/icons/es/NewAPI/components/Avatar.js +25 -0
- package/icons/es/NewAPI/components/Color.d.ts +3 -0
- package/icons/es/NewAPI/components/Color.js +100 -0
- package/icons/es/NewAPI/components/Combine.d.ts +7 -0
- package/icons/es/NewAPI/components/Combine.js +32 -0
- package/icons/es/NewAPI/components/Mono.d.ts +3 -0
- package/icons/es/NewAPI/components/Mono.js +44 -0
- package/icons/es/NewAPI/components/Text.d.ts +3 -0
- package/icons/es/NewAPI/components/Text.js +39 -0
- package/icons/es/NewAPI/index.d.ts +15 -0
- package/icons/es/NewAPI/index.js +14 -0
- package/icons/es/NewAPI/style.d.ts +7 -0
- package/icons/es/NewAPI/style.js +9 -0
- package/icons/es/NotebookLM/components/Avatar.d.ts +5 -0
- package/icons/es/NotebookLM/components/Avatar.js +25 -0
- package/icons/es/NotebookLM/components/Combine.d.ts +5 -0
- package/icons/es/NotebookLM/components/Combine.js +29 -0
- package/icons/es/NotebookLM/components/Mono.d.ts +3 -0
- package/icons/es/NotebookLM/components/Mono.js +40 -0
- package/icons/es/NotebookLM/components/Text.d.ts +3 -0
- package/icons/es/NotebookLM/components/Text.js +39 -0
- package/icons/es/NotebookLM/index.d.ts +13 -0
- package/icons/es/NotebookLM/index.js +12 -0
- package/icons/es/NotebookLM/style.d.ts +7 -0
- package/icons/es/NotebookLM/style.js +9 -0
- package/icons/es/Notion/components/Avatar.d.ts +5 -0
- package/icons/es/Notion/components/Avatar.js +25 -0
- package/icons/es/Notion/components/Combine.d.ts +5 -0
- package/icons/es/Notion/components/Combine.js +26 -0
- package/icons/es/Notion/components/Mono.d.ts +3 -0
- package/icons/es/Notion/components/Mono.js +41 -0
- package/icons/es/Notion/components/Text.d.ts +3 -0
- package/icons/es/Notion/components/Text.js +39 -0
- package/icons/es/Notion/index.d.ts +13 -0
- package/icons/es/Notion/index.js +12 -0
- package/icons/es/Notion/style.d.ts +7 -0
- package/icons/es/Notion/style.js +9 -0
- package/icons/es/NousResearch/components/Avatar.d.ts +5 -0
- package/icons/es/NousResearch/components/Avatar.js +25 -0
- package/icons/es/NousResearch/components/Combine.d.ts +5 -0
- package/icons/es/NousResearch/components/Combine.js +26 -0
- package/icons/es/NousResearch/components/Mono.d.ts +3 -0
- package/icons/es/NousResearch/components/Mono.js +45 -0
- package/icons/es/NousResearch/components/Text.d.ts +3 -0
- package/icons/es/NousResearch/components/Text.js +39 -0
- package/icons/es/NousResearch/index.d.ts +13 -0
- package/icons/es/NousResearch/index.js +12 -0
- package/icons/es/NousResearch/style.d.ts +7 -0
- package/icons/es/NousResearch/style.js +9 -0
- package/icons/es/Nova/components/Avatar.d.ts +5 -0
- package/icons/es/Nova/components/Avatar.js +25 -0
- package/icons/es/Nova/components/Color.d.ts +3 -0
- package/icons/es/Nova/components/Color.js +103 -0
- package/icons/es/Nova/components/Combine.d.ts +7 -0
- package/icons/es/Nova/components/Combine.js +32 -0
- package/icons/es/Nova/components/Mono.d.ts +3 -0
- package/icons/es/Nova/components/Mono.js +40 -0
- package/icons/es/Nova/components/Text.d.ts +3 -0
- package/icons/es/Nova/components/Text.js +39 -0
- package/icons/es/Nova/index.d.ts +16 -0
- package/icons/es/Nova/index.js +15 -0
- package/icons/es/Nova/style.d.ts +8 -0
- package/icons/es/Nova/style.js +10 -0
- package/icons/es/NovelAI/components/Avatar.d.ts +5 -0
- package/icons/es/NovelAI/components/Avatar.js +25 -0
- package/icons/es/NovelAI/components/Combine.d.ts +5 -0
- package/icons/es/NovelAI/components/Combine.js +26 -0
- package/icons/es/NovelAI/components/Mono.d.ts +3 -0
- package/icons/es/NovelAI/components/Mono.js +41 -0
- package/icons/es/NovelAI/components/Text.d.ts +3 -0
- package/icons/es/NovelAI/components/Text.js +43 -0
- package/icons/es/NovelAI/index.d.ts +13 -0
- package/icons/es/NovelAI/index.js +12 -0
- package/icons/es/NovelAI/style.d.ts +7 -0
- package/icons/es/NovelAI/style.js +9 -0
- package/icons/es/Novita/components/Avatar.d.ts +5 -0
- package/icons/es/Novita/components/Avatar.js +25 -0
- package/icons/es/Novita/components/Color.d.ts +3 -0
- package/icons/es/Novita/components/Color.js +41 -0
- package/icons/es/Novita/components/Combine.d.ts +7 -0
- package/icons/es/Novita/components/Combine.js +32 -0
- package/icons/es/Novita/components/Mono.d.ts +3 -0
- package/icons/es/Novita/components/Mono.js +41 -0
- package/icons/es/Novita/components/Text.d.ts +3 -0
- package/icons/es/Novita/components/Text.js +40 -0
- package/icons/es/Novita/index.d.ts +15 -0
- package/icons/es/Novita/index.js +14 -0
- package/icons/es/Novita/style.d.ts +7 -0
- package/icons/es/Novita/style.js +9 -0
- package/icons/es/Nvidia/components/Avatar.d.ts +5 -0
- package/icons/es/Nvidia/components/Avatar.js +25 -0
- package/icons/es/Nvidia/components/Color.d.ts +3 -0
- package/icons/es/Nvidia/components/Color.js +40 -0
- package/icons/es/Nvidia/components/Combine.d.ts +7 -0
- package/icons/es/Nvidia/components/Combine.js +32 -0
- package/icons/es/Nvidia/components/Mono.d.ts +3 -0
- package/icons/es/Nvidia/components/Mono.js +40 -0
- package/icons/es/Nvidia/components/Text.d.ts +3 -0
- package/icons/es/Nvidia/components/Text.js +39 -0
- package/icons/es/Nvidia/index.d.ts +15 -0
- package/icons/es/Nvidia/index.js +14 -0
- package/icons/es/Nvidia/style.d.ts +7 -0
- package/icons/es/Nvidia/style.js +9 -0
- package/icons/es/Obsidian/components/Avatar.d.ts +5 -0
- package/icons/es/Obsidian/components/Avatar.js +25 -0
- package/icons/es/Obsidian/components/Color.d.ts +3 -0
- package/icons/es/Obsidian/components/Color.js +45 -0
- package/icons/es/Obsidian/components/Combine.d.ts +7 -0
- package/icons/es/Obsidian/components/Combine.js +32 -0
- package/icons/es/Obsidian/components/Mono.d.ts +3 -0
- package/icons/es/Obsidian/components/Mono.js +44 -0
- package/icons/es/Obsidian/components/Text.d.ts +3 -0
- package/icons/es/Obsidian/components/Text.js +39 -0
- package/icons/es/Obsidian/index.d.ts +16 -0
- package/icons/es/Obsidian/index.js +14 -0
- package/icons/es/Obsidian/style.d.ts +7 -0
- package/icons/es/Obsidian/style.js +9 -0
- package/icons/es/Ollama/components/Avatar.d.ts +5 -0
- package/icons/es/Ollama/components/Avatar.js +25 -0
- package/icons/es/Ollama/components/Combine.d.ts +5 -0
- package/icons/es/Ollama/components/Combine.js +26 -0
- package/icons/es/Ollama/components/Mono.d.ts +3 -0
- package/icons/es/Ollama/components/Mono.js +40 -0
- package/icons/es/Ollama/components/Text.d.ts +3 -0
- package/icons/es/Ollama/components/Text.js +39 -0
- package/icons/es/Ollama/index.d.ts +13 -0
- package/icons/es/Ollama/index.js +12 -0
- package/icons/es/Ollama/style.d.ts +7 -0
- package/icons/es/Ollama/style.js +9 -0
- package/icons/es/OpenAI/components/Avatar.d.ts +7 -0
- package/icons/es/OpenAI/components/Avatar.js +62 -0
- package/icons/es/OpenAI/components/Combine.d.ts +5 -0
- package/icons/es/OpenAI/components/Combine.js +32 -0
- package/icons/es/OpenAI/components/Mono.d.ts +3 -0
- package/icons/es/OpenAI/components/Mono.js +40 -0
- package/icons/es/OpenAI/components/Text.d.ts +3 -0
- package/icons/es/OpenAI/components/Text.js +39 -0
- package/icons/es/OpenAI/index.d.ts +20 -0
- package/icons/es/OpenAI/index.js +19 -0
- package/icons/es/OpenAI/style.d.ts +13 -0
- package/icons/es/OpenAI/style.js +15 -0
- package/icons/es/OpenChat/components/Avatar.d.ts +5 -0
- package/icons/es/OpenChat/components/Avatar.js +25 -0
- package/icons/es/OpenChat/components/Color.d.ts +3 -0
- package/icons/es/OpenChat/components/Color.js +81 -0
- package/icons/es/OpenChat/components/Combine.d.ts +7 -0
- package/icons/es/OpenChat/components/Combine.js +36 -0
- package/icons/es/OpenChat/components/Mono.d.ts +3 -0
- package/icons/es/OpenChat/components/Mono.js +42 -0
- package/icons/es/OpenChat/components/Text.d.ts +3 -0
- package/icons/es/OpenChat/components/Text.js +39 -0
- package/icons/es/OpenChat/index.d.ts +15 -0
- package/icons/es/OpenChat/index.js +14 -0
- package/icons/es/OpenChat/style.d.ts +7 -0
- package/icons/es/OpenChat/style.js +9 -0
- package/icons/es/OpenClaw/components/Avatar.d.ts +5 -0
- package/icons/es/OpenClaw/components/Avatar.js +25 -0
- package/icons/es/OpenClaw/components/Color.d.ts +3 -0
- package/icons/es/OpenClaw/components/Color.js +107 -0
- package/icons/es/OpenClaw/components/Combine.d.ts +7 -0
- package/icons/es/OpenClaw/components/Combine.js +32 -0
- package/icons/es/OpenClaw/components/Mono.d.ts +3 -0
- package/icons/es/OpenClaw/components/Mono.js +124 -0
- package/icons/es/OpenClaw/components/Text.d.ts +3 -0
- package/icons/es/OpenClaw/components/Text.js +39 -0
- package/icons/es/OpenClaw/index.d.ts +15 -0
- package/icons/es/OpenClaw/index.js +14 -0
- package/icons/es/OpenClaw/style.d.ts +7 -0
- package/icons/es/OpenClaw/style.js +9 -0
- package/icons/es/OpenCode/components/Avatar.d.ts +5 -0
- package/icons/es/OpenCode/components/Avatar.js +25 -0
- package/icons/es/OpenCode/components/Combine.d.ts +5 -0
- package/icons/es/OpenCode/components/Combine.js +24 -0
- package/icons/es/OpenCode/components/Mono.d.ts +3 -0
- package/icons/es/OpenCode/components/Mono.js +40 -0
- package/icons/es/OpenCode/components/Text.d.ts +3 -0
- package/icons/es/OpenCode/components/Text.js +81 -0
- package/icons/es/OpenCode/index.d.ts +13 -0
- package/icons/es/OpenCode/index.js +12 -0
- package/icons/es/OpenCode/style.d.ts +7 -0
- package/icons/es/OpenCode/style.js +9 -0
- package/icons/es/OpenHands/components/Avatar.d.ts +5 -0
- package/icons/es/OpenHands/components/Avatar.js +25 -0
- package/icons/es/OpenHands/components/Color.d.ts +3 -0
- package/icons/es/OpenHands/components/Color.js +47 -0
- package/icons/es/OpenHands/components/Combine.d.ts +7 -0
- package/icons/es/OpenHands/components/Combine.js +32 -0
- package/icons/es/OpenHands/components/Mono.d.ts +3 -0
- package/icons/es/OpenHands/components/Mono.js +43 -0
- package/icons/es/OpenHands/components/Text.d.ts +3 -0
- package/icons/es/OpenHands/components/Text.js +39 -0
- package/icons/es/OpenHands/index.d.ts +15 -0
- package/icons/es/OpenHands/index.js +14 -0
- package/icons/es/OpenHands/style.d.ts +7 -0
- package/icons/es/OpenHands/style.js +9 -0
- package/icons/es/OpenHuman/components/Avatar.d.ts +5 -0
- package/icons/es/OpenHuman/components/Avatar.js +25 -0
- package/icons/es/OpenHuman/components/Combine.d.ts +5 -0
- package/icons/es/OpenHuman/components/Combine.js +29 -0
- package/icons/es/OpenHuman/components/Mono.d.ts +3 -0
- package/icons/es/OpenHuman/components/Mono.js +40 -0
- package/icons/es/OpenHuman/components/Text.d.ts +3 -0
- package/icons/es/OpenHuman/components/Text.js +39 -0
- package/icons/es/OpenHuman/index.d.ts +13 -0
- package/icons/es/OpenHuman/index.js +12 -0
- package/icons/es/OpenHuman/style.d.ts +7 -0
- package/icons/es/OpenHuman/style.js +9 -0
- package/icons/es/OpenRouter/components/Avatar.d.ts +5 -0
- package/icons/es/OpenRouter/components/Avatar.js +25 -0
- package/icons/es/OpenRouter/components/Combine.d.ts +7 -0
- package/icons/es/OpenRouter/components/Combine.js +34 -0
- package/icons/es/OpenRouter/components/Mono.d.ts +3 -0
- package/icons/es/OpenRouter/components/Mono.js +40 -0
- package/icons/es/OpenRouter/components/Text.d.ts +3 -0
- package/icons/es/OpenRouter/components/Text.js +39 -0
- package/icons/es/OpenRouter/index.d.ts +13 -0
- package/icons/es/OpenRouter/index.js +12 -0
- package/icons/es/OpenRouter/style.d.ts +7 -0
- package/icons/es/OpenRouter/style.js +9 -0
- package/icons/es/OpenWebUI/components/Avatar.d.ts +5 -0
- package/icons/es/OpenWebUI/components/Avatar.js +25 -0
- package/icons/es/OpenWebUI/components/Combine.d.ts +5 -0
- package/icons/es/OpenWebUI/components/Combine.js +26 -0
- package/icons/es/OpenWebUI/components/Mono.d.ts +3 -0
- package/icons/es/OpenWebUI/components/Mono.js +43 -0
- package/icons/es/OpenWebUI/components/Text.d.ts +3 -0
- package/icons/es/OpenWebUI/components/Text.js +39 -0
- package/icons/es/OpenWebUI/index.d.ts +13 -0
- package/icons/es/OpenWebUI/index.js +12 -0
- package/icons/es/OpenWebUI/style.d.ts +7 -0
- package/icons/es/OpenWebUI/style.js +9 -0
- package/icons/es/PPIO/components/Avatar.d.ts +5 -0
- package/icons/es/PPIO/components/Avatar.js +25 -0
- package/icons/es/PPIO/components/Color.d.ts +3 -0
- package/icons/es/PPIO/components/Color.js +41 -0
- package/icons/es/PPIO/components/Combine.d.ts +7 -0
- package/icons/es/PPIO/components/Combine.js +32 -0
- package/icons/es/PPIO/components/Mono.d.ts +3 -0
- package/icons/es/PPIO/components/Mono.js +41 -0
- package/icons/es/PPIO/components/Text.d.ts +3 -0
- package/icons/es/PPIO/components/Text.js +40 -0
- package/icons/es/PPIO/components/TextCn.d.ts +3 -0
- package/icons/es/PPIO/components/TextCn.js +40 -0
- package/icons/es/PPIO/index.d.ts +17 -0
- package/icons/es/PPIO/index.js +16 -0
- package/icons/es/PPIO/style.d.ts +7 -0
- package/icons/es/PPIO/style.js +9 -0
- package/icons/es/PaLM/components/Avatar.d.ts +5 -0
- package/icons/es/PaLM/components/Avatar.js +25 -0
- package/icons/es/PaLM/components/Color.d.ts +3 -0
- package/icons/es/PaLM/components/Color.js +57 -0
- package/icons/es/PaLM/components/Combine.d.ts +7 -0
- package/icons/es/PaLM/components/Combine.js +32 -0
- package/icons/es/PaLM/components/Mono.d.ts +3 -0
- package/icons/es/PaLM/components/Mono.js +52 -0
- package/icons/es/PaLM/components/Text.d.ts +3 -0
- package/icons/es/PaLM/components/Text.js +39 -0
- package/icons/es/PaLM/index.d.ts +15 -0
- package/icons/es/PaLM/index.js +14 -0
- package/icons/es/PaLM/style.d.ts +7 -0
- package/icons/es/PaLM/style.js +9 -0
- package/icons/es/Parasail/components/Avatar.d.ts +5 -0
- package/icons/es/Parasail/components/Avatar.js +25 -0
- package/icons/es/Parasail/components/Combine.d.ts +5 -0
- package/icons/es/Parasail/components/Combine.js +27 -0
- package/icons/es/Parasail/components/Mono.d.ts +3 -0
- package/icons/es/Parasail/components/Mono.js +43 -0
- package/icons/es/Parasail/components/Text.d.ts +3 -0
- package/icons/es/Parasail/components/Text.js +39 -0
- package/icons/es/Parasail/index.d.ts +13 -0
- package/icons/es/Parasail/index.js +12 -0
- package/icons/es/Parasail/style.d.ts +7 -0
- package/icons/es/Parasail/style.js +9 -0
- package/icons/es/Perplexity/components/Avatar.d.ts +5 -0
- package/icons/es/Perplexity/components/Avatar.js +25 -0
- package/icons/es/Perplexity/components/Color.d.ts +3 -0
- package/icons/es/Perplexity/components/Color.js +40 -0
- package/icons/es/Perplexity/components/Combine.d.ts +7 -0
- package/icons/es/Perplexity/components/Combine.js +32 -0
- package/icons/es/Perplexity/components/Mono.d.ts +3 -0
- package/icons/es/Perplexity/components/Mono.js +40 -0
- package/icons/es/Perplexity/components/Text.d.ts +3 -0
- package/icons/es/Perplexity/components/Text.js +39 -0
- package/icons/es/Perplexity/index.d.ts +15 -0
- package/icons/es/Perplexity/index.js +14 -0
- package/icons/es/Perplexity/style.d.ts +7 -0
- package/icons/es/Perplexity/style.js +9 -0
- package/icons/es/Phidata/components/Avatar.d.ts +5 -0
- package/icons/es/Phidata/components/Avatar.js +25 -0
- package/icons/es/Phidata/components/Color.d.ts +3 -0
- package/icons/es/Phidata/components/Color.js +41 -0
- package/icons/es/Phidata/components/Combine.d.ts +7 -0
- package/icons/es/Phidata/components/Combine.js +32 -0
- package/icons/es/Phidata/components/Mono.d.ts +3 -0
- package/icons/es/Phidata/components/Mono.js +41 -0
- package/icons/es/Phidata/components/Text.d.ts +3 -0
- package/icons/es/Phidata/components/Text.js +39 -0
- package/icons/es/Phidata/index.d.ts +15 -0
- package/icons/es/Phidata/index.js +14 -0
- package/icons/es/Phidata/style.d.ts +7 -0
- package/icons/es/Phidata/style.js +9 -0
- package/icons/es/Phind/components/Avatar.d.ts +5 -0
- package/icons/es/Phind/components/Avatar.js +25 -0
- package/icons/es/Phind/components/Combine.d.ts +5 -0
- package/icons/es/Phind/components/Combine.js +24 -0
- package/icons/es/Phind/components/Mono.d.ts +3 -0
- package/icons/es/Phind/components/Mono.js +40 -0
- package/icons/es/Phind/components/Text.d.ts +3 -0
- package/icons/es/Phind/components/Text.js +49 -0
- package/icons/es/Phind/index.d.ts +13 -0
- package/icons/es/Phind/index.js +12 -0
- package/icons/es/Phind/style.d.ts +7 -0
- package/icons/es/Phind/style.js +9 -0
- package/icons/es/Pika/components/Avatar.d.ts +5 -0
- package/icons/es/Pika/components/Avatar.js +25 -0
- package/icons/es/Pika/components/Combine.d.ts +5 -0
- package/icons/es/Pika/components/Combine.js +29 -0
- package/icons/es/Pika/components/Mono.d.ts +3 -0
- package/icons/es/Pika/components/Mono.js +40 -0
- package/icons/es/Pika/components/Text.d.ts +3 -0
- package/icons/es/Pika/components/Text.js +39 -0
- package/icons/es/Pika/index.d.ts +13 -0
- package/icons/es/Pika/index.js +12 -0
- package/icons/es/Pika/style.d.ts +7 -0
- package/icons/es/Pika/style.js +9 -0
- package/icons/es/PixVerse/components/Avatar.d.ts +5 -0
- package/icons/es/PixVerse/components/Avatar.js +25 -0
- package/icons/es/PixVerse/components/Color.d.ts +3 -0
- package/icons/es/PixVerse/components/Color.js +89 -0
- package/icons/es/PixVerse/components/Combine.d.ts +7 -0
- package/icons/es/PixVerse/components/Combine.js +32 -0
- package/icons/es/PixVerse/components/Mono.d.ts +3 -0
- package/icons/es/PixVerse/components/Mono.js +44 -0
- package/icons/es/PixVerse/components/Text.d.ts +3 -0
- package/icons/es/PixVerse/components/Text.js +53 -0
- package/icons/es/PixVerse/index.d.ts +16 -0
- package/icons/es/PixVerse/index.js +14 -0
- package/icons/es/PixVerse/style.d.ts +7 -0
- package/icons/es/PixVerse/style.js +9 -0
- package/icons/es/Player2/components/Avatar.d.ts +5 -0
- package/icons/es/Player2/components/Avatar.js +25 -0
- package/icons/es/Player2/components/Color.d.ts +3 -0
- package/icons/es/Player2/components/Color.js +44 -0
- package/icons/es/Player2/components/Combine.d.ts +7 -0
- package/icons/es/Player2/components/Combine.js +32 -0
- package/icons/es/Player2/components/Mono.d.ts +3 -0
- package/icons/es/Player2/components/Mono.js +42 -0
- package/icons/es/Player2/components/Text.d.ts +3 -0
- package/icons/es/Player2/components/Text.js +39 -0
- package/icons/es/Player2/index.d.ts +15 -0
- package/icons/es/Player2/index.js +14 -0
- package/icons/es/Player2/style.d.ts +7 -0
- package/icons/es/Player2/style.js +9 -0
- package/icons/es/Poe/components/Avatar.d.ts +5 -0
- package/icons/es/Poe/components/Avatar.js +25 -0
- package/icons/es/Poe/components/Color.d.ts +3 -0
- package/icons/es/Poe/components/Color.js +87 -0
- package/icons/es/Poe/components/Combine.d.ts +7 -0
- package/icons/es/Poe/components/Combine.js +32 -0
- package/icons/es/Poe/components/Mono.d.ts +3 -0
- package/icons/es/Poe/components/Mono.js +46 -0
- package/icons/es/Poe/components/Text.d.ts +3 -0
- package/icons/es/Poe/components/Text.js +39 -0
- package/icons/es/Poe/index.d.ts +15 -0
- package/icons/es/Poe/index.js +14 -0
- package/icons/es/Poe/style.d.ts +7 -0
- package/icons/es/Poe/style.js +9 -0
- package/icons/es/Pollinations/components/Avatar.d.ts +5 -0
- package/icons/es/Pollinations/components/Avatar.js +25 -0
- package/icons/es/Pollinations/components/Combine.d.ts +5 -0
- package/icons/es/Pollinations/components/Combine.js +26 -0
- package/icons/es/Pollinations/components/Mono.d.ts +3 -0
- package/icons/es/Pollinations/components/Mono.js +40 -0
- package/icons/es/Pollinations/components/Text.d.ts +3 -0
- package/icons/es/Pollinations/components/Text.js +39 -0
- package/icons/es/Pollinations/index.d.ts +13 -0
- package/icons/es/Pollinations/index.js +12 -0
- package/icons/es/Pollinations/style.d.ts +7 -0
- package/icons/es/Pollinations/style.js +9 -0
- package/icons/es/PrunaAI/components/Avatar.d.ts +5 -0
- package/icons/es/PrunaAI/components/Avatar.js +25 -0
- package/icons/es/PrunaAI/components/Color.d.ts +3 -0
- package/icons/es/PrunaAI/components/Color.js +153 -0
- package/icons/es/PrunaAI/components/Combine.d.ts +7 -0
- package/icons/es/PrunaAI/components/Combine.js +32 -0
- package/icons/es/PrunaAI/components/Mono.d.ts +3 -0
- package/icons/es/PrunaAI/components/Mono.js +54 -0
- package/icons/es/PrunaAI/components/Text.d.ts +3 -0
- package/icons/es/PrunaAI/components/Text.js +39 -0
- package/icons/es/PrunaAI/index.d.ts +15 -0
- package/icons/es/PrunaAI/index.js +14 -0
- package/icons/es/PrunaAI/style.d.ts +7 -0
- package/icons/es/PrunaAI/style.js +9 -0
- package/icons/es/PydanticAI/components/Avatar.d.ts +5 -0
- package/icons/es/PydanticAI/components/Avatar.js +25 -0
- package/icons/es/PydanticAI/components/Color.d.ts +3 -0
- package/icons/es/PydanticAI/components/Color.js +54 -0
- package/icons/es/PydanticAI/components/Combine.d.ts +7 -0
- package/icons/es/PydanticAI/components/Combine.js +32 -0
- package/icons/es/PydanticAI/components/Mono.d.ts +3 -0
- package/icons/es/PydanticAI/components/Mono.js +50 -0
- package/icons/es/PydanticAI/components/Text.d.ts +3 -0
- package/icons/es/PydanticAI/components/Text.js +39 -0
- package/icons/es/PydanticAI/index.d.ts +15 -0
- package/icons/es/PydanticAI/index.js +14 -0
- package/icons/es/PydanticAI/style.d.ts +7 -0
- package/icons/es/PydanticAI/style.js +9 -0
- package/icons/es/Qingyan/components/Avatar.d.ts +5 -0
- package/icons/es/Qingyan/components/Avatar.js +25 -0
- package/icons/es/Qingyan/components/Color.d.ts +3 -0
- package/icons/es/Qingyan/components/Color.js +42 -0
- package/icons/es/Qingyan/components/Combine.d.ts +7 -0
- package/icons/es/Qingyan/components/Combine.js +32 -0
- package/icons/es/Qingyan/components/Mono.d.ts +3 -0
- package/icons/es/Qingyan/components/Mono.js +42 -0
- package/icons/es/Qingyan/components/Text.d.ts +3 -0
- package/icons/es/Qingyan/components/Text.js +39 -0
- package/icons/es/Qingyan/index.d.ts +15 -0
- package/icons/es/Qingyan/index.js +14 -0
- package/icons/es/Qingyan/style.d.ts +7 -0
- package/icons/es/Qingyan/style.js +9 -0
- package/icons/es/Qiniu/components/Avatar.d.ts +5 -0
- package/icons/es/Qiniu/components/Avatar.js +25 -0
- package/icons/es/Qiniu/components/Color.d.ts +3 -0
- package/icons/es/Qiniu/components/Color.js +39 -0
- package/icons/es/Qiniu/components/Combine.d.ts +7 -0
- package/icons/es/Qiniu/components/Combine.js +32 -0
- package/icons/es/Qiniu/components/Mono.d.ts +3 -0
- package/icons/es/Qiniu/components/Mono.js +40 -0
- package/icons/es/Qiniu/components/Text.d.ts +3 -0
- package/icons/es/Qiniu/components/Text.js +40 -0
- package/icons/es/Qiniu/index.d.ts +15 -0
- package/icons/es/Qiniu/index.js +14 -0
- package/icons/es/Qiniu/style.d.ts +7 -0
- package/icons/es/Qiniu/style.js +9 -0
- package/icons/es/Qoder/components/Avatar.d.ts +5 -0
- package/icons/es/Qoder/components/Avatar.js +25 -0
- package/icons/es/Qoder/components/Color.d.ts +3 -0
- package/icons/es/Qoder/components/Color.js +42 -0
- package/icons/es/Qoder/components/Combine.d.ts +7 -0
- package/icons/es/Qoder/components/Combine.js +32 -0
- package/icons/es/Qoder/components/Mono.d.ts +3 -0
- package/icons/es/Qoder/components/Mono.js +43 -0
- package/icons/es/Qoder/components/Text.d.ts +3 -0
- package/icons/es/Qoder/components/Text.js +39 -0
- package/icons/es/Qoder/index.d.ts +15 -0
- package/icons/es/Qoder/index.js +14 -0
- package/icons/es/Qoder/style.d.ts +7 -0
- package/icons/es/Qoder/style.js +7 -0
- package/icons/es/Qwen/components/Avatar.d.ts +5 -0
- package/icons/es/Qwen/components/Avatar.js +25 -0
- package/icons/es/Qwen/components/Color.d.ts +3 -0
- package/icons/es/Qwen/components/Color.js +61 -0
- package/icons/es/Qwen/components/Combine.d.ts +7 -0
- package/icons/es/Qwen/components/Combine.js +36 -0
- package/icons/es/Qwen/components/Mono.d.ts +3 -0
- package/icons/es/Qwen/components/Mono.js +40 -0
- package/icons/es/Qwen/components/Text.d.ts +3 -0
- package/icons/es/Qwen/components/Text.js +39 -0
- package/icons/es/Qwen/index.d.ts +16 -0
- package/icons/es/Qwen/index.js +15 -0
- package/icons/es/Qwen/style.d.ts +8 -0
- package/icons/es/Qwen/style.js +10 -0
- package/icons/es/RSSHub/components/Avatar.d.ts +5 -0
- package/icons/es/RSSHub/components/Avatar.js +25 -0
- package/icons/es/RSSHub/components/Color.d.ts +3 -0
- package/icons/es/RSSHub/components/Color.js +51 -0
- package/icons/es/RSSHub/components/Combine.d.ts +7 -0
- package/icons/es/RSSHub/components/Combine.js +32 -0
- package/icons/es/RSSHub/components/Mono.d.ts +3 -0
- package/icons/es/RSSHub/components/Mono.js +52 -0
- package/icons/es/RSSHub/components/Text.d.ts +3 -0
- package/icons/es/RSSHub/components/Text.js +39 -0
- package/icons/es/RSSHub/index.d.ts +15 -0
- package/icons/es/RSSHub/index.js +14 -0
- package/icons/es/RSSHub/style.d.ts +7 -0
- package/icons/es/RSSHub/style.js +9 -0
- package/icons/es/Railway/components/Avatar.d.ts +5 -0
- package/icons/es/Railway/components/Avatar.js +25 -0
- package/icons/es/Railway/components/Combine.d.ts +5 -0
- package/icons/es/Railway/components/Combine.js +26 -0
- package/icons/es/Railway/components/Mono.d.ts +3 -0
- package/icons/es/Railway/components/Mono.js +42 -0
- package/icons/es/Railway/components/Text.d.ts +3 -0
- package/icons/es/Railway/components/Text.js +39 -0
- package/icons/es/Railway/index.d.ts +14 -0
- package/icons/es/Railway/index.js +13 -0
- package/icons/es/Railway/style.d.ts +8 -0
- package/icons/es/Railway/style.js +10 -0
- package/icons/es/Recraft/components/Avatar.d.ts +5 -0
- package/icons/es/Recraft/components/Avatar.js +25 -0
- package/icons/es/Recraft/components/Combine.d.ts +5 -0
- package/icons/es/Recraft/components/Combine.js +32 -0
- package/icons/es/Recraft/components/Mono.d.ts +3 -0
- package/icons/es/Recraft/components/Mono.js +42 -0
- package/icons/es/Recraft/components/Text.d.ts +3 -0
- package/icons/es/Recraft/components/Text.js +39 -0
- package/icons/es/Recraft/index.d.ts +13 -0
- package/icons/es/Recraft/index.js +12 -0
- package/icons/es/Recraft/style.d.ts +7 -0
- package/icons/es/Recraft/style.js +9 -0
- package/icons/es/Relace/components/Avatar.d.ts +5 -0
- package/icons/es/Relace/components/Avatar.js +25 -0
- package/icons/es/Relace/components/Combine.d.ts +5 -0
- package/icons/es/Relace/components/Combine.js +26 -0
- package/icons/es/Relace/components/Mono.d.ts +3 -0
- package/icons/es/Relace/components/Mono.js +40 -0
- package/icons/es/Relace/components/Text.d.ts +3 -0
- package/icons/es/Relace/components/Text.js +39 -0
- package/icons/es/Relace/index.d.ts +13 -0
- package/icons/es/Relace/index.js +12 -0
- package/icons/es/Relace/style.d.ts +7 -0
- package/icons/es/Relace/style.js +9 -0
- package/icons/es/Replicate/components/Avatar.d.ts +5 -0
- package/icons/es/Replicate/components/Avatar.js +25 -0
- package/icons/es/Replicate/components/BrandMono.d.ts +3 -0
- package/icons/es/Replicate/components/BrandMono.js +39 -0
- package/icons/es/Replicate/components/Mono.d.ts +3 -0
- package/icons/es/Replicate/components/Mono.js +40 -0
- package/icons/es/Replicate/index.d.ts +12 -0
- package/icons/es/Replicate/index.js +11 -0
- package/icons/es/Replicate/style.d.ts +7 -0
- package/icons/es/Replicate/style.js +9 -0
- package/icons/es/Replit/components/Avatar.d.ts +5 -0
- package/icons/es/Replit/components/Avatar.js +25 -0
- package/icons/es/Replit/components/Color.d.ts +3 -0
- package/icons/es/Replit/components/Color.js +39 -0
- package/icons/es/Replit/components/Combine.d.ts +7 -0
- package/icons/es/Replit/components/Combine.js +32 -0
- package/icons/es/Replit/components/Mono.d.ts +3 -0
- package/icons/es/Replit/components/Mono.js +40 -0
- package/icons/es/Replit/components/Text.d.ts +3 -0
- package/icons/es/Replit/components/Text.js +39 -0
- package/icons/es/Replit/index.d.ts +15 -0
- package/icons/es/Replit/index.js +14 -0
- package/icons/es/Replit/style.d.ts +7 -0
- package/icons/es/Replit/style.js +9 -0
- package/icons/es/Reve/components/Avatar.d.ts +5 -0
- package/icons/es/Reve/components/Avatar.js +25 -0
- package/icons/es/Reve/components/Combine.d.ts +5 -0
- package/icons/es/Reve/components/Combine.js +26 -0
- package/icons/es/Reve/components/Mono.d.ts +3 -0
- package/icons/es/Reve/components/Mono.js +40 -0
- package/icons/es/Reve/components/Text.d.ts +3 -0
- package/icons/es/Reve/components/Text.js +41 -0
- package/icons/es/Reve/index.d.ts +13 -0
- package/icons/es/Reve/index.js +12 -0
- package/icons/es/Reve/style.d.ts +7 -0
- package/icons/es/Reve/style.js +9 -0
- package/icons/es/RooCode/components/Avatar.d.ts +5 -0
- package/icons/es/RooCode/components/Avatar.js +25 -0
- package/icons/es/RooCode/components/Combine.d.ts +5 -0
- package/icons/es/RooCode/components/Combine.js +26 -0
- package/icons/es/RooCode/components/Mono.d.ts +3 -0
- package/icons/es/RooCode/components/Mono.js +40 -0
- package/icons/es/RooCode/components/Text.d.ts +3 -0
- package/icons/es/RooCode/components/Text.js +39 -0
- package/icons/es/RooCode/index.d.ts +13 -0
- package/icons/es/RooCode/index.js +12 -0
- package/icons/es/RooCode/style.d.ts +7 -0
- package/icons/es/RooCode/style.js +9 -0
- package/icons/es/Runway/components/Avatar.d.ts +5 -0
- package/icons/es/Runway/components/Avatar.js +25 -0
- package/icons/es/Runway/components/Combine.d.ts +5 -0
- package/icons/es/Runway/components/Combine.js +26 -0
- package/icons/es/Runway/components/Mono.d.ts +3 -0
- package/icons/es/Runway/components/Mono.js +40 -0
- package/icons/es/Runway/components/Text.d.ts +3 -0
- package/icons/es/Runway/components/Text.js +39 -0
- package/icons/es/Runway/index.d.ts +13 -0
- package/icons/es/Runway/index.js +12 -0
- package/icons/es/Runway/style.d.ts +7 -0
- package/icons/es/Runway/style.js +9 -0
- package/icons/es/Rwkv/components/Avatar.d.ts +5 -0
- package/icons/es/Rwkv/components/Avatar.js +25 -0
- package/icons/es/Rwkv/components/Color.d.ts +3 -0
- package/icons/es/Rwkv/components/Color.js +62 -0
- package/icons/es/Rwkv/components/Combine.d.ts +7 -0
- package/icons/es/Rwkv/components/Combine.js +36 -0
- package/icons/es/Rwkv/components/Mono.d.ts +3 -0
- package/icons/es/Rwkv/components/Mono.js +58 -0
- package/icons/es/Rwkv/components/Text.d.ts +3 -0
- package/icons/es/Rwkv/components/Text.js +39 -0
- package/icons/es/Rwkv/index.d.ts +16 -0
- package/icons/es/Rwkv/index.js +15 -0
- package/icons/es/Rwkv/style.d.ts +8 -0
- package/icons/es/Rwkv/style.js +10 -0
- package/icons/es/SambaNova/components/Avatar.d.ts +5 -0
- package/icons/es/SambaNova/components/Avatar.js +25 -0
- package/icons/es/SambaNova/components/Color.d.ts +3 -0
- package/icons/es/SambaNova/components/Color.js +45 -0
- package/icons/es/SambaNova/components/Combine.d.ts +7 -0
- package/icons/es/SambaNova/components/Combine.js +32 -0
- package/icons/es/SambaNova/components/Mono.d.ts +3 -0
- package/icons/es/SambaNova/components/Mono.js +44 -0
- package/icons/es/SambaNova/components/Text.d.ts +3 -0
- package/icons/es/SambaNova/components/Text.js +39 -0
- package/icons/es/SambaNova/index.d.ts +15 -0
- package/icons/es/SambaNova/index.js +14 -0
- package/icons/es/SambaNova/style.d.ts +7 -0
- package/icons/es/SambaNova/style.js +9 -0
- package/icons/es/Search1API/components/Avatar.d.ts +5 -0
- package/icons/es/Search1API/components/Avatar.js +25 -0
- package/icons/es/Search1API/components/Color.d.ts +3 -0
- package/icons/es/Search1API/components/Color.js +41 -0
- package/icons/es/Search1API/components/Combine.d.ts +7 -0
- package/icons/es/Search1API/components/Combine.js +32 -0
- package/icons/es/Search1API/components/Inner.d.ts +3 -0
- package/icons/es/Search1API/components/Inner.js +40 -0
- package/icons/es/Search1API/components/Mono.d.ts +3 -0
- package/icons/es/Search1API/components/Mono.js +41 -0
- package/icons/es/Search1API/components/Text.d.ts +3 -0
- package/icons/es/Search1API/components/Text.js +39 -0
- package/icons/es/Search1API/index.d.ts +15 -0
- package/icons/es/Search1API/index.js +14 -0
- package/icons/es/Search1API/style.d.ts +7 -0
- package/icons/es/Search1API/style.js +9 -0
- package/icons/es/SearchApi/components/Avatar.d.ts +5 -0
- package/icons/es/SearchApi/components/Avatar.js +25 -0
- package/icons/es/SearchApi/components/Combine.d.ts +5 -0
- package/icons/es/SearchApi/components/Combine.js +29 -0
- package/icons/es/SearchApi/components/Mono.d.ts +3 -0
- package/icons/es/SearchApi/components/Mono.js +40 -0
- package/icons/es/SearchApi/components/Text.d.ts +3 -0
- package/icons/es/SearchApi/components/Text.js +39 -0
- package/icons/es/SearchApi/index.d.ts +13 -0
- package/icons/es/SearchApi/index.js +12 -0
- package/icons/es/SearchApi/style.d.ts +7 -0
- package/icons/es/SearchApi/style.js +9 -0
- package/icons/es/SenseNova/components/Avatar.d.ts +5 -0
- package/icons/es/SenseNova/components/Avatar.js +25 -0
- package/icons/es/SenseNova/components/BrandColor.d.ts +3 -0
- package/icons/es/SenseNova/components/BrandColor.js +93 -0
- package/icons/es/SenseNova/components/BrandMono.d.ts +3 -0
- package/icons/es/SenseNova/components/BrandMono.js +76 -0
- package/icons/es/SenseNova/components/Color.d.ts +3 -0
- package/icons/es/SenseNova/components/Color.js +51 -0
- package/icons/es/SenseNova/components/Combine.d.ts +7 -0
- package/icons/es/SenseNova/components/Combine.js +32 -0
- package/icons/es/SenseNova/components/Mono.d.ts +3 -0
- package/icons/es/SenseNova/components/Mono.js +50 -0
- package/icons/es/SenseNova/components/Text.d.ts +3 -0
- package/icons/es/SenseNova/components/Text.js +49 -0
- package/icons/es/SenseNova/index.d.ts +19 -0
- package/icons/es/SenseNova/index.js +18 -0
- package/icons/es/SenseNova/style.d.ts +7 -0
- package/icons/es/SenseNova/style.js +9 -0
- package/icons/es/SiliconCloud/components/Avatar.d.ts +5 -0
- package/icons/es/SiliconCloud/components/Avatar.js +25 -0
- package/icons/es/SiliconCloud/components/Color.d.ts +3 -0
- package/icons/es/SiliconCloud/components/Color.js +41 -0
- package/icons/es/SiliconCloud/components/Combine.d.ts +7 -0
- package/icons/es/SiliconCloud/components/Combine.js +36 -0
- package/icons/es/SiliconCloud/components/Mono.d.ts +3 -0
- package/icons/es/SiliconCloud/components/Mono.js +41 -0
- package/icons/es/SiliconCloud/components/Text.d.ts +3 -0
- package/icons/es/SiliconCloud/components/Text.js +40 -0
- package/icons/es/SiliconCloud/index.d.ts +15 -0
- package/icons/es/SiliconCloud/index.js +14 -0
- package/icons/es/SiliconCloud/style.d.ts +7 -0
- package/icons/es/SiliconCloud/style.js +9 -0
- package/icons/es/SillyTavern/components/Avatar.d.ts +5 -0
- package/icons/es/SillyTavern/components/Avatar.js +25 -0
- package/icons/es/SillyTavern/components/Color.d.ts +3 -0
- package/icons/es/SillyTavern/components/Color.js +42 -0
- package/icons/es/SillyTavern/components/Combine.d.ts +7 -0
- package/icons/es/SillyTavern/components/Combine.js +32 -0
- package/icons/es/SillyTavern/components/Mono.d.ts +3 -0
- package/icons/es/SillyTavern/components/Mono.js +45 -0
- package/icons/es/SillyTavern/components/Text.d.ts +3 -0
- package/icons/es/SillyTavern/components/Text.js +39 -0
- package/icons/es/SillyTavern/index.d.ts +15 -0
- package/icons/es/SillyTavern/index.js +14 -0
- package/icons/es/SillyTavern/style.d.ts +7 -0
- package/icons/es/SillyTavern/style.js +9 -0
- package/icons/es/Skywork/components/Avatar.d.ts +5 -0
- package/icons/es/Skywork/components/Avatar.js +25 -0
- package/icons/es/Skywork/components/Color.d.ts +3 -0
- package/icons/es/Skywork/components/Color.js +42 -0
- package/icons/es/Skywork/components/Combine.d.ts +7 -0
- package/icons/es/Skywork/components/Combine.js +32 -0
- package/icons/es/Skywork/components/Mono.d.ts +3 -0
- package/icons/es/Skywork/components/Mono.js +42 -0
- package/icons/es/Skywork/components/Text.d.ts +3 -0
- package/icons/es/Skywork/components/Text.js +39 -0
- package/icons/es/Skywork/index.d.ts +15 -0
- package/icons/es/Skywork/index.js +14 -0
- package/icons/es/Skywork/style.d.ts +7 -0
- package/icons/es/Skywork/style.js +9 -0
- package/icons/es/Slock/components/Avatar.d.ts +5 -0
- package/icons/es/Slock/components/Avatar.js +25 -0
- package/icons/es/Slock/components/Combine.d.ts +5 -0
- package/icons/es/Slock/components/Combine.js +29 -0
- package/icons/es/Slock/components/Inner.d.ts +3 -0
- package/icons/es/Slock/components/Inner.js +42 -0
- package/icons/es/Slock/components/Mono.d.ts +3 -0
- package/icons/es/Slock/components/Mono.js +40 -0
- package/icons/es/Slock/components/Text.d.ts +3 -0
- package/icons/es/Slock/components/Text.js +39 -0
- package/icons/es/Slock/index.d.ts +13 -0
- package/icons/es/Slock/index.js +12 -0
- package/icons/es/Slock/style.d.ts +7 -0
- package/icons/es/Slock/style.js +9 -0
- package/icons/es/Smithery/components/Avatar.d.ts +5 -0
- package/icons/es/Smithery/components/Avatar.js +25 -0
- package/icons/es/Smithery/components/Color.d.ts +3 -0
- package/icons/es/Smithery/components/Color.js +42 -0
- package/icons/es/Smithery/components/Combine.d.ts +7 -0
- package/icons/es/Smithery/components/Combine.js +32 -0
- package/icons/es/Smithery/components/Mono.d.ts +3 -0
- package/icons/es/Smithery/components/Mono.js +40 -0
- package/icons/es/Smithery/components/Text.d.ts +3 -0
- package/icons/es/Smithery/components/Text.js +39 -0
- package/icons/es/Smithery/index.d.ts +15 -0
- package/icons/es/Smithery/index.js +14 -0
- package/icons/es/Smithery/style.d.ts +7 -0
- package/icons/es/Smithery/style.js +9 -0
- package/icons/es/Snowflake/components/Avatar.d.ts +5 -0
- package/icons/es/Snowflake/components/Avatar.js +25 -0
- package/icons/es/Snowflake/components/Color.d.ts +3 -0
- package/icons/es/Snowflake/components/Color.js +41 -0
- package/icons/es/Snowflake/components/Combine.d.ts +7 -0
- package/icons/es/Snowflake/components/Combine.js +32 -0
- package/icons/es/Snowflake/components/Mono.d.ts +3 -0
- package/icons/es/Snowflake/components/Mono.js +41 -0
- package/icons/es/Snowflake/components/Text.d.ts +3 -0
- package/icons/es/Snowflake/components/Text.js +40 -0
- package/icons/es/Snowflake/index.d.ts +15 -0
- package/icons/es/Snowflake/index.js +14 -0
- package/icons/es/Snowflake/style.d.ts +7 -0
- package/icons/es/Snowflake/style.js +9 -0
- package/icons/es/SophNet/components/Avatar.d.ts +5 -0
- package/icons/es/SophNet/components/Avatar.js +25 -0
- package/icons/es/SophNet/components/Color.d.ts +3 -0
- package/icons/es/SophNet/components/Color.js +48 -0
- package/icons/es/SophNet/components/Combine.d.ts +7 -0
- package/icons/es/SophNet/components/Combine.js +32 -0
- package/icons/es/SophNet/components/Mono.d.ts +3 -0
- package/icons/es/SophNet/components/Mono.js +46 -0
- package/icons/es/SophNet/components/Text.d.ts +3 -0
- package/icons/es/SophNet/components/Text.js +39 -0
- package/icons/es/SophNet/index.d.ts +15 -0
- package/icons/es/SophNet/index.js +14 -0
- package/icons/es/SophNet/style.d.ts +7 -0
- package/icons/es/SophNet/style.js +9 -0
- package/icons/es/Sora/components/Avatar.d.ts +5 -0
- package/icons/es/Sora/components/Avatar.js +25 -0
- package/icons/es/Sora/components/Color.d.ts +3 -0
- package/icons/es/Sora/components/Color.js +155 -0
- package/icons/es/Sora/components/Combine.d.ts +7 -0
- package/icons/es/Sora/components/Combine.js +32 -0
- package/icons/es/Sora/components/Inner.d.ts +3 -0
- package/icons/es/Sora/components/Inner.js +138 -0
- package/icons/es/Sora/components/Mono.d.ts +3 -0
- package/icons/es/Sora/components/Mono.js +51 -0
- package/icons/es/Sora/components/Text.d.ts +3 -0
- package/icons/es/Sora/components/Text.js +39 -0
- package/icons/es/Sora/index.d.ts +16 -0
- package/icons/es/Sora/index.js +15 -0
- package/icons/es/Sora/style.d.ts +8 -0
- package/icons/es/Sora/style.js +10 -0
- package/icons/es/Spark/components/Avatar.d.ts +5 -0
- package/icons/es/Spark/components/Avatar.js +25 -0
- package/icons/es/Spark/components/Color.d.ts +3 -0
- package/icons/es/Spark/components/Color.js +47 -0
- package/icons/es/Spark/components/Combine.d.ts +7 -0
- package/icons/es/Spark/components/Combine.js +32 -0
- package/icons/es/Spark/components/Mono.d.ts +3 -0
- package/icons/es/Spark/components/Mono.js +42 -0
- package/icons/es/Spark/components/Text.d.ts +3 -0
- package/icons/es/Spark/components/Text.js +48 -0
- package/icons/es/Spark/index.d.ts +15 -0
- package/icons/es/Spark/index.js +14 -0
- package/icons/es/Spark/style.d.ts +7 -0
- package/icons/es/Spark/style.js +9 -0
- package/icons/es/SpeedAI/components/Avatar.d.ts +5 -0
- package/icons/es/SpeedAI/components/Avatar.js +25 -0
- package/icons/es/SpeedAI/components/Color.d.ts +3 -0
- package/icons/es/SpeedAI/components/Color.js +39 -0
- package/icons/es/SpeedAI/components/Combine.d.ts +7 -0
- package/icons/es/SpeedAI/components/Combine.js +32 -0
- package/icons/es/SpeedAI/components/Mono.d.ts +3 -0
- package/icons/es/SpeedAI/components/Mono.js +40 -0
- package/icons/es/SpeedAI/components/Text.d.ts +3 -0
- package/icons/es/SpeedAI/components/Text.js +39 -0
- package/icons/es/SpeedAI/index.d.ts +15 -0
- package/icons/es/SpeedAI/index.js +14 -0
- package/icons/es/SpeedAI/style.d.ts +7 -0
- package/icons/es/SpeedAI/style.js +9 -0
- package/icons/es/Stability/components/Avatar.d.ts +5 -0
- package/icons/es/Stability/components/Avatar.js +25 -0
- package/icons/es/Stability/components/BrandColor.d.ts +3 -0
- package/icons/es/Stability/components/BrandColor.js +60 -0
- package/icons/es/Stability/components/BrandMono.d.ts +3 -0
- package/icons/es/Stability/components/BrandMono.js +41 -0
- package/icons/es/Stability/components/Color.d.ts +3 -0
- package/icons/es/Stability/components/Color.js +61 -0
- package/icons/es/Stability/components/Combine.d.ts +7 -0
- package/icons/es/Stability/components/Combine.js +32 -0
- package/icons/es/Stability/components/Mono.d.ts +3 -0
- package/icons/es/Stability/components/Mono.js +42 -0
- package/icons/es/Stability/components/Text.d.ts +3 -0
- package/icons/es/Stability/components/Text.js +39 -0
- package/icons/es/Stability/index.d.ts +20 -0
- package/icons/es/Stability/index.js +19 -0
- package/icons/es/Stability/style.d.ts +8 -0
- package/icons/es/Stability/style.js +10 -0
- package/icons/es/StateCloud/components/Avatar.d.ts +5 -0
- package/icons/es/StateCloud/components/Avatar.js +25 -0
- package/icons/es/StateCloud/components/Color.d.ts +3 -0
- package/icons/es/StateCloud/components/Color.js +41 -0
- package/icons/es/StateCloud/components/Combine.d.ts +7 -0
- package/icons/es/StateCloud/components/Combine.js +32 -0
- package/icons/es/StateCloud/components/Mono.d.ts +3 -0
- package/icons/es/StateCloud/components/Mono.js +41 -0
- package/icons/es/StateCloud/components/Text.d.ts +3 -0
- package/icons/es/StateCloud/components/Text.js +40 -0
- package/icons/es/StateCloud/index.d.ts +15 -0
- package/icons/es/StateCloud/index.js +14 -0
- package/icons/es/StateCloud/style.d.ts +7 -0
- package/icons/es/StateCloud/style.js +9 -0
- package/icons/es/Stepfun/components/Avatar.d.ts +5 -0
- package/icons/es/Stepfun/components/Avatar.js +25 -0
- package/icons/es/Stepfun/components/Color.d.ts +3 -0
- package/icons/es/Stepfun/components/Color.js +59 -0
- package/icons/es/Stepfun/components/Combine.d.ts +7 -0
- package/icons/es/Stepfun/components/Combine.js +36 -0
- package/icons/es/Stepfun/components/Mono.d.ts +3 -0
- package/icons/es/Stepfun/components/Mono.js +40 -0
- package/icons/es/Stepfun/components/Text.d.ts +3 -0
- package/icons/es/Stepfun/components/Text.js +48 -0
- package/icons/es/Stepfun/index.d.ts +16 -0
- package/icons/es/Stepfun/index.js +15 -0
- package/icons/es/Stepfun/style.d.ts +8 -0
- package/icons/es/Stepfun/style.js +10 -0
- package/icons/es/Straico/components/Avatar.d.ts +5 -0
- package/icons/es/Straico/components/Avatar.js +25 -0
- package/icons/es/Straico/components/Color.d.ts +3 -0
- package/icons/es/Straico/components/Color.js +39 -0
- package/icons/es/Straico/components/Combine.d.ts +7 -0
- package/icons/es/Straico/components/Combine.js +36 -0
- package/icons/es/Straico/components/Mono.d.ts +3 -0
- package/icons/es/Straico/components/Mono.js +40 -0
- package/icons/es/Straico/components/Text.d.ts +3 -0
- package/icons/es/Straico/components/Text.js +40 -0
- package/icons/es/Straico/index.d.ts +15 -0
- package/icons/es/Straico/index.js +14 -0
- package/icons/es/Straico/style.d.ts +7 -0
- package/icons/es/Straico/style.js +9 -0
- package/icons/es/StreamLake/components/Avatar.d.ts +5 -0
- package/icons/es/StreamLake/components/Avatar.js +25 -0
- package/icons/es/StreamLake/components/Color.d.ts +3 -0
- package/icons/es/StreamLake/components/Color.js +39 -0
- package/icons/es/StreamLake/components/Combine.d.ts +7 -0
- package/icons/es/StreamLake/components/Combine.js +32 -0
- package/icons/es/StreamLake/components/Mono.d.ts +3 -0
- package/icons/es/StreamLake/components/Mono.js +40 -0
- package/icons/es/StreamLake/components/Text.d.ts +3 -0
- package/icons/es/StreamLake/components/Text.js +39 -0
- package/icons/es/StreamLake/index.d.ts +15 -0
- package/icons/es/StreamLake/index.js +14 -0
- package/icons/es/StreamLake/style.d.ts +7 -0
- package/icons/es/StreamLake/style.js +9 -0
- package/icons/es/SubModel/components/Avatar.d.ts +5 -0
- package/icons/es/SubModel/components/Avatar.js +25 -0
- package/icons/es/SubModel/components/Color.d.ts +3 -0
- package/icons/es/SubModel/components/Color.js +100 -0
- package/icons/es/SubModel/components/Combine.d.ts +7 -0
- package/icons/es/SubModel/components/Combine.js +36 -0
- package/icons/es/SubModel/components/Mono.d.ts +3 -0
- package/icons/es/SubModel/components/Mono.js +41 -0
- package/icons/es/SubModel/components/Text.d.ts +3 -0
- package/icons/es/SubModel/components/Text.js +39 -0
- package/icons/es/SubModel/index.d.ts +15 -0
- package/icons/es/SubModel/index.js +14 -0
- package/icons/es/SubModel/style.d.ts +7 -0
- package/icons/es/SubModel/style.js +9 -0
- package/icons/es/Suno/components/Avatar.d.ts +5 -0
- package/icons/es/Suno/components/Avatar.js +25 -0
- package/icons/es/Suno/components/Combine.d.ts +5 -0
- package/icons/es/Suno/components/Combine.js +26 -0
- package/icons/es/Suno/components/Mono.d.ts +3 -0
- package/icons/es/Suno/components/Mono.js +40 -0
- package/icons/es/Suno/components/Text.d.ts +3 -0
- package/icons/es/Suno/components/Text.js +39 -0
- package/icons/es/Suno/index.d.ts +13 -0
- package/icons/es/Suno/index.js +12 -0
- package/icons/es/Suno/style.d.ts +7 -0
- package/icons/es/Suno/style.js +9 -0
- package/icons/es/Sync/components/Avatar.d.ts +5 -0
- package/icons/es/Sync/components/Avatar.js +25 -0
- package/icons/es/Sync/components/Combine.d.ts +5 -0
- package/icons/es/Sync/components/Combine.js +29 -0
- package/icons/es/Sync/components/Mono.d.ts +3 -0
- package/icons/es/Sync/components/Mono.js +40 -0
- package/icons/es/Sync/components/Text.d.ts +3 -0
- package/icons/es/Sync/components/Text.js +39 -0
- package/icons/es/Sync/index.d.ts +13 -0
- package/icons/es/Sync/index.js +12 -0
- package/icons/es/Sync/style.d.ts +7 -0
- package/icons/es/Sync/style.js +9 -0
- package/icons/es/TII/components/Avatar.d.ts +5 -0
- package/icons/es/TII/components/Avatar.js +25 -0
- package/icons/es/TII/components/Color.d.ts +3 -0
- package/icons/es/TII/components/Color.js +42 -0
- package/icons/es/TII/components/Combine.d.ts +7 -0
- package/icons/es/TII/components/Combine.js +32 -0
- package/icons/es/TII/components/Mono.d.ts +3 -0
- package/icons/es/TII/components/Mono.js +42 -0
- package/icons/es/TII/components/Text.d.ts +3 -0
- package/icons/es/TII/components/Text.js +39 -0
- package/icons/es/TII/index.d.ts +15 -0
- package/icons/es/TII/index.js +14 -0
- package/icons/es/TII/style.d.ts +7 -0
- package/icons/es/TII/style.js +9 -0
- package/icons/es/Targon/components/Avatar.d.ts +5 -0
- package/icons/es/Targon/components/Avatar.js +25 -0
- package/icons/es/Targon/components/Color.d.ts +3 -0
- package/icons/es/Targon/components/Color.js +44 -0
- package/icons/es/Targon/components/Combine.d.ts +7 -0
- package/icons/es/Targon/components/Combine.js +32 -0
- package/icons/es/Targon/components/Inner.d.ts +3 -0
- package/icons/es/Targon/components/Inner.js +41 -0
- package/icons/es/Targon/components/Mono.d.ts +3 -0
- package/icons/es/Targon/components/Mono.js +41 -0
- package/icons/es/Targon/components/Text.d.ts +3 -0
- package/icons/es/Targon/components/Text.js +39 -0
- package/icons/es/Targon/index.d.ts +15 -0
- package/icons/es/Targon/index.js +14 -0
- package/icons/es/Targon/style.d.ts +7 -0
- package/icons/es/Targon/style.js +9 -0
- package/icons/es/Tavily/components/Avatar.d.ts +5 -0
- package/icons/es/Tavily/components/Avatar.js +25 -0
- package/icons/es/Tavily/components/Color.d.ts +3 -0
- package/icons/es/Tavily/components/Color.js +54 -0
- package/icons/es/Tavily/components/Combine.d.ts +7 -0
- package/icons/es/Tavily/components/Combine.js +32 -0
- package/icons/es/Tavily/components/Mono.d.ts +3 -0
- package/icons/es/Tavily/components/Mono.js +40 -0
- package/icons/es/Tavily/components/Text.d.ts +3 -0
- package/icons/es/Tavily/components/Text.js +39 -0
- package/icons/es/Tavily/index.d.ts +15 -0
- package/icons/es/Tavily/index.js +14 -0
- package/icons/es/Tavily/style.d.ts +7 -0
- package/icons/es/Tavily/style.js +9 -0
- package/icons/es/Tencent/components/Avatar.d.ts +5 -0
- package/icons/es/Tencent/components/Avatar.js +25 -0
- package/icons/es/Tencent/components/BrandColor.d.ts +3 -0
- package/icons/es/Tencent/components/BrandColor.js +39 -0
- package/icons/es/Tencent/components/BrandMono.d.ts +3 -0
- package/icons/es/Tencent/components/BrandMono.js +39 -0
- package/icons/es/Tencent/components/Color.d.ts +3 -0
- package/icons/es/Tencent/components/Color.js +40 -0
- package/icons/es/Tencent/components/Mono.d.ts +3 -0
- package/icons/es/Tencent/components/Mono.js +40 -0
- package/icons/es/Tencent/components/Text.d.ts +3 -0
- package/icons/es/Tencent/components/Text.js +39 -0
- package/icons/es/Tencent/components/TextCn.d.ts +3 -0
- package/icons/es/Tencent/components/TextCn.js +39 -0
- package/icons/es/Tencent/index.d.ts +19 -0
- package/icons/es/Tencent/index.js +18 -0
- package/icons/es/Tencent/style.d.ts +5 -0
- package/icons/es/Tencent/style.js +7 -0
- package/icons/es/TencentCloud/components/Avatar.d.ts +5 -0
- package/icons/es/TencentCloud/components/Avatar.js +25 -0
- package/icons/es/TencentCloud/components/Color.d.ts +3 -0
- package/icons/es/TencentCloud/components/Color.js +45 -0
- package/icons/es/TencentCloud/components/Combine.d.ts +7 -0
- package/icons/es/TencentCloud/components/Combine.js +32 -0
- package/icons/es/TencentCloud/components/Mono.d.ts +3 -0
- package/icons/es/TencentCloud/components/Mono.js +44 -0
- package/icons/es/TencentCloud/components/Text.d.ts +3 -0
- package/icons/es/TencentCloud/components/Text.js +53 -0
- package/icons/es/TencentCloud/index.d.ts +15 -0
- package/icons/es/TencentCloud/index.js +14 -0
- package/icons/es/TencentCloud/style.d.ts +7 -0
- package/icons/es/TencentCloud/style.js +9 -0
- package/icons/es/Tiangong/components/Avatar.d.ts +5 -0
- package/icons/es/Tiangong/components/Avatar.js +25 -0
- package/icons/es/Tiangong/components/Color.d.ts +3 -0
- package/icons/es/Tiangong/components/Color.js +98 -0
- package/icons/es/Tiangong/components/Combine.d.ts +7 -0
- package/icons/es/Tiangong/components/Combine.js +32 -0
- package/icons/es/Tiangong/components/Mono.d.ts +3 -0
- package/icons/es/Tiangong/components/Mono.js +44 -0
- package/icons/es/Tiangong/components/Text.d.ts +3 -0
- package/icons/es/Tiangong/components/Text.js +39 -0
- package/icons/es/Tiangong/index.d.ts +16 -0
- package/icons/es/Tiangong/index.js +15 -0
- package/icons/es/Tiangong/style.d.ts +8 -0
- package/icons/es/Tiangong/style.js +10 -0
- package/icons/es/Together/components/Avatar.d.ts +5 -0
- package/icons/es/Together/components/Avatar.js +25 -0
- package/icons/es/Together/components/Color.d.ts +3 -0
- package/icons/es/Together/components/Color.js +45 -0
- package/icons/es/Together/components/Combine.d.ts +7 -0
- package/icons/es/Together/components/Combine.js +32 -0
- package/icons/es/Together/components/Mono.d.ts +3 -0
- package/icons/es/Together/components/Mono.js +44 -0
- package/icons/es/Together/components/Text.d.ts +3 -0
- package/icons/es/Together/components/Text.js +50 -0
- package/icons/es/Together/index.d.ts +15 -0
- package/icons/es/Together/index.js +14 -0
- package/icons/es/Together/style.d.ts +7 -0
- package/icons/es/Together/style.js +9 -0
- package/icons/es/TopazLabs/components/Avatar.d.ts +5 -0
- package/icons/es/TopazLabs/components/Avatar.js +25 -0
- package/icons/es/TopazLabs/components/Combine.d.ts +5 -0
- package/icons/es/TopazLabs/components/Combine.js +29 -0
- package/icons/es/TopazLabs/components/Mono.d.ts +3 -0
- package/icons/es/TopazLabs/components/Mono.js +40 -0
- package/icons/es/TopazLabs/components/Text.d.ts +3 -0
- package/icons/es/TopazLabs/components/Text.js +47 -0
- package/icons/es/TopazLabs/index.d.ts +13 -0
- package/icons/es/TopazLabs/index.js +12 -0
- package/icons/es/TopazLabs/style.d.ts +7 -0
- package/icons/es/TopazLabs/style.js +9 -0
- package/icons/es/Trae/components/Avatar.d.ts +5 -0
- package/icons/es/Trae/components/Avatar.js +25 -0
- package/icons/es/Trae/components/Color.d.ts +3 -0
- package/icons/es/Trae/components/Color.js +39 -0
- package/icons/es/Trae/components/Combine.d.ts +7 -0
- package/icons/es/Trae/components/Combine.js +32 -0
- package/icons/es/Trae/components/Mono.d.ts +3 -0
- package/icons/es/Trae/components/Mono.js +40 -0
- package/icons/es/Trae/components/Text.d.ts +3 -0
- package/icons/es/Trae/components/Text.js +39 -0
- package/icons/es/Trae/index.d.ts +15 -0
- package/icons/es/Trae/index.js +14 -0
- package/icons/es/Trae/style.d.ts +7 -0
- package/icons/es/Trae/style.js +9 -0
- package/icons/es/Tripo/components/Avatar.d.ts +5 -0
- package/icons/es/Tripo/components/Avatar.js +25 -0
- package/icons/es/Tripo/components/Color.d.ts +3 -0
- package/icons/es/Tripo/components/Color.js +43 -0
- package/icons/es/Tripo/components/Combine.d.ts +7 -0
- package/icons/es/Tripo/components/Combine.js +32 -0
- package/icons/es/Tripo/components/Mono.d.ts +3 -0
- package/icons/es/Tripo/components/Mono.js +42 -0
- package/icons/es/Tripo/components/Text.d.ts +3 -0
- package/icons/es/Tripo/components/Text.js +39 -0
- package/icons/es/Tripo/index.d.ts +15 -0
- package/icons/es/Tripo/index.js +14 -0
- package/icons/es/Tripo/style.d.ts +7 -0
- package/icons/es/Tripo/style.js +9 -0
- package/icons/es/TuriX/components/Avatar.d.ts +5 -0
- package/icons/es/TuriX/components/Avatar.js +25 -0
- package/icons/es/TuriX/components/Combine.d.ts +4 -0
- package/icons/es/TuriX/components/Combine.js +26 -0
- package/icons/es/TuriX/components/Mono.d.ts +3 -0
- package/icons/es/TuriX/components/Mono.js +40 -0
- package/icons/es/TuriX/components/Text.d.ts +3 -0
- package/icons/es/TuriX/components/Text.js +40 -0
- package/icons/es/TuriX/index.d.ts +14 -0
- package/icons/es/TuriX/index.js +13 -0
- package/icons/es/TuriX/style.d.ts +8 -0
- package/icons/es/TuriX/style.js +10 -0
- package/icons/es/Udio/components/Avatar.d.ts +5 -0
- package/icons/es/Udio/components/Avatar.js +25 -0
- package/icons/es/Udio/components/Color.d.ts +3 -0
- package/icons/es/Udio/components/Color.js +39 -0
- package/icons/es/Udio/components/Combine.d.ts +7 -0
- package/icons/es/Udio/components/Combine.js +36 -0
- package/icons/es/Udio/components/Mono.d.ts +3 -0
- package/icons/es/Udio/components/Mono.js +40 -0
- package/icons/es/Udio/components/Text.d.ts +3 -0
- package/icons/es/Udio/components/Text.js +47 -0
- package/icons/es/Udio/index.d.ts +13 -0
- package/icons/es/Udio/index.js +12 -0
- package/icons/es/Udio/style.d.ts +7 -0
- package/icons/es/Udio/style.js +9 -0
- package/icons/es/Unstructured/components/Avatar.d.ts +5 -0
- package/icons/es/Unstructured/components/Avatar.js +25 -0
- package/icons/es/Unstructured/components/Color.d.ts +3 -0
- package/icons/es/Unstructured/components/Color.js +44 -0
- package/icons/es/Unstructured/components/Combine.d.ts +7 -0
- package/icons/es/Unstructured/components/Combine.js +32 -0
- package/icons/es/Unstructured/components/Inner.d.ts +3 -0
- package/icons/es/Unstructured/components/Inner.js +40 -0
- package/icons/es/Unstructured/components/Mono.d.ts +3 -0
- package/icons/es/Unstructured/components/Mono.js +41 -0
- package/icons/es/Unstructured/components/Text.d.ts +3 -0
- package/icons/es/Unstructured/components/Text.js +39 -0
- package/icons/es/Unstructured/index.d.ts +15 -0
- package/icons/es/Unstructured/index.js +14 -0
- package/icons/es/Unstructured/style.d.ts +7 -0
- package/icons/es/Unstructured/style.js +9 -0
- package/icons/es/Upstage/components/Avatar.d.ts +5 -0
- package/icons/es/Upstage/components/Avatar.js +25 -0
- package/icons/es/Upstage/components/Color.d.ts +3 -0
- package/icons/es/Upstage/components/Color.js +58 -0
- package/icons/es/Upstage/components/Combine.d.ts +7 -0
- package/icons/es/Upstage/components/Combine.js +33 -0
- package/icons/es/Upstage/components/Mono.d.ts +3 -0
- package/icons/es/Upstage/components/Mono.js +60 -0
- package/icons/es/Upstage/components/Text.d.ts +3 -0
- package/icons/es/Upstage/components/Text.js +39 -0
- package/icons/es/Upstage/index.d.ts +16 -0
- package/icons/es/Upstage/index.js +15 -0
- package/icons/es/Upstage/style.d.ts +8 -0
- package/icons/es/Upstage/style.js +10 -0
- package/icons/es/V0/components/Avatar.d.ts +5 -0
- package/icons/es/V0/components/Avatar.js +25 -0
- package/icons/es/V0/components/Mono.d.ts +3 -0
- package/icons/es/V0/components/Mono.js +41 -0
- package/icons/es/V0/index.d.ts +9 -0
- package/icons/es/V0/index.js +8 -0
- package/icons/es/V0/style.d.ts +7 -0
- package/icons/es/V0/style.js +9 -0
- package/icons/es/VectorizerAI/components/Avatar.d.ts +5 -0
- package/icons/es/VectorizerAI/components/Avatar.js +25 -0
- package/icons/es/VectorizerAI/components/Combine.d.ts +7 -0
- package/icons/es/VectorizerAI/components/Combine.js +29 -0
- package/icons/es/VectorizerAI/components/Mono.d.ts +3 -0
- package/icons/es/VectorizerAI/components/Mono.js +40 -0
- package/icons/es/VectorizerAI/components/Text.d.ts +3 -0
- package/icons/es/VectorizerAI/components/Text.js +39 -0
- package/icons/es/VectorizerAI/index.d.ts +13 -0
- package/icons/es/VectorizerAI/index.js +12 -0
- package/icons/es/VectorizerAI/style.d.ts +7 -0
- package/icons/es/VectorizerAI/style.js +9 -0
- package/icons/es/Venice/components/Avatar.d.ts +5 -0
- package/icons/es/Venice/components/Avatar.js +25 -0
- package/icons/es/Venice/components/Color.d.ts +3 -0
- package/icons/es/Venice/components/Color.js +46 -0
- package/icons/es/Venice/components/Combine.d.ts +7 -0
- package/icons/es/Venice/components/Combine.js +32 -0
- package/icons/es/Venice/components/Mono.d.ts +3 -0
- package/icons/es/Venice/components/Mono.js +44 -0
- package/icons/es/Venice/components/Text.d.ts +3 -0
- package/icons/es/Venice/components/Text.js +43 -0
- package/icons/es/Venice/index.d.ts +15 -0
- package/icons/es/Venice/index.js +14 -0
- package/icons/es/Venice/style.d.ts +7 -0
- package/icons/es/Venice/style.js +9 -0
- package/icons/es/Vercel/components/Avatar.d.ts +5 -0
- package/icons/es/Vercel/components/Avatar.js +25 -0
- package/icons/es/Vercel/components/Combine.d.ts +5 -0
- package/icons/es/Vercel/components/Combine.js +26 -0
- package/icons/es/Vercel/components/Mono.d.ts +3 -0
- package/icons/es/Vercel/components/Mono.js +40 -0
- package/icons/es/Vercel/components/Text.d.ts +3 -0
- package/icons/es/Vercel/components/Text.js +39 -0
- package/icons/es/Vercel/index.d.ts +13 -0
- package/icons/es/Vercel/index.js +12 -0
- package/icons/es/Vercel/style.d.ts +7 -0
- package/icons/es/Vercel/style.js +9 -0
- package/icons/es/VertexAI/components/Avatar.d.ts +5 -0
- package/icons/es/VertexAI/components/Avatar.js +25 -0
- package/icons/es/VertexAI/components/Color.d.ts +3 -0
- package/icons/es/VertexAI/components/Color.js +64 -0
- package/icons/es/VertexAI/components/Combine.d.ts +7 -0
- package/icons/es/VertexAI/components/Combine.js +32 -0
- package/icons/es/VertexAI/components/Mono.d.ts +3 -0
- package/icons/es/VertexAI/components/Mono.js +56 -0
- package/icons/es/VertexAI/components/Text.d.ts +3 -0
- package/icons/es/VertexAI/components/Text.js +52 -0
- package/icons/es/VertexAI/index.d.ts +15 -0
- package/icons/es/VertexAI/index.js +14 -0
- package/icons/es/VertexAI/style.d.ts +7 -0
- package/icons/es/VertexAI/style.js +9 -0
- package/icons/es/Vidu/components/Avatar.d.ts +5 -0
- package/icons/es/Vidu/components/Avatar.js +25 -0
- package/icons/es/Vidu/components/Color.d.ts +3 -0
- package/icons/es/Vidu/components/Color.js +73 -0
- package/icons/es/Vidu/components/Combine.d.ts +7 -0
- package/icons/es/Vidu/components/Combine.js +32 -0
- package/icons/es/Vidu/components/Mono.d.ts +3 -0
- package/icons/es/Vidu/components/Mono.js +40 -0
- package/icons/es/Vidu/components/Text.d.ts +3 -0
- package/icons/es/Vidu/components/Text.js +40 -0
- package/icons/es/Vidu/index.d.ts +16 -0
- package/icons/es/Vidu/index.js +15 -0
- package/icons/es/Vidu/style.d.ts +8 -0
- package/icons/es/Vidu/style.js +10 -0
- package/icons/es/Viggle/components/Avatar.d.ts +5 -0
- package/icons/es/Viggle/components/Avatar.js +25 -0
- package/icons/es/Viggle/components/Combine.d.ts +5 -0
- package/icons/es/Viggle/components/Combine.js +26 -0
- package/icons/es/Viggle/components/Mono.d.ts +3 -0
- package/icons/es/Viggle/components/Mono.js +41 -0
- package/icons/es/Viggle/components/Text.d.ts +3 -0
- package/icons/es/Viggle/components/Text.js +39 -0
- package/icons/es/Viggle/index.d.ts +13 -0
- package/icons/es/Viggle/index.js +12 -0
- package/icons/es/Viggle/style.d.ts +7 -0
- package/icons/es/Viggle/style.js +9 -0
- package/icons/es/Vllm/components/Avatar.d.ts +5 -0
- package/icons/es/Vllm/components/Avatar.js +25 -0
- package/icons/es/Vllm/components/Color.d.ts +3 -0
- package/icons/es/Vllm/components/Color.js +42 -0
- package/icons/es/Vllm/components/Combine.d.ts +7 -0
- package/icons/es/Vllm/components/Combine.js +32 -0
- package/icons/es/Vllm/components/Mono.d.ts +3 -0
- package/icons/es/Vllm/components/Mono.js +42 -0
- package/icons/es/Vllm/components/Text.d.ts +3 -0
- package/icons/es/Vllm/components/Text.js +39 -0
- package/icons/es/Vllm/index.d.ts +15 -0
- package/icons/es/Vllm/index.js +14 -0
- package/icons/es/Vllm/style.d.ts +7 -0
- package/icons/es/Vllm/style.js +9 -0
- package/icons/es/Volcengine/components/Avatar.d.ts +5 -0
- package/icons/es/Volcengine/components/Avatar.js +25 -0
- package/icons/es/Volcengine/components/Color.d.ts +3 -0
- package/icons/es/Volcengine/components/Color.js +48 -0
- package/icons/es/Volcengine/components/Combine.d.ts +7 -0
- package/icons/es/Volcengine/components/Combine.js +32 -0
- package/icons/es/Volcengine/components/Mono.d.ts +3 -0
- package/icons/es/Volcengine/components/Mono.js +52 -0
- package/icons/es/Volcengine/components/Text.d.ts +3 -0
- package/icons/es/Volcengine/components/Text.js +47 -0
- package/icons/es/Volcengine/index.d.ts +15 -0
- package/icons/es/Volcengine/index.js +14 -0
- package/icons/es/Volcengine/style.d.ts +7 -0
- package/icons/es/Volcengine/style.js +9 -0
- package/icons/es/Voyage/components/Avatar.d.ts +5 -0
- package/icons/es/Voyage/components/Avatar.js +25 -0
- package/icons/es/Voyage/components/Color.d.ts +3 -0
- package/icons/es/Voyage/components/Color.js +39 -0
- package/icons/es/Voyage/components/Mono.d.ts +3 -0
- package/icons/es/Voyage/components/Mono.js +40 -0
- package/icons/es/Voyage/components/Text.d.ts +3 -0
- package/icons/es/Voyage/components/Text.js +39 -0
- package/icons/es/Voyage/index.d.ts +13 -0
- package/icons/es/Voyage/index.js +12 -0
- package/icons/es/Voyage/style.d.ts +7 -0
- package/icons/es/Voyage/style.js +9 -0
- package/icons/es/Wenxin/components/Avatar.d.ts +5 -0
- package/icons/es/Wenxin/components/Avatar.js +25 -0
- package/icons/es/Wenxin/components/Color.d.ts +3 -0
- package/icons/es/Wenxin/components/Color.js +61 -0
- package/icons/es/Wenxin/components/Combine.d.ts +7 -0
- package/icons/es/Wenxin/components/Combine.js +32 -0
- package/icons/es/Wenxin/components/Mono.d.ts +3 -0
- package/icons/es/Wenxin/components/Mono.js +40 -0
- package/icons/es/Wenxin/components/Text.d.ts +3 -0
- package/icons/es/Wenxin/components/Text.js +39 -0
- package/icons/es/Wenxin/index.d.ts +16 -0
- package/icons/es/Wenxin/index.js +15 -0
- package/icons/es/Wenxin/style.d.ts +8 -0
- package/icons/es/Wenxin/style.js +10 -0
- package/icons/es/Windsurf/components/Avatar.d.ts +5 -0
- package/icons/es/Windsurf/components/Avatar.js +25 -0
- package/icons/es/Windsurf/components/Combine.d.ts +5 -0
- package/icons/es/Windsurf/components/Combine.js +29 -0
- package/icons/es/Windsurf/components/Mono.d.ts +3 -0
- package/icons/es/Windsurf/components/Mono.js +41 -0
- package/icons/es/Windsurf/components/Text.d.ts +3 -0
- package/icons/es/Windsurf/components/Text.js +40 -0
- package/icons/es/Windsurf/index.d.ts +13 -0
- package/icons/es/Windsurf/index.js +12 -0
- package/icons/es/Windsurf/style.d.ts +7 -0
- package/icons/es/Windsurf/style.js +9 -0
- package/icons/es/WorkersAI/components/Avatar.d.ts +5 -0
- package/icons/es/WorkersAI/components/Avatar.js +25 -0
- package/icons/es/WorkersAI/components/Color.d.ts +3 -0
- package/icons/es/WorkersAI/components/Color.js +41 -0
- package/icons/es/WorkersAI/components/Combine.d.ts +7 -0
- package/icons/es/WorkersAI/components/Combine.js +32 -0
- package/icons/es/WorkersAI/components/Mono.d.ts +3 -0
- package/icons/es/WorkersAI/components/Mono.js +41 -0
- package/icons/es/WorkersAI/components/Text.d.ts +3 -0
- package/icons/es/WorkersAI/components/Text.js +39 -0
- package/icons/es/WorkersAI/index.d.ts +15 -0
- package/icons/es/WorkersAI/index.js +14 -0
- package/icons/es/WorkersAI/style.d.ts +7 -0
- package/icons/es/WorkersAI/style.js +9 -0
- package/icons/es/WorldRouter/components/Avatar.d.ts +5 -0
- package/icons/es/WorldRouter/components/Avatar.js +25 -0
- package/icons/es/WorldRouter/components/Combine.d.ts +5 -0
- package/icons/es/WorldRouter/components/Combine.js +26 -0
- package/icons/es/WorldRouter/components/Mono.d.ts +3 -0
- package/icons/es/WorldRouter/components/Mono.js +40 -0
- package/icons/es/WorldRouter/components/Text.d.ts +3 -0
- package/icons/es/WorldRouter/components/Text.js +38 -0
- package/icons/es/WorldRouter/index.d.ts +13 -0
- package/icons/es/WorldRouter/index.js +12 -0
- package/icons/es/WorldRouter/style.d.ts +7 -0
- package/icons/es/WorldRouter/style.js +9 -0
- package/icons/es/XAI/components/Avatar.d.ts +5 -0
- package/icons/es/XAI/components/Avatar.js +25 -0
- package/icons/es/XAI/components/Combine.d.ts +5 -0
- package/icons/es/XAI/components/Combine.js +29 -0
- package/icons/es/XAI/components/Mono.d.ts +3 -0
- package/icons/es/XAI/components/Mono.js +40 -0
- package/icons/es/XAI/components/Text.d.ts +3 -0
- package/icons/es/XAI/components/Text.js +39 -0
- package/icons/es/XAI/index.d.ts +13 -0
- package/icons/es/XAI/index.js +12 -0
- package/icons/es/XAI/style.d.ts +7 -0
- package/icons/es/XAI/style.js +9 -0
- package/icons/es/XiaomiMiMo/components/Avatar.d.ts +5 -0
- package/icons/es/XiaomiMiMo/components/Avatar.js +25 -0
- package/icons/es/XiaomiMiMo/components/Mono.d.ts +3 -0
- package/icons/es/XiaomiMiMo/components/Mono.js +40 -0
- package/icons/es/XiaomiMiMo/components/Text.d.ts +3 -0
- package/icons/es/XiaomiMiMo/components/Text.js +42 -0
- package/icons/es/XiaomiMiMo/index.d.ts +11 -0
- package/icons/es/XiaomiMiMo/index.js +10 -0
- package/icons/es/XiaomiMiMo/style.d.ts +7 -0
- package/icons/es/XiaomiMiMo/style.js +9 -0
- package/icons/es/Xinference/components/Avatar.d.ts +5 -0
- package/icons/es/Xinference/components/Avatar.js +25 -0
- package/icons/es/Xinference/components/Color.d.ts +3 -0
- package/icons/es/Xinference/components/Color.js +100 -0
- package/icons/es/Xinference/components/Combine.d.ts +7 -0
- package/icons/es/Xinference/components/Combine.js +32 -0
- package/icons/es/Xinference/components/Mono.d.ts +3 -0
- package/icons/es/Xinference/components/Mono.js +44 -0
- package/icons/es/Xinference/components/Text.d.ts +3 -0
- package/icons/es/Xinference/components/Text.js +39 -0
- package/icons/es/Xinference/index.d.ts +15 -0
- package/icons/es/Xinference/index.js +14 -0
- package/icons/es/Xinference/style.d.ts +7 -0
- package/icons/es/Xinference/style.js +9 -0
- package/icons/es/Xpay/components/Avatar.d.ts +5 -0
- package/icons/es/Xpay/components/Avatar.js +25 -0
- package/icons/es/Xpay/components/Color.d.ts +3 -0
- package/icons/es/Xpay/components/Color.js +45 -0
- package/icons/es/Xpay/components/Combine.d.ts +7 -0
- package/icons/es/Xpay/components/Combine.js +32 -0
- package/icons/es/Xpay/components/Mono.d.ts +3 -0
- package/icons/es/Xpay/components/Mono.js +44 -0
- package/icons/es/Xpay/components/Text.d.ts +3 -0
- package/icons/es/Xpay/components/Text.js +39 -0
- package/icons/es/Xpay/index.d.ts +15 -0
- package/icons/es/Xpay/index.js +14 -0
- package/icons/es/Xpay/style.d.ts +7 -0
- package/icons/es/Xpay/style.js +9 -0
- package/icons/es/Xuanyuan/components/Avatar.d.ts +5 -0
- package/icons/es/Xuanyuan/components/Avatar.js +25 -0
- package/icons/es/Xuanyuan/components/Color.d.ts +3 -0
- package/icons/es/Xuanyuan/components/Color.js +42 -0
- package/icons/es/Xuanyuan/components/Combine.d.ts +7 -0
- package/icons/es/Xuanyuan/components/Combine.js +32 -0
- package/icons/es/Xuanyuan/components/Mono.d.ts +3 -0
- package/icons/es/Xuanyuan/components/Mono.js +42 -0
- package/icons/es/Xuanyuan/components/Text.d.ts +3 -0
- package/icons/es/Xuanyuan/components/Text.js +40 -0
- package/icons/es/Xuanyuan/index.d.ts +15 -0
- package/icons/es/Xuanyuan/index.js +14 -0
- package/icons/es/Xuanyuan/style.d.ts +7 -0
- package/icons/es/Xuanyuan/style.js +9 -0
- package/icons/es/Yandex/components/Avatar.d.ts +5 -0
- package/icons/es/Yandex/components/Avatar.js +25 -0
- package/icons/es/Yandex/components/Mono.d.ts +3 -0
- package/icons/es/Yandex/components/Mono.js +40 -0
- package/icons/es/Yandex/components/Text.d.ts +3 -0
- package/icons/es/Yandex/components/Text.js +39 -0
- package/icons/es/Yandex/index.d.ts +11 -0
- package/icons/es/Yandex/index.js +10 -0
- package/icons/es/Yandex/style.d.ts +7 -0
- package/icons/es/Yandex/style.js +9 -0
- package/icons/es/Yi/components/Avatar.d.ts +5 -0
- package/icons/es/Yi/components/Avatar.js +25 -0
- package/icons/es/Yi/components/Color.d.ts +3 -0
- package/icons/es/Yi/components/Color.js +46 -0
- package/icons/es/Yi/components/Combine.d.ts +7 -0
- package/icons/es/Yi/components/Combine.js +32 -0
- package/icons/es/Yi/components/Mono.d.ts +3 -0
- package/icons/es/Yi/components/Mono.js +45 -0
- package/icons/es/Yi/components/Text.d.ts +1 -0
- package/icons/es/Yi/components/Text.js +1 -0
- package/icons/es/Yi/index.d.ts +15 -0
- package/icons/es/Yi/index.js +14 -0
- package/icons/es/Yi/style.d.ts +7 -0
- package/icons/es/Yi/style.js +9 -0
- package/icons/es/YouMind/components/Avatar.d.ts +5 -0
- package/icons/es/YouMind/components/Avatar.js +25 -0
- package/icons/es/YouMind/components/Combine.d.ts +5 -0
- package/icons/es/YouMind/components/Combine.js +29 -0
- package/icons/es/YouMind/components/Mono.d.ts +3 -0
- package/icons/es/YouMind/components/Mono.js +41 -0
- package/icons/es/YouMind/components/Text.d.ts +3 -0
- package/icons/es/YouMind/components/Text.js +39 -0
- package/icons/es/YouMind/index.d.ts +13 -0
- package/icons/es/YouMind/index.js +12 -0
- package/icons/es/YouMind/style.d.ts +7 -0
- package/icons/es/YouMind/style.js +9 -0
- package/icons/es/Yuanbao/components/Avatar.d.ts +5 -0
- package/icons/es/Yuanbao/components/Avatar.js +25 -0
- package/icons/es/Yuanbao/components/Color.d.ts +3 -0
- package/icons/es/Yuanbao/components/Color.js +45 -0
- package/icons/es/Yuanbao/components/Combine.d.ts +7 -0
- package/icons/es/Yuanbao/components/Combine.js +32 -0
- package/icons/es/Yuanbao/components/Mono.d.ts +3 -0
- package/icons/es/Yuanbao/components/Mono.js +42 -0
- package/icons/es/Yuanbao/components/Text.d.ts +3 -0
- package/icons/es/Yuanbao/components/Text.js +39 -0
- package/icons/es/Yuanbao/index.d.ts +15 -0
- package/icons/es/Yuanbao/index.js +14 -0
- package/icons/es/Yuanbao/style.d.ts +7 -0
- package/icons/es/Yuanbao/style.js +9 -0
- package/icons/es/ZAI/components/Avatar.d.ts +5 -0
- package/icons/es/ZAI/components/Avatar.js +25 -0
- package/icons/es/ZAI/components/Combine.d.ts +5 -0
- package/icons/es/ZAI/components/Combine.js +26 -0
- package/icons/es/ZAI/components/Mono.d.ts +3 -0
- package/icons/es/ZAI/components/Mono.js +40 -0
- package/icons/es/ZAI/components/Text.d.ts +3 -0
- package/icons/es/ZAI/components/Text.js +39 -0
- package/icons/es/ZAI/index.d.ts +13 -0
- package/icons/es/ZAI/index.js +12 -0
- package/icons/es/ZAI/style.d.ts +7 -0
- package/icons/es/ZAI/style.js +9 -0
- package/icons/es/Zapier/components/Avatar.d.ts +5 -0
- package/icons/es/Zapier/components/Avatar.js +25 -0
- package/icons/es/Zapier/components/Color.d.ts +3 -0
- package/icons/es/Zapier/components/Color.js +39 -0
- package/icons/es/Zapier/components/Combine.d.ts +7 -0
- package/icons/es/Zapier/components/Combine.js +32 -0
- package/icons/es/Zapier/components/Mono.d.ts +3 -0
- package/icons/es/Zapier/components/Mono.js +40 -0
- package/icons/es/Zapier/components/Text.d.ts +3 -0
- package/icons/es/Zapier/components/Text.js +39 -0
- package/icons/es/Zapier/index.d.ts +15 -0
- package/icons/es/Zapier/index.js +14 -0
- package/icons/es/Zapier/style.d.ts +7 -0
- package/icons/es/Zapier/style.js +9 -0
- package/icons/es/Zeabur/components/Avatar.d.ts +5 -0
- package/icons/es/Zeabur/components/Avatar.js +25 -0
- package/icons/es/Zeabur/components/Color.d.ts +3 -0
- package/icons/es/Zeabur/components/Color.js +46 -0
- package/icons/es/Zeabur/components/Combine.d.ts +7 -0
- package/icons/es/Zeabur/components/Combine.js +32 -0
- package/icons/es/Zeabur/components/Mono.d.ts +3 -0
- package/icons/es/Zeabur/components/Mono.js +43 -0
- package/icons/es/Zeabur/components/Text.d.ts +3 -0
- package/icons/es/Zeabur/components/Text.js +39 -0
- package/icons/es/Zeabur/index.d.ts +15 -0
- package/icons/es/Zeabur/index.js +14 -0
- package/icons/es/Zeabur/style.d.ts +7 -0
- package/icons/es/Zeabur/style.js +9 -0
- package/icons/es/ZenMux/components/Avatar.d.ts +5 -0
- package/icons/es/ZenMux/components/Avatar.js +25 -0
- package/icons/es/ZenMux/components/Combine.d.ts +4 -0
- package/icons/es/ZenMux/components/Combine.js +26 -0
- package/icons/es/ZenMux/components/Mono.d.ts +3 -0
- package/icons/es/ZenMux/components/Mono.js +45 -0
- package/icons/es/ZenMux/components/Text.d.ts +3 -0
- package/icons/es/ZenMux/components/Text.js +52 -0
- package/icons/es/ZenMux/index.d.ts +13 -0
- package/icons/es/ZenMux/index.js +12 -0
- package/icons/es/ZenMux/style.d.ts +7 -0
- package/icons/es/ZenMux/style.js +9 -0
- package/icons/es/Zencoder/components/Avatar.d.ts +5 -0
- package/icons/es/Zencoder/components/Avatar.js +25 -0
- package/icons/es/Zencoder/components/Color.d.ts +3 -0
- package/icons/es/Zencoder/components/Color.js +39 -0
- package/icons/es/Zencoder/components/Combine.d.ts +7 -0
- package/icons/es/Zencoder/components/Combine.js +32 -0
- package/icons/es/Zencoder/components/Mono.d.ts +3 -0
- package/icons/es/Zencoder/components/Mono.js +40 -0
- package/icons/es/Zencoder/components/Text.d.ts +3 -0
- package/icons/es/Zencoder/components/Text.js +39 -0
- package/icons/es/Zencoder/index.d.ts +15 -0
- package/icons/es/Zencoder/index.js +14 -0
- package/icons/es/Zencoder/style.d.ts +7 -0
- package/icons/es/Zencoder/style.js +9 -0
- package/icons/es/ZeroOne/components/Avatar.d.ts +5 -0
- package/icons/es/ZeroOne/components/Avatar.js +25 -0
- package/icons/es/ZeroOne/components/Color.d.ts +3 -0
- package/icons/es/ZeroOne/components/Color.js +46 -0
- package/icons/es/ZeroOne/components/Combine.d.ts +7 -0
- package/icons/es/ZeroOne/components/Combine.js +29 -0
- package/icons/es/ZeroOne/components/Mono.d.ts +3 -0
- package/icons/es/ZeroOne/components/Mono.js +43 -0
- package/icons/es/ZeroOne/components/Text.d.ts +3 -0
- package/icons/es/ZeroOne/components/Text.js +39 -0
- package/icons/es/ZeroOne/index.d.ts +15 -0
- package/icons/es/ZeroOne/index.js +14 -0
- package/icons/es/ZeroOne/style.d.ts +7 -0
- package/icons/es/ZeroOne/style.js +9 -0
- package/icons/es/Zhipu/components/Avatar.d.ts +5 -0
- package/icons/es/Zhipu/components/Avatar.js +25 -0
- package/icons/es/Zhipu/components/Color.d.ts +3 -0
- package/icons/es/Zhipu/components/Color.js +40 -0
- package/icons/es/Zhipu/components/Combine.d.ts +7 -0
- package/icons/es/Zhipu/components/Combine.js +32 -0
- package/icons/es/Zhipu/components/Mono.d.ts +3 -0
- package/icons/es/Zhipu/components/Mono.js +40 -0
- package/icons/es/Zhipu/components/Text.d.ts +3 -0
- package/icons/es/Zhipu/components/Text.js +39 -0
- package/icons/es/Zhipu/index.d.ts +15 -0
- package/icons/es/Zhipu/index.js +14 -0
- package/icons/es/Zhipu/style.d.ts +7 -0
- package/icons/es/Zhipu/style.js +9 -0
- package/icons/es/components/AgentGuideCard/index.d.ts +26 -0
- package/icons/es/components/AgentGuideCard/index.js +108 -0
- package/icons/es/components/ColorPreview/index.d.ts +6 -0
- package/icons/es/components/ColorPreview/index.js +35 -0
- package/icons/es/components/Dashboard/IconItem.d.ts +9 -0
- package/icons/es/components/Dashboard/IconItem.js +141 -0
- package/icons/es/components/Dashboard/Text.d.ts +5 -0
- package/icons/es/components/Dashboard/Text.js +66 -0
- package/icons/es/components/Dashboard/index.d.ts +3 -0
- package/icons/es/components/Dashboard/index.js +103 -0
- package/icons/es/components/Dashboard/utils.d.ts +1 -0
- package/icons/es/components/Dashboard/utils.js +11 -0
- package/icons/es/components/DownloadButton/index.d.ts +9 -0
- package/icons/es/components/DownloadButton/index.js +28 -0
- package/icons/es/components/Editor/Color.d.ts +9 -0
- package/icons/es/components/Editor/Color.js +47 -0
- package/icons/es/components/Editor/Mono.d.ts +8 -0
- package/icons/es/components/Editor/Mono.js +45 -0
- package/icons/es/components/Editor/Preview.d.ts +9 -0
- package/icons/es/components/Editor/Preview.js +54 -0
- package/icons/es/components/Editor/Text.d.ts +8 -0
- package/icons/es/components/Editor/Text.js +45 -0
- package/icons/es/components/Editor/data.d.ts +1 -0
- package/icons/es/components/Editor/data.js +1 -0
- package/icons/es/components/Editor/index.d.ts +2 -0
- package/icons/es/components/Editor/index.js +136 -0
- package/icons/es/components/Editor/svgo.d.ts +76 -0
- package/icons/es/components/Editor/svgo.js +83 -0
- package/icons/es/components/Editor/useSvgo.d.ts +6 -0
- package/icons/es/components/Editor/useSvgo.js +58 -0
- package/icons/es/components/IconPreview/ColorPreview.d.ts +6 -0
- package/icons/es/components/IconPreview/ColorPreview.js +38 -0
- package/icons/es/components/IconPreview/index.d.ts +8 -0
- package/icons/es/components/IconPreview/index.js +67 -0
- package/icons/es/features/AgentIcon/DefaultAvatar.d.ts +4 -0
- package/icons/es/features/AgentIcon/DefaultAvatar.js +40 -0
- package/icons/es/features/AgentIcon/DefaultIcon.d.ts +9 -0
- package/icons/es/features/AgentIcon/DefaultIcon.js +26 -0
- package/icons/es/features/AgentIcon/index.d.ts +11 -0
- package/icons/es/features/AgentIcon/index.js +95 -0
- package/icons/es/features/IconAvatar/index.d.ts +15 -0
- package/icons/es/features/IconAvatar/index.js +55 -0
- package/icons/es/features/IconAvatar/util.d.ts +2 -0
- package/icons/es/features/IconAvatar/util.js +12 -0
- package/icons/es/features/IconCombine/index.d.ts +21 -0
- package/icons/es/features/IconCombine/index.js +73 -0
- package/icons/es/features/ModelIcon/DefaultAvatar.d.ts +4 -0
- package/icons/es/features/ModelIcon/DefaultAvatar.js +40 -0
- package/icons/es/features/ModelIcon/DefaultIcon.d.ts +9 -0
- package/icons/es/features/ModelIcon/DefaultIcon.js +26 -0
- package/icons/es/features/ModelIcon/index.d.ts +11 -0
- package/icons/es/features/ModelIcon/index.js +95 -0
- package/icons/es/features/ModelTag/index.d.ts +8 -0
- package/icons/es/features/ModelTag/index.js +29 -0
- package/icons/es/features/ProviderCombine/Combine.d.ts +8 -0
- package/icons/es/features/ProviderCombine/Combine.js +36 -0
- package/icons/es/features/ProviderCombine/index.d.ts +10 -0
- package/icons/es/features/ProviderCombine/index.js +66 -0
- package/icons/es/features/ProviderIcon/DefaultAvatar.d.ts +4 -0
- package/icons/es/features/ProviderIcon/DefaultAvatar.js +40 -0
- package/icons/es/features/ProviderIcon/DefaultIcon.d.ts +9 -0
- package/icons/es/features/ProviderIcon/DefaultIcon.js +26 -0
- package/icons/es/features/ProviderIcon/index.d.ts +13 -0
- package/icons/es/features/ProviderIcon/index.js +101 -0
- package/icons/es/features/agentConfig.d.ts +19 -0
- package/icons/es/features/agentConfig.js +173 -0
- package/icons/es/features/getHubstrIconCDN/index.d.ts +7 -0
- package/icons/es/features/getHubstrIconCDN/index.js +56 -0
- package/icons/es/features/index.d.ts +12 -0
- package/icons/es/features/index.js +12 -0
- package/icons/es/features/modelConfig.d.ts +19 -0
- package/icons/es/features/modelConfig.js +417 -0
- package/icons/es/features/providerConfig.d.ts +25 -0
- package/icons/es/features/providerConfig.js +761 -0
- package/icons/es/features/providerEnum.d.ts +151 -0
- package/icons/es/features/providerEnum.js +151 -0
- package/icons/es/hooks/useFillId.d.ts +8 -0
- package/icons/es/hooks/useFillId.js +26 -0
- package/icons/es/icons.d.ts +309 -0
- package/icons/es/icons.js +309 -0
- package/icons/es/index.d.ts +5 -0
- package/icons/es/index.js +4 -0
- package/icons/es/toc.d.ts +4 -0
- package/icons/es/toc.js +3 -0
- package/icons/es/toc.json +1 -0
- package/icons/es/types/index.d.ts +6 -0
- package/icons/es/types/index.js +1 -0
- package/icons/es/types/toc.d.ts +20 -0
- package/icons/es/types/toc.js +1 -0
- package/lint/dist/index.cjs +99 -0
- package/lint/dist/index.d.cts +9 -0
- package/lint/dist/index.d.ts +9 -0
- package/lint/dist/index.js +10 -0
- package/market-sdk/dist/index.d.mts +8441 -0
- package/market-sdk/dist/index.mjs +6390 -0
- package/market-sdk/dist/index.mjs.map +1 -0
- package/market-types/dist/index.d.mts +2406 -0
- package/market-types/dist/index.mjs +229 -0
- package/market-types/dist/index.mjs.map +1 -0
- package/package.json +308 -0
- package/prettier-config/dist/index.cjs +30 -0
- package/prettier-config/dist/index.d.cts +8 -0
- package/prettier-config/dist/index.d.cts.map +1 -0
- package/prettier-config/dist/index.d.ts +8 -0
- package/prettier-config/dist/index.d.ts.map +1 -0
- package/prettier-config/dist/index.js +29 -0
- package/prettier-config/dist/index.js.map +1 -0
- package/remarklint-config/dist/index.cjs +135 -0
- package/remarklint-config/dist/index.d.cts +26 -0
- package/remarklint-config/dist/index.d.cts.map +1 -0
- package/remarklint-config/dist/index.d.ts +26 -0
- package/remarklint-config/dist/index.d.ts.map +1 -0
- package/remarklint-config/dist/index.js +112 -0
- package/remarklint-config/dist/index.js.map +1 -0
- package/semantic-release-config/dist/changelog.cjs +27 -0
- package/semantic-release-config/dist/changelog.d.cts +25 -0
- package/semantic-release-config/dist/changelog.d.cts.map +1 -0
- package/semantic-release-config/dist/changelog.d.ts +25 -0
- package/semantic-release-config/dist/changelog.d.ts.map +1 -0
- package/semantic-release-config/dist/changelog.js +26 -0
- package/semantic-release-config/dist/changelog.js.map +1 -0
- package/semantic-release-config/dist/index.cjs +5 -0
- package/semantic-release-config/dist/index.d.cts +22 -0
- package/semantic-release-config/dist/index.d.cts.map +1 -0
- package/semantic-release-config/dist/index.d.ts +22 -0
- package/semantic-release-config/dist/index.d.ts.map +1 -0
- package/semantic-release-config/dist/index.js +3 -0
- package/semantic-release-config/dist/monorepo.cjs +13 -0
- package/semantic-release-config/dist/monorepo.d.cts +20 -0
- package/semantic-release-config/dist/monorepo.d.cts.map +1 -0
- package/semantic-release-config/dist/monorepo.d.ts +20 -0
- package/semantic-release-config/dist/monorepo.d.ts.map +1 -0
- package/semantic-release-config/dist/monorepo.js +13 -0
- package/semantic-release-config/dist/monorepo.js.map +1 -0
- package/semantic-release-config/dist/src-B_KP4Lzb.js +102 -0
- package/semantic-release-config/dist/src-B_KP4Lzb.js.map +1 -0
- package/semantic-release-config/dist/src-BkbAH-yB.cjs +142 -0
- package/seo-cli/dist/cli.cjs +53 -0
- package/seo-cli/dist/cli.js +54 -0
- package/seo-cli/dist/cli.mjs +53 -0
- package/seo-cli/dist/index.cjs +1 -0
- package/seo-cli/dist/index.d.cts +153 -0
- package/seo-cli/dist/index.d.mts +153 -0
- package/seo-cli/dist/index.js +1 -0
- package/seo-cli/dist/index.mjs +1 -0
- package/stylelint-config/dist/index.cjs +41 -0
- package/stylelint-config/dist/index.d.cts +8 -0
- package/stylelint-config/dist/index.d.cts.map +1 -0
- package/stylelint-config/dist/index.d.ts +8 -0
- package/stylelint-config/dist/index.d.ts.map +1 -0
- package/stylelint-config/dist/index.js +40 -0
- package/stylelint-config/dist/index.js.map +1 -0
- package/tts/src/core/EdgeSpeechTTS/createEdgeSpeech.ts +129 -0
- package/tts/src/core/EdgeSpeechTTS/edgeVoiceList.ts +33 -0
- package/tts/src/core/EdgeSpeechTTS/index.ts +63 -0
- package/tts/src/core/EdgeSpeechTTS/options.ts +14 -0
- package/tts/src/core/MicrosoftSpeechTTS/createMicrosoftSpeech.ts +63 -0
- package/tts/src/core/MicrosoftSpeechTTS/index.ts +61 -0
- package/tts/src/core/MicrosoftSpeechTTS/voiceList.ts +176 -0
- package/tts/src/core/OpenAISTT/index.ts +102 -0
- package/tts/src/core/OpenAITTS/index.ts +87 -0
- package/tts/src/core/OpenAITTS/voiceList.ts +8 -0
- package/tts/src/core/SpeechSynthesisTTS/index.ts +18 -0
- package/tts/src/core/SpeechSynthesisTTS/options.ts +31 -0
- package/tts/src/core/SpeechSynthesisTTS/voiceList.ts +94 -0
- package/tts/src/core/VoiceList.ts +31 -0
- package/tts/src/core/const/api.ts +5 -0
- package/tts/src/core/const/polyfill.ts +32 -0
- package/tts/src/core/data/locales.ts +13 -0
- package/tts/src/core/data/styleList.ts +13 -0
- package/tts/src/core/data/voiceList.ts +149 -0
- package/tts/src/core/index.ts +17 -0
- package/tts/src/core/utils/arrayBufferConvert.ts +4 -0
- package/tts/src/core/utils/audioBufferToBlob.ts +96 -0
- package/tts/src/core/utils/cleanContent.ts +23 -0
- package/tts/src/core/utils/genSSML.ts +45 -0
- package/tts/src/core/utils/genSendContent.ts +8 -0
- package/tts/src/core/utils/getHeadersAndData.ts +8 -0
- package/tts/src/core/utils/getRecordMineType.ts +23 -0
- package/tts/src/core/utils/getSHA256.ts +112 -0
- package/tts/src/core/utils/getVoiceList.ts +7 -0
- package/tts/src/core/utils/playAudioBlob.ts +8 -0
- package/tts/src/core/utils/secondsToMinutesAndSeconds.ts +10 -0
- package/tts/src/core/utils/splitTextIntoSegments.ts +65 -0
- package/tts/src/index.ts +1 -0
- package/tts/src/react/AudioPlayer/demos/index.tsx +31 -0
- package/tts/src/react/AudioPlayer/index.md +11 -0
- package/tts/src/react/AudioPlayer/index.tsx +170 -0
- package/tts/src/react/AudioVisualizer/Visualizer.tsx +38 -0
- package/tts/src/react/AudioVisualizer/demos/index.tsx +66 -0
- package/tts/src/react/AudioVisualizer/index.md +11 -0
- package/tts/src/react/AudioVisualizer/index.tsx +47 -0
- package/tts/src/react/_util/api.ts +2 -0
- package/tts/src/react/_util/leva.ts +7 -0
- package/tts/src/react/hooks/useAudioPlayer.ts +146 -0
- package/tts/src/react/hooks/useAudioVisualizer.ts +77 -0
- package/tts/src/react/hooks/useBlobUrl.ts +45 -0
- package/tts/src/react/hooks/useStreamAudioPlayer.ts +157 -0
- package/tts/src/react/index.ts +14 -0
- package/tts/src/react/useAudioRecorder/demos/index.tsx +22 -0
- package/tts/src/react/useAudioRecorder/index.md +11 -0
- package/tts/src/react/useAudioRecorder/index.ts +79 -0
- package/tts/src/react/useEdgeSpeech/demos/index.tsx +54 -0
- package/tts/src/react/useEdgeSpeech/index.md +11 -0
- package/tts/src/react/useEdgeSpeech/index.ts +32 -0
- package/tts/src/react/useMicrosoftSpeech/demos/index.tsx +67 -0
- package/tts/src/react/useMicrosoftSpeech/index.md +13 -0
- package/tts/src/react/useMicrosoftSpeech/index.ts +37 -0
- package/tts/src/react/useOpenAISTT/demos/AutoStop.tsx +58 -0
- package/tts/src/react/useOpenAISTT/demos/index.tsx +58 -0
- package/tts/src/react/useOpenAISTT/index.md +17 -0
- package/tts/src/react/useOpenAISTT/index.ts +12 -0
- package/tts/src/react/useOpenAISTT/useOpenAISTTAutoStop.ts +101 -0
- package/tts/src/react/useOpenAISTT/useOpenAISTTCore.ts +21 -0
- package/tts/src/react/useOpenAISTT/useOpenAISTTInteractive.ts +104 -0
- package/tts/src/react/useOpenAISTT/useOpenAISTTRecorder.ts +92 -0
- package/tts/src/react/useOpenAITTS/demos/index.tsx +60 -0
- package/tts/src/react/useOpenAITTS/index.md +13 -0
- package/tts/src/react/useOpenAITTS/index.ts +30 -0
- package/tts/src/react/useSpeechRecognition/demos/AutoStop.tsx +36 -0
- package/tts/src/react/useSpeechRecognition/demos/index.tsx +34 -0
- package/tts/src/react/useSpeechRecognition/index.md +15 -0
- package/tts/src/react/useSpeechRecognition/index.ts +17 -0
- package/tts/src/react/useSpeechRecognition/useSpeechRecognitionAutoStop.ts +66 -0
- package/tts/src/react/useSpeechRecognition/useSpeechRecognitionCore.ts +101 -0
- package/tts/src/react/useSpeechRecognition/useSpeechRecognitionInteractive.ts +76 -0
- package/tts/src/react/useSpeechSynthes/demos/index.tsx +52 -0
- package/tts/src/react/useSpeechSynthes/index.md +11 -0
- package/tts/src/react/useSpeechSynthes/index.ts +56 -0
- package/tts/src/react/useTTS/index.ts +101 -0
- package/tts/src/server/createOpenaiAudioSpeech.ts +24 -0
- package/tts/src/server/createOpenaiAudioTranscriptions.ts +30 -0
- package/tts/src/server/index.ts +8 -0
- package/ui/src/A/index.tsx +21 -0
- package/ui/src/Accordion/Accordion.test.tsx +80 -0
- package/ui/src/Accordion/Accordion.tsx +170 -0
- package/ui/src/Accordion/AccordionItem.tsx +519 -0
- package/ui/src/Accordion/ArrowIcon.tsx +23 -0
- package/ui/src/Accordion/context.tsx +87 -0
- package/ui/src/Accordion/demos/Action.tsx +162 -0
- package/ui/src/Accordion/demos/Padding.tsx +59 -0
- package/ui/src/Accordion/demos/Standalone.tsx +75 -0
- package/ui/src/Accordion/demos/data.tsx +37 -0
- package/ui/src/Accordion/demos/index.tsx +92 -0
- package/ui/src/Accordion/index.md +109 -0
- package/ui/src/Accordion/index.ts +3 -0
- package/ui/src/Accordion/style.ts +62 -0
- package/ui/src/Accordion/type.ts +158 -0
- package/ui/src/ActionIcon/ActionIcon.tsx +115 -0
- package/ui/src/ActionIcon/components/utils.ts +50 -0
- package/ui/src/ActionIcon/demos/CustomSize.tsx +42 -0
- package/ui/src/ActionIcon/demos/DropdownMenu.tsx +18 -0
- package/ui/src/ActionIcon/demos/Size.tsx +15 -0
- package/ui/src/ActionIcon/demos/Variant.tsx +15 -0
- package/ui/src/ActionIcon/demos/index.tsx +37 -0
- package/ui/src/ActionIcon/index.md +73 -0
- package/ui/src/ActionIcon/index.ts +2 -0
- package/ui/src/ActionIcon/style.ts +105 -0
- package/ui/src/ActionIcon/type.ts +29 -0
- package/ui/src/ActionIconGroup/ActionIconGroup.tsx +105 -0
- package/ui/src/ActionIconGroup/demos/data.tsx +40 -0
- package/ui/src/ActionIconGroup/demos/index.tsx +35 -0
- package/ui/src/ActionIconGroup/index.md +39 -0
- package/ui/src/ActionIconGroup/index.ts +2 -0
- package/ui/src/ActionIconGroup/style.ts +48 -0
- package/ui/src/ActionIconGroup/type.ts +23 -0
- package/ui/src/Alert/Alert.tsx +163 -0
- package/ui/src/Alert/demos/Extra.tsx +56 -0
- package/ui/src/Alert/demos/index.tsx +32 -0
- package/ui/src/Alert/index.md +38 -0
- package/ui/src/Alert/index.ts +2 -0
- package/ui/src/Alert/style.ts +347 -0
- package/ui/src/Alert/type.ts +34 -0
- package/ui/src/AutoComplete/Select.tsx +27 -0
- package/ui/src/AutoComplete/demos/index.tsx +42 -0
- package/ui/src/AutoComplete/index.md +19 -0
- package/ui/src/AutoComplete/index.ts +2 -0
- package/ui/src/AutoComplete/style.ts +57 -0
- package/ui/src/AutoComplete/type.ts +5 -0
- package/ui/src/Avatar/Avatar.tsx +169 -0
- package/ui/src/Avatar/AvatarGroup/index.tsx +101 -0
- package/ui/src/Avatar/AvatarGroup/style.ts +19 -0
- package/ui/src/Avatar/demos/Bordered.tsx +18 -0
- package/ui/src/Avatar/demos/ErrorFallback.tsx +13 -0
- package/ui/src/Avatar/demos/Group.tsx +49 -0
- package/ui/src/Avatar/demos/Text.tsx +15 -0
- package/ui/src/Avatar/demos/index.tsx +38 -0
- package/ui/src/Avatar/index.md +76 -0
- package/ui/src/Avatar/index.ts +17 -0
- package/ui/src/Avatar/style.ts +70 -0
- package/ui/src/Avatar/type.ts +60 -0
- package/ui/src/Avatar/utils.ts +69 -0
- package/ui/src/Block/Block.tsx +34 -0
- package/ui/src/Block/demos/index.tsx +26 -0
- package/ui/src/Block/index.md +22 -0
- package/ui/src/Block/index.ts +2 -0
- package/ui/src/Block/style.ts +70 -0
- package/ui/src/Block/type.ts +11 -0
- package/ui/src/Burger/Burger.tsx +94 -0
- package/ui/src/Burger/demos/index.tsx +37 -0
- package/ui/src/Burger/index.md +28 -0
- package/ui/src/Burger/index.ts +2 -0
- package/ui/src/Burger/style.ts +141 -0
- package/ui/src/Burger/type.ts +23 -0
- package/ui/src/Button/Button.tsx +75 -0
- package/ui/src/Button/demos/Variant.tsx +119 -0
- package/ui/src/Button/demos/index.tsx +43 -0
- package/ui/src/Button/index.md +36 -0
- package/ui/src/Button/index.ts +2 -0
- package/ui/src/Button/style.ts +38 -0
- package/ui/src/Button/type.ts +12 -0
- package/ui/src/Checkbox/Checkbox.tsx +127 -0
- package/ui/src/Checkbox/CheckboxGroup.tsx +71 -0
- package/ui/src/Checkbox/demos/CheckboxGroup.tsx +35 -0
- package/ui/src/Checkbox/demos/CheckboxGroupDisabled.tsx +38 -0
- package/ui/src/Checkbox/demos/CheckboxGroupOptions.tsx +26 -0
- package/ui/src/Checkbox/demos/CheckboxGroupUsage.tsx +39 -0
- package/ui/src/Checkbox/demos/Indeterminate.tsx +33 -0
- package/ui/src/Checkbox/demos/Size.tsx +17 -0
- package/ui/src/Checkbox/demos/WithText.tsx +14 -0
- package/ui/src/Checkbox/demos/index.tsx +29 -0
- package/ui/src/Checkbox/index.md +102 -0
- package/ui/src/Checkbox/index.ts +17 -0
- package/ui/src/Checkbox/style.ts +30 -0
- package/ui/src/Checkbox/type.ts +44 -0
- package/ui/src/CodeDiff/CodeDiff.tsx +129 -0
- package/ui/src/CodeDiff/DiffPanel.tsx +153 -0
- package/ui/src/CodeDiff/PatchDiff.tsx +97 -0
- package/ui/src/CodeDiff/demos/ActionsRender.tsx +35 -0
- package/ui/src/CodeDiff/demos/FullFeatured.tsx +59 -0
- package/ui/src/CodeDiff/demos/Patch.tsx +26 -0
- package/ui/src/CodeDiff/demos/PatchFullFeatured.tsx +50 -0
- package/ui/src/CodeDiff/demos/Unified.tsx +43 -0
- package/ui/src/CodeDiff/demos/Variants.tsx +34 -0
- package/ui/src/CodeDiff/demos/index.tsx +59 -0
- package/ui/src/CodeDiff/index.md +71 -0
- package/ui/src/CodeDiff/index.ts +3 -0
- package/ui/src/CodeDiff/style.ts +200 -0
- package/ui/src/CodeDiff/theme.ts +65 -0
- package/ui/src/CodeDiff/type.ts +138 -0
- package/ui/src/CodeEditor/CodeEditor.tsx +90 -0
- package/ui/src/CodeEditor/demos/data.ts +201 -0
- package/ui/src/CodeEditor/demos/index.tsx +28 -0
- package/ui/src/CodeEditor/index.md +28 -0
- package/ui/src/CodeEditor/index.ts +2 -0
- package/ui/src/CodeEditor/style.ts +101 -0
- package/ui/src/CodeEditor/type.ts +24 -0
- package/ui/src/Collapse/Collapse.tsx +118 -0
- package/ui/src/Collapse/demos/Padding.tsx +19 -0
- package/ui/src/Collapse/demos/data.tsx +33 -0
- package/ui/src/Collapse/demos/index.tsx +36 -0
- package/ui/src/Collapse/index.md +39 -0
- package/ui/src/Collapse/index.ts +2 -0
- package/ui/src/Collapse/style.ts +205 -0
- package/ui/src/Collapse/type.ts +35 -0
- package/ui/src/ColorSwatches/ColorSwatches.tsx +152 -0
- package/ui/src/ColorSwatches/demos/index.tsx +92 -0
- package/ui/src/ColorSwatches/index.md +35 -0
- package/ui/src/ColorSwatches/index.ts +2 -0
- package/ui/src/ColorSwatches/style.ts +88 -0
- package/ui/src/ColorSwatches/type.ts +25 -0
- package/ui/src/ConfigProvider/demos/index.tsx +11 -0
- package/ui/src/ConfigProvider/index.md +116 -0
- package/ui/src/ConfigProvider/index.tsx +133 -0
- package/ui/src/ContextMenu/demos/checkbox.tsx +82 -0
- package/ui/src/ContextMenu/demos/desc.tsx +65 -0
- package/ui/src/ContextMenu/demos/emptySubmenu.tsx +60 -0
- package/ui/src/ContextMenu/demos/header-footer-scroll.tsx +43 -0
- package/ui/src/ContextMenu/demos/header-footer.tsx +55 -0
- package/ui/src/ContextMenu/demos/iconSpaceMode.tsx +135 -0
- package/ui/src/ContextMenu/demos/imperative.tsx +115 -0
- package/ui/src/ContextMenu/demos/switch.tsx +82 -0
- package/ui/src/ContextMenu/demos/trigger.tsx +58 -0
- package/ui/src/ContextMenu/demos/uploader.tsx +180 -0
- package/ui/src/ContextMenu/index.md +79 -0
- package/ui/src/ContextMenu/index.ts +1 -0
- package/ui/src/CopyButton/CopyButton.tsx +38 -0
- package/ui/src/CopyButton/demos/index.tsx +5 -0
- package/ui/src/CopyButton/index.md +22 -0
- package/ui/src/CopyButton/index.ts +2 -0
- package/ui/src/CopyButton/type.ts +5 -0
- package/ui/src/DatePicker/DatePicker.tsx +27 -0
- package/ui/src/DatePicker/demos/index.tsx +29 -0
- package/ui/src/DatePicker/index.md +18 -0
- package/ui/src/DatePicker/index.ts +2 -0
- package/ui/src/DatePicker/style.ts +33 -0
- package/ui/src/DatePicker/type.ts +5 -0
- package/ui/src/DownloadButton/DownloadButton.tsx +34 -0
- package/ui/src/DownloadButton/demos/customFile.tsx +107 -0
- package/ui/src/DownloadButton/demos/index.tsx +10 -0
- package/ui/src/DownloadButton/index.md +28 -0
- package/ui/src/DownloadButton/index.ts +2 -0
- package/ui/src/DownloadButton/type.ts +7 -0
- package/ui/src/DraggablePanel/DraggablePanel.tsx +566 -0
- package/ui/src/DraggablePanel/components/DraggablePanelBody.tsx +19 -0
- package/ui/src/DraggablePanel/components/DraggablePanelContainer.tsx +19 -0
- package/ui/src/DraggablePanel/components/DraggablePanelFooter.tsx +29 -0
- package/ui/src/DraggablePanel/components/DraggablePanelHeader.tsx +60 -0
- package/ui/src/DraggablePanel/components/style.ts +31 -0
- package/ui/src/DraggablePanel/demos/DragToCollapse.tsx +32 -0
- package/ui/src/DraggablePanel/demos/Layout.tsx +48 -0
- package/ui/src/DraggablePanel/demos/StableLayout.tsx +189 -0
- package/ui/src/DraggablePanel/demos/index.tsx +67 -0
- package/ui/src/DraggablePanel/index.md +51 -0
- package/ui/src/DraggablePanel/index.ts +44 -0
- package/ui/src/DraggablePanel/style.ts +471 -0
- package/ui/src/DraggablePanel/type.ts +51 -0
- package/ui/src/DraggablePanel/utils.ts +18 -0
- package/ui/src/DraggableSideNav/DraggableSideNav.tsx +562 -0
- package/ui/src/DraggableSideNav/demos/Body.tsx +84 -0
- package/ui/src/DraggableSideNav/demos/Footer.tsx +7 -0
- package/ui/src/DraggableSideNav/demos/Header.tsx +74 -0
- package/ui/src/DraggableSideNav/demos/data.tsx +145 -0
- package/ui/src/DraggableSideNav/demos/index.tsx +123 -0
- package/ui/src/DraggableSideNav/index.md +63 -0
- package/ui/src/DraggableSideNav/index.ts +2 -0
- package/ui/src/DraggableSideNav/style.ts +263 -0
- package/ui/src/DraggableSideNav/type.ts +122 -0
- package/ui/src/Drawer/Drawer.tsx +203 -0
- package/ui/src/Drawer/demos/Sidebar.tsx +91 -0
- package/ui/src/Drawer/demos/index.tsx +40 -0
- package/ui/src/Drawer/index.md +37 -0
- package/ui/src/Drawer/index.ts +2 -0
- package/ui/src/Drawer/type.ts +27 -0
- package/ui/src/Dropdown/Dropdown.tsx +44 -0
- package/ui/src/Dropdown/demos/ContextMenu.tsx +19 -0
- package/ui/src/Dropdown/demos/data.tsx +27 -0
- package/ui/src/Dropdown/demos/index.tsx +11 -0
- package/ui/src/Dropdown/index.md +40 -0
- package/ui/src/Dropdown/index.ts +2 -0
- package/ui/src/Dropdown/type.ts +11 -0
- package/ui/src/DropdownMenu/demos/atoms.tsx +66 -0
- package/ui/src/DropdownMenu/demos/checkbox.tsx +40 -0
- package/ui/src/DropdownMenu/demos/custom-trigger.tsx +68 -0
- package/ui/src/DropdownMenu/demos/danger.tsx +11 -0
- package/ui/src/DropdownMenu/demos/data.tsx +142 -0
- package/ui/src/DropdownMenu/demos/desc.tsx +78 -0
- package/ui/src/DropdownMenu/demos/group.tsx +11 -0
- package/ui/src/DropdownMenu/demos/header-footer-scroll.tsx +46 -0
- package/ui/src/DropdownMenu/demos/header-footer.tsx +43 -0
- package/ui/src/DropdownMenu/demos/hover.tsx +11 -0
- package/ui/src/DropdownMenu/demos/iconAlign.tsx +84 -0
- package/ui/src/DropdownMenu/demos/iconSpaceMode.tsx +112 -0
- package/ui/src/DropdownMenu/demos/index.tsx +52 -0
- package/ui/src/DropdownMenu/demos/lazy.tsx +17 -0
- package/ui/src/DropdownMenu/demos/link-label.tsx +64 -0
- package/ui/src/DropdownMenu/demos/plus-action-submenu.tsx +384 -0
- package/ui/src/DropdownMenu/demos/submenu.tsx +11 -0
- package/ui/src/DropdownMenu/demos/switch-mixed.tsx +45 -0
- package/ui/src/DropdownMenu/demos/switch.tsx +42 -0
- package/ui/src/DropdownMenu/demos/tooltip-hover-stay.tsx +73 -0
- package/ui/src/DropdownMenu/demos/uploader.tsx +184 -0
- package/ui/src/DropdownMenu/index.md +148 -0
- package/ui/src/DropdownMenu/index.ts +2 -0
- package/ui/src/EditableText/ControlInput.tsx +124 -0
- package/ui/src/EditableText/EditableText.tsx +129 -0
- package/ui/src/EditableText/demos/index.tsx +16 -0
- package/ui/src/EditableText/index.md +30 -0
- package/ui/src/EditableText/index.ts +2 -0
- package/ui/src/EditableText/type.ts +49 -0
- package/ui/src/EditorSlashMenu/EditorSlashMenu.tsx +236 -0
- package/ui/src/EditorSlashMenu/MenuItemRenderer.tsx +63 -0
- package/ui/src/EditorSlashMenu/atoms.tsx +188 -0
- package/ui/src/EditorSlashMenu/demos/index.tsx +243 -0
- package/ui/src/EditorSlashMenu/index.md +10 -0
- package/ui/src/EditorSlashMenu/index.ts +20 -0
- package/ui/src/EditorSlashMenu/style.ts +26 -0
- package/ui/src/EditorSlashMenu/type.ts +56 -0
- package/ui/src/EditorSlashMenu/useKeyboardNavigation.ts +53 -0
- package/ui/src/EditorSlashMenu/useNormalizedItems.ts +44 -0
- package/ui/src/EditorSlashMenu/utils.ts +21 -0
- package/ui/src/EmojiPicker/AvatarUploader.tsx +132 -0
- package/ui/src/EmojiPicker/EmojiPicker.tsx +253 -0
- package/ui/src/EmojiPicker/demos/Control.tsx +14 -0
- package/ui/src/EmojiPicker/demos/CustomEmoji.tsx +27 -0
- package/ui/src/EmojiPicker/demos/CustomTabs.tsx +22 -0
- package/ui/src/EmojiPicker/demos/ModelAvatar.tsx +3 -0
- package/ui/src/EmojiPicker/demos/Upload.tsx +21 -0
- package/ui/src/EmojiPicker/demos/index.tsx +3 -0
- package/ui/src/EmojiPicker/index.md +68 -0
- package/ui/src/EmojiPicker/index.ts +2 -0
- package/ui/src/EmojiPicker/style.ts +42 -0
- package/ui/src/EmojiPicker/type.ts +75 -0
- package/ui/src/Empty/Empty.tsx +110 -0
- package/ui/src/Empty/demos/WithAction.tsx +9 -0
- package/ui/src/Empty/demos/WithEmoji.tsx +3 -0
- package/ui/src/Empty/demos/WithIcon.tsx +6 -0
- package/ui/src/Empty/demos/index.tsx +57 -0
- package/ui/src/Empty/index.md +42 -0
- package/ui/src/Empty/index.ts +2 -0
- package/ui/src/Empty/type.ts +22 -0
- package/ui/src/FileTypeIcon/FileTypeIcon.tsx +97 -0
- package/ui/src/FileTypeIcon/components/FileIcon.tsx +66 -0
- package/ui/src/FileTypeIcon/components/FolderIcon.tsx +60 -0
- package/ui/src/FileTypeIcon/demos/Icon.tsx +83 -0
- package/ui/src/FileTypeIcon/demos/index.tsx +31 -0
- package/ui/src/FileTypeIcon/index.md +25 -0
- package/ui/src/FileTypeIcon/index.ts +2 -0
- package/ui/src/FileTypeIcon/style.ts +18 -0
- package/ui/src/FileTypeIcon/type.ts +15 -0
- package/ui/src/Flex/Center.tsx +12 -0
- package/ui/src/Flex/FlexBasic.tsx +85 -0
- package/ui/src/Flex/Flexbox.tsx +2 -0
- package/ui/src/Flex/demos/alignment.tsx +78 -0
- package/ui/src/Flex/demos/basic.tsx +11 -0
- package/ui/src/Flex/demos/center.tsx +27 -0
- package/ui/src/Flex/demos/direction.tsx +34 -0
- package/ui/src/Flex/demos/gap.tsx +34 -0
- package/ui/src/Flex/demos/wrap.tsx +52 -0
- package/ui/src/Flex/index.md +104 -0
- package/ui/src/Flex/index.ts +10 -0
- package/ui/src/Flex/style.css +36 -0
- package/ui/src/Flex/type.ts +153 -0
- package/ui/src/Flex/utils.ts +40 -0
- package/ui/src/FluentEmoji/FluentEmoji.tsx +64 -0
- package/ui/src/FluentEmoji/demos/index.tsx +38 -0
- package/ui/src/FluentEmoji/index.md +34 -0
- package/ui/src/FluentEmoji/index.ts +2 -0
- package/ui/src/FluentEmoji/style.ts +11 -0
- package/ui/src/FluentEmoji/type.ts +12 -0
- package/ui/src/FluentEmoji/utils.ts +68 -0
- package/ui/src/FontLoader/index.md +12 -0
- package/ui/src/FontLoader/index.tsx +43 -0
- package/ui/src/Footer/Footer.tsx +48 -0
- package/ui/src/Footer/demos/index.tsx +48 -0
- package/ui/src/Footer/index.md +21 -0
- package/ui/src/Footer/index.ts +2 -0
- package/ui/src/Footer/style.ts +211 -0
- package/ui/src/Footer/type.ts +11 -0
- package/ui/src/Form/Form.tsx +146 -0
- package/ui/src/Form/components/FormDivider.tsx +33 -0
- package/ui/src/Form/components/FormFlatGroup.tsx +29 -0
- package/ui/src/Form/components/FormFooter.tsx +29 -0
- package/ui/src/Form/components/FormGroup.tsx +84 -0
- package/ui/src/Form/components/FormItem.tsx +65 -0
- package/ui/src/Form/components/FormProvider.tsx +22 -0
- package/ui/src/Form/components/FormSubmitFooter.tsx +175 -0
- package/ui/src/Form/components/FormTitle.tsx +55 -0
- package/ui/src/Form/components/merge.ts +78 -0
- package/ui/src/Form/demos/Flat.tsx +68 -0
- package/ui/src/Form/demos/StateControl.tsx +147 -0
- package/ui/src/Form/demos/SubmitFooter.tsx +52 -0
- package/ui/src/Form/demos/data.tsx +87 -0
- package/ui/src/Form/demos/index.tsx +50 -0
- package/ui/src/Form/index.md +72 -0
- package/ui/src/Form/index.ts +37 -0
- package/ui/src/Form/style.ts +312 -0
- package/ui/src/Form/type.ts +125 -0
- package/ui/src/FormModal/FormModal.tsx +144 -0
- package/ui/src/FormModal/demos/Error.tsx +125 -0
- package/ui/src/FormModal/demos/Flat.tsx +96 -0
- package/ui/src/FormModal/demos/MultiForm.tsx +86 -0
- package/ui/src/FormModal/demos/data.tsx +77 -0
- package/ui/src/FormModal/demos/index.tsx +67 -0
- package/ui/src/FormModal/index.md +53 -0
- package/ui/src/FormModal/index.ts +2 -0
- package/ui/src/FormModal/style.ts +42 -0
- package/ui/src/FormModal/type.ts +48 -0
- package/ui/src/Freeze/Freeze.test.tsx +72 -0
- package/ui/src/Freeze/Freeze.tsx +98 -0
- package/ui/src/Freeze/demos/index.tsx +29 -0
- package/ui/src/Freeze/index.md +20 -0
- package/ui/src/Freeze/index.ts +2 -0
- package/ui/src/Freeze/type.ts +6 -0
- package/ui/src/Grid/Grid.tsx +51 -0
- package/ui/src/Grid/demos/index.tsx +36 -0
- package/ui/src/Grid/index.md +23 -0
- package/ui/src/Grid/index.ts +2 -0
- package/ui/src/Grid/style.ts +18 -0
- package/ui/src/Grid/type.ts +10 -0
- package/ui/src/GroupAvatar/GroupAvatar.tsx +87 -0
- package/ui/src/GroupAvatar/demos/CornerShape.tsx +45 -0
- package/ui/src/GroupAvatar/demos/index.tsx +77 -0
- package/ui/src/GroupAvatar/index.md +59 -0
- package/ui/src/GroupAvatar/index.ts +2 -0
- package/ui/src/GroupAvatar/style.ts +51 -0
- package/ui/src/GroupAvatar/type.ts +16 -0
- package/ui/src/GuideCard/GuideCard.tsx +85 -0
- package/ui/src/GuideCard/demos/index.tsx +28 -0
- package/ui/src/GuideCard/index.md +32 -0
- package/ui/src/GuideCard/index.tsx +2 -0
- package/ui/src/GuideCard/style.ts +85 -0
- package/ui/src/GuideCard/type.ts +31 -0
- package/ui/src/Header/Header.tsx +94 -0
- package/ui/src/Header/demos/index.tsx +6 -0
- package/ui/src/Header/index.md +26 -0
- package/ui/src/Header/index.ts +2 -0
- package/ui/src/Header/style.ts +41 -0
- package/ui/src/Header/type.ts +16 -0
- package/ui/src/Highlighter/FullFeatured.tsx +198 -0
- package/ui/src/Highlighter/Highlighter.tsx +165 -0
- package/ui/src/Highlighter/LangSelect.tsx +77 -0
- package/ui/src/Highlighter/SyntaxHighlighter/StaticRenderer.tsx +60 -0
- package/ui/src/Highlighter/SyntaxHighlighter/StreamRenderer.tsx +109 -0
- package/ui/src/Highlighter/SyntaxHighlighter/index.tsx +69 -0
- package/ui/src/Highlighter/SyntaxHighlighter/style.ts +170 -0
- package/ui/src/Highlighter/const.ts +56 -0
- package/ui/src/Highlighter/demos/ActionsRender.tsx +27 -0
- package/ui/src/Highlighter/demos/FullFeatured.tsx +38 -0
- package/ui/src/Highlighter/demos/data.ts +78 -0
- package/ui/src/Highlighter/demos/index.tsx +36 -0
- package/ui/src/Highlighter/index.md +52 -0
- package/ui/src/Highlighter/index.ts +4 -0
- package/ui/src/Highlighter/style.ts +198 -0
- package/ui/src/Highlighter/theme/hubstr-theme.ts +527 -0
- package/ui/src/Highlighter/type.ts +53 -0
- package/ui/src/Hotkey/Hotkey.tsx +157 -0
- package/ui/src/Hotkey/const.ts +36 -0
- package/ui/src/Hotkey/demos/InverseTheme.tsx +12 -0
- package/ui/src/Hotkey/demos/MacStyle.tsx +30 -0
- package/ui/src/Hotkey/demos/Mouse.tsx +15 -0
- package/ui/src/Hotkey/demos/index.tsx +24 -0
- package/ui/src/Hotkey/index.md +93 -0
- package/ui/src/Hotkey/index.ts +4 -0
- package/ui/src/Hotkey/style.ts +76 -0
- package/ui/src/Hotkey/type.ts +17 -0
- package/ui/src/Hotkey/utils.test.ts +99 -0
- package/ui/src/Hotkey/utils.ts +57 -0
- package/ui/src/HotkeyInput/HotkeyInput.tsx +306 -0
- package/ui/src/HotkeyInput/demos/index.tsx +45 -0
- package/ui/src/HotkeyInput/index.md +43 -0
- package/ui/src/HotkeyInput/index.ts +2 -0
- package/ui/src/HotkeyInput/style.ts +84 -0
- package/ui/src/HotkeyInput/type.ts +30 -0
- package/ui/src/HtmlPreview/HtmlPreview.tsx +507 -0
- package/ui/src/HtmlPreview/Iframe.tsx +242 -0
- package/ui/src/HtmlPreview/buildShellSrcDoc.test.ts +42 -0
- package/ui/src/HtmlPreview/buildShellSrcDoc.ts +239 -0
- package/ui/src/HtmlPreview/buildStaticSrcDoc.test.ts +48 -0
- package/ui/src/HtmlPreview/buildStaticSrcDoc.ts +64 -0
- package/ui/src/HtmlPreview/const.test.ts +54 -0
- package/ui/src/HtmlPreview/const.ts +61 -0
- package/ui/src/HtmlPreview/demos/HeadResources.tsx +194 -0
- package/ui/src/HtmlPreview/demos/InMarkdown.tsx +40 -0
- package/ui/src/HtmlPreview/demos/Report.tsx +9 -0
- package/ui/src/HtmlPreview/demos/SlowStream.tsx +65 -0
- package/ui/src/HtmlPreview/demos/Streaming.tsx +80 -0
- package/ui/src/HtmlPreview/demos/data.tsx +60 -0
- package/ui/src/HtmlPreview/demos/index.tsx +35 -0
- package/ui/src/HtmlPreview/demos/jesusTimelineHtml.ts +324 -0
- package/ui/src/HtmlPreview/demos/reportHtml.ts +331 -0
- package/ui/src/HtmlPreview/index.md +113 -0
- package/ui/src/HtmlPreview/index.ts +11 -0
- package/ui/src/HtmlPreview/injectAutoHeightScript.ts +33 -0
- package/ui/src/HtmlPreview/injectStorageShim.ts +57 -0
- package/ui/src/HtmlPreview/type.ts +114 -0
- package/ui/src/Icon/Icon.tsx +75 -0
- package/ui/src/Icon/components/IconProvider.tsx +19 -0
- package/ui/src/Icon/components/utils.ts +41 -0
- package/ui/src/Icon/demos/CustomSize.tsx +30 -0
- package/ui/src/Icon/demos/index.tsx +27 -0
- package/ui/src/Icon/index.md +70 -0
- package/ui/src/Icon/index.ts +3 -0
- package/ui/src/Icon/style.ts +32 -0
- package/ui/src/Icon/type.ts +22 -0
- package/ui/src/Image/Image.tsx +95 -0
- package/ui/src/Image/PreviewGroup.tsx +25 -0
- package/ui/src/Image/components/Preview.tsx +28 -0
- package/ui/src/Image/components/Toolbar.tsx +140 -0
- package/ui/src/Image/components/usePreview.tsx +69 -0
- package/ui/src/Image/components/usePreviewGroup.tsx +67 -0
- package/ui/src/Image/demos/CustomActions.tsx +13 -0
- package/ui/src/Image/demos/Fallback.tsx +7 -0
- package/ui/src/Image/demos/Gallery.tsx +22 -0
- package/ui/src/Image/demos/index.tsx +23 -0
- package/ui/src/Image/index.md +63 -0
- package/ui/src/Image/index.ts +17 -0
- package/ui/src/Image/style.ts +168 -0
- package/ui/src/Image/type.ts +43 -0
- package/ui/src/ImageSelect/ImageSelect.tsx +76 -0
- package/ui/src/ImageSelect/demos/index.tsx +26 -0
- package/ui/src/ImageSelect/index.md +38 -0
- package/ui/src/ImageSelect/index.tsx +2 -0
- package/ui/src/ImageSelect/styles.ts +32 -0
- package/ui/src/ImageSelect/type.ts +32 -0
- package/ui/src/Img/index.tsx +29 -0
- package/ui/src/Input/Input.tsx +28 -0
- package/ui/src/Input/InputNumber.tsx +28 -0
- package/ui/src/Input/InputOPT.tsx +28 -0
- package/ui/src/Input/InputPassword.tsx +28 -0
- package/ui/src/Input/TextArea.tsx +34 -0
- package/ui/src/Input/demos/InputNumber.tsx +23 -0
- package/ui/src/Input/demos/InputOPT.tsx +22 -0
- package/ui/src/Input/demos/InputPassword.tsx +23 -0
- package/ui/src/Input/demos/TextArea.tsx +24 -0
- package/ui/src/Input/demos/index.tsx +23 -0
- package/ui/src/Input/index.md +76 -0
- package/ui/src/Input/index.tsx +6 -0
- package/ui/src/Input/style.ts +104 -0
- package/ui/src/Input/type.ts +36 -0
- package/ui/src/Layout/Layout.tsx +64 -0
- package/ui/src/Layout/components/LayoutFooter.tsx +19 -0
- package/ui/src/Layout/components/LayoutHeader.tsx +28 -0
- package/ui/src/Layout/components/LayoutMain.tsx +19 -0
- package/ui/src/Layout/components/LayoutSidebar.tsx +28 -0
- package/ui/src/Layout/components/LayoutSidebarInner.tsx +23 -0
- package/ui/src/Layout/components/LayoutToc.tsx +25 -0
- package/ui/src/Layout/demos/index.tsx +44 -0
- package/ui/src/Layout/index.md +47 -0
- package/ui/src/Layout/index.ts +38 -0
- package/ui/src/Layout/style.ts +48 -0
- package/ui/src/Layout/type.ts +35 -0
- package/ui/src/List/List.tsx +50 -0
- package/ui/src/List/ListItem/index.tsx +135 -0
- package/ui/src/List/ListItem/style.ts +67 -0
- package/ui/src/List/ListItem/time.ts +9 -0
- package/ui/src/List/demos/index.tsx +86 -0
- package/ui/src/List/index.md +11 -0
- package/ui/src/List/index.ts +18 -0
- package/ui/src/List/type.ts +50 -0
- package/ui/src/Markdown/Markdown.tsx +130 -0
- package/ui/src/Markdown/SyntaxMarkdown/CachedMarkdown.tsx +122 -0
- package/ui/src/Markdown/SyntaxMarkdown/MarkdownRender.tsx +34 -0
- package/ui/src/Markdown/SyntaxMarkdown/StreamdownRender.tsx +463 -0
- package/ui/src/Markdown/SyntaxMarkdown/fenceState.test.ts +55 -0
- package/ui/src/Markdown/SyntaxMarkdown/fenceState.ts +37 -0
- package/ui/src/Markdown/SyntaxMarkdown/index.tsx +2 -0
- package/ui/src/Markdown/SyntaxMarkdown/streamAnimationMeta.test.ts +44 -0
- package/ui/src/Markdown/SyntaxMarkdown/streamAnimationMeta.ts +36 -0
- package/ui/src/Markdown/SyntaxMarkdown/style.ts +30 -0
- package/ui/src/Markdown/SyntaxMarkdown/useSmoothStreamContent.ts +459 -0
- package/ui/src/Markdown/SyntaxMarkdown/useStreamQueue.ts +120 -0
- package/ui/src/Markdown/Typography.tsx +45 -0
- package/ui/src/Markdown/components/CodeBlock.tsx +97 -0
- package/ui/src/Markdown/components/Footnotes.tsx +105 -0
- package/ui/src/Markdown/components/MarkdownProvider.tsx +27 -0
- package/ui/src/Markdown/components/MarkdownTable/hastTableToMarkdown.test.ts +73 -0
- package/ui/src/Markdown/components/MarkdownTable/hastTableToMarkdown.ts +148 -0
- package/ui/src/Markdown/components/MarkdownTable/index.tsx +86 -0
- package/ui/src/Markdown/components/SearchResultCards/SearchResultCard.tsx +70 -0
- package/ui/src/Markdown/components/SearchResultCards/index.tsx +47 -0
- package/ui/src/Markdown/components/SearchResultCards/style.ts +20 -0
- package/ui/src/Markdown/components/useDelayedAnimated.ts +23 -0
- package/ui/src/Markdown/demos/StreamingPlayground.tsx +463 -0
- package/ui/src/Markdown/demos/advanced/alerts.tsx +37 -0
- package/ui/src/Markdown/demos/advanced/htmlPreview.tsx +44 -0
- package/ui/src/Markdown/demos/advanced/htmlPreviewArticle.tsx +153 -0
- package/ui/src/Markdown/demos/advanced/htmlPreviewReport.tsx +81 -0
- package/ui/src/Markdown/demos/advanced/htmlPreviewStream.tsx +81 -0
- package/ui/src/Markdown/demos/advanced/math.tsx +91 -0
- package/ui/src/Markdown/demos/advanced/mermaid.tsx +30 -0
- package/ui/src/Markdown/demos/basic/br.tsx +75 -0
- package/ui/src/Markdown/demos/basic/headings.tsx +55 -0
- package/ui/src/Markdown/demos/basic/links.tsx +58 -0
- package/ui/src/Markdown/demos/basic/lists/basic-lists.tsx +80 -0
- package/ui/src/Markdown/demos/basic/lists/task-lists.tsx +60 -0
- package/ui/src/Markdown/demos/basic/paragraphs.tsx +66 -0
- package/ui/src/Markdown/demos/basic/quotes.tsx +49 -0
- package/ui/src/Markdown/demos/basic/stylingText.tsx +61 -0
- package/ui/src/Markdown/demos/basic/tables.tsx +58 -0
- package/ui/src/Markdown/demos/code/code.tsx +59 -0
- package/ui/src/Markdown/demos/code/codeBlocks.tsx +77 -0
- package/ui/src/Markdown/demos/code/colors.tsx +46 -0
- package/ui/src/Markdown/demos/code/customHighlight.tsx +55 -0
- package/ui/src/Markdown/demos/code/transformer.tsx +69 -0
- package/ui/src/Markdown/demos/content.ts +204 -0
- package/ui/src/Markdown/demos/createLocalStream.ts +75 -0
- package/ui/src/Markdown/demos/custom/citations/cases.ts +115 -0
- package/ui/src/Markdown/demos/custom/citations/index.tsx +53 -0
- package/ui/src/Markdown/demos/custom/components.tsx +43 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntArtifact/Component.tsx +71 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntArtifact/index.tsx +10 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntArtifact/rehypePlugin.ts +53 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntThinking/Component.tsx +77 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntThinking/index.tsx +10 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntThinking/rehypePlugin.test.ts +172 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/AntThinking/rehypePlugin.ts +32 -0
- package/ui/src/Markdown/demos/custom/plugins/MarkdownElements/index.ts +4 -0
- package/ui/src/Markdown/demos/custom/plugins/index.tsx +60 -0
- package/ui/src/Markdown/demos/custom/plugins/utils.test.ts +50 -0
- package/ui/src/Markdown/demos/custom/plugins/utils.ts +8 -0
- package/ui/src/Markdown/demos/custom/thinking/content.ts +82 -0
- package/ui/src/Markdown/demos/custom/thinking/index.tsx +34 -0
- package/ui/src/Markdown/demos/custom/thinking/remarkPlugin.ts +72 -0
- package/ui/src/Markdown/demos/footnotes/customFootnotes.tsx +31 -0
- package/ui/src/Markdown/demos/footnotes/footnotes.tsx +51 -0
- package/ui/src/Markdown/demos/index.tsx +152 -0
- package/ui/src/Markdown/demos/media/images.tsx +26 -0
- package/ui/src/Markdown/demos/media/videos.tsx +46 -0
- package/ui/src/Markdown/demos/streaming.tsx +5 -0
- package/ui/src/Markdown/demos/streamingAnimationRepro.tsx +364 -0
- package/ui/src/Markdown/demos/streamingBench.tsx +81 -0
- package/ui/src/Markdown/demos/streamingProfiler.tsx +5 -0
- package/ui/src/Markdown/demos/variant.tsx +27 -0
- package/ui/src/Markdown/index.md +329 -0
- package/ui/src/Markdown/index.ts +3 -0
- package/ui/src/Markdown/markdown.style.ts +406 -0
- package/ui/src/Markdown/plugins/rehypeCustomFootnotes.ts +35 -0
- package/ui/src/Markdown/plugins/rehypeKatexDir.ts +13 -0
- package/ui/src/Markdown/plugins/rehypeStreamAnimated.test.ts +103 -0
- package/ui/src/Markdown/plugins/rehypeStreamAnimated.ts +180 -0
- package/ui/src/Markdown/plugins/remarkBr.ts +84 -0
- package/ui/src/Markdown/plugins/remarkColor.ts +175 -0
- package/ui/src/Markdown/plugins/remarkCustomFootnotes.ts +39 -0
- package/ui/src/Markdown/plugins/remarkGfmPlus.ts +148 -0
- package/ui/src/Markdown/plugins/remarkVideo.ts +169 -0
- package/ui/src/Markdown/streamProfiler/StreamdownProfilerPanel.tsx +472 -0
- package/ui/src/Markdown/streamProfiler/StreamdownProfilerProvider.tsx +23 -0
- package/ui/src/Markdown/streamProfiler/index.ts +21 -0
- package/ui/src/Markdown/streamProfiler/profiler.test.ts +168 -0
- package/ui/src/Markdown/streamProfiler/profiler.ts +610 -0
- package/ui/src/Markdown/style.ts +220 -0
- package/ui/src/Markdown/type.ts +70 -0
- package/ui/src/MaskShadow/MaskShadow.tsx +38 -0
- package/ui/src/MaskShadow/demos/index.tsx +32 -0
- package/ui/src/MaskShadow/index.md +18 -0
- package/ui/src/MaskShadow/index.ts +2 -0
- package/ui/src/MaskShadow/style.ts +65 -0
- package/ui/src/MaskShadow/type.ts +7 -0
- package/ui/src/MaterialFileTypeIcon/MaterialFileTypeIcon.tsx +78 -0
- package/ui/src/MaterialFileTypeIcon/demos/index.tsx +31 -0
- package/ui/src/MaterialFileTypeIcon/icon-map.json +4915 -0
- package/ui/src/MaterialFileTypeIcon/index.md +21 -0
- package/ui/src/MaterialFileTypeIcon/index.ts +2 -0
- package/ui/src/MaterialFileTypeIcon/type.ts +16 -0
- package/ui/src/MaterialFileTypeIcon/utils.ts +80 -0
- package/ui/src/Menu/Menu.tsx +71 -0
- package/ui/src/Menu/baseItem.ts +74 -0
- package/ui/src/Menu/checkboxItem.ts +23 -0
- package/ui/src/Menu/demos/data.tsx +70 -0
- package/ui/src/Menu/demos/index.tsx +52 -0
- package/ui/src/Menu/index.md +36 -0
- package/ui/src/Menu/index.ts +17 -0
- package/ui/src/Menu/renderUtils.tsx +81 -0
- package/ui/src/Menu/style.ts +71 -0
- package/ui/src/Menu/switchItem.ts +23 -0
- package/ui/src/Menu/type.ts +66 -0
- package/ui/src/Menu/utils.tsx +29 -0
- package/ui/src/Mermaid/FullFeatured.tsx +152 -0
- package/ui/src/Mermaid/Mermaid.tsx +126 -0
- package/ui/src/Mermaid/SyntaxMermaid/StaticMermaid.tsx +117 -0
- package/ui/src/Mermaid/SyntaxMermaid/StreamMermaid.tsx +123 -0
- package/ui/src/Mermaid/SyntaxMermaid/index.tsx +69 -0
- package/ui/src/Mermaid/SyntaxMermaid/style.ts +87 -0
- package/ui/src/Mermaid/const.ts +37 -0
- package/ui/src/Mermaid/demos/ActionsRender.tsx +27 -0
- package/ui/src/Mermaid/demos/FullFeatured.tsx +34 -0
- package/ui/src/Mermaid/demos/data.tsx +5 -0
- package/ui/src/Mermaid/demos/index.tsx +34 -0
- package/ui/src/Mermaid/index.md +404 -0
- package/ui/src/Mermaid/index.ts +4 -0
- package/ui/src/Mermaid/postProcessMermaidSvg.test.ts +223 -0
- package/ui/src/Mermaid/postProcessMermaidSvg.ts +367 -0
- package/ui/src/Mermaid/type.ts +48 -0
- package/ui/src/Modal/Modal.tsx +187 -0
- package/ui/src/Modal/ModalProvider.tsx +21 -0
- package/ui/src/Modal/ModalStackItem.tsx +64 -0
- package/ui/src/Modal/RawModalStackItem.tsx +57 -0
- package/ui/src/Modal/demos/imperative.tsx +39 -0
- package/ui/src/Modal/demos/index.tsx +29 -0
- package/ui/src/Modal/demos/raw.tsx +39 -0
- package/ui/src/Modal/imperative.tsx +277 -0
- package/ui/src/Modal/index.md +106 -0
- package/ui/src/Modal/index.ts +4 -0
- package/ui/src/Modal/style.ts +57 -0
- package/ui/src/Modal/type.ts +59 -0
- package/ui/src/MotionProvider/index.md +74 -0
- package/ui/src/MotionProvider/index.tsx +26 -0
- package/ui/src/NeuralNetworkLoading/NeuralNetworkLoading.tsx +146 -0
- package/ui/src/NeuralNetworkLoading/demos/index.tsx +18 -0
- package/ui/src/NeuralNetworkLoading/index.md +18 -0
- package/ui/src/NeuralNetworkLoading/index.ts +2 -0
- package/ui/src/NeuralNetworkLoading/type.ts +8 -0
- package/ui/src/Popover/index.ts +2 -0
- package/ui/src/Provider.tsx +7 -0
- package/ui/src/ScrollArea/ScrollArea.tsx +37 -0
- package/ui/src/ScrollArea/atoms.tsx +120 -0
- package/ui/src/ScrollArea/demos/background.tsx +79 -0
- package/ui/src/ScrollArea/demos/both.tsx +63 -0
- package/ui/src/ScrollArea/demos/content-fit-overflow.tsx +91 -0
- package/ui/src/ScrollArea/demos/fade-both.tsx +63 -0
- package/ui/src/ScrollArea/demos/horizontal.tsx +59 -0
- package/ui/src/ScrollArea/demos/index.tsx +30 -0
- package/ui/src/ScrollArea/globalStyle.ts +27 -0
- package/ui/src/ScrollArea/index.md +297 -0
- package/ui/src/ScrollArea/index.ts +1 -0
- package/ui/src/ScrollArea/style.ts +321 -0
- package/ui/src/ScrollArea/type.ts +30 -0
- package/ui/src/ScrollShadow/ScrollShadow.tsx +135 -0
- package/ui/src/ScrollShadow/demos/index.tsx +44 -0
- package/ui/src/ScrollShadow/index.md +22 -0
- package/ui/src/ScrollShadow/index.ts +2 -0
- package/ui/src/ScrollShadow/style.ts +112 -0
- package/ui/src/ScrollShadow/type.ts +19 -0
- package/ui/src/ScrollShadow/useScrollOverflow.test.tsx +62 -0
- package/ui/src/ScrollShadow/useScrollOverflow.ts +101 -0
- package/ui/src/SearchBar/SearchBar.tsx +117 -0
- package/ui/src/SearchBar/demos/index.tsx +27 -0
- package/ui/src/SearchBar/index.md +27 -0
- package/ui/src/SearchBar/index.ts +2 -0
- package/ui/src/SearchBar/style.ts +28 -0
- package/ui/src/SearchBar/type.ts +22 -0
- package/ui/src/Segmented/Segmented.tsx +28 -0
- package/ui/src/Segmented/demos/index.tsx +45 -0
- package/ui/src/Segmented/demos/tooltip.tsx +52 -0
- package/ui/src/Segmented/index.md +15 -0
- package/ui/src/Segmented/index.ts +2 -0
- package/ui/src/Segmented/style.ts +45 -0
- package/ui/src/Segmented/type.ts +13 -0
- package/ui/src/Select/Select.tsx +47 -0
- package/ui/src/Select/demos/index.tsx +67 -0
- package/ui/src/Select/index.md +23 -0
- package/ui/src/Select/index.ts +2 -0
- package/ui/src/Select/style.ts +65 -0
- package/ui/src/Select/type.ts +11 -0
- package/ui/src/SideNav/SideNav.tsx +35 -0
- package/ui/src/SideNav/demos/index.tsx +31 -0
- package/ui/src/SideNav/index.md +18 -0
- package/ui/src/SideNav/index.ts +2 -0
- package/ui/src/SideNav/style.ts +14 -0
- package/ui/src/SideNav/type.ts +9 -0
- package/ui/src/Skeleton/Skeleton.tsx +96 -0
- package/ui/src/Skeleton/SkeletonAvatar.tsx +41 -0
- package/ui/src/Skeleton/SkeletonBlock.tsx +31 -0
- package/ui/src/Skeleton/SkeletonButton.tsx +58 -0
- package/ui/src/Skeleton/SkeletonParagraph.tsx +63 -0
- package/ui/src/Skeleton/SkeletonTags.tsx +73 -0
- package/ui/src/Skeleton/SkeletonTitle.tsx +44 -0
- package/ui/src/Skeleton/demos/Avatar.tsx +24 -0
- package/ui/src/Skeleton/demos/Block.tsx +11 -0
- package/ui/src/Skeleton/demos/Button.tsx +30 -0
- package/ui/src/Skeleton/demos/Custom.tsx +9 -0
- package/ui/src/Skeleton/demos/Paragraph.tsx +21 -0
- package/ui/src/Skeleton/demos/Tags.tsx +23 -0
- package/ui/src/Skeleton/demos/Title.tsx +14 -0
- package/ui/src/Skeleton/demos/WithAvatar.tsx +3 -0
- package/ui/src/Skeleton/demos/index.tsx +21 -0
- package/ui/src/Skeleton/index.md +119 -0
- package/ui/src/Skeleton/index.ts +39 -0
- package/ui/src/Skeleton/style.ts +47 -0
- package/ui/src/Skeleton/type.ts +62 -0
- package/ui/src/SliderWithInput/SliderWithInput.tsx +84 -0
- package/ui/src/SliderWithInput/demos/index.tsx +16 -0
- package/ui/src/SliderWithInput/index.md +28 -0
- package/ui/src/SliderWithInput/index.ts +2 -0
- package/ui/src/SliderWithInput/type.ts +22 -0
- package/ui/src/Snippet/Snippet.tsx +49 -0
- package/ui/src/Snippet/demos/index.tsx +27 -0
- package/ui/src/Snippet/index.md +22 -0
- package/ui/src/Snippet/index.ts +2 -0
- package/ui/src/Snippet/style.ts +55 -0
- package/ui/src/Snippet/type.ts +14 -0
- package/ui/src/SortableList/SortableList.tsx +97 -0
- package/ui/src/SortableList/components/DragHandle.tsx +32 -0
- package/ui/src/SortableList/components/SortableItem.tsx +77 -0
- package/ui/src/SortableList/components/SortableOverlay.tsx +24 -0
- package/ui/src/SortableList/demos/index.tsx +77 -0
- package/ui/src/SortableList/index.md +34 -0
- package/ui/src/SortableList/index.ts +2 -0
- package/ui/src/SortableList/style.ts +50 -0
- package/ui/src/SortableList/type.ts +22 -0
- package/ui/src/Tabs/Tabs.tsx +52 -0
- package/ui/src/Tabs/demos/index.tsx +51 -0
- package/ui/src/Tabs/index.md +38 -0
- package/ui/src/Tabs/index.ts +2 -0
- package/ui/src/Tabs/style.ts +171 -0
- package/ui/src/Tabs/type.ts +6 -0
- package/ui/src/Tag/Tag.tsx +115 -0
- package/ui/src/Tag/demos/Color.tsx +74 -0
- package/ui/src/Tag/demos/index.tsx +55 -0
- package/ui/src/Tag/index.md +58 -0
- package/ui/src/Tag/index.tsx +2 -0
- package/ui/src/Tag/styles.ts +117 -0
- package/ui/src/Tag/type.ts +10 -0
- package/ui/src/Tag/utils.ts +41 -0
- package/ui/src/Text/Text.tsx +128 -0
- package/ui/src/Text/demos/TooltipWhenOverflow.tsx +31 -0
- package/ui/src/Text/demos/index.tsx +102 -0
- package/ui/src/Text/index.md +97 -0
- package/ui/src/Text/index.ts +2 -0
- package/ui/src/Text/styles.ts +141 -0
- package/ui/src/Text/type.ts +45 -0
- package/ui/src/ThemeProvider/AppElementContext.tsx +11 -0
- package/ui/src/ThemeProvider/ConfigProvider.tsx +43 -0
- package/ui/src/ThemeProvider/GlobalStyle/antdOverride.ts +110 -0
- package/ui/src/ThemeProvider/GlobalStyle/global.ts +159 -0
- package/ui/src/ThemeProvider/GlobalStyle/index.ts +10 -0
- package/ui/src/ThemeProvider/Meta.tsx +62 -0
- package/ui/src/ThemeProvider/ThemeProvider.tsx +156 -0
- package/ui/src/ThemeProvider/constants.ts +1 -0
- package/ui/src/ThemeProvider/demos/CustomFonts.tsx +32 -0
- package/ui/src/ThemeProvider/demos/index.tsx +12 -0
- package/ui/src/ThemeProvider/index.md +69 -0
- package/ui/src/ThemeProvider/index.ts +5 -0
- package/ui/src/ThemeProvider/type.ts +28 -0
- package/ui/src/ThemeSwitch/ThemeSwitch.tsx +91 -0
- package/ui/src/ThemeSwitch/demos/index.tsx +32 -0
- package/ui/src/ThemeSwitch/index.md +21 -0
- package/ui/src/ThemeSwitch/index.ts +2 -0
- package/ui/src/ThemeSwitch/type.ts +17 -0
- package/ui/src/Toast/index.ts +1 -0
- package/ui/src/Toc/Toc.tsx +48 -0
- package/ui/src/Toc/TocMobile.tsx +63 -0
- package/ui/src/Toc/demos/index.tsx +28 -0
- package/ui/src/Toc/index.md +30 -0
- package/ui/src/Toc/index.ts +2 -0
- package/ui/src/Toc/style.ts +77 -0
- package/ui/src/Toc/type.ts +20 -0
- package/ui/src/Toc/utils.ts +13 -0
- package/ui/src/Tooltip/index.ts +2 -0
- package/ui/src/Video/demos/index.tsx +22 -0
- package/ui/src/Video/index.md +35 -0
- package/ui/src/Video/index.tsx +182 -0
- package/ui/src/Video/style.ts +75 -0
- package/ui/src/awesome/AuroraBackground/AuroraBackground.tsx +34 -0
- package/ui/src/awesome/AuroraBackground/demos/index.tsx +3 -0
- package/ui/src/awesome/AuroraBackground/index.md +23 -0
- package/ui/src/awesome/AuroraBackground/index.ts +2 -0
- package/ui/src/awesome/AuroraBackground/style.ts +143 -0
- package/ui/src/awesome/AuroraBackground/type.ts +15 -0
- package/ui/src/awesome/BottomGradientButton/BottomGradientButton.tsx +34 -0
- package/ui/src/awesome/BottomGradientButton/demos/index.tsx +23 -0
- package/ui/src/awesome/BottomGradientButton/index.md +15 -0
- package/ui/src/awesome/BottomGradientButton/index.ts +2 -0
- package/ui/src/awesome/BottomGradientButton/style.ts +38 -0
- package/ui/src/awesome/BottomGradientButton/type.ts +3 -0
- package/ui/src/awesome/Features/FeatureItem.tsx +102 -0
- package/ui/src/awesome/Features/Features.tsx +30 -0
- package/ui/src/awesome/Features/demos/index.tsx +27 -0
- package/ui/src/awesome/Features/index.md +43 -0
- package/ui/src/awesome/Features/index.ts +2 -0
- package/ui/src/awesome/Features/style.ts +164 -0
- package/ui/src/awesome/Features/type.ts +30 -0
- package/ui/src/awesome/Giscus/Giscus.tsx +44 -0
- package/ui/src/awesome/Giscus/demos/index.tsx +14 -0
- package/ui/src/awesome/Giscus/index.md +25 -0
- package/ui/src/awesome/Giscus/index.ts +2 -0
- package/ui/src/awesome/Giscus/style.ts +152 -0
- package/ui/src/awesome/Giscus/type.ts +7 -0
- package/ui/src/awesome/GradientButton/GradientButton.tsx +62 -0
- package/ui/src/awesome/GradientButton/demos/index.tsx +23 -0
- package/ui/src/awesome/GradientButton/index.md +22 -0
- package/ui/src/awesome/GradientButton/index.ts +2 -0
- package/ui/src/awesome/GradientButton/style.ts +114 -0
- package/ui/src/awesome/GradientButton/type.ts +5 -0
- package/ui/src/awesome/GridBackground/GridBackground.tsx +123 -0
- package/ui/src/awesome/GridBackground/GridShowcase.tsx +44 -0
- package/ui/src/awesome/GridBackground/components/Grid.tsx +86 -0
- package/ui/src/awesome/GridBackground/demos/Showcase.tsx +12 -0
- package/ui/src/awesome/GridBackground/demos/index.tsx +40 -0
- package/ui/src/awesome/GridBackground/index.md +45 -0
- package/ui/src/awesome/GridBackground/index.ts +3 -0
- package/ui/src/awesome/GridBackground/style.ts +90 -0
- package/ui/src/awesome/GridBackground/type.ts +20 -0
- package/ui/src/awesome/Hero/Hero.tsx +95 -0
- package/ui/src/awesome/Hero/demos/index.tsx +24 -0
- package/ui/src/awesome/Hero/index.md +33 -0
- package/ui/src/awesome/Hero/index.ts +2 -0
- package/ui/src/awesome/Hero/style.ts +70 -0
- package/ui/src/awesome/Hero/type.ts +16 -0
- package/ui/src/awesome/Spline/ParentSize.tsx +140 -0
- package/ui/src/awesome/Spline/Spine.tsx +134 -0
- package/ui/src/awesome/Spline/index.ts +2 -0
- package/ui/src/awesome/Spline/type.ts +21 -0
- package/ui/src/awesome/Spotlight/Spotlight.tsx +44 -0
- package/ui/src/awesome/Spotlight/demos/index.tsx +34 -0
- package/ui/src/awesome/Spotlight/index.md +22 -0
- package/ui/src/awesome/Spotlight/index.ts +2 -0
- package/ui/src/awesome/Spotlight/style.ts +79 -0
- package/ui/src/awesome/Spotlight/type.ts +5 -0
- package/ui/src/awesome/Spotlight/useMouseOffset.ts +32 -0
- package/ui/src/awesome/SpotlightCard/SpotlightCard.tsx +87 -0
- package/ui/src/awesome/SpotlightCard/SpotlightCardItem.tsx +41 -0
- package/ui/src/awesome/SpotlightCard/demos/data.ts +43 -0
- package/ui/src/awesome/SpotlightCard/demos/index.tsx +20 -0
- package/ui/src/awesome/SpotlightCard/index.md +29 -0
- package/ui/src/awesome/SpotlightCard/index.ts +2 -0
- package/ui/src/awesome/SpotlightCard/style.ts +138 -0
- package/ui/src/awesome/SpotlightCard/type.ts +19 -0
- package/ui/src/awesome/TypewriterEffect/TypewriterEffect.tsx +296 -0
- package/ui/src/awesome/TypewriterEffect/demos/advanced.tsx +17 -0
- package/ui/src/awesome/TypewriterEffect/demos/callback.tsx +19 -0
- package/ui/src/awesome/TypewriterEffect/demos/colors.tsx +22 -0
- package/ui/src/awesome/TypewriterEffect/demos/cursorBehavior.tsx +33 -0
- package/ui/src/awesome/TypewriterEffect/demos/cursorStyles.tsx +18 -0
- package/ui/src/awesome/TypewriterEffect/demos/customSpeed.tsx +23 -0
- package/ui/src/awesome/TypewriterEffect/demos/emoji.tsx +20 -0
- package/ui/src/awesome/TypewriterEffect/demos/index.tsx +79 -0
- package/ui/src/awesome/TypewriterEffect/demos/initialDelay.tsx +13 -0
- package/ui/src/awesome/TypewriterEffect/demos/segmentModes.tsx +28 -0
- package/ui/src/awesome/TypewriterEffect/demos/variableSpeed.tsx +15 -0
- package/ui/src/awesome/TypewriterEffect/index.md +85 -0
- package/ui/src/awesome/TypewriterEffect/index.ts +2 -0
- package/ui/src/awesome/TypewriterEffect/style.ts +81 -0
- package/ui/src/awesome/TypewriterEffect/type.ts +126 -0
- package/ui/src/awesome/index.ts +24 -0
- package/ui/src/base-ui/Button/Button.tsx +175 -0
- package/ui/src/base-ui/Button/demos/icons.tsx +69 -0
- package/ui/src/base-ui/Button/demos/index.tsx +70 -0
- package/ui/src/base-ui/Button/demos/sizes.tsx +47 -0
- package/ui/src/base-ui/Button/index.md +49 -0
- package/ui/src/base-ui/Button/index.ts +4 -0
- package/ui/src/base-ui/Button/style.ts +246 -0
- package/ui/src/base-ui/Button/type.ts +44 -0
- package/ui/src/base-ui/ContextMenu/ContextMenuHost.tsx +95 -0
- package/ui/src/base-ui/ContextMenu/ContextMenuTrigger.tsx +89 -0
- package/ui/src/base-ui/ContextMenu/__tests__/slots.test.tsx +110 -0
- package/ui/src/base-ui/ContextMenu/imperative.tsx +3 -0
- package/ui/src/base-ui/ContextMenu/index.md +84 -0
- package/ui/src/base-ui/ContextMenu/index.ts +11 -0
- package/ui/src/base-ui/ContextMenu/renderItems.tsx +375 -0
- package/ui/src/base-ui/ContextMenu/store.ts +121 -0
- package/ui/src/base-ui/ContextMenu/style.ts +1 -0
- package/ui/src/base-ui/ContextMenu/type.ts +7 -0
- package/ui/src/base-ui/DropdownMenu/DropdownMenu.tsx +150 -0
- package/ui/src/base-ui/DropdownMenu/__tests__/slots.test.tsx +112 -0
- package/ui/src/base-ui/DropdownMenu/atoms.tsx +423 -0
- package/ui/src/base-ui/DropdownMenu/index.md +153 -0
- package/ui/src/base-ui/DropdownMenu/index.ts +55 -0
- package/ui/src/base-ui/DropdownMenu/renderItems.tsx +293 -0
- package/ui/src/base-ui/DropdownMenu/sharedStyle.ts +292 -0
- package/ui/src/base-ui/DropdownMenu/type.ts +63 -0
- package/ui/src/base-ui/FloatingSheet/FloatingSheet.tsx +297 -0
- package/ui/src/base-ui/FloatingSheet/FloatingSheetHeader.tsx +36 -0
- package/ui/src/base-ui/FloatingSheet/__tests__/FloatingSheet.test.tsx +76 -0
- package/ui/src/base-ui/FloatingSheet/__tests__/helpers.test.ts +61 -0
- package/ui/src/base-ui/FloatingSheet/__tests__/useSheetDrag.test.ts +106 -0
- package/ui/src/base-ui/FloatingSheet/__tests__/useSnapPoints.test.ts +209 -0
- package/ui/src/base-ui/FloatingSheet/demos/index.tsx +445 -0
- package/ui/src/base-ui/FloatingSheet/demos/inline.tsx +236 -0
- package/ui/src/base-ui/FloatingSheet/demos/playground.tsx +341 -0
- package/ui/src/base-ui/FloatingSheet/helpers.ts +27 -0
- package/ui/src/base-ui/FloatingSheet/index.md +23 -0
- package/ui/src/base-ui/FloatingSheet/index.ts +2 -0
- package/ui/src/base-ui/FloatingSheet/style.ts +91 -0
- package/ui/src/base-ui/FloatingSheet/type.ts +22 -0
- package/ui/src/base-ui/FloatingSheet/useSheetDrag.ts +72 -0
- package/ui/src/base-ui/FloatingSheet/useSnapPoints.ts +115 -0
- package/ui/src/base-ui/Modal/Modal.tsx +338 -0
- package/ui/src/base-ui/Modal/ModalLayerContext.tsx +13 -0
- package/ui/src/base-ui/Modal/atoms.tsx +339 -0
- package/ui/src/base-ui/Modal/constants.ts +28 -0
- package/ui/src/base-ui/Modal/context.ts +12 -0
- package/ui/src/base-ui/Modal/demos/atoms.tsx +104 -0
- package/ui/src/base-ui/Modal/demos/business.tsx +427 -0
- package/ui/src/base-ui/Modal/demos/imperative.tsx +122 -0
- package/ui/src/base-ui/Modal/demos/index.tsx +316 -0
- package/ui/src/base-ui/Modal/demos/nested.tsx +60 -0
- package/ui/src/base-ui/Modal/demos/zindex-dropdown-in-modal.tsx +74 -0
- package/ui/src/base-ui/Modal/demos/zindex-with-dropdown.tsx +84 -0
- package/ui/src/base-ui/Modal/imperative.tsx +288 -0
- package/ui/src/base-ui/Modal/index.md +250 -0
- package/ui/src/base-ui/Modal/index.ts +40 -0
- package/ui/src/base-ui/Modal/style.ts +271 -0
- package/ui/src/base-ui/Modal/type.ts +111 -0
- package/ui/src/base-ui/Popover/ArrowIcon.tsx +8 -0
- package/ui/src/base-ui/Popover/Popover.tsx +27 -0
- package/ui/src/base-ui/Popover/PopoverGroup.tsx +151 -0
- package/ui/src/base-ui/Popover/PopoverInGroup.tsx +87 -0
- package/ui/src/base-ui/Popover/PopoverPortal.tsx +11 -0
- package/ui/src/base-ui/Popover/PopoverStandalone.tsx +234 -0
- package/ui/src/base-ui/Popover/atoms.tsx +219 -0
- package/ui/src/base-ui/Popover/context.tsx +28 -0
- package/ui/src/base-ui/Popover/demos/atoms.tsx +64 -0
- package/ui/src/base-ui/Popover/demos/context.tsx +72 -0
- package/ui/src/base-ui/Popover/demos/controlled.tsx +133 -0
- package/ui/src/base-ui/Popover/demos/dropdown-menu.tsx +50 -0
- package/ui/src/base-ui/Popover/demos/group.tsx +73 -0
- package/ui/src/base-ui/Popover/demos/index.tsx +56 -0
- package/ui/src/base-ui/Popover/demos/native-button.tsx +179 -0
- package/ui/src/base-ui/Popover/demos/placement.tsx +148 -0
- package/ui/src/base-ui/Popover/demos/popover-wrapping-tooltip-group.tsx +55 -0
- package/ui/src/base-ui/Popover/demos/popover-wrapping-tooltip.tsx +33 -0
- package/ui/src/base-ui/Popover/demos/tooltip-hover-stay.tsx +55 -0
- package/ui/src/base-ui/Popover/demos/tooltip-inside.tsx +40 -0
- package/ui/src/base-ui/Popover/demos/trigger.tsx +298 -0
- package/ui/src/base-ui/Popover/groupContext.ts +34 -0
- package/ui/src/base-ui/Popover/index.md +130 -0
- package/ui/src/base-ui/Popover/index.ts +32 -0
- package/ui/src/base-ui/Popover/style.ts +233 -0
- package/ui/src/base-ui/Popover/type.ts +199 -0
- package/ui/src/base-ui/Popover/useMergedPopoverProps.ts +120 -0
- package/ui/src/base-ui/ScrollArea/ScrollArea.tsx +42 -0
- package/ui/src/base-ui/ScrollArea/atoms.tsx +120 -0
- package/ui/src/base-ui/ScrollArea/globalStyle.ts +27 -0
- package/ui/src/base-ui/ScrollArea/index.md +302 -0
- package/ui/src/base-ui/ScrollArea/index.ts +18 -0
- package/ui/src/base-ui/ScrollArea/style.ts +319 -0
- package/ui/src/base-ui/ScrollArea/type.ts +39 -0
- package/ui/src/base-ui/Select/Select.tsx +296 -0
- package/ui/src/base-ui/Select/atoms.tsx +294 -0
- package/ui/src/base-ui/Select/demos/atoms.tsx +108 -0
- package/ui/src/base-ui/Select/demos/index.tsx +121 -0
- package/ui/src/base-ui/Select/demos/indicator.tsx +49 -0
- package/ui/src/base-ui/Select/demos/render.tsx +107 -0
- package/ui/src/base-ui/Select/demos/virtual.tsx +47 -0
- package/ui/src/base-ui/Select/helpers.ts +45 -0
- package/ui/src/base-ui/Select/hooks.tsx +458 -0
- package/ui/src/base-ui/Select/index.md +118 -0
- package/ui/src/base-ui/Select/index.ts +48 -0
- package/ui/src/base-ui/Select/parts.tsx +230 -0
- package/ui/src/base-ui/Select/renderOptions.tsx +98 -0
- package/ui/src/base-ui/Select/style.ts +331 -0
- package/ui/src/base-ui/Select/type.ts +116 -0
- package/ui/src/base-ui/SubmenuArrowIcon.tsx +12 -0
- package/ui/src/base-ui/Switch/Switch.tsx +96 -0
- package/ui/src/base-ui/Switch/atoms.tsx +209 -0
- package/ui/src/base-ui/Switch/demos/atoms.tsx +43 -0
- package/ui/src/base-ui/Switch/demos/index.tsx +46 -0
- package/ui/src/base-ui/Switch/index.md +19 -0
- package/ui/src/base-ui/Switch/index.ts +15 -0
- package/ui/src/base-ui/Switch/style.ts +177 -0
- package/ui/src/base-ui/Switch/type.ts +150 -0
- package/ui/src/base-ui/Tabs/Tabs.tsx +78 -0
- package/ui/src/base-ui/Tabs/atoms.tsx +98 -0
- package/ui/src/base-ui/Tabs/demos/atoms.tsx +44 -0
- package/ui/src/base-ui/Tabs/demos/index.tsx +59 -0
- package/ui/src/base-ui/Tabs/index.md +51 -0
- package/ui/src/base-ui/Tabs/index.ts +24 -0
- package/ui/src/base-ui/Tabs/style.ts +226 -0
- package/ui/src/base-ui/Tabs/type.ts +75 -0
- package/ui/src/base-ui/Toast/Toast.tsx +175 -0
- package/ui/src/base-ui/Toast/context.ts +17 -0
- package/ui/src/base-ui/Toast/demos/actions.tsx +108 -0
- package/ui/src/base-ui/Toast/demos/index.tsx +154 -0
- package/ui/src/base-ui/Toast/demos/position.tsx +94 -0
- package/ui/src/base-ui/Toast/demos/promise.tsx +130 -0
- package/ui/src/base-ui/Toast/imperative.tsx +315 -0
- package/ui/src/base-ui/Toast/index.md +156 -0
- package/ui/src/base-ui/Toast/index.ts +2 -0
- package/ui/src/base-ui/Toast/style.ts +429 -0
- package/ui/src/base-ui/Toast/type.ts +160 -0
- package/ui/src/base-ui/Tooltip/ArrowIcon.tsx +8 -0
- package/ui/src/base-ui/Tooltip/Tooltip.tsx +22 -0
- package/ui/src/base-ui/Tooltip/TooltipContent.tsx +32 -0
- package/ui/src/base-ui/Tooltip/TooltipGroup.tsx +167 -0
- package/ui/src/base-ui/Tooltip/TooltipInGroup.tsx +181 -0
- package/ui/src/base-ui/Tooltip/TooltipStandalone.tsx +285 -0
- package/ui/src/base-ui/Tooltip/demos/group-children-preserve.tsx +87 -0
- package/ui/src/base-ui/Tooltip/demos/group-remove-trigger.tsx +173 -0
- package/ui/src/base-ui/Tooltip/demos/group-shared.tsx +25 -0
- package/ui/src/base-ui/Tooltip/demos/group.tsx +32 -0
- package/ui/src/base-ui/Tooltip/demos/index.tsx +22 -0
- package/ui/src/base-ui/Tooltip/groupContext.ts +24 -0
- package/ui/src/base-ui/Tooltip/index.md +87 -0
- package/ui/src/base-ui/Tooltip/index.tsx +11 -0
- package/ui/src/base-ui/Tooltip/style.ts +238 -0
- package/ui/src/base-ui/Tooltip/type.ts +219 -0
- package/ui/src/base-ui/Tooltip/useMergedTooltipProps.ts +135 -0
- package/ui/src/base-ui/index.ts +36 -0
- package/ui/src/base-ui/zIndex/constants.ts +8 -0
- package/ui/src/base-ui/zIndex/index.ts +3 -0
- package/ui/src/base-ui/zIndex/manager.test.ts +75 -0
- package/ui/src/base-ui/zIndex/manager.ts +35 -0
- package/ui/src/base-ui/zIndex/useLayerZIndex.test.tsx +105 -0
- package/ui/src/base-ui/zIndex/useLayerZIndex.tsx +103 -0
- package/ui/src/brand/BrandLoading/index.md +33 -0
- package/ui/src/brand/BrandLoading/index.tsx +18 -0
- package/ui/src/brand/Hubstr/index.md +40 -0
- package/ui/src/brand/Hubstr/index.tsx +89 -0
- package/ui/src/brand/Hubstr/style.ts +10 -0
- package/ui/src/brand/HubstrChat/index.md +40 -0
- package/ui/src/brand/HubstrChat/index.tsx +88 -0
- package/ui/src/brand/HubstrChatText/index.md +17 -0
- package/ui/src/brand/HubstrChatText/index.tsx +36 -0
- package/ui/src/brand/HubstrText/index.md +17 -0
- package/ui/src/brand/HubstrText/index.tsx +36 -0
- package/ui/src/brand/Logo3d/index.md +29 -0
- package/ui/src/brand/Logo3d/index.tsx +20 -0
- package/ui/src/brand/LogoFlat/index.md +17 -0
- package/ui/src/brand/LogoFlat/index.tsx +19 -0
- package/ui/src/brand/LogoMark.tsx +29 -0
- package/ui/src/brand/LogoMono/index.md +17 -0
- package/ui/src/brand/LogoMono/index.tsx +19 -0
- package/ui/src/brand/LogoThree/Loading.tsx +15 -0
- package/ui/src/brand/LogoThree/LogoSpline.tsx +26 -0
- package/ui/src/brand/LogoThree/demos/LogoSpline.tsx +29 -0
- package/ui/src/brand/LogoThree/demos/index.tsx +23 -0
- package/ui/src/brand/LogoThree/index.md +29 -0
- package/ui/src/brand/LogoThree/index.tsx +28 -0
- package/ui/src/brand/assets/hubstr-ai.png +0 -0
- package/ui/src/brand/components/Divider.tsx +22 -0
- package/ui/src/brand/index.ts +10 -0
- package/ui/src/chat/BackBottom/BackBottom.tsx +53 -0
- package/ui/src/chat/BackBottom/demos/index.tsx +18 -0
- package/ui/src/chat/BackBottom/index.md +25 -0
- package/ui/src/chat/BackBottom/index.ts +2 -0
- package/ui/src/chat/BackBottom/style.ts +38 -0
- package/ui/src/chat/BackBottom/type.ts +12 -0
- package/ui/src/chat/Bubble/Bubble.tsx +23 -0
- package/ui/src/chat/Bubble/index.tsx +2 -0
- package/ui/src/chat/Bubble/style.ts +41 -0
- package/ui/src/chat/Bubble/type.ts +9 -0
- package/ui/src/chat/ChatHeader/ChatHeader.tsx +83 -0
- package/ui/src/chat/ChatHeader/ChatHeaderTitle.tsx +35 -0
- package/ui/src/chat/ChatHeader/demos/index.tsx +18 -0
- package/ui/src/chat/ChatHeader/index.md +37 -0
- package/ui/src/chat/ChatHeader/index.ts +18 -0
- package/ui/src/chat/ChatHeader/style.ts +80 -0
- package/ui/src/chat/ChatHeader/type.ts +31 -0
- package/ui/src/chat/ChatInputArea/ChatInputArea.tsx +62 -0
- package/ui/src/chat/ChatInputArea/components/ChatInputActionBar.tsx +49 -0
- package/ui/src/chat/ChatInputArea/components/ChatInputAreaInner.tsx +66 -0
- package/ui/src/chat/ChatInputArea/components/ChatSendButton.tsx +67 -0
- package/ui/src/chat/ChatInputArea/demos/index.tsx +27 -0
- package/ui/src/chat/ChatInputArea/index.md +55 -0
- package/ui/src/chat/ChatInputArea/index.ts +26 -0
- package/ui/src/chat/ChatInputArea/style.ts +44 -0
- package/ui/src/chat/ChatInputArea/type.ts +55 -0
- package/ui/src/chat/ChatItem/ChatItem.tsx +219 -0
- package/ui/src/chat/ChatItem/components/Actions.tsx +43 -0
- package/ui/src/chat/ChatItem/components/Avatar.tsx +65 -0
- package/ui/src/chat/ChatItem/components/BorderSpacing.tsx +13 -0
- package/ui/src/chat/ChatItem/components/ErrorContent.tsx +23 -0
- package/ui/src/chat/ChatItem/components/Loading.tsx +29 -0
- package/ui/src/chat/ChatItem/components/MessageContent.tsx +90 -0
- package/ui/src/chat/ChatItem/components/Title.tsx +32 -0
- package/ui/src/chat/ChatItem/demos/Alert.tsx +48 -0
- package/ui/src/chat/ChatItem/demos/AlertWithContent.tsx +52 -0
- package/ui/src/chat/ChatItem/demos/AlertWithDefaultMessagePlacehoder.tsx +52 -0
- package/ui/src/chat/ChatItem/demos/Editing.tsx +13 -0
- package/ui/src/chat/ChatItem/demos/code.ts +344 -0
- package/ui/src/chat/ChatItem/demos/code.tsx +33 -0
- package/ui/src/chat/ChatItem/demos/data.tsx +38 -0
- package/ui/src/chat/ChatItem/demos/index.tsx +58 -0
- package/ui/src/chat/ChatItem/demos/table.tsx +42 -0
- package/ui/src/chat/ChatItem/index.md +55 -0
- package/ui/src/chat/ChatItem/index.ts +2 -0
- package/ui/src/chat/ChatItem/style.ts +346 -0
- package/ui/src/chat/ChatItem/type.ts +91 -0
- package/ui/src/chat/ChatList/ChatList.tsx +69 -0
- package/ui/src/chat/ChatList/components/ChatActionsBar.tsx +20 -0
- package/ui/src/chat/ChatList/components/ChatListItem.tsx +168 -0
- package/ui/src/chat/ChatList/components/HistoryDivider.tsx +25 -0
- package/ui/src/chat/ChatList/components/useChatListActionsBar.tsx +50 -0
- package/ui/src/chat/ChatList/demos/data.ts +30 -0
- package/ui/src/chat/ChatList/demos/index.tsx +35 -0
- package/ui/src/chat/ChatList/index.md +59 -0
- package/ui/src/chat/ChatList/index.ts +3 -0
- package/ui/src/chat/ChatList/style.ts +9 -0
- package/ui/src/chat/ChatList/type.ts +97 -0
- package/ui/src/chat/EditableMessage/EditableMessage.tsx +122 -0
- package/ui/src/chat/EditableMessage/demos/index.tsx +114 -0
- package/ui/src/chat/EditableMessage/index.md +40 -0
- package/ui/src/chat/EditableMessage/index.ts +2 -0
- package/ui/src/chat/EditableMessage/type.ts +39 -0
- package/ui/src/chat/EditableMessageList/EditableMessageList.tsx +104 -0
- package/ui/src/chat/EditableMessageList/demos/data.ts +43 -0
- package/ui/src/chat/EditableMessageList/demos/index.tsx +5 -0
- package/ui/src/chat/EditableMessageList/index.md +32 -0
- package/ui/src/chat/EditableMessageList/index.ts +2 -0
- package/ui/src/chat/EditableMessageList/messageReducer.ts +84 -0
- package/ui/src/chat/EditableMessageList/type.ts +16 -0
- package/ui/src/chat/LoadingDots/LoadingDots.tsx +90 -0
- package/ui/src/chat/LoadingDots/demos/index.tsx +30 -0
- package/ui/src/chat/LoadingDots/index.md +18 -0
- package/ui/src/chat/LoadingDots/index.tsx +2 -0
- package/ui/src/chat/LoadingDots/style.ts +166 -0
- package/ui/src/chat/LoadingDots/type.ts +29 -0
- package/ui/src/chat/MessageInput/MessageInput.tsx +119 -0
- package/ui/src/chat/MessageInput/demos/index.tsx +21 -0
- package/ui/src/chat/MessageInput/index.md +30 -0
- package/ui/src/chat/MessageInput/index.ts +2 -0
- package/ui/src/chat/MessageInput/style.ts +13 -0
- package/ui/src/chat/MessageInput/type.ts +27 -0
- package/ui/src/chat/MessageModal/MessageModal.tsx +133 -0
- package/ui/src/chat/MessageModal/TextArea.tsx +27 -0
- package/ui/src/chat/MessageModal/demos/edit.tsx +33 -0
- package/ui/src/chat/MessageModal/demos/index.tsx +20 -0
- package/ui/src/chat/MessageModal/index.md +35 -0
- package/ui/src/chat/MessageModal/index.ts +2 -0
- package/ui/src/chat/MessageModal/type.ts +25 -0
- package/ui/src/chat/TokenTag/TokenTag.tsx +80 -0
- package/ui/src/chat/TokenTag/demos/index.tsx +34 -0
- package/ui/src/chat/TokenTag/index.md +18 -0
- package/ui/src/chat/TokenTag/index.tsx +2 -0
- package/ui/src/chat/TokenTag/type.ts +13 -0
- package/ui/src/chat/index.ts +42 -0
- package/ui/src/chat/types/chatMessage.ts +52 -0
- package/ui/src/chat/types/error.ts +28 -0
- package/ui/src/chat/types/index.ts +4 -0
- package/ui/src/chat/types/llm.ts +52 -0
- package/ui/src/chat/types/meta.ts +28 -0
- package/ui/src/color/ColorScales/ScaleRow.tsx +70 -0
- package/ui/src/color/ColorScales/index.md +168 -0
- package/ui/src/color/ColorScales/index.tsx +71 -0
- package/ui/src/color/ColorScales/style.ts +42 -0
- package/ui/src/color/CssVar/ScaleRow.tsx +54 -0
- package/ui/src/color/CssVar/VarRow.tsx +47 -0
- package/ui/src/color/CssVar/index.md +163 -0
- package/ui/src/color/CssVar/index.tsx +83 -0
- package/ui/src/color/CssVar/style.ts +42 -0
- package/ui/src/color/colors/blue.ts +66 -0
- package/ui/src/color/colors/blueGeekblueMix.ts +66 -0
- package/ui/src/color/colors/cyan.ts +66 -0
- package/ui/src/color/colors/geekblue.ts +66 -0
- package/ui/src/color/colors/gold.ts +66 -0
- package/ui/src/color/colors/gray.ts +66 -0
- package/ui/src/color/colors/green.ts +66 -0
- package/ui/src/color/colors/index.ts +66 -0
- package/ui/src/color/colors/lime.ts +66 -0
- package/ui/src/color/colors/magenta.ts +66 -0
- package/ui/src/color/colors/orange.ts +66 -0
- package/ui/src/color/colors/primary.ts +66 -0
- package/ui/src/color/colors/purple.ts +66 -0
- package/ui/src/color/colors/red.ts +66 -0
- package/ui/src/color/colors/volcano.ts +66 -0
- package/ui/src/color/colors/yellow.ts +66 -0
- package/ui/src/color/index.ts +5 -0
- package/ui/src/color/neutrals/index.ts +30 -0
- package/ui/src/color/neutrals/mauve.ts +66 -0
- package/ui/src/color/neutrals/olive.ts +66 -0
- package/ui/src/color/neutrals/sage.ts +66 -0
- package/ui/src/color/neutrals/sand.ts +66 -0
- package/ui/src/color/neutrals/slate.ts +66 -0
- package/ui/src/color/types.ts +21 -0
- package/ui/src/hooks/useCopied.ts +23 -0
- package/ui/src/hooks/useEventCallback.ts +13 -0
- package/ui/src/hooks/useFloatingLayer.tsx +24 -0
- package/ui/src/hooks/useHighlight.ts +222 -0
- package/ui/src/hooks/useIsClient.ts +12 -0
- package/ui/src/hooks/useMarkdown/index.tsx +4 -0
- package/ui/src/hooks/useMarkdown/latex.test.ts +1072 -0
- package/ui/src/hooks/useMarkdown/latex.ts +566 -0
- package/ui/src/hooks/useMarkdown/useMarkdownComponents.tsx +155 -0
- package/ui/src/hooks/useMarkdown/useMarkdownContent.ts +63 -0
- package/ui/src/hooks/useMarkdown/useMarkdownRehypePlugins.ts +39 -0
- package/ui/src/hooks/useMarkdown/useMarkdownRemarkPlugins.ts +48 -0
- package/ui/src/hooks/useMarkdown/utils.test.ts +131 -0
- package/ui/src/hooks/useMarkdown/utils.ts +140 -0
- package/ui/src/hooks/useMermaid.ts +198 -0
- package/ui/src/hooks/useNativeButton.ts +158 -0
- package/ui/src/hooks/useStableValue.ts +29 -0
- package/ui/src/hooks/useStreamHighlight.ts +336 -0
- package/ui/src/hooks/useStreamMermaid.ts +131 -0
- package/ui/src/hooks/useTextOverflow.ts +43 -0
- package/ui/src/i18n/context.tsx +31 -0
- package/ui/src/i18n/demos/ConfigProvider.tsx +121 -0
- package/ui/src/i18n/demos/DynamicImport.tsx +106 -0
- package/ui/src/i18n/demos/index.tsx +132 -0
- package/ui/src/i18n/index.md +138 -0
- package/ui/src/i18n/index.ts +13 -0
- package/ui/src/i18n/resources/en/chat.ts +7 -0
- package/ui/src/i18n/resources/en/common.ts +7 -0
- package/ui/src/i18n/resources/en/editableMessage.ts +9 -0
- package/ui/src/i18n/resources/en/emojiPicker.ts +8 -0
- package/ui/src/i18n/resources/en/form.ts +6 -0
- package/ui/src/i18n/resources/en/hotkey.ts +8 -0
- package/ui/src/i18n/resources/en/image.ts +14 -0
- package/ui/src/i18n/resources/en/index.ts +9 -0
- package/ui/src/i18n/resources/en/messageModal.ts +5 -0
- package/ui/src/i18n/resources/en/sideNav.ts +17 -0
- package/ui/src/i18n/resources/index.ts +3 -0
- package/ui/src/i18n/resources/zhCn/chat.ts +7 -0
- package/ui/src/i18n/resources/zhCn/common.ts +7 -0
- package/ui/src/i18n/resources/zhCn/editableMessage.ts +9 -0
- package/ui/src/i18n/resources/zhCn/emojiPicker.ts +8 -0
- package/ui/src/i18n/resources/zhCn/form.ts +6 -0
- package/ui/src/i18n/resources/zhCn/hotkey.ts +7 -0
- package/ui/src/i18n/resources/zhCn/image.ts +14 -0
- package/ui/src/i18n/resources/zhCn/index.ts +9 -0
- package/ui/src/i18n/resources/zhCn/messageModal.ts +5 -0
- package/ui/src/i18n/resources/zhCn/sideNav.ts +17 -0
- package/ui/src/i18n/types.ts +32 -0
- package/ui/src/i18n/useTranslation.ts +20 -0
- package/ui/src/icons/Auth0/components/Avatar.tsx +23 -0
- package/ui/src/icons/Auth0/components/Mono.tsx +26 -0
- package/ui/src/icons/Auth0/index.md +34 -0
- package/ui/src/icons/Auth0/index.ts +18 -0
- package/ui/src/icons/Auth0/style.ts +2 -0
- package/ui/src/icons/Authelia/components/Avatar.tsx +23 -0
- package/ui/src/icons/Authelia/components/Color.tsx +101 -0
- package/ui/src/icons/Authelia/components/Mono.tsx +30 -0
- package/ui/src/icons/Authelia/index.md +44 -0
- package/ui/src/icons/Authelia/index.ts +20 -0
- package/ui/src/icons/Authelia/style.ts +2 -0
- package/ui/src/icons/Authentik/components/Avatar.tsx +23 -0
- package/ui/src/icons/Authentik/components/Color.tsx +29 -0
- package/ui/src/icons/Authentik/components/Mono.tsx +29 -0
- package/ui/src/icons/Authentik/index.md +44 -0
- package/ui/src/icons/Authentik/index.ts +20 -0
- package/ui/src/icons/Authentik/style.ts +2 -0
- package/ui/src/icons/Casdoor/components/Avatar.tsx +23 -0
- package/ui/src/icons/Casdoor/components/Color.tsx +62 -0
- package/ui/src/icons/Casdoor/components/Mono.tsx +28 -0
- package/ui/src/icons/Casdoor/index.md +44 -0
- package/ui/src/icons/Casdoor/index.ts +20 -0
- package/ui/src/icons/Casdoor/style.ts +2 -0
- package/ui/src/icons/Clerk/components/Avatar.tsx +23 -0
- package/ui/src/icons/Clerk/components/Color.tsx +32 -0
- package/ui/src/icons/Clerk/components/Mono.tsx +30 -0
- package/ui/src/icons/Clerk/index.md +44 -0
- package/ui/src/icons/Clerk/index.ts +20 -0
- package/ui/src/icons/Clerk/style.ts +2 -0
- package/ui/src/icons/Cloudflare/index.md +34 -0
- package/ui/src/icons/DingTalk/components/Avatar.tsx +23 -0
- package/ui/src/icons/DingTalk/components/Color.tsx +27 -0
- package/ui/src/icons/DingTalk/components/Mono.tsx +26 -0
- package/ui/src/icons/DingTalk/index.md +44 -0
- package/ui/src/icons/DingTalk/index.ts +20 -0
- package/ui/src/icons/DingTalk/style.ts +2 -0
- package/ui/src/icons/Discord/components/Avatar.tsx +23 -0
- package/ui/src/icons/Discord/components/Color.tsx +27 -0
- package/ui/src/icons/Discord/components/Mono.tsx +26 -0
- package/ui/src/icons/Discord/index.md +44 -0
- package/ui/src/icons/Discord/index.ts +20 -0
- package/ui/src/icons/Discord/style.ts +2 -0
- package/ui/src/icons/Github/index.md +34 -0
- package/ui/src/icons/GoogleChat/components/Avatar.tsx +24 -0
- package/ui/src/icons/GoogleChat/components/Color.tsx +57 -0
- package/ui/src/icons/GoogleChat/components/Mono.tsx +26 -0
- package/ui/src/icons/GoogleChat/index.md +44 -0
- package/ui/src/icons/GoogleChat/index.ts +20 -0
- package/ui/src/icons/GoogleChat/style.ts +2 -0
- package/ui/src/icons/IMessage/components/Avatar.tsx +24 -0
- package/ui/src/icons/IMessage/components/Color.tsx +27 -0
- package/ui/src/icons/IMessage/components/Inner.tsx +26 -0
- package/ui/src/icons/IMessage/components/Mono.tsx +26 -0
- package/ui/src/icons/IMessage/index.md +44 -0
- package/ui/src/icons/IMessage/index.ts +20 -0
- package/ui/src/icons/IMessage/style.ts +2 -0
- package/ui/src/icons/Lark/components/Avatar.tsx +23 -0
- package/ui/src/icons/Lark/components/Color.tsx +35 -0
- package/ui/src/icons/Lark/components/Mono.tsx +29 -0
- package/ui/src/icons/Lark/index.md +44 -0
- package/ui/src/icons/Lark/index.ts +20 -0
- package/ui/src/icons/Lark/style.ts +2 -0
- package/ui/src/icons/Line/components/Avatar.tsx +23 -0
- package/ui/src/icons/Line/components/Color.tsx +27 -0
- package/ui/src/icons/Line/components/Mono.tsx +26 -0
- package/ui/src/icons/Line/index.md +44 -0
- package/ui/src/icons/Line/index.ts +20 -0
- package/ui/src/icons/Line/style.ts +2 -0
- package/ui/src/icons/Logto/components/Avatar.tsx +23 -0
- package/ui/src/icons/Logto/components/Color.tsx +43 -0
- package/ui/src/icons/Logto/components/Mono.tsx +29 -0
- package/ui/src/icons/Logto/index.md +44 -0
- package/ui/src/icons/Logto/index.ts +20 -0
- package/ui/src/icons/Logto/style.ts +2 -0
- package/ui/src/icons/MicrosoftEntra/components/Avatar.tsx +22 -0
- package/ui/src/icons/MicrosoftEntra/components/Color.tsx +41 -0
- package/ui/src/icons/MicrosoftEntra/components/Mono.tsx +30 -0
- package/ui/src/icons/MicrosoftEntra/index.md +44 -0
- package/ui/src/icons/MicrosoftEntra/index.ts +20 -0
- package/ui/src/icons/MicrosoftEntra/style.ts +2 -0
- package/ui/src/icons/MicrosoftTeams/components/Avatar.tsx +23 -0
- package/ui/src/icons/MicrosoftTeams/components/Color.tsx +41 -0
- package/ui/src/icons/MicrosoftTeams/components/Mono.tsx +31 -0
- package/ui/src/icons/MicrosoftTeams/index.md +44 -0
- package/ui/src/icons/MicrosoftTeams/index.ts +20 -0
- package/ui/src/icons/MicrosoftTeams/style.ts +2 -0
- package/ui/src/icons/NextAuth/components/Avatar.tsx +23 -0
- package/ui/src/icons/NextAuth/components/Color.tsx +78 -0
- package/ui/src/icons/NextAuth/components/Mono.tsx +29 -0
- package/ui/src/icons/NextAuth/index.md +44 -0
- package/ui/src/icons/NextAuth/index.ts +20 -0
- package/ui/src/icons/NextAuth/style.ts +2 -0
- package/ui/src/icons/QQ/components/Avatar.tsx +23 -0
- package/ui/src/icons/QQ/components/Color.tsx +55 -0
- package/ui/src/icons/QQ/components/Mono.tsx +26 -0
- package/ui/src/icons/QQ/index.md +44 -0
- package/ui/src/icons/QQ/index.ts +20 -0
- package/ui/src/icons/QQ/style.ts +2 -0
- package/ui/src/icons/Slack/components/Avatar.tsx +23 -0
- package/ui/src/icons/Slack/components/Color.tsx +39 -0
- package/ui/src/icons/Slack/components/Mono.tsx +29 -0
- package/ui/src/icons/Slack/index.md +44 -0
- package/ui/src/icons/Slack/index.ts +20 -0
- package/ui/src/icons/Slack/style.ts +2 -0
- package/ui/src/icons/Telegram/components/Avatar.tsx +24 -0
- package/ui/src/icons/Telegram/components/Color.tsx +27 -0
- package/ui/src/icons/Telegram/components/Inner.tsx +26 -0
- package/ui/src/icons/Telegram/components/Mono.tsx +26 -0
- package/ui/src/icons/Telegram/index.md +44 -0
- package/ui/src/icons/Telegram/index.ts +20 -0
- package/ui/src/icons/Telegram/style.ts +2 -0
- package/ui/src/icons/WeChat/components/Avatar.tsx +23 -0
- package/ui/src/icons/WeChat/components/Color.tsx +27 -0
- package/ui/src/icons/WeChat/components/Mono.tsx +26 -0
- package/ui/src/icons/WeChat/index.md +44 -0
- package/ui/src/icons/WeChat/index.ts +20 -0
- package/ui/src/icons/WeChat/style.ts +2 -0
- package/ui/src/icons/WhatsApp/components/Avatar.tsx +24 -0
- package/ui/src/icons/WhatsApp/components/Color.tsx +27 -0
- package/ui/src/icons/WhatsApp/components/Mono.tsx +26 -0
- package/ui/src/icons/WhatsApp/index.md +44 -0
- package/ui/src/icons/WhatsApp/index.ts +20 -0
- package/ui/src/icons/WhatsApp/style.ts +2 -0
- package/ui/src/icons/Zitadel/components/Avatar.tsx +23 -0
- package/ui/src/icons/Zitadel/components/Color.tsx +156 -0
- package/ui/src/icons/Zitadel/components/Mono.tsx +57 -0
- package/ui/src/icons/Zitadel/index.md +44 -0
- package/ui/src/icons/Zitadel/index.ts +20 -0
- package/ui/src/icons/Zitadel/style.ts +2 -0
- package/ui/src/icons/index.ts +29 -0
- package/ui/src/icons/lucideExtra/AndroidIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/AppleIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/AppstoreIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/BotPromptIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/BrainOffIcon.tsx +43 -0
- package/ui/src/icons/lucideExtra/ChromeIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/CodepenIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/CodesandboxIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/CreateBotIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/DiscordIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/FacebookIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/FigmaIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/FramerIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/GithubIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/GitlabIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/GlobeOffIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/GooglePlayIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/GroupBotIcon.tsx +29 -0
- package/ui/src/icons/lucideExtra/GroupBotSquareIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/InstagramIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/LeftClickIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/LeftDoubleClickIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/LinkedinIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/McpIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/NotionIcon.tsx +29 -0
- package/ui/src/icons/lucideExtra/PocketIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/ProviderIcon.tsx +36 -0
- package/ui/src/icons/lucideExtra/RailSymbolIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/RedditIcon.tsx +36 -0
- package/ui/src/icons/lucideExtra/RightClickIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/RightDoubleClickIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/ShapesUploadIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/SkillsIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/SlackIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/ThinkIcon.tsx +22 -0
- package/ui/src/icons/lucideExtra/TreeDownRightIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/TreeUpDownRightIcon.tsx +15 -0
- package/ui/src/icons/lucideExtra/demos/index.tsx +24 -0
- package/ui/src/icons/lucideExtra/index.md +13 -0
- package/ui/src/icons/lucideExtra/index.ts +37 -0
- package/ui/src/index.ts +370 -0
- package/ui/src/mdx/Callout/demos/Story.tsx +25 -0
- package/ui/src/mdx/Callout/demos/index.tsx +22 -0
- package/ui/src/mdx/Callout/index.md +30 -0
- package/ui/src/mdx/Callout/index.tsx +76 -0
- package/ui/src/mdx/Callout/style.ts +33 -0
- package/ui/src/mdx/Cards/Card.tsx +143 -0
- package/ui/src/mdx/Cards/demos/Rows.tsx +35 -0
- package/ui/src/mdx/Cards/demos/index.tsx +69 -0
- package/ui/src/mdx/Cards/index.md +45 -0
- package/ui/src/mdx/Cards/index.tsx +27 -0
- package/ui/src/mdx/Cards/style.ts +13 -0
- package/ui/src/mdx/FileTree/File.tsx +25 -0
- package/ui/src/mdx/FileTree/Folder.tsx +38 -0
- package/ui/src/mdx/FileTree/demos/index.tsx +19 -0
- package/ui/src/mdx/FileTree/index.md +45 -0
- package/ui/src/mdx/FileTree/index.tsx +22 -0
- package/ui/src/mdx/FileTree/style.ts +26 -0
- package/ui/src/mdx/Mdx/demos/data.ts +12 -0
- package/ui/src/mdx/Mdx/demos/index.tsx +28 -0
- package/ui/src/mdx/Mdx/index.md +35 -0
- package/ui/src/mdx/Mdx/index.tsx +153 -0
- package/ui/src/mdx/Steps/demos/index.tsx +13 -0
- package/ui/src/mdx/Steps/index.md +25 -0
- package/ui/src/mdx/Steps/index.tsx +20 -0
- package/ui/src/mdx/Steps/style.ts +61 -0
- package/ui/src/mdx/Tabs/Tab.tsx +22 -0
- package/ui/src/mdx/Tabs/demos/index.tsx +12 -0
- package/ui/src/mdx/Tabs/index.md +36 -0
- package/ui/src/mdx/Tabs/index.tsx +52 -0
- package/ui/src/mdx/Tabs/style.ts +19 -0
- package/ui/src/mdx/index.ts +16 -0
- package/ui/src/mdx/mdxComponents/Citation/PopoverPanel.tsx +81 -0
- package/ui/src/mdx/mdxComponents/Citation/index.tsx +70 -0
- package/ui/src/mdx/mdxComponents/Citation/style.ts +34 -0
- package/ui/src/mdx/mdxComponents/CodeBlock.tsx +66 -0
- package/ui/src/mdx/mdxComponents/Image.tsx +24 -0
- package/ui/src/mdx/mdxComponents/Link.tsx +53 -0
- package/ui/src/mdx/mdxComponents/Pre/style.ts +10 -0
- package/ui/src/mdx/mdxComponents/Pre.tsx +128 -0
- package/ui/src/mdx/mdxComponents/Section.tsx +25 -0
- package/ui/src/mdx/mdxComponents/Video.tsx +25 -0
- package/ui/src/mdx/mdxComponents/index.md +43 -0
- package/ui/src/mdx/mdxComponents/index.ts +28 -0
- package/ui/src/mobile/ChatHeader/ChatHeader.tsx +88 -0
- package/ui/src/mobile/ChatHeader/ChatHeaderTitle.tsx +39 -0
- package/ui/src/mobile/ChatHeader/demos/index.tsx +31 -0
- package/ui/src/mobile/ChatHeader/index.md +15 -0
- package/ui/src/mobile/ChatHeader/index.ts +18 -0
- package/ui/src/mobile/ChatHeader/style.ts +71 -0
- package/ui/src/mobile/ChatHeader/type.ts +34 -0
- package/ui/src/mobile/ChatInputArea/ChatInputArea.tsx +138 -0
- package/ui/src/mobile/ChatInputArea/components/ChatSendButton.tsx +32 -0
- package/ui/src/mobile/ChatInputArea/demos/index.tsx +32 -0
- package/ui/src/mobile/ChatInputArea/index.md +16 -0
- package/ui/src/mobile/ChatInputArea/index.ts +18 -0
- package/ui/src/mobile/ChatInputArea/style.ts +29 -0
- package/ui/src/mobile/ChatInputArea/type.ts +22 -0
- package/ui/src/mobile/SafeArea/SafeArea.tsx +15 -0
- package/ui/src/mobile/SafeArea/demos/index.tsx +13 -0
- package/ui/src/mobile/SafeArea/index.md +15 -0
- package/ui/src/mobile/SafeArea/index.tsx +2 -0
- package/ui/src/mobile/SafeArea/style.ts +17 -0
- package/ui/src/mobile/SafeArea/type.ts +5 -0
- package/ui/src/mobile/TabBar/TabBar.tsx +64 -0
- package/ui/src/mobile/TabBar/demos/index.tsx +25 -0
- package/ui/src/mobile/TabBar/index.md +15 -0
- package/ui/src/mobile/TabBar/index.ts +2 -0
- package/ui/src/mobile/TabBar/style.ts +49 -0
- package/ui/src/mobile/TabBar/type.ts +19 -0
- package/ui/src/mobile/index.ts +14 -0
- package/ui/src/storybook/StoryBook/demos/index.tsx +29 -0
- package/ui/src/storybook/StoryBook/index.md +16 -0
- package/ui/src/storybook/StoryBook/index.tsx +51 -0
- package/ui/src/storybook/StoryBook/style.ts +68 -0
- package/ui/src/storybook/index.ts +6 -0
- package/ui/src/styles/animations.ts +10 -0
- package/ui/src/styles/classNames.ts +4 -0
- package/ui/src/styles/customTheme.ts +70 -0
- package/ui/src/styles/index.ts +5 -0
- package/ui/src/styles/theme/algorithms/darkAlgorithm.ts +43 -0
- package/ui/src/styles/theme/algorithms/lightAlgorithm.ts +40 -0
- package/ui/src/styles/theme/antdTheme.ts +62 -0
- package/ui/src/styles/theme/customStylish.ts +159 -0
- package/ui/src/styles/theme/customStylishStatic.ts +191 -0
- package/ui/src/styles/theme/customToken.ts +89 -0
- package/ui/src/styles/theme/generateColorPalette.ts +59 -0
- package/ui/src/styles/theme/token/base.ts +59 -0
- package/ui/src/styles/theme/token/dark.ts +60 -0
- package/ui/src/styles/theme/token/light.ts +60 -0
- package/ui/src/types/citation.ts +6 -0
- package/ui/src/types/customStylish.ts +20 -0
- package/ui/src/types/customToken.ts +67 -0
- package/ui/src/types/global.d.ts +15 -0
- package/ui/src/types/index.ts +21 -0
- package/ui/src/types/trigger.ts +4 -0
- package/ui/src/utils/blobToPng.ts +56 -0
- package/ui/src/utils/composeEventHandlers.ts +29 -0
- package/ui/src/utils/copyToClipboard.test.ts +66 -0
- package/ui/src/utils/copyToClipboard.ts +13 -0
- package/ui/src/utils/destroyOnInvalidActiveTriggerElement.ts +137 -0
- package/ui/src/utils/devSingleton.ts +85 -0
- package/ui/src/utils/dom.ts +33 -0
- package/ui/src/utils/downloadBlob.ts +18 -0
- package/ui/src/utils/formatTime.test.ts +53 -0
- package/ui/src/utils/formatTime.ts +14 -0
- package/ui/src/utils/genCdnUrl.test.ts +100 -0
- package/ui/src/utils/genCdnUrl.ts +25 -0
- package/ui/src/utils/getNow.ts +3 -0
- package/ui/src/utils/isDeepEqual.test.ts +55 -0
- package/ui/src/utils/isDeepEqual.ts +33 -0
- package/ui/src/utils/parseTrigger.ts +20 -0
- package/ui/src/utils/placement.ts +124 -0
- package/ui/src/utils/platform.ts +4 -0
- package/ui/src/utils/safeParseJSON.test.ts +53 -0
- package/ui/src/utils/safeParseJSON.ts +12 -0
- package/ui/src/utils/safeReadableColor.ts +11 -0
- package/ui/src/utils/smoothCorners.ts +140 -0
- package/webfont-geist/css/index-full.css +175 -0
- package/webfont-geist/css/index.css +38 -0
- package/webfont-geist-mono/css/index-full.css +44 -0
- package/webfont-geist-mono/css/index.css +44 -0
|
@@ -0,0 +1,2406 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Base structure for a single resource item in the marketplace.
|
|
5
|
+
* This interface defines the common properties shared by all marketplace items,
|
|
6
|
+
* including plugins, agents, and other resources.
|
|
7
|
+
*/
|
|
8
|
+
interface MarketItemBase {
|
|
9
|
+
/** Author or organization name */
|
|
10
|
+
author?: string;
|
|
11
|
+
/** Category name used for classification */
|
|
12
|
+
category?: string;
|
|
13
|
+
/** Optional: Compatibility information for different platforms or versions */
|
|
14
|
+
compatibility?: Record<string, any>;
|
|
15
|
+
/** Resource creation date in the marketplace (ISO 8601 format) */
|
|
16
|
+
createdAt: string;
|
|
17
|
+
/** Localized short description displayed in the marketplace listing */
|
|
18
|
+
description: string;
|
|
19
|
+
/** URL to the resource's homepage or documentation */
|
|
20
|
+
homepage?: string;
|
|
21
|
+
/** Icon URL or Emoji character */
|
|
22
|
+
icon?: string;
|
|
23
|
+
/** Globally unique identifier, typically contains author/namespace and name */
|
|
24
|
+
identifier: string;
|
|
25
|
+
/** URL pointing to the detailed manifest file for this resource */
|
|
26
|
+
manifestUrl: string;
|
|
27
|
+
/** Localized display name shown in the marketplace listing */
|
|
28
|
+
name: string;
|
|
29
|
+
/** List of localized tags for filtering and categorization */
|
|
30
|
+
tags?: string[];
|
|
31
|
+
/** Resource's last update date in the marketplace (ISO 8601 format) */
|
|
32
|
+
updatedAt: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Category list request query parameters
|
|
36
|
+
*
|
|
37
|
+
* Query parameters for retrieving category statistics with optional filtering.
|
|
38
|
+
*/
|
|
39
|
+
interface CategoryListQuery {
|
|
40
|
+
/** Optional locale for localized search, defaults to 'en-US' */
|
|
41
|
+
locale?: string;
|
|
42
|
+
/** Optional search query to filter plugins before counting categories */
|
|
43
|
+
q?: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Single category item with plugin count
|
|
47
|
+
*
|
|
48
|
+
* Represents a category and the number of plugins in that category.
|
|
49
|
+
*/
|
|
50
|
+
interface CategoryItem {
|
|
51
|
+
/** Category name */
|
|
52
|
+
category: string;
|
|
53
|
+
/** Number of plugins in this category */
|
|
54
|
+
count: number;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Category list response type
|
|
58
|
+
*
|
|
59
|
+
* Array of categories with their respective plugin counts.
|
|
60
|
+
*/
|
|
61
|
+
type CategoryListResponse = CategoryItem[];
|
|
62
|
+
/**
|
|
63
|
+
* Single entry in a marketplace sitemap (identifier + last modified).
|
|
64
|
+
*/
|
|
65
|
+
interface SitemapItem {
|
|
66
|
+
/** Resource identifier (slug) */
|
|
67
|
+
identifier: string;
|
|
68
|
+
/** Last modification time (ISO 8601) */
|
|
69
|
+
lastModified: string;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Paginated sitemap response for agents, plugins, or skills.
|
|
73
|
+
*/
|
|
74
|
+
interface SitemapResponse {
|
|
75
|
+
/** Current page number (1-based) */
|
|
76
|
+
currentPage: number;
|
|
77
|
+
/** Items on this page */
|
|
78
|
+
items: SitemapItem[];
|
|
79
|
+
/** Page size used for this response */
|
|
80
|
+
pageSize: number;
|
|
81
|
+
/** Total number of published items */
|
|
82
|
+
totalCount: number;
|
|
83
|
+
/** Total number of pages */
|
|
84
|
+
totalPages: number;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Agent event tracking types
|
|
89
|
+
*
|
|
90
|
+
* These types describe the payload used when recording user agent events such as
|
|
91
|
+
* adding, chatting with, or clicking an agent card.
|
|
92
|
+
*/
|
|
93
|
+
type AgentEventType = 'add' | 'chat' | 'click';
|
|
94
|
+
/** Payload for recording an agent event */
|
|
95
|
+
interface AgentEventRequest {
|
|
96
|
+
/** Event name */
|
|
97
|
+
event: AgentEventType;
|
|
98
|
+
/** Agent identifier */
|
|
99
|
+
identifier: string;
|
|
100
|
+
/** Optional event source */
|
|
101
|
+
source?: string;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Agent resource item definition that extends the base marketplace structure.
|
|
106
|
+
*
|
|
107
|
+
* Agents represent AI personalities or specialized assistants that can be installed
|
|
108
|
+
* from the marketplace. They include the base properties of marketplace items along
|
|
109
|
+
* with any agent-specific properties.
|
|
110
|
+
*/
|
|
111
|
+
interface AgentItem extends MarketItemBase {
|
|
112
|
+
/** Optional agent capabilities and features */
|
|
113
|
+
capabilities?: {
|
|
114
|
+
/** Whether the agent supports memory/history */
|
|
115
|
+
memory?: boolean;
|
|
116
|
+
/** Whether the agent supports additional tools */
|
|
117
|
+
tools?: boolean;
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Query parameters for listing agents in the marketplace.
|
|
122
|
+
* Mirrors SkillListQuery and PluginListQuery in structure for consistency.
|
|
123
|
+
*
|
|
124
|
+
* Named AgentMarketListQuery (not AgentListQuery) to avoid collision with the
|
|
125
|
+
* SDK's own AgentListQuery which contains additional SDK-specific fields.
|
|
126
|
+
*/
|
|
127
|
+
interface AgentMarketListQuery {
|
|
128
|
+
/** Filter by category */
|
|
129
|
+
category?: string;
|
|
130
|
+
/** Filter by agents with skills/plugins attached */
|
|
131
|
+
haveSkills?: boolean;
|
|
132
|
+
/** Filter by official status */
|
|
133
|
+
isOfficial?: 'false' | 'true';
|
|
134
|
+
/** Locale for localized content */
|
|
135
|
+
locale?: string;
|
|
136
|
+
/** Filter by namespace */
|
|
137
|
+
namespace?: string;
|
|
138
|
+
/** Sort direction */
|
|
139
|
+
order?: 'asc' | 'desc';
|
|
140
|
+
/** Filter by owner ID */
|
|
141
|
+
ownerId?: number;
|
|
142
|
+
/** Page number (1-based) */
|
|
143
|
+
page?: number;
|
|
144
|
+
/** Number of items per page */
|
|
145
|
+
pageSize?: number;
|
|
146
|
+
/** Search query string */
|
|
147
|
+
q?: string;
|
|
148
|
+
/** Sort field */
|
|
149
|
+
sort?: 'createdAt' | 'knowledgeCount' | 'mostUsage' | 'name' | 'pluginCount' | 'recommended' | 'relevance' | 'tokenUsage' | 'updatedAt';
|
|
150
|
+
/** Publication status filter */
|
|
151
|
+
status?: 'all' | 'archived' | 'deprecated' | 'published' | 'unpublished';
|
|
152
|
+
/** Visibility filter */
|
|
153
|
+
visibility?: 'all' | 'internal' | 'private' | 'public';
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Top Plugin Interface
|
|
158
|
+
* Unified interface for top plugins data
|
|
159
|
+
*/
|
|
160
|
+
interface TopPlugin {
|
|
161
|
+
avatar: string;
|
|
162
|
+
/** Call count (when sortBy is 'calls') */
|
|
163
|
+
callCount?: number;
|
|
164
|
+
category: string;
|
|
165
|
+
identifier: string;
|
|
166
|
+
/** Install count (when sortBy is 'installs') */
|
|
167
|
+
installCount?: number;
|
|
168
|
+
name: string;
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* Sort options for top plugins
|
|
172
|
+
*/
|
|
173
|
+
type PluginSortBy = 'installs' | 'calls';
|
|
174
|
+
/**
|
|
175
|
+
* Top plugins query parameters
|
|
176
|
+
*/
|
|
177
|
+
interface TopPluginsQuery {
|
|
178
|
+
/** Maximum number of plugins to return */
|
|
179
|
+
limit?: number;
|
|
180
|
+
/** Date range as [startDate, endDate] */
|
|
181
|
+
range: [string, string];
|
|
182
|
+
/** Sort criteria: 'installs' or 'calls' */
|
|
183
|
+
sortBy?: PluginSortBy;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Install Failure Analysis Interface
|
|
187
|
+
* Defines the structure for plugin install failure analysis data
|
|
188
|
+
*/
|
|
189
|
+
interface InstallFailureAnalysis {
|
|
190
|
+
/** Number of failed installation attempts */
|
|
191
|
+
failureCount: number;
|
|
192
|
+
/** Failure rate as a decimal (e.g., 0.2736 for 27.36%) */
|
|
193
|
+
failureRate: number;
|
|
194
|
+
/** Most common error message for this plugin */
|
|
195
|
+
mostCommonError: string;
|
|
196
|
+
/** Plugin identifier */
|
|
197
|
+
pluginIdentifier: string;
|
|
198
|
+
/** Plugin display name */
|
|
199
|
+
pluginName: string;
|
|
200
|
+
/** Total number of installation attempts (successful + failed) */
|
|
201
|
+
totalInstallAttempts: number;
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* Install failure analysis query parameters
|
|
205
|
+
*/
|
|
206
|
+
interface InstallFailureAnalysisQuery {
|
|
207
|
+
/** Maximum number of plugins to return */
|
|
208
|
+
limit?: number;
|
|
209
|
+
/** Date range as [startDate, endDate] */
|
|
210
|
+
range: [string, string];
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Standard Credential Keys
|
|
215
|
+
*
|
|
216
|
+
* Pre-defined credential key catalog for common providers.
|
|
217
|
+
* Skill authors should prefer these standard keys over custom ones.
|
|
218
|
+
*
|
|
219
|
+
* Rules:
|
|
220
|
+
* 1. `key` represents a capability, not a final env variable name.
|
|
221
|
+
* 2. Same provider with different auth methods should have different keys.
|
|
222
|
+
* 3. Custom keys are allowed but standard keys should be preferred.
|
|
223
|
+
*/
|
|
224
|
+
declare const StandardCredKeys: {
|
|
225
|
+
readonly ANTHROPIC: "anthropic";
|
|
226
|
+
readonly COHERE: "cohere";
|
|
227
|
+
readonly DEEPSEEK: "deepseek";
|
|
228
|
+
readonly GOOGLE_AI: "google-ai";
|
|
229
|
+
readonly GROQ: "groq";
|
|
230
|
+
readonly HUGGINGFACE: "huggingface";
|
|
231
|
+
readonly MISTRAL: "mistral";
|
|
232
|
+
readonly OPENAI: "openai";
|
|
233
|
+
readonly PERPLEXITY: "perplexity";
|
|
234
|
+
readonly REPLICATE: "replicate";
|
|
235
|
+
readonly AWS: "aws";
|
|
236
|
+
readonly AZURE: "azure";
|
|
237
|
+
readonly CLOUDFLARE: "cloudflare";
|
|
238
|
+
readonly FIREBASE_SA: "firebase-sa";
|
|
239
|
+
readonly GCP_SA: "gcp-sa";
|
|
240
|
+
readonly SUPABASE: "supabase";
|
|
241
|
+
readonly VERCEL: "vercel";
|
|
242
|
+
readonly BITBUCKET_PAT: "bitbucket-pat";
|
|
243
|
+
readonly GITHUB_OAUTH: "github-oauth";
|
|
244
|
+
readonly GITHUB_PAT: "github-pat";
|
|
245
|
+
readonly GITLAB_PAT: "gitlab-pat";
|
|
246
|
+
readonly DISCORD_BOT: "discord-bot";
|
|
247
|
+
readonly DISCORD_WEBHOOK: "discord-webhook";
|
|
248
|
+
readonly SENDGRID: "sendgrid";
|
|
249
|
+
readonly SLACK_OAUTH: "slack-oauth";
|
|
250
|
+
readonly SLACK_WEBHOOK: "slack-webhook";
|
|
251
|
+
readonly TWILIO: "twilio";
|
|
252
|
+
readonly AIRTABLE: "airtable";
|
|
253
|
+
readonly MONGODB: "mongodb";
|
|
254
|
+
readonly PLANETSCALE: "planetscale";
|
|
255
|
+
readonly REDIS: "redis";
|
|
256
|
+
readonly STRIPE: "stripe";
|
|
257
|
+
readonly JIRA_PAT: "jira-pat";
|
|
258
|
+
readonly LINEAR_OAUTH: "linear-oauth";
|
|
259
|
+
readonly NOTION_OAUTH: "notion-oauth";
|
|
260
|
+
readonly NOTION_PAT: "notion-pat";
|
|
261
|
+
};
|
|
262
|
+
type StandardCredKey = (typeof StandardCredKeys)[keyof typeof StandardCredKeys];
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Creds Domain Types
|
|
266
|
+
*
|
|
267
|
+
* Shared types for the Credential system used by Market API and SDK.
|
|
268
|
+
*/
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* Credential type taxonomy:
|
|
272
|
+
* - `kv-env`: Key-value pairs injected as environment variables
|
|
273
|
+
* - `kv-header`: Key-value pairs injected as HTTP headers (not supported in sandbox)
|
|
274
|
+
* - `oauth`: OAuth connection reference (reuses existing Connect system)
|
|
275
|
+
* - `file`: Encrypted file stored in object storage
|
|
276
|
+
*/
|
|
277
|
+
type CredType = 'file' | 'kv-env' | 'kv-header' | 'oauth';
|
|
278
|
+
/**
|
|
279
|
+
* Config for `kv-env` type credentials
|
|
280
|
+
*/
|
|
281
|
+
interface KVEnvCredConfig {
|
|
282
|
+
/**
|
|
283
|
+
* Optional mapping from payload keys to environment variable names.
|
|
284
|
+
* If not specified, payload keys are used as-is (uppercased).
|
|
285
|
+
* Example: { "OPENAI_API_KEY": "MY_OPENAI_KEY" }
|
|
286
|
+
*/
|
|
287
|
+
envMapping?: Record<string, string>;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* Config for `kv-header` type credentials
|
|
291
|
+
*/
|
|
292
|
+
interface KVHeaderCredConfig {
|
|
293
|
+
/**
|
|
294
|
+
* Mapping from payload keys to HTTP header names.
|
|
295
|
+
* Example: { "API_KEY": "Authorization" }
|
|
296
|
+
*/
|
|
297
|
+
headerMapping?: Record<string, string>;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* Config for `oauth` type credentials
|
|
301
|
+
*/
|
|
302
|
+
interface OAuthCredConfig {
|
|
303
|
+
/**
|
|
304
|
+
* OAuth provider ID (e.g., 'github', 'linear', 'google')
|
|
305
|
+
* Must match a provider registered in the Connect system.
|
|
306
|
+
*/
|
|
307
|
+
providerId: string;
|
|
308
|
+
/**
|
|
309
|
+
* Required OAuth scopes for this credential.
|
|
310
|
+
*/
|
|
311
|
+
scopes?: string[];
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* Config for `file` type credentials
|
|
315
|
+
*/
|
|
316
|
+
interface FileCredConfig {
|
|
317
|
+
/**
|
|
318
|
+
* Allowed MIME types for the file.
|
|
319
|
+
* Example: ['application/json', 'application/x-pem-file']
|
|
320
|
+
*/
|
|
321
|
+
allowedMimeTypes?: string[];
|
|
322
|
+
/**
|
|
323
|
+
* Environment variable name to inject the file path.
|
|
324
|
+
* Example: "GOOGLE_APPLICATION_CREDENTIALS"
|
|
325
|
+
*/
|
|
326
|
+
filePathEnvName?: string;
|
|
327
|
+
/**
|
|
328
|
+
* Maximum file size in bytes.
|
|
329
|
+
*/
|
|
330
|
+
maxSizeBytes?: number;
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* Union type for credential configs based on type
|
|
334
|
+
*/
|
|
335
|
+
type CredConfig = FileCredConfig | KVEnvCredConfig | KVHeaderCredConfig | OAuthCredConfig;
|
|
336
|
+
/**
|
|
337
|
+
* Skill's declaration of required credentials.
|
|
338
|
+
* Stored in `skills.creds` JSONB column.
|
|
339
|
+
*/
|
|
340
|
+
interface SkillCredDeclaration {
|
|
341
|
+
/**
|
|
342
|
+
* Type-specific configuration
|
|
343
|
+
*/
|
|
344
|
+
config?: CredConfig;
|
|
345
|
+
/**
|
|
346
|
+
* Human-readable description of what this credential is used for
|
|
347
|
+
*/
|
|
348
|
+
description?: string;
|
|
349
|
+
/**
|
|
350
|
+
* Unique key identifying this credential requirement.
|
|
351
|
+
* Should use StandardCredKeys when possible.
|
|
352
|
+
* Examples: 'github-pat', 'openai', 'gcp-sa'
|
|
353
|
+
*/
|
|
354
|
+
key: string;
|
|
355
|
+
/**
|
|
356
|
+
* Display name for the credential
|
|
357
|
+
*/
|
|
358
|
+
name: string;
|
|
359
|
+
/**
|
|
360
|
+
* Whether this credential is required for the skill to function
|
|
361
|
+
*/
|
|
362
|
+
required: boolean;
|
|
363
|
+
/**
|
|
364
|
+
* Credential type
|
|
365
|
+
*/
|
|
366
|
+
type: CredType;
|
|
367
|
+
}
|
|
368
|
+
/**
|
|
369
|
+
* User credential summary (masked, safe to return to frontend)
|
|
370
|
+
*/
|
|
371
|
+
interface UserCredSummary {
|
|
372
|
+
createdAt: string;
|
|
373
|
+
description?: string;
|
|
374
|
+
/**
|
|
375
|
+
* For file type: original file name
|
|
376
|
+
*/
|
|
377
|
+
fileName?: string;
|
|
378
|
+
/**
|
|
379
|
+
* For file type: file size in bytes
|
|
380
|
+
*/
|
|
381
|
+
fileSize?: number;
|
|
382
|
+
id: number;
|
|
383
|
+
key: string;
|
|
384
|
+
lastUsedAt?: string;
|
|
385
|
+
/**
|
|
386
|
+
* Additional non-sensitive metadata
|
|
387
|
+
*/
|
|
388
|
+
manifest?: Record<string, unknown>;
|
|
389
|
+
/**
|
|
390
|
+
* Masked preview of the credential value.
|
|
391
|
+
* Examples: "sk-****xxxx", "Connected to @octocat", "service-account.json"
|
|
392
|
+
*/
|
|
393
|
+
maskedPreview?: string;
|
|
394
|
+
name: string;
|
|
395
|
+
/**
|
|
396
|
+
* For oauth type: provider avatar URL
|
|
397
|
+
*/
|
|
398
|
+
oauthAvatar?: string;
|
|
399
|
+
/**
|
|
400
|
+
* For oauth type: provider ID
|
|
401
|
+
*/
|
|
402
|
+
oauthProvider?: string;
|
|
403
|
+
/**
|
|
404
|
+
* For oauth type: provider username
|
|
405
|
+
*/
|
|
406
|
+
oauthUsername?: string;
|
|
407
|
+
type: CredType;
|
|
408
|
+
updatedAt: string;
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* Status of a skill's credential requirement for a specific user
|
|
412
|
+
*/
|
|
413
|
+
interface SkillCredStatus {
|
|
414
|
+
/**
|
|
415
|
+
* The bound credential if satisfied
|
|
416
|
+
*/
|
|
417
|
+
boundCred?: UserCredSummary;
|
|
418
|
+
description?: string;
|
|
419
|
+
key: string;
|
|
420
|
+
name: string;
|
|
421
|
+
required: boolean;
|
|
422
|
+
/**
|
|
423
|
+
* Whether the user has provided this credential
|
|
424
|
+
*/
|
|
425
|
+
satisfied: boolean;
|
|
426
|
+
type: CredType;
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* Decrypted payload structure for kv-env and kv-header types.
|
|
430
|
+
* Supports multiple key-value pairs in a single credential.
|
|
431
|
+
*/
|
|
432
|
+
interface KVPayload {
|
|
433
|
+
/**
|
|
434
|
+
* Key-value pairs to inject.
|
|
435
|
+
* Example: { "OPENAI_API_KEY": "sk-xxx", "OPENAI_ORG_ID": "org-xxx" }
|
|
436
|
+
*/
|
|
437
|
+
values: Record<string, string>;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* Request payload for explicit credential injection (by key list)
|
|
441
|
+
*/
|
|
442
|
+
interface InjectCredsRequest {
|
|
443
|
+
/**
|
|
444
|
+
* List of credential keys to inject.
|
|
445
|
+
* Each key should match a user's credential key.
|
|
446
|
+
*/
|
|
447
|
+
keys: string[];
|
|
448
|
+
/**
|
|
449
|
+
* Whether this is a sandbox environment (default: true).
|
|
450
|
+
* When true, kv-header type credentials will be skipped.
|
|
451
|
+
*/
|
|
452
|
+
sandbox?: boolean;
|
|
453
|
+
/**
|
|
454
|
+
* Topic/conversation ID for session isolation.
|
|
455
|
+
* Required to identify the sandbox session.
|
|
456
|
+
*/
|
|
457
|
+
topicId: string;
|
|
458
|
+
/**
|
|
459
|
+
* User ID for session isolation.
|
|
460
|
+
* Required to identify the sandbox session.
|
|
461
|
+
*/
|
|
462
|
+
userId: string;
|
|
463
|
+
}
|
|
464
|
+
/**
|
|
465
|
+
* File credential info in injection response
|
|
466
|
+
*/
|
|
467
|
+
interface InjectedFileInfo {
|
|
468
|
+
/**
|
|
469
|
+
* File content URL (S3 URL, needs to be fetched)
|
|
470
|
+
*/
|
|
471
|
+
content: string;
|
|
472
|
+
/**
|
|
473
|
+
* Environment variable name for the file path (if specified)
|
|
474
|
+
*/
|
|
475
|
+
envName?: string;
|
|
476
|
+
/**
|
|
477
|
+
* Original file name
|
|
478
|
+
*/
|
|
479
|
+
fileName: string;
|
|
480
|
+
/**
|
|
481
|
+
* Credential key
|
|
482
|
+
*/
|
|
483
|
+
key: string;
|
|
484
|
+
/**
|
|
485
|
+
* File MIME type
|
|
486
|
+
*/
|
|
487
|
+
mimeType: string;
|
|
488
|
+
}
|
|
489
|
+
/**
|
|
490
|
+
* Response payload for credential injection
|
|
491
|
+
*/
|
|
492
|
+
interface InjectCredsResponse {
|
|
493
|
+
credentials: {
|
|
494
|
+
/**
|
|
495
|
+
* Environment variables to inject
|
|
496
|
+
*/
|
|
497
|
+
env: Record<string, string>;
|
|
498
|
+
/**
|
|
499
|
+
* Files to write (for sandbox environments)
|
|
500
|
+
*/
|
|
501
|
+
files: InjectedFileInfo[];
|
|
502
|
+
/**
|
|
503
|
+
* HTTP headers to inject (not supported in sandbox)
|
|
504
|
+
*/
|
|
505
|
+
headers: Record<string, string>;
|
|
506
|
+
};
|
|
507
|
+
/**
|
|
508
|
+
* Keys that were requested but not found
|
|
509
|
+
*/
|
|
510
|
+
notFound: string[];
|
|
511
|
+
/**
|
|
512
|
+
* Whether all requested keys were found and injected
|
|
513
|
+
*/
|
|
514
|
+
success: boolean;
|
|
515
|
+
/**
|
|
516
|
+
* Credentials that cannot be injected in sandbox environment (kv-header type)
|
|
517
|
+
*/
|
|
518
|
+
unsupportedInSandbox: string[];
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
* Request payload for skill-based credential injection
|
|
522
|
+
*/
|
|
523
|
+
interface InjectCredsForSkillRequest {
|
|
524
|
+
/**
|
|
525
|
+
* Whether this is a sandbox environment (default: true).
|
|
526
|
+
* When true, kv-header type credentials will be skipped.
|
|
527
|
+
*/
|
|
528
|
+
sandbox?: boolean;
|
|
529
|
+
/**
|
|
530
|
+
* Skill identifier to inject credentials for
|
|
531
|
+
*/
|
|
532
|
+
skillIdentifier: string;
|
|
533
|
+
/**
|
|
534
|
+
* Topic/conversation ID for session isolation.
|
|
535
|
+
* Required to identify the sandbox session.
|
|
536
|
+
*/
|
|
537
|
+
topicId: string;
|
|
538
|
+
/**
|
|
539
|
+
* User ID for session isolation.
|
|
540
|
+
* Required to identify the sandbox session.
|
|
541
|
+
*/
|
|
542
|
+
userId: string;
|
|
543
|
+
}
|
|
544
|
+
/**
|
|
545
|
+
* Response payload for skill-based credential injection
|
|
546
|
+
*/
|
|
547
|
+
interface InjectCredsForSkillResponse {
|
|
548
|
+
credentials: {
|
|
549
|
+
/**
|
|
550
|
+
* Environment variables to inject
|
|
551
|
+
*/
|
|
552
|
+
env: Record<string, string>;
|
|
553
|
+
/**
|
|
554
|
+
* Files to write (for sandbox environments)
|
|
555
|
+
*/
|
|
556
|
+
files: InjectedFileInfo[];
|
|
557
|
+
/**
|
|
558
|
+
* HTTP headers to inject (not supported in sandbox)
|
|
559
|
+
*/
|
|
560
|
+
headers: Record<string, string>;
|
|
561
|
+
};
|
|
562
|
+
/**
|
|
563
|
+
* Required credentials that are missing
|
|
564
|
+
*/
|
|
565
|
+
missing: Array<{
|
|
566
|
+
key: string;
|
|
567
|
+
name: string;
|
|
568
|
+
type: CredType;
|
|
569
|
+
}>;
|
|
570
|
+
/**
|
|
571
|
+
* Whether all required credentials are satisfied
|
|
572
|
+
*/
|
|
573
|
+
success: boolean;
|
|
574
|
+
/**
|
|
575
|
+
* Credentials that cannot be injected in sandbox environment (kv-header type)
|
|
576
|
+
*/
|
|
577
|
+
unsupportedInSandbox: string[];
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* MCP (Model Context Protocol) Type Definitions
|
|
582
|
+
*
|
|
583
|
+
* This file contains type definitions for the MCP protocol used in cloud gateway functionality.
|
|
584
|
+
*/
|
|
585
|
+
/**
|
|
586
|
+
* Content item in MCP tool response
|
|
587
|
+
*/
|
|
588
|
+
interface McpToolContent {
|
|
589
|
+
/** Additional data for other types */
|
|
590
|
+
data?: string;
|
|
591
|
+
/** Error message for error type */
|
|
592
|
+
message?: string;
|
|
593
|
+
/** MIME type of the content */
|
|
594
|
+
mimeType?: string;
|
|
595
|
+
/** Text content for text/error types */
|
|
596
|
+
text?: string;
|
|
597
|
+
/** Content type */
|
|
598
|
+
type: 'text' | 'error' | 'image' | 'resource';
|
|
599
|
+
}
|
|
600
|
+
/**
|
|
601
|
+
* Cloud Gateway Request Interface
|
|
602
|
+
*/
|
|
603
|
+
interface CloudGatewayRequest {
|
|
604
|
+
/** Tool parameters payload */
|
|
605
|
+
apiParams: Record<string, any>;
|
|
606
|
+
/** Plugin unique identifier */
|
|
607
|
+
identifier: string;
|
|
608
|
+
/** Tool name to invoke */
|
|
609
|
+
toolName: string;
|
|
610
|
+
}
|
|
611
|
+
/**
|
|
612
|
+
* Cloud Gateway Response Interface
|
|
613
|
+
*/
|
|
614
|
+
interface CloudGatewayResponse {
|
|
615
|
+
/** Array of content items returned by the tool */
|
|
616
|
+
content: McpToolContent[];
|
|
617
|
+
/** Whether this result represents an error */
|
|
618
|
+
isError?: boolean;
|
|
619
|
+
}
|
|
620
|
+
/**
|
|
621
|
+
* Error response for cloud gateway
|
|
622
|
+
*/
|
|
623
|
+
interface CloudGatewayErrorResponse {
|
|
624
|
+
/** Error code (optional) */
|
|
625
|
+
code?: string;
|
|
626
|
+
/** Additional error details */
|
|
627
|
+
details?: any;
|
|
628
|
+
/** Error message */
|
|
629
|
+
message: string;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* Organization Domain Types
|
|
634
|
+
*
|
|
635
|
+
* Shared types for the organization-management endpoints under
|
|
636
|
+
* `/v1/organizations/*`. These endpoints are trusted-client only (Hubstr Cloud
|
|
637
|
+
* mirrors workspace membership onto Market organizations), so the request /
|
|
638
|
+
* response shapes here double as the typed contract for the Cloud caller.
|
|
639
|
+
*/
|
|
640
|
+
type OrganizationMemberRole = 'admin' | 'member';
|
|
641
|
+
/** The raw organization record returned by the management endpoints. */
|
|
642
|
+
interface OrganizationItem {
|
|
643
|
+
accountId: number;
|
|
644
|
+
/** Soft-disable marker (ISO string). null = active, non-null = archived. */
|
|
645
|
+
archivedAt: string | null;
|
|
646
|
+
avatarUrl: string | null;
|
|
647
|
+
bannerUrl: string | null;
|
|
648
|
+
clerkId: string | null;
|
|
649
|
+
createdAt: string;
|
|
650
|
+
description: string | null;
|
|
651
|
+
displayName: string | null;
|
|
652
|
+
email: string | null;
|
|
653
|
+
followerCount: number;
|
|
654
|
+
followingCount: number;
|
|
655
|
+
namespace: string;
|
|
656
|
+
updatedAt: string | null;
|
|
657
|
+
websiteUrl: string | null;
|
|
658
|
+
}
|
|
659
|
+
/** An org the calling user belongs to, with their membership role. */
|
|
660
|
+
interface MyOrganizationItem extends OrganizationItem {
|
|
661
|
+
role: OrganizationMemberRole;
|
|
662
|
+
}
|
|
663
|
+
interface CreateOrganizationRequest {
|
|
664
|
+
avatarUrl?: string;
|
|
665
|
+
bannerUrl?: null | string;
|
|
666
|
+
/**
|
|
667
|
+
* Idempotency key (Cloud convention: `workspace:<workspaceId>`). Optional when
|
|
668
|
+
* `workspaceId` is provided — the server derives it from the workspaceId.
|
|
669
|
+
*/
|
|
670
|
+
clerkId?: string;
|
|
671
|
+
description?: string;
|
|
672
|
+
displayName?: string;
|
|
673
|
+
email?: string;
|
|
674
|
+
initialMembers?: Array<{
|
|
675
|
+
role?: OrganizationMemberRole;
|
|
676
|
+
userAccountId: number;
|
|
677
|
+
}>;
|
|
678
|
+
namespace: string;
|
|
679
|
+
websiteUrl?: string;
|
|
680
|
+
/**
|
|
681
|
+
* Cloud workspace id. Preferred over `clerkId`: the server derives
|
|
682
|
+
* `clerkId = workspace:<workspaceId>`. Exactly one of `clerkId`/`workspaceId`
|
|
683
|
+
* must be provided.
|
|
684
|
+
*/
|
|
685
|
+
workspaceId?: string;
|
|
686
|
+
}
|
|
687
|
+
interface CreateOrganizationResponse {
|
|
688
|
+
/** False when an organization with the same clerkId already existed. */
|
|
689
|
+
created: boolean;
|
|
690
|
+
organization: OrganizationItem;
|
|
691
|
+
}
|
|
692
|
+
interface UpdateOrganizationRequest {
|
|
693
|
+
avatarUrl?: string;
|
|
694
|
+
bannerUrl?: null | string;
|
|
695
|
+
description?: string;
|
|
696
|
+
displayName?: string;
|
|
697
|
+
email?: string;
|
|
698
|
+
websiteUrl?: string;
|
|
699
|
+
}
|
|
700
|
+
/** A hydrated organization member row (as returned by the list endpoint). */
|
|
701
|
+
interface OrganizationMemberItem {
|
|
702
|
+
accountId: number;
|
|
703
|
+
avatarUrl: string | null;
|
|
704
|
+
createdAt: string;
|
|
705
|
+
displayName: string | null;
|
|
706
|
+
namespace: string;
|
|
707
|
+
role: OrganizationMemberRole;
|
|
708
|
+
userName: string | null;
|
|
709
|
+
}
|
|
710
|
+
interface AddMemberRequest {
|
|
711
|
+
role?: OrganizationMemberRole;
|
|
712
|
+
userAccountId: number;
|
|
713
|
+
}
|
|
714
|
+
interface AddMemberResponse {
|
|
715
|
+
added: boolean;
|
|
716
|
+
role: OrganizationMemberRole;
|
|
717
|
+
}
|
|
718
|
+
interface UpdateMemberRoleRequest {
|
|
719
|
+
role: OrganizationMemberRole;
|
|
720
|
+
}
|
|
721
|
+
interface UpdateMemberRoleResponse {
|
|
722
|
+
role: OrganizationMemberRole;
|
|
723
|
+
updated: boolean;
|
|
724
|
+
}
|
|
725
|
+
/**
|
|
726
|
+
* Full-snapshot reconcile payload. The complete desired member list for a
|
|
727
|
+
* workspace-backed organization; the server diffs it against current state.
|
|
728
|
+
*/
|
|
729
|
+
interface ReconcileMembersRequest {
|
|
730
|
+
members: Array<{
|
|
731
|
+
role: OrganizationMemberRole;
|
|
732
|
+
userAccountId: number;
|
|
733
|
+
}>;
|
|
734
|
+
}
|
|
735
|
+
interface ReconcileMembersResponse {
|
|
736
|
+
added: number;
|
|
737
|
+
removed: number;
|
|
738
|
+
/** userAccountIds that were skipped (account missing or not type='user'). */
|
|
739
|
+
skipped: number[];
|
|
740
|
+
updated: number;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
/**
|
|
744
|
+
* Connection types for plugin communication.
|
|
745
|
+
* - http: The plugin communicates via HTTP protocol
|
|
746
|
+
* - stdio: The plugin communicates via standard input/output
|
|
747
|
+
*/
|
|
748
|
+
declare const ConnectionTypeEnum: z.ZodEnum<["http", "stdio", "sse"]>;
|
|
749
|
+
type ConnectionType = z.infer<typeof ConnectionTypeEnum>;
|
|
750
|
+
/**
|
|
751
|
+
* Plugin connection types for overall plugin communication strategy.
|
|
752
|
+
* - local: Plugin only supports local communication (stdio)
|
|
753
|
+
* - remote: Plugin only supports remote communication (http)
|
|
754
|
+
* - hybrid: Plugin supports both local and remote communication
|
|
755
|
+
*/
|
|
756
|
+
declare const PluginConnectionTypeEnum: z.ZodEnum<["local", "remote", "hybrid"]>;
|
|
757
|
+
type PluginConnectionType = z.infer<typeof PluginConnectionTypeEnum>;
|
|
758
|
+
/**
|
|
759
|
+
* Plugin installation methods.
|
|
760
|
+
* Different ways to install and deploy a plugin.
|
|
761
|
+
*/
|
|
762
|
+
declare const InstallationMethodEnum: z.ZodEnum<["npm", "go", "python", "docker", "git", "binaryUrl", "manual", "none"]>;
|
|
763
|
+
type InstallationMethod = z.infer<typeof InstallationMethodEnum>;
|
|
764
|
+
/**
|
|
765
|
+
* System dependency required by a plugin.
|
|
766
|
+
* Defines a software dependency that must be installed on the system.
|
|
767
|
+
*/
|
|
768
|
+
interface SystemDependency {
|
|
769
|
+
/** Command to check if the dependency is installed */
|
|
770
|
+
checkCommand?: string;
|
|
771
|
+
/** Description of what this dependency is for */
|
|
772
|
+
description?: string;
|
|
773
|
+
/** Platform-specific installation instructions */
|
|
774
|
+
installInstructions?: Record<string, string>;
|
|
775
|
+
/** Name of the dependency */
|
|
776
|
+
name: string;
|
|
777
|
+
/** Minimum required version */
|
|
778
|
+
requiredVersion?: string;
|
|
779
|
+
/** Type of dependency (e.g., 'runtime', 'library') */
|
|
780
|
+
type?: string;
|
|
781
|
+
/** Whether version parsing is required to check compatibility */
|
|
782
|
+
versionParsingRequired?: boolean;
|
|
783
|
+
}
|
|
784
|
+
/**
|
|
785
|
+
* Connection configuration for a plugin.
|
|
786
|
+
* Defines how the application should communicate with the plugin.
|
|
787
|
+
*/
|
|
788
|
+
interface ConnectionConfig {
|
|
789
|
+
/** Command-line arguments for the plugin process */
|
|
790
|
+
args?: string[];
|
|
791
|
+
/** Command to execute to start the plugin */
|
|
792
|
+
command?: string;
|
|
793
|
+
/**
|
|
794
|
+
* JSON Schema 配置
|
|
795
|
+
* 插件运行时需要的 configSchema
|
|
796
|
+
*/
|
|
797
|
+
configSchema?: any;
|
|
798
|
+
/** Type of connection (http or stdio) */
|
|
799
|
+
type: ConnectionType;
|
|
800
|
+
/** URL for HTTP-based plugins */
|
|
801
|
+
url?: string;
|
|
802
|
+
}
|
|
803
|
+
/**
|
|
804
|
+
* Details for installing a plugin.
|
|
805
|
+
* Provides specific information needed during the installation process.
|
|
806
|
+
*/
|
|
807
|
+
interface InstallationDetails {
|
|
808
|
+
/** Package name for npm, pip, or other package managers */
|
|
809
|
+
packageName?: string;
|
|
810
|
+
/** Git repository URL to clone */
|
|
811
|
+
repositoryUrlToClone?: string;
|
|
812
|
+
/** Ordered list of setup steps to execute after installation */
|
|
813
|
+
setupSteps?: string[];
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* Deployment option for a plugin.
|
|
817
|
+
* A plugin can offer multiple deployment options, each with different requirements.
|
|
818
|
+
*/
|
|
819
|
+
interface DeploymentOption {
|
|
820
|
+
/** Connection configuration for this deployment option */
|
|
821
|
+
connection: ConnectionConfig;
|
|
822
|
+
/** Human-readable description of this deployment option */
|
|
823
|
+
description?: string;
|
|
824
|
+
/** Detailed installation instructions */
|
|
825
|
+
installationDetails?: InstallationDetails;
|
|
826
|
+
/** Method used to install this plugin */
|
|
827
|
+
installationMethod: string;
|
|
828
|
+
/** Whether this is the recommended deployment option */
|
|
829
|
+
isRecommended?: boolean;
|
|
830
|
+
/** System dependencies required for this deployment option */
|
|
831
|
+
systemDependencies?: SystemDependency[];
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
/**
|
|
835
|
+
* Schema defining the capabilities a plugin can provide.
|
|
836
|
+
* Each capability is represented as a boolean flag.
|
|
837
|
+
*/
|
|
838
|
+
declare const PluginCapabilitiesSchema: z.ZodObject<{
|
|
839
|
+
/** Whether the plugin provides custom prompts */
|
|
840
|
+
prompts: z.ZodDefault<z.ZodBoolean>;
|
|
841
|
+
/** Whether the plugin provides resources (assets) */
|
|
842
|
+
resources: z.ZodDefault<z.ZodBoolean>;
|
|
843
|
+
/** Whether the plugin provides tools (functions) */
|
|
844
|
+
tools: z.ZodDefault<z.ZodBoolean>;
|
|
845
|
+
}, "strip", z.ZodTypeAny, {
|
|
846
|
+
prompts: boolean;
|
|
847
|
+
resources: boolean;
|
|
848
|
+
tools: boolean;
|
|
849
|
+
}, {
|
|
850
|
+
prompts?: boolean | undefined;
|
|
851
|
+
resources?: boolean | undefined;
|
|
852
|
+
tools?: boolean | undefined;
|
|
853
|
+
}>;
|
|
854
|
+
/**
|
|
855
|
+
* Definition of a tool that a plugin can provide.
|
|
856
|
+
* Tools are functions that can be called by the chat application.
|
|
857
|
+
*/
|
|
858
|
+
interface PluginTool {
|
|
859
|
+
/** Human-readable description of what the tool does */
|
|
860
|
+
description?: string;
|
|
861
|
+
/** JSON schema defining the expected input parameters */
|
|
862
|
+
inputSchema?: Record<string, any>;
|
|
863
|
+
/** Unique identifier for the tool within the plugin */
|
|
864
|
+
name: string;
|
|
865
|
+
}
|
|
866
|
+
/**
|
|
867
|
+
* Definition of a resource (asset) that a plugin can provide.
|
|
868
|
+
* Resources can be images, data files, or other assets needed by the plugin.
|
|
869
|
+
*/
|
|
870
|
+
interface PluginResource {
|
|
871
|
+
/** MIME type of the resource (e.g., 'image/png', 'application/json') */
|
|
872
|
+
mimeType?: string;
|
|
873
|
+
/** Optional display name for the resource */
|
|
874
|
+
name?: string;
|
|
875
|
+
/** URI where the resource can be accessed */
|
|
876
|
+
uri: string;
|
|
877
|
+
}
|
|
878
|
+
/**
|
|
879
|
+
* Definition of an argument for a prompt template.
|
|
880
|
+
* Arguments allow users to customize the prompt when using it.
|
|
881
|
+
*/
|
|
882
|
+
interface PromptArgument {
|
|
883
|
+
/** Human-readable description of the argument's purpose */
|
|
884
|
+
description?: string;
|
|
885
|
+
/** Argument identifier */
|
|
886
|
+
name: string;
|
|
887
|
+
/** Whether the argument must be provided (defaults to false if omitted) */
|
|
888
|
+
required?: boolean;
|
|
889
|
+
/** Data type of the argument (e.g., 'string', 'number') */
|
|
890
|
+
type?: string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* Definition of a prompt template that a plugin can provide.
|
|
894
|
+
* Prompts are pre-defined templates that can be used in conversations.
|
|
895
|
+
*/
|
|
896
|
+
interface PluginPrompt {
|
|
897
|
+
/** List of customizable arguments for this prompt */
|
|
898
|
+
arguments?: PromptArgument[];
|
|
899
|
+
/** Human-readable description of what the prompt does */
|
|
900
|
+
description: string;
|
|
901
|
+
/** Unique identifier for the prompt within the plugin */
|
|
902
|
+
name: string;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* Plugin compatibility information.
|
|
907
|
+
* Defines the compatibility requirements for a plugin with respect to app versions and platforms.
|
|
908
|
+
*/
|
|
909
|
+
interface PluginCompatibility {
|
|
910
|
+
/** Maximum app version the plugin is compatible with */
|
|
911
|
+
maxAppVersion?: string;
|
|
912
|
+
/** Minimum app version required to use the plugin */
|
|
913
|
+
minAppVersion?: string;
|
|
914
|
+
/** List of supported platforms (e.g., 'web', 'desktop', 'mobile') */
|
|
915
|
+
platforms?: string[];
|
|
916
|
+
}
|
|
917
|
+
/**
|
|
918
|
+
* Simplified plugin version information.
|
|
919
|
+
* Contains minimal version data for plugin version lists.
|
|
920
|
+
*/
|
|
921
|
+
interface PluginVersionSummary {
|
|
922
|
+
/** Creation timestamp (ISO 8601 format) */
|
|
923
|
+
createdAt: string;
|
|
924
|
+
/** Whether this is the latest version of the plugin */
|
|
925
|
+
isLatest: boolean;
|
|
926
|
+
/** Whether this version has been validated by the system */
|
|
927
|
+
isValidated: boolean;
|
|
928
|
+
/** Semantic version string (e.g., "1.0.0") */
|
|
929
|
+
version: string;
|
|
930
|
+
}
|
|
931
|
+
/**
|
|
932
|
+
* Base plugin item schema with Zod validation.
|
|
933
|
+
* Defines the structure and validation rules for plugin items in the marketplace.
|
|
934
|
+
*/
|
|
935
|
+
declare const BasePluginItemSchema: z.ZodObject<{
|
|
936
|
+
author: z.ZodOptional<z.ZodString>;
|
|
937
|
+
capabilities: z.ZodObject<{
|
|
938
|
+
prompts: z.ZodDefault<z.ZodBoolean>;
|
|
939
|
+
resources: z.ZodDefault<z.ZodBoolean>;
|
|
940
|
+
tools: z.ZodDefault<z.ZodBoolean>;
|
|
941
|
+
}, "strip", z.ZodTypeAny, {
|
|
942
|
+
prompts: boolean;
|
|
943
|
+
resources: boolean;
|
|
944
|
+
tools: boolean;
|
|
945
|
+
}, {
|
|
946
|
+
prompts?: boolean | undefined;
|
|
947
|
+
resources?: boolean | undefined;
|
|
948
|
+
tools?: boolean | undefined;
|
|
949
|
+
}>;
|
|
950
|
+
category: z.ZodOptional<z.ZodString>;
|
|
951
|
+
commentCount: z.ZodDefault<z.ZodNumber>;
|
|
952
|
+
connectionType: z.ZodOptional<z.ZodEnum<["local", "remote", "hybrid"]>>;
|
|
953
|
+
createdAt: z.ZodString;
|
|
954
|
+
description: z.ZodString;
|
|
955
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
956
|
+
language: z.ZodOptional<z.ZodString>;
|
|
957
|
+
license: z.ZodOptional<z.ZodString>;
|
|
958
|
+
stars: z.ZodOptional<z.ZodNumber>;
|
|
959
|
+
url: z.ZodString;
|
|
960
|
+
}, "strip", z.ZodTypeAny, {
|
|
961
|
+
url: string;
|
|
962
|
+
language?: string | undefined;
|
|
963
|
+
license?: string | undefined;
|
|
964
|
+
stars?: number | undefined;
|
|
965
|
+
}, {
|
|
966
|
+
url: string;
|
|
967
|
+
language?: string | undefined;
|
|
968
|
+
license?: string | undefined;
|
|
969
|
+
stars?: number | undefined;
|
|
970
|
+
}>>;
|
|
971
|
+
haveCloudEndpoint: z.ZodOptional<z.ZodBoolean>;
|
|
972
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
973
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
974
|
+
identifier: z.ZodString;
|
|
975
|
+
installCount: z.ZodDefault<z.ZodNumber>;
|
|
976
|
+
isClaimed: z.ZodDefault<z.ZodBoolean>;
|
|
977
|
+
isFeatured: z.ZodDefault<z.ZodBoolean>;
|
|
978
|
+
isOfficial: z.ZodDefault<z.ZodBoolean>;
|
|
979
|
+
isValidated: z.ZodDefault<z.ZodBoolean>;
|
|
980
|
+
manifestUrl: z.ZodString;
|
|
981
|
+
name: z.ZodString;
|
|
982
|
+
promptsCount: z.ZodOptional<z.ZodNumber>;
|
|
983
|
+
ratingAverage: z.ZodOptional<z.ZodNumber>;
|
|
984
|
+
ratingCount: z.ZodDefault<z.ZodNumber>;
|
|
985
|
+
resourcesCount: z.ZodOptional<z.ZodNumber>;
|
|
986
|
+
toolsCount: z.ZodOptional<z.ZodNumber>;
|
|
987
|
+
updatedAt: z.ZodString;
|
|
988
|
+
}, "strip", z.ZodTypeAny, {
|
|
989
|
+
createdAt: string;
|
|
990
|
+
name: string;
|
|
991
|
+
updatedAt: string;
|
|
992
|
+
capabilities: {
|
|
993
|
+
prompts: boolean;
|
|
994
|
+
resources: boolean;
|
|
995
|
+
tools: boolean;
|
|
996
|
+
};
|
|
997
|
+
commentCount: number;
|
|
998
|
+
description: string;
|
|
999
|
+
identifier: string;
|
|
1000
|
+
installCount: number;
|
|
1001
|
+
isClaimed: boolean;
|
|
1002
|
+
isFeatured: boolean;
|
|
1003
|
+
isOfficial: boolean;
|
|
1004
|
+
isValidated: boolean;
|
|
1005
|
+
manifestUrl: string;
|
|
1006
|
+
ratingCount: number;
|
|
1007
|
+
author?: string | undefined;
|
|
1008
|
+
category?: string | undefined;
|
|
1009
|
+
connectionType?: "local" | "remote" | "hybrid" | undefined;
|
|
1010
|
+
github?: {
|
|
1011
|
+
url: string;
|
|
1012
|
+
language?: string | undefined;
|
|
1013
|
+
license?: string | undefined;
|
|
1014
|
+
stars?: number | undefined;
|
|
1015
|
+
} | undefined;
|
|
1016
|
+
haveCloudEndpoint?: boolean | undefined;
|
|
1017
|
+
homepage?: string | undefined;
|
|
1018
|
+
icon?: string | undefined;
|
|
1019
|
+
promptsCount?: number | undefined;
|
|
1020
|
+
ratingAverage?: number | undefined;
|
|
1021
|
+
resourcesCount?: number | undefined;
|
|
1022
|
+
toolsCount?: number | undefined;
|
|
1023
|
+
}, {
|
|
1024
|
+
createdAt: string;
|
|
1025
|
+
name: string;
|
|
1026
|
+
updatedAt: string;
|
|
1027
|
+
capabilities: {
|
|
1028
|
+
prompts?: boolean | undefined;
|
|
1029
|
+
resources?: boolean | undefined;
|
|
1030
|
+
tools?: boolean | undefined;
|
|
1031
|
+
};
|
|
1032
|
+
description: string;
|
|
1033
|
+
identifier: string;
|
|
1034
|
+
manifestUrl: string;
|
|
1035
|
+
author?: string | undefined;
|
|
1036
|
+
category?: string | undefined;
|
|
1037
|
+
commentCount?: number | undefined;
|
|
1038
|
+
connectionType?: "local" | "remote" | "hybrid" | undefined;
|
|
1039
|
+
github?: {
|
|
1040
|
+
url: string;
|
|
1041
|
+
language?: string | undefined;
|
|
1042
|
+
license?: string | undefined;
|
|
1043
|
+
stars?: number | undefined;
|
|
1044
|
+
} | undefined;
|
|
1045
|
+
haveCloudEndpoint?: boolean | undefined;
|
|
1046
|
+
homepage?: string | undefined;
|
|
1047
|
+
icon?: string | undefined;
|
|
1048
|
+
installCount?: number | undefined;
|
|
1049
|
+
isClaimed?: boolean | undefined;
|
|
1050
|
+
isFeatured?: boolean | undefined;
|
|
1051
|
+
isOfficial?: boolean | undefined;
|
|
1052
|
+
isValidated?: boolean | undefined;
|
|
1053
|
+
promptsCount?: number | undefined;
|
|
1054
|
+
ratingAverage?: number | undefined;
|
|
1055
|
+
ratingCount?: number | undefined;
|
|
1056
|
+
resourcesCount?: number | undefined;
|
|
1057
|
+
toolsCount?: number | undefined;
|
|
1058
|
+
}>;
|
|
1059
|
+
/**
|
|
1060
|
+
* Plugin marketplace item definition.
|
|
1061
|
+
* Extends the base marketplace item with plugin-specific properties.
|
|
1062
|
+
* This interface represents a plugin as it appears in the marketplace listing.
|
|
1063
|
+
*/
|
|
1064
|
+
interface MarketPluginItem extends MarketItemBase {
|
|
1065
|
+
/** Capabilities provided by this plugin */
|
|
1066
|
+
capabilities?: {
|
|
1067
|
+
/** Whether the plugin provides custom prompts */
|
|
1068
|
+
prompts: boolean;
|
|
1069
|
+
/** Whether the plugin provides resources (assets) */
|
|
1070
|
+
resources: boolean;
|
|
1071
|
+
/** Whether the plugin provides tools (functions) */
|
|
1072
|
+
tools: boolean;
|
|
1073
|
+
};
|
|
1074
|
+
/** Number of comments on this plugin */
|
|
1075
|
+
commentCount?: number;
|
|
1076
|
+
/** Connection type strategy for communicating with the plugin */
|
|
1077
|
+
connectionType?: PluginConnectionType;
|
|
1078
|
+
/** GitHub repository information */
|
|
1079
|
+
github?: {
|
|
1080
|
+
language?: string;
|
|
1081
|
+
license?: string;
|
|
1082
|
+
stars?: number;
|
|
1083
|
+
url: string;
|
|
1084
|
+
};
|
|
1085
|
+
/** Whether the plugin has a cloud endpoint available for official cloud-hosted deployment */
|
|
1086
|
+
haveCloudEndpoint?: boolean;
|
|
1087
|
+
/** Number of times this plugin has been installed */
|
|
1088
|
+
installCount?: number;
|
|
1089
|
+
/** Whether this plugin has been claimed by its original author */
|
|
1090
|
+
isClaimed?: boolean;
|
|
1091
|
+
/** Whether this plugin is featured in the marketplace */
|
|
1092
|
+
isFeatured?: boolean;
|
|
1093
|
+
/** Whether this plugin is officially maintained by Hubstr */
|
|
1094
|
+
isOfficial?: boolean;
|
|
1095
|
+
/** Whether this plugin has been validated by the system */
|
|
1096
|
+
isValidated?: boolean;
|
|
1097
|
+
/** Number of prompts provided by this plugin */
|
|
1098
|
+
promptsCount?: number;
|
|
1099
|
+
/** Average rating (typically 1-5 scale) */
|
|
1100
|
+
ratingAverage?: number;
|
|
1101
|
+
/** Number of ratings received */
|
|
1102
|
+
ratingCount?: number;
|
|
1103
|
+
/** Number of resources provided by this plugin */
|
|
1104
|
+
resourcesCount?: number;
|
|
1105
|
+
summary?: string;
|
|
1106
|
+
/** Number of tools provided by this plugin */
|
|
1107
|
+
toolsCount?: number;
|
|
1108
|
+
}
|
|
1109
|
+
/** Type alias for the base plugin item validated by Zod schema */
|
|
1110
|
+
type BasePluginItem = z.infer<typeof BasePluginItemSchema>;
|
|
1111
|
+
/**
|
|
1112
|
+
* Query parameters for listing plugins in the marketplace.
|
|
1113
|
+
* Mirrors SkillListQuery in structure for consistency.
|
|
1114
|
+
*/
|
|
1115
|
+
interface PluginListQuery {
|
|
1116
|
+
/** Filter by category */
|
|
1117
|
+
category?: string;
|
|
1118
|
+
/** Filter by MCP connection type */
|
|
1119
|
+
connectionType?: 'http' | 'sse' | 'stdio';
|
|
1120
|
+
/** Filter by claimed status */
|
|
1121
|
+
isClaimed?: 'false' | 'true';
|
|
1122
|
+
/** Filter by featured status */
|
|
1123
|
+
isFeatured?: 'false' | 'true';
|
|
1124
|
+
/** Filter by official status */
|
|
1125
|
+
isOfficial?: 'false' | 'true';
|
|
1126
|
+
/** Locale for localized content */
|
|
1127
|
+
locale?: string;
|
|
1128
|
+
/** Sort direction */
|
|
1129
|
+
order?: 'asc' | 'desc';
|
|
1130
|
+
/** Filter by owner ID */
|
|
1131
|
+
ownerId?: number;
|
|
1132
|
+
/** Page number (1-based) */
|
|
1133
|
+
page?: number;
|
|
1134
|
+
/** Number of items per page */
|
|
1135
|
+
pageSize?: number;
|
|
1136
|
+
/** Search query string */
|
|
1137
|
+
q?: string;
|
|
1138
|
+
/** Sort field */
|
|
1139
|
+
sort?: 'commentCount' | 'createdAt' | 'githubUpdateAt' | 'installCount' | 'isFeatured' | 'isValidated' | 'ratingAverage' | 'ratingCount' | 'recommended' | 'relevance' | 'stars' | 'updatedAt';
|
|
1140
|
+
/** Publication status filter */
|
|
1141
|
+
status?: 'all' | 'archived' | 'deprecated' | 'published' | 'unpublished';
|
|
1142
|
+
/** Filter by tag */
|
|
1143
|
+
tag?: string;
|
|
1144
|
+
/** Visibility filter */
|
|
1145
|
+
visibility?: 'all' | 'internal' | 'private' | 'public';
|
|
1146
|
+
}
|
|
1147
|
+
/**
|
|
1148
|
+
* Plugin manifest definition.
|
|
1149
|
+
* This is the complete specification of a plugin, including all its capabilities,
|
|
1150
|
+
* metadata, and deployment options.
|
|
1151
|
+
*/
|
|
1152
|
+
interface PluginItemDetail extends Omit<MarketPluginItem, 'author' | 'manifestUrl'> {
|
|
1153
|
+
artifacts?: {
|
|
1154
|
+
docker?: {
|
|
1155
|
+
imageName?: string;
|
|
1156
|
+
tag?: string;
|
|
1157
|
+
};
|
|
1158
|
+
npm?: {
|
|
1159
|
+
packageName?: string;
|
|
1160
|
+
version?: string;
|
|
1161
|
+
};
|
|
1162
|
+
pypi?: {
|
|
1163
|
+
packageName?: string;
|
|
1164
|
+
version?: string;
|
|
1165
|
+
};
|
|
1166
|
+
};
|
|
1167
|
+
/** Author information */
|
|
1168
|
+
author?: {
|
|
1169
|
+
/** Author or organization name */
|
|
1170
|
+
name: string;
|
|
1171
|
+
/** URL to the author's website or profile */
|
|
1172
|
+
url?: string;
|
|
1173
|
+
};
|
|
1174
|
+
/** Connection type strategy for communicating with the plugin */
|
|
1175
|
+
connectionType?: PluginConnectionType;
|
|
1176
|
+
/** Available deployment options */
|
|
1177
|
+
deploymentOptions?: DeploymentOption[];
|
|
1178
|
+
/**
|
|
1179
|
+
* GitHub
|
|
1180
|
+
*/
|
|
1181
|
+
github?: {
|
|
1182
|
+
language?: string;
|
|
1183
|
+
license?: string;
|
|
1184
|
+
stars?: number;
|
|
1185
|
+
url: string;
|
|
1186
|
+
};
|
|
1187
|
+
overview: {
|
|
1188
|
+
readme: string;
|
|
1189
|
+
summary?: string;
|
|
1190
|
+
};
|
|
1191
|
+
/** List of prompt templates provided by this plugin */
|
|
1192
|
+
prompts?: PluginPrompt[];
|
|
1193
|
+
/** List of resources provided by this plugin */
|
|
1194
|
+
resources?: PluginResource[];
|
|
1195
|
+
/** List of tools provided by this plugin */
|
|
1196
|
+
tools?: PluginTool[];
|
|
1197
|
+
/** Date when the plugin was created in the marketplace (ISO 8601 format) */
|
|
1198
|
+
validatedAt?: string;
|
|
1199
|
+
/** Semantic version string (e.g., "1.0.0") */
|
|
1200
|
+
version: string;
|
|
1201
|
+
/** List of all versions of this plugin with simplified information */
|
|
1202
|
+
versions: PluginVersionSummary[];
|
|
1203
|
+
}
|
|
1204
|
+
/**
|
|
1205
|
+
* Plugin manifest definition.
|
|
1206
|
+
* This is the complete specification of a plugin, including all its capabilities,
|
|
1207
|
+
* metadata, and deployment options.
|
|
1208
|
+
*/
|
|
1209
|
+
interface PluginManifest extends Omit<MarketPluginItem, 'author' | 'manifestUrl'> {
|
|
1210
|
+
/** Author information */
|
|
1211
|
+
author?: {
|
|
1212
|
+
/** Author or organization name */
|
|
1213
|
+
name: string;
|
|
1214
|
+
/** URL to the author's website or profile */
|
|
1215
|
+
url?: string;
|
|
1216
|
+
};
|
|
1217
|
+
/** Available deployment options */
|
|
1218
|
+
deploymentOptions?: DeploymentOption[];
|
|
1219
|
+
overview?: {
|
|
1220
|
+
readme?: string;
|
|
1221
|
+
summary?: string;
|
|
1222
|
+
};
|
|
1223
|
+
/** List of prompt templates provided by this plugin */
|
|
1224
|
+
prompts?: PluginPrompt[];
|
|
1225
|
+
/** List of resources provided by this plugin */
|
|
1226
|
+
resources?: PluginResource[];
|
|
1227
|
+
/** List of tools provided by this plugin */
|
|
1228
|
+
tools?: PluginTool[];
|
|
1229
|
+
/** Date when the plugin was created in the marketplace (ISO 8601 format) */
|
|
1230
|
+
validatedAt?: string;
|
|
1231
|
+
/** Semantic version string (e.g., "1.0.0") */
|
|
1232
|
+
version: string;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
/**
|
|
1236
|
+
* Schema for admin-managed plugin items with additional status and visibility fields.
|
|
1237
|
+
* Extends the base plugin schema with administrative properties.
|
|
1238
|
+
*/
|
|
1239
|
+
declare const AdminPluginItemSchema: z.ZodObject<{
|
|
1240
|
+
author: z.ZodOptional<z.ZodString>;
|
|
1241
|
+
capabilities: z.ZodObject<{
|
|
1242
|
+
prompts: z.ZodDefault<z.ZodBoolean>;
|
|
1243
|
+
resources: z.ZodDefault<z.ZodBoolean>;
|
|
1244
|
+
tools: z.ZodDefault<z.ZodBoolean>;
|
|
1245
|
+
}, "strip", z.ZodTypeAny, {
|
|
1246
|
+
prompts: boolean;
|
|
1247
|
+
resources: boolean;
|
|
1248
|
+
tools: boolean;
|
|
1249
|
+
}, {
|
|
1250
|
+
prompts?: boolean | undefined;
|
|
1251
|
+
resources?: boolean | undefined;
|
|
1252
|
+
tools?: boolean | undefined;
|
|
1253
|
+
}>;
|
|
1254
|
+
category: z.ZodOptional<z.ZodString>;
|
|
1255
|
+
commentCount: z.ZodDefault<z.ZodNumber>;
|
|
1256
|
+
connectionType: z.ZodOptional<z.ZodEnum<["local", "remote", "hybrid"]>>;
|
|
1257
|
+
createdAt: z.ZodString;
|
|
1258
|
+
description: z.ZodString;
|
|
1259
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
1260
|
+
language: z.ZodOptional<z.ZodString>;
|
|
1261
|
+
license: z.ZodOptional<z.ZodString>;
|
|
1262
|
+
stars: z.ZodOptional<z.ZodNumber>;
|
|
1263
|
+
url: z.ZodString;
|
|
1264
|
+
}, "strip", z.ZodTypeAny, {
|
|
1265
|
+
url: string;
|
|
1266
|
+
language?: string | undefined;
|
|
1267
|
+
license?: string | undefined;
|
|
1268
|
+
stars?: number | undefined;
|
|
1269
|
+
}, {
|
|
1270
|
+
url: string;
|
|
1271
|
+
language?: string | undefined;
|
|
1272
|
+
license?: string | undefined;
|
|
1273
|
+
stars?: number | undefined;
|
|
1274
|
+
}>>;
|
|
1275
|
+
haveCloudEndpoint: z.ZodOptional<z.ZodBoolean>;
|
|
1276
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
1277
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1278
|
+
identifier: z.ZodString;
|
|
1279
|
+
installCount: z.ZodDefault<z.ZodNumber>;
|
|
1280
|
+
isClaimed: z.ZodDefault<z.ZodBoolean>;
|
|
1281
|
+
isFeatured: z.ZodDefault<z.ZodBoolean>;
|
|
1282
|
+
isOfficial: z.ZodDefault<z.ZodBoolean>;
|
|
1283
|
+
isValidated: z.ZodDefault<z.ZodBoolean>;
|
|
1284
|
+
manifestUrl: z.ZodString;
|
|
1285
|
+
name: z.ZodString;
|
|
1286
|
+
promptsCount: z.ZodOptional<z.ZodNumber>;
|
|
1287
|
+
ratingAverage: z.ZodOptional<z.ZodNumber>;
|
|
1288
|
+
ratingCount: z.ZodDefault<z.ZodNumber>;
|
|
1289
|
+
resourcesCount: z.ZodOptional<z.ZodNumber>;
|
|
1290
|
+
toolsCount: z.ZodOptional<z.ZodNumber>;
|
|
1291
|
+
updatedAt: z.ZodString;
|
|
1292
|
+
} & {
|
|
1293
|
+
/** Publication status of the plugin */
|
|
1294
|
+
status: z.ZodEnum<["published", "unpublished", "archived", "deprecated"]>;
|
|
1295
|
+
/** Visibility level of the plugin */
|
|
1296
|
+
visibility: z.ZodEnum<["public", "private", "internal"]>;
|
|
1297
|
+
}, "strip", z.ZodTypeAny, {
|
|
1298
|
+
createdAt: string;
|
|
1299
|
+
name: string;
|
|
1300
|
+
updatedAt: string;
|
|
1301
|
+
status: "archived" | "deprecated" | "published" | "unpublished";
|
|
1302
|
+
capabilities: {
|
|
1303
|
+
prompts: boolean;
|
|
1304
|
+
resources: boolean;
|
|
1305
|
+
tools: boolean;
|
|
1306
|
+
};
|
|
1307
|
+
commentCount: number;
|
|
1308
|
+
description: string;
|
|
1309
|
+
identifier: string;
|
|
1310
|
+
installCount: number;
|
|
1311
|
+
isClaimed: boolean;
|
|
1312
|
+
isFeatured: boolean;
|
|
1313
|
+
isOfficial: boolean;
|
|
1314
|
+
isValidated: boolean;
|
|
1315
|
+
manifestUrl: string;
|
|
1316
|
+
ratingCount: number;
|
|
1317
|
+
visibility: "internal" | "private" | "public";
|
|
1318
|
+
author?: string | undefined;
|
|
1319
|
+
category?: string | undefined;
|
|
1320
|
+
connectionType?: "local" | "remote" | "hybrid" | undefined;
|
|
1321
|
+
github?: {
|
|
1322
|
+
url: string;
|
|
1323
|
+
language?: string | undefined;
|
|
1324
|
+
license?: string | undefined;
|
|
1325
|
+
stars?: number | undefined;
|
|
1326
|
+
} | undefined;
|
|
1327
|
+
haveCloudEndpoint?: boolean | undefined;
|
|
1328
|
+
homepage?: string | undefined;
|
|
1329
|
+
icon?: string | undefined;
|
|
1330
|
+
promptsCount?: number | undefined;
|
|
1331
|
+
ratingAverage?: number | undefined;
|
|
1332
|
+
resourcesCount?: number | undefined;
|
|
1333
|
+
toolsCount?: number | undefined;
|
|
1334
|
+
}, {
|
|
1335
|
+
createdAt: string;
|
|
1336
|
+
name: string;
|
|
1337
|
+
updatedAt: string;
|
|
1338
|
+
status: "archived" | "deprecated" | "published" | "unpublished";
|
|
1339
|
+
capabilities: {
|
|
1340
|
+
prompts?: boolean | undefined;
|
|
1341
|
+
resources?: boolean | undefined;
|
|
1342
|
+
tools?: boolean | undefined;
|
|
1343
|
+
};
|
|
1344
|
+
description: string;
|
|
1345
|
+
identifier: string;
|
|
1346
|
+
manifestUrl: string;
|
|
1347
|
+
visibility: "internal" | "private" | "public";
|
|
1348
|
+
author?: string | undefined;
|
|
1349
|
+
category?: string | undefined;
|
|
1350
|
+
commentCount?: number | undefined;
|
|
1351
|
+
connectionType?: "local" | "remote" | "hybrid" | undefined;
|
|
1352
|
+
github?: {
|
|
1353
|
+
url: string;
|
|
1354
|
+
language?: string | undefined;
|
|
1355
|
+
license?: string | undefined;
|
|
1356
|
+
stars?: number | undefined;
|
|
1357
|
+
} | undefined;
|
|
1358
|
+
haveCloudEndpoint?: boolean | undefined;
|
|
1359
|
+
homepage?: string | undefined;
|
|
1360
|
+
icon?: string | undefined;
|
|
1361
|
+
installCount?: number | undefined;
|
|
1362
|
+
isClaimed?: boolean | undefined;
|
|
1363
|
+
isFeatured?: boolean | undefined;
|
|
1364
|
+
isOfficial?: boolean | undefined;
|
|
1365
|
+
isValidated?: boolean | undefined;
|
|
1366
|
+
promptsCount?: number | undefined;
|
|
1367
|
+
ratingAverage?: number | undefined;
|
|
1368
|
+
ratingCount?: number | undefined;
|
|
1369
|
+
resourcesCount?: number | undefined;
|
|
1370
|
+
toolsCount?: number | undefined;
|
|
1371
|
+
}>;
|
|
1372
|
+
/**
|
|
1373
|
+
* Interface for admin-managed plugin items.
|
|
1374
|
+
* Extends the market plugin item with administrative properties.
|
|
1375
|
+
*/
|
|
1376
|
+
interface AdminPluginItem extends MarketPluginItem {
|
|
1377
|
+
/** GitHub last update timestamp (ISO 8601 format) */
|
|
1378
|
+
githubUpdateAt?: string;
|
|
1379
|
+
/** Unique numeric identifier for the plugin in the database */
|
|
1380
|
+
id: number;
|
|
1381
|
+
/** User ID of the plugin owner */
|
|
1382
|
+
ownerId: number;
|
|
1383
|
+
/** Publication status of the plugin */
|
|
1384
|
+
status: 'published' | 'unpublished' | 'archived';
|
|
1385
|
+
/** Visibility level controlling who can access the plugin */
|
|
1386
|
+
visibility: 'public' | 'private' | 'internal';
|
|
1387
|
+
}
|
|
1388
|
+
/**
|
|
1389
|
+
* Plugin version database model.
|
|
1390
|
+
* Represents a specific version of a plugin in the database.
|
|
1391
|
+
*/
|
|
1392
|
+
interface PluginVersion {
|
|
1393
|
+
/** Creation timestamp (ISO 8601 format) */
|
|
1394
|
+
createdAt: string;
|
|
1395
|
+
/** Unique numeric identifier for the version */
|
|
1396
|
+
id: number;
|
|
1397
|
+
/** Whether this is the latest version of the plugin */
|
|
1398
|
+
isLatest: boolean;
|
|
1399
|
+
/** Whether this version has been validated by the system */
|
|
1400
|
+
isValidated: boolean;
|
|
1401
|
+
/** The full manifest data for this version */
|
|
1402
|
+
manifest: PluginManifest;
|
|
1403
|
+
/** URL to the manifest file, or null if stored directly */
|
|
1404
|
+
manifestUrl: string | null;
|
|
1405
|
+
/** Additional metadata for this version */
|
|
1406
|
+
meta: Record<string, any> | null;
|
|
1407
|
+
/** ID of the parent plugin */
|
|
1408
|
+
pluginId: number;
|
|
1409
|
+
/** Number of prompts provided by this version */
|
|
1410
|
+
promptsCount: number;
|
|
1411
|
+
/** Number of resources provided by this version */
|
|
1412
|
+
resourcesCount: number;
|
|
1413
|
+
/** Number of tools provided by this version */
|
|
1414
|
+
toolsCount: number;
|
|
1415
|
+
/** Last update timestamp (ISO 8601 format) */
|
|
1416
|
+
updatedAt: string;
|
|
1417
|
+
/** Semantic version string (e.g., "1.0.0") */
|
|
1418
|
+
version: string;
|
|
1419
|
+
}
|
|
1420
|
+
/**
|
|
1421
|
+
* Detailed admin plugin item with version history.
|
|
1422
|
+
* Used for displaying complete plugin information in the admin interface.
|
|
1423
|
+
*/
|
|
1424
|
+
interface AdminPluginItemDetail extends Omit<AdminPluginItem, 'manifestUrl'> {
|
|
1425
|
+
/** Full manifest data for the current version */
|
|
1426
|
+
manifest: PluginManifest;
|
|
1427
|
+
/** List of all versions of this plugin */
|
|
1428
|
+
versions: PluginVersion[];
|
|
1429
|
+
}
|
|
1430
|
+
/**
|
|
1431
|
+
* Admin deployment option with database ID.
|
|
1432
|
+
* Extends the basic deployment option with a database identifier.
|
|
1433
|
+
*/
|
|
1434
|
+
interface AdminDeploymentOption extends DeploymentOption {
|
|
1435
|
+
/** Unique numeric identifier for the deployment option */
|
|
1436
|
+
id: number;
|
|
1437
|
+
}
|
|
1438
|
+
/**
|
|
1439
|
+
* Admin system dependency with database ID.
|
|
1440
|
+
* Extends the basic system dependency with a database identifier.
|
|
1441
|
+
*/
|
|
1442
|
+
interface AdminSystemDependency extends SystemDependency {
|
|
1443
|
+
/** Unique numeric identifier for the system dependency */
|
|
1444
|
+
id: number;
|
|
1445
|
+
}
|
|
1446
|
+
/**
|
|
1447
|
+
* Plugin version localization data.
|
|
1448
|
+
* Represents localized content for a specific plugin version in a particular language.
|
|
1449
|
+
*/
|
|
1450
|
+
interface PluginVersionLocalization {
|
|
1451
|
+
/** Creation timestamp (ISO 8601 format) */
|
|
1452
|
+
createdAt: string;
|
|
1453
|
+
/** Localized description of the plugin */
|
|
1454
|
+
description: string;
|
|
1455
|
+
/** Unique numeric identifier for the localization */
|
|
1456
|
+
id: number;
|
|
1457
|
+
/** Language/locale code (e.g., 'en-US', 'zh-CN') */
|
|
1458
|
+
locale: string;
|
|
1459
|
+
/** Localized display name of the plugin */
|
|
1460
|
+
name: string;
|
|
1461
|
+
/** ID of the parent plugin version */
|
|
1462
|
+
pluginVersionId: number;
|
|
1463
|
+
/** Localized summary of the plugin */
|
|
1464
|
+
summary?: string;
|
|
1465
|
+
/** Array of localized tags for categorization and search */
|
|
1466
|
+
tags?: string[];
|
|
1467
|
+
}
|
|
1468
|
+
/**
|
|
1469
|
+
* 不完整i18n插件项
|
|
1470
|
+
* 表示pluginVersionLocalizations只有1个条目的插件
|
|
1471
|
+
*/
|
|
1472
|
+
interface IncompleteI18nPlugin {
|
|
1473
|
+
/** 插件标识符 */
|
|
1474
|
+
identifier: string;
|
|
1475
|
+
/** 本地化条目数量 */
|
|
1476
|
+
localizationCount: number;
|
|
1477
|
+
/** 插件ID */
|
|
1478
|
+
pluginId: number;
|
|
1479
|
+
/** 插件版本 */
|
|
1480
|
+
version: string;
|
|
1481
|
+
}
|
|
1482
|
+
/**
|
|
1483
|
+
* Range Data Point Interface
|
|
1484
|
+
* Defines the structure for daily trend data points in analysis
|
|
1485
|
+
*/
|
|
1486
|
+
interface RangeDataPoint {
|
|
1487
|
+
/** Current period count */
|
|
1488
|
+
count: number;
|
|
1489
|
+
/** Date in YYYY-MM-DD format */
|
|
1490
|
+
date: string;
|
|
1491
|
+
/** Previous period count for comparison */
|
|
1492
|
+
prevCount: number;
|
|
1493
|
+
}
|
|
1494
|
+
/**
|
|
1495
|
+
* Range Statistics Interface
|
|
1496
|
+
* Defines the structure for range-based statistics
|
|
1497
|
+
*/
|
|
1498
|
+
interface RangeStats {
|
|
1499
|
+
/** Array of daily data points */
|
|
1500
|
+
data: RangeDataPoint[];
|
|
1501
|
+
/** Display configuration */
|
|
1502
|
+
display: string;
|
|
1503
|
+
/** Total sum for previous period */
|
|
1504
|
+
prevSum: number;
|
|
1505
|
+
/** Total sum for current period */
|
|
1506
|
+
sum: number;
|
|
1507
|
+
}
|
|
1508
|
+
/**
|
|
1509
|
+
* Range query parameters for trend analysis
|
|
1510
|
+
*/
|
|
1511
|
+
interface RangeQuery {
|
|
1512
|
+
/** Display configuration */
|
|
1513
|
+
display: string;
|
|
1514
|
+
/** Optional previous period range for comparison */
|
|
1515
|
+
prevRange?: [string, string];
|
|
1516
|
+
/** Date range as [startDate, endDate] */
|
|
1517
|
+
range: [string, string];
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
/**
|
|
1521
|
+
* Plugin event tracking types
|
|
1522
|
+
*
|
|
1523
|
+
* These types describe the payload used when recording user plugin events such as
|
|
1524
|
+
* installs, activations, uninstalls, or clicks.
|
|
1525
|
+
*/
|
|
1526
|
+
type PluginEventType = 'install' | 'activate' | 'uninstall' | 'click';
|
|
1527
|
+
/** Payload for recording a plugin event */
|
|
1528
|
+
interface PluginEventRequest {
|
|
1529
|
+
/** Event name */
|
|
1530
|
+
event: PluginEventType;
|
|
1531
|
+
/** Plugin identifier */
|
|
1532
|
+
identifier: string;
|
|
1533
|
+
/** Optional event source */
|
|
1534
|
+
source?: string;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
/**
|
|
1538
|
+
* Plugin Call Report Types
|
|
1539
|
+
*
|
|
1540
|
+
* This module defines the types for plugin call reporting functionality.
|
|
1541
|
+
* These types support users reporting their plugin method invocations to help improve
|
|
1542
|
+
* plugin performance monitoring and provide usage analytics.
|
|
1543
|
+
* These types are shared between the API server and client SDKs.
|
|
1544
|
+
*/
|
|
1545
|
+
/**
|
|
1546
|
+
* Plugin method types
|
|
1547
|
+
*/
|
|
1548
|
+
type PluginMethodType = 'tool' | 'prompt' | 'resource';
|
|
1549
|
+
/**
|
|
1550
|
+
* Custom plugin information for non-marketplace plugins
|
|
1551
|
+
*/
|
|
1552
|
+
interface CustomPluginInfo {
|
|
1553
|
+
avatar?: string;
|
|
1554
|
+
/** Plugin description */
|
|
1555
|
+
description?: string;
|
|
1556
|
+
/** Plugin name/title */
|
|
1557
|
+
name?: string;
|
|
1558
|
+
}
|
|
1559
|
+
/**
|
|
1560
|
+
* Call report request data
|
|
1561
|
+
*/
|
|
1562
|
+
interface CallReportRequest {
|
|
1563
|
+
/** Call execution duration in milliseconds */
|
|
1564
|
+
callDurationMs: number;
|
|
1565
|
+
/** Client ID (optional, for M2M authentication) */
|
|
1566
|
+
clientId?: string;
|
|
1567
|
+
/** Client IP address (real user IP) */
|
|
1568
|
+
clientIp?: string;
|
|
1569
|
+
/** Custom plugin information (required if isCustomPlugin is true) */
|
|
1570
|
+
customPluginInfo?: CustomPluginInfo;
|
|
1571
|
+
/** Error code if call failed */
|
|
1572
|
+
errorCode?: string;
|
|
1573
|
+
/** Error message if call failed */
|
|
1574
|
+
errorMessage?: string;
|
|
1575
|
+
/** Plugin identifier */
|
|
1576
|
+
identifier: string;
|
|
1577
|
+
/** Input parameters sent to the method */
|
|
1578
|
+
inputParams?: any;
|
|
1579
|
+
/** Whether this is a custom/local plugin (not from marketplace) */
|
|
1580
|
+
isCustomPlugin?: boolean;
|
|
1581
|
+
/** Additional metadata about the call */
|
|
1582
|
+
metadata?: Record<string, any>;
|
|
1583
|
+
/** Specific method name being called */
|
|
1584
|
+
methodName: string;
|
|
1585
|
+
/** Plugin method type (tool/prompt/resource) */
|
|
1586
|
+
methodType: PluginMethodType;
|
|
1587
|
+
/** Output/response from the method */
|
|
1588
|
+
outputResult?: any;
|
|
1589
|
+
/** Platform information */
|
|
1590
|
+
platform?: string;
|
|
1591
|
+
/** Request size in bytes */
|
|
1592
|
+
requestSizeBytes?: number;
|
|
1593
|
+
/** Response size in bytes */
|
|
1594
|
+
responseSizeBytes?: number;
|
|
1595
|
+
/** Session ID for correlating multiple calls */
|
|
1596
|
+
sessionId?: string;
|
|
1597
|
+
/** Whether the call was successful */
|
|
1598
|
+
success: boolean;
|
|
1599
|
+
/** Trace ID for distributed tracing */
|
|
1600
|
+
traceId?: string;
|
|
1601
|
+
/** User agent (real user agent) */
|
|
1602
|
+
userAgent?: string;
|
|
1603
|
+
/** Plugin version */
|
|
1604
|
+
version: string;
|
|
1605
|
+
}
|
|
1606
|
+
/**
|
|
1607
|
+
* Call report response data
|
|
1608
|
+
*/
|
|
1609
|
+
interface CallReportResponse {
|
|
1610
|
+
/** Message about the processing result */
|
|
1611
|
+
message: string;
|
|
1612
|
+
/** Whether the report was successfully recorded */
|
|
1613
|
+
success: boolean;
|
|
1614
|
+
}
|
|
1615
|
+
/**
|
|
1616
|
+
* Call statistics data
|
|
1617
|
+
*/
|
|
1618
|
+
interface CallStats {
|
|
1619
|
+
/** Average call duration in milliseconds */
|
|
1620
|
+
averageCallTime: number;
|
|
1621
|
+
/** Call statistics by method type */
|
|
1622
|
+
byMethodType: Record<PluginMethodType, {
|
|
1623
|
+
averageCallTime: number;
|
|
1624
|
+
failedCalls: number;
|
|
1625
|
+
successRate: number;
|
|
1626
|
+
successfulCalls: number;
|
|
1627
|
+
totalCalls: number;
|
|
1628
|
+
}>;
|
|
1629
|
+
/** Statistics by plugin source (marketplace vs custom) */
|
|
1630
|
+
byPluginSource: {
|
|
1631
|
+
custom: {
|
|
1632
|
+
averageCallTime: number;
|
|
1633
|
+
successRate: number;
|
|
1634
|
+
totalCalls: number;
|
|
1635
|
+
};
|
|
1636
|
+
marketplace: {
|
|
1637
|
+
averageCallTime: number;
|
|
1638
|
+
successRate: number;
|
|
1639
|
+
totalCalls: number;
|
|
1640
|
+
};
|
|
1641
|
+
};
|
|
1642
|
+
/** Number of failed calls */
|
|
1643
|
+
failedCalls: number;
|
|
1644
|
+
/** Success rate as percentage */
|
|
1645
|
+
successRate: number;
|
|
1646
|
+
/** Number of successful calls */
|
|
1647
|
+
successfulCalls: number;
|
|
1648
|
+
/** Most common call errors */
|
|
1649
|
+
topErrors: Array<{
|
|
1650
|
+
count: number;
|
|
1651
|
+
errorCode: string;
|
|
1652
|
+
errorMessage: string;
|
|
1653
|
+
}>;
|
|
1654
|
+
/** Most frequently called methods */
|
|
1655
|
+
topMethods: Array<{
|
|
1656
|
+
averageCallTime: number;
|
|
1657
|
+
count: number;
|
|
1658
|
+
methodName: string;
|
|
1659
|
+
methodType: PluginMethodType;
|
|
1660
|
+
successRate: number;
|
|
1661
|
+
}>;
|
|
1662
|
+
/** Total number of call attempts */
|
|
1663
|
+
totalCalls: number;
|
|
1664
|
+
}
|
|
1665
|
+
/**
|
|
1666
|
+
* Call log entry data
|
|
1667
|
+
*/
|
|
1668
|
+
interface CallLogEntry {
|
|
1669
|
+
/** Call execution duration in milliseconds */
|
|
1670
|
+
callDurationMs: number;
|
|
1671
|
+
/** When the log was created */
|
|
1672
|
+
createdAt: string;
|
|
1673
|
+
/** Custom plugin information */
|
|
1674
|
+
customPluginInfo?: CustomPluginInfo | null;
|
|
1675
|
+
/** Error code if failed */
|
|
1676
|
+
errorCode?: string | null;
|
|
1677
|
+
/** Error message if failed */
|
|
1678
|
+
errorMessage?: string | null;
|
|
1679
|
+
/** Log entry ID */
|
|
1680
|
+
id: number;
|
|
1681
|
+
/** Plugin identifier */
|
|
1682
|
+
identifier: string;
|
|
1683
|
+
/** Whether this is a custom plugin */
|
|
1684
|
+
isCustomPlugin: boolean;
|
|
1685
|
+
/** Method name */
|
|
1686
|
+
methodName: string;
|
|
1687
|
+
/** Plugin method type */
|
|
1688
|
+
methodType: PluginMethodType;
|
|
1689
|
+
/** Platform information */
|
|
1690
|
+
platform?: string | null;
|
|
1691
|
+
/** Request size in bytes */
|
|
1692
|
+
requestSizeBytes?: number | null;
|
|
1693
|
+
/** Response size in bytes */
|
|
1694
|
+
responseSizeBytes?: number | null;
|
|
1695
|
+
/** Session ID */
|
|
1696
|
+
sessionId?: string | null;
|
|
1697
|
+
/** Whether call was successful */
|
|
1698
|
+
success: boolean;
|
|
1699
|
+
/** Trace ID */
|
|
1700
|
+
traceId?: string | null;
|
|
1701
|
+
/** Plugin version */
|
|
1702
|
+
version: string;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
/**
|
|
1706
|
+
* Plugin Install Report Types
|
|
1707
|
+
*
|
|
1708
|
+
* This module defines the types for plugin installation reporting functionality.
|
|
1709
|
+
* These types support users reporting their installation attempts to help improve
|
|
1710
|
+
* plugin validation and provide analytics. These types are shared between the API server and client SDKs.
|
|
1711
|
+
*/
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
* Install report request data
|
|
1715
|
+
*/
|
|
1716
|
+
interface InstallReportRequest {
|
|
1717
|
+
/** Client ID (optional, for M2M authentication) */
|
|
1718
|
+
clientId?: string;
|
|
1719
|
+
/** Client IP address (real user IP) */
|
|
1720
|
+
clientIp?: string;
|
|
1721
|
+
/** Error code if installation failed */
|
|
1722
|
+
errorCode?: string;
|
|
1723
|
+
/** Error message if installation failed */
|
|
1724
|
+
errorMessage?: string;
|
|
1725
|
+
/** Plugin identifier */
|
|
1726
|
+
identifier: string;
|
|
1727
|
+
/** Installation duration in milliseconds */
|
|
1728
|
+
installDurationMs?: number;
|
|
1729
|
+
/** Installation parameters used */
|
|
1730
|
+
installParams?: any;
|
|
1731
|
+
/** Plugin manifest information */
|
|
1732
|
+
manifest?: Pick<PluginManifest, 'prompts' | 'tools' | 'resources'>;
|
|
1733
|
+
/** Additional metadata */
|
|
1734
|
+
metadata?: Record<string, any>;
|
|
1735
|
+
/** Platform information */
|
|
1736
|
+
platform?: string;
|
|
1737
|
+
/** Whether the installation was successful */
|
|
1738
|
+
success: boolean;
|
|
1739
|
+
/** User agent (real user agent) */
|
|
1740
|
+
userAgent?: string;
|
|
1741
|
+
/** Plugin version */
|
|
1742
|
+
version: string;
|
|
1743
|
+
}
|
|
1744
|
+
/**
|
|
1745
|
+
* Install report response data
|
|
1746
|
+
*/
|
|
1747
|
+
interface InstallReportResponse {
|
|
1748
|
+
/** Whether the manifest was used to update plugin version data */
|
|
1749
|
+
manifestUpdated?: boolean;
|
|
1750
|
+
/** Message about the processing result */
|
|
1751
|
+
message: string;
|
|
1752
|
+
/** Whether a new version was created based on the report */
|
|
1753
|
+
newVersionCreated?: boolean;
|
|
1754
|
+
/** Whether the report was successfully recorded */
|
|
1755
|
+
success: boolean;
|
|
1756
|
+
}
|
|
1757
|
+
/**
|
|
1758
|
+
* Install statistics data
|
|
1759
|
+
*/
|
|
1760
|
+
interface InstallStats {
|
|
1761
|
+
/** Average installation time in milliseconds */
|
|
1762
|
+
averageInstallTime: number;
|
|
1763
|
+
/** Number of failed installations */
|
|
1764
|
+
failedInstalls: number;
|
|
1765
|
+
/** Success rate as percentage */
|
|
1766
|
+
successRate: number;
|
|
1767
|
+
/** Number of successful installations */
|
|
1768
|
+
successfulInstalls: number;
|
|
1769
|
+
/** Most common installation errors */
|
|
1770
|
+
topErrors: Array<{
|
|
1771
|
+
count: number;
|
|
1772
|
+
errorCode: string;
|
|
1773
|
+
errorMessage: string;
|
|
1774
|
+
}>;
|
|
1775
|
+
/** Total number of installation attempts */
|
|
1776
|
+
totalInstalls: number;
|
|
1777
|
+
}
|
|
1778
|
+
/**
|
|
1779
|
+
* Install log entry data
|
|
1780
|
+
*/
|
|
1781
|
+
interface InstallLogEntry {
|
|
1782
|
+
/** When the log was created */
|
|
1783
|
+
createdAt: string;
|
|
1784
|
+
/** Error code if failed */
|
|
1785
|
+
errorCode?: string | null;
|
|
1786
|
+
/** Error message if failed */
|
|
1787
|
+
errorMessage?: string | null;
|
|
1788
|
+
/** Log entry ID */
|
|
1789
|
+
id: number;
|
|
1790
|
+
/** Plugin identifier */
|
|
1791
|
+
identifier: string;
|
|
1792
|
+
/** Installation duration in milliseconds */
|
|
1793
|
+
installDurationMs: number;
|
|
1794
|
+
/** Platform information */
|
|
1795
|
+
platform?: string | null;
|
|
1796
|
+
/** Whether installation was successful */
|
|
1797
|
+
success: boolean;
|
|
1798
|
+
/** Plugin version */
|
|
1799
|
+
version: string;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
/**
|
|
1803
|
+
* Skill Install Report Types
|
|
1804
|
+
*
|
|
1805
|
+
* This module defines the types for skill installation reporting functionality.
|
|
1806
|
+
* These types support CLI clients reporting their installation attempts.
|
|
1807
|
+
* Shared between the API server and client SDKs.
|
|
1808
|
+
*/
|
|
1809
|
+
/**
|
|
1810
|
+
* Skill install report request data
|
|
1811
|
+
*/
|
|
1812
|
+
interface SkillInstallReportRequest {
|
|
1813
|
+
/** Error code if installation failed */
|
|
1814
|
+
errorCode?: string;
|
|
1815
|
+
/** Error message if installation failed */
|
|
1816
|
+
errorMessage?: string;
|
|
1817
|
+
/** Skill identifier */
|
|
1818
|
+
identifier: string;
|
|
1819
|
+
/** Installation duration in milliseconds */
|
|
1820
|
+
installDurationMs: number;
|
|
1821
|
+
/** Additional metadata */
|
|
1822
|
+
metadata?: Record<string, any>;
|
|
1823
|
+
/** Platform information */
|
|
1824
|
+
platform?: string;
|
|
1825
|
+
/** Whether the installation was successful */
|
|
1826
|
+
success: boolean;
|
|
1827
|
+
/** Skill version (optional, omit = latest) */
|
|
1828
|
+
version?: string;
|
|
1829
|
+
}
|
|
1830
|
+
/**
|
|
1831
|
+
* Skill install report response data
|
|
1832
|
+
*/
|
|
1833
|
+
interface SkillInstallReportResponse {
|
|
1834
|
+
/** Message about the processing result */
|
|
1835
|
+
message: string;
|
|
1836
|
+
/** Whether the report was successfully recorded */
|
|
1837
|
+
success: boolean;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
/**
|
|
1841
|
+
* Skill Type Definitions
|
|
1842
|
+
*
|
|
1843
|
+
* This module defines types for skill entities in the marketplace.
|
|
1844
|
+
* Skills are standalone packages that can be imported from GitHub,
|
|
1845
|
+
* browsed, and downloaded.
|
|
1846
|
+
*/
|
|
1847
|
+
/**
|
|
1848
|
+
* Standard skill category enum
|
|
1849
|
+
* Used for AI-generated and validated skill categories
|
|
1850
|
+
*/
|
|
1851
|
+
declare enum SkillCategoryEnum {
|
|
1852
|
+
AILLMs = "ai-llms",
|
|
1853
|
+
AgentToAgentProtocols = "agent-to-agent-protocols",
|
|
1854
|
+
AppleAppsServices = "apple-apps-services",
|
|
1855
|
+
BrowserAutomation = "browser-automation",
|
|
1856
|
+
CLIUtilities = "cli-utilities",
|
|
1857
|
+
CalendarScheduling = "calendar-scheduling",
|
|
1858
|
+
ClawdbotTools = "clawdbot-tools",
|
|
1859
|
+
CodingAgentsIDEs = "coding-agents-ides",
|
|
1860
|
+
Communication = "communication",
|
|
1861
|
+
DataAnalytics = "data-analytics",
|
|
1862
|
+
DevOpsCloud = "devops-cloud",
|
|
1863
|
+
Finance = "finance",
|
|
1864
|
+
Gaming = "gaming",
|
|
1865
|
+
GitGitHub = "git-github",
|
|
1866
|
+
HealthFitness = "health-fitness",
|
|
1867
|
+
IOSMacOSDevelopment = "ios-macos-development",
|
|
1868
|
+
ImageVideoGeneration = "image-video-generation",
|
|
1869
|
+
MarketingSales = "marketing-sales",
|
|
1870
|
+
MediaStreaming = "media-streaming",
|
|
1871
|
+
Moltbook = "moltbook",
|
|
1872
|
+
NotesPKM = "notes-pkm",
|
|
1873
|
+
PDFDocuments = "pdf-documents",
|
|
1874
|
+
PersonalDevelopment = "personal-development",
|
|
1875
|
+
ProductivityTasks = "productivity-tasks",
|
|
1876
|
+
SearchResearch = "search-research",
|
|
1877
|
+
SecurityPasswords = "security-passwords",
|
|
1878
|
+
SelfHostedAutomation = "self-hosted-automation",
|
|
1879
|
+
ShoppingEcommerce = "shopping-ecommerce",
|
|
1880
|
+
SmartHomeIoT = "smart-home-iot",
|
|
1881
|
+
SpeechTranscription = "speech-transcription",
|
|
1882
|
+
Transportation = "transportation",
|
|
1883
|
+
WebFrontendDevelopment = "web-frontend-development"
|
|
1884
|
+
}
|
|
1885
|
+
/**
|
|
1886
|
+
* Array of valid skill category values
|
|
1887
|
+
*/
|
|
1888
|
+
declare const SKILL_CATEGORY_VALUES: SkillCategoryEnum[];
|
|
1889
|
+
/**
|
|
1890
|
+
* Skill author information
|
|
1891
|
+
*/
|
|
1892
|
+
interface SkillAuthor {
|
|
1893
|
+
/** Author's display name */
|
|
1894
|
+
name: string;
|
|
1895
|
+
/** Author's URL (website, GitHub profile, etc.) */
|
|
1896
|
+
url?: string;
|
|
1897
|
+
}
|
|
1898
|
+
/**
|
|
1899
|
+
* GitHub metadata for skills
|
|
1900
|
+
*/
|
|
1901
|
+
interface SkillGitHubMeta {
|
|
1902
|
+
/** Number of forks */
|
|
1903
|
+
forks?: number;
|
|
1904
|
+
/** Full repository name (owner/repo) */
|
|
1905
|
+
fullName?: string;
|
|
1906
|
+
/** Number of open issues */
|
|
1907
|
+
openIssues?: number;
|
|
1908
|
+
/** Number of GitHub stars */
|
|
1909
|
+
stars?: number;
|
|
1910
|
+
/** GitHub repository URL */
|
|
1911
|
+
url?: string;
|
|
1912
|
+
/** Number of watchers */
|
|
1913
|
+
watchers?: number;
|
|
1914
|
+
}
|
|
1915
|
+
/**
|
|
1916
|
+
* Skill license information
|
|
1917
|
+
*/
|
|
1918
|
+
interface SkillLicense {
|
|
1919
|
+
/** License name (e.g., MIT, Apache-2.0) */
|
|
1920
|
+
name: string;
|
|
1921
|
+
/** URL to the license text */
|
|
1922
|
+
url?: string;
|
|
1923
|
+
}
|
|
1924
|
+
/**
|
|
1925
|
+
* Resource file metadata
|
|
1926
|
+
*/
|
|
1927
|
+
interface SkillResource {
|
|
1928
|
+
/** SHA256 hash of the file */
|
|
1929
|
+
fileHash: string;
|
|
1930
|
+
/** File size in bytes */
|
|
1931
|
+
size: number;
|
|
1932
|
+
}
|
|
1933
|
+
/**
|
|
1934
|
+
* Skill manifest from SKILL.md frontmatter
|
|
1935
|
+
*/
|
|
1936
|
+
interface SkillManifest {
|
|
1937
|
+
/** Author information */
|
|
1938
|
+
author?: SkillAuthor;
|
|
1939
|
+
/** Category */
|
|
1940
|
+
category?: string;
|
|
1941
|
+
/** Description */
|
|
1942
|
+
description: string;
|
|
1943
|
+
/** Icon URL or emoji */
|
|
1944
|
+
icon?: string;
|
|
1945
|
+
/** License identifier */
|
|
1946
|
+
license?: string;
|
|
1947
|
+
/** License URL */
|
|
1948
|
+
licenseUrl?: string;
|
|
1949
|
+
/** Skill name */
|
|
1950
|
+
name: string;
|
|
1951
|
+
/** GitHub repository URL */
|
|
1952
|
+
repository?: string;
|
|
1953
|
+
/** Original source URL */
|
|
1954
|
+
sourceUrl?: string;
|
|
1955
|
+
/** Short summary */
|
|
1956
|
+
summary?: string;
|
|
1957
|
+
/** Tags for categorization */
|
|
1958
|
+
tags?: string[];
|
|
1959
|
+
/** Version string */
|
|
1960
|
+
version?: string;
|
|
1961
|
+
}
|
|
1962
|
+
/**
|
|
1963
|
+
* Skill list item for marketplace listing
|
|
1964
|
+
*/
|
|
1965
|
+
interface SkillListItem {
|
|
1966
|
+
/** Author name */
|
|
1967
|
+
author?: string;
|
|
1968
|
+
/** Category */
|
|
1969
|
+
category?: string;
|
|
1970
|
+
/** Number of comments */
|
|
1971
|
+
commentCount: number;
|
|
1972
|
+
/** Creation timestamp (ISO string) */
|
|
1973
|
+
createdAt: string;
|
|
1974
|
+
/** Brief description */
|
|
1975
|
+
description: string;
|
|
1976
|
+
/** GitHub stats */
|
|
1977
|
+
github?: {
|
|
1978
|
+
forks?: number;
|
|
1979
|
+
stars?: number;
|
|
1980
|
+
url?: string;
|
|
1981
|
+
watchers?: number;
|
|
1982
|
+
};
|
|
1983
|
+
/** Homepage URL */
|
|
1984
|
+
homepage?: string;
|
|
1985
|
+
/** Icon URL (GitHub org avatar) */
|
|
1986
|
+
icon?: string;
|
|
1987
|
+
/** Unique skill identifier */
|
|
1988
|
+
identifier: string;
|
|
1989
|
+
/** Install/download count */
|
|
1990
|
+
installCount: number;
|
|
1991
|
+
/** Whether the skill is featured */
|
|
1992
|
+
isFeatured: boolean;
|
|
1993
|
+
/** Whether the skill is official */
|
|
1994
|
+
isOfficial: boolean;
|
|
1995
|
+
/** Whether the skill is validated */
|
|
1996
|
+
isValidated: boolean;
|
|
1997
|
+
/** License name */
|
|
1998
|
+
license?: string;
|
|
1999
|
+
/** Logo URL */
|
|
2000
|
+
logo?: string;
|
|
2001
|
+
/** Canonical skill title from the current version; locale does not affect this field */
|
|
2002
|
+
name: string;
|
|
2003
|
+
/** Average rating */
|
|
2004
|
+
ratingAvg?: number;
|
|
2005
|
+
/** Number of ratings */
|
|
2006
|
+
ratingCount: number;
|
|
2007
|
+
/** Number of resources */
|
|
2008
|
+
resourcesCount?: number;
|
|
2009
|
+
/** Tags for discovery */
|
|
2010
|
+
tags?: string[];
|
|
2011
|
+
/** Last update timestamp (ISO string) */
|
|
2012
|
+
updatedAt: string;
|
|
2013
|
+
/** Current version string */
|
|
2014
|
+
version: string;
|
|
2015
|
+
}
|
|
2016
|
+
/**
|
|
2017
|
+
* Skill list response with pagination
|
|
2018
|
+
*/
|
|
2019
|
+
interface SkillListResponse {
|
|
2020
|
+
/** Available categories */
|
|
2021
|
+
categories: string[];
|
|
2022
|
+
/** Current page number */
|
|
2023
|
+
currentPage: number;
|
|
2024
|
+
/** List of skills */
|
|
2025
|
+
items: SkillListItem[];
|
|
2026
|
+
/** Page size */
|
|
2027
|
+
pageSize: number;
|
|
2028
|
+
/** Total number of skills */
|
|
2029
|
+
totalCount: number;
|
|
2030
|
+
/** Total number of pages */
|
|
2031
|
+
totalPages: number;
|
|
2032
|
+
}
|
|
2033
|
+
/**
|
|
2034
|
+
* Skill version summary
|
|
2035
|
+
*/
|
|
2036
|
+
interface SkillVersionSummary {
|
|
2037
|
+
/** Changelog for this version */
|
|
2038
|
+
changelog?: string;
|
|
2039
|
+
/** Creation timestamp (ISO string) */
|
|
2040
|
+
createdAt: string;
|
|
2041
|
+
/** Whether this is the latest version */
|
|
2042
|
+
isLatest: boolean;
|
|
2043
|
+
/** Whether this version has been validated */
|
|
2044
|
+
isValidated?: boolean;
|
|
2045
|
+
/** Version string */
|
|
2046
|
+
version: string;
|
|
2047
|
+
/** Version number */
|
|
2048
|
+
versionNumber: number;
|
|
2049
|
+
}
|
|
2050
|
+
/**
|
|
2051
|
+
* Detailed skill information
|
|
2052
|
+
*/
|
|
2053
|
+
interface SkillDetail {
|
|
2054
|
+
/** Author information */
|
|
2055
|
+
author?: SkillAuthor;
|
|
2056
|
+
/** Category */
|
|
2057
|
+
category?: string;
|
|
2058
|
+
/** SKILL.md body content (markdown) */
|
|
2059
|
+
content: string;
|
|
2060
|
+
/** Creation timestamp (ISO string) */
|
|
2061
|
+
createdAt: string;
|
|
2062
|
+
/** Description */
|
|
2063
|
+
description: string;
|
|
2064
|
+
/** GitHub metadata */
|
|
2065
|
+
github?: SkillGitHubMeta;
|
|
2066
|
+
/** Homepage URL */
|
|
2067
|
+
homepage?: string;
|
|
2068
|
+
/** Icon URL (GitHub org avatar) */
|
|
2069
|
+
icon?: string;
|
|
2070
|
+
/** Unique skill identifier */
|
|
2071
|
+
identifier: string;
|
|
2072
|
+
/** Install/download count */
|
|
2073
|
+
installCount: number;
|
|
2074
|
+
/** Whether the skill is featured */
|
|
2075
|
+
isFeatured: boolean;
|
|
2076
|
+
/** Whether the skill is official */
|
|
2077
|
+
isOfficial: boolean;
|
|
2078
|
+
/** Whether the skill is validated */
|
|
2079
|
+
isValidated: boolean;
|
|
2080
|
+
/** License information */
|
|
2081
|
+
license?: SkillLicense;
|
|
2082
|
+
/** Logo URL */
|
|
2083
|
+
logo?: string;
|
|
2084
|
+
/** Complete manifest from SKILL.md */
|
|
2085
|
+
manifest: SkillManifest;
|
|
2086
|
+
/** Canonical skill title from the current version; locale does not affect this field */
|
|
2087
|
+
name: string;
|
|
2088
|
+
/** Overview information */
|
|
2089
|
+
overview: {
|
|
2090
|
+
summary?: string;
|
|
2091
|
+
};
|
|
2092
|
+
/** Average rating */
|
|
2093
|
+
ratingAverage?: number;
|
|
2094
|
+
/** Number of ratings */
|
|
2095
|
+
ratingCount: number;
|
|
2096
|
+
/** GitHub repository URL */
|
|
2097
|
+
repository?: string;
|
|
2098
|
+
/** Resource files: path -> metadata */
|
|
2099
|
+
resources: Record<string, SkillResource>;
|
|
2100
|
+
/** Tags */
|
|
2101
|
+
tags?: string[];
|
|
2102
|
+
/** Last update timestamp (ISO string) */
|
|
2103
|
+
updatedAt: string;
|
|
2104
|
+
/** Validation timestamp (ISO string) */
|
|
2105
|
+
validatedAt?: string;
|
|
2106
|
+
/** Current version string */
|
|
2107
|
+
version: string;
|
|
2108
|
+
/** Version number */
|
|
2109
|
+
versionNumber: number;
|
|
2110
|
+
/** All versions of this skill */
|
|
2111
|
+
versions: SkillVersionSummary[];
|
|
2112
|
+
}
|
|
2113
|
+
/**
|
|
2114
|
+
* Skill category with count
|
|
2115
|
+
*/
|
|
2116
|
+
interface SkillCategory {
|
|
2117
|
+
/** Category name */
|
|
2118
|
+
category: string;
|
|
2119
|
+
/** Number of skills in this category */
|
|
2120
|
+
count: number;
|
|
2121
|
+
}
|
|
2122
|
+
/**
|
|
2123
|
+
* Query parameters for skill categories
|
|
2124
|
+
*/
|
|
2125
|
+
interface SkillCategoryQuery {
|
|
2126
|
+
/** Locale for localized content */
|
|
2127
|
+
locale?: string;
|
|
2128
|
+
/** Search query to filter skills before counting categories */
|
|
2129
|
+
q?: string;
|
|
2130
|
+
}
|
|
2131
|
+
/**
|
|
2132
|
+
* Query parameters for listing skills
|
|
2133
|
+
*/
|
|
2134
|
+
interface SkillListQuery {
|
|
2135
|
+
/** Filter by category */
|
|
2136
|
+
category?: string;
|
|
2137
|
+
/** Filter by featured flag */
|
|
2138
|
+
isFeatured?: 'false' | 'true';
|
|
2139
|
+
/** Filter by official flag */
|
|
2140
|
+
isOfficial?: 'false' | 'true';
|
|
2141
|
+
/** Locale for localized content such as description and summary; title remains canonical */
|
|
2142
|
+
locale?: string;
|
|
2143
|
+
/** Sort order */
|
|
2144
|
+
order?: 'asc' | 'desc';
|
|
2145
|
+
/** Page number (1-based) */
|
|
2146
|
+
page?: number;
|
|
2147
|
+
/** Number of items per page */
|
|
2148
|
+
pageSize?: number;
|
|
2149
|
+
/** Search query string */
|
|
2150
|
+
query?: string;
|
|
2151
|
+
/** Sort field */
|
|
2152
|
+
sort?: 'commentCount' | 'createdAt' | 'forks' | 'installCount' | 'name' | 'ratingAverage' | 'recommended' | 'relevance' | 'stars' | 'updatedAt' | 'watchers';
|
|
2153
|
+
}
|
|
2154
|
+
/**
|
|
2155
|
+
* Query parameters for skill detail
|
|
2156
|
+
*/
|
|
2157
|
+
interface SkillDetailQuery {
|
|
2158
|
+
/** Locale for localized content such as description and summary; title remains canonical */
|
|
2159
|
+
locale?: string;
|
|
2160
|
+
/** Specific version to retrieve */
|
|
2161
|
+
version?: string;
|
|
2162
|
+
}
|
|
2163
|
+
/**
|
|
2164
|
+
* Parameters for reporting a GitHub skill
|
|
2165
|
+
*/
|
|
2166
|
+
interface ReportGitHubSkillParams {
|
|
2167
|
+
/** Branch name (optional) */
|
|
2168
|
+
branch?: string;
|
|
2169
|
+
/** GitHub repository URL */
|
|
2170
|
+
gitUrl: string;
|
|
2171
|
+
}
|
|
2172
|
+
/**
|
|
2173
|
+
* Response from reporting a GitHub skill
|
|
2174
|
+
*/
|
|
2175
|
+
interface ReportGitHubSkillResponse {
|
|
2176
|
+
/** Skill identifier */
|
|
2177
|
+
identifier: string;
|
|
2178
|
+
/** Status message */
|
|
2179
|
+
message: string;
|
|
2180
|
+
/** Status: 'queued' for new import, 'exists' if skill already exists */
|
|
2181
|
+
status: 'exists' | 'queued';
|
|
2182
|
+
}
|
|
2183
|
+
/**
|
|
2184
|
+
* Response for skill versions list
|
|
2185
|
+
*/
|
|
2186
|
+
interface SkillVersionsResponse {
|
|
2187
|
+
/** List of version summaries */
|
|
2188
|
+
data: SkillVersionSummary[];
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
type SkillCollectionItemSort = 'createdAt' | 'installCount' | 'name' | 'ratingAverage' | 'updatedAt';
|
|
2192
|
+
type SkillCollectionStatus = 'published' | 'unpublished';
|
|
2193
|
+
interface SkillCollectionListQuery {
|
|
2194
|
+
locale?: string;
|
|
2195
|
+
}
|
|
2196
|
+
interface SkillCollectionListItem {
|
|
2197
|
+
cover?: string;
|
|
2198
|
+
createdAt: string;
|
|
2199
|
+
icon: string;
|
|
2200
|
+
id: number;
|
|
2201
|
+
itemCount: number;
|
|
2202
|
+
position: number;
|
|
2203
|
+
slug: string;
|
|
2204
|
+
summary: string;
|
|
2205
|
+
title: string;
|
|
2206
|
+
updatedAt: string;
|
|
2207
|
+
}
|
|
2208
|
+
type SkillCollectionListResponse = SkillCollectionListItem[];
|
|
2209
|
+
interface SkillCollectionDetailQuery {
|
|
2210
|
+
locale?: string;
|
|
2211
|
+
page?: number;
|
|
2212
|
+
pageSize?: number;
|
|
2213
|
+
q?: string;
|
|
2214
|
+
sort?: SkillCollectionItemSort;
|
|
2215
|
+
}
|
|
2216
|
+
interface SkillCollectionDetail extends SkillCollectionListItem {
|
|
2217
|
+
currentPage: number;
|
|
2218
|
+
description?: string;
|
|
2219
|
+
items: SkillListItem[];
|
|
2220
|
+
pageSize: number;
|
|
2221
|
+
totalCount: number;
|
|
2222
|
+
totalPages: number;
|
|
2223
|
+
}
|
|
2224
|
+
interface AdminSkillCollectionListQuery {
|
|
2225
|
+
page?: number;
|
|
2226
|
+
pageSize?: number;
|
|
2227
|
+
q?: string;
|
|
2228
|
+
status?: SkillCollectionStatus | 'all';
|
|
2229
|
+
}
|
|
2230
|
+
interface AdminSkillCollectionListItem extends SkillCollectionListItem {
|
|
2231
|
+
status: SkillCollectionStatus;
|
|
2232
|
+
}
|
|
2233
|
+
interface AdminSkillCollectionListResponse {
|
|
2234
|
+
currentPage: number;
|
|
2235
|
+
items: AdminSkillCollectionListItem[];
|
|
2236
|
+
pageSize: number;
|
|
2237
|
+
totalCount: number;
|
|
2238
|
+
totalPages: number;
|
|
2239
|
+
}
|
|
2240
|
+
interface SkillCollectionConfiguredSkill {
|
|
2241
|
+
identifier: string;
|
|
2242
|
+
name: string;
|
|
2243
|
+
skillId: number;
|
|
2244
|
+
}
|
|
2245
|
+
interface AdminSkillCollectionDetail extends AdminSkillCollectionListItem {
|
|
2246
|
+
description?: string;
|
|
2247
|
+
excludedSkillIdentifiers: string[];
|
|
2248
|
+
manualExcludedSkills: SkillCollectionConfiguredSkill[];
|
|
2249
|
+
manualIncludedSkills: SkillCollectionConfiguredSkill[];
|
|
2250
|
+
repositories: string[];
|
|
2251
|
+
skillIdentifiers: string[];
|
|
2252
|
+
}
|
|
2253
|
+
interface SkillCollectionLocalization {
|
|
2254
|
+
collectionId: number;
|
|
2255
|
+
createdAt: string;
|
|
2256
|
+
description?: string;
|
|
2257
|
+
id: number;
|
|
2258
|
+
locale: string;
|
|
2259
|
+
summary: string;
|
|
2260
|
+
title: string;
|
|
2261
|
+
}
|
|
2262
|
+
interface UpsertSkillCollectionLocalizationRequest {
|
|
2263
|
+
description?: string | null;
|
|
2264
|
+
summary: string;
|
|
2265
|
+
title: string;
|
|
2266
|
+
}
|
|
2267
|
+
interface SkillCollectionLocalizationBatchResult {
|
|
2268
|
+
action: 'created' | 'updated';
|
|
2269
|
+
data: SkillCollectionLocalization;
|
|
2270
|
+
locale: string;
|
|
2271
|
+
}
|
|
2272
|
+
interface SkillCollectionLocalizationBatchResponse {
|
|
2273
|
+
message: string;
|
|
2274
|
+
results: SkillCollectionLocalizationBatchResult[];
|
|
2275
|
+
}
|
|
2276
|
+
interface BatchUpsertSkillCollectionLocalizationsRequest {
|
|
2277
|
+
localizations: Array<UpsertSkillCollectionLocalizationRequest & {
|
|
2278
|
+
locale: string;
|
|
2279
|
+
}>;
|
|
2280
|
+
}
|
|
2281
|
+
interface CreateSkillCollectionRequest {
|
|
2282
|
+
cover?: string | null;
|
|
2283
|
+
description?: string | null;
|
|
2284
|
+
excludedSkillIdentifiers?: string[];
|
|
2285
|
+
icon: string;
|
|
2286
|
+
position?: number;
|
|
2287
|
+
repositories?: string[];
|
|
2288
|
+
skillIdentifiers?: string[];
|
|
2289
|
+
slug: string;
|
|
2290
|
+
status?: SkillCollectionStatus;
|
|
2291
|
+
summary: string;
|
|
2292
|
+
title: string;
|
|
2293
|
+
}
|
|
2294
|
+
interface UpdateSkillCollectionRequest {
|
|
2295
|
+
cover?: string | null;
|
|
2296
|
+
description?: string | null;
|
|
2297
|
+
excludedSkillIdentifiers?: string[];
|
|
2298
|
+
icon?: string;
|
|
2299
|
+
position?: number;
|
|
2300
|
+
repositories?: string[];
|
|
2301
|
+
skillIdentifiers?: string[];
|
|
2302
|
+
slug?: string;
|
|
2303
|
+
status?: SkillCollectionStatus;
|
|
2304
|
+
summary?: string;
|
|
2305
|
+
title?: string;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
declare const TASK_TEMPLATE_CATEGORY_VALUES: readonly ["content-creation", "engineering", "design", "learning-research", "business", "marketing", "product", "sales-customer", "operations", "hr", "finance-legal", "creator", "investing", "parenting", "health", "hobbies", "personal-life"];
|
|
2309
|
+
declare const TASK_TEMPLATE_FALLBACK_CATEGORY_VALUES: readonly ["personal-life", "learning-research"];
|
|
2310
|
+
declare const TASK_TEMPLATE_ICON_VALUES: readonly ["github"];
|
|
2311
|
+
declare const TASK_TEMPLATE_INTEREST_AREA_VALUES: readonly ["writing", "coding", "design", "education", "business", "marketing", "product", "sales", "operations", "hr", "finance-legal", "creator", "investing", "parenting", "health", "hobbies", "personal"];
|
|
2312
|
+
declare const TASK_TEMPLATE_CONNECTOR_SOURCE_VALUES: readonly ["composio", "hubstr"];
|
|
2313
|
+
type TaskTemplateCategory = (typeof TASK_TEMPLATE_CATEGORY_VALUES)[number];
|
|
2314
|
+
type TaskTemplateIcon = (typeof TASK_TEMPLATE_ICON_VALUES)[number];
|
|
2315
|
+
type TaskTemplateInterestAreaKey = (typeof TASK_TEMPLATE_INTEREST_AREA_VALUES)[number];
|
|
2316
|
+
type TaskTemplateConnectorSource = (typeof TASK_TEMPLATE_CONNECTOR_SOURCE_VALUES)[number];
|
|
2317
|
+
interface TaskTemplateConnectorReference {
|
|
2318
|
+
identifier: string;
|
|
2319
|
+
source: TaskTemplateConnectorSource;
|
|
2320
|
+
}
|
|
2321
|
+
interface TaskTemplateConnector extends TaskTemplateConnectorReference {
|
|
2322
|
+
required: boolean;
|
|
2323
|
+
}
|
|
2324
|
+
interface TaskTemplateLocalizedContent {
|
|
2325
|
+
description: string;
|
|
2326
|
+
instruction: string;
|
|
2327
|
+
title: string;
|
|
2328
|
+
}
|
|
2329
|
+
interface TaskTemplateItem extends TaskTemplateLocalizedContent {
|
|
2330
|
+
category: TaskTemplateCategory;
|
|
2331
|
+
connectors: TaskTemplateConnector[];
|
|
2332
|
+
createdAt: string;
|
|
2333
|
+
cronPattern: string;
|
|
2334
|
+
icon?: TaskTemplateIcon;
|
|
2335
|
+
id: number;
|
|
2336
|
+
identifier: string;
|
|
2337
|
+
interests: TaskTemplateInterestAreaKey[];
|
|
2338
|
+
updatedAt: string;
|
|
2339
|
+
version: string;
|
|
2340
|
+
versionNumber: number;
|
|
2341
|
+
}
|
|
2342
|
+
type TaskTemplate = TaskTemplateItem;
|
|
2343
|
+
interface TaskTemplateRecommendationQuery {
|
|
2344
|
+
count?: number;
|
|
2345
|
+
excludeIds?: number[];
|
|
2346
|
+
interestKeys: string[];
|
|
2347
|
+
locale?: string;
|
|
2348
|
+
refreshSeed?: string;
|
|
2349
|
+
seedKey?: string;
|
|
2350
|
+
}
|
|
2351
|
+
interface TaskTemplateRecommendationResponse {
|
|
2352
|
+
items: TaskTemplateItem[];
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
/**
|
|
2356
|
+
* Trusted Client Domain Types
|
|
2357
|
+
*
|
|
2358
|
+
* Shared types for the Trusted Client management system used by Market API and SDK.
|
|
2359
|
+
*/
|
|
2360
|
+
type TrustedClientStatus = 'active' | 'disabled' | 'revoked';
|
|
2361
|
+
type TrustedClientSecretStatus = 'active' | 'revoked' | 'rotating';
|
|
2362
|
+
interface TrustedClientItem {
|
|
2363
|
+
clientId: string;
|
|
2364
|
+
createdAt: string;
|
|
2365
|
+
description?: string | null;
|
|
2366
|
+
id: number;
|
|
2367
|
+
name: string;
|
|
2368
|
+
status: TrustedClientStatus;
|
|
2369
|
+
updatedAt: string;
|
|
2370
|
+
}
|
|
2371
|
+
interface CreateTrustedClientRequest {
|
|
2372
|
+
clientId: string;
|
|
2373
|
+
description?: string;
|
|
2374
|
+
name: string;
|
|
2375
|
+
}
|
|
2376
|
+
interface UpdateTrustedClientRequest {
|
|
2377
|
+
description?: string;
|
|
2378
|
+
name?: string;
|
|
2379
|
+
status?: TrustedClientStatus;
|
|
2380
|
+
}
|
|
2381
|
+
interface CreateTrustedClientResponse {
|
|
2382
|
+
client: TrustedClientItem;
|
|
2383
|
+
secret: TrustedClientSecretItem;
|
|
2384
|
+
}
|
|
2385
|
+
interface TrustedClientSecretItem {
|
|
2386
|
+
activatedAt: string;
|
|
2387
|
+
createdAt: string;
|
|
2388
|
+
description?: string | null;
|
|
2389
|
+
expiresAt?: string | null;
|
|
2390
|
+
id: number;
|
|
2391
|
+
keyId: string;
|
|
2392
|
+
lastUsedAt?: string | null;
|
|
2393
|
+
revokedAt?: string | null;
|
|
2394
|
+
/**
|
|
2395
|
+
* The actual secret value. Only returned on creation/rotation.
|
|
2396
|
+
* For list operations, this may be masked or omitted in the future.
|
|
2397
|
+
*/
|
|
2398
|
+
secretValue: string;
|
|
2399
|
+
status: TrustedClientSecretStatus;
|
|
2400
|
+
trustedClientId: number;
|
|
2401
|
+
}
|
|
2402
|
+
interface RotateSecretRequest {
|
|
2403
|
+
description?: string;
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
export { type AddMemberRequest, type AddMemberResponse, type AdminDeploymentOption, type AdminPluginItem, type AdminPluginItemDetail, AdminPluginItemSchema, type AdminSkillCollectionDetail, type AdminSkillCollectionListItem, type AdminSkillCollectionListQuery, type AdminSkillCollectionListResponse, type AdminSystemDependency, type AgentEventRequest, type AgentEventType, type AgentItem, type AgentMarketListQuery, type BasePluginItem, BasePluginItemSchema, type BatchUpsertSkillCollectionLocalizationsRequest, type CallLogEntry, type CallReportRequest, type CallReportResponse, type CallStats, type CategoryItem, type CategoryListQuery, type CategoryListResponse, type CloudGatewayErrorResponse, type CloudGatewayRequest, type CloudGatewayResponse, type ConnectionConfig, type ConnectionType, ConnectionTypeEnum, type CreateOrganizationRequest, type CreateOrganizationResponse, type CreateSkillCollectionRequest, type CreateTrustedClientRequest, type CreateTrustedClientResponse, type CredConfig, type CredType, type CustomPluginInfo, type DeploymentOption, type FileCredConfig, type IncompleteI18nPlugin, type InjectCredsForSkillRequest, type InjectCredsForSkillResponse, type InjectCredsRequest, type InjectCredsResponse, type InjectedFileInfo, type InstallFailureAnalysis, type InstallFailureAnalysisQuery, type InstallLogEntry, type InstallReportRequest, type InstallReportResponse, type InstallStats, type InstallationDetails, type InstallationMethod, InstallationMethodEnum, type KVEnvCredConfig, type KVHeaderCredConfig, type KVPayload, type MarketItemBase, type MarketPluginItem, type McpToolContent, type MyOrganizationItem, type OAuthCredConfig, type OrganizationItem, type OrganizationMemberItem, type OrganizationMemberRole, PluginCapabilitiesSchema, type PluginCompatibility, type PluginConnectionType, PluginConnectionTypeEnum, type PluginEventRequest, type PluginEventType, type PluginItemDetail, type PluginListQuery, type PluginManifest, type PluginMethodType, type PluginPrompt, type PluginResource, type PluginSortBy, type PluginTool, type PluginVersion, type PluginVersionLocalization, type PluginVersionSummary, type PromptArgument, type RangeDataPoint, type RangeQuery, type RangeStats, type ReconcileMembersRequest, type ReconcileMembersResponse, type ReportGitHubSkillParams, type ReportGitHubSkillResponse, type RotateSecretRequest, SKILL_CATEGORY_VALUES, type SitemapItem, type SitemapResponse, type SkillAuthor, type SkillCategory, SkillCategoryEnum, type SkillCategoryQuery, type SkillCollectionConfiguredSkill, type SkillCollectionDetail, type SkillCollectionDetailQuery, type SkillCollectionItemSort, type SkillCollectionListItem, type SkillCollectionListQuery, type SkillCollectionListResponse, type SkillCollectionLocalization, type SkillCollectionLocalizationBatchResponse, type SkillCollectionLocalizationBatchResult, type SkillCollectionStatus, type SkillCredDeclaration, type SkillCredStatus, type SkillDetail, type SkillDetailQuery, type SkillGitHubMeta, type SkillInstallReportRequest, type SkillInstallReportResponse, type SkillLicense, type SkillListItem, type SkillListQuery, type SkillListResponse, type SkillManifest, type SkillResource, type SkillVersionSummary, type SkillVersionsResponse, type StandardCredKey, StandardCredKeys, type SystemDependency, TASK_TEMPLATE_CATEGORY_VALUES, TASK_TEMPLATE_CONNECTOR_SOURCE_VALUES, TASK_TEMPLATE_FALLBACK_CATEGORY_VALUES, TASK_TEMPLATE_ICON_VALUES, TASK_TEMPLATE_INTEREST_AREA_VALUES, type TaskTemplate, type TaskTemplateCategory, type TaskTemplateConnector, type TaskTemplateConnectorReference, type TaskTemplateConnectorSource, type TaskTemplateIcon, type TaskTemplateInterestAreaKey, type TaskTemplateItem, type TaskTemplateLocalizedContent, type TaskTemplateRecommendationQuery, type TaskTemplateRecommendationResponse, type TopPlugin, type TopPluginsQuery, type TrustedClientItem, type TrustedClientSecretItem, type TrustedClientSecretStatus, type TrustedClientStatus, type UpdateMemberRoleRequest, type UpdateMemberRoleResponse, type UpdateOrganizationRequest, type UpdateSkillCollectionRequest, type UpdateTrustedClientRequest, type UpsertSkillCollectionLocalizationRequest, type UserCredSummary };
|