@superinterface/react 3.20.2 → 3.21.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.
package/dist/index.d.cts CHANGED
@@ -576,7 +576,31 @@ type Args$3 = Omit<Args$4, 'children'>;
576
576
  declare const AudioThread: {
577
577
  (props: Args$3): react_jsx_runtime.JSX.Element;
578
578
  Root: ({ children, play, className, style, ...rest }: Args$4) => react_jsx_runtime.JSX.Element;
579
- Visualization: (props: StyleProps) => react_jsx_runtime.JSX.Element;
579
+ Visualization: {
580
+ (props: StyleProps): react_jsx_runtime.JSX.Element;
581
+ Root: ({ children, ...rest }: {
582
+ children: React.ReactNode;
583
+ }) => react_jsx_runtime.JSX.Element;
584
+ Provider: ({ children, }: {
585
+ children: React.ReactNode;
586
+ }) => react_jsx_runtime.JSX.Element;
587
+ AssistantVisualization: {
588
+ (props: StyleProps & {
589
+ height?: string;
590
+ width?: string;
591
+ }): react_jsx_runtime.JSX.Element;
592
+ Root: ({ children, height, width, ...rest }: StyleProps & {
593
+ children: React.ReactNode;
594
+ height?: string;
595
+ width?: string;
596
+ }) => react_jsx_runtime.JSX.Element;
597
+ BarsVisualizer: ({ height, barWidth, ...rest }: StyleProps & {
598
+ height?: string;
599
+ barWidth?: string;
600
+ }) => react_jsx_runtime.JSX.Element;
601
+ };
602
+ AssistantInfo: (props: StyleProps) => react_jsx_runtime.JSX.Element;
603
+ };
580
604
  Status: (props: StyleProps) => react_jsx_runtime.JSX.Element;
581
605
  Form: (props: StyleProps) => react_jsx_runtime.JSX.Element;
582
606
  };
package/dist/index.d.ts CHANGED
@@ -576,7 +576,31 @@ type Args$3 = Omit<Args$4, 'children'>;
576
576
  declare const AudioThread: {
577
577
  (props: Args$3): react_jsx_runtime.JSX.Element;
578
578
  Root: ({ children, play, className, style, ...rest }: Args$4) => react_jsx_runtime.JSX.Element;
579
- Visualization: (props: StyleProps) => react_jsx_runtime.JSX.Element;
579
+ Visualization: {
580
+ (props: StyleProps): react_jsx_runtime.JSX.Element;
581
+ Root: ({ children, ...rest }: {
582
+ children: React.ReactNode;
583
+ }) => react_jsx_runtime.JSX.Element;
584
+ Provider: ({ children, }: {
585
+ children: React.ReactNode;
586
+ }) => react_jsx_runtime.JSX.Element;
587
+ AssistantVisualization: {
588
+ (props: StyleProps & {
589
+ height?: string;
590
+ width?: string;
591
+ }): react_jsx_runtime.JSX.Element;
592
+ Root: ({ children, height, width, ...rest }: StyleProps & {
593
+ children: React.ReactNode;
594
+ height?: string;
595
+ width?: string;
596
+ }) => react_jsx_runtime.JSX.Element;
597
+ BarsVisualizer: ({ height, barWidth, ...rest }: StyleProps & {
598
+ height?: string;
599
+ barWidth?: string;
600
+ }) => react_jsx_runtime.JSX.Element;
601
+ };
602
+ AssistantInfo: (props: StyleProps) => react_jsx_runtime.JSX.Element;
603
+ };
580
604
  Status: (props: StyleProps) => react_jsx_runtime.JSX.Element;
581
605
  Form: (props: StyleProps) => react_jsx_runtime.JSX.Element;
582
606
  };