botframework-webchat-fluent-theme 4.18.1-main.20240917.4b9342a → 4.18.1-main.20240924.f09c8c5

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,9 +1,13 @@
1
- import React from 'react';
1
+ import react, { ReactNode } from 'react';
2
2
 
3
- declare const _default: React.MemoExoticComponent<({ children, variant }: Readonly<{
4
- children?: React.ReactNode;
5
- variant?: ("" | "fluent" | "copilot") | undefined;
6
- }>) => React.JSX.Element>;
3
+ type VariantName = 'fluent' | 'copilot' | '';
4
+ type VariantList = `${VariantName}`;
5
+
6
+ type Props = Readonly<{
7
+ children?: ReactNode | undefined;
8
+ variant?: VariantList | undefined;
9
+ }>;
10
+ declare const _default: react.MemoExoticComponent<({ children, variant }: Props) => react.JSX.Element>;
7
11
 
8
12
  declare const testIds: {
9
13
  preChatMessageActivityStarterPromptsCardAction: string;
@@ -1,9 +1,13 @@
1
- import React from 'react';
1
+ import react, { ReactNode } from 'react';
2
2
 
3
- declare const _default: React.MemoExoticComponent<({ children, variant }: Readonly<{
4
- children?: React.ReactNode;
5
- variant?: ("" | "fluent" | "copilot") | undefined;
6
- }>) => React.JSX.Element>;
3
+ type VariantName = 'fluent' | 'copilot' | '';
4
+ type VariantList = `${VariantName}`;
5
+
6
+ type Props = Readonly<{
7
+ children?: ReactNode | undefined;
8
+ variant?: VariantList | undefined;
9
+ }>;
10
+ declare const _default: react.MemoExoticComponent<({ children, variant }: Props) => react.JSX.Element>;
7
11
 
8
12
  declare const testIds: {
9
13
  preChatMessageActivityStarterPromptsCardAction: string;