@ngx-smz/core 21.1.10 → 21.1.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngx-smz/core",
3
- "version": "21.1.10",
3
+ "version": "21.1.12",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "@angular/common": ">=21.0.0",
@@ -221,7 +221,7 @@ interface ParentEntity<TKey, TData> {
221
221
  data: TData[];
222
222
  }
223
223
  declare const nameof: <T>(name: Extract<keyof T, string>) => string;
224
- declare const namesof: <T, U>(first: Extract<keyof T, string>, second: Extract<keyof U, string>) => string;
224
+ declare const namesof: <T, U>(first: Extract<keyof T, string>, second: Extract<keyof U, string>, separator?: string) => string;
225
225
  declare function flattenObject<T>(data: Record<string, unknown>): T;
226
226
 
227
227
  interface SmzSmartTagConfig {
@@ -9923,16 +9923,11 @@ interface RouteLayoutData {
9923
9923
  declare function sortMenuItemsByLabel(menuItems: MenuCreation[], sort?: boolean): MenuCreation[];
9924
9924
 
9925
9925
  declare class ThemeManagerService {
9926
- private readonly document;
9927
- _document?: Document;
9928
- contentLink: {
9929
- isLoaded: boolean;
9930
- path: string;
9931
- link: HTMLLinkElement;
9932
- }[];
9933
- constructor(document: any);
9926
+ private readonly document?;
9927
+ private readonly contentLink;
9928
+ constructor(document: Document);
9934
9929
  createCss(...paths: string[]): void;
9935
- propagate(): void;
9930
+ private propagate;
9936
9931
  static ɵfac: i0.ɵɵFactoryDeclaration<ThemeManagerService, never>;
9937
9932
  static ɵprov: i0.ɵɵInjectableDeclaration<ThemeManagerService>;
9938
9933
  }