Skip to content

Commit ef38f15

Browse files
committed
Move internal packages to @msinternal/*
1 parent 2dec982 commit ef38f15

File tree

114 files changed

+161
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+161
-161
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/api/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@
7070
"start": "npm run build:tsup -- --onSuccess=\"touch ../component/src/index.ts\" --watch"
7171
},
7272
"localDependencies": {
73-
"botframework-webchat-cldr-data": "development",
74-
"botframework-webchat-core": "production",
75-
"botframework-webchat-react-valibot": "development",
76-
"botframework-webchat-redux-store": "development"
73+
"@msinternal/botframework-webchat-cldr-data": "development",
74+
"@msinternal/botframework-webchat-react-valibot": "development",
75+
"@msinternal/botframework-webchat-redux-store": "development",
76+
"botframework-webchat-core": "production"
7777
},
7878
"pinDependencies": {
7979
"@types/react": [
@@ -95,14 +95,14 @@
9595
"@babel/preset-env": "^7.28.0",
9696
"@babel/preset-react": "^7.27.1",
9797
"@babel/preset-typescript": "^7.27.1",
98+
"@msinternal/botframework-webchat-cldr-data": "36.0.0-0",
99+
"@msinternal/botframework-webchat-react-valibot": "^0.0.0-0",
100+
"@msinternal/botframework-webchat-redux-store": "^0.0.0-0",
98101
"@types/dom-speech-recognition": "^0.0.6",
99102
"@types/node": "^24.1.0",
100103
"@types/react": "^16.14.65",
101104
"babel-plugin-istanbul": "^7.0.0",
102105
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
103-
"botframework-webchat-cldr-data": "36.0.0-0",
104-
"botframework-webchat-react-valibot": "^0.0.0-0",
105-
"botframework-webchat-redux-store": "^0.0.0-0",
106106
"concurrently": "^9.2.0",
107107
"core-js": "^3.44.0",
108108
"cross-env": "^10.0.0",

packages/api/scripts/createPrecompiledGlobalize.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import cldrData from 'botframework-webchat-cldr-data';
1+
import cldrData from '@msinternal/botframework-webchat-cldr-data';
22
import { existsSync } from 'fs';
33
import { mkdir, readFile, writeFile } from 'fs/promises';
44
import Globalize from 'globalize';

packages/api/src/decorator/DecoratorComposer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { reactNode, validateProps } from 'botframework-webchat-react-valibot';
1+
import { reactNode, validateProps } from '@msinternal/botframework-webchat-react-valibot';
22
import React, { Fragment, memo, useMemo } from 'react';
33
import { array, custom, object, optional, pipe, readonly, safeParse, type InferInput } from 'valibot';
44

packages/api/src/hooks/Composer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { ReduxStoreComposer } from '@msinternal/botframework-webchat-redux-store';
12
import {
23
clearSuggestedActions,
34
connect as createConnectAction,
@@ -31,7 +32,6 @@ import {
3132
type OneOrMany,
3233
type WebChatActivity
3334
} from 'botframework-webchat-core';
34-
import { ReduxStoreComposer } from 'botframework-webchat-redux-store';
3535
import PropTypes from 'prop-types';
3636
import React, { useCallback, useEffect, useMemo, useRef, useState, type ComponentType, type ReactNode } from 'react';
3737
import { Provider } from 'react-redux';

packages/api/src/hooks/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ import useUserID from './useUserID';
7272
import useUsername from './useUsername';
7373
import useVoiceSelector from './useVoiceSelector';
7474

75-
export { useSuggestedActionsHooks } from 'botframework-webchat-redux-store';
75+
export { useSuggestedActionsHooks } from '@msinternal/botframework-webchat-redux-store';
7676

7777
export {
7878
useActiveTyping,

packages/api/src/hooks/useSuggestedActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { useSuggestedActionsHooks } from 'botframework-webchat-redux-store';
1+
import { useSuggestedActionsHooks } from '@msinternal/botframework-webchat-redux-store';
22

33
/**
44
* @deprecated Use `useSuggestedActionsHooks().useSuggestedActions` instead. This hook will be removed on or after 2027-05-30.

packages/bundle/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@
5959
"start": "npm run build:tsup -- --watch"
6060
},
6161
"localDependencies": {
62+
"@msinternal/botframework-webchat-base": "development",
63+
"@msinternal/botframework-webchat-react-valibot": "development",
64+
"@msinternal/isomorphic-react": "development",
65+
"@msinternal/isomorphic-react-dom": "development",
6266
"botframework-directlinespeech-sdk": "production",
63-
"botframework-webchat-base": "development",
6467
"botframework-webchat-api": "production",
6568
"botframework-webchat-component": "production",
66-
"botframework-webchat-core": "production",
67-
"botframework-webchat-react-valibot": "development",
68-
"isomorphic-react": "development",
69-
"isomorphic-react-dom": "development"
69+
"botframework-webchat-core": "production"
7070
},
7171
"pinDependencies": {
7272
"@types/react": [
@@ -131,20 +131,20 @@
131131
"@babel/preset-env": "^7.28.0",
132132
"@babel/preset-react": "^7.27.1",
133133
"@babel/preset-typescript": "^7.27.1",
134+
"@msinternal/botframework-webchat-base": "0.0.0-0",
135+
"@msinternal/botframework-webchat-react-valibot": "0.0.0-0",
136+
"@msinternal/isomorphic-react": "^0.0.0-0",
137+
"@msinternal/isomorphic-react-dom": "^0.0.0-0",
134138
"@types/dom-speech-recognition": "^0.0.6",
135139
"@types/mdast": "^4.0.4",
136140
"@types/node": "^24.1.0",
137141
"@types/react": "^16.14.65",
138142
"@types/uuid": "^10.0.0",
139143
"babel-plugin-istanbul": "^7.0.0",
140144
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
141-
"botframework-webchat-base": "0.0.0-0",
142-
"botframework-webchat-react-valibot": "0.0.0-0",
143145
"concurrently": "^9.2.0",
144146
"cross-env": "^10.0.0",
145147
"esbuild": "^0.25.8",
146-
"isomorphic-react": "^0.0.0-0",
147-
"isomorphic-react-dom": "^0.0.0-0",
148148
"micromark-util-types": "^2.0.2",
149149
"tsd": "^0.32.0",
150150
"type-fest": "^4.41.0",

packages/bundle/src/adaptiveCards/Attachment/AdaptiveCardAttachment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { validateProps } from 'botframework-webchat-react-valibot';
1+
import { validateProps } from '@msinternal/botframework-webchat-react-valibot';
22
import React, { memo } from 'react';
33
import { any, boolean, object, optional, pipe, readonly, type InferInput } from 'valibot';
44

packages/bundle/src/adaptiveCards/Attachment/AdaptiveCardContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { validateProps } from 'botframework-webchat-react-valibot';
1+
import { validateProps } from '@msinternal/botframework-webchat-react-valibot';
22
import React, { memo, useMemo } from 'react';
33
import { any, boolean, object, optional, pipe, readonly, string, type InferInput } from 'valibot';
44

0 commit comments

Comments
 (0)