@livetiles/reach-plugin-types 0.5.0-preview.710 → 0.5.0-preview.714
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 +6 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5250,6 +5250,7 @@ declare module "libs/reach/ui/common/src/reach-2/Icon" {
|
|
|
5250
5250
|
hoveredSVG?: SVGProps<SVGElement>;
|
|
5251
5251
|
label?: string | number;
|
|
5252
5252
|
labelDirection?: IconLabelDirection;
|
|
5253
|
+
labelGap?: number;
|
|
5253
5254
|
reverseIcon?: boolean;
|
|
5254
5255
|
size?: number;
|
|
5255
5256
|
className?: string;
|
|
@@ -5355,6 +5356,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/IconActionButton" {
|
|
|
5355
5356
|
iconSize?: number;
|
|
5356
5357
|
onClick: (event: MouseEvent<any>) => void;
|
|
5357
5358
|
disabled?: boolean;
|
|
5359
|
+
domIdentifier?: string;
|
|
5358
5360
|
}
|
|
5359
5361
|
export const IconActionButton: import("react").ForwardRefExoticComponent<IconActionButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5360
5362
|
}
|
|
@@ -5524,7 +5526,9 @@ declare module "libs/reach/ui/common/src/reach-2/progress/Skeleton" {
|
|
|
5524
5526
|
export const Skeleton: FC<{
|
|
5525
5527
|
className?: string;
|
|
5526
5528
|
}>;
|
|
5527
|
-
export const SkeletonInlineGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5529
|
+
export const SkeletonInlineGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5530
|
+
gap?: number;
|
|
5531
|
+
}, never>;
|
|
5528
5532
|
export const SkeletonBlockGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5529
5533
|
marginTop?: number;
|
|
5530
5534
|
}, never>;
|
|
@@ -11045,6 +11049,7 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/CommentB
|
|
|
11045
11049
|
itemId: string;
|
|
11046
11050
|
commentCount?: number;
|
|
11047
11051
|
isVertical?: boolean;
|
|
11052
|
+
labelGap?: number;
|
|
11048
11053
|
className?: string;
|
|
11049
11054
|
}>;
|
|
11050
11055
|
}
|