@ansible/ansible-ui-framework 2.4.377 → 2.4.378

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,23 @@
1
1
  export type PageDashboardCountBarProps = {
2
2
  counts: {
3
3
  title: string;
4
- count: number;
4
+ total?: number;
5
5
  to: string;
6
+ counts?: {
7
+ label: string;
8
+ count: number;
9
+ color: string;
10
+ link?: string;
11
+ }[];
6
12
  }[];
7
13
  };
8
14
  export declare function PageDashboardCountBar(props: PageDashboardCountBarProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function PageChartLegend(props: {
16
+ id: string;
17
+ legend: {
18
+ label: string;
19
+ count: number;
20
+ color: string;
21
+ link?: string;
22
+ }[];
23
+ }): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ansible/ansible-ui-framework",
3
3
  "description": "A framework for building applications using PatternFly.",
4
- "version": "2.4.377",
4
+ "version": "2.4.378",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",