Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 41 additions & 63 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "botframework-webchat-root",
"name": "@msinternal/botframework-webchat-root",
"version": "4.18.1-0",
"private": true,
"author": "Microsoft Corporation",
Expand Down
14 changes: 7 additions & 7 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@
"start": "npm run build:tsup -- --onSuccess=\"touch ../component/src/index.ts\" --watch"
},
"localDependencies": {
"botframework-webchat-cldr-data": "development",
"botframework-webchat-core": "production",
"botframework-webchat-react-valibot": "development",
"botframework-webchat-redux-store": "development"
"@msinternal/botframework-webchat-cldr-data": "development",
"@msinternal/botframework-webchat-react-valibot": "development",
"@msinternal/botframework-webchat-redux-store": "development",
"botframework-webchat-core": "production"
},
"pinDependencies": {
"@types/react": [
Expand All @@ -95,14 +95,14 @@
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@msinternal/botframework-webchat-cldr-data": "36.0.0-0",
"@msinternal/botframework-webchat-react-valibot": "^0.0.0-0",
"@msinternal/botframework-webchat-redux-store": "^0.0.0-0",
"@types/dom-speech-recognition": "^0.0.6",
"@types/node": "^24.1.0",
"@types/react": "^16.14.65",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"botframework-webchat-cldr-data": "36.0.0-0",
"botframework-webchat-react-valibot": "^0.0.0-0",
"botframework-webchat-redux-store": "^0.0.0-0",
"concurrently": "^9.2.0",
"core-js": "^3.44.0",
"cross-env": "^10.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/api/scripts/createPrecompiledGlobalize.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import cldrData from 'botframework-webchat-cldr-data';
import cldrData from '@msinternal/botframework-webchat-cldr-data';
import { existsSync } from 'fs';
import { mkdir, readFile, writeFile } from 'fs/promises';
import Globalize from 'globalize';
Expand Down
2 changes: 1 addition & 1 deletion packages/api/src/decorator/DecoratorComposer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { reactNode, validateProps } from 'botframework-webchat-react-valibot';
import { reactNode, validateProps } from '@msinternal/botframework-webchat-react-valibot';
import React, { Fragment, memo, useMemo } from 'react';
import { array, custom, object, optional, pipe, readonly, safeParse, type InferInput } from 'valibot';

Expand Down
2 changes: 1 addition & 1 deletion packages/api/src/hooks/Composer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { ReduxStoreComposer } from '@msinternal/botframework-webchat-redux-store';
import {
clearSuggestedActions,
connect as createConnectAction,
Expand Down Expand Up @@ -31,7 +32,6 @@ import {
type OneOrMany,
type WebChatActivity
} from 'botframework-webchat-core';
import { ReduxStoreComposer } from 'botframework-webchat-redux-store';
import PropTypes from 'prop-types';
import React, { useCallback, useEffect, useMemo, useRef, useState, type ComponentType, type ReactNode } from 'react';
import { Provider } from 'react-redux';
Expand Down
Loading
Loading