Skip to content

Commit 73a4e3d

Browse files
committed
📝 docs(bot): Auto sync agents & plugin to readme
1 parent 2595879 commit 73a4e3d

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

changelog/v1.json

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
[
2+
{
3+
"children": {
4+
"features": ["Support new ai provider in client pglite."]
5+
},
6+
"date": "2025-01-17",
7+
"version": "1.47.0"
8+
},
29
{
310
"children": {
411
"fixes": [

src/features/DevPanel/FloatPanel.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ const useStyles = createStyles(({ token, css }) => {
4646
position: fixed;
4747
z-index: 1000;
4848
49+
overflow: hidden;
4950
display: flex;
5051
5152
border-radius: 12px;
52-
overflow: hidden;
5353
5454
background: ${token.colorBgContainer};
5555
box-shadow: ${token.boxShadow};

src/features/DevPanel/PostgresViewer/DataTable/Table.tsx

+7-5
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const useStyles = createStyles(({ token, css }) => ({
2929
table {
3030
border-collapse: collapse;
3131
width: 100%;
32+
margin-inline-end: 12px;
3233
font-family: ${token.fontFamilyCode};
33-
margin-right: 12px;
3434
}
3535
3636
thead {
@@ -41,12 +41,14 @@ const useStyles = createStyles(({ token, css }) => ({
4141
4242
th,
4343
td {
44-
padding: 8px 12px;
45-
font-size: 12px;
46-
border-right: 1px solid ${token.colorBorderSecondary};
44+
overflow: hidden;
4745
4846
max-width: 200px;
49-
overflow: hidden;
47+
padding-block: 8px;
48+
padding-inline: 12px;
49+
border-inline-end: 1px solid ${token.colorBorderSecondary};
50+
51+
font-size: 12px;
5052
text-overflow: ellipsis;
5153
white-space: nowrap;
5254
}

src/features/DevPanel/PostgresViewer/Schema.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ const useStyles = createStyles(({ token, css }) => ({
5050
background: ${token.colorBgContainer};
5151
`,
5252
schema: css`
53+
font-family: ${token.fontFamilyCode};
5354
font-size: 12px;
54-
color: ${token.colorTextTertiary};
5555
font-weight: normal;
56-
font-family: ${token.fontFamilyCode};
56+
color: ${token.colorTextTertiary};
5757
`,
5858
schemaHeader: css`
5959
display: flex;

src/features/DevPanel/PostgresViewer/TableColumns.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { useTableColumns } from './useTableColumns';
88
const useStyles = createStyles(({ token, css }) => ({
99
container: css`
1010
margin-inline: 40px 4px;
11-
1211
font-size: ${token.fontSizeSM}px;
1312
color: ${token.colorTextSecondary};
1413
`,
@@ -18,8 +17,8 @@ const useStyles = createStyles(({ token, css }) => ({
1817
font-family: ${token.fontFamilyCode};
1918
`,
2019
type: css`
21-
color: ${token.red9};
2220
font-size: 10px;
21+
color: ${token.red9};
2322
`,
2423
}));
2524

0 commit comments

Comments
 (0)