Skip to content

Commit

Permalink
Release v0.6.9 (#408)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <[email protected]>
  • Loading branch information
bexsoft authored Jul 10, 2023
1 parent efe9535 commit ee05416
Show file tree
Hide file tree
Showing 16 changed files with 14,983 additions and 14,723 deletions.
File renamed without changes.
14,315 changes: 7,199 additions & 7,116 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.

4 changes: 4 additions & 0 deletions dist/cjs/types/components/Tag/Tag.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import React, { FC } from "react";
import { TagProps } from "./Tag.types";
declare const Tag: FC<TagProps & React.HTMLAttributes<HTMLSpanElement>>;
export default Tag;
11 changes: 11 additions & 0 deletions dist/cjs/types/components/Tag/Tag.types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { CSSObject } from "styled-components";
export interface TagMainProps {
label: string;
onDelete?: (item: string) => void;
id: string;
}
export interface TagConstructProps {
color?: "default" | "secondary" | "warn" | "alert" | "ok";
sx?: CSSObject;
}
export type TagProps = TagMainProps & TagConstructProps;
2 changes: 2 additions & 0 deletions dist/cjs/types/components/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ export { default as Menu } from "./Menu/Menu";
export { default as ExpandOptionsButton } from "./ExpandOptionsButton/ExpandOptionsButton";
export { default as Tabs } from "./Tabs/Tabs";
export { default as CodeEditor } from "./CodeEditor/CodeEditor";
export { default as Tag } from "./Tag/Tag";
export * from "./Icons";
export * from "./Icons/SidebarMenus";
export * from "./Icons/FileIcons";
export * from "./Menu/Menu.types";
export * from "./DataTable/DataTable.types";
export * from "./Tabs/Tabs.types";
export * from "./CodeEditor/CodeEditor.types";
export * from "./Tag/Tag.types";
13 changes: 13 additions & 0 deletions dist/cjs/types/global/global.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,18 @@ export interface CodeEditorThemeProps {
markupBold: string;
codeEditorRegexp: string;
}
export interface TagVariantProps {
background: string;
label: string;
deleteColor: string;
}
export interface TagThemeProps {
default: TagVariantProps;
secondary: TagVariantProps;
warn: TagVariantProps;
alert: TagVariantProps;
ok: TagVariantProps;
}
export interface ThemeDefinitionProps {
bgColor: string;
fontColor: string;
Expand Down Expand Up @@ -247,6 +259,7 @@ export interface ThemeDefinitionProps {
menu?: MenuThemeProps;
tabs?: TabThemeProps;
codeEditor?: CodeEditorThemeProps;
tag?: TagThemeProps;
}
export interface SelectorType {
label: string;
Expand Down
File renamed without changes.
Loading

0 comments on commit ee05416

Please sign in to comment.