@mt-gloss/ui 0.1.85 → 0.1.86

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.
@@ -3,5 +3,7 @@ export interface PanelChromeProps {
3
3
  children: ReactNode;
4
4
  onClose: () => void;
5
5
  isOpen?: boolean;
6
+ /** P2 — optional footer slot. Notification-center keeps null (no footer). */
7
+ footer?: ReactNode;
6
8
  }
7
- export declare function PanelChrome({ children, onClose, isOpen }: PanelChromeProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function PanelChrome({ children, onClose, isOpen, footer }: PanelChromeProps): import("react/jsx-runtime").JSX.Element;
@@ -8,6 +8,7 @@
8
8
  * `composites-panels.js` matching existing `internals` + `catalog` pattern.
9
9
  */
10
10
  export { PanelProvider, usePanelContext, usePanelContextOptional } from './PanelProvider';
11
+ export { SettingsShell } from './shells/SettingsShell';
11
12
  export { PanelHost } from './PanelHost';
12
13
  export { PanelHostShell } from './PanelHostShell';
13
14
  export { PanelSlot } from './PanelSlot';
@@ -0,0 +1,2 @@
1
+ import { PanelShellProps } from '../PanelHost';
2
+ export declare function SettingsShell({ isOpen }: PanelShellProps): import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Panel shells barrel — all shells available from '@mt-gloss/ui/composites/panels'.
3
+ */
4
+ export { SettingsShell } from './SettingsShell';
@@ -30,8 +30,6 @@ export type SlotCapacity = 1 | 3 | 5;
30
30
  /** Base props shared by all MetricCard variants. */
31
31
  export interface BaseMetricCardProps {
32
32
  label: string;
33
- /** Optional ReactNode rendered alongside the label in zone-a (geo badge, beta chip, etc.). */
34
- labelAdornment?: import('react').ReactNode;
35
33
  value?: number | string | null;
36
34
  valueFormat?: ValueFormat;
37
35
  trend?: TrendData | null;
@@ -1,12 +1,10 @@
1
- import { RefObject, ReactNode } from 'react';
1
+ import { RefObject } from 'react';
2
2
  /** Describes a single page entry in the dropdown list. */
3
3
  export interface PageInfo {
4
4
  id: string;
5
5
  name: string;
6
6
  named: boolean;
7
7
  cardCount: number;
8
- /** Optional trailing decoration (geo badge, etc.). Rendered after the page name. */
9
- icon?: ReactNode;
10
8
  }
11
9
  /** Props for the PageChip corner navigation element. */
12
10
  export interface PageChipProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mt-gloss/ui",
3
- "version": "0.1.85",
3
+ "version": "0.1.86",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "restricted"