@livetiles/reach-plugin-types 0.5.0-preview.951 → 0.5.0-preview.953
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 +26 -9
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3184,11 +3184,13 @@ declare module "libs/reach/util/common/src/theme/theme2/typography" {
|
|
|
3184
3184
|
readonly buttonLabel1: {
|
|
3185
3185
|
readonly fontFamily: "Mulish, Arial, sans-serif !important";
|
|
3186
3186
|
readonly fontSize: "16px";
|
|
3187
|
+
readonly fontWeight: 700;
|
|
3187
3188
|
readonly lineHeight: "16px";
|
|
3188
3189
|
};
|
|
3189
3190
|
readonly buttonLabel2: {
|
|
3190
3191
|
readonly fontFamily: "Mulish, Arial, sans-serif !important";
|
|
3191
3192
|
readonly fontSize: "14px";
|
|
3193
|
+
readonly fontWeight: 700;
|
|
3192
3194
|
readonly lineHeight: "14px";
|
|
3193
3195
|
};
|
|
3194
3196
|
readonly caption1: {
|
|
@@ -3373,11 +3375,13 @@ declare module "libs/reach/util/common/src/theme/theme2/index" {
|
|
|
3373
3375
|
readonly buttonLabel1: {
|
|
3374
3376
|
readonly fontFamily: "Mulish, Arial, sans-serif !important";
|
|
3375
3377
|
readonly fontSize: "16px";
|
|
3378
|
+
readonly fontWeight: 700;
|
|
3376
3379
|
readonly lineHeight: "16px";
|
|
3377
3380
|
};
|
|
3378
3381
|
readonly buttonLabel2: {
|
|
3379
3382
|
readonly fontFamily: "Mulish, Arial, sans-serif !important";
|
|
3380
3383
|
readonly fontSize: "14px";
|
|
3384
|
+
readonly fontWeight: 700;
|
|
3381
3385
|
readonly lineHeight: "14px";
|
|
3382
3386
|
};
|
|
3383
3387
|
readonly caption1: {
|
|
@@ -3580,11 +3584,13 @@ declare module "libs/reach/util/common/src/theme/ThemeService" {
|
|
|
3580
3584
|
readonly buttonLabel1: {
|
|
3581
3585
|
readonly fontFamily: "Mulish, Arial, sans-serif !important";
|
|
3582
3586
|
readonly fontSize: "16px";
|
|
3587
|
+
readonly fontWeight: 700;
|
|
3583
3588
|
readonly lineHeight: "16px";
|
|
3584
3589
|
};
|
|
3585
3590
|
readonly buttonLabel2: {
|
|
3586
3591
|
readonly fontFamily: "Mulish, Arial, sans-serif !important";
|
|
3587
3592
|
readonly fontSize: "14px";
|
|
3593
|
+
readonly fontWeight: 700;
|
|
3588
3594
|
readonly lineHeight: "14px";
|
|
3589
3595
|
};
|
|
3590
3596
|
readonly caption1: {
|
|
@@ -5865,6 +5871,15 @@ declare module "libs/reach/ui/common/src/reach-2/avatar/index" {
|
|
|
5865
5871
|
export type { AvatarUser } from "libs/reach/ui/common/src/reach-2/avatar/GroupAvatar";
|
|
5866
5872
|
export { default as Persona } from "libs/reach/ui/common/src/reach-2/avatar/Persona";
|
|
5867
5873
|
}
|
|
5874
|
+
declare module "libs/reach/ui/common/src/reach-2/icons/IconHost" {
|
|
5875
|
+
import { FC } from 'react';
|
|
5876
|
+
interface IconHostProps {
|
|
5877
|
+
icon: JSX.Element;
|
|
5878
|
+
size?: number;
|
|
5879
|
+
}
|
|
5880
|
+
const IconHost: FC<IconHostProps>;
|
|
5881
|
+
export default IconHost;
|
|
5882
|
+
}
|
|
5868
5883
|
declare module "libs/reach/ui/common/src/reach-2/progress/Skeleton" {
|
|
5869
5884
|
import { FC } from 'react';
|
|
5870
5885
|
export const Skeleton: FC<{
|
|
@@ -6051,14 +6066,13 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/BaseButton" {
|
|
|
6051
6066
|
size?: BaseButtonSizeType;
|
|
6052
6067
|
}
|
|
6053
6068
|
export const BaseButton: import("react").ForwardRefExoticComponent<BaseButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
6054
|
-
export const BaseButtonStyle: import("styled-components").
|
|
6069
|
+
export const BaseButtonStyle: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<import("styled-components").DefaultTheme>>;
|
|
6055
6070
|
}
|
|
6056
6071
|
declare module "libs/reach/ui/common/src/reach-2/buttons/StandardButtons" {
|
|
6057
|
-
export const OutlinedButton: 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>;
|
|
6058
6072
|
export const PrimaryButton: 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>;
|
|
6059
6073
|
export const SecondaryButton: 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>;
|
|
6060
6074
|
export const TertiaryButton: 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>;
|
|
6061
|
-
export const
|
|
6075
|
+
export const LinkButton: 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>;
|
|
6062
6076
|
}
|
|
6063
6077
|
declare module "libs/reach/ui/common/src/reach-2/buttons/IconActionButton" {
|
|
6064
6078
|
import { MouseEventHandler, SVGProps } from 'react';
|
|
@@ -6349,11 +6363,13 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/ConfirmationDialog" {
|
|
|
6349
6363
|
}
|
|
6350
6364
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/BasePopover" {
|
|
6351
6365
|
import { FC } from 'react';
|
|
6366
|
+
import { PopoverContentProps } from '@radix-ui/react-popover';
|
|
6352
6367
|
export interface BasePopoverProps {
|
|
6353
6368
|
align?: 'start' | 'center' | 'end';
|
|
6354
6369
|
alignOffset?: number;
|
|
6355
6370
|
anchor?: JSX.Element;
|
|
6356
6371
|
className?: string;
|
|
6372
|
+
collisionPadding?: PopoverContentProps['collisionPadding'];
|
|
6357
6373
|
isOpen?: boolean;
|
|
6358
6374
|
onOpenChange?: (open: boolean) => void;
|
|
6359
6375
|
side?: 'top' | 'left' | 'bottom' | 'right';
|
|
@@ -11700,10 +11716,10 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ContextM
|
|
|
11700
11716
|
export const ContextMenuButton: FC<{
|
|
11701
11717
|
buttons: (dismiss: () => void) => JSX.Element;
|
|
11702
11718
|
className?: string;
|
|
11703
|
-
drawerHeight?: number;
|
|
11704
11719
|
disabled?: boolean;
|
|
11705
|
-
|
|
11720
|
+
drawerHeight?: number;
|
|
11706
11721
|
onDismiss?: () => void;
|
|
11722
|
+
size?: number;
|
|
11707
11723
|
}>;
|
|
11708
11724
|
export const ContextMenuOptionsStyles: import("styled-components").FlattenSimpleInterpolation;
|
|
11709
11725
|
}
|
|
@@ -11841,12 +11857,13 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ShareLin
|
|
|
11841
11857
|
}>;
|
|
11842
11858
|
}
|
|
11843
11859
|
declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ShareButton" {
|
|
11844
|
-
import {
|
|
11845
|
-
|
|
11860
|
+
import { SVGProps } from 'react';
|
|
11861
|
+
interface IShareButtonProps {
|
|
11862
|
+
className?: string;
|
|
11846
11863
|
onClick: () => void;
|
|
11847
11864
|
secondarySVG?: SVGProps<SVGElement>;
|
|
11848
|
-
|
|
11849
|
-
|
|
11865
|
+
}
|
|
11866
|
+
export const ShareButton: import("react").ForwardRefExoticComponent<IShareButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
11850
11867
|
}
|
|
11851
11868
|
declare module "libs/reach/feature/content/src/reach-2/common/detail/DetailViewContextMenu" {
|
|
11852
11869
|
import { FC } from 'react';
|