@ansible/ansible-ui-framework 2.4.294 → 2.4.296

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import './PageMultiSelect.css';
3
+ import './PageSelect.css';
3
4
  import { PageSelectOption } from './PageSelectOption';
4
5
  export interface PageMultiSelectProps<ValueT> {
5
6
  id?: string;
@@ -1,4 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
+ import './PageSelect.css';
2
3
  import { PageSelectOption } from './PageSelectOption';
3
4
  import './PageSingleSelect.css';
4
5
  export interface PageSingleSelectProps<ValueT> {
@@ -11,7 +12,3 @@ export interface PageSingleSelectProps<ValueT> {
11
12
  footer?: ReactNode;
12
13
  }
13
14
  export declare function PageSingleSelect<ValueT>(props: PageSingleSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
14
- export declare const SelectPlacedholder: import("styled-components").StyledComponent<"span", any, {}, never>;
15
- export declare const SelectHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
16
- export declare const SelectFooter: import("styled-components").StyledComponent<"div", any, {}, never>;
17
- export declare const SelectListStyled: import("styled-components").StyledComponent<import("react").FunctionComponent<import("@patternfly/react-core").MenuListProps>, any, {}, never>;