@mt-gloss/ui 0.1.137 → 0.1.138

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.
@@ -1,29 +0,0 @@
1
- import { default as React } from 'react';
2
- import { PanelShellProps } from '../PanelHost';
3
- export interface MetricInfoBlock {
4
- /** Metric display name from getMetricInfo(metricTypeId).title. */
5
- title: string;
6
- /** Metric description from getMetricInfo(metricTypeId).description. */
7
- description: string;
8
- }
9
- export interface MetricInfoShellProps extends PanelShellProps {
10
- /** Span of the source card (1|2|3). Plumbed by reptime MetricSettingsPanel. */
11
- cardSpan?: 1 | 2 | 3;
12
- /**
13
- * Render-as-children path for the Stage 3D clone. Mirrors SettingsShell's
14
- * previewSlot prop (D-09 — verbatim reuse). Consumer (reptime) builds this
15
- * by calling renderCard(card, span, ...) so the clone is a 1:1 representation
16
- * of the live card.
17
- */
18
- previewSlot?: React.ReactNode;
19
- /**
20
- * Metric name + description block rendered below the CloneStage (D-05).
21
- * Consumer pulls these from getMetricInfo(metricTypeId) at
22
- * reptime-cloud/.../app/data/metricInfo/helpers.ts.
23
- */
24
- metricInfo: MetricInfoBlock;
25
- }
26
- export declare function MetricInfoShell({ isOpen, cardSpan, previewSlot, metricInfo, }: MetricInfoShellProps): import("react/jsx-runtime").JSX.Element;
27
- export declare namespace MetricInfoShell {
28
- var displayName: string;
29
- }
@@ -1,7 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface GhostSlotPillProps {
3
- id: string;
4
- onActivate: () => void;
5
- disabled?: boolean;
6
- }
7
- export declare function GhostSlotPill({ id, onActivate, disabled, }: GhostSlotPillProps): React.ReactElement;