@opencxh/ui-kit 3.176.0 → 3.176.1
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,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
1
|
export interface StatusDotProps {
|
|
3
2
|
/**
|
|
4
3
|
* Meaning, not colour. `neutral` is the off/idle state; `accent` marks
|
|
@@ -19,4 +18,4 @@ export interface StatusDotProps {
|
|
|
19
18
|
className?: string;
|
|
20
19
|
}
|
|
21
20
|
/** Small state marker: presence, session state, unread, live recording. */
|
|
22
|
-
export declare function StatusDot({ tone, shape, pulse, label, className, }: StatusDotProps):
|
|
21
|
+
export declare function StatusDot({ tone, shape, pulse, label, className, }: StatusDotProps): import("react").JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
1
|
export interface StepIndicatorProps {
|
|
3
2
|
/** Step ids in order. Only the position matters; the ids identify `current`. */
|
|
4
3
|
steps: string[];
|
|
@@ -18,4 +17,4 @@ export interface StepIndicatorProps {
|
|
|
18
17
|
className?: string;
|
|
19
18
|
}
|
|
20
19
|
/** Progress through a short, linear flow. */
|
|
21
|
-
export declare function StepIndicator({ steps, current, variant, label, className, }: StepIndicatorProps):
|
|
20
|
+
export declare function StepIndicator({ steps, current, variant, label, className, }: StepIndicatorProps): import("react").JSX.Element;
|
|
@@ -4,7 +4,7 @@ export interface VideoSurfaceProps {
|
|
|
4
4
|
* provider SDKs (Azure, Zoom, etc.) can attach their own video renderer.
|
|
5
5
|
* Return an optional cleanup function.
|
|
6
6
|
*/
|
|
7
|
-
attach: (el: HTMLDivElement) =>
|
|
7
|
+
attach: (el: HTMLDivElement) => undefined | (() => void);
|
|
8
8
|
active?: boolean;
|
|
9
9
|
mirrored?: boolean;
|
|
10
10
|
className?: string;
|