Skip to content

Commit

Permalink
Released 1.0.0-9
Browse files Browse the repository at this point in the history
  • Loading branch information
release-bot committed Jun 1, 2020
1 parent 66f52a3 commit 73b82e6
Show file tree
Hide file tree
Showing 27 changed files with 1,609 additions and 825 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,21 @@
* dfb34c5 fix: adds dropdown async support
* d7eb6e3 fix: replaces utilityClass with className
* 7565bd4 feat: adds pill component

-------------------
**v1.0.0-9** (2020-06-01)

* 66f52a3 v1.0.0-9
* 70e7c08 feat: adds dropdown bulk selection
* d5daf77 fix: adds default onToggle for Popover
* 740678c fix: adds Modal subcomponents in build
* d06284c fix: fixes animation of Modal and Backdrop
* 141fabe fix: replaces tooltip with popover in input
* 1b83ca9 fix: fixes donut chart tests
* 6ab90e5 fix: fixes onPageChange being called on initial render of Pagination
* 5c3b25c fix: fixes color of Close Button in Toast
* 9ac52a2 fix: Input background fix
* 03d78af fix: children type fix
* 2a4e872 feat: adds common stories
* f623097 fix: fixes dropdown search design and #37
* c0d4a25 fix: fixes checkbox CSS
80 changes: 53 additions & 27 deletions css/dist/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions dist/core/components/atoms/badge/_stories_/Default.story.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/// <reference types="react" />
export declare const defaultbadge: () => JSX.Element;
declare const _default: {
title: string;
component: {
(props: import("../Badge").BadgeProps): JSX.Element;
displayName: string;
};
parameters: {
docs: {
docPage: {
title: string;
};
};
};
};
export default _default;
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/// <reference types="react" />
export declare const subtleAlert: () => JSX.Element;
declare const _default: {
title: string;
component: {
(props: import("../Badge").BadgeProps): JSX.Element;
displayName: string;
};
parameters: {
docs: {
docPage: {
title: string;
};
};
};
};
export default _default;
17 changes: 17 additions & 0 deletions dist/core/components/atoms/badge/_stories_/Success.story.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/// <reference types="react" />
export declare const success: () => JSX.Element;
declare const _default: {
title: string;
component: {
(props: import("../Badge").BadgeProps): JSX.Element;
displayName: string;
};
parameters: {
docs: {
docPage: {
title: string;
};
};
};
};
export default _default;
17 changes: 17 additions & 0 deletions dist/core/components/atoms/badge/_stories_/Warning.story.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/// <reference types="react" />
export declare const warning: () => JSX.Element;
declare const _default: {
title: string;
component: {
(props: import("../Badge").BadgeProps): JSX.Element;
displayName: string;
};
parameters: {
docs: {
docPage: {
title: string;
};
};
};
};
export default _default;
10 changes: 10 additions & 0 deletions dist/core/components/atoms/badge/_stories_/index.story.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/// <reference types="react" />
export declare const all: () => JSX.Element;
declare const _default: {
title: string;
component: {
(props: import("../Badge").BadgeProps): JSX.Element;
displayName: string;
};
};
export default _default;
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/// <reference types="react" />
export declare const appearance: () => JSX.Element;
declare const _default: {
title: string;
component: {
(props: import("../../Badge").BadgeProps): JSX.Element;
displayName: string;
};
parameters: {
docs: {
docPage: {
title: string;
};
};
};
};
export default _default;
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/// <reference types="react" />
export declare const subtle: () => JSX.Element;
declare const _default: {
title: string;
component: {
(props: import("../../Badge").BadgeProps): JSX.Element;
displayName: string;
};
parameters: {
docs: {
docPage: {
title: string;
};
};
};
};
export default _default;
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import * as React from 'react';
import { BreadcrumbProps } from './Breadcrumb';
export interface BreadcrumbsWrapperProps {
heading?: string;
children: React.ReactNode;
children: React.ReactElement<BreadcrumbProps> | React.ReactElement<BreadcrumbProps>[];
}
export declare const BreadcrumbsWrapper: React.FunctionComponent<BreadcrumbsWrapperProps>;
export default BreadcrumbsWrapper;
8 changes: 5 additions & 3 deletions dist/core/components/atoms/dropdown/Dropdown.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ interface OptionType {
length: number;
slicedOptions: any[];
}
export declare const useIsMount: () => boolean;
export interface DropdownProps extends DropdownListProps {
limit?: number;
loading?: boolean;
async?: boolean;
options: Option[];
loadMoreOptions?: (offset: number, limit: number, searchTerm: string) => Promise<OptionType>;
bulk?: boolean;
options?: Option[];
selectedGroupLabel?: string;
fetchOptions?: (searchTerm: string, limit: number) => Promise<OptionType>;
onChange?: (selected: any[] | any) => void;
}
export declare const Dropdown: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import * as React from 'react';
declare type Appearance = 'basic' | 'primary' | 'success' | 'alert' | 'transparent';
declare type ReactMouseEvent = (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
export declare type Size = 'tiny' | 'regular';
export interface DropdownButtonProps {
size?: Size;
appearance?: Appearance;
disabled?: boolean;
menu?: boolean;
icon?: string;
Expand Down
Loading

0 comments on commit 73b82e6

Please sign in to comment.