botframework-webchat-fluent-theme 4.18.1-main.20250505.5e12798 → 4.18.1-main.20250515.4c7400a
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 +5 -4
- package/dist/botframework-webchat-fluent-theme.d.ts +5 -4
- 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.mjs.map +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 +7 -11
- package/src/private/FluentThemeProvider.tsx +41 -27
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
|
|
3
|
-
type Props
|
|
3
|
+
type Props = Readonly<{
|
|
4
4
|
className?: string | undefined;
|
|
5
5
|
completion?: ReactNode | undefined;
|
|
6
6
|
isPrimary?: boolean | undefined;
|
|
7
7
|
placeholder?: string | undefined;
|
|
8
8
|
}>;
|
|
9
|
-
declare function SendBox(props: Props
|
|
9
|
+
declare function SendBox(props: Props): React.JSX.Element;
|
|
10
10
|
declare const _default$1: React.MemoExoticComponent<typeof SendBox>;
|
|
11
11
|
|
|
12
12
|
type VariantName = 'fluent' | 'copilot' | '';
|
|
13
13
|
type VariantList = `${VariantName}`;
|
|
14
14
|
|
|
15
|
-
type
|
|
15
|
+
type FluentThemeProviderProps = Readonly<{
|
|
16
16
|
children?: ReactNode | undefined;
|
|
17
17
|
variant?: VariantList | undefined;
|
|
18
18
|
}>;
|
|
19
|
-
declare
|
|
19
|
+
declare function FluentThemeProvider({ children, variant }: FluentThemeProviderProps): React.JSX.Element;
|
|
20
|
+
declare const _default: React.MemoExoticComponent<typeof FluentThemeProvider>;
|
|
20
21
|
|
|
21
22
|
declare const testIds: {
|
|
22
23
|
preChatMessageActivityStarterPromptsCardAction: string;
|
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
|
|
3
|
-
type Props
|
|
3
|
+
type Props = Readonly<{
|
|
4
4
|
className?: string | undefined;
|
|
5
5
|
completion?: ReactNode | undefined;
|
|
6
6
|
isPrimary?: boolean | undefined;
|
|
7
7
|
placeholder?: string | undefined;
|
|
8
8
|
}>;
|
|
9
|
-
declare function SendBox(props: Props
|
|
9
|
+
declare function SendBox(props: Props): React.JSX.Element;
|
|
10
10
|
declare const _default$1: React.MemoExoticComponent<typeof SendBox>;
|
|
11
11
|
|
|
12
12
|
type VariantName = 'fluent' | 'copilot' | '';
|
|
13
13
|
type VariantList = `${VariantName}`;
|
|
14
14
|
|
|
15
|
-
type
|
|
15
|
+
type FluentThemeProviderProps = Readonly<{
|
|
16
16
|
children?: ReactNode | undefined;
|
|
17
17
|
variant?: VariantList | undefined;
|
|
18
18
|
}>;
|
|
19
|
-
declare
|
|
19
|
+
declare function FluentThemeProvider({ children, variant }: FluentThemeProviderProps): React.JSX.Element;
|
|
20
|
+
declare const _default: React.MemoExoticComponent<typeof FluentThemeProvider>;
|
|
20
21
|
|
|
21
22
|
declare const testIds: {
|
|
22
23
|
preChatMessageActivityStarterPromptsCardAction: string;
|