Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ packages/react-components/react-timepicker-compat-preview @microsoft/teams-prg
packages/react-components/react-rating-preview @microsoft/cxe-red @tomi-msft
Comment thread
sopranopillow marked this conversation as resolved.
packages/react-components/react-swatch-picker-preview @microsoft/cxe-prg
packages/react-components/react-calendar-compat @microsoft/cxe-red @sopranopillow
packages/react-components/react-infolabel-preview @microsoft/cxe-red @sopranopillow
packages/react-components/react-infolabel @microsoft/cxe-red @sopranopillow
# <%= NX-CODEOWNER-PLACEHOLDER %>

## Components
Expand Down
3 changes: 1 addition & 2 deletions apps/public-docsite-v9/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"react": "17.0.2",
"react-dom": "17.0.2",
"react-window": "^1.8.6",
"tslib": "^2.1.0",
"@fluentui/react-infolabel-preview": "*"
"tslib": "^2.1.0"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "feat: Moving react-infolabel to stable.",
"packageName": "@fluentui/react-components",
"email": "esteban.230@hotmail.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "feat: Move InfoLabel to stable.",
"packageName": "@fluentui/react-infolabel",
"email": "esteban.230@hotmail.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,11 @@ import { imageClassNames } from '@fluentui/react-image';
import { ImageProps } from '@fluentui/react-image';
import { ImageSlots } from '@fluentui/react-image';
import { ImageState } from '@fluentui/react-image';
import { InfoLabel } from '@fluentui/react-infolabel';
import { infoLabelClassNames } from '@fluentui/react-infolabel';
import { InfoLabelProps } from '@fluentui/react-infolabel';
import { InfoLabelSlots } from '@fluentui/react-infolabel';
import { InfoLabelState } from '@fluentui/react-infolabel';
import { Input } from '@fluentui/react-input';
import { inputClassNames } from '@fluentui/react-input';
import { InputOnChangeData } from '@fluentui/react-input';
Expand Down Expand Up @@ -594,6 +599,7 @@ import { renderField_unstable } from '@fluentui/react-field';
import { renderFlatTree_unstable } from '@fluentui/react-tree';
import { renderFluentProvider_unstable } from '@fluentui/react-provider';
import { renderImage_unstable } from '@fluentui/react-image';
import { renderInfoLabel_unstable } from '@fluentui/react-infolabel';
import { renderInput_unstable } from '@fluentui/react-input';
import { renderInteractionTag_unstable } from '@fluentui/react-tags';
import { renderInteractionTagPrimary_unstable } from '@fluentui/react-tags';
Expand Down Expand Up @@ -1087,6 +1093,8 @@ import { useHeadlessFlatTree_unstable } from '@fluentui/react-tree';
import { useId } from '@fluentui/react-utilities';
import { useImage_unstable } from '@fluentui/react-image';
import { useImageStyles_unstable } from '@fluentui/react-image';
import { useInfoLabel_unstable } from '@fluentui/react-infolabel';
import { useInfoLabelStyles_unstable } from '@fluentui/react-infolabel';
import { useInput_unstable } from '@fluentui/react-input';
import { useInputStyles_unstable } from '@fluentui/react-input';
import { useInteractionTag_unstable } from '@fluentui/react-tags';
Expand Down Expand Up @@ -1915,6 +1923,16 @@ export { ImageSlots }

export { ImageState }

export { InfoLabel }

export { infoLabelClassNames }

export { InfoLabelProps }

export { InfoLabelSlots }

export { InfoLabelState }

export { Input }

export { inputClassNames }
Expand Down Expand Up @@ -2475,6 +2493,8 @@ export { renderFluentProvider_unstable }

export { renderImage_unstable }

export { renderInfoLabel_unstable }

export { renderInput_unstable }

export { renderInteractionTag_unstable }
Expand Down Expand Up @@ -3461,6 +3481,10 @@ export { useImage_unstable }

export { useImageStyles_unstable }

export { useInfoLabel_unstable }

export { useInfoLabelStyles_unstable }

export { useInput_unstable }

export { useInputStyles_unstable }
Expand Down
3 changes: 2 additions & 1 deletion packages/react-components/react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@
"@fluentui/react-tree": "^9.4.6",
"@griffel/react": "^1.5.14",
"@swc/helpers": "^0.5.1",
"@fluentui/react-message-bar": "^9.0.1"
"@fluentui/react-message-bar": "^9.0.1",
"@fluentui/react-infolabel": "9.0.0-alpha.0"
Comment thread
sopranopillow marked this conversation as resolved.
Outdated
},
"peerDependencies": {
"@types/react": ">=16.14.0 <19.0.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/react-components/react-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1414,3 +1414,12 @@ export type {
MessageBarGroupSlots,
MessageBarGroupState,
} from '@fluentui/react-message-bar';

export {
InfoLabel,
infoLabelClassNames,
renderInfoLabel_unstable,
useInfoLabelStyles_unstable,
useInfoLabel_unstable,
} from '@fluentui/react-infolabel';
export type { InfoLabelProps, InfoLabelSlots, InfoLabelState } from '@fluentui/react-infolabel';

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions packages/react-components/react-infolabel-preview/README.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading