@mt-gloss/ui 0.1.14 → 0.1.15

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.
@@ -17,6 +17,6 @@ import { CardShellProps } from './types';
17
17
  * ```
18
18
  */
19
19
  export declare const CardShell: {
20
- ({ contentSlot, children, colSpan, isStale, isRetrying, beta, disabled, style, accentRing, onGraph, onDetails, onCustomize, onRemove, onWhatsThis, onExpand, onShrink, onMove, onReplace, onNavigate, onRetry, onRefresh, enableQuickSettings, onUpdateTimeframe, instanceTimeframe, cardTitle, quickConfigSlot, onViewAsStack, onUnstack, isStackedGroup, onUpdateStackedTimeframes, instanceStackedTimeframes, isGraphActive, isTableActive, isGraphCard, canExpand, anchorX, extensionOverflow, cardRef: externalCardRef, hovered, }: CardShellProps): import("react/jsx-runtime").JSX.Element;
20
+ ({ contentSlot, children, colSpan, isStale, isRetrying, beta, disabled, style, accentRing, onGraph, onDetails, onCustomize, onRemove, onWhatsThis, onExpand, onShrink, onMove, onReplace, onNavigate, onRetry, onRefresh, enableQuickSettings, onUpdateTimeframe, instanceTimeframe, cardTitle, quickConfigSlot, onViewAsStack, onUnstack, isStackedGroup, onUpdateStackedTimeframes, instanceStackedTimeframes, isGraphActive, isTableActive, isGraphCard, canExpand, anchorX, extensionOverflow, cardRef: externalCardRef, hovered, forceHide, }: CardShellProps): import("react/jsx-runtime").JSX.Element;
21
21
  displayName: string;
22
22
  };
@@ -218,4 +218,13 @@ export interface CardShellProps {
218
218
  */
219
219
  extensionOverflow?: import('../../overlays/ActionStrip').OverflowAction[];
220
220
  cardRef?: RefObject<HTMLDivElement | null>;
221
+ /**
222
+ * Quick 260422-e7e — When true, forces the action strip (gutter) to be hidden
223
+ * using its normal exit animation. Used by the grid to hide the strip the moment
224
+ * a resize gesture starts, without requiring hover state changes.
225
+ *
226
+ * Does not affect card data, content, or security boundaries — purely visual.
227
+ * @default false
228
+ */
229
+ forceHide?: boolean;
221
230
  }
@@ -7,6 +7,14 @@ export interface SectionDividerProps extends React.HTMLAttributes<HTMLDivElement
7
7
  fadeInMs?: number;
8
8
  fadeOutMs?: number;
9
9
  staggerMs?: number;
10
+ /**
11
+ * Quick 260422-e7e — visual style variant.
12
+ * 'dashed' (default) — 1px repeating-gradient dashed line (Phase 23 original).
13
+ * 'seam-bleed' — 20px wide gradient wash centered on the section boundary.
14
+ * Used during drag/resize to show section seams without overlaying card content.
15
+ * @default 'dashed'
16
+ */
17
+ variant?: 'dashed' | 'seam-bleed';
10
18
  }
11
19
  /**
12
20
  * SectionDivider — SECTION-DIV-01 (Phase 23 D-22).
@@ -26,4 +34,4 @@ export interface SectionDividerProps extends React.HTMLAttributes<HTMLDivElement
26
34
  * Defaults bind to DEFAULT_GRID_INTERACTION_PHYSICS (CONFIG-01).
27
35
  * Respects prefers-reduced-motion.
28
36
  */
29
- export declare function SectionDivider({ state, staggerIndex, fadeInMs, fadeOutMs, staggerMs, className, style, ...rest }: SectionDividerProps): import("react/jsx-runtime").JSX.Element;
37
+ export declare function SectionDivider({ state, staggerIndex, fadeInMs, fadeOutMs, staggerMs, variant, className, style, ...rest }: SectionDividerProps): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mt-gloss/ui",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "restricted"