@livetiles/reach-plugin-types 0.5.0-preview.875 → 0.5.0-preview.877
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 +3 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5552,6 +5552,7 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/Dialog" {
|
|
|
5552
5552
|
disableSave?: boolean;
|
|
5553
5553
|
saveButtonLabel?: string;
|
|
5554
5554
|
cancelButtonLabel?: string;
|
|
5555
|
+
dismissOnSave?: boolean;
|
|
5555
5556
|
}
|
|
5556
5557
|
export const Dialog: FC<DialogProps>;
|
|
5557
5558
|
}
|
|
@@ -11352,6 +11353,7 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/pu
|
|
|
11352
11353
|
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11353
11354
|
interface IHeaderProps {
|
|
11354
11355
|
item: PostStreamItem;
|
|
11356
|
+
refreshList: () => Promise<void>;
|
|
11355
11357
|
}
|
|
11356
11358
|
const Header: React.FC<IHeaderProps>;
|
|
11357
11359
|
export default Header;
|
|
@@ -11360,6 +11362,7 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/pu
|
|
|
11360
11362
|
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11361
11363
|
interface IPublicationCardProps {
|
|
11362
11364
|
item: PostStreamItem;
|
|
11365
|
+
refreshList: () => Promise<void>;
|
|
11363
11366
|
}
|
|
11364
11367
|
const PublicationCard: React.FC<IPublicationCardProps>;
|
|
11365
11368
|
export default PublicationCard;
|