@forge/react
11.14.2-next.211.14.2-next.3
out/components/index.d.ts~
out/components/index.d.tsModified+16−16
Index: package/out/components/index.d.ts
===================================================================
--- package/out/components/index.d.ts
+++ package/out/components/index.d.ts
@@ -1,12 +1,12 @@
-import { ForgeElement, MarkupProps, NativeLinkProps as LinkProps, NativeUserPickerProps as UserPickerProps, UserGroupProps } from '../types/index';
-import { CheckboxGroupProps as UIKitCheckboxGroupProps } from '@atlaskit/forge-react-types';
+import { MarkupProps } from '../types/index';
+import { CheckboxGroupProps as UIKitCheckboxGroupProps, ForgeElement } 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';
+export type { UserPickerValue } from '@atlaskit/forge-react-types';
declare type UserProps = {
accountId: string;
hideDisplayName?: boolean;
};
@@ -28,25 +28,20 @@
*
* @see [Image](https://developer.atlassian.com/platform/forge/ui-kit/components/image/) in UI Kit documentation for more information
*/
export declare const Image: (props: ImageProps) => ForgeElement;
-export declare const Link: (props: LinkProps) => ForgeElement;
-export declare const UserPicker: (props: UserPickerProps) => ForgeElement;
-export declare const UserGroup: (props: UserGroupProps) => ForgeElement;
+/**
+ * @deprecated - UIKit 1 specific component
+ */
export declare const Em: (props: MarkupProps) => ForgeElement;
+/**
+ * @deprecated - UIKit 1 specific component
+ */
export declare const Strike: (props: MarkupProps) => ForgeElement;
-export declare const Strong: (props: MarkupProps) => ForgeElement;
-declare type FrameProps = {
- resource: string;
- height?: string;
- width?: string;
-};
/**
- * `Frame` component is in EAP (Early Access Program).
- *
- * For more information, see the {@link https://developer.atlassian.com/platform/forge/ui-kit/components/frame|Frame component} documentation.
+ * @deprecated - UIKit 1 specific component
*/
-export declare const Frame: (props: FrameProps) => ForgeElement;
+export declare const Strong: (props: MarkupProps) => ForgeElement;
/**
* Export Code generated UI Kit 2 Components
*/
export * from './ui-kit-components';
@@ -61,6 +56,11 @@
}[];
defaultValue?: string[];
}
declare type CheckboxGroupProps = MacroCheckboxGroupProps | UIKitCheckboxGroupProps;
+/**
+ * A Checkbox group is a list of options where one or more choices can be selected.
+ *
+ * @see [CheckboxGroup](https://developer.atlassian.com/platform/forge/ui-kit/components/checkbox-group/) in UI Kit documentation for more information
+ */
export declare const CheckboxGroup: (props: CheckboxGroupProps) => ForgeElement;
//# sourceMappingURL=index.d.ts.map
\ No newline at end of file