Skip to content

Commit 26c16f7

Browse files
HotellAlexander Katrukhin
authored andcommitted
feat: bring back removed deprecated packages react-alert,react-infobutton,react-virtualizer and add React 19 support (microsoft#35285)
1 parent 2a70dc7 commit 26c16f7

File tree

135 files changed

+20269
-74
lines changed

Some content is hidden

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

135 files changed

+20269
-74
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,11 @@ packages/react-components/react-menu-grid-preview/library @microsoft/teams-prg
333333
packages/react-components/react-menu-grid-preview/stories @microsoft/teams-prg
334334
# <%= NX-CODEOWNER-PLACEHOLDER %>
335335

336+
# Deprecated v9 packages - exposed as part of `/unstable` api
337+
packages/react-components/deprecated/react-alert @microsoft/cxe-prg
338+
packages/react-components/deprecated/react-virtualizer @microsoft/cxe-prg
339+
packages/react-components/deprecated/react-infobutton @microsoft/cxe-prg
340+
336341
## Components
337342
packages/react @microsoft/cxe-red
338343
packages/react/src/components/ActivityItem @microsoft/cxe-red @khmakoto

apps/public-docsite-v9/project.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@
88
"build-storybook": {
99
"dependsOn": [
1010
{
11-
"projects": ["react-storybook-addon", "react-storybook-addon-export-to-sandbox", "storybook-llms-extractor"],
11+
"projects": [
12+
"react-storybook-addon",
13+
"react-storybook-addon-export-to-sandbox",
14+
"storybook-llms-extractor",
15+
"react-alert",
16+
"react-infobutton",
17+
"react-virtualizer"
18+
],
1219
"target": "build"
1320
}
1421
]
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "prerelease",
3+
"comment": "feat: add react 19 support",
4+
"packageName": "@fluentui/react-alert",
5+
"email": "martinhochel@microsoft.com",
6+
"dependentChangeType": "patch"
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "prerelease",
3+
"comment": "feat: add react 19 support",
4+
"packageName": "@fluentui/react-infobutton",
5+
"email": "martinhochel@microsoft.com",
6+
"dependentChangeType": "patch"
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "prerelease",
3+
"comment": "feat: add react 19 support",
4+
"packageName": "@fluentui/react-virtualizer",
5+
"email": "martinhochel@microsoft.com",
6+
"dependentChangeType": "patch"
7+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "../../../../.babelrc-v9.json",
3+
"plugins": ["annotate-pure-calls", "@babel/transform-react-pure-annotations"]
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": ["plugin:@fluentui/eslint-plugin/react"],
3+
"root": true
4+
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"$schema": "https://json.schemastore.org/swcrc",
3+
"exclude": [
4+
"/testing",
5+
"/**/*.cy.ts",
6+
"/**/*.cy.tsx",
7+
"/**/*.spec.ts",
8+
"/**/*.spec.tsx",
9+
"/**/*.test.ts",
10+
"/**/*.test.tsx"
11+
],
12+
"jsc": {
13+
"parser": {
14+
"syntax": "typescript",
15+
"tsx": true,
16+
"decorators": false,
17+
"dynamicImport": false
18+
},
19+
"externalHelpers": true,
20+
"transform": {
21+
"react": {
22+
"runtime": "classic",
23+
"useSpread": true
24+
}
25+
},
26+
"target": "es2019"
27+
},
28+
"minify": false,
29+
"sourceMaps": true
30+
}

0 commit comments

Comments
 (0)