Skip to content

Commit

Permalink
update deps and indexes
Browse files Browse the repository at this point in the history
dmceachernmsft committed Nov 30, 2023
1 parent 7dc00c8 commit aafa3ce
Showing 8 changed files with 18,447 additions and 32,234 deletions.
4,590 changes: 3,894 additions & 696 deletions ui-library-quickstart-composites/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions ui-library-quickstart-composites/package.json
Original file line number Diff line number Diff line change
@@ -3,20 +3,20 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@azure/communication-calling": "^1.14.1",
"@azure/communication-calling": "^1.18.1",
"@azure/communication-chat": "^1.3.1",
"@azure/communication-react": "^1.6.0",
"@azure/communication-react": "^1.10.0",
"@fluentui/react": "8.101.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.33",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^8.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.4.4",
"uuid": "8.3.2",
10 changes: 6 additions & 4 deletions ui-library-quickstart-composites/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import React from 'react';
import ReactDOM from 'react-dom';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

ReactDOM.render(
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
</React.StrictMode>
);

// If you want to start measuring performance in your app, pass a function
4,688 changes: 3,099 additions & 1,589 deletions ui-library-quickstart-ui-components/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions ui-library-quickstart-ui-components/package.json
Original file line number Diff line number Diff line change
@@ -3,19 +3,19 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@azure/communication-calling": "^1.14.1",
"@azure/communication-calling": "^1.18.1",
"@azure/communication-chat": "^1.3.1",
"@azure/communication-react": "^1.6.0",
"@azure/communication-react": "^1.10.0",
"@fluentui/react": "8.101.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.33",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.4.4",
"web-vitals": "^1.1.2"
Loading

0 comments on commit aafa3ce

Please sign in to comment.