Skip to content

Commit

Permalink
Release v0.13.0
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
  • Loading branch information
Benjamin Perez committed Nov 28, 2023
1 parent 4160e15 commit 277fcb3
Show file tree
Hide file tree
Showing 20 changed files with 8,329 additions and 8,071 deletions.
800 changes: 443 additions & 357 deletions dist/cjs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions dist/cjs/types/components/Icons/EventBusyIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import * as React from "react";
import { SVGProps } from "react";
declare const ShuffleIcon: (
props: SVGProps<SVGSVGElement>,
) => React.JSX.Element;
export default ShuffleIcon;
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Icons/LanguageIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import * as React from "react";
import { SVGProps } from "react";
declare const LanguageIcon: (
props: SVGProps<SVGSVGElement>,
) => React.JSX.Element;
export default LanguageIcon;
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Icons/ShuffleIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import * as React from "react";
import { SVGProps } from "react";
declare const ShuffleIcon: (
props: SVGProps<SVGSVGElement>,
) => React.JSX.Element;
export default ShuffleIcon;
3 changes: 3 additions & 0 deletions dist/cjs/types/components/Icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,3 +212,6 @@ export { default as ExpandIcon } from "./ExpandIcon";
export { default as NextCaretIcon } from "./NextCaretIcon";
export { default as PrevCaretIcon } from "./PrevCaretIcon";
export { default as DarkModeIcon } from "./DarkModeIcon";
export { default as ShuffleIcon } from "./ShuffleIcon";
export { default as LanguageIcon } from "./LanguageIcon";
export { default as EventBusyIcon } from "./EventBusyIcon";
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Link/Link.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React, { FC } from "react";
import { LinkProps } from "./Link.types";
declare const Link: FC<
LinkProps & React.AnchorHTMLAttributes<HTMLAnchorElement>
>;
export default Link;
4 changes: 4 additions & 0 deletions dist/cjs/types/components/Link/Link.types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { CSSObject } from "styled-components";
export interface LinkProps {
sx?: CSSObject;
}
2 changes: 2 additions & 0 deletions dist/cjs/types/global/global.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ export interface SignalColorsThemeProps {
good: string;
info: string;
disabled: string;
dark: string;
clear: string;
}
export interface MenuThemeProps {
vertical?: {
Expand Down
Loading

0 comments on commit 277fcb3

Please sign in to comment.