ngssm-shell
Advanced tools
Comparing version 19.0.1 to 19.1.0
@@ -6,5 +6,5 @@ import { Action } from 'ngssm-store'; | ||
readonly title: string; | ||
readonly details?: any; | ||
readonly details?: unknown | undefined; | ||
readonly type: string; | ||
constructor(notificationType: ShellNotificationType, title: string, details?: any); | ||
constructor(notificationType: ShellNotificationType, title: string, details?: unknown | undefined); | ||
} |
@@ -1,2 +0,2 @@ | ||
import { ViewContainerRef } from '@angular/core'; | ||
import { ViewContainerRef, Type } from '@angular/core'; | ||
import { Observable } from 'rxjs'; | ||
@@ -9,3 +9,3 @@ import { NgSsmComponent, Store } from 'ngssm-store'; | ||
constructor(store: Store, viewContainerRef: ViewContainerRef); | ||
set item(value: any); | ||
set item(value: string | Type<unknown> | undefined); | ||
get innerHtml$(): Observable<string | undefined>; | ||
@@ -12,0 +12,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<WrapperComponent, never>; |
import { MatSnackBar } from '@angular/material/snack-bar'; | ||
import { Effect, Store, State, Action } from 'ngssm-store'; | ||
import { Effect } from 'ngssm-store'; | ||
import * as i0 from "@angular/core"; | ||
@@ -8,5 +8,5 @@ export declare class NotificationShowingEffect implements Effect { | ||
constructor(snackBar: MatSnackBar); | ||
processAction(store: Store, state: State, action: Action): void; | ||
processAction(): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationShowingEffect, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationShowingEffect>; | ||
} |
@@ -0,1 +1,2 @@ | ||
import { Type } from '@angular/core'; | ||
import { SidenavConfig } from './sidenav-config'; | ||
@@ -20,3 +21,3 @@ /** | ||
/** List of components or html to display in the footer */ | ||
footerComponents?: any[]; | ||
footerComponents?: (string | Type<unknown>)[]; | ||
} |
@@ -6,3 +6,3 @@ import { ShellNotificationType } from './shell-notification-type'; | ||
timestamp: Date; | ||
details?: any; | ||
details?: unknown; | ||
} |
@@ -0,1 +1,2 @@ | ||
import { Type } from '@angular/core'; | ||
export interface SidenavItem { | ||
@@ -9,5 +10,5 @@ /** Label displayed in the {@link SideNavComponent} for the section or the link */ | ||
/** Angular component to display at the right of the label */ | ||
component?: any; | ||
component?: string | Type<unknown>; | ||
/** If true the link is considered active only if the current route is equal to the item route */ | ||
linkActiveOnlyIfExact?: boolean; | ||
} |
{ | ||
"name": "ngssm-shell", | ||
"version": "19.0.1", | ||
"version": "19.1.0", | ||
"description": "NgSsm - A complete sheel with header, footer, side navigation...", | ||
@@ -5,0 +5,0 @@ "author": "Lion Marc", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
112293
782