Skip to content

Commit

Permalink
Fixed embedded fonts location for mds (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
bexsoft authored Nov 2, 2022
1 parent b9b3698 commit 9a13451
Show file tree
Hide file tree
Showing 85 changed files with 655 additions and 2,043 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 1 addition & 3 deletions dist/cjs/components/Button/Button.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React, { FC } from "react";
import { ButtonProps } from "./Button.types";
declare const Button: FC<
ButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement>
>;
declare const Button: FC<ButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement>>;
export default Button;
24 changes: 12 additions & 12 deletions dist/cjs/components/Button/Button.types.d.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { MouseEventHandler, ReactNode } from "react";
export interface ButtonProps {
id: string;
name?: string;
label?: string;
variant?: "regular" | "callAction" | "secondary";
icon?: ReactNode;
iconLocation?: "start" | "end";
fullWidth?: boolean;
disabled?: boolean;
collapseOnSmall?: boolean;
onClick?: MouseEventHandler<HTMLButtonElement>;
children?: ReactNode | string;
id: string;
name?: string;
label?: string;
variant?: "regular" | "callAction" | "secondary";
icon?: ReactNode;
iconLocation?: "start" | "end";
fullWidth?: boolean;
disabled?: boolean;
collapseOnSmall?: boolean;
onClick?: MouseEventHandler<HTMLButtonElement>;
children?: ReactNode | string;
}
export interface ConstructProps {
parentChildren: ReactNode | string | undefined;
parentChildren: ReactNode | string | undefined;
}
5 changes: 1 addition & 4 deletions dist/cjs/components/GlobalStyles/GlobalStyles.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
declare const GlobalStyles: import("styled-components").GlobalStyleComponent<
{},
import("styled-components").DefaultTheme
>;
declare const GlobalStyles: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
export default GlobalStyles;
4 changes: 2 additions & 2 deletions dist/cjs/components/ThemeHandler/ThemeHandler.types.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ReactNode } from "react";
export interface ThemeHandlerProps {
darkMode?: boolean;
children: ReactNode;
darkMode?: boolean;
children: ReactNode;
}
Loading

0 comments on commit 9a13451

Please sign in to comment.