Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
"allowTrailingCommas": true,
},
},
"files": {
// This generated stylesheet exceeds Biome's file-size limit and should be skipped entirely.
"ignore": [
"packages/genui/a2ui/styles/theme.css",
],
},
"organizeImports": {
// We use `eslint-plugin-import` for imports sorting
"enabled": false,
Expand Down
8 changes: 3 additions & 5 deletions packages/genui/a2ui-playground/lynx-src/a2ui/index.css

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
},
"returnType": "string"
},
"variant": "h3"
"variant": "h4"
},
{
"id": "status-col",
Expand Down Expand Up @@ -177,7 +177,7 @@
},
"returnType": "string"
},
"variant": "h3"
"variant": "h4"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion packages/genui/a2ui-playground/src/pages/AIChatPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,7 @@ export function AIChatPage(
disabled={isGenerating || inputValue.trim().length === 0}
onClick={handleSend}
>
<span className='chatSendIcon' aria-hidden='true'>-&gt;</span>
<span className='chatSendIcon' aria-hidden='true'></span>
Comment thread
HuJean marked this conversation as resolved.
{isGenerating ? 'Generating' : 'Send'}
</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/genui/a2ui/styles/catalog/Icon.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
font-weight: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
letter-spacing: 1px;
display: inline-flex;
align-items: center;
justify-content: center;
Expand Down
22 changes: 11 additions & 11 deletions packages/genui/a2ui/styles/catalog/Text.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,54 +14,54 @@
}

.text-h1 {
font-size: 28px;
font-size: 24px;
font-weight: bold;
color: var(--a2ui-color-on-surface);
line-height: 1.15;
line-height: 1.2;
flex-shrink: 0;
}

.text-h2 {
font-size: 22px;
font-size: 20px;
font-weight: bold;
color: var(--a2ui-color-on-surface);
line-height: 1.2;
flex-shrink: 0;
}

.text-h3 {
font-size: 18px;
font-size: 16px;
font-weight: bold;
color: var(--a2ui-color-on-surface);
line-height: 1.2;
flex-shrink: 0;
}

.text-h4 {
font-size: 15px;
font-size: 14px;
font-weight: bold;
color: var(--a2ui-color-on-surface);
line-height: 1.2;
flex-shrink: 0;
}

.text-h5 {
font-size: 13px;
font-size: 12px;
font-weight: bold;
color: var(--a2ui-color-on-surface);
line-height: 1.2;
flex-shrink: 0;
}

.text-caption {
font-size: 11px;
font-size: 10px;
color: var(--a2ui-color-text-muted);
line-height: 1.5;
flex-shrink: 0;
}

.text-body {
font-size: 15px;
font-size: 14px;
font-weight: normal;
color: var(--a2ui-color-on-surface);
line-height: 1.5;
Expand All @@ -83,15 +83,15 @@

.text-price {
flex-shrink: 0;
font-size: 16px;
font-size: 15px;
font-weight: bold;
color: var(--a2ui-color-primary);
line-height: 1.5;
}

.text-link {
flex-shrink: 0;
font-size: 15px;
font-size: 14px;
font-weight: 600;
color: var(--a2ui-color-primary-hover);
text-decoration: underline;
Expand All @@ -100,7 +100,7 @@

.text-label {
flex-shrink: 0;
font-size: 11px;
font-size: 10px;
font-weight: bold;
color: var(--a2ui-color-text-muted);
letter-spacing: 0.8px;
Expand Down
3 changes: 2 additions & 1 deletion packages/genui/a2ui/styles/theme.css

Large diffs are not rendered by default.

Loading