Skip to content

Commit

Permalink
📝 docs(bot): Auto sync agents & plugin to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lobehubbot committed Jan 7, 2025
1 parent 61056f2 commit 6f3331d
Show file tree
Hide file tree
Showing 98 changed files with 138 additions and 148 deletions.
7 changes: 7 additions & 0 deletions changelog/v1.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
[
{
"children": {
"features": ["Brand new AI provider."]
},
"date": "2025-01-07",
"version": "1.44.0"
},
{
"children": {
"fixes": ["Fix portal suspense error when first open."]
Expand Down
3 changes: 1 addition & 2 deletions src/app/(main)/changelog/features/VersionTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ const useStyles = createStyles(({ token, css }) => {
margin: 0;
padding-block: 4px;
padding-inline: 12px;
border-radius: 16px;
color: ${token.colorTextSecondary};
border-radius: 16px;
`,
};
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
padding-block: 8px 4px;
padding-inline: 4px;
border-radius: 6px;
background: ${isDarkMode ? token.colorFillTertiary : token.colorFillQuaternary};
border-radius: 6px;
`,
}));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ const useStyles = createStyles(({ css, token }) => ({
padding-block: 4px;
padding-inline: 6px;
border-radius: 6px;
font-size: 12px;
border-radius: 6px;
&:hover {
background: ${token.colorFillTertiary};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => {
inset-block: 56px 50px;
width: 32px;
border-block-end: 2px solid ${borderColor};
}
`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ const useStyles = createStyles(({ css, token, responsive }) => ({
height: 100%;
min-height: 110px;
padding: 16px;
border-radius: ${token.borderRadius}px;
color: ${token.colorText};
background: ${token.colorBgContainer};
border-radius: ${token.borderRadius}px;
&:hover {
background: ${token.colorBgElevated};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ const useStyles = createStyles(({ css, token, responsive }) => ({
padding-block: 12px;
padding-inline: 24px;
border-radius: 48px;
color: ${token.colorText};
background: ${token.colorBgContainer};
border-radius: 48px;
&:hover {
background: ${token.colorBgElevated};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ const useStyles = createStyles(({ css, token }) => ({
padding-block: 12px;
padding-inline: 16px;
border-radius: 9999px;
background: ${token.colorText};
border-radius: 9999px;
box-shadow: ${token.boxShadowSecondary};
`,
}));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ const useStyles = createStyles(({ css, token, isDarkMode }, index: number) => ({
inset-inline-start: 26px;
width: 18px;
border-block-end: 2px solid ${token.colorBorderSecondary};
border-inline-start: 2px solid ${token.colorBorderSecondary};
border-end-start-radius: 8px;
Expand All @@ -47,7 +46,6 @@ const useStyles = createStyles(({ css, token, isDarkMode }, index: number) => ({
margin-block: 2px;
padding-block: 4px;
padding-inline: 8px;
border-radius: ${token.borderRadius}px;
&:hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
margin-block: 2px;
margin-inline: 8px;
padding: 8px;
border-radius: ${token.borderRadius}px;
&.topic-item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const useStyles = createStyles(({ css, prefixCls, token, responsive }) => ({
container: css`
.${prefixCls}-collapse-header {
padding-inline: 16px 10px !important;
color: ${token.colorTextDescription} !important;
border-radius: ${token.borderRadius}px !important;
color: ${token.colorTextDescription} !important;
${responsive.mobile} {
border-radius: 0 !important;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/chat/features/Migration/Start.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const useStyles = createStyles(({ css, token, isDarkMode, responsive }) => ({
iconCtn: css`
width: 72px;
height: 72px;
background: ${isDarkMode ? token.blue1 : token.geekblue1};
border-radius: 50%;
background: ${isDarkMode ? token.blue1 : token.geekblue1};
`,
intro: css`
${responsive.mobile} {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { ExampleTopic } from '@/types/discover';

const useStyles = createStyles(({ css, token }) => ({
active: css`
background: ${token.colorBgElevated};
border-inline-start: 4px solid ${token.colorFill};
background: ${token.colorBgElevated};
box-shadow: 0 0 0 1px ${token.colorFillSecondary} inset;
`,
container: css`
Expand All @@ -20,15 +20,16 @@ const useStyles = createStyles(({ css, token }) => ({
item: css`
cursor: pointer;
background: ${token.colorFillTertiary};
border-inline-start: 4px solid transparent;
border-radius: ${token.borderRadiusLG}px;
background: ${token.colorFillTertiary};
transition: all 0.2s ${token.motionEaseInOut};
&:hover {
background: ${token.colorBgElevated};
border-inline-start: 4px solid ${token.colorFill};
background: ${token.colorBgElevated};
box-shadow: 0 0 0 1px ${token.colorFillSecondary} inset;
}
`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import Back from '../../../features/Back';

export const useStyles = createStyles(({ css, token }) => ({
tag: css`
border: none;
color: ${token.colorTextSecondary};
background: ${token.colorFillSecondary};
border: none;
`,
time: css`
font-size: 12px;
Expand Down
3 changes: 2 additions & 1 deletion src/app/(main)/discover/(detail)/features/ShareButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ const useStyles = createStyles(({ css, token }) => {
banner: css`
overflow: hidden;
background: ${token.colorBgContainer};
border: 1px solid ${token.colorBorderSecondary};
border-radius: ${token.borderRadiusLG}px;
background: ${token.colorBgContainer};
box-shadow: ${token.boxShadowTertiary};
`,
copy: css`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import Back from '../../../features/Back';

export const useStyles = createStyles(({ css, token }) => ({
tag: css`
border: none;
color: ${token.colorTextSecondary};
background: ${token.colorFillSecondary};
border: none;
`,
time: css`
font-size: 12px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import Back from '../../../features/Back';

export const useStyles = createStyles(({ css, token }) => ({
tag: css`
border: none;
color: ${token.colorTextSecondary};
background: ${token.colorFillSecondary};
border: none;
`,
time: css`
font-size: 12px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import Back from '../../../features/Back';

export const useStyles = createStyles(({ css, token }) => ({
tag: css`
border: none;
color: ${token.colorTextSecondary};
background: ${token.colorFillSecondary};
border: none;
`,
time: css`
font-size: 12px;
Expand Down
1 change: 0 additions & 1 deletion src/app/(main)/discover/(list)/_layout/Desktop/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export const useStyles = createStyles(({ css, token }) => ({
height: auto;
padding-block: 4px;
border-color: transparent;
transition: all 0.3s ${token.motionEaseInOut};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
height: 100%;
min-height: 162px;
border-radius: ${token.borderRadiusLG}px;
background: ${token.colorBgContainer};
border-radius: ${token.borderRadiusLG}px;
box-shadow: 0 0 1px 1px ${isDarkMode ? token.colorFillQuaternary : token.colorFillSecondary}
inset;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/discover/(list)/models/features/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
height: 100%;
min-height: 162px;
border-radius: ${token.borderRadiusLG}px;
background: ${token.colorBgContainer};
border-radius: ${token.borderRadiusLG}px;
box-shadow: 0 0 1px 1px ${isDarkMode ? token.colorFillQuaternary : token.colorFillSecondary}
inset;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/discover/(list)/plugins/features/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
height: 100%;
min-height: 162px;
border-radius: ${token.borderRadiusLG}px;
background: ${token.colorBgContainer};
border-radius: ${token.borderRadiusLG}px;
box-shadow: 0 0 1px 1px ${isDarkMode ? token.colorFillQuaternary : token.colorFillSecondary}
inset;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/discover/(list)/providers/features/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
height: 100%;
min-height: 162px;
border-radius: ${token.borderRadiusLG}px;
background: ${token.colorBgContainer};
border-radius: ${token.borderRadiusLG}px;
box-shadow: 0 0 1px 1px ${isDarkMode ? token.colorFillQuaternary : token.colorFillSecondary}
inset;
Expand Down
3 changes: 2 additions & 1 deletion src/app/(main)/discover/components/GridLoadingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
overflow: hidden;
background: ${token.colorBgContainer};
border-radius: ${token.borderRadiusLG}px;
background: ${token.colorBgContainer};
box-shadow: 0 0 1px 1px ${isDarkMode ? token.colorFillQuaternary : token.colorFillSecondary}
inset;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/discover/components/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ const useStyles = createStyles(({ css, responsive, token }) => ({
padding-block: 0.1em;
padding-inline: 0.3em;
border-radius: ${token.borderRadius}px;
font-size: 18px;
font-weight: 500;
color: ${token.colorTextSecondary};
background: ${token.colorFillSecondary};
border-radius: ${token.borderRadius}px;
${responsive.mobile} {
font-size: 14px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const useStyles = createStyles(({ css, token }) => ({
kbd {
margin-inline: 2px;
padding-inline: 6px;
background: ${token.colorFillTertiary};
border-radius: 4px;
background: ${token.colorFillTertiary};
}
`,
}));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const useStyles = createStyles(({ css, token, isDarkMode }) => ({
margin-inline: 8px;
padding-block: 4px;
padding-inline: 8px;
border-radius: ${token.borderRadius}px;
&.${knowledgeItemClass} {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const useStyles = createStyles(({ css, token }, showDetail: boolean) => {
`,
content: css`
height: 100%;
background: transparent !important;
border: none !important;
background: transparent !important;
`,
extra: css`
position: fixed;
Expand All @@ -26,9 +26,9 @@ const useStyles = createStyles(({ css, token }, showDetail: boolean) => {
inset-inline-end: 0;
width: ${DETAIL_PANEL_WIDTH}px;
border-inline-start: 1px solid ${token.colorSplit};
background: ${token.colorBgLayout};
border-inline-start: 1px solid ${token.colorSplit};
`,
header: css`
background: transparent !important;
Expand Down
4 changes: 2 additions & 2 deletions src/app/(main)/files/(content)/NotSupportClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ const useStyles = createStyles(({ css, token }) => ({
width: 200px;
height: 140px;
border-radius: ${token.borderRadiusLG}px;
font-weight: 500;
text-align: center;
background: ${token.colorFillTertiary};
border-radius: ${token.borderRadiusLG}px;
box-shadow: 0 0 0 1px ${token.colorFillTertiary} inset;
transition: background 0.3s ease-in-out;
Expand All @@ -57,8 +57,8 @@ const useStyles = createStyles(({ css, token }) => ({
`,

icon: css`
color: ${token.colorTextLightSolid};
border-radius: ${token.borderRadiusLG}px;
color: ${token.colorTextLightSolid};
`,
iconGroup: css`
margin-block-start: -44px;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/profile/_layout/Desktop/SideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const useStyles = createStyles(({ token, css }) => ({
container: css`
padding-block: 0 16px;
padding-inline: 12px;
background: ${token.colorBgContainer};
border-inline-end: 1px solid ${token.colorBorder};
background: ${token.colorBgContainer};
`,
}));

Expand Down
Loading

0 comments on commit 6f3331d

Please sign in to comment.