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

Adds UserPicker control documentation and export functionality fixup. Closes #1925 #1926

Merged
merged 1 commit into from
Dec 20, 2024
Merged
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
2 changes: 0 additions & 2 deletions docs/documentation/docs/controls/UserPicker.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

This control allows you to select one or more user from a AAD via its name or starting characters.

!

**Empty user picker**

![Empty user picker](../assets/userPicker03.png)
Expand Down
2 changes: 2 additions & 0 deletions docs/documentation/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ nav:
- IconPicker: 'controls/IconPicker.md'
- IFrameDialog: 'controls/IFrameDialog.md'
- IFramePanel: 'controls/IFramePanel.md'
- ImagePicker: 'controls/ImagePicker.md'
- ListItemAttachments: 'controls/ListItemAttachments.md'
- ListItemComments: 'controls/ListItemComments.md'
- ListItemPicker: 'controls/ListItemPicker.md'
Expand Down Expand Up @@ -73,6 +74,7 @@ nav:
- Toolbar: 'controls/Toolbar.md'
- TreeView: 'controls/TreeView.md'
- UploadFiles: 'controls/UploadFiles.md'
- UserPicker: 'controls/UserPicker.md'
- VariantThemeProvider: 'controls/VariantThemeProvider.md'
- ViewPicker: 'controls/ViewPicker.md'
- WebPartTitle: 'controls/WebPartTitle.md'
Expand Down
1 change: 1 addition & 0 deletions src/UserPicker.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './controls/userPicker/index';
2 changes: 1 addition & 1 deletion src/controls/userPicker/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './IUserPickerProps';
export * from './UserPicker';

export * from './models/IUserInfo';
Loading