botframework-webchat-fluent-theme 4.18.1-main.20250801.b40ec71 → 4.18.1-main.20250803.6044b59
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 +6 -6
- package/dist/botframework-webchat-fluent-theme.development.js.map +1 -1
- package/dist/botframework-webchat-fluent-theme.js +1 -2
- package/dist/botframework-webchat-fluent-theme.js.map +1 -1
- package/dist/botframework-webchat-fluent-theme.mjs +1 -2
- 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 +6 -6
- package/dist/botframework-webchat-fluent-theme.production.min.js.map +1 -1
- package/package.json +17 -13
- package/src/components/activity/ActivityLoader.tsx +1 -1
- package/src/components/icon/FluentIcon.tsx +2 -2
- package/src/components/typingIndicator/SlidingDotsTypingIndicator.tsx +1 -1
- package/src/env.d.ts +1 -1
- package/src/styles/createStyles.ts +1 -1
- package/src/styles/useStyles.ts +1 -1
- package/src/tsconfig.json +1 -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.20250803.6044b59",
|
|
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",
|
|
@@ -51,32 +51,36 @@
|
|
|
51
51
|
"start": "npm run build -- --watch"
|
|
52
52
|
},
|
|
53
53
|
"localDependencies": {
|
|
54
|
+
"@msinternal/botframework-webchat-base": "development",
|
|
55
|
+
"@msinternal/botframework-webchat-styles": "development",
|
|
54
56
|
"botframework-webchat-api": "production",
|
|
55
|
-
"botframework-webchat-base": "development",
|
|
56
57
|
"botframework-webchat-component": "production",
|
|
57
|
-
"botframework-webchat-core": "production"
|
|
58
|
-
"botframework-webchat-styles": "development"
|
|
58
|
+
"botframework-webchat-core": "production"
|
|
59
59
|
},
|
|
60
60
|
"pinDependencies": {
|
|
61
61
|
"@types/react": [
|
|
62
62
|
"16",
|
|
63
63
|
"react@16.8.6 is our baseline"
|
|
64
|
+
],
|
|
65
|
+
"typescript": [
|
|
66
|
+
"~5.8.3",
|
|
67
|
+
"@typescript-eslint/parser@8.38.0 does not support typescript@5.9.2 yet"
|
|
64
68
|
]
|
|
65
69
|
},
|
|
66
70
|
"devDependencies": {
|
|
71
|
+
"@msinternal/botframework-webchat-base": "4.18.1-main.20250803.6044b59",
|
|
72
|
+
"@msinternal/botframework-webchat-styles": "4.18.1-main.20250803.6044b59",
|
|
67
73
|
"@tsconfig/strictest": "^2.0.5",
|
|
68
74
|
"@types/math-random": "^1.0.2",
|
|
69
|
-
"@types/node": "^
|
|
70
|
-
"@types/react": "^16.14.
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"tsup": "^8.3.6",
|
|
74
|
-
"typescript": "^5.7.3"
|
|
75
|
+
"@types/node": "^24.1.0",
|
|
76
|
+
"@types/react": "^16.14.65",
|
|
77
|
+
"tsup": "^8.5.0",
|
|
78
|
+
"typescript": "~5.8.3"
|
|
75
79
|
},
|
|
76
80
|
"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.
|
|
81
|
+
"botframework-webchat-api": "4.18.1-main.20250803.6044b59",
|
|
82
|
+
"botframework-webchat-component": "4.18.1-main.20250803.6044b59",
|
|
83
|
+
"botframework-webchat-core": "4.18.1-main.20250803.6044b59",
|
|
80
84
|
"classnames": "2.5.1",
|
|
81
85
|
"inject-meta-tag": "0.0.1",
|
|
82
86
|
"math-random": "2.0.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createIconComponent } from 'botframework-webchat-component/internal';
|
|
2
|
-
import { validateProps } from 'botframework-webchat-react-valibot';
|
|
3
|
-
import { useStyles } from 'botframework-webchat-styles/react';
|
|
2
|
+
import { validateProps } from '@msinternal/botframework-webchat-react-valibot';
|
|
3
|
+
import { useStyles } from '@msinternal/botframework-webchat-styles/react';
|
|
4
4
|
import cx from 'classnames';
|
|
5
5
|
import React, { memo, useMemo, type CSSProperties } from 'react';
|
|
6
6
|
import { object, optional, pipe, readonly, string, type InferInput } from 'valibot';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { testIds } from 'botframework-webchat-component';
|
|
2
|
-
import { useStyles } from 'botframework-webchat-styles/react';
|
|
2
|
+
import { useStyles } from '@msinternal/botframework-webchat-styles/react';
|
|
3
3
|
import cx from 'classnames';
|
|
4
4
|
import React, { memo } from 'react';
|
|
5
5
|
|
package/src/env.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/// <reference types="botframework-webchat-styles/env" />
|
|
1
|
+
/// <reference types="@msinternal/botframework-webchat-styles/env" />
|
package/src/styles/useStyles.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// TODO: refactor after initial approval gained
|
|
2
|
-
export { useStyles as default } from 'botframework-webchat-styles/react';
|
|
2
|
+
export { useStyles as default } from '@msinternal/botframework-webchat-styles/react';
|