@mt-gloss/ui 0.1.137 → 0.1.139

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,5 +1,15 @@
1
1
  import { ReactNode } from 'react';
2
2
  export interface CloneStageProps {
3
3
  children: ReactNode;
4
+ /** D-06 — incrementing counter. Every change fires one spin via motion/react animate(). */
5
+ spinTrigger?: number;
6
+ /** D-07 — fires from animate().then() / .finished, NOT animationend DOM event. */
7
+ onSpinComplete?: () => void;
8
+ /** D-03 — total spin duration (ms). Default 500. */
9
+ spinDuration?: number;
10
+ /** D-02 — number of 360° rotations. Default 1. */
11
+ spinRotations?: number;
12
+ /** D-05 — CSS color for the transient theme accent overlay. */
13
+ accentColor?: string;
4
14
  }
5
- export declare function CloneStage({ children }: CloneStageProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function CloneStage({ children, spinTrigger, onSpinComplete, spinDuration, spinRotations, accentColor, }: CloneStageProps): 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.137",
3
+ "version": "0.1.139",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "restricted"