@livetiles/reach-plugin-types 0.5.0-preview.952 → 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 +17 -3
- 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';
|