Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List V9: Release stable #33378

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,9 @@ packages/react-components/react-calendar-compat/stories @microsoft/cxe-prg
packages/react-components/react-infolabel @microsoft/cxe-prg
george-cz marked this conversation as resolved.
Show resolved Hide resolved
george-cz marked this conversation as resolved.
Show resolved Hide resolved
packages/react-components/react-infolabel/library @microsoft/cxe-prg
packages/react-components/react-infolabel/stories @microsoft/cxe-prg
packages/react-components/react-list-preview @microsoft/teams-prg
packages/react-components/react-list-preview/library @microsoft/teams-prg
packages/react-components/react-list-preview/stories @microsoft/teams-prg
packages/react-components/react-list @microsoft/teams-prg
packages/react-components/react-list/library @microsoft/teams-prg
packages/react-components/react-list/stories @microsoft/teams-prg
packages/react-components/react-motion @microsoft/teams-prg
packages/react-components/react-motion/library @microsoft/teams-prg
packages/react-components/react-motion/stories @microsoft/teams-prg
Expand Down
1 change: 0 additions & 1 deletion apps/public-docsite-v9/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"@fluentui/react-northstar": "*",
"@fluentui/react-icons-northstar": "*",
"@fluentui/react-components": "*",
"@fluentui/react-list-preview": "*",
"@fluentui/react-storybook-addon": "*",
"@fluentui/react-storybook-addon-export-to-sandbox": "*",
"@fluentui/theme-designer": "*",
Expand Down
3 changes: 2 additions & 1 deletion apps/vr-tests-react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"@fluentui/react-search": "*",
"@fluentui/react-teaching-popover": "*",
"@fluentui/react-tag-picker": "*",
"@fluentui/react-carousel": "*"
"@fluentui/react-carousel": "*",
"@fluentui/react-list": ">=9.0.0-alpha"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "feat: add @fluentui/react-list to suite",
"packageName": "@fluentui/react-components",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "feat: release stable",
"packageName": "@fluentui/react-list",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ import { linkClassNames } from '@fluentui/react-link';
import { LinkProps } from '@fluentui/react-link';
import { LinkSlots } from '@fluentui/react-link';
import { LinkState } from '@fluentui/react-link';
import { List } from '@fluentui/react-list';
import { Listbox } from '@fluentui/react-combobox';
import { listboxClassNames } from '@fluentui/react-combobox';
import { ListboxContextValue } from '@fluentui/react-combobox';
Expand All @@ -504,6 +505,15 @@ import { ListboxProps } from '@fluentui/react-combobox';
import { ListboxProvider } from '@fluentui/react-combobox';
import { ListboxSlots } from '@fluentui/react-combobox';
import { ListboxState } from '@fluentui/react-combobox';
import { listClassNames } from '@fluentui/react-list';
import { ListItem } from '@fluentui/react-list';
import { listItemClassNames } from '@fluentui/react-list';
import { ListItemProps } from '@fluentui/react-list';
import { ListItemSlots } from '@fluentui/react-list';
import { ListItemState } from '@fluentui/react-list';
import { ListProps } from '@fluentui/react-list';
import { ListSlots } from '@fluentui/react-list';
import { ListState } from '@fluentui/react-list';
import { makeResetStyles } from '@griffel/react';
import { makeStaticStyles } from '@griffel/react';
import { makeStyles } from '@griffel/react';
Expand Down Expand Up @@ -816,7 +826,9 @@ import { renderInteractionTagPrimary_unstable } from '@fluentui/react-tags';
import { renderInteractionTagSecondary_unstable } from '@fluentui/react-tags';
import { renderLabel_unstable } from '@fluentui/react-label';
import { renderLink_unstable } from '@fluentui/react-link';
import { renderList_unstable } from '@fluentui/react-list';
import { renderListbox_unstable } from '@fluentui/react-combobox';
import { renderListItem_unstable } from '@fluentui/react-list';
import { renderMenu_unstable } from '@fluentui/react-menu';
import { renderMenuButton_unstable } from '@fluentui/react-button';
import { renderMenuDivider_unstable } from '@fluentui/react-menu';
Expand Down Expand Up @@ -1552,10 +1564,14 @@ import { useLabelStyles_unstable } from '@fluentui/react-label';
import { useLink_unstable } from '@fluentui/react-link';
import { useLinkState_unstable } from '@fluentui/react-link';
import { useLinkStyles_unstable } from '@fluentui/react-link';
import { useList_unstable } from '@fluentui/react-list';
import { useListbox_unstable } from '@fluentui/react-combobox';
import { useListboxContext_unstable } from '@fluentui/react-combobox';
import { useListboxContextValues } from '@fluentui/react-combobox';
import { useListboxStyles_unstable } from '@fluentui/react-combobox';
import { useListItem_unstable } from '@fluentui/react-list';
import { useListItemStyles_unstable } from '@fluentui/react-list';
import { useListStyles_unstable } from '@fluentui/react-list';
import { useMenu_unstable } from '@fluentui/react-menu';
import { useMenuButton_unstable } from '@fluentui/react-button';
import { useMenuButtonStyles_unstable } from '@fluentui/react-button';
Expand Down Expand Up @@ -2792,6 +2808,8 @@ export { LinkSlots }

export { LinkState }

export { List }

export { Listbox }

export { listboxClassNames }
Expand All @@ -2808,6 +2826,24 @@ export { ListboxSlots }

export { ListboxState }

export { listClassNames }

export { ListItem }

export { listItemClassNames }

export { ListItemProps }

export { ListItemSlots }

export { ListItemState }

export { ListProps }

export { ListSlots }

export { ListState }

export { makeResetStyles }

export { makeStaticStyles }
Expand Down Expand Up @@ -3432,8 +3468,12 @@ export { renderLabel_unstable }

export { renderLink_unstable }

export { renderList_unstable }

export { renderListbox_unstable }

export { renderListItem_unstable }

export { renderMenu_unstable }

export { renderMenuButton_unstable }
Expand Down Expand Up @@ -4904,6 +4944,8 @@ export { useLinkState_unstable }

export { useLinkStyles_unstable }

export { useList_unstable }

export { useListbox_unstable }

export { useListboxContext_unstable }
Expand All @@ -4912,6 +4954,12 @@ export { useListboxContextValues }

export { useListboxStyles_unstable }

export { useListItem_unstable }

export { useListItemStyles_unstable }

export { useListStyles_unstable }

export { useMenu_unstable }

export { useMenuButton_unstable }
Expand Down
1 change: 1 addition & 0 deletions packages/react-components/react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@fluentui/react-input": "^9.4.95",
"@fluentui/react-label": "^9.1.80",
"@fluentui/react-link": "^9.3.4",
"@fluentui/react-list": "9.0.0-alpha.0",
"@fluentui/react-menu": "^9.14.22",
"@fluentui/react-overflow": "^9.2.3",
"@fluentui/react-persona": "^9.2.104",
Expand Down
21 changes: 21 additions & 0 deletions packages/react-components/react-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1979,3 +1979,24 @@ export type {
CarouselViewportSlots,
CarouselViewportState,
} from '@fluentui/react-carousel';

export {
List,
listClassNames,
renderList_unstable,
useListStyles_unstable,
useList_unstable,
ListItem,
listItemClassNames,
renderListItem_unstable,
useListItemStyles_unstable,
useListItem_unstable,
} from '@fluentui/react-list';
export type {
ListProps,
ListSlots,
ListState,
ListItemProps,
ListItemSlots,
ListItemState,
} from '@fluentui/react-list';
17 changes: 0 additions & 17 deletions packages/react-components/react-list-preview/stories/README.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Fri, 06 Dec 2024 12:53:39 GMT

## [0.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.4.1)

Mon, 18 Nov 2024 09:44:40 GMT
Mon, 18 Nov 2024 09:44:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.4.0..@fluentui/react-list-preview_v0.4.1)

### Patches
Expand All @@ -40,7 +40,7 @@ Mon, 18 Nov 2024 09:44:40 GMT

## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.4.0)

Mon, 11 Nov 2024 10:00:42 GMT
Mon, 11 Nov 2024 10:00:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.9..@fluentui/react-list-preview_v0.4.0)

### Minor changes
Expand All @@ -61,7 +61,7 @@ Mon, 11 Nov 2024 10:00:42 GMT

## [0.3.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.9)

Tue, 15 Oct 2024 17:17:53 GMT
Tue, 15 Oct 2024 17:17:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.8..@fluentui/react-list-preview_v0.3.9)

### Patches
Expand All @@ -76,7 +76,7 @@ Tue, 15 Oct 2024 17:17:53 GMT

## [0.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.8)

Tue, 08 Oct 2024 22:05:57 GMT
Tue, 08 Oct 2024 22:05:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.7..@fluentui/react-list-preview_v0.3.8)

### Patches
Expand All @@ -86,7 +86,7 @@ Tue, 08 Oct 2024 22:05:57 GMT

## [0.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.7)

Mon, 23 Sep 2024 12:40:13 GMT
Mon, 23 Sep 2024 12:40:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.6..@fluentui/react-list-preview_v0.3.7)

### Patches
Expand All @@ -101,7 +101,7 @@ Mon, 23 Sep 2024 12:40:13 GMT

## [0.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.6)

Tue, 10 Sep 2024 10:19:12 GMT
Tue, 10 Sep 2024 10:19:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.5..@fluentui/react-list-preview_v0.3.6)

### Patches
Expand All @@ -114,7 +114,7 @@ Tue, 10 Sep 2024 10:19:12 GMT

## [0.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.5)

Thu, 15 Aug 2024 13:49:46 GMT
Thu, 15 Aug 2024 13:49:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.4..@fluentui/react-list-preview_v0.3.5)

### Patches
Expand All @@ -124,7 +124,7 @@ Thu, 15 Aug 2024 13:49:46 GMT

## [0.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.4)

Thu, 15 Aug 2024 08:22:11 GMT
Thu, 15 Aug 2024 08:22:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.3..@fluentui/react-list-preview_v0.3.4)

### Patches
Expand All @@ -135,7 +135,7 @@ Thu, 15 Aug 2024 08:22:11 GMT

## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.3)

Tue, 30 Jul 2024 18:47:35 GMT
Tue, 30 Jul 2024 18:47:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.2..@fluentui/react-list-preview_v0.3.3)

### Patches
Expand All @@ -144,7 +144,7 @@ Tue, 30 Jul 2024 18:47:35 GMT

## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.2)

Tue, 23 Jul 2024 20:13:14 GMT
Tue, 23 Jul 2024 20:13:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.1..@fluentui/react-list-preview_v0.3.2)

### Patches
Expand All @@ -158,7 +158,7 @@ Tue, 23 Jul 2024 20:13:14 GMT

## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.1)

Mon, 15 Jul 2024 17:25:33 GMT
Mon, 15 Jul 2024 17:25:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.3.0..@fluentui/react-list-preview_v0.3.1)

### Patches
Expand All @@ -173,7 +173,7 @@ Mon, 15 Jul 2024 17:25:33 GMT

## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.3.0)

Mon, 01 Jul 2024 20:30:52 GMT
Mon, 01 Jul 2024 20:30:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.2.9..@fluentui/react-list-preview_v0.3.0)

### Minor changes
Expand All @@ -191,7 +191,7 @@ Mon, 01 Jul 2024 20:30:52 GMT

## [0.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.2.9)

Mon, 17 Jun 2024 07:34:17 GMT
Mon, 17 Jun 2024 07:34:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.2.8..@fluentui/react-list-preview_v0.2.9)

### Patches
Expand All @@ -202,7 +202,7 @@ Mon, 17 Jun 2024 07:34:17 GMT

## [0.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-list-preview_v0.2.8)

Thu, 06 Jun 2024 15:26:34 GMT
Thu, 06 Jun 2024 15:26:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-list-preview_v0.2.7..@fluentui/react-list-preview_v0.2.8)

### Patches
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@fluentui/react-list-preview
@fluentui/react-list

Copyright (c) Microsoft Corporation

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @fluentui/react-list-preview
# @fluentui/react-list

**React List components for [Fluent UI React](https://react.fluentui.dev/)**

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { List } from '@fluentui/react-list-preview';
import { List } from '@fluentui/react-list';

console.log(List);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ListItem } from '@fluentui/react-list-preview';
import { ListItem } from '@fluentui/react-list';

console.log(ListItem);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @fluentui/react-list-preview Spec
# @fluentui/react-list Spec

## Background

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## API Report File for "@fluentui/react-list-preview"
## API Report File for "@fluentui/react-list"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (swcJestConfig.swcrc === undefined) {
* @type {import('@jest/types').Config.InitialOptions}
*/
module.exports = {
displayName: 'react-list-preview',
displayName: 'react-list',
preset: '../../../../jest.preset.js',
transform: {
'^.+\\.tsx?$': ['@swc/jest', swcJestConfig],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluentui/react-list-preview",
"version": "0.4.3",
"name": "@fluentui/react-list",
"version": "9.0.0-alpha.0",
"description": "React List v9",
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
Expand Down
Loading
Loading