Support for exporting chats to disk

This commit is contained in:
Scott Nonnenberg
2025-11-19 02:12:04 +10:00
committed by GitHub
parent 6b16d75036
commit c4378d9c24
53 changed files with 2549 additions and 366 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ export namespace AxoAlertDialog {
* ----------------------------------
*/
export type ActionVariant = 'primary' | 'destructive';
export type ActionVariant = 'primary' | 'secondary' | 'destructive';
export type ActionProps = Readonly<{
variant: ActionVariant;
+3 -1
View File
@@ -363,6 +363,7 @@ export namespace AxoDialog {
variant: ActionVariant;
symbol?: AxoSymbol.InlineGlyphName;
arrow?: boolean;
experimentalSpinner?: { 'aria-label': string } | null;
onClick: () => void;
children: ReactNode;
}>;
@@ -373,9 +374,10 @@ export namespace AxoDialog {
variant={props.variant}
symbol={props.symbol}
arrow={props.arrow}
experimentalSpinner={props.experimentalSpinner}
onClick={props.onClick}
size="md"
width="grow"
onClick={props.onClick}
>
{props.children}
</AxoButton.Root>