@lobehub/icons 5.3.1 → 5.5.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/README.md +1 -0
- package/es/HermesAgent/components/Avatar.d.ts +5 -0
- package/es/HermesAgent/components/Avatar.js +25 -0
- package/es/HermesAgent/components/Combine.d.ts +5 -0
- package/es/HermesAgent/components/Combine.js +26 -0
- package/es/HermesAgent/components/Mono.d.ts +3 -0
- package/es/HermesAgent/components/Mono.js +45 -0
- package/es/HermesAgent/components/Text.d.ts +3 -0
- package/es/HermesAgent/components/Text.js +39 -0
- package/es/HermesAgent/index.d.ts +13 -0
- package/es/HermesAgent/index.js +12 -0
- package/es/HermesAgent/style.d.ts +7 -0
- package/es/HermesAgent/style.js +9 -0
- package/es/Langfuse/components/Color.js +6 -8
- package/es/Langfuse/components/Mono.js +4 -2
- package/es/Langfuse/components/Text.js +2 -2
- package/es/Langfuse/style.d.ts +3 -3
- package/es/Langfuse/style.js +2 -2
- package/es/Menlo/index.d.ts +2 -0
- package/es/Menlo/index.js +2 -0
- package/es/Meshy/components/Avatar.d.ts +5 -0
- package/es/Meshy/components/Avatar.js +25 -0
- package/es/Meshy/components/Color.d.ts +3 -0
- package/es/Meshy/components/Color.js +106 -0
- package/es/Meshy/components/Combine.d.ts +7 -0
- package/es/Meshy/components/Combine.js +32 -0
- package/es/Meshy/components/Mono.d.ts +3 -0
- package/es/Meshy/components/Mono.js +42 -0
- package/es/Meshy/components/Text.d.ts +3 -0
- package/es/Meshy/components/Text.js +39 -0
- package/es/Meshy/index.d.ts +15 -0
- package/es/Meshy/index.js +14 -0
- package/es/Meshy/style.d.ts +7 -0
- package/es/Meshy/style.js +9 -0
- package/es/NousResearch/style.d.ts +2 -2
- package/es/NousResearch/style.js +3 -3
- package/es/SpeedAI/components/Avatar.d.ts +5 -0
- package/es/SpeedAI/components/Avatar.js +25 -0
- package/es/SpeedAI/components/Color.d.ts +3 -0
- package/es/SpeedAI/components/Color.js +39 -0
- package/es/SpeedAI/components/Combine.d.ts +7 -0
- package/es/SpeedAI/components/Combine.js +32 -0
- package/es/SpeedAI/components/Mono.d.ts +3 -0
- package/es/SpeedAI/components/Mono.js +40 -0
- package/es/SpeedAI/components/Text.d.ts +3 -0
- package/es/SpeedAI/components/Text.js +39 -0
- package/es/SpeedAI/index.d.ts +15 -0
- package/es/SpeedAI/index.js +14 -0
- package/es/SpeedAI/style.d.ts +7 -0
- package/es/SpeedAI/style.js +9 -0
- package/es/Venice/components/Avatar.d.ts +5 -0
- package/es/Venice/components/Avatar.js +25 -0
- package/es/Venice/components/Color.d.ts +3 -0
- package/es/Venice/components/Color.js +46 -0
- package/es/Venice/components/Combine.d.ts +7 -0
- package/es/Venice/components/Combine.js +32 -0
- package/es/Venice/components/Mono.d.ts +3 -0
- package/es/Venice/components/Mono.js +44 -0
- package/es/Venice/components/Text.d.ts +3 -0
- package/es/Venice/components/Text.js +43 -0
- package/es/Venice/index.d.ts +15 -0
- package/es/Venice/index.js +14 -0
- package/es/Venice/style.d.ts +7 -0
- package/es/Venice/style.js +9 -0
- package/es/features/agentConfig.js +10 -0
- package/es/features/providerConfig.js +5 -1
- package/es/features/providerEnum.d.ts +5 -0
- package/es/features/providerEnum.js +5 -0
- package/es/hooks/useFillId.js +2 -2
- package/es/icons.d.ts +4 -0
- package/es/icons.js +4 -0
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/toc.d.ts +3 -21
- package/es/toc.js +3 -5362
- package/es/toc.json +1 -0
- package/es/types/toc.d.ts +20 -0
- package/es/types/toc.js +1 -0
- package/package.json +2 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import Avatar from "./components/Avatar";
|
|
2
|
+
import Color from "./components/Color";
|
|
3
|
+
import Combine from "./components/Combine";
|
|
4
|
+
import Mono from "./components/Mono";
|
|
5
|
+
import Text from "./components/Text";
|
|
6
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
|
7
|
+
var Icons = Mono;
|
|
8
|
+
Icons.Color = Color;
|
|
9
|
+
Icons.Text = Text;
|
|
10
|
+
Icons.Combine = Combine;
|
|
11
|
+
Icons.Avatar = Avatar;
|
|
12
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
|
13
|
+
Icons.title = TITLE;
|
|
14
|
+
export default Icons;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const TITLE = "SpeedAI";
|
|
2
|
+
export declare const COMBINE_TEXT_MULTIPLE = 0.75;
|
|
3
|
+
export declare const COMBINE_SPACE_MULTIPLE = 0.2;
|
|
4
|
+
export declare const COLOR_PRIMARY = "#6366F1";
|
|
5
|
+
export declare const AVATAR_BACKGROUND = "#6366F1";
|
|
6
|
+
export declare const AVATAR_COLOR = "#fff";
|
|
7
|
+
export declare const AVATAR_ICON_MULTIPLE = 0.7;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export var TITLE = 'SpeedAI';
|
|
2
|
+
export var COMBINE_TEXT_MULTIPLE = 0.75;
|
|
3
|
+
export var COMBINE_SPACE_MULTIPLE = 0.2;
|
|
4
|
+
export var COLOR_PRIMARY = '#6366F1';
|
|
5
|
+
|
|
6
|
+
// Avatar constants
|
|
7
|
+
export var AVATAR_BACKGROUND = COLOR_PRIMARY;
|
|
8
|
+
export var AVATAR_COLOR = '#fff';
|
|
9
|
+
export var AVATAR_ICON_MULTIPLE = 0.7;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
|
|
10
|
+
import { memo } from 'react';
|
|
11
|
+
import IconAvatar from "../../features/IconAvatar";
|
|
12
|
+
import { AVATAR_BACKGROUND, AVATAR_COLOR, AVATAR_ICON_MULTIPLE, TITLE } from "../style";
|
|
13
|
+
import Mono from "./Mono";
|
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
|
+
var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
16
|
+
var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
|
|
17
|
+
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
|
18
|
+
Icon: Mono,
|
|
19
|
+
"aria-label": TITLE,
|
|
20
|
+
background: AVATAR_BACKGROUND,
|
|
21
|
+
color: AVATAR_COLOR,
|
|
22
|
+
iconMultiple: AVATAR_ICON_MULTIPLE
|
|
23
|
+
}, rest));
|
|
24
|
+
});
|
|
25
|
+
export default Avatar;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
var _excluded = ["size", "style"];
|
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12
|
+
import { memo } from 'react';
|
|
13
|
+
import { TITLE } from "../style";
|
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
16
|
+
var Icon = /*#__PURE__*/memo(function (_ref) {
|
|
17
|
+
var _ref$size = _ref.size,
|
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
19
|
+
style = _ref.style,
|
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
22
|
+
height: size,
|
|
23
|
+
style: _objectSpread({
|
|
24
|
+
flex: 'none',
|
|
25
|
+
lineHeight: 1
|
|
26
|
+
}, style),
|
|
27
|
+
viewBox: "0 0 24 24",
|
|
28
|
+
width: size,
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
30
|
+
}, rest), {}, {
|
|
31
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
32
|
+
children: TITLE
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
clipRule: "evenodd",
|
|
35
|
+
d: "M8.295 16.074a4.239 4.239 0 00-1.37-.685 4.255 4.255 0 00-1.636-.138 4.27 4.27 0 00-1.566.499c-.472.26-.875.602-1.19.973-.315.37-.59.824-.773 1.336a4.432 4.432 0 00-.257 1.644c.02.564.155 1.125.375 1.621s.528.93.87 1.275c.34.346.766.657 1.256.881.49.224 1.041.36 1.598.381a4.258 4.258 0 001.62-.26 4.25 4.25 0 001.318-.786c.365-.319.703-.728.959-1.206.256-.479.43-1.027.492-1.589a4.436 4.436 0 00-.137-1.659 4.346 4.346 0 00-.675-1.39l.95-.964.691.702h.393l.475-.481v-.399l-.692-.702L12 14.11l1.004 1.018-.691.702v.399l.474.48h.393l.691-.701.95.964a4.346 4.346 0 00-.675 1.39 4.435 4.435 0 00-.137 1.66c.062.56.236 1.11.492 1.588s.594.887.96 1.206c.364.32.812.599 1.316.785a4.258 4.258 0 001.621.261 4.262 4.262 0 001.598-.38c.49-.225.916-.536 1.257-.882.341-.346.648-.779.869-1.275.22-.496.355-1.057.375-1.62a4.433 4.433 0 00-.257-1.645 4.338 4.338 0 00-.774-1.336 4.272 4.272 0 00-1.189-.973 4.27 4.27 0 00-1.566-.5 4.255 4.255 0 00-1.635.14 4.239 4.239 0 00-1.37.684l-.933-.947.69-.702v-.398l-.49-.498h-.393l-.692.701-1.004-1.018L18.15 7.87l2.132 2.163v-2.25H22.5L20.368 5.62 22.5 3.457V3.06l-.491-.498h-.393L12 12.316 2.384 2.56H1.99l-.491.498v.398L3.632 5.62 1.5 7.782h2.218v2.25L5.85 7.87l5.266 5.342-1.004 1.018-.692-.701h-.393l-.49.498v.399l.69.7-.932.948zm8.546 4.95a1.59 1.59 0 00.107 1.49c.256.43.799.73 1.294.716.494.014 1.037-.287 1.293-.716a1.59 1.59 0 00.108-1.49l.054-.06a1.53 1.53 0 001.471-.107c.424-.26.72-.81.707-1.313.014-.502-.283-1.053-.707-1.313a1.53 1.53 0 00-1.471-.107l-.054-.059a1.59 1.59 0 00-.108-1.49c-.256-.43-.799-.73-1.293-.717-.495-.013-1.038.287-1.294.716a1.59 1.59 0 00-.107 1.491l-.054.059a1.53 1.53 0 00-1.472.107c-.424.26-.72.81-.707 1.313-.013.502.283 1.053.707 1.313a1.53 1.53 0 001.472.107l.054.06zm-9.79 1.49a1.59 1.59 0 00.108-1.49l.054-.06a1.53 1.53 0 001.471-.107c.424-.26.72-.81.707-1.313.014-.502-.283-1.053-.707-1.313a1.53 1.53 0 00-1.47-.107l-.055-.059a1.59 1.59 0 00-.107-1.49c-.257-.43-.8-.73-1.294-.717-.495-.013-1.037.287-1.294.716a1.59 1.59 0 00-.107 1.491l-.054.059a1.53 1.53 0 00-1.471.107c-.424.26-.72.81-.707 1.313-.014.502.283 1.053.707 1.313a1.53 1.53 0 001.471.107l.054.06a1.59 1.59 0 00.107 1.49c.257.43.8.73 1.294.716.495.014 1.037-.287 1.294-.716z",
|
|
36
|
+
fill: "#E05A2D",
|
|
37
|
+
fillRule: "evenodd"
|
|
38
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M12.274 2.56L14.8 0l1.25 1.268v4.274l-3.462 3.512h-.625L8.5 5.542V1.268L9.75 0l2.524 2.56zM9.75.898l2.212 2.243v4.12L9.75 5.018V.897zm2.837 2.243L14.799.897v4.12l-2.212 2.244V3.14z",
|
|
41
|
+
fill: "#E05A2D",
|
|
42
|
+
fillRule: "evenodd"
|
|
43
|
+
})]
|
|
44
|
+
}));
|
|
45
|
+
});
|
|
46
|
+
export default Icon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { type IconCombineProps } from "../../features/IconCombine";
|
|
3
|
+
export interface CombineProps extends Omit<IconCombineProps, 'Icon' | 'Text'> {
|
|
4
|
+
type?: 'color' | 'mono';
|
|
5
|
+
}
|
|
6
|
+
declare const Combine: import("react").NamedExoticComponent<CombineProps>;
|
|
7
|
+
export default Combine;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
var _excluded = ["type"];
|
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12
|
+
import { memo } from 'react';
|
|
13
|
+
import IconCombine from "../../features/IconCombine";
|
|
14
|
+
import { COMBINE_SPACE_MULTIPLE, COMBINE_TEXT_MULTIPLE, TITLE } from "../style";
|
|
15
|
+
import Color from "./Color";
|
|
16
|
+
import Mono from "./Mono";
|
|
17
|
+
import Text from "./Text";
|
|
18
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
19
|
+
var Combine = /*#__PURE__*/memo(function (_ref) {
|
|
20
|
+
var _ref$type = _ref.type,
|
|
21
|
+
type = _ref$type === void 0 ? 'mono' : _ref$type,
|
|
22
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
23
|
+
var Icon = type === 'color' ? Color : Mono;
|
|
24
|
+
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
|
25
|
+
Icon: Icon,
|
|
26
|
+
Text: Text,
|
|
27
|
+
"aria-label": TITLE,
|
|
28
|
+
spaceMultiple: COMBINE_SPACE_MULTIPLE,
|
|
29
|
+
textMultiple: COMBINE_TEXT_MULTIPLE
|
|
30
|
+
}, rest));
|
|
31
|
+
});
|
|
32
|
+
export default Combine;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
var _excluded = ["size", "style"];
|
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12
|
+
import { memo } from 'react';
|
|
13
|
+
import { TITLE } from "../style";
|
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
16
|
+
var Icon = /*#__PURE__*/memo(function (_ref) {
|
|
17
|
+
var _ref$size = _ref.size,
|
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
19
|
+
style = _ref.style,
|
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
22
|
+
fill: "currentColor",
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
height: size,
|
|
25
|
+
style: _objectSpread({
|
|
26
|
+
flex: 'none',
|
|
27
|
+
lineHeight: 1
|
|
28
|
+
}, style),
|
|
29
|
+
viewBox: "0 0 24 24",
|
|
30
|
+
width: size,
|
|
31
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
32
|
+
}, rest), {}, {
|
|
33
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
34
|
+
children: TITLE
|
|
35
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M8.295 16.074a4.239 4.239 0 00-1.37-.685 4.255 4.255 0 00-1.636-.138 4.27 4.27 0 00-1.566.499c-.472.26-.875.602-1.19.973-.315.37-.59.824-.773 1.336a4.432 4.432 0 00-.257 1.644c.02.564.155 1.125.375 1.621s.528.93.87 1.275c.34.346.766.657 1.256.881.49.224 1.041.36 1.598.381a4.258 4.258 0 001.62-.26 4.25 4.25 0 001.318-.786c.365-.319.703-.728.959-1.206.256-.479.43-1.027.492-1.589a4.436 4.436 0 00-.137-1.659 4.346 4.346 0 00-.675-1.39l.95-.964.691.702h.393l.475-.481v-.399l-.692-.702L12 14.11l1.004 1.018-.691.702v.399l.474.48h.393l.691-.701.95.964a4.346 4.346 0 00-.675 1.39 4.435 4.435 0 00-.137 1.66c.062.56.236 1.11.492 1.588s.594.887.96 1.206c.364.32.812.599 1.316.785a4.258 4.258 0 001.621.261 4.262 4.262 0 001.598-.38c.49-.225.916-.536 1.257-.882.341-.346.648-.779.869-1.275.22-.496.355-1.057.375-1.62a4.433 4.433 0 00-.257-1.645 4.338 4.338 0 00-.774-1.336 4.272 4.272 0 00-1.189-.973 4.27 4.27 0 00-1.566-.5 4.255 4.255 0 00-1.635.14 4.239 4.239 0 00-1.37.684l-.933-.947.69-.702v-.398l-.49-.498h-.393l-.692.701-1.004-1.018L18.15 7.87l2.132 2.163v-2.25H22.5L20.368 5.62 22.5 3.457V3.06l-.491-.498h-.393L12 12.316 2.384 2.56H1.99l-.491.498v.398L3.632 5.62 1.5 7.782h2.218v2.25L5.85 7.87l5.266 5.342-1.004 1.018-.692-.701h-.393l-.49.498v.399l.69.7-.932.948zm8.546 4.95a1.59 1.59 0 00.107 1.49c.256.43.799.73 1.294.716.494.014 1.037-.287 1.293-.716a1.59 1.59 0 00.108-1.49l.054-.06a1.53 1.53 0 001.471-.107c.424-.26.72-.81.707-1.313.014-.502-.283-1.053-.707-1.313a1.53 1.53 0 00-1.471-.107l-.054-.059a1.59 1.59 0 00-.108-1.49c-.256-.43-.799-.73-1.293-.717-.495-.013-1.038.287-1.294.716a1.59 1.59 0 00-.107 1.491l-.054.059a1.53 1.53 0 00-1.472.107c-.424.26-.72.81-.707 1.313-.013.502.283 1.053.707 1.313a1.53 1.53 0 001.472.107l.054.06zm-9.79 1.49a1.59 1.59 0 00.108-1.49l.054-.06a1.53 1.53 0 001.471-.107c.424-.26.72-.81.707-1.313.014-.502-.283-1.053-.707-1.313a1.53 1.53 0 00-1.47-.107l-.055-.059a1.59 1.59 0 00-.107-1.49c-.257-.43-.8-.73-1.294-.717-.495-.013-1.037.287-1.294.716a1.59 1.59 0 00-.107 1.491l-.054.059a1.53 1.53 0 00-1.471.107c-.424.26-.72.81-.707 1.313-.014.502.283 1.053.707 1.313a1.53 1.53 0 001.471.107l.054.06a1.59 1.59 0 00.107 1.49c.257.43.8.73 1.294.716.495.014 1.037-.287 1.294-.716z"
|
|
38
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M12.274 2.56L14.8 0l1.25 1.268v4.274l-3.462 3.512h-.625L8.5 5.542V1.268L9.75 0l2.524 2.56zM9.75.898l2.212 2.243v4.12L9.75 5.018V.897zm2.837 2.243L14.799.897v4.12l-2.212 2.244V3.14z"
|
|
41
|
+
})]
|
|
42
|
+
}));
|
|
43
|
+
});
|
|
44
|
+
export default Icon;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
var _excluded = ["size", "style"];
|
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12
|
+
import { memo } from 'react';
|
|
13
|
+
import { TITLE } from "../style";
|
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
16
|
+
var Icon = /*#__PURE__*/memo(function (_ref) {
|
|
17
|
+
var _ref$size = _ref.size,
|
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
19
|
+
style = _ref.style,
|
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
22
|
+
fill: "currentColor",
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
height: size,
|
|
25
|
+
style: _objectSpread({
|
|
26
|
+
flex: 'none',
|
|
27
|
+
lineHeight: 1
|
|
28
|
+
}, style),
|
|
29
|
+
viewBox: "0 0 55 24",
|
|
30
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
31
|
+
}, rest), {}, {
|
|
32
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
33
|
+
children: TITLE
|
|
34
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
35
|
+
clipRule: "evenodd",
|
|
36
|
+
d: "M52.809 17.07a.292.292 0 00-.184-.06.448.448 0 00-.31.136l-.014.015-.01.017c-1.153 1.82-2.12 3.036-2.965 3.794-.843.757-1.551 1.046-2.192 1.046-.362 0-.57-.105-.694-.257-.13-.16-.195-.406-.195-.747 0-.535.157-1.169.404-1.83.239-.637.556-1.289.885-1.888 1.237-.369 2.685-1.034 3.63-1.872l.002-.001v-.001c.338-.312.626-.636.83-.962.204-.326.331-.664.331-1.002 0-.254-.07-.52-.264-.723-.195-.205-.49-.32-.883-.32-.78 0-1.772.373-2.727 1.006a8.694 8.694 0 00-2.577 2.652c-.238.387-.436.78-.592 1.176-1.112 1.67-2.061 2.866-2.916 3.645-.858.78-1.602 1.124-2.304 1.124-.327 0-.53-.107-.658-.266-.132-.166-.203-.416-.203-.738 0-.628.209-1.383.556-2.2.346-.815.822-1.678 1.343-2.518.589-.95 1.173-1.77 1.703-2.349.264-.29.51-.515.732-.666.225-.153.407-.218.546-.218.147 0 .278.085.417.283.14.2.258.475.39.782l.192.443.863-1.578-.126-.097c-.395-.305-.931-.481-1.543-.481-2.096 0-4.156 1.578-5.304 3.436a9.722 9.722 0 00-.706 1.354l-.89 1.383c-.65 1.015-1.212 1.886-1.768 2.506-.557.62-1.075.952-1.628.952-.23 0-.388-.061-.485-.15-.095-.086-.156-.218-.156-.412 0-.258.051-.501.414-1.163.364-.664 1.028-1.724 2.227-3.608l2.241-3.55-.099-.499h-3.295l-.05.037a.54.54 0 00-.164.19.458.458 0 00-.047.208v.185h1.166l-1.33 2.124c-.387.62-.73 1.19-1.016 1.739l-.762 1.134c-.773 1.152-1.432 2.121-2.06 2.804-.631.685-1.197 1.044-1.778 1.044-.203 0-.338-.054-.422-.131-.081-.075-.136-.194-.136-.376 0-.213.083-.483.33-.91.244-.425.637-.984 1.229-1.773l.853-1.134c1.114-1.484 1.44-2.353 1.44-3.461 0-.537-.075-1.013-.28-1.36-.213-.363-.556-.569-1.032-.569-.633 0-1.321.325-2.042.881-.725.56-1.504 1.371-2.322 2.384l-.02.024h-.248v-1.443c0-.528-.098-.938-.347-1.214-.254-.28-.626-.383-1.076-.383h-1.01l-.055.054a.722.722 0 00-.186.336l-.057.23h1.198c.345 0 .515.062.6.137.079.07.124.183.124.397 0 .208-.076.468-.237.806-.16.334-.395.727-.697 1.197l-4.171 6.624h2.361l2.395-3.712.137-.22c1.152-1.71 2.23-3.073 3.187-4.008.48-.468.923-.824 1.327-1.062.405-.24.757-.353 1.056-.353.182 0 .263.043.3.08.038.038.067.105.067.233 0 .188-.078.438-.273.788-.193.348-.489.775-.9 1.313l-.909 1.19c-1.165 1.535-1.717 2.765-1.717 3.988 0 .443.07.943.292 1.34.23.409.618.7 1.214.7.832 0 1.596-.557 2.306-1.328.506-.55 1.004-1.231 1.498-1.952a6.13 6.13 0 00-.089 1.046c0 .423.049.95.257 1.375.105.216.254.412.464.553.21.143.47.222.785.222.783 0 1.468-.5 2.092-1.193.589-.654 1.153-1.516 1.718-2.393-.02.198-.03.4-.03.606 0 .787.185 1.532.559 2.086.377.56.948.922 1.69.922.819 0 1.625-.361 2.485-1.091.724-.614 1.496-1.497 2.358-2.671-.033.263-.05.524-.05.781 0 .776.193 1.514.57 2.064.38.554.95.917 1.68.917.83 0 1.683-.367 2.626-1.206.941-.836 1.984-2.154 3.199-4.083l.028-.046v-.053a.262.262 0 00-.096-.207zm-2.993-3.11c.304-.317.59-.558.852-.719.263-.16.489-.234.677-.234.158 0 .24.045.285.093.047.051.081.138.081.275 0 .2-.084.442-.256.714a4.254 4.254 0 01-.729.837c-.71.645-1.765 1.218-2.77 1.61.64-1.09 1.277-1.966 1.86-2.575z"
|
|
37
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
38
|
+
clipRule: "evenodd",
|
|
39
|
+
d: "M22.04 17.331v-.053a.262.262 0 00-.096-.207.292.292 0 00-.184-.062.449.449 0 00-.31.137l-.014.015-.011.017c-1.152 1.82-2.119 3.036-2.964 3.794-.843.757-1.552 1.046-2.192 1.046-.363 0-.57-.105-.694-.257-.13-.16-.195-.406-.195-.747 0-.535.156-1.169.404-1.83.238-.637.556-1.289.884-1.888 1.238-.369 2.686-1.034 3.63-1.872l.002-.001.002-.001c.337-.312.625-.636.83-.962.203-.326.33-.664.33-1.002 0-.254-.071-.52-.264-.723-.195-.205-.49-.32-.884-.32-.78 0-1.771.373-2.726 1.006a8.701 8.701 0 00-2.578 2.652c-.732 1.19-1.073 2.441-1.073 3.612 0 .776.193 1.514.57 2.064.38.554.95.917 1.679.917.83 0 1.684-.367 2.627-1.206.94-.836 1.984-2.154 3.199-4.083l.028-.046zm-3.09-3.37c.305-.318.591-.56.853-.72.262-.16.489-.234.677-.234.157 0 .24.045.284.093.047.051.082.138.082.275 0 .2-.084.442-.257.714-.171.269-.42.554-.729.837-.71.645-1.764 1.218-2.77 1.61.642-1.09 1.277-1.966 1.86-2.575zM16.01 11.334c.266-.385.53-.768.793-1.146 1.735-2.495 3.38-4.86 5.164-6.602 1.781-1.74 3.68-2.839 5.922-2.839.778 0 1.584.135 2.28.377l.17.06.24-.661-.188-.056A8.915 8.915 0 0027.889.1c-2.41 0-4.446 1.174-6.294 2.96H8.655l-.386.648h5.33c-1.394.67-2.42 1.793-3.188 3.005-.932 1.47-1.495 3.087-1.88 4.222a99.088 99.088 0 00-1.068 3.299v.001c-.67 2.157-1.208 3.893-2.072 5.305-.856 1.4-2.035 2.486-3.997 3.323l-.201.086.461.722.153-.09a8.699 8.699 0 011.992-.862c2.986-.893 5.371-2.784 7.44-5.068 1.753-1.935 3.288-4.163 4.772-6.317zM5.355 21.065c1.083-.967 1.96-2.047 2.745-3.392.87-1.489 1.628-3.303 2.431-5.649.213-.617.41-1.234.602-1.835.567-1.777 1.088-3.402 1.852-4.587.755-1.171 1.736-1.894 3.235-1.894h4.74c-1.618 1.716-3.13 3.885-4.688 6.12l-.006.009c-3.058 4.386-6.299 9.026-10.911 11.228z"
|
|
40
|
+
})]
|
|
41
|
+
}));
|
|
42
|
+
});
|
|
43
|
+
export default Icon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import Avatar from './components/Avatar';
|
|
2
|
+
import Color from './components/Color';
|
|
3
|
+
import Combine from './components/Combine';
|
|
4
|
+
import Mono from './components/Mono';
|
|
5
|
+
import Text from './components/Text';
|
|
6
|
+
export type CompoundedIcon = typeof Mono & {
|
|
7
|
+
Avatar: typeof Avatar;
|
|
8
|
+
Color: typeof Color;
|
|
9
|
+
Combine: typeof Combine;
|
|
10
|
+
Text: typeof Text;
|
|
11
|
+
colorPrimary: string;
|
|
12
|
+
title: string;
|
|
13
|
+
};
|
|
14
|
+
declare const Icons: CompoundedIcon;
|
|
15
|
+
export default Icons;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import Avatar from "./components/Avatar";
|
|
2
|
+
import Color from "./components/Color";
|
|
3
|
+
import Combine from "./components/Combine";
|
|
4
|
+
import Mono from "./components/Mono";
|
|
5
|
+
import Text from "./components/Text";
|
|
6
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
|
7
|
+
var Icons = Mono;
|
|
8
|
+
Icons.Color = Color;
|
|
9
|
+
Icons.Text = Text;
|
|
10
|
+
Icons.Combine = Combine;
|
|
11
|
+
Icons.Avatar = Avatar;
|
|
12
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
|
13
|
+
Icons.title = TITLE;
|
|
14
|
+
export default Icons;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const TITLE = "Venice";
|
|
2
|
+
export declare const COMBINE_TEXT_MULTIPLE = 0.75;
|
|
3
|
+
export declare const COMBINE_SPACE_MULTIPLE = 0.2;
|
|
4
|
+
export declare const COLOR_PRIMARY = "#E05A2D";
|
|
5
|
+
export declare const AVATAR_BACKGROUND = "#E05A2D";
|
|
6
|
+
export declare const AVATAR_COLOR = "#fff";
|
|
7
|
+
export declare const AVATAR_ICON_MULTIPLE = 0.75;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export var TITLE = 'Venice';
|
|
2
|
+
export var COMBINE_TEXT_MULTIPLE = 0.75;
|
|
3
|
+
export var COMBINE_SPACE_MULTIPLE = 0.2;
|
|
4
|
+
export var COLOR_PRIMARY = '#E05A2D';
|
|
5
|
+
|
|
6
|
+
// Avatar constants
|
|
7
|
+
export var AVATAR_BACKGROUND = COLOR_PRIMARY;
|
|
8
|
+
export var AVATAR_COLOR = '#fff';
|
|
9
|
+
export var AVATAR_ICON_MULTIPLE = 0.75;
|
|
@@ -15,6 +15,7 @@ import Gemini from "../Gemini";
|
|
|
15
15
|
import GeminiCLI from "../GeminiCLI";
|
|
16
16
|
import GithubCopilot from "../GithubCopilot";
|
|
17
17
|
import Goose from "../Goose";
|
|
18
|
+
import HermesAgent from "../HermesAgent";
|
|
18
19
|
import Junie from "../Junie";
|
|
19
20
|
import KiloCode from "../KiloCode";
|
|
20
21
|
import Kimi from "../Kimi";
|
|
@@ -62,6 +63,9 @@ export var agentMappings = [{
|
|
|
62
63
|
}, {
|
|
63
64
|
Icon: OpenClaw,
|
|
64
65
|
keywords: ['open-claw', 'openclaw', 'dewu-smartclaw', 'nanoclaw', 'zeroclaw', 'goclaw', 'clawhub', 'catpaw', 'copaw', 'clawdbot', 'moltbot', 'claw']
|
|
66
|
+
}, {
|
|
67
|
+
Icon: HermesAgent,
|
|
68
|
+
keywords: ['hermes']
|
|
65
69
|
}, {
|
|
66
70
|
Icon: Manus,
|
|
67
71
|
keywords: ['manus']
|
|
@@ -104,6 +108,12 @@ export var agentMappings = [{
|
|
|
104
108
|
}, {
|
|
105
109
|
Icon: OpenCode,
|
|
106
110
|
keywords: ['open-code', 'opencode', 'openwork']
|
|
111
|
+
}, {
|
|
112
|
+
Icon: OpenCode,
|
|
113
|
+
keywords: ['open-code-go', 'opencodego', 'opencodecodingplan']
|
|
114
|
+
}, {
|
|
115
|
+
Icon: OpenCode,
|
|
116
|
+
keywords: ['open-code-zen', 'opencodezen']
|
|
107
117
|
}, {
|
|
108
118
|
Icon: OpenHands,
|
|
109
119
|
keywords: ['open-hands', 'openhands']
|
|
@@ -106,6 +106,7 @@ import Novita from "../Novita";
|
|
|
106
106
|
import Nvidia from "../Nvidia";
|
|
107
107
|
import Ollama from "../Ollama";
|
|
108
108
|
import OpenAI from "../OpenAI";
|
|
109
|
+
import OpenCode from "../OpenCode";
|
|
109
110
|
import OpenRouter from "../OpenRouter";
|
|
110
111
|
import PPIO from "../PPIO";
|
|
111
112
|
import Parasail from "../Parasail";
|
|
@@ -388,6 +389,9 @@ export var providerMappings = [{
|
|
|
388
389
|
}, {
|
|
389
390
|
Icon: OpenAI,
|
|
390
391
|
keywords: [ModelProvider.OpenAI]
|
|
392
|
+
}, {
|
|
393
|
+
Icon: OpenCode,
|
|
394
|
+
keywords: [ModelProvider.OpenCode, ModelProvider.OpenCodeCodingPlan, ModelProvider.OpenCodeGo, ModelProvider.OpenCodeZen]
|
|
391
395
|
}, {
|
|
392
396
|
Icon: Ollama,
|
|
393
397
|
combineMultiple: 1.16,
|
|
@@ -466,7 +470,7 @@ export var providerMappings = [{
|
|
|
466
470
|
}, {
|
|
467
471
|
Icon: Stepfun,
|
|
468
472
|
combineMultiple: 0.83,
|
|
469
|
-
keywords: [ModelProvider.Stepfun]
|
|
473
|
+
keywords: [ModelProvider.Stepfun, ModelProvider.StepfunCodingPlan]
|
|
470
474
|
}, {
|
|
471
475
|
Icon: Spark,
|
|
472
476
|
combineMultiple: 0.92,
|
|
@@ -96,6 +96,10 @@ export declare enum ModelProvider {
|
|
|
96
96
|
Ollama = "ollama",
|
|
97
97
|
OllamaCloud = "ollamacloud",
|
|
98
98
|
OpenAI = "openai",
|
|
99
|
+
OpenCode = "opencode",
|
|
100
|
+
OpenCodeCodingPlan = "opencodecodingplan",
|
|
101
|
+
OpenCodeGo = "opencodego",
|
|
102
|
+
OpenCodeZen = "opencodezen",
|
|
99
103
|
OpenRouter = "openrouter",
|
|
100
104
|
PPIO = "ppio",
|
|
101
105
|
Parasail = "parasail",
|
|
@@ -115,6 +119,7 @@ export declare enum ModelProvider {
|
|
|
115
119
|
Stability = "stability",
|
|
116
120
|
StateCloud = "statecloud",
|
|
117
121
|
Stepfun = "stepfun",
|
|
122
|
+
StepfunCodingPlan = "stepfuncodingplan",
|
|
118
123
|
Straico = "straico",
|
|
119
124
|
StreamLake = "streamlake",
|
|
120
125
|
SubModel = "submodel",
|
|
@@ -96,6 +96,10 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
|
96
96
|
ModelProvider["Ollama"] = "ollama";
|
|
97
97
|
ModelProvider["OllamaCloud"] = "ollamacloud";
|
|
98
98
|
ModelProvider["OpenAI"] = "openai";
|
|
99
|
+
ModelProvider["OpenCode"] = "opencode";
|
|
100
|
+
ModelProvider["OpenCodeCodingPlan"] = "opencodecodingplan";
|
|
101
|
+
ModelProvider["OpenCodeGo"] = "opencodego";
|
|
102
|
+
ModelProvider["OpenCodeZen"] = "opencodezen";
|
|
99
103
|
ModelProvider["OpenRouter"] = "openrouter";
|
|
100
104
|
ModelProvider["PPIO"] = "ppio";
|
|
101
105
|
ModelProvider["Parasail"] = "parasail";
|
|
@@ -115,6 +119,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
|
115
119
|
ModelProvider["Stability"] = "stability";
|
|
116
120
|
ModelProvider["StateCloud"] = "statecloud";
|
|
117
121
|
ModelProvider["Stepfun"] = "stepfun";
|
|
122
|
+
ModelProvider["StepfunCodingPlan"] = "stepfuncodingplan";
|
|
118
123
|
ModelProvider["Straico"] = "straico";
|
|
119
124
|
ModelProvider["StreamLake"] = "streamlake";
|
|
120
125
|
ModelProvider["SubModel"] = "submodel";
|
package/es/hooks/useFillId.js
CHANGED
|
@@ -15,8 +15,8 @@ export var useFillIds = function useFillIds(namespace, length) {
|
|
|
15
15
|
return useMemo(function () {
|
|
16
16
|
return Array.from({
|
|
17
17
|
length: length
|
|
18
|
-
}, function () {
|
|
19
|
-
var id = "lobe-icons-".concat(kebabCase(namespace), "-").concat(uniqueId);
|
|
18
|
+
}, function (_, i) {
|
|
19
|
+
var id = "lobe-icons-".concat(kebabCase(namespace), "-").concat(i, "-").concat(uniqueId);
|
|
20
20
|
return {
|
|
21
21
|
fill: "url(#".concat(id, ")"),
|
|
22
22
|
id: id
|
package/es/icons.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ export { default as Groq, type CompoundedIcon as GroqProps } from './Groq';
|
|
|
121
121
|
export { default as Hailuo, type CompoundedIcon as HailuoProps } from './Hailuo';
|
|
122
122
|
export { default as Haiper, type CompoundedIcon as HaiperProps } from './Haiper';
|
|
123
123
|
export { default as Hedra, type CompoundedIcon as HedraProps } from './Hedra';
|
|
124
|
+
export { default as HermesAgent, type CompoundedIcon as HermesAgentProps } from './HermesAgent';
|
|
124
125
|
export { default as Higress, type CompoundedIcon as HigressProps } from './Higress';
|
|
125
126
|
export { default as Huawei, type CompoundedIcon as HuaweiProps } from './Huawei';
|
|
126
127
|
export { default as HuaweiCloud, type CompoundedIcon as HuaweiCloudProps } from './HuaweiCloud';
|
|
@@ -173,6 +174,7 @@ export { default as Mastra, type CompoundedIcon as MastraProps } from './Mastra'
|
|
|
173
174
|
export { default as MCP, type CompoundedIcon as MCPProps } from './MCP';
|
|
174
175
|
export { default as McpSo, type CompoundedIcon as McpSoProps } from './McpSo';
|
|
175
176
|
export { default as Menlo, type CompoundedIcon as MenloProps } from './Menlo';
|
|
177
|
+
export { default as Meshy, type CompoundedIcon as MeshyProps } from './Meshy';
|
|
176
178
|
export { default as Meta, type CompoundedIcon as MetaProps } from './Meta';
|
|
177
179
|
export { default as MetaAI, type CompoundedIcon as MetaAIProps } from './MetaAI';
|
|
178
180
|
export { default as MetaGPT, type CompoundedIcon as MetaGPTProps } from './MetaGPT';
|
|
@@ -244,6 +246,7 @@ export { default as Snowflake, type CompoundedIcon as SnowflakeProps } from './S
|
|
|
244
246
|
export { default as SophNet, type CompoundedIcon as SophNetLabsProps } from './SophNet';
|
|
245
247
|
export { default as Sora, type CompoundedIcon as SoraProps } from './Sora';
|
|
246
248
|
export { default as Spark, type CompoundedIcon as SparkProps } from './Spark';
|
|
249
|
+
export { default as SpeedAI, type CompoundedIcon as SpeedAIProps } from './SpeedAI';
|
|
247
250
|
export { default as Stability, type CompoundedIcon as StabilityProps } from './Stability';
|
|
248
251
|
export { default as StateCloud, type CompoundedIcon as StateCloudProps } from './StateCloud';
|
|
249
252
|
export { default as Stepfun, type CompoundedIcon as StepfunProps } from './Stepfun';
|
|
@@ -268,6 +271,7 @@ export { default as Unstructured, type CompoundedIcon as UnstructuredProps } fro
|
|
|
268
271
|
export { default as Upstage, type CompoundedIcon as UpstageProps } from './Upstage';
|
|
269
272
|
export { default as V0, type CompoundedIcon as V0Props } from './V0';
|
|
270
273
|
export { default as VectorizerAI, type CompoundedIcon as VectorizerAIProps } from './VectorizerAI';
|
|
274
|
+
export { default as Venice, type CompoundedIcon as VeniceProps } from './Venice';
|
|
271
275
|
export { default as Vercel, type CompoundedIcon as VercelProps } from './Vercel';
|
|
272
276
|
export { default as VertexAI, type CompoundedIcon as VertexAIProps } from './VertexAI';
|
|
273
277
|
export { default as Vidu, type CompoundedIcon as ViduProps } from './Vidu';
|
package/es/icons.js
CHANGED
|
@@ -121,6 +121,7 @@ export { default as Groq } from "./Groq";
|
|
|
121
121
|
export { default as Hailuo } from "./Hailuo";
|
|
122
122
|
export { default as Haiper } from "./Haiper";
|
|
123
123
|
export { default as Hedra } from "./Hedra";
|
|
124
|
+
export { default as HermesAgent } from "./HermesAgent";
|
|
124
125
|
export { default as Higress } from "./Higress";
|
|
125
126
|
export { default as Huawei } from "./Huawei";
|
|
126
127
|
export { default as HuaweiCloud } from "./HuaweiCloud";
|
|
@@ -173,6 +174,7 @@ export { default as Mastra } from "./Mastra";
|
|
|
173
174
|
export { default as MCP } from "./MCP";
|
|
174
175
|
export { default as McpSo } from "./McpSo";
|
|
175
176
|
export { default as Menlo } from "./Menlo";
|
|
177
|
+
export { default as Meshy } from "./Meshy";
|
|
176
178
|
export { default as Meta } from "./Meta";
|
|
177
179
|
export { default as MetaAI } from "./MetaAI";
|
|
178
180
|
export { default as MetaGPT } from "./MetaGPT";
|
|
@@ -244,6 +246,7 @@ export { default as Snowflake } from "./Snowflake";
|
|
|
244
246
|
export { default as SophNet } from "./SophNet";
|
|
245
247
|
export { default as Sora } from "./Sora";
|
|
246
248
|
export { default as Spark } from "./Spark";
|
|
249
|
+
export { default as SpeedAI } from "./SpeedAI";
|
|
247
250
|
export { default as Stability } from "./Stability";
|
|
248
251
|
export { default as StateCloud } from "./StateCloud";
|
|
249
252
|
export { default as Stepfun } from "./Stepfun";
|
|
@@ -268,6 +271,7 @@ export { default as Unstructured } from "./Unstructured";
|
|
|
268
271
|
export { default as Upstage } from "./Upstage";
|
|
269
272
|
export { default as V0 } from "./V0";
|
|
270
273
|
export { default as VectorizerAI } from "./VectorizerAI";
|
|
274
|
+
export { default as Venice } from "./Venice";
|
|
271
275
|
export { default as Vercel } from "./Vercel";
|
|
272
276
|
export { default as VertexAI } from "./VertexAI";
|
|
273
277
|
export { default as Vidu } from "./Vidu";
|
package/es/index.d.ts
CHANGED
package/es/index.js
CHANGED
package/es/toc.d.ts
CHANGED
|
@@ -1,22 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
color: string;
|
|
3
|
-
colorGradient?: string;
|
|
4
|
-
desc: string;
|
|
5
|
-
docsUrl: string;
|
|
6
|
-
fullTitle: string;
|
|
7
|
-
group: 'model' | 'provider' | 'application';
|
|
8
|
-
id: string;
|
|
9
|
-
param: {
|
|
10
|
-
hasAvatar: boolean;
|
|
11
|
-
hasBrand: boolean;
|
|
12
|
-
hasBrandColor: boolean;
|
|
13
|
-
hasColor: boolean;
|
|
14
|
-
hasCombine: boolean;
|
|
15
|
-
hasText: boolean;
|
|
16
|
-
hasTextCn: boolean;
|
|
17
|
-
hasTextColor: boolean;
|
|
18
|
-
};
|
|
19
|
-
title: string;
|
|
20
|
-
}
|
|
1
|
+
import type { IconToc } from './types/toc';
|
|
21
2
|
declare const toc: IconToc[];
|
|
22
|
-
export
|
|
3
|
+
export { toc };
|
|
4
|
+
export type { IconToc } from './types/toc';
|