@jetbrains/ring-ui 6.0.80 → 6.0.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,7 +8,7 @@ export interface AlertItem extends Partial<Omit<AlertProps, 'children'>> {
|
|
|
8
8
|
/**
|
|
9
9
|
* @name Alert Service
|
|
10
10
|
*/
|
|
11
|
-
declare class AlertService {
|
|
11
|
+
export declare class AlertService {
|
|
12
12
|
defaultTimeout: number;
|
|
13
13
|
showingAlerts: AlertItem[];
|
|
14
14
|
containerElement: HTMLDivElement;
|
|
@@ -4,7 +4,7 @@ import Alert, { ANIMATION_TIME, Container as AlertContainer } from '../alert/ale
|
|
|
4
4
|
/**
|
|
5
5
|
* @name Alert Service
|
|
6
6
|
*/
|
|
7
|
-
class AlertService {
|
|
7
|
+
export class AlertService {
|
|
8
8
|
defaultTimeout = 0;
|
|
9
9
|
// This alerts are stored in inverse order (last shown is first in array)
|
|
10
10
|
showingAlerts = [];
|