angular-toolbox 0.9.3 → 0.9.4

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.
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AngularToolboxLogoComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AngularToolboxLogoComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AngularToolboxLogoComponent, "atx-logo", never, {}, {}, never, never, true, never>;
5
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license
3
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
7
+ */
8
+ export * from './angular-toolbox-logo/angular-toolbox-logo.component';
@@ -27,10 +27,14 @@ export declare class VersionImpl implements Version {
27
27
  * Specifies the timestamp that corresponds to the build date for this `Version` instance.
28
28
  */
29
29
  readonly buildTimeStamp: number;
30
+ /**
31
+ * An optional string that indicates additional labels for pre-release and build metadata.
32
+ */
33
+ readonly metadata: string | undefined;
30
34
  /**
31
35
  * @private
32
36
  */
33
- constructor(major: number, minor: number, patch: number, buildTimeStamp: number);
37
+ constructor(major: number, minor: number, patch: number, buildTimeStamp: number, metadata?: string);
34
38
  /**
35
39
  * Returns a string representation of this `Version` object in the form `M.m.p`, where
36
40
  * `M` represents the major number, `m` represents the minor number and `p` represents
@@ -25,4 +25,8 @@ export interface VersionConfig {
25
25
  * Specifies the timestamp that corresponds to the build date for this config.
26
26
  */
27
27
  buildTimestamp: number;
28
+ /**
29
+ * An optional string that indicates additional labels for pre-release and build metadata.
30
+ */
31
+ metadata?: string;
28
32
  }
@@ -25,6 +25,10 @@ export interface Version {
25
25
  * Specifies the timestamp that corresponds to the build date for this `Version` object.
26
26
  */
27
27
  buildTimeStamp: number;
28
+ /**
29
+ * An optional string that indicates additional labels for pre-release and build metadata.
30
+ */
31
+ metadata?: string;
28
32
  /**
29
33
  * Returns a string representation of this `Version` object.
30
34
  *
@@ -0,0 +1,13 @@
1
+ import { AbstractVersionManager } from '../../../core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * The public service that exposes the current version of the Angular Toolbox library.
5
+ */
6
+ export declare class AngularToolboxVersionService extends AbstractVersionManager {
7
+ /**
8
+ * @private
9
+ */
10
+ constructor();
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AngularToolboxVersionService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<AngularToolboxVersionService>;
13
+ }
@@ -9,7 +9,7 @@ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
9
9
  import { PipeTransform } from "@angular/core";
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A basic implementation of HTML sanitization pipe.
12
+ * A basic implementation of a HTML sanitization pipe.
13
13
  */
14
14
  export declare class SafeHtmlPipe implements PipeTransform {
15
15
  private _sanitizer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-toolbox",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.0.0",
package/public-api.d.ts CHANGED
@@ -6,6 +6,7 @@
6
6
  * the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
7
7
  */
8
8
  export * from './lib/angular-toolbox.module';
9
+ export * from './lib/component';
9
10
  export * from './lib/core';
10
11
  export * from './lib/directive';
11
12
  export * from './lib/framework';