npm package diff

Package: @forge/react

Versions: 11.2.0-next.3 - 11.2.0-next.3-experimental-99739ec

File: package/out/components/index.d.ts

Index: package/out/components/index.d.ts
===================================================================
--- package/out/components/index.d.ts
+++ package/out/components/index.d.ts
@@ -1,15 +1,25 @@
-import { ForgeElement, MarkupProps, NativeImageProps as ImageProps, NativeLinkProps as LinkProps, NativeUserPickerProps as UserPickerProps, UserGroupProps, UserProps, FrameProps } from '../types/index';
+import { ForgeElement, MarkupProps, NativeImageProps as ImageProps, NativeLinkProps as LinkProps, NativeUserPickerProps as UserPickerProps, UserGroupProps, FrameProps } from '../types/index';
 import { CheckboxGroupProps as UIKitCheckboxGroupProps } from '@atlaskit/forge-react-types';
 export { DynamicTable } from './dynamic-table';
 export { InlineEdit } from './inline-edit';
 export { Popup } from './popup';
+export { Comment } from './comment';
 export { AdfRenderer } from './adf-renderer';
 export { UserPickerValue } from '../types/index';
+declare type UserProps = {
+    accountId: string;
+    hideDisplayName?: boolean;
+};
+/**
+ * A component that represents a user, displaying details such as name and profile picture.
+ *
+ * @see [User](https://developer.atlassian.com/platform/forge/ui-kit/components/user/) in UI Kit documentation for more information
+ */
+export declare const User: (props: UserProps) => ForgeElement;
 export declare const Image: (props: ImageProps) => ForgeElement;
 export declare const Link: (props: LinkProps) => ForgeElement;
 export declare const UserPicker: (props: UserPickerProps) => ForgeElement;
-export declare const User: (props: UserProps) => ForgeElement;
 export declare const UserGroup: (props: UserGroupProps) => ForgeElement;
 export declare const Em: (props: MarkupProps) => ForgeElement;
 export declare const Strike: (props: MarkupProps) => ForgeElement;
 export declare const Strong: (props: MarkupProps) => ForgeElement;