botframework-webchat-component 4.17.0 → 4.17.1-main.20240508.bf8dbd9
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-component.d.mts +3 -3
- package/dist/botframework-webchat-component.mjs +1 -1
- package/dist/botframework-webchat-component.mjs.map +1 -1
- package/dist/metafile-esm.json +1 -1
- package/lib/LinkDefinition/LinkDefinitions.d.ts +1 -5
- package/lib/LinkDefinition/LinkDefinitions.d.ts.map +1 -1
- package/lib/Middleware/ActivityStatus/createSendStatusMiddleware.d.ts.map +1 -1
- package/lib/Middleware/ActivityStatus/createSendStatusMiddleware.js +18 -22
- package/lib/Middleware/TypingIndicator/createCoreMiddleware.d.ts.map +1 -1
- package/lib/Middleware/TypingIndicator/createCoreMiddleware.js +5 -9
- package/lib/SendBox/Assets/MicrophoneIcon.js +1 -2
- package/lib/SendBox/TextBox.d.ts.map +1 -1
- package/lib/index.js +2 -2
- package/lib/providers/ModalDialog/private/Context.d.ts.map +1 -1
- package/lib/providers/ModalDialog/private/Context.js +1 -1
- package/lib/types/PropsOf.d.ts.map +1 -1
- package/lib/types/PropsOf.js +1 -1
- package/lib/withEmoji/withEmoji.d.ts.map +1 -1
- package/package.json +16 -16
- package/src/Middleware/ActivityStatus/createSendStatusMiddleware.tsx +0 -2
- package/src/Middleware/TypingIndicator/createCoreMiddleware.tsx +0 -2
- package/src/SendBox/Assets/MicrophoneIcon.js +0 -1
- package/src/providers/ModalDialog/private/Context.ts +3 -4
- package/src/types/PropsOf.ts +2 -5
|
@@ -2321,6 +2321,9 @@ declare const Components: {
|
|
|
2321
2321
|
linkClassName?: string;
|
|
2322
2322
|
onDecorateLink?: (href: string, textContent: string) => LinkOptions;
|
|
2323
2323
|
}> & (Readonly<{
|
|
2324
|
+
stringIds: string;
|
|
2325
|
+
values?: readonly (string | number)[];
|
|
2326
|
+
}> | Readonly<{
|
|
2324
2327
|
stringIds: {
|
|
2325
2328
|
zero?: string;
|
|
2326
2329
|
one?: string;
|
|
@@ -2330,9 +2333,6 @@ declare const Components: {
|
|
|
2330
2333
|
other: string;
|
|
2331
2334
|
};
|
|
2332
2335
|
values: readonly [number, ...(string | number)[]];
|
|
2333
|
-
}> | Readonly<{
|
|
2334
|
-
stringIds: string;
|
|
2335
|
-
values?: readonly (string | number)[];
|
|
2336
2336
|
}>)) => react.JSX.Element>;
|
|
2337
2337
|
};
|
|
2338
2338
|
|