botframework-webchat-fluent-theme 4.18.1-main.20241114.7f9f47e → 4.18.1-main.20241126.c3857bf
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.css.map +1 -1
- package/dist/botframework-webchat-fluent-theme.development.css.map +1 -1
- package/dist/botframework-webchat-fluent-theme.development.js +2 -2
- 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.js.map +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.css.map +1 -1
- package/dist/botframework-webchat-fluent-theme.production.min.js +2 -2
- package/dist/botframework-webchat-fluent-theme.production.min.js.map +1 -1
- package/package.json +6 -6
- package/src/components/theme/Theme.module.css +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "botframework-webchat-fluent-theme",
|
|
3
|
-
"version": "4.18.1-main.
|
|
3
|
+
"version": "4.18.1-main.20241126.c3857bf",
|
|
4
4
|
"description": "Fluent theme for Bot Framework Web Chat",
|
|
5
5
|
"main": "./dist/botframework-webchat-fluent-theme.js",
|
|
6
6
|
"types": "./dist/botframework-webchat-fluent-theme.d.ts",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
"@types/math-random": "^1.0.2",
|
|
69
69
|
"@types/node": "^20.12.11",
|
|
70
70
|
"@types/react": "^16.14.60",
|
|
71
|
-
"botframework-webchat-base": "4.18.1-main.
|
|
72
|
-
"botframework-webchat-styles": "4.18.1-main.
|
|
71
|
+
"botframework-webchat-base": "4.18.1-main.20241126.c3857bf",
|
|
72
|
+
"botframework-webchat-styles": "4.18.1-main.20241126.c3857bf",
|
|
73
73
|
"tsup": "^8.0.2",
|
|
74
74
|
"typescript": "^5.4.5"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"botframework-webchat-api": "4.18.1-main.
|
|
78
|
-
"botframework-webchat-component": "4.18.1-main.
|
|
79
|
-
"botframework-webchat-core": "4.18.1-main.
|
|
77
|
+
"botframework-webchat-api": "4.18.1-main.20241126.c3857bf",
|
|
78
|
+
"botframework-webchat-component": "4.18.1-main.20241126.c3857bf",
|
|
79
|
+
"botframework-webchat-core": "4.18.1-main.20241126.c3857bf",
|
|
80
80
|
"classnames": "2.5.1",
|
|
81
81
|
"inject-meta-tag": "0.0.1",
|
|
82
82
|
"math-random": "2.0.1",
|
|
@@ -224,7 +224,8 @@
|
|
|
224
224
|
|
|
225
225
|
/* Scrollbars */
|
|
226
226
|
:global(.webchat-fluent).theme :global(.webchat__basic-transcript .webchat__basic-transcript__scrollable),
|
|
227
|
-
:global(.webchat-fluent).theme :global(.webchat__view-code-dialog__code-body)
|
|
227
|
+
:global(.webchat-fluent).theme :global(.webchat__view-code-dialog__code-body),
|
|
228
|
+
:global(.webchat-fluent).theme :global(.webchat__render-markdown [data-math-type='block']) {
|
|
228
229
|
/* Edge uses -webkit-scrollbar if scrollbar-* is not set */
|
|
229
230
|
scrollbar-color: unset;
|
|
230
231
|
scrollbar-width: unset;
|
|
@@ -233,6 +234,7 @@
|
|
|
233
234
|
-moz-scrollbar-width: thin;
|
|
234
235
|
|
|
235
236
|
&::-webkit-scrollbar {
|
|
237
|
+
height: var(--webchat-spacingVerticalMNudge);
|
|
236
238
|
width: var(--webchat-spacingVerticalMNudge);
|
|
237
239
|
visibility: hidden;
|
|
238
240
|
}
|
|
@@ -242,6 +244,7 @@
|
|
|
242
244
|
}
|
|
243
245
|
|
|
244
246
|
&:hover::-webkit-scrollbar {
|
|
247
|
+
height: var(--webchat-spacingVerticalMNudge);
|
|
245
248
|
width: var(--webchat-spacingVerticalMNudge);
|
|
246
249
|
}
|
|
247
250
|
|