@lobehub/icons 2.23.1 → 2.25.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 +97 -97
- package/es/BAAI/components/Combine.js +0 -3
- package/es/Bilibili/components/Avatar.d.ts +5 -0
- package/es/Bilibili/components/Avatar.js +25 -0
- package/es/Bilibili/components/Color.d.ts +3 -0
- package/es/Bilibili/components/Color.js +41 -0
- package/es/Bilibili/components/Combine.d.ts +7 -0
- package/es/Bilibili/components/Combine.js +32 -0
- package/es/Bilibili/components/Mono.d.ts +3 -0
- package/es/Bilibili/components/Mono.js +41 -0
- package/es/Bilibili/components/Text.d.ts +3 -0
- package/es/Bilibili/components/Text.js +39 -0
- package/es/Bilibili/index.d.ts +15 -0
- package/es/Bilibili/index.js +14 -0
- package/es/Bilibili/style.d.ts +7 -0
- package/es/Bilibili/style.js +9 -0
- package/es/BilibiliIndex/components/Avatar.d.ts +5 -0
- package/es/BilibiliIndex/components/Avatar.js +25 -0
- package/es/BilibiliIndex/components/Combine.d.ts +5 -0
- package/es/BilibiliIndex/components/Combine.js +26 -0
- package/es/BilibiliIndex/components/Mono.d.ts +3 -0
- package/es/BilibiliIndex/components/Mono.js +40 -0
- package/es/BilibiliIndex/components/Text.d.ts +3 -0
- package/es/BilibiliIndex/components/Text.js +39 -0
- package/es/BilibiliIndex/index.d.ts +13 -0
- package/es/BilibiliIndex/index.js +12 -0
- package/es/BilibiliIndex/style.d.ts +7 -0
- package/es/BilibiliIndex/style.js +9 -0
- package/es/ElevenLabs/components/Combine.js +0 -3
- package/es/Grok/components/Combine.js +0 -3
- package/es/Liquid/components/Combine.js +0 -3
- package/es/OpenAI/components/Avatar.d.ts +1 -1
- package/es/OpenAI/components/Avatar.js +9 -1
- package/es/OpenAI/index.d.ts +3 -0
- package/es/OpenAI/index.js +4 -1
- package/es/OpenAI/style.d.ts +2 -0
- package/es/OpenAI/style.js +2 -0
- package/es/features/modelConfig.js +12 -0
- package/es/icons.d.ts +2 -0
- package/es/icons.js +2 -0
- package/es/toc.js +36 -0
- package/package.json +1 -1
package/es/OpenAI/index.d.ts
CHANGED
@@ -8,7 +8,10 @@ export type CompoundedIcon = typeof Mono & {
|
|
8
8
|
Text: typeof Text;
|
9
9
|
colorGpt3: string;
|
10
10
|
colorGpt4: string;
|
11
|
+
colorGpt5?: string;
|
11
12
|
colorO1: string;
|
13
|
+
colorO3: string;
|
14
|
+
colorOss?: string;
|
12
15
|
colorPlatform?: string;
|
13
16
|
colorPrimary: string;
|
14
17
|
title: string;
|
package/es/OpenAI/index.js
CHANGED
@@ -2,7 +2,7 @@ import Avatar from "./components/Avatar";
|
|
2
2
|
import Combine from "./components/Combine";
|
3
3
|
import Mono from "./components/Mono";
|
4
4
|
import Text from "./components/Text";
|
5
|
-
import { COLOR_GPT_3, COLOR_GPT_4, COLOR_O_1, COLOR_PLATFORM, COLOR_PRIMARY, TITLE } from "./style";
|
5
|
+
import { COLOR_GPT_3, COLOR_GPT_4, COLOR_GPT_5, COLOR_OSS, COLOR_O_1, COLOR_PLATFORM, COLOR_PRIMARY, TITLE } from "./style";
|
6
6
|
var Icons = Mono;
|
7
7
|
Icons.Text = Text;
|
8
8
|
Icons.Combine = Combine;
|
@@ -10,7 +10,10 @@ Icons.Avatar = Avatar;
|
|
10
10
|
Icons.colorPrimary = COLOR_PRIMARY;
|
11
11
|
Icons.colorGpt3 = COLOR_GPT_3;
|
12
12
|
Icons.colorGpt4 = COLOR_GPT_4;
|
13
|
+
Icons.colorGpt5 = COLOR_GPT_5;
|
13
14
|
Icons.colorO1 = COLOR_O_1;
|
15
|
+
Icons.colorO3 = COLOR_O_1;
|
16
|
+
Icons.colorOss = COLOR_OSS;
|
14
17
|
Icons.colorPlatform = COLOR_PLATFORM;
|
15
18
|
Icons.title = TITLE;
|
16
19
|
export default Icons;
|
package/es/OpenAI/style.d.ts
CHANGED
@@ -4,7 +4,9 @@ export declare const COMBINE_SPACE_MULTIPLE = 0.1;
|
|
4
4
|
export declare const COLOR_PRIMARY = "#000";
|
5
5
|
export declare const COLOR_GPT_3 = "#19C37D";
|
6
6
|
export declare const COLOR_GPT_4 = "#AB68FF";
|
7
|
+
export declare const COLOR_GPT_5 = "#F86AA4";
|
7
8
|
export declare const COLOR_O_1 = "#F9C322";
|
9
|
+
export declare const COLOR_OSS = "#0099FF";
|
8
10
|
export declare const COLOR_PLATFORM = "#0000FE";
|
9
11
|
export declare const AVATAR_BACKGROUND = "#000";
|
10
12
|
export declare const AVATAR_COLOR = "#fff";
|
package/es/OpenAI/style.js
CHANGED
@@ -4,7 +4,9 @@ export var COMBINE_SPACE_MULTIPLE = 0.1;
|
|
4
4
|
export var COLOR_PRIMARY = '#000';
|
5
5
|
export var COLOR_GPT_3 = '#19C37D';
|
6
6
|
export var COLOR_GPT_4 = '#AB68FF';
|
7
|
+
export var COLOR_GPT_5 = '#F86AA4';
|
7
8
|
export var COLOR_O_1 = '#F9C322';
|
9
|
+
export var COLOR_OSS = '#0099FF';
|
8
10
|
export var COLOR_PLATFORM = '#0000FE';
|
9
11
|
|
10
12
|
// Avatar constants
|
@@ -80,6 +80,18 @@ export var modelMappings = [{
|
|
80
80
|
props: {
|
81
81
|
type: 'gpt4'
|
82
82
|
}
|
83
|
+
}, {
|
84
|
+
Icon: OpenAI,
|
85
|
+
keywords: ['gpt-5'],
|
86
|
+
props: {
|
87
|
+
type: 'gpt5'
|
88
|
+
}
|
89
|
+
}, {
|
90
|
+
Icon: OpenAI,
|
91
|
+
keywords: ['gpt-oss'],
|
92
|
+
props: {
|
93
|
+
type: 'oss'
|
94
|
+
}
|
83
95
|
}, {
|
84
96
|
Icon: OpenAI,
|
85
97
|
keywords: ['o1-', '^o1', '/o1', 'o3-', '^o3', '/o3', 'o4-', '^o4', '/o4'],
|
package/es/icons.d.ts
CHANGED
@@ -26,6 +26,8 @@ export { default as Baidu, type CompoundedIcon as BaiduProps } from './Baidu';
|
|
26
26
|
export { default as BaiduCloud, type CompoundedIcon as BaiduCloudProps } from './BaiduCloud';
|
27
27
|
export { default as Baseten, type CompoundedIcon as BasetenProps } from './Baseten';
|
28
28
|
export { default as Bedrock, type CompoundedIcon as BedrockProps } from './Bedrock';
|
29
|
+
export { default as Bilibili, type CompoundedIcon as BilibiliProps } from './Bilibili';
|
30
|
+
export { default as BilibiliIndex, type CompoundedIcon as BilibiliIndexProps, } from './BilibiliIndex';
|
29
31
|
export { default as Bing, type CompoundedIcon as BingProps } from './Bing';
|
30
32
|
export { default as BurnCloud, type CompoundedIcon as BurnCloudProps } from './BurnCloud';
|
31
33
|
export { default as ByteDance, type CompoundedIcon as ByteDanceProps } from './ByteDance';
|
package/es/icons.js
CHANGED
@@ -26,6 +26,8 @@ export { default as Baidu } from "./Baidu";
|
|
26
26
|
export { default as BaiduCloud } from "./BaiduCloud";
|
27
27
|
export { default as Baseten } from "./Baseten";
|
28
28
|
export { default as Bedrock } from "./Bedrock";
|
29
|
+
export { default as Bilibili } from "./Bilibili";
|
30
|
+
export { default as BilibiliIndex } from "./BilibiliIndex";
|
29
31
|
export { default as Bing } from "./Bing";
|
30
32
|
export { default as BurnCloud } from "./BurnCloud";
|
31
33
|
export { default as ByteDance } from "./ByteDance";
|
package/es/toc.js
CHANGED
@@ -506,6 +506,42 @@ var toc = [{
|
|
506
506
|
"hasTextColor": false
|
507
507
|
},
|
508
508
|
"title": "Bedrock"
|
509
|
+
}, {
|
510
|
+
"color": "#FB7299",
|
511
|
+
"desc": "https://github.com/bilibili",
|
512
|
+
"docsUrl": "bilibili",
|
513
|
+
"fullTitle": "Bilibili (哔哩哔哩)",
|
514
|
+
"group": "provider",
|
515
|
+
"id": "Bilibili",
|
516
|
+
"param": {
|
517
|
+
"hasAvatar": true,
|
518
|
+
"hasBrand": false,
|
519
|
+
"hasBrandColor": false,
|
520
|
+
"hasColor": true,
|
521
|
+
"hasCombine": true,
|
522
|
+
"hasText": true,
|
523
|
+
"hasTextCn": false,
|
524
|
+
"hasTextColor": false
|
525
|
+
},
|
526
|
+
"title": "bilibili"
|
527
|
+
}, {
|
528
|
+
"color": "#5E19B7",
|
529
|
+
"desc": "https://huggingface.co/IndexTeam",
|
530
|
+
"docsUrl": "bilibili-index",
|
531
|
+
"fullTitle": "Bilibili Index (Index Team)",
|
532
|
+
"group": "model",
|
533
|
+
"id": "BilibiliIndex",
|
534
|
+
"param": {
|
535
|
+
"hasAvatar": true,
|
536
|
+
"hasBrand": false,
|
537
|
+
"hasBrandColor": false,
|
538
|
+
"hasColor": false,
|
539
|
+
"hasCombine": true,
|
540
|
+
"hasText": true,
|
541
|
+
"hasTextCn": false,
|
542
|
+
"hasTextColor": false
|
543
|
+
},
|
544
|
+
"title": "bilibili index"
|
509
545
|
}, {
|
510
546
|
"color": "#174ae4",
|
511
547
|
"colorGradient": "linear-gradient(130deg, #2870EA 20%, #1B4AEF 77.5%)",
|