@lobehub/icons 1.71.0 → 1.72.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 +23 -21
- package/es/AzureAI/components/Avatar.d.ts +5 -0
- package/es/AzureAI/components/Avatar.js +27 -0
- package/es/AzureAI/components/Color.js +178 -0
- package/es/AzureAI/components/Combine.js +32 -0
- package/es/{Jina/components/TextColor.js → AzureAI/components/Mono.js} +8 -7
- package/es/AzureAI/components/Text.js +40 -0
- package/es/AzureAI/index.d.ts +15 -0
- package/es/AzureAI/index.js +16 -0
- package/es/AzureAI/style.d.ts +4 -0
- package/es/AzureAI/style.js +4 -0
- package/es/Fireworks/components/Avatar.js +3 -3
- package/es/Fireworks/components/Color.js +42 -0
- package/es/Fireworks/components/Combine.d.ts +3 -1
- package/es/Fireworks/components/Combine.js +9 -3
- package/es/Fireworks/components/Mono.js +2 -1
- package/es/Fireworks/components/Text.js +2 -2
- package/es/Fireworks/index.d.ts +2 -1
- package/es/Fireworks/index.js +3 -2
- package/es/Fireworks/style.d.ts +2 -3
- package/es/Fireworks/style.js +2 -3
- package/es/Jina/components/Avatar.js +2 -1
- package/es/Jina/components/Mono.js +1 -5
- package/es/Jina/index.d.ts +0 -4
- package/es/Jina/index.js +0 -4
- package/es/Jina/style.d.ts +1 -1
- package/es/Jina/style.js +1 -1
- package/es/PPIO/components/Avatar.js +2 -2
- package/es/PPIO/components/Color.js +4 -4
- package/es/PPIO/components/Mono.js +3 -2
- package/es/PPIO/components/Text.js +2 -3
- package/es/PPIO/components/TextCn.js +2 -5
- package/es/PPIO/index.d.ts +0 -4
- package/es/PPIO/index.js +0 -4
- package/es/PPIO/style.d.ts +1 -1
- package/es/PPIO/style.js +1 -1
- package/es/Vllm/style.d.ts +1 -1
- package/es/Vllm/style.js +1 -1
- package/es/Volcengine/components/Avatar.d.ts +5 -0
- package/es/{Jina/components/Combine.js → Volcengine/components/Avatar.js} +12 -8
- package/es/Volcengine/components/Color.d.ts +3 -0
- package/es/{Jina → Volcengine}/components/Color.js +9 -6
- package/es/Volcengine/components/Combine.d.ts +7 -0
- package/es/Volcengine/components/Combine.js +32 -0
- package/es/Volcengine/components/Mono.d.ts +3 -0
- package/es/Volcengine/components/Mono.js +53 -0
- package/es/Volcengine/components/Text.d.ts +3 -0
- package/es/Volcengine/components/Text.js +48 -0
- package/es/Volcengine/index.d.ts +15 -0
- package/es/Volcengine/index.js +16 -0
- package/es/Volcengine/style.d.ts +4 -0
- package/es/Volcengine/style.js +4 -0
- package/es/features/ProviderCombine/index.js +4 -6
- package/es/features/providerConfig.js +12 -2
- package/es/features/providerEnum.d.ts +2 -0
- package/es/features/providerEnum.js +2 -0
- package/es/icons.d.ts +2 -0
- package/es/icons.js +2 -0
- package/es/toc.js +46 -11
- package/package.json +1 -1
- package/es/PPIO/components/BrandColor.js +0 -44
- package/es/PPIO/components/BrandMono.js +0 -44
- /package/es/{Jina → AzureAI}/components/Color.d.ts +0 -0
- /package/es/{Jina → AzureAI}/components/Combine.d.ts +0 -0
- /package/es/{Jina/components/TextColor.d.ts → AzureAI/components/Mono.d.ts} +0 -0
- /package/es/{PPIO/components/BrandColor.d.ts → AzureAI/components/Text.d.ts} +0 -0
- /package/es/{PPIO/components/BrandMono.d.ts → Fireworks/components/Color.d.ts} +0 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
import Avatar from "./components/Avatar";
|
4
|
+
import Color from "./components/Color";
|
5
|
+
import Combine from "./components/Combine";
|
6
|
+
import Mono from "./components/Mono";
|
7
|
+
import Text from "./components/Text";
|
8
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
9
|
+
var Icons = Mono;
|
10
|
+
Icons.Color = Color;
|
11
|
+
Icons.Text = Text;
|
12
|
+
Icons.Combine = Combine;
|
13
|
+
Icons.Avatar = Avatar;
|
14
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
15
|
+
Icons.title = TITLE;
|
16
|
+
export default Icons;
|
@@ -11,7 +11,7 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
|
|
11
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
12
|
import { memo } from 'react';
|
13
13
|
import IconAvatar from "../../features/IconAvatar";
|
14
|
-
import {
|
14
|
+
import { COLOR_PRIMARY, TITLE } from "../style";
|
15
15
|
import Mono from "./Mono";
|
16
16
|
import { jsx as _jsx } from "react/jsx-runtime";
|
17
17
|
var Avatar = /*#__PURE__*/memo(function (_ref) {
|
@@ -20,8 +20,8 @@ var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
20
20
|
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
21
21
|
Icon: Mono,
|
22
22
|
"aria-label": TITLE,
|
23
|
-
background: background ||
|
24
|
-
color: '#
|
23
|
+
background: background || COLOR_PRIMARY,
|
24
|
+
color: '#000'
|
25
25
|
}, rest));
|
26
26
|
});
|
27
27
|
export default Avatar;
|
@@ -0,0 +1,42 @@
|
|
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
|
+
ref: ref,
|
24
|
+
style: _objectSpread({
|
25
|
+
flex: 'none',
|
26
|
+
lineHeight: 1
|
27
|
+
}, style),
|
28
|
+
viewBox: "0 0 24 24",
|
29
|
+
width: size,
|
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: "M14.8 5l-2.801 6.795L9.195 5H7.397l3.072 7.428a1.64 1.64 0 003.038.002L16.598 5H14.8zm1.196 10.352l5.124-5.244-.699-1.669-5.596 5.739a1.664 1.664 0 00-.343 1.807 1.642 1.642 0 001.516 1.012L16 17l8-.02-.699-1.669-7.303.041h-.002zM2.88 10.104l.699-1.669 5.596 5.739c.468.479.603 1.189.343 1.807a1.643 1.643 0 01-1.516 1.012l-8-.018-.002.002.699-1.669 7.303.042-5.122-5.246z",
|
37
|
+
fill: "#5019C5",
|
38
|
+
fillRule: "evenodd"
|
39
|
+
})]
|
40
|
+
}));
|
41
|
+
});
|
42
|
+
export default Icon;
|
@@ -1,5 +1,7 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { type IconCombineProps } from "../../features/IconCombine";
|
3
|
-
export
|
3
|
+
export interface CombineProps extends Omit<IconCombineProps, 'Icon' | 'Text'> {
|
4
|
+
type?: 'color' | 'mono';
|
5
|
+
}
|
4
6
|
declare const Combine: import("react").NamedExoticComponent<CombineProps>;
|
5
7
|
export default Combine;
|
@@ -1,22 +1,28 @@
|
|
1
1
|
'use client';
|
2
2
|
|
3
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"];
|
4
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; }
|
5
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; }
|
6
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; }
|
7
8
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
8
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); }
|
9
|
-
function
|
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; }
|
10
12
|
import { memo } from 'react';
|
11
13
|
import IconCombine from "../../features/IconCombine";
|
12
14
|
import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
|
15
|
+
import Color from "./Color";
|
13
16
|
import Mono from "./Mono";
|
14
17
|
import Text from "./Text";
|
15
18
|
import { jsx as _jsx } from "react/jsx-runtime";
|
16
19
|
var Combine = /*#__PURE__*/memo(function (_ref) {
|
17
|
-
var
|
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;
|
18
24
|
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
19
|
-
Icon:
|
25
|
+
Icon: Icon,
|
20
26
|
Text: Text,
|
21
27
|
"aria-label": TITLE,
|
22
28
|
spaceMultiple: SPACE_MULTIPLE,
|
@@ -34,7 +34,8 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
34
34
|
children: [/*#__PURE__*/_jsx("title", {
|
35
35
|
children: TITLE
|
36
36
|
}), /*#__PURE__*/_jsx("path", {
|
37
|
-
|
37
|
+
clipRule: "evenodd",
|
38
|
+
d: "M14.8 5l-2.801 6.795L9.195 5H7.397l3.072 7.428a1.64 1.64 0 003.038.002L16.598 5H14.8zm1.196 10.352l5.124-5.244-.699-1.669-5.596 5.739a1.664 1.664 0 00-.343 1.807 1.642 1.642 0 001.516 1.012L16 17l8-.02-.699-1.669-7.303.041h-.002zM2.88 10.104l.699-1.669 5.596 5.739c.468.479.603 1.189.343 1.807a1.643 1.643 0 01-1.516 1.012l-8-.018-.002.002.699-1.669 7.303.042-5.122-5.246z"
|
38
39
|
})]
|
39
40
|
}));
|
40
41
|
});
|
@@ -27,13 +27,13 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
27
27
|
flex: 'none',
|
28
28
|
lineHeight: 1
|
29
29
|
}, style),
|
30
|
-
viewBox: "0 0
|
30
|
+
viewBox: "0 0 155 24",
|
31
31
|
xmlns: "http://www.w3.org/2000/svg"
|
32
32
|
}, rest), {}, {
|
33
33
|
children: [/*#__PURE__*/_jsx("title", {
|
34
34
|
children: TITLE
|
35
35
|
}), /*#__PURE__*/_jsx("path", {
|
36
|
-
d: "
|
36
|
+
d: "M2 21.59l.002.002h2.623V12.56h8.47v-2.342h-8.47V4.342h9.317V2H2v19.59zM19.122 7.44h-2.46v14.15h2.46V7.44zM25.359 9.316h.002c-.055.135-.107.218-.273.218-.137 0-.19-.053-.19-.188V7.44h-2.46v14.15h2.455v-8.03c0-2.719 1.26-3.78 3.637-3.78h1.968V7.385h-1.585c-1.939 0-2.923.571-3.554 1.931zM38.679 19.881c-2.638 0-4.606-1.498-4.772-4.679h11.494V13.84c0-3.945-2.404-6.803-6.78-6.803s-7.163 2.858-7.163 7.481c0 4.624 2.705 7.482 7.216 7.482 4.51 0 6.364-2.745 6.78-4.894h-2.565c-.398 1.608-1.573 2.775-4.21 2.775zM38.62 9.153c2.6 0 4.208 1.39 4.32 4.003h-8.966c.408-2.67 2.294-4.003 4.646-4.003zM62.857 18.95c-.06.245-.136.328-.33.328-.196 0-.279-.083-.332-.328L59.46 7.44h-4.238l-2.735 11.51c-.06.245-.135.328-.33.328-.196 0-.278-.083-.331-.328L49.091 7.44h-2.405v.546h.015l3.337 13.604h4.223l2.817-11.865c.053-.193.105-.246.27-.246.136 0 .219.058.271.246l2.818 11.865h4.223l3.336-13.604V7.44h-2.404l-2.735 11.51zM76.572 7.034c-4.13 0-7.409 2.583-7.409 7.482 0 4.9 3.277 7.481 7.41 7.481 4.132 0 7.41-2.582 7.41-7.481 0-4.9-3.28-7.482-7.41-7.482zm.005 12.787c-2.87 0-4.921-1.901-4.921-5.305s2.051-5.305 4.921-5.305 4.922 1.906 4.922 5.305-2.051 5.305-4.922 5.305zM89.504 9.316c-.052.135-.105.218-.27.218-.138 0-.19-.053-.19-.188V7.44h-2.46v14.147h2.454v-8.028c0-2.717 1.26-3.78 3.637-3.78h1.97V7.386h-1.587c-1.938 0-2.923.571-3.554 1.931zM99 14.025V2h-2.46v19.602H99v-4.519l2.667-2.274 5.305 6.788h2.69v-.546l-6.179-7.797 6.179-5.268V7.44h-3.161L99 14.025zM118.186 13.492l-2.022-.381c-1.938-.368-2.787-.774-2.787-1.946s.959-2.042 3.253-2.042 3.607.875 3.797 2.806h2.505c-.278-3.45-2.956-4.89-6.312-4.89-3.356 0-5.713 1.443-5.713 4.16 0 2.719 1.929 3.66 4.704 4.176l2.021.38c1.969.37 2.953.792 2.953 2.015 0 1.222-.987 2.134-3.361 2.134-2.375 0-3.95-.98-4.141-2.858h-2.502c.233 3.374 2.981 4.952 6.645 4.952 3.665 0 5.824-1.563 5.824-4.369 0-2.805-2.27-3.649-4.864-4.137zM153.114 2h-2.758v19.602h2.758V2zM136.981 2.19l-7.645 19.054v.358h2.731l1.936-5.117h9.202l1.936 5.117h2.813v-.353L140.254 2h-3.273v.19zm-2.069 11.925l3.286-8.608h-.002a.378.378 0 01.355-.246h.135a.38.38 0 01.356.246l3.261 8.608h-7.391zM19.122 2h-2.46v2.885h2.46V2z"
|
37
37
|
})]
|
38
38
|
}));
|
39
39
|
});
|
package/es/Fireworks/index.d.ts
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
import Avatar from './components/Avatar';
|
2
|
+
import Color from './components/Color';
|
2
3
|
import Combine from './components/Combine';
|
3
4
|
import Mono from './components/Mono';
|
4
5
|
import Text from './components/Text';
|
5
6
|
export type CompoundedIcon = typeof Mono & {
|
6
7
|
Avatar: typeof Avatar;
|
8
|
+
Color: typeof Color;
|
7
9
|
Combine: typeof Combine;
|
8
10
|
Text: typeof Text;
|
9
|
-
colorGradient: string;
|
10
11
|
colorPrimary: string;
|
11
12
|
title: string;
|
12
13
|
};
|
package/es/Fireworks/index.js
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
'use client';
|
2
2
|
|
3
3
|
import Avatar from "./components/Avatar";
|
4
|
+
import Color from "./components/Color";
|
4
5
|
import Combine from "./components/Combine";
|
5
6
|
import Mono from "./components/Mono";
|
6
7
|
import Text from "./components/Text";
|
7
|
-
import {
|
8
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
8
9
|
var Icons = Mono;
|
10
|
+
Icons.Color = Color;
|
9
11
|
Icons.Text = Text;
|
10
12
|
Icons.Combine = Combine;
|
11
13
|
Icons.Avatar = Avatar;
|
12
14
|
Icons.colorPrimary = COLOR_PRIMARY;
|
13
|
-
Icons.colorGradient = COLOR_GRADIENT;
|
14
15
|
Icons.title = TITLE;
|
15
16
|
export default Icons;
|
package/es/Fireworks/style.d.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
export declare const TITLE = "Fireworks";
|
2
2
|
export declare const TEXT_MULTIPLE = 0.6;
|
3
|
-
export declare const SPACE_MULTIPLE = 0.
|
4
|
-
export declare const COLOR_PRIMARY = "#
|
5
|
-
export declare const COLOR_GRADIENT = "linear-gradient(to bottom, #952C78, #050003)";
|
3
|
+
export declare const SPACE_MULTIPLE = 0.2;
|
4
|
+
export declare const COLOR_PRIMARY = "#5019C5";
|
package/es/Fireworks/style.js
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
export var TITLE = 'Fireworks';
|
2
2
|
export var TEXT_MULTIPLE = 0.6;
|
3
|
-
export var SPACE_MULTIPLE = 0.
|
4
|
-
export var COLOR_PRIMARY = '#
|
5
|
-
export var COLOR_GRADIENT = 'linear-gradient(to bottom, #952C78, #050003)';
|
3
|
+
export var SPACE_MULTIPLE = 0.2;
|
4
|
+
export var COLOR_PRIMARY = '#5019C5';
|
@@ -20,7 +20,8 @@ var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
20
20
|
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
21
21
|
Icon: Mono,
|
22
22
|
"aria-label": TITLE,
|
23
|
-
background: background || COLOR_PRIMARY
|
23
|
+
background: background || COLOR_PRIMARY,
|
24
|
+
iconMultiple: 0.65
|
24
25
|
}, rest));
|
25
26
|
});
|
26
27
|
export default Avatar;
|
@@ -34,11 +34,7 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
34
34
|
children: [/*#__PURE__*/_jsx("title", {
|
35
35
|
children: TITLE
|
36
36
|
}), /*#__PURE__*/_jsx("path", {
|
37
|
-
d: "
|
38
|
-
}), /*#__PURE__*/_jsx("path", {
|
39
|
-
d: "M6.62248 10.6329C6.82221 10.6329 6.98198 10.7927 6.98198 10.9924L6.96201 13.9184C6.96201 15.5861 5.62387 16.9442 3.95618 16.9741H3.90625V13.9284H3.91624L3.92622 11.0024C3.92622 10.8027 4.086 10.6429 4.28572 10.6429H6.62248V10.6329ZM11.316 10.6329C11.5157 10.6329 11.6755 10.7927 11.6755 10.9924V15.0868C11.6755 15.2865 11.5157 15.4463 11.316 15.4463H8.97922C8.77949 15.4463 8.61971 15.2865 8.61971 15.0868V10.9924C8.61971 10.7927 8.77949 10.6329 8.97922 10.6329H11.316ZM14.9909 10.623H15.0408C16.5387 10.6429 17.757 11.8512 17.797 13.3492V15.0768C17.797 15.2765 17.6372 15.4363 17.4375 15.4363H13.6627C13.463 15.4363 13.3032 15.2765 13.3032 15.0768V10.9825C13.3032 10.7827 13.463 10.623 13.6627 10.623H14.9909ZM21.1723 15.3963C19.9141 15.3164 18.9055 14.2679 18.9055 12.9897C18.9055 11.6615 19.984 10.583 21.3121 10.583C22.5903 10.583 23.6389 11.5816 23.7188 12.8499V15.0368C23.7188 15.2366 23.559 15.3963 23.3593 15.3963H21.1723Z"
|
40
|
-
}), /*#__PURE__*/_jsx("path", {
|
41
|
-
d: "M10.1426 10.0636C10.9865 10.0636 11.6705 9.37952 11.6705 8.53569C11.6705 7.69187 10.9865 7.00781 10.1426 7.00781C9.2988 7.00781 8.61475 7.69187 8.61475 8.53569C8.61475 9.37952 9.2988 10.0636 10.1426 10.0636Z"
|
37
|
+
d: "M5.53 23.3a5.53 5.53 0 100-11.06 5.53 5.53 0 000 11.06zM22.673.018C23.41.018 24 .608 24 1.346v10.802c0 6.156-4.977 11.17-11.06 11.244V12.166l-.037-10.839C12.903.59 13.493 0 14.23 0h8.59l-.147.018z"
|
42
38
|
})]
|
43
39
|
}));
|
44
40
|
});
|
package/es/Jina/index.d.ts
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
import Avatar from './components/Avatar';
|
2
|
-
import Color from './components/Color';
|
3
|
-
import Combine from './components/Combine';
|
4
2
|
import Mono from './components/Mono';
|
5
3
|
import Text from './components/Text';
|
6
4
|
export type CompoundedIcon = typeof Mono & {
|
7
5
|
Avatar: typeof Avatar;
|
8
|
-
Color: typeof Color;
|
9
|
-
Combine: typeof Combine;
|
10
6
|
Text: typeof Text;
|
11
7
|
colorPrimary: string;
|
12
8
|
title: string;
|
package/es/Jina/index.js
CHANGED
@@ -1,15 +1,11 @@
|
|
1
1
|
'use client';
|
2
2
|
|
3
3
|
import Avatar from "./components/Avatar";
|
4
|
-
import Color from "./components/Color";
|
5
|
-
import Combine from "./components/Combine";
|
6
4
|
import Mono from "./components/Mono";
|
7
5
|
import Text from "./components/Text";
|
8
6
|
import { COLOR_PRIMARY, TITLE } from "./style";
|
9
7
|
var Icons = Mono;
|
10
|
-
Icons.Color = Color;
|
11
8
|
Icons.Text = Text;
|
12
|
-
Icons.Combine = Combine;
|
13
9
|
Icons.Avatar = Avatar;
|
14
10
|
Icons.colorPrimary = COLOR_PRIMARY;
|
15
11
|
Icons.title = TITLE;
|
package/es/Jina/style.d.ts
CHANGED
package/es/Jina/style.js
CHANGED
@@ -20,8 +20,8 @@ var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
20
20
|
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
21
21
|
Icon: Mono,
|
22
22
|
"aria-label": TITLE,
|
23
|
-
background: background ||
|
24
|
-
color:
|
23
|
+
background: background || COLOR_PRIMARY,
|
24
|
+
color: '#fff'
|
25
25
|
}, rest));
|
26
26
|
});
|
27
27
|
export default Avatar;
|
@@ -10,7 +10,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
10
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
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
12
|
import { forwardRef } from 'react';
|
13
|
-
import {
|
13
|
+
import { TITLE } from "../style";
|
14
14
|
import { jsx as _jsx } from "react/jsx-runtime";
|
15
15
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
16
|
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
@@ -25,7 +25,7 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
25
25
|
flex: 'none',
|
26
26
|
lineHeight: 1
|
27
27
|
}, style),
|
28
|
-
viewBox: "0 0
|
28
|
+
viewBox: "0 0 24 24",
|
29
29
|
width: size,
|
30
30
|
xmlns: "http://www.w3.org/2000/svg"
|
31
31
|
}, rest), {}, {
|
@@ -33,8 +33,8 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
33
33
|
children: TITLE
|
34
34
|
}), /*#__PURE__*/_jsx("path", {
|
35
35
|
clipRule: "evenodd",
|
36
|
-
d: "
|
37
|
-
fill:
|
36
|
+
d: "M12.002 0C5.377 0 0 5.37 0 11.994c0 3.266 1.309 6.232 3.43 8.395v-8.383c0-2.288.893-4.447 2.51-6.063a8.513 8.513 0 016.066-2.509h.07l-.074.008c4.735 0 8.575 3.84 8.575 8.571 0 .413-.03.818-.087 1.219l-4.844-4.86A5.12 5.12 0 0012.01 6.87a5.126 5.126 0 00-3.637 1.503 5.107 5.107 0 00-1.507 3.641c0 1.376.536 2.666 1.507 3.64a5.12 5.12 0 003.637 1.504 5.126 5.126 0 003.637-1.503 5.114 5.114 0 001.496-3.348l2.842 2.853c-1.256 3.18-4.353 5.433-7.978 5.433-1.879 0-3.671-.6-5.145-1.714v3.967c1.56.742 3.3 1.155 5.137 1.155C18.623 24 24 18.63 24 12.006 24.008 5.373 18.635.004 12.006.004L12.002 0z",
|
37
|
+
fill: "#2874FF",
|
38
38
|
fillRule: "evenodd"
|
39
39
|
})]
|
40
40
|
}));
|
@@ -27,14 +27,15 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
27
27
|
flex: 'none',
|
28
28
|
lineHeight: 1
|
29
29
|
}, style),
|
30
|
-
viewBox: "0 0
|
30
|
+
viewBox: "0 0 24 24",
|
31
31
|
width: size,
|
32
32
|
xmlns: "http://www.w3.org/2000/svg"
|
33
33
|
}, rest), {}, {
|
34
34
|
children: [/*#__PURE__*/_jsx("title", {
|
35
35
|
children: TITLE
|
36
36
|
}), /*#__PURE__*/_jsx("path", {
|
37
|
-
|
37
|
+
clipRule: "evenodd",
|
38
|
+
d: "M12.002 0C5.377 0 0 5.37 0 11.994c0 3.266 1.309 6.232 3.43 8.395v-8.383c0-2.288.893-4.447 2.51-6.063a8.513 8.513 0 016.066-2.509h.07l-.074.008c4.735 0 8.575 3.84 8.575 8.571 0 .413-.03.818-.087 1.219l-4.844-4.86A5.12 5.12 0 0012.01 6.87a5.126 5.126 0 00-3.637 1.503 5.107 5.107 0 00-1.507 3.641c0 1.376.536 2.666 1.507 3.64a5.12 5.12 0 003.637 1.504 5.126 5.126 0 003.637-1.503 5.114 5.114 0 001.496-3.348l2.842 2.853c-1.256 3.18-4.353 5.433-7.978 5.433-1.879 0-3.671-.6-5.145-1.714v3.967c1.56.742 3.3 1.155 5.137 1.155C18.623 24 24 18.63 24 12.006 24.008 5.373 18.635.004 12.006.004L12.002 0z"
|
38
39
|
})]
|
39
40
|
}));
|
40
41
|
});
|
@@ -27,15 +27,14 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
27
27
|
flex: 'none',
|
28
28
|
lineHeight: 1
|
29
29
|
}, style),
|
30
|
-
viewBox: "0 0
|
30
|
+
viewBox: "0 0 62 24",
|
31
31
|
xmlns: "http://www.w3.org/2000/svg"
|
32
32
|
}, rest), {}, {
|
33
33
|
children: [/*#__PURE__*/_jsx("title", {
|
34
34
|
children: TITLE
|
35
35
|
}), /*#__PURE__*/_jsx("path", {
|
36
36
|
clipRule: "evenodd",
|
37
|
-
d: "
|
38
|
-
fillRule: "evenodd"
|
37
|
+
d: "M4.92 13.81v7.185H2V2.95h7.748c1.668 0 2.958.49 3.871 1.473.914.984 1.37 2.303 1.37 3.957s-.456 2.973-1.37 3.956c-.913.984-2.203 1.473-3.871 1.473H4.921zm0-2.563h4.648c.743 0 1.316-.191 1.73-.58.415-.388.622-.946.622-1.67V7.76c0-.729-.207-1.282-.621-1.67-.415-.388-.993-.58-1.731-.58H4.92v5.738zm16.187 2.563v7.185h-2.921V2.95h7.749c1.667 0 2.957.49 3.871 1.473.913.984 1.37 2.303 1.37 3.957s-.457 2.973-1.37 3.956c-.914.984-2.204 1.473-3.871 1.473h-4.828zm0-2.563h4.647c.743 0 1.317-.191 1.731-.58.415-.388.622-.946.622-1.67V7.76c0-.729-.207-1.282-.622-1.67-.414-.388-.993-.58-1.731-.58h-4.647v5.738zm20.345 7.37v2.378h-7.849v-2.378h2.454V5.335h-2.454V2.957h7.849v2.377h-2.48v13.284h2.48zm13.823 1.793c-.95.388-2.018.585-3.186.585-1.169 0-2.23-.197-3.186-.585a6.554 6.554 0 01-2.454-1.723c-.68-.76-1.205-1.702-1.577-2.824-.372-1.127-.558-2.42-.558-3.887 0-1.468.186-2.766.558-3.888.372-1.122.898-2.063 1.577-2.823a6.676 6.676 0 012.454-1.723c.95-.389 2.017-.585 3.186-.585 1.168 0 2.23.191 3.186.585a6.554 6.554 0 012.454 1.723c.68.76 1.205 1.701 1.577 2.823.372 1.128.557 2.42.557 3.888 0 1.467-.185 2.765-.557 3.887-.372 1.122-.897 2.063-1.577 2.824a6.655 6.655 0 01-2.454 1.723zm-5.161-2.367c.589.229 1.248.346 1.975.346.712 0 1.365-.117 1.96-.346a4.141 4.141 0 001.518-1c.415-.436.744-.962.972-1.59.228-.627.345-1.334.345-2.121V10.62c0-.793-.111-1.5-.345-2.122a4.494 4.494 0 00-.972-1.59 4.096 4.096 0 00-1.518-1 5.337 5.337 0 00-1.96-.346c-.733 0-1.386.117-1.975.346a4.139 4.139 0 00-1.509 1 4.65 4.65 0 00-.971 1.59c-.229.627-.346 1.335-.346 2.122v2.712c0 .792.117 1.5.346 2.121.228.623.552 1.154.971 1.59.42.437.919.771 1.509 1z"
|
39
38
|
})]
|
40
39
|
}));
|
41
40
|
});
|
@@ -27,17 +27,14 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
27
27
|
flex: 'none',
|
28
28
|
lineHeight: 1
|
29
29
|
}, style),
|
30
|
-
viewBox: "0 0
|
30
|
+
viewBox: "0 0 128 24",
|
31
31
|
xmlns: "http://www.w3.org/2000/svg"
|
32
32
|
}, rest), {}, {
|
33
33
|
children: [/*#__PURE__*/_jsx("title", {
|
34
34
|
children: TITLE
|
35
35
|
}), /*#__PURE__*/_jsx("path", {
|
36
36
|
clipRule: "evenodd",
|
37
|
-
d: "
|
38
|
-
// fill="#111111"
|
39
|
-
,
|
40
|
-
fillRule: "evenodd"
|
37
|
+
d: "M127.807.569a.57.57 0 00-.569-.569H64.181a.57.57 0 00-.568.569v22.808a.57.57 0 00.568.569h63.057a.57.57 0 00.569-.57V.57zM96.135 4.031h-8.636v14.916c-1.364-1.031-2.336-2.707-3.032-4.738.745-.504 1.57-1.162 2.395-1.82.193-.154.387-.309.58-.461l-1.297-1.34c-.541.638-1.36 1.44-2.134 2.121a35.04 35.04 0 01-.76-3.999 26.3 26.3 0 002.916-.84l-1.44-1.462c-1.396.6-3.754 1.16-5.83 1.5v9.98c0 .783-.42 1.16-.76 1.341.26.362.6 1.122.717 1.52.026-.02.058-.047.09-.074l.027-.02c.148-.113.361-.24.749-.437l.122-.058c.648-.325 1.742-.814 3.68-1.649-.122-.361-.298-1-.361-1.5l-2.656 1.059V9.232c.218-.044.436-.081.657-.12.184-.03.37-.062.56-.098.621 5.062 1.859 9.359 4.572 11.598a7.37 7.37 0 011.195-1.436v1.016h8.608v-.181c.34.34.68.76.877 1.08 1.779-1.74 2.756-3.76 3.313-5.723.797 2.26 1.96 3.978 3.718 5.563.239-.5.759-1.08 1.216-1.42-2.417-1.978-3.574-4.28-4.312-8.1.032-.411.036-.827.04-1.203l.002-.179V8.391h-1.7v1.442c0 2.6-.297 6.498-3.154 9.518v-.861h-6.792v-1.521c.377.282.84.68 1.057.899.919-1.08 1.758-2.383 2.538-3.861.659 1.218 1.2 2.34 1.556 3.26l1.599-.862c-.478-1.202-1.28-2.68-2.257-4.26.78-1.68 1.418-3.52 1.96-5.397l-1.657-.34a30.022 30.022 0 01-1.36 4.057 71.59 71.59 0 00-2.38-3.382l-1.056.543v-1.92h6.83V4.031zm-20.616.595c3.356-.436 7.233-1.18 9.469-1.978v-.005l1.497 1.5c-2.554.856-6.07 1.478-9.288 1.898v3.744c-.01 3.297-.356 8.072-2.438 11.257-.318-.297-1.056-.739-1.476-.898 2.034-3.08 2.236-7.419 2.236-10.519V4.626zm29.378 5.026h17.705v1.898h-9.288a40 40 0 01-4.233 6.302l9.087-.66a85.73 85.73 0 00-2.236-3.238l1.7-.899c1.657 2.218 3.616 5.079 4.593 6.919l-1.795 1.079c-.281-.6-.701-1.319-1.179-2.1l-3.853.32c-6.973.579-8.016.666-8.807.977-.117-.42-.436-1.478-.717-2.08.499-.116.935-.616 1.556-1.398.563-.643 2.082-2.823 3.298-5.222h-5.831V9.652zm-35.432 9.694c.919-1.5 2.22-4.02 3.218-6.259l1.216 1.26a89.24 89.24 0 01-3.016 6.28l-1.418-1.281zm22.474-7.057a63.436 63.436 0 00-2.618-3.999v8.078c.982-1.117 1.859-2.52 2.618-4.079zM69.03 9.593l.898-1.382.005.005c1.116.5 2.635 1.34 3.415 1.94l-.94 1.559c-.722-.643-2.241-1.542-3.377-2.122zM98.047 2.57c-.398 2.978-1.237 5.86-2.618 7.641.42.218 1.216.702 1.54.963.717-1.021 1.296-2.34 1.795-3.84h4.493c-.281 1.282-.637 2.6-.961 3.52l1.46.442c.579-1.361 1.158-3.5 1.577-5.36l-1.237-.362-.297.058h-4.557c.218-.898.42-1.84.558-2.802l-1.753-.26zM70.028 4.233l.919-1.361v.005c1.136.558 2.692 1.478 3.473 2.138l-.977 1.5c-.739-.66-2.279-1.644-3.415-2.282zm37.062-.144h13.462v1.899H107.09V4.089zM4.92 13.81v7.184H2V2.951h7.748c1.668 0 2.958.49 3.871 1.473.914.984 1.37 2.303 1.37 3.957s-.456 2.972-1.37 3.956c-.913.984-2.203 1.473-3.871 1.473H4.921zm0-2.563h4.648c.743 0 1.316-.191 1.73-.58.415-.388.622-.946.622-1.67V7.76c0-.729-.207-1.282-.621-1.67-.415-.388-.993-.58-1.731-.58H4.92v5.738zm16.187 2.563v7.184h-2.921V2.951h7.749c1.667 0 2.957.49 3.871 1.473.913.984 1.37 2.303 1.37 3.957s-.457 2.972-1.37 3.956c-.914.984-2.204 1.473-3.871 1.473h-4.828zm0-2.563h4.647c.743 0 1.317-.191 1.731-.58.415-.388.622-.946.622-1.67V7.76c0-.729-.207-1.282-.622-1.67-.414-.388-.993-.58-1.731-.58h-4.647v5.738zm20.345 7.37v2.377h-7.849v-2.377h2.454V5.335h-2.454V2.957h7.849v2.377h-2.48v13.284h2.48zm13.823 1.793c-.95.388-2.018.584-3.186.584-1.169 0-2.23-.196-3.186-.584a6.553 6.553 0 01-2.454-1.723c-.68-.76-1.205-1.702-1.577-2.824-.372-1.127-.558-2.42-.558-3.887 0-1.468.186-2.766.558-3.888.372-1.122.898-2.063 1.577-2.823a6.676 6.676 0 012.454-1.723c.95-.389 2.017-.585 3.186-.585 1.168 0 2.23.191 3.186.585a6.554 6.554 0 012.454 1.723c.68.76 1.205 1.701 1.577 2.823.372 1.128.557 2.42.557 3.888 0 1.467-.185 2.765-.557 3.887-.372 1.122-.897 2.063-1.577 2.824a6.656 6.656 0 01-2.454 1.723zm-5.161-2.367c.589.229 1.248.346 1.975.346a5.42 5.42 0 001.96-.346 4.141 4.141 0 001.518-1c.415-.436.744-.962.972-1.59.228-.627.345-1.334.345-2.121V10.62c0-.793-.111-1.5-.345-2.122a4.494 4.494 0 00-.972-1.59 4.095 4.095 0 00-1.518-1 5.337 5.337 0 00-1.96-.346c-.733 0-1.386.117-1.975.346a4.139 4.139 0 00-1.509 1 4.651 4.651 0 00-.971 1.59c-.229.627-.346 1.335-.346 2.122v2.712c0 .792.117 1.5.346 2.121.228.623.552 1.154.971 1.59.42.437.919.771 1.509 1z"
|
41
38
|
})]
|
42
39
|
}));
|
43
40
|
});
|
package/es/PPIO/index.d.ts
CHANGED
@@ -1,6 +1,4 @@
|
|
1
1
|
import Avatar from './components/Avatar';
|
2
|
-
import BrandColor from './components/BrandColor';
|
3
|
-
import BrandMono from './components/BrandMono';
|
4
2
|
import Color from './components/Color';
|
5
3
|
import Combine from './components/Combine';
|
6
4
|
import Mono from './components/Mono';
|
@@ -8,8 +6,6 @@ import Text from './components/Text';
|
|
8
6
|
import TextCn from './components/TextCn';
|
9
7
|
export type CompoundedIcon = typeof Mono & {
|
10
8
|
Avatar: typeof Avatar;
|
11
|
-
Brand: typeof BrandMono;
|
12
|
-
BrandColor: typeof BrandColor;
|
13
9
|
Color: typeof Color;
|
14
10
|
Combine: typeof Combine;
|
15
11
|
Text: typeof Text;
|
package/es/PPIO/index.js
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
'use client';
|
2
2
|
|
3
3
|
import Avatar from "./components/Avatar";
|
4
|
-
import BrandColor from "./components/BrandColor";
|
5
|
-
import BrandMono from "./components/BrandMono";
|
6
4
|
import Color from "./components/Color";
|
7
5
|
import Combine from "./components/Combine";
|
8
6
|
import Mono from "./components/Mono";
|
@@ -14,8 +12,6 @@ Icons.Color = Color;
|
|
14
12
|
Icons.Text = Text;
|
15
13
|
Icons.TextCn = TextCn;
|
16
14
|
Icons.Avatar = Avatar;
|
17
|
-
Icons.Brand = BrandMono;
|
18
|
-
Icons.BrandColor = BrandColor;
|
19
15
|
Icons.Combine = Combine;
|
20
16
|
Icons.colorPrimary = COLOR_PRIMARY;
|
21
17
|
Icons.title = TITLE;
|
package/es/PPIO/style.d.ts
CHANGED
package/es/PPIO/style.js
CHANGED
package/es/Vllm/style.d.ts
CHANGED