myrta-ui 17.1.64 → 17.1.65

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.
@@ -1,5 +1,5 @@
1
- import { NotifyConfig } from '../../models/notification-config.model';
2
- import { NotifyType } from '../../enums/notification-type.enum';
1
+ import { NotifyConfig } from '../../models';
2
+ import { NotifyType } from '../../enums';
3
3
  import { EventEmitter } from '@angular/core';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class NotifyComponent {
@@ -1,4 +1,4 @@
1
- export { NotificationService } from './notification.service';
1
+ export { NotifyService } from './notification.service';
2
2
  export { NotifyComponent } from './components';
3
3
  export { NotifyConfig, NotifyState } from './models';
4
4
  export { NotifyType, NotifyPosition } from './enums';
@@ -1,10 +1,9 @@
1
- import { NotifyType } from '../enums/notification-type.enum';
2
- import { NotifyPosition } from '../enums/notification-position.enum';
1
+ import { NotifyType, NotifyPosition } from '../enums';
3
2
  export interface NotifyConfig {
4
3
  id?: number;
5
- title: string;
6
- message: string;
7
- type: NotifyType;
4
+ title?: string;
5
+ message?: string;
6
+ type?: NotifyType;
8
7
  options?: {
9
8
  closeButton?: boolean;
10
9
  enableHtml?: boolean;
@@ -2,7 +2,7 @@ import { Type } from '@angular/core';
2
2
  import { NotifyConfig, NotifyState } from './models';
3
3
  import { NotifyComponent } from './components';
4
4
  import * as i0 from "@angular/core";
5
- export declare class NotificationService {
5
+ export declare class NotifyService {
6
6
  private readonly _appRef;
7
7
  private readonly _environmentInjector;
8
8
  private readonly _defaultDuration;
@@ -22,6 +22,6 @@ export declare class NotificationService {
22
22
  private _resumeNotification;
23
23
  private _getOrCreatePositionContainer;
24
24
  private _cleanupEmptyContainers;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
26
- static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotifyService, never>;
26
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotifyService>;
27
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myrta-ui",
3
- "version": "17.1.64",
3
+ "version": "17.1.65",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",