@livetiles/reach-plugin-types 0.5.0-preview.867 → 0.5.0-preview.868
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +45 -10
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5045,6 +5045,7 @@ declare module "libs/reach/ui/common/src/common/user/Avatar" {
|
|
|
5045
5045
|
displayName?: string;
|
|
5046
5046
|
forceShowSecondaryText?: boolean;
|
|
5047
5047
|
className?: string;
|
|
5048
|
+
ignoreOverrides?: boolean;
|
|
5048
5049
|
}
|
|
5049
5050
|
export class UserAvatarUpdateTriggerAction implements AppTriggerAction {
|
|
5050
5051
|
static type: string;
|
|
@@ -5060,6 +5061,7 @@ declare module "libs/reach/ui/common/src/common/user/Avatar" {
|
|
|
5060
5061
|
className?: string;
|
|
5061
5062
|
hidePersonaDetails?: boolean;
|
|
5062
5063
|
}>;
|
|
5064
|
+
export { PersonaSize } from 'office-ui-fabric-react';
|
|
5063
5065
|
}
|
|
5064
5066
|
declare module "libs/reach/ui/common/src/common/user/UserPropertyWrapper" {
|
|
5065
5067
|
import { FC } from 'react';
|
|
@@ -5325,8 +5327,10 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5325
5327
|
export { ReactComponent as CommentsIcon } from './assets/comments.svg';
|
|
5326
5328
|
export { ReactComponent as DashboardActiveIcon } from './assets/dashboard-active.svg';
|
|
5327
5329
|
export { ReactComponent as DashboardIcon } from './assets/dashboard.svg';
|
|
5330
|
+
export { ReactComponent as DeleteIcon } from './assets/delete.svg';
|
|
5328
5331
|
export { ReactComponent as DocumentActiveIcon } from './assets/document-active.svg';
|
|
5329
5332
|
export { ReactComponent as DocumentIcon } from './assets/document.svg';
|
|
5333
|
+
export { ReactComponent as EditIcon } from './assets/edit.svg';
|
|
5330
5334
|
export { ReactComponent as EmojiActiveIcon } from './assets/emoji-active.svg';
|
|
5331
5335
|
export { ReactComponent as EmojiIcon } from './assets/emoji.svg';
|
|
5332
5336
|
export { ReactComponent as EventsActiveIcon } from './assets/events-active.svg';
|
|
@@ -5376,7 +5380,6 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5376
5380
|
export { ReactComponent as RightArrowIcon } from './assets/rightArrow.svg';
|
|
5377
5381
|
export { ReactComponent as SearchActiveIcon } from './assets/search-active.svg';
|
|
5378
5382
|
export { ReactComponent as SearchIcon } from './assets/search.svg';
|
|
5379
|
-
export { ReactComponent as ShareActiveIcon } from './assets/share-active.svg';
|
|
5380
5383
|
export { ReactComponent as ShareIcon } from './assets/share.svg';
|
|
5381
5384
|
export { ReactComponent as SideBarActiveIcon } from './assets/sidebar-active.svg';
|
|
5382
5385
|
export { ReactComponent as SideBarIcon } from './assets/sidebar.svg';
|
|
@@ -5427,12 +5430,12 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/StandardButtons" {
|
|
|
5427
5430
|
export const TextButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("libs/reach/ui/common/src/reach-2/buttons/BaseButton").BaseButtonProps & import("react").RefAttributes<HTMLButtonElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
5428
5431
|
}
|
|
5429
5432
|
declare module "libs/reach/ui/common/src/reach-2/buttons/IconActionButton" {
|
|
5430
|
-
import {
|
|
5433
|
+
import { MouseEventHandler, SVGProps } from 'react';
|
|
5431
5434
|
import { IconProps } from "libs/reach/ui/common/src/reach-2/Icon";
|
|
5432
5435
|
export interface IconActionButtonProps extends Omit<IconProps, 'size'> {
|
|
5433
5436
|
secondarySVG?: SVGProps<SVGElement>;
|
|
5434
5437
|
iconSize?: number;
|
|
5435
|
-
onClick:
|
|
5438
|
+
onClick: MouseEventHandler<HTMLButtonElement>;
|
|
5436
5439
|
disabled?: boolean;
|
|
5437
5440
|
domIdentifier?: string;
|
|
5438
5441
|
}
|
|
@@ -10649,6 +10652,9 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/Bookmark
|
|
|
10649
10652
|
itemId: string;
|
|
10650
10653
|
showText?: boolean;
|
|
10651
10654
|
className?: string;
|
|
10655
|
+
activeLabel?: string;
|
|
10656
|
+
label?: string;
|
|
10657
|
+
labelGap?: number;
|
|
10652
10658
|
}>;
|
|
10653
10659
|
}
|
|
10654
10660
|
declare module "libs/reach/feature/content/src/reach-2/comments/useTransformedCommentContent" {
|
|
@@ -11195,9 +11201,9 @@ declare module "libs/reach/feature/content/src/reach-2/common/detail/DetailViewF
|
|
|
11195
11201
|
}
|
|
11196
11202
|
declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ItemLikeButton" {
|
|
11197
11203
|
import { FC } from 'react';
|
|
11198
|
-
import {
|
|
11204
|
+
import { BaseItem, ItemResourceTypes } from "libs/reach/util/common/src/index";
|
|
11199
11205
|
export const ItemLikeButton: FC<{
|
|
11200
|
-
item:
|
|
11206
|
+
item: BaseItem;
|
|
11201
11207
|
itemType: ItemResourceTypes;
|
|
11202
11208
|
isVertical?: boolean;
|
|
11203
11209
|
className?: string;
|
|
@@ -11319,20 +11325,49 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/news/inde
|
|
|
11319
11325
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/news/NewsCardContextMenu";
|
|
11320
11326
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/news/ImageAndTextNewsItemCard";
|
|
11321
11327
|
}
|
|
11328
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/index" {
|
|
11329
|
+
export { default as EnhancedRichTextEditor } from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11330
|
+
export * from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11331
|
+
export * from "libs/reach/feature/content/src/reach-2/common/editor/RichTextEditor";
|
|
11332
|
+
}
|
|
11333
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/Footer" {
|
|
11334
|
+
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11335
|
+
interface IFooterProps {
|
|
11336
|
+
item: PostStreamItem;
|
|
11337
|
+
}
|
|
11338
|
+
const Footer: React.FC<IFooterProps>;
|
|
11339
|
+
export default Footer;
|
|
11340
|
+
}
|
|
11341
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/Header" {
|
|
11342
|
+
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11343
|
+
interface IHeaderProps {
|
|
11344
|
+
item: PostStreamItem;
|
|
11345
|
+
}
|
|
11346
|
+
const Header: React.FC<IHeaderProps>;
|
|
11347
|
+
export default Header;
|
|
11348
|
+
}
|
|
11349
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/PublicationCard" {
|
|
11350
|
+
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11351
|
+
interface IPublicationCardProps {
|
|
11352
|
+
item: PostStreamItem;
|
|
11353
|
+
}
|
|
11354
|
+
const PublicationCard: React.FC<IPublicationCardProps>;
|
|
11355
|
+
export default PublicationCard;
|
|
11356
|
+
}
|
|
11357
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/index" {
|
|
11358
|
+
export { default as PublicationCard } from "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/PublicationCard";
|
|
11359
|
+
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/PublicationCard";
|
|
11360
|
+
}
|
|
11322
11361
|
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/index" {
|
|
11323
11362
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/ImageAndTextMediumCard";
|
|
11324
11363
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/ImageAndTextResponsiveCard";
|
|
11325
11364
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/ImageAndTextPublishableItemCard";
|
|
11365
|
+
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/index";
|
|
11326
11366
|
}
|
|
11327
11367
|
declare module "libs/reach/feature/content/src/reach-2/common/snippets/index" {
|
|
11328
11368
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/news/index";
|
|
11329
11369
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/index";
|
|
11330
11370
|
}
|
|
11331
|
-
declare module "libs/reach/feature/content/src/reach-2/common/editor/index" {
|
|
11332
|
-
export { default as EnhancedRichTextEditor } from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11333
|
-
export * from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11334
|
-
export * from "libs/reach/feature/content/src/reach-2/common/editor/RichTextEditor";
|
|
11335
|
-
}
|
|
11336
11371
|
declare module "libs/reach/feature/content/src/reach-2/common/index" {
|
|
11337
11372
|
export * from "libs/reach/feature/content/src/reach-2/common/detail/index";
|
|
11338
11373
|
export * from "libs/reach/feature/content/src/reach-2/common/feedback/index";
|