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.
- package/dist/botframework-webchat-fluent-theme.d.mts +9 -5
- package/dist/botframework-webchat-fluent-theme.d.ts +9 -5
- package/dist/botframework-webchat-fluent-theme.development.js +8 -8
- package/dist/botframework-webchat-fluent-theme.development.js.map +1 -1
- package/dist/botframework-webchat-fluent-theme.js +1 -1
- package/dist/botframework-webchat-fluent-theme.mjs +1 -1
- package/dist/botframework-webchat-fluent-theme.production.min.js +8 -8
- package/dist/botframework-webchat-fluent-theme.production.min.js.map +1 -1
- package/package.json +14 -18
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import
|
|
1
|
+
import react, { ReactNode } from 'react';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
|
1
|
+
import react, { ReactNode } from 'react';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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;
|