@xenide-io/the-old-ui-theme 0.6.3 → 0.6.6

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 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 with a soft themed visual treatment.
8
- * Does not own scrolling `#main-content` is the scrollport so sticky headers work.
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
- /** Stick to the top of the scrollport (desktop page titles). */
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 with a soft themed visual treatment.
8
- * Does not own scrolling `#main-content` is the scrollport so sticky headers work.
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
- /** Stick to the top of the scrollport (desktop page titles). */
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;