@xenide-io/the-old-ui-theme 0.6.3 → 0.6.5
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/dist/suite.d.mts +7 -4
- package/dist/suite.d.ts +7 -4
- package/dist/suite.js +377 -180
- package/dist/suite.mjs +389 -181
- package/package.json +1 -1
- package/src/styles/suite-skin.css +136 -45
- package/src/suite/components/ai-panel.tsx +306 -137
- package/src/suite/components/suite-layout.test.tsx +5 -0
- package/src/suite/components/suite-layout.tsx +22 -12
- package/src/suite/components/suite-sidebar.tsx +3 -1
- package/src/suite/components/suite-user-menu.tsx +43 -7
- package/src/suite/components/today-page-frame.tsx +4 -5
package/dist/suite.d.mts
CHANGED
|
@@ -4,9 +4,8 @@ import { ClassValue } from 'clsx';
|
|
|
4
4
|
export { m } from 'motion/react';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* Today page content wrapper
|
|
8
|
-
*
|
|
9
|
-
* Glow/clouds are absolute and do not create a nested scrollport.
|
|
7
|
+
* Today page content wrapper. The frame owns scrolling; its decorative layer
|
|
8
|
+
* is sticky so the original glow and clouds stay fixed while content moves.
|
|
10
9
|
*/
|
|
11
10
|
declare function TodayPageFrame({ children }: {
|
|
12
11
|
children: ReactNode;
|
|
@@ -501,6 +500,7 @@ declare function SuiteAiPanel({ presets, emptyState, title, fetchChat, sendMessa
|
|
|
501
500
|
}>;
|
|
502
501
|
sendMessage: (params: {
|
|
503
502
|
prompt: string;
|
|
503
|
+
signal?: AbortSignal;
|
|
504
504
|
}) => Promise<{
|
|
505
505
|
messages: SuiteAiChatMessage[];
|
|
506
506
|
reply: string;
|
|
@@ -737,7 +737,10 @@ todayIcon, todayIconClassName,
|
|
|
737
737
|
badge,
|
|
738
738
|
/** Breadcrumb line rendered above the title. */
|
|
739
739
|
breadcrumb,
|
|
740
|
-
/**
|
|
740
|
+
/**
|
|
741
|
+
* Keep the title parked at the top of the scrollport while the page scrolls.
|
|
742
|
+
* On by default — opt out only for pages that are not the page's own title.
|
|
743
|
+
*/
|
|
741
744
|
sticky, }: {
|
|
742
745
|
title: ReactNode;
|
|
743
746
|
description?: ReactNode;
|
package/dist/suite.d.ts
CHANGED
|
@@ -4,9 +4,8 @@ import { ClassValue } from 'clsx';
|
|
|
4
4
|
export { m } from 'motion/react';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* Today page content wrapper
|
|
8
|
-
*
|
|
9
|
-
* Glow/clouds are absolute and do not create a nested scrollport.
|
|
7
|
+
* Today page content wrapper. The frame owns scrolling; its decorative layer
|
|
8
|
+
* is sticky so the original glow and clouds stay fixed while content moves.
|
|
10
9
|
*/
|
|
11
10
|
declare function TodayPageFrame({ children }: {
|
|
12
11
|
children: ReactNode;
|
|
@@ -501,6 +500,7 @@ declare function SuiteAiPanel({ presets, emptyState, title, fetchChat, sendMessa
|
|
|
501
500
|
}>;
|
|
502
501
|
sendMessage: (params: {
|
|
503
502
|
prompt: string;
|
|
503
|
+
signal?: AbortSignal;
|
|
504
504
|
}) => Promise<{
|
|
505
505
|
messages: SuiteAiChatMessage[];
|
|
506
506
|
reply: string;
|
|
@@ -737,7 +737,10 @@ todayIcon, todayIconClassName,
|
|
|
737
737
|
badge,
|
|
738
738
|
/** Breadcrumb line rendered above the title. */
|
|
739
739
|
breadcrumb,
|
|
740
|
-
/**
|
|
740
|
+
/**
|
|
741
|
+
* Keep the title parked at the top of the scrollport while the page scrolls.
|
|
742
|
+
* On by default — opt out only for pages that are not the page's own title.
|
|
743
|
+
*/
|
|
741
744
|
sticky, }: {
|
|
742
745
|
title: ReactNode;
|
|
743
746
|
description?: ReactNode;
|