@ansible/ansible-ui-framework 0.0.638 → 0.0.640

Sign up to get free protection for your applications and to get access to all the features.
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": "0.0.638",
4
+ "version": "0.0.640",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,14 +0,0 @@
1
- import { AlertProps } from '@patternfly/react-core';
2
- import { ReactNode } from 'react';
3
- export interface IPageAlerts {
4
- addAlert: (alert: AlertProps) => void;
5
- removeAlert: (alert: AlertProps) => void;
6
- replaceAlert: (oldAlert: AlertProps, newAlert: AlertProps) => void;
7
- removeAlerts: (filter?: (alert: AlertProps) => boolean) => void;
8
- }
9
- export declare const PageAlertsContext: import("react").Context<IPageAlerts>;
10
- export declare const PageAlertsArrayContext: import("react").Context<AlertProps[]>;
11
- export declare function usePageAlerts(): IPageAlerts;
12
- export declare function PageAlertsProvider(props: {
13
- children: ReactNode;
14
- }): JSX.Element;