@livetiles/reach-plugin-types 0.5.0-preview.790 → 0.5.0-preview.792
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 +15 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5446,6 +5446,16 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/IconicButtons" {
|
|
|
5446
5446
|
isSelected?: boolean;
|
|
5447
5447
|
}>;
|
|
5448
5448
|
}
|
|
5449
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton" {
|
|
5450
|
+
import { FC } from 'react';
|
|
5451
|
+
import { IconActionButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/IconActionButton";
|
|
5452
|
+
interface FloatingActionButtonProps extends IconActionButtonProps {
|
|
5453
|
+
offsetRight?: number;
|
|
5454
|
+
offsetBottom?: number;
|
|
5455
|
+
}
|
|
5456
|
+
const FloatingActionButton: FC<FloatingActionButtonProps>;
|
|
5457
|
+
export default FloatingActionButton;
|
|
5458
|
+
}
|
|
5449
5459
|
declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
|
|
5450
5460
|
export * from "libs/reach/ui/common/src/reach-2/buttons/StandardButtons";
|
|
5451
5461
|
export * from "libs/reach/ui/common/src/reach-2/buttons/ContentActionButton";
|
|
@@ -5454,6 +5464,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
|
|
|
5454
5464
|
export * from "libs/reach/ui/common/src/reach-2/buttons/BackButton";
|
|
5455
5465
|
export { BaseButtonStyle } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5456
5466
|
export * from "libs/reach/ui/common/src/reach-2/buttons/IconicButtons";
|
|
5467
|
+
export { default as FloatingActionButton } from "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton";
|
|
5457
5468
|
}
|
|
5458
5469
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
|
|
5459
5470
|
import { FC, MouseEvent } from 'react';
|
|
@@ -10610,7 +10621,10 @@ declare module "libs/reach/feature/content/src/reach-2/comments/EnhancedRichText
|
|
|
10610
10621
|
footer?: (content: {
|
|
10611
10622
|
formattedContent?: string;
|
|
10612
10623
|
content?: string;
|
|
10613
|
-
}, clearContent: () => void,
|
|
10624
|
+
}, clearContent: () => void, recoverContent: (content: {
|
|
10625
|
+
formattedContent?: string;
|
|
10626
|
+
content?: string;
|
|
10627
|
+
}) => void, getCharacterCount: () => number) => JSX.Element;
|
|
10614
10628
|
placeholder?: string;
|
|
10615
10629
|
onCreate?: (editor: IEditor) => void;
|
|
10616
10630
|
onFocus?: (editor: IEditor) => void;
|