botframework-webchat-fluent-theme 4.18.1-main.20240912.54a6a40 → 4.18.1-main.20240917.4b9342a
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 +4 -4
- package/src/components/activity/ActivityDecorator.module.css +29 -0
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.20240917.4b9342a",
|
|
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",
|
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"typescript": "^5.4.5"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"botframework-webchat-api": "4.18.1-main.
|
|
73
|
-
"botframework-webchat-component": "4.18.1-main.
|
|
74
|
-
"botframework-webchat-core": "4.18.1-main.
|
|
72
|
+
"botframework-webchat-api": "4.18.1-main.20240917.4b9342a",
|
|
73
|
+
"botframework-webchat-component": "4.18.1-main.20240917.4b9342a",
|
|
74
|
+
"botframework-webchat-core": "4.18.1-main.20240917.4b9342a",
|
|
75
75
|
"classnames": "2.5.1",
|
|
76
76
|
"inject-meta-tag": "0.0.1",
|
|
77
77
|
"math-random": "2.0.1",
|
|
@@ -42,6 +42,11 @@
|
|
|
42
42
|
&:has(:global(.webchat__bubble--from-user)) :global(.webchat__bubble) {
|
|
43
43
|
margin-block-end: var(--webchat-spacingVerticalM);
|
|
44
44
|
}
|
|
45
|
+
|
|
46
|
+
/* Hide generated badge as it is in the copilot header */
|
|
47
|
+
:global(.webchat__bubble .webchat__text-content .webchat__text-content__generated-badge) {
|
|
48
|
+
display: none;
|
|
49
|
+
}
|
|
45
50
|
}
|
|
46
51
|
|
|
47
52
|
/* Decorator copilot variant which has bot message */
|
|
@@ -147,6 +152,30 @@
|
|
|
147
152
|
min-height: auto;
|
|
148
153
|
padding-block: var(--webchat__bubble--block-padding);
|
|
149
154
|
padding-inline: var(--webchat__bubble--inline-padding);
|
|
155
|
+
|
|
156
|
+
&:empty {
|
|
157
|
+
padding-block-end: 0;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
+:global(.webchat__text-content) {
|
|
161
|
+
margin-top: calc(var(--webchat__bubble--block-padding) * -1);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* Message bubble text content generated badge */
|
|
166
|
+
:global(.webchat-fluent) .activity-decorator :global(.webchat__stacked-layout .webchat__bubble .webchat__text-content__generated-badge) {
|
|
167
|
+
align-items: center;
|
|
168
|
+
align-self: flex-start;
|
|
169
|
+
background-color: var(--webchat-colorNeutralBackground5);
|
|
170
|
+
border-radius: var(--webchat-borderRadiusMedium);
|
|
171
|
+
box-sizing: border-box;
|
|
172
|
+
color: var(--webchat-colorNeutralForeground3);
|
|
173
|
+
cursor: default;
|
|
174
|
+
display: inline-flex;
|
|
175
|
+
font-size: var(--webchat-fontSizeBase100);
|
|
176
|
+
height: 16px;
|
|
177
|
+
line-height: var(--webchat-lineHeightBase100);
|
|
178
|
+
padding-inline: var(--webchat-spacingHorizontalXS);
|
|
150
179
|
}
|
|
151
180
|
|
|
152
181
|
/* Message bubble attachment content */
|