@ansible/ansible-ui-framework 2.4.14 → 2.4.26

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,6 +11,7 @@ export declare function PageDashboardCard(props: {
11
11
  children?: ReactNode;
12
12
  width?: PageDashboardCardWidth;
13
13
  height?: PageDashboardCardHeight;
14
+ maxHeight?: PageDashboardCardHeight;
14
15
  style?: CSSProperties;
15
16
  help?: string[];
16
17
  helpTitle?: string;
@@ -18,7 +18,7 @@ export interface IToolbarStringFilter {
18
18
  label: string;
19
19
  type: 'string';
20
20
  query: string;
21
- placeholder?: string;
21
+ placeholder: string;
22
22
  }
23
23
  export interface IToolbarSelectFilter {
24
24
  key: string;
@@ -29,7 +29,7 @@ export interface IToolbarSelectFilter {
29
29
  value: string;
30
30
  }[];
31
31
  query: string;
32
- placeholder?: string;
32
+ placeholder: string;
33
33
  }
34
34
  export type IToolbarFilter = IToolbarStringFilter | IToolbarSelectFilter;
35
35
  export type IFilterState = Record<string, string[] | undefined>;