@lobehub/icons 4.9.0 → 4.10.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/es/Ace/components/Avatar.d.ts +5 -0
- package/es/Ace/components/Avatar.js +25 -0
- package/es/Ace/components/Combine.d.ts +5 -0
- package/es/Ace/components/Combine.js +26 -0
- package/es/Ace/components/Mono.d.ts +3 -0
- package/es/Ace/components/Mono.js +40 -0
- package/es/Ace/components/Text.d.ts +3 -0
- package/es/Ace/components/Text.js +39 -0
- package/es/Ace/index.d.ts +13 -0
- package/es/Ace/index.js +12 -0
- package/es/Ace/style.d.ts +7 -0
- package/es/Ace/style.js +9 -0
- package/es/features/modelConfig.js +24 -8
- package/es/icons.d.ts +1 -0
- package/es/icons.js +1 -0
- package/es/toc.js +18 -0
- package/package.json +1 -1
|
@@ -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,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { type IconCombineProps } from "../../features/IconCombine";
|
|
3
|
+
export type CombineProps = Omit<IconCombineProps, 'Icon' | 'Text'>;
|
|
4
|
+
declare const Combine: import("react").NamedExoticComponent<CombineProps>;
|
|
5
|
+
export default Combine;
|
|
@@ -0,0 +1,26 @@
|
|
|
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 IconCombine from "../../features/IconCombine";
|
|
12
|
+
import { COMBINE_SPACE_MULTIPLE, COMBINE_TEXT_MULTIPLE, TITLE } from "../style";
|
|
13
|
+
import Mono from "./Mono";
|
|
14
|
+
import Text from "./Text";
|
|
15
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
16
|
+
var Combine = /*#__PURE__*/memo(function (_ref) {
|
|
17
|
+
var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
|
|
18
|
+
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
|
19
|
+
Icon: Mono,
|
|
20
|
+
Text: Text,
|
|
21
|
+
"aria-label": TITLE,
|
|
22
|
+
spaceMultiple: COMBINE_SPACE_MULTIPLE,
|
|
23
|
+
textMultiple: COMBINE_TEXT_MULTIPLE
|
|
24
|
+
}, rest));
|
|
25
|
+
});
|
|
26
|
+
export default Combine;
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
d: "M5.376 11.188a.1.1 0 00.07-.006.016.016 0 00.005-.008.016.016 0 00.001-.01.017.017 0 00-.005-.008.017.017 0 00-.008-.004 4.956 4.956 0 01-1.652-.442A5.61 5.61 0 011.982 1.81c.54-.6 1.224-1.072 2.05-1.415a2.59 2.59 0 01.456-.146c.036-.007.161-.038.376-.091 1.054-.266 2.115-.194 3.182.214 1.938.74 3.226 2.33 3.582 4.381.043.249.063.7.061 1.353-.004 1.748-.004 2.783.001 3.105.007.429-.018.724-.073.886-.411 1.21-2.011 1.517-2.787.484a.085.085 0 00-.107-.024 5.365 5.365 0 01-2.671.636c-.225-.004-.45-.005-.676-.004zm3.116-5.58a2.398 2.398 0 10-4.795 0 2.398 2.398 0 004.795 0zM17.922.094a.126.126 0 00-.067 0h-.002v.002h.002c1.624-.264 3.092.086 4.405 1.05.35.256.771.622.923 1.02.331.87-.064 1.816-.954 2.12-.489.167-.945.116-1.37-.153-.226-.143-.456-.407-.702-.557-.744-.448-1.533-.487-2.369-.116a.166.166 0 00-.032.02l-.506.357a.433.433 0 00-.06.053c-.447.485-.68 1.026-.697 1.623-.018.577.128 1.075.438 1.494.327.443.753.744 1.279.902.649.195 1.276.12 1.88-.225.121-.068.266-.18.435-.334.219-.197.362-.31.43-.342.782-.352 1.676-.184 2.144.588.018.03.03.062.038.097l.057.25c.111.459.096.846-.047 1.162-.107.238-.336.506-.689.803a6.141 6.141 0 01-1.247.79c-.24.12-.417.196-.53.233a5.767 5.767 0 01-2.177.26c-4.12-.276-6.528-4.79-4.467-8.374.359-.625.766-1.121 1.22-1.49a6.12 6.12 0 011.347-.854c.381-.17.82-.286 1.315-.35a.016.016 0 00.013-.014c0-.004 0-.007-.002-.01a.013.013 0 00-.008-.005zM.98 16.179a5.18 5.18 0 011.32-1.89 7.262 7.262 0 011.08-.818.318.318 0 01.071-.031c.151-.046.306-.116.465-.21a.192.192 0 01.083-.027c.092-.007.153-.026.184-.058a.159.159 0 01.063-.04c.258-.09.447-.147.57-.17a8.22 8.22 0 011.067-.117c3.163-.176 5.852 2.483 5.801 5.632-.014.837-.705 1.54-1.546 1.538l-2.23.013c-.487.002-.804-.022-.95-.072-.542-.184-1.01-.693-1.078-1.274-.08-.69.16-1.163.684-1.615a.353.353 0 01.095-.059c.35-.152.729-.21 1.134-.173a.045.045 0 00.046-.027.047.047 0 00-.011-.053c-.719-.661-1.52-.87-2.403-.627-.662.183-1.272.717-1.52 1.32-.345.844-.266 1.632.236 2.365.36.523.992.918 1.588.981.356.038.72.033 1.014.17 1.327.621 1.25 2.551-.173 2.99-.275.085-.653.096-1.134.034a5.584 5.584 0 01-3.338-1.643 1.753 1.753 0 01-.204-.242c-.083-.12-.2-.195-.28-.314-.325-.472-.556-.882-.692-1.228-.567-1.445-.563-2.878.014-4.3.016-.038.03-.056.043-.055z"
|
|
37
|
+
})]
|
|
38
|
+
}));
|
|
39
|
+
});
|
|
40
|
+
export default Icon;
|
|
@@ -0,0 +1,39 @@
|
|
|
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 143 24",
|
|
30
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
31
|
+
}, rest), {}, {
|
|
32
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
33
|
+
children: TITLE
|
|
34
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
35
|
+
d: "M111.498 10.221l.395.285a.246.246 0 01.048.044 5.432 5.432 0 00.691.694l.302.407a.027.027 0 00.014.01.03.03 0 00.018 0 .033.033 0 00.015-.01.033.033 0 00.005-.018V1.31a.06.06 0 01.059-.059h3.868c.023 0 .045.01.061.026a.085.085 0 01.026.062v20.587a.065.065 0 01-.018.044.072.072 0 01-.02.014.066.066 0 01-.024.004h-3.918a.038.038 0 01-.028-.011.038.038 0 01-.012-.029v-1.803a.038.038 0 00-.007-.02.033.033 0 00-.038-.013.033.033 0 00-.017.013 5.53 5.53 0 01-1.19 1.212 4.35 4.35 0 01-1.69.78c-2.201.486-4.432-.37-5.792-2.14-.745-.968-1.102-2.065-1.209-3.314-.143-1.676.111-3.377 1.11-4.76a5.796 5.796 0 012.425-1.957 1.02 1.02 0 01.27-.078.105.105 0 00.071-.044.23.23 0 01.011-.016.048.048 0 01.025-.016c1.475-.408 2.852-.424 4.201.255.111.054.172.089.185.103.044.052.087.073.127.065a.047.047 0 01.036.007zm-3.796 3.88l-.032.05a3.339 3.339 0 00-.342.786 3.393 3.393 0 00.075 2.101 3.13 3.13 0 001.071 1.444 2.747 2.747 0 001.645.542 2.74 2.74 0 001.636-.561 3.12 3.12 0 001.058-1.475 3.392 3.392 0 00.067-1.983 3.196 3.196 0 00-.86-1.474 2.82 2.82 0 00-1.45-.753 2.693 2.693 0 00-1.613.207 2.957 2.957 0 00-1.255 1.116zM14.062 20.056a.094.094 0 00-.038-.06l-.628-1.327a.12.12 0 00-.042-.049.111.111 0 00-.061-.018H7.678a.11.11 0 00-.085.04c-.09.107-.155.23-.197.369-.025.027-.029.064-.012.112-.139.123-.173.3-.237.44-.405.865-.805 1.735-1.202 2.609a.091.091 0 01-.03.036.084.084 0 01-.043.015l-.338.027-4.325-.017-.176-.003a.034.034 0 01-.028-.017.035.035 0 01-.001-.033l9.451-19.912a.029.029 0 01.027-.018.03.03 0 01.016.005.032.032 0 01.012.013l9.485 19.904a.05.05 0 01-.002.047.046.046 0 01-.017.016.043.043 0 01-.022.006c-1.744-.011-3.31-.009-4.698.007-.146.002-.244-.056-.294-.171a47.121 47.121 0 00-.799-1.773 4.777 4.777 0 00-.06-.085.274.274 0 01-.041-.163zM8.509 15.07a.045.045 0 00.003.042.042.042 0 00.036.02l3.883-.008a.042.042 0 00.035-.02.046.046 0 00.007-.02c.001-.007 0-.014-.003-.02l-1.95-4.668a.044.044 0 00-.015-.02.04.04 0 00-.046 0 .044.044 0 00-.016.02L8.509 15.07zM23.444 6.259c.03.005.046-.012.05-.053a8.63 8.63 0 011.866-1.5.398.398 0 01.078-.035c.225-.068.43-.178.614-.33a1.95 1.95 0 01.301-.11.046.046 0 00.03-.03c.01-.033.034-.05.072-.05a12.272 12.272 0 014.28-.895c.938-.023 1.761.025 2.471.145.887.151 1.665.415 2.334.793.06.034.192.103.395.206.109.055.234.133.375.232.197.14.403.274.617.4a.142.142 0 01.07.122V9.75a.037.037 0 01-.024.033.038.038 0 01-.04-.007c-.425-.418-.9-.808-1.427-1.17-1.396-.962-3.125-1.307-4.823-1.13a5.75 5.75 0 00-2.184.66c-1.326.723-2.256 1.985-2.518 3.447-.294 1.631-.005 3.408 1.15 4.688a5.176 5.176 0 002.99 1.665c1.9.348 3.636.034 5.21-.942.632-.392 1.152-.804 1.56-1.238a.036.036 0 01.035-.01.035.035 0 01.026.027c.027.118.042.212.043.28.006.384.007 1.747.002 4.088 0 .167-.068.3-.204.4-1.404 1.034-2.965 1.596-4.683 1.688-2.53.135-5.181-.317-7.282-1.797a8.792 8.792 0 01-3.013-3.654c-.905-2.018-1.035-4.493-.496-6.634.28-1.112.79-2.175 1.53-3.188a.821.821 0 01.068-.077c.188-.194.277-.418.527-.62zM67.075 4.047c.143-.047.438-.17.885-.367a.37.37 0 01.123-.03c.116-.006.227-.028.332-.065.13-.047.238-.08.323-.097 2.965-.623 5.972-.054 8.038 2.099.437.454.815.956 1.136 1.508a.048.048 0 01.005.038.053.053 0 01-.025.031l-3.369 1.842a.083.083 0 01-.056.008.076.076 0 01-.046-.03l-.547-.746a.331.331 0 00-.114-.097 2.508 2.508 0 01-.332-.275 4.016 4.016 0 00-1.651-.887c-.493-.136-.935-.076-1.41-.062a.22.22 0 00-.063.012l-.655.231a.052.052 0 00-.017.01c-.311.234-.494.425-.548.571-.234.632-.12 1.158.342 1.578.215.195.418.348.611.46.281.163.506.28.674.352.45.194 1.076.426 1.879.699 1.356.462 2.675 1.001 3.702 1.92 1.103.985 1.672 2.191 1.706 3.618.038 1.586-.508 2.911-1.637 3.977-1.408 1.325-3.612 1.934-5.564 1.905-2.668-.041-5.044-1.145-6.73-3.104-.19-.22-.429-.535-.717-.943a3.337 3.337 0 01-.338-.592.14.14 0 01-.006-.098.148.148 0 01.06-.08l2.548-1.686a.02.02 0 00.007-.007.084.084 0 00.007-.032c0-.005.001-.01.004-.013a.029.029 0 01.01-.01l.422-.268a.11.11 0 01.154.04.849.849 0 00.2.264.168.168 0 01.05.07c.096.242.23.431.402.569.004.003.01.011.019.025a.786.786 0 01.028.05.258.258 0 00.026.039 7.536 7.536 0 001.626 1.457l.726.337c.013.006.027.01.042.014.169.036.292.07.37.1.09.034.208.065.354.09a3.961 3.961 0 001.758-.07c.206-.056.377-.126.513-.209.7-.425.957-1.063.771-1.915-.201-.924-1.456-1.443-2.342-1.786-1.879-.73-3.856-1.257-5.266-2.835-.998-1.117-1.3-2.37-1.18-3.823.047-.553.197-1.08.45-1.578.356-.7.88-1.286 1.573-1.757.37-.25.585-.39.648-.417.029-.013.059-.025.089-.035zM122.295 7.33c1.295-.009 2.339-.985 2.331-2.181-.009-1.196-1.066-2.158-2.361-2.15-1.296.01-2.339.987-2.331 2.182.008 1.196 1.065 2.159 2.361 2.15zM51.955 7.025H44.23a.044.044 0 00-.032.014.049.049 0 00-.014.033v3.292c0 .013.005.025.014.034.008.009.02.014.032.014h7.21c.006 0 .012 0 .018.003l.014.01a.048.048 0 01.014.034v3.598a.048.048 0 01-.028.044.042.042 0 01-.017.003h-7.213a.044.044 0 00-.031.014.049.049 0 00-.014.033v4.277c0 .012.005.024.014.033.008.01.02.014.031.014h7.726c.012 0 .023.005.032.014.008.009.013.021.013.034v3.68a.049.049 0 01-.013.034.044.044 0 01-.032.014H40.045a.044.044 0 01-.032-.014.048.048 0 01-.013-.034V3.298c0-.013.005-.025.013-.034a.044.044 0 01.032-.014h11.91c.012 0 .023.005.032.014.008.01.013.021.013.034v3.68a.048.048 0 01-.013.033.044.044 0 01-.032.014zM83.001 5.25c1.151.001 1.76.005 1.824.011.016.002.03.01.04.023a.07.07 0 01.017.045v4.245c0 .017.007.034.019.046a.06.06 0 00.043.02h1.996c.016 0 .031.006.043.017a.063.063 0 01.017.044v3.303a.067.067 0 01-.018.046.06.06 0 01-.044.019H84.93a.048.048 0 00-.035.015.052.052 0 00-.014.036l-.002 9.084a.05.05 0 01-.013.033.043.043 0 01-.03.014h-1.838l-1.836-.002a.04.04 0 01-.017-.003.046.046 0 01-.024-.025.048.048 0 01-.004-.018l.002-9.084a.052.052 0 00-.014-.036.048.048 0 00-.035-.015l-2.008-.001a.06.06 0 01-.044-.02.067.067 0 01-.018-.046l.001-3.302c0-.016.006-.032.017-.044a.059.059 0 01.043-.018l1.996.001a.06.06 0 00.043-.019.067.067 0 00.018-.046l.004-4.245a.07.07 0 01.016-.046.063.063 0 01.04-.022c.065-.006.672-.01 1.823-.01zM133.992 9.25c3.796-.005 7.003 2.387 7.008 6.491.005 4.105-3.195 6.504-6.992 6.51-3.796.005-7.003-2.386-7.008-6.49-.005-4.105 3.195-6.505 6.992-6.51zm2.864 6.97a3.45 3.45 0 00.026-.689 3.328 3.328 0 00-.526-1.599 2.943 2.943 0 00-1.279-1.1 2.672 2.672 0 00-1.623-.17 2.828 2.828 0 00-1.537.907 3.26 3.26 0 00-.775 1.707 3.393 3.393 0 00.268 1.879 3.04 3.04 0 001.192 1.354c.514.31 1.103.44 1.688.375a2.765 2.765 0 001.493-.655 3.214 3.214 0 001.073-2.009zM97.037 21.876v-1.714a.036.036 0 00-.007-.021.034.034 0 00-.017-.013.032.032 0 00-.021.001.035.035 0 00-.016.014c-.62 1.017-1.4 1.744-2.522 1.99-.962.212-2.227.143-3.203-.254-1.264-.514-1.854-1.658-2.14-3.054-.074-.362-.111-.978-.111-1.848.001-3.001.004-5.562.007-7.682 0-.01.004-.021.012-.03a.039.039 0 01.028-.011h4.067c.011 0 .022.005.03.013.008.009.013.02.013.033-.001 3.037-.001 5.623.001 7.757 0 .622.143 1.53.616 1.917.394.322.923.377 1.392.337 1.132-.095 1.827-.987 1.856-2.145.013-.52.015-3.137.007-7.849a.07.07 0 01.018-.047.06.06 0 01.044-.02h3.859c.013 0 .026.006.035.016.01.01.015.024.015.038v12.574a.07.07 0 01-.018.046.063.063 0 01-.045.02h-3.835a.062.062 0 01-.046-.02.07.07 0 01-.019-.048zM123.946 9.25h-3.892a.055.055 0 00-.054.056v12.889c0 .03.024.055.054.055h3.892c.03 0 .054-.025.054-.055V9.306a.055.055 0 00-.054-.056z"
|
|
36
|
+
})]
|
|
37
|
+
}));
|
|
38
|
+
});
|
|
39
|
+
export default Icon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import Avatar from './components/Avatar';
|
|
2
|
+
import Combine from './components/Combine';
|
|
3
|
+
import Mono from './components/Mono';
|
|
4
|
+
import Text from './components/Text';
|
|
5
|
+
export type CompoundedIcon = typeof Mono & {
|
|
6
|
+
Avatar: typeof Avatar;
|
|
7
|
+
Combine: typeof Combine;
|
|
8
|
+
Text: typeof Text;
|
|
9
|
+
colorPrimary: string;
|
|
10
|
+
title: string;
|
|
11
|
+
};
|
|
12
|
+
declare const Icons: CompoundedIcon;
|
|
13
|
+
export default Icons;
|
package/es/Ace/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import Avatar from "./components/Avatar";
|
|
2
|
+
import Combine from "./components/Combine";
|
|
3
|
+
import Mono from "./components/Mono";
|
|
4
|
+
import Text from "./components/Text";
|
|
5
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
|
6
|
+
var Icons = Mono;
|
|
7
|
+
Icons.Text = Text;
|
|
8
|
+
Icons.Combine = Combine;
|
|
9
|
+
Icons.Avatar = Avatar;
|
|
10
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
|
11
|
+
Icons.title = TITLE;
|
|
12
|
+
export default Icons;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const TITLE = "ace";
|
|
2
|
+
export declare const COMBINE_TEXT_MULTIPLE = 0.9;
|
|
3
|
+
export declare const COMBINE_SPACE_MULTIPLE = 0.2;
|
|
4
|
+
export declare const COLOR_PRIMARY = "#000";
|
|
5
|
+
export declare const AVATAR_BACKGROUND = "#000";
|
|
6
|
+
export declare const AVATAR_COLOR = "#fff";
|
|
7
|
+
export declare const AVATAR_ICON_MULTIPLE = 0.65;
|
package/es/Ace/style.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export var TITLE = 'ace';
|
|
2
|
+
export var COMBINE_TEXT_MULTIPLE = 0.9;
|
|
3
|
+
export var COMBINE_SPACE_MULTIPLE = 0.2;
|
|
4
|
+
export var COLOR_PRIMARY = '#000';
|
|
5
|
+
|
|
6
|
+
// Avatar constants
|
|
7
|
+
export var AVATAR_BACKGROUND = COLOR_PRIMARY;
|
|
8
|
+
export var AVATAR_COLOR = '#fff';
|
|
9
|
+
export var AVATAR_ICON_MULTIPLE = 0.65;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Ace from "../Ace";
|
|
1
2
|
import Adobe from "../Adobe";
|
|
2
3
|
import Ai2 from "../Ai2";
|
|
3
4
|
import Ai21 from "../Ai21";
|
|
@@ -10,6 +11,7 @@ import Arcee from "../Arcee";
|
|
|
10
11
|
import AssemblyAI from "../AssemblyAI";
|
|
11
12
|
import Aws from "../Aws";
|
|
12
13
|
import Aya from "../Aya";
|
|
14
|
+
import BAAI from "../BAAI";
|
|
13
15
|
import Baichuan from "../Baichuan";
|
|
14
16
|
import BaiduCloud from "../BaiduCloud";
|
|
15
17
|
import Bilibili from "../Bilibili";
|
|
@@ -43,7 +45,9 @@ import Ideogram from "../Ideogram";
|
|
|
43
45
|
import Inception from "../Inception";
|
|
44
46
|
import Inflection from "../Inflection";
|
|
45
47
|
import InternLM from "../InternLM";
|
|
48
|
+
import Jimeng from "../Jimeng";
|
|
46
49
|
import Jina from "../Jina";
|
|
50
|
+
import Kling from "../Kling";
|
|
47
51
|
import Kolors from "../Kolors";
|
|
48
52
|
import Kwaipilot from "../Kwaipilot";
|
|
49
53
|
import LG from "../LG";
|
|
@@ -139,13 +143,13 @@ export var modelMappings = [{
|
|
|
139
143
|
keywords: ['^gpt-', '/gpt-', 'openai']
|
|
140
144
|
}, {
|
|
141
145
|
Icon: GLMV,
|
|
142
|
-
keywords: ['^glm-(.*)v', '/glm-(.*)v']
|
|
146
|
+
keywords: ['^glm-(.*)v', '/glm-(.*)v', '-glm-(.*)v']
|
|
143
147
|
}, {
|
|
144
148
|
Icon: ZAI,
|
|
145
|
-
keywords: ['^glm-5', '/glm-5', '/glm5', '^glm-4', '/glm-4', '/glm4']
|
|
149
|
+
keywords: ['^glm-5', '/glm-5', '/glm5', '-glm-4', '^glm-4', '/glm-4', '/glm4', '-glm-5']
|
|
146
150
|
}, {
|
|
147
151
|
Icon: ChatGLM,
|
|
148
|
-
keywords: ['^glm-', '/glm-', 'chatglm']
|
|
152
|
+
keywords: ['^glm-', '/glm-', 'chatglm', '-glm-']
|
|
149
153
|
}, {
|
|
150
154
|
Icon: CodeGeeX,
|
|
151
155
|
keywords: ['^codegeex', '/codegeex']
|
|
@@ -196,7 +200,7 @@ export var modelMappings = [{
|
|
|
196
200
|
keywords: ['qiniu']
|
|
197
201
|
}, {
|
|
198
202
|
Icon: Qwen,
|
|
199
|
-
keywords: ['qwen', 'qwq', 'qvq', 'wanx', 'wan\\d/', 'wan\\d\\.\\d-', 'tongyi']
|
|
203
|
+
keywords: ['qwen', 'qwq', 'qvq', 'wanx', 'wan\\d/', 'wan\\d\\.\\d-', 'tongyi', 'gte-rerank']
|
|
200
204
|
}, {
|
|
201
205
|
Icon: Minimax,
|
|
202
206
|
keywords: ['minimax', 'abab', '^image-']
|
|
@@ -266,9 +270,15 @@ export var modelMappings = [{
|
|
|
266
270
|
}, {
|
|
267
271
|
Icon: Jina,
|
|
268
272
|
keywords: ['^jina', '/jina']
|
|
273
|
+
}, {
|
|
274
|
+
Icon: Jimeng,
|
|
275
|
+
keywords: ['^jimeng-', '/jimeng-', 'seedream', 'seededit', 'seedance-']
|
|
269
276
|
}, {
|
|
270
277
|
Icon: Doubao,
|
|
271
|
-
keywords: ['^ep-', 'doubao-'
|
|
278
|
+
keywords: ['^ep-', 'doubao-']
|
|
279
|
+
}, {
|
|
280
|
+
Icon: Kling,
|
|
281
|
+
keywords: ['^kling', 'kling-', 'klingai']
|
|
272
282
|
}, {
|
|
273
283
|
Icon: Hunyuan,
|
|
274
284
|
keywords: ['hunyuan']
|
|
@@ -313,7 +323,7 @@ export var modelMappings = [{
|
|
|
313
323
|
keywords: ['^grok-', '/grok-']
|
|
314
324
|
}, {
|
|
315
325
|
Icon: Ideogram,
|
|
316
|
-
keywords: ['ideogram']
|
|
326
|
+
keywords: ['ideogram', '^v_1', '^v_2', '^v3$', '^upscale$', '^describe$']
|
|
317
327
|
}, {
|
|
318
328
|
Icon: Spark,
|
|
319
329
|
keywords: ['spark', 'general$', 'generalv3$', 'generalv3.5$', '4.0ultra$', 'pro-128k$', '^max-32k$', '^lite$', '^x1$']
|
|
@@ -346,7 +356,7 @@ export var modelMappings = [{
|
|
|
346
356
|
keywords: ['^v0-']
|
|
347
357
|
}, {
|
|
348
358
|
Icon: VertexAI,
|
|
349
|
-
keywords: ['^veo-', '/veo-']
|
|
359
|
+
keywords: ['^veo-', '/veo-', '^veo3']
|
|
350
360
|
}, {
|
|
351
361
|
Icon: Google,
|
|
352
362
|
keywords: ['google', 'learnlm', 'nano-banana']
|
|
@@ -373,7 +383,7 @@ export var modelMappings = [{
|
|
|
373
383
|
keywords: ['skywork']
|
|
374
384
|
}, {
|
|
375
385
|
Icon: BilibiliIndex,
|
|
376
|
-
keywords: ['bilibili-index']
|
|
386
|
+
keywords: ['bilibili-index', 'index-tts']
|
|
377
387
|
}, {
|
|
378
388
|
Icon: Bilibili,
|
|
379
389
|
keywords: ['bilibili']
|
|
@@ -398,4 +408,10 @@ export var modelMappings = [{
|
|
|
398
408
|
}, {
|
|
399
409
|
Icon: XiaomiMiMo,
|
|
400
410
|
keywords: ['^mimo-', '/mimo-']
|
|
411
|
+
}, {
|
|
412
|
+
Icon: BAAI,
|
|
413
|
+
keywords: ['^baai', '^bge-', '/beg-', 'touchd', 'robobrain']
|
|
414
|
+
}, {
|
|
415
|
+
Icon: Ace,
|
|
416
|
+
keywords: ['ace-step']
|
|
401
417
|
}];
|
package/es/icons.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as Ace, type CompoundedIcon as AceProps } from './Ace';
|
|
1
2
|
export { default as Adobe, type CompoundedIcon as AdobeProps } from './Adobe';
|
|
2
3
|
export { default as AdobeFirefly, type CompoundedIcon as AdobeFireflyProps } from './AdobeFirefly';
|
|
3
4
|
export { default as Agui, type CompoundedIcon as AguiProps } from './Agui';
|
package/es/icons.js
CHANGED
package/es/toc.js
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
var toc = [{
|
|
2
|
+
"color": "#000",
|
|
3
|
+
"desc": "https://github.com/ace-step/ACE-Step",
|
|
4
|
+
"docsUrl": "ace",
|
|
5
|
+
"fullTitle": "ACE",
|
|
6
|
+
"group": "model",
|
|
7
|
+
"id": "Ace",
|
|
8
|
+
"param": {
|
|
9
|
+
"hasAvatar": true,
|
|
10
|
+
"hasBrand": false,
|
|
11
|
+
"hasBrandColor": false,
|
|
12
|
+
"hasColor": false,
|
|
13
|
+
"hasCombine": true,
|
|
14
|
+
"hasText": true,
|
|
15
|
+
"hasTextCn": false,
|
|
16
|
+
"hasTextColor": false
|
|
17
|
+
},
|
|
18
|
+
"title": "ace"
|
|
19
|
+
}, {
|
|
2
20
|
"color": "#EB1000",
|
|
3
21
|
"desc": "https://adobe.com",
|
|
4
22
|
"docsUrl": "adobe",
|