@livetiles/reach-plugin-types 0.5.0-preview.867 → 0.5.0-preview.869
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 +49 -12
- 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';
|
|
@@ -5309,6 +5311,8 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5309
5311
|
export { ReactComponent as AddIcon } from './assets/add.svg';
|
|
5310
5312
|
export { ReactComponent as AddBookmarkActiveIcon } from './assets/addBookmark-active.svg';
|
|
5311
5313
|
export { ReactComponent as AddBookmarkIcon } from './assets/addBookmark.svg';
|
|
5314
|
+
export { ReactComponent as AttachActiveIcon } from './assets/attach-active.svg';
|
|
5315
|
+
export { ReactComponent as AttachIcon } from './assets/attach.svg';
|
|
5312
5316
|
export { ReactComponent as BoldActiveIcon } from './assets/bold-active.svg';
|
|
5313
5317
|
export { ReactComponent as BulletedListActiveIcon } from './assets/bulletedList-active.svg';
|
|
5314
5318
|
export { ReactComponent as BulletedListIcon } from './assets/bulletedList.svg';
|
|
@@ -5325,8 +5329,10 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5325
5329
|
export { ReactComponent as CommentsIcon } from './assets/comments.svg';
|
|
5326
5330
|
export { ReactComponent as DashboardActiveIcon } from './assets/dashboard-active.svg';
|
|
5327
5331
|
export { ReactComponent as DashboardIcon } from './assets/dashboard.svg';
|
|
5332
|
+
export { ReactComponent as DeleteIcon } from './assets/delete.svg';
|
|
5328
5333
|
export { ReactComponent as DocumentActiveIcon } from './assets/document-active.svg';
|
|
5329
5334
|
export { ReactComponent as DocumentIcon } from './assets/document.svg';
|
|
5335
|
+
export { ReactComponent as EditIcon } from './assets/edit.svg';
|
|
5330
5336
|
export { ReactComponent as EmojiActiveIcon } from './assets/emoji-active.svg';
|
|
5331
5337
|
export { ReactComponent as EmojiIcon } from './assets/emoji.svg';
|
|
5332
5338
|
export { ReactComponent as EventsActiveIcon } from './assets/events-active.svg';
|
|
@@ -5376,7 +5382,8 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5376
5382
|
export { ReactComponent as RightArrowIcon } from './assets/rightArrow.svg';
|
|
5377
5383
|
export { ReactComponent as SearchActiveIcon } from './assets/search-active.svg';
|
|
5378
5384
|
export { ReactComponent as SearchIcon } from './assets/search.svg';
|
|
5379
|
-
export { ReactComponent as
|
|
5385
|
+
export { ReactComponent as SendActiveIcon } from './assets/send-active.svg';
|
|
5386
|
+
export { ReactComponent as SendIcon } from './assets/send.svg';
|
|
5380
5387
|
export { ReactComponent as ShareIcon } from './assets/share.svg';
|
|
5381
5388
|
export { ReactComponent as SideBarActiveIcon } from './assets/sidebar-active.svg';
|
|
5382
5389
|
export { ReactComponent as SideBarIcon } from './assets/sidebar.svg';
|
|
@@ -5391,8 +5398,6 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5391
5398
|
export { ReactComponent as UploadActiveIcon } from './assets/upload-active.svg';
|
|
5392
5399
|
export { ReactComponent as UploadIcon } from './assets/upload.svg';
|
|
5393
5400
|
export { ReactComponent as WindowsIcon } from './assets/windows.svg';
|
|
5394
|
-
export { ReactComponent as SendActiveIcon } from './assets/send-active.svg';
|
|
5395
|
-
export { ReactComponent as SendIcon } from './assets/send.svg';
|
|
5396
5401
|
}
|
|
5397
5402
|
declare module "libs/reach/ui/common/src/reach-2/icons/index" {
|
|
5398
5403
|
export * from "libs/reach/ui/common/src/reach-2/icons/Icons";
|
|
@@ -5427,12 +5432,12 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/StandardButtons" {
|
|
|
5427
5432
|
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
5433
|
}
|
|
5429
5434
|
declare module "libs/reach/ui/common/src/reach-2/buttons/IconActionButton" {
|
|
5430
|
-
import {
|
|
5435
|
+
import { MouseEventHandler, SVGProps } from 'react';
|
|
5431
5436
|
import { IconProps } from "libs/reach/ui/common/src/reach-2/Icon";
|
|
5432
5437
|
export interface IconActionButtonProps extends Omit<IconProps, 'size'> {
|
|
5433
5438
|
secondarySVG?: SVGProps<SVGElement>;
|
|
5434
5439
|
iconSize?: number;
|
|
5435
|
-
onClick:
|
|
5440
|
+
onClick: MouseEventHandler<HTMLButtonElement>;
|
|
5436
5441
|
disabled?: boolean;
|
|
5437
5442
|
domIdentifier?: string;
|
|
5438
5443
|
}
|
|
@@ -10649,6 +10654,9 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/Bookmark
|
|
|
10649
10654
|
itemId: string;
|
|
10650
10655
|
showText?: boolean;
|
|
10651
10656
|
className?: string;
|
|
10657
|
+
activeLabel?: string;
|
|
10658
|
+
label?: string;
|
|
10659
|
+
labelGap?: number;
|
|
10652
10660
|
}>;
|
|
10653
10661
|
}
|
|
10654
10662
|
declare module "libs/reach/feature/content/src/reach-2/comments/useTransformedCommentContent" {
|
|
@@ -11195,9 +11203,9 @@ declare module "libs/reach/feature/content/src/reach-2/common/detail/DetailViewF
|
|
|
11195
11203
|
}
|
|
11196
11204
|
declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ItemLikeButton" {
|
|
11197
11205
|
import { FC } from 'react';
|
|
11198
|
-
import {
|
|
11206
|
+
import { BaseItem, ItemResourceTypes } from "libs/reach/util/common/src/index";
|
|
11199
11207
|
export const ItemLikeButton: FC<{
|
|
11200
|
-
item:
|
|
11208
|
+
item: BaseItem;
|
|
11201
11209
|
itemType: ItemResourceTypes;
|
|
11202
11210
|
isVertical?: boolean;
|
|
11203
11211
|
className?: string;
|
|
@@ -11319,20 +11327,49 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/news/inde
|
|
|
11319
11327
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/news/NewsCardContextMenu";
|
|
11320
11328
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/news/ImageAndTextNewsItemCard";
|
|
11321
11329
|
}
|
|
11330
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/index" {
|
|
11331
|
+
export { default as EnhancedRichTextEditor } from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11332
|
+
export * from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11333
|
+
export * from "libs/reach/feature/content/src/reach-2/common/editor/RichTextEditor";
|
|
11334
|
+
}
|
|
11335
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/Footer" {
|
|
11336
|
+
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11337
|
+
interface IFooterProps {
|
|
11338
|
+
item: PostStreamItem;
|
|
11339
|
+
}
|
|
11340
|
+
const Footer: React.FC<IFooterProps>;
|
|
11341
|
+
export default Footer;
|
|
11342
|
+
}
|
|
11343
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/Header" {
|
|
11344
|
+
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11345
|
+
interface IHeaderProps {
|
|
11346
|
+
item: PostStreamItem;
|
|
11347
|
+
}
|
|
11348
|
+
const Header: React.FC<IHeaderProps>;
|
|
11349
|
+
export default Header;
|
|
11350
|
+
}
|
|
11351
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/PublicationCard" {
|
|
11352
|
+
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11353
|
+
interface IPublicationCardProps {
|
|
11354
|
+
item: PostStreamItem;
|
|
11355
|
+
}
|
|
11356
|
+
const PublicationCard: React.FC<IPublicationCardProps>;
|
|
11357
|
+
export default PublicationCard;
|
|
11358
|
+
}
|
|
11359
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/index" {
|
|
11360
|
+
export { default as PublicationCard } from "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/PublicationCard";
|
|
11361
|
+
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/PublicationCard";
|
|
11362
|
+
}
|
|
11322
11363
|
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/index" {
|
|
11323
11364
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/ImageAndTextMediumCard";
|
|
11324
11365
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/ImageAndTextResponsiveCard";
|
|
11325
11366
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/ImageAndTextPublishableItemCard";
|
|
11367
|
+
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/index";
|
|
11326
11368
|
}
|
|
11327
11369
|
declare module "libs/reach/feature/content/src/reach-2/common/snippets/index" {
|
|
11328
11370
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/news/index";
|
|
11329
11371
|
export * from "libs/reach/feature/content/src/reach-2/common/snippets/common/index";
|
|
11330
11372
|
}
|
|
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
11373
|
declare module "libs/reach/feature/content/src/reach-2/common/index" {
|
|
11337
11374
|
export * from "libs/reach/feature/content/src/reach-2/common/detail/index";
|
|
11338
11375
|
export * from "libs/reach/feature/content/src/reach-2/common/feedback/index";
|