angular-toolbox 0.9.3 → 0.9.5

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.
Files changed (34) hide show
  1. package/README.md +1 -1
  2. package/esm2022/lib/angular-toolbox.module.mjs +7 -3
  3. package/esm2022/lib/collection/array-list-event-type.enum.mjs +30 -0
  4. package/esm2022/lib/collection/array-list.event.mjs +23 -0
  5. package/esm2022/lib/collection/array-list.mjs +158 -0
  6. package/esm2022/lib/collection/index.mjs +11 -0
  7. package/esm2022/lib/component/angular-toolbox-logo/angular-toolbox-logo.component.mjs +18 -0
  8. package/esm2022/lib/component/index.mjs +9 -0
  9. package/esm2022/lib/core/abstract/abstract-version-manager.mjs +2 -2
  10. package/esm2022/lib/core/impl/version/version.impl.mjs +6 -3
  11. package/esm2022/lib/model/business/version/version-config.mjs +1 -1
  12. package/esm2022/lib/model/business/version/version.mjs +1 -1
  13. package/esm2022/lib/model/service/index.mjs +2 -2
  14. package/esm2022/lib/model/service/version/angular-toolbox-version.service.mjs +38 -0
  15. package/esm2022/lib/model/service/version/index.mjs +3 -0
  16. package/esm2022/lib/pipe/safe/safe-html.pipe.mjs +2 -2
  17. package/esm2022/public-api.mjs +3 -1
  18. package/fesm2022/angular-toolbox.mjs +304 -25
  19. package/fesm2022/angular-toolbox.mjs.map +1 -1
  20. package/lib/collection/array-list-event-type.enum.d.ts +28 -0
  21. package/lib/collection/array-list.d.ts +111 -0
  22. package/lib/collection/array-list.event.d.ts +29 -0
  23. package/lib/collection/index.d.ts +10 -0
  24. package/lib/component/angular-toolbox-logo/angular-toolbox-logo.component.d.ts +5 -0
  25. package/lib/component/index.d.ts +8 -0
  26. package/lib/core/impl/version/version.impl.d.ts +5 -1
  27. package/lib/model/business/version/version-config.d.ts +4 -0
  28. package/lib/model/business/version/version.d.ts +4 -0
  29. package/lib/model/service/index.d.ts +1 -1
  30. package/lib/model/service/version/angular-toolbox-version.service.d.ts +13 -0
  31. package/lib/model/service/version/index.d.ts +2 -0
  32. package/lib/pipe/safe/safe-html.pipe.d.ts +1 -1
  33. package/package.json +1 -1
  34. package/public-api.d.ts +2 -0
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { NgModule, EventEmitter, Directive, Output, Input, HostListener, Inject, Injectable, inject, Pipe } from '@angular/core';
2
+ import { Injectable, NgModule, EventEmitter, Component, Directive, Output, Input, HostListener, Inject, inject, Pipe } from '@angular/core';
3
3
  import * as i1 from '@angular/router';
4
4
  import { RouterModule } from '@angular/router';
5
5
  import { DOCUMENT, XhrFactory } from '@angular/common';
@@ -7,25 +7,6 @@ import { HttpStatusCode, HttpHeaders, HttpRequest } from '@angular/common/http';
7
7
  import { Observable, of } from 'rxjs';
8
8
  import * as i1$1 from '@angular/platform-browser';
9
9
 
10
- /**
11
- * @license
12
- * Copyright Pascal ECHEMANN. All Rights Reserved.
13
- *
14
- * Use of this source code is governed by an MIT-style license that can be found in
15
- * the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
16
- */
17
- /**
18
- * @private
19
- */
20
- class AngularToolboxModule {
21
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
22
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule }); }
23
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule }); }
24
- }
25
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule, decorators: [{
26
- type: NgModule
27
- }] });
28
-
29
10
  /**
30
11
  * @license
31
12
  * Copyright Pascal ECHEMANN. All Rights Reserved.
@@ -491,11 +472,12 @@ class VersionImpl {
491
472
  /**
492
473
  * @private
493
474
  */
494
- constructor(major, minor, patch, buildTimeStamp) {
475
+ constructor(major, minor, patch, buildTimeStamp, metadata) {
495
476
  this.major = major;
496
477
  this.minor = minor;
497
478
  this.patch = patch;
498
479
  this.buildTimeStamp = buildTimeStamp;
480
+ this.metadata = metadata;
499
481
  }
500
482
  /**
501
483
  * Returns a string representation of this `Version` object in the form `M.m.p`, where
@@ -505,7 +487,8 @@ class VersionImpl {
505
487
  * @returns A string representation of this `VersionImpl` instance.
506
488
  */
507
489
  toString() {
508
- return `${this.major}.${this.minor}.${this.patch}`;
490
+ const m = this.metadata;
491
+ return `${this.major}.${this.minor}.${this.patch}${m ? "-" + m : EMPTY_STRING}`;
509
492
  }
510
493
  }
511
494
  ;
@@ -526,7 +509,7 @@ class AbstractVersionManager {
526
509
  * @param config the reference to the VersionConfig provider.
527
510
  */
528
511
  constructor(config) {
529
- this._version = new VersionImpl(config.major, config.minor, config.patch, config.buildTimestamp);
512
+ this._version = new VersionImpl(config.major, config.minor, config.patch, config.buildTimestamp, config.metadata);
530
513
  }
531
514
  /**
532
515
  * Returns the version of the associated Angular project.
@@ -546,6 +529,302 @@ class AbstractVersionManager {
546
529
  }
547
530
  }
548
531
 
532
+ /**
533
+ * @license
534
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
535
+ *
536
+ * Use of this source code is governed by an MIT-style license that can be found in
537
+ * the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
538
+ */
539
+ /**
540
+ * @private
541
+ * The current version of the Angular Toolbox library.
542
+ */
543
+ const LAYERS_VERSION_CONFIG = {
544
+ major: 0,
545
+ minor: 9,
546
+ patch: 5,
547
+ buildTimestamp: 1721047710956,
548
+ metadata: "beta"
549
+ };
550
+ /**
551
+ * The public service that exposes the current version of the Angular Toolbox library.
552
+ */
553
+ class AngularToolboxVersionService extends AbstractVersionManager {
554
+ /**
555
+ * @private
556
+ */
557
+ constructor() {
558
+ super(LAYERS_VERSION_CONFIG);
559
+ }
560
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxVersionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
561
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxVersionService }); }
562
+ }
563
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxVersionService, decorators: [{
564
+ type: Injectable
565
+ }], ctorParameters: () => [] });
566
+
567
+ /**
568
+ * @license
569
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
570
+ *
571
+ * Use of this source code is governed by an MIT-style license that can be found in
572
+ * the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
573
+ */
574
+ /**
575
+ * @private
576
+ */
577
+ class AngularToolboxModule {
578
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
579
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule }); }
580
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule, providers: [AngularToolboxVersionService] }); }
581
+ }
582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxModule, decorators: [{
583
+ type: NgModule,
584
+ args: [{
585
+ providers: [AngularToolboxVersionService]
586
+ }]
587
+ }] });
588
+
589
+ /**
590
+ * @license
591
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
592
+ *
593
+ * Use of this source code is governed by an MIT-style license that can be
594
+ * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
595
+ */
596
+ /**
597
+ * The `ArrayListEvent` class represents an event that is dispatched when the associated collection changes.
598
+ */
599
+ class ArrayListEvent {
600
+ /**
601
+ * Represents events dispatched by the `ArrayList` class.
602
+ *
603
+ * @param type The type of the event.
604
+ * @param list The reference to the `ArrayList` instance that dispatches this event.
605
+ */
606
+ constructor(type, list) {
607
+ this.type = type;
608
+ this.list = list;
609
+ }
610
+ }
611
+
612
+ /**
613
+ * @license
614
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
615
+ *
616
+ * Use of this source code is governed by an MIT-style license that can be
617
+ * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
618
+ */
619
+ /**
620
+ * The `ArrayListEventType` class the type of events on an `ArrayListEvent` object.
621
+ */
622
+ var ArrayListEventType;
623
+ (function (ArrayListEventType) {
624
+ /**
625
+ * The type of event associated with the `ArrayList.addAll` action.
626
+ */
627
+ ArrayListEventType["ADD_ALL"] = "addAll";
628
+ /**
629
+ * The type of event associated with the `ArrayList.addItem`, or `ArrayList.addItemAt` actions.
630
+ */
631
+ ArrayListEventType["ADD"] = "add";
632
+ /**
633
+ * The type of event associated with the `ArrayList.removeAll` action.
634
+ */
635
+ ArrayListEventType["REMOVE_ALL"] = "removeAll";
636
+ /**
637
+ * The type of event associated with the `ArrayList.remove`, or `ArrayList.removeAt` actions.
638
+ */
639
+ ArrayListEventType["REMOVE"] = "remove";
640
+ })(ArrayListEventType || (ArrayListEventType = {}));
641
+
642
+ /**
643
+ * @license
644
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
645
+ *
646
+ * Use of this source code is governed by an MIT-style license that can be
647
+ * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
648
+ */
649
+ /**
650
+ * The `ArrayList` class uses a backing `Array` as the source of the data collection. Items in the backing
651
+ * `Array` can be accessed and manipulated using the methods and properties of the `ArrayList` instance.
652
+ * Operations on an `ArrayList` instance modify the data source.
653
+ *
654
+ * You typically use the `ArrayList` class as base class for services that persist data in the User Interface.
655
+ */
656
+ class ArrayList extends IdentifiableComponent {
657
+ /**
658
+ * Gets the number of items in the list.
659
+ */
660
+ get length() {
661
+ return this.__list__.length;
662
+ }
663
+ /**
664
+ * @private
665
+ */
666
+ constructor(classRef = undefined) {
667
+ super(classRef || "ArrayList");
668
+ /**
669
+ * Dispatches events each time this `ArrayList` is modified.
670
+ */
671
+ this.change = new EventEmitter();
672
+ /**
673
+ * @private
674
+ * The array used as a source for the `ArrayList`.
675
+ */
676
+ this.__list__ = [];
677
+ }
678
+ /**
679
+ * Adds a list of items to the current `ArrayList` instance, placing them at the end of the
680
+ * list in the order they are passed.
681
+ *
682
+ * @param addList The list of items to add to this current `ArrayList` instance.
683
+ *
684
+ * @return A reference to this `ArrayList` instance.
685
+ */
686
+ addAll(addList) {
687
+ this.__list__.push(...addList);
688
+ this.dispatchEvent(ArrayListEventType.ADD_ALL);
689
+ return this;
690
+ }
691
+ /**
692
+ * Adds the specified item to the end of the list.
693
+ *
694
+ * @param item The item to add.
695
+ *
696
+ * @return A reference to this `ArrayList` instance.
697
+ */
698
+ addItem(item) {
699
+ this.__list__.push(item);
700
+ this.dispatchEvent(ArrayListEventType.ADD);
701
+ return this;
702
+ }
703
+ /**
704
+ * Adds the item at the specified index.
705
+ *
706
+ * @param item The item to place at the index.
707
+ * @param index The index at which to place the item.
708
+ *
709
+ * @return A reference to this `ArrayList` instance.
710
+ */
711
+ addItemAt(item, index) {
712
+ if (index < 0)
713
+ throw new RangeError("index must be greater that 0");
714
+ const len = this.__list__.length;
715
+ if (index > len)
716
+ throw new RangeError(`index exceeds the number of list elements. Index must not exceed ${len}.`);
717
+ this.__list__.splice(index, 0, item);
718
+ this.dispatchEvent(ArrayListEventType.ADD);
719
+ return this;
720
+ }
721
+ /**
722
+ * Gets the item at the specified index.
723
+ *
724
+ * @param index The index in the list from which to retrieve the item.
725
+ *
726
+ * @returns The item at that index, `undefined` if there is none.
727
+ */
728
+ getItemAt(index) {
729
+ return this.__list__[index];
730
+ }
731
+ /**
732
+ * Returns the index of the item if it is in the list.
733
+ *
734
+ * @param item The item to find.
735
+ *
736
+ * @returns The index of the item, `-1` if the item is not in the list.
737
+ */
738
+ getItemIndex(item) {
739
+ return this.__list__.findIndex(elm => elm === item);
740
+ }
741
+ /**
742
+ * Removes all items from the list.
743
+ *
744
+ * @return A reference to this `ArrayList` instance.
745
+ */
746
+ removeAll() {
747
+ this.__list__.length = 0;
748
+ this.dispatchEvent(ArrayListEventType.REMOVE_ALL);
749
+ return this;
750
+ }
751
+ /**
752
+ * Removes the specified item from this list.
753
+ *
754
+ * @param item Reference to the item that should be removed.
755
+ *
756
+ * @returns `true` whether if the item was removed; `false` otherwise.
757
+ */
758
+ removeItem(item) {
759
+ const idx = this.getItemIndex(item);
760
+ if (idx === -1)
761
+ return false;
762
+ this.__list__.splice(idx, 1);
763
+ this.dispatchEvent(ArrayListEventType.REMOVE);
764
+ return true;
765
+ }
766
+ /**
767
+ * Removes the item at the specified index and returns it.
768
+ * Any items that were after this index are now one index earlier.
769
+ *
770
+ * @param index The index from which to remove the item.
771
+
772
+ * @returns The item that was removed.
773
+ */
774
+ removeItemAt(index) {
775
+ const result = this.__list__.splice(index, 1)[0];
776
+ this.dispatchEvent(ArrayListEventType.REMOVE);
777
+ return result;
778
+ }
779
+ /**
780
+ * Returns an array that is populated in the same order as this `ArrayList` instance.
781
+ *
782
+ * @returns An array that is populated in the same order as this `ArrayList` instance.
783
+ */
784
+ toArray() {
785
+ return this.__list__.slice(0);
786
+ }
787
+ /**
788
+ * @private
789
+ */
790
+ dispatchEvent(type) {
791
+ const event = new ArrayListEvent(type, this);
792
+ this.change.emit(event);
793
+ }
794
+ }
795
+
796
+ /**
797
+ * @license
798
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
799
+ *
800
+ * Use of this source code is governed by an MIT-style license that can be
801
+ * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
802
+ */
803
+
804
+ /**
805
+ * @license
806
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
807
+ *
808
+ * Use of this source code is governed by an MIT-style license that can be
809
+ * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
810
+ */
811
+ class AngularToolboxLogoComponent {
812
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxLogoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
813
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: AngularToolboxLogoComponent, isStandalone: true, selector: "atx-logo", ngImport: i0, template: "<!--\r\n * LICENSE\r\n * Copyright Pascal ECHEMANN. All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license\r\n-->\r\n \r\n<svg version=\"1.1\" id=\"Calque_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\r\n\t viewBox=\"0 0 185.6 200\" style=\"enable-background:new 0 0 185.6 200;\" xml:space=\"preserve\">\r\n<style type=\"text/css\">\r\n\t.st0{fill:#03A9F4;}\r\n\t.st1{fill:#039BE5;}\r\n\t.st2{fill:#FFFFFF;}\r\n\t.st3{opacity:0.75;fill:#FFFFFF;}\r\n</style>\r\n<g id=\"Layer_2\">\r\n\t<g id=\"Layer_1-2\">\r\n\t\t<polygon class=\"st0\" points=\"92.4,1.9 92.4,1.9 92.4,1.9 1.8,34.6 15.5,155 92.4,198.1 92.4,198.1 92.4,198.1 169.8,155 \r\n\t\t\t183.8,34.6 \t\t\"/>\r\n\t\t<polygon class=\"st1\" points=\"92.4,1.9 92.4,23.7 92.4,23.7 92.4,122.8 92.4,122.8 92.4,198.1 92.4,198.1 169.8,155 183.8,34.6 \t\t\r\n\t\t\t\"/>\r\n\t</g>\r\n</g>\r\n<g>\r\n\t<path class=\"st2\" d=\"M60.3,75.1l17.9,17.9c3.1-2.9,5.7-5.5,7.7-7.4L67.9,67.5l-2.2-9.8l-16.1-9.8l-4.4,4.4l-4.4,4.4l9.8,16.1\r\n\t\tL60.3,75.1z\"/>\r\n\t<path class=\"st3\" d=\"M114.7,104.3l26.5,26.4c4.9,4.9,4.9,12.8,0,17.7c-4.9,4.9-12.8,4.9-17.7,0L97.1,122L114.7,104.3z\"/>\r\n\t<path class=\"st2\" d=\"M92.4,114.6V89l-49.2,47.2c-0.1,0.1-0.2,0.2-0.3,0.3c-4.3,4.3-4.2,11.1-0.1,15.3c4.1,4.1,11.1,4.2,15.4,0\r\n\t\tc0.2-0.2,0.4-0.4,0.6-0.6\"/>\r\n\t<path class=\"st3\" d=\"M144.3,61.6l-1.8-1.5c-0.3-0.3-0.7-0.4-1.2-0.4c-0.4,0-0.8,0.3-1.1,0.6L129.7,74c-0.3,0.4-0.8,0.6-1.3,0.6\r\n\t\tl-3.8,0.3c-0.3,0-0.6-0.1-0.9-0.3l-7.4-6.3c-0.3-0.2-0.5-0.6-0.5-1l-0.5-3.5c-0.1-0.4,0-0.8,0.3-1.1l9.9-13.4\r\n\t\tc0.4-0.6,0.4-1.5-0.2-2l-2.4-1.9c-0.5-0.4-1-0.4-1.7-0.2c-6.8,1.3-18.5,8-21.4,17.1c-2.6,8-1.7,13.7-1.7,13.7\r\n\t\tc0,4.5-1.5,8.9-3.3,10.7L92.4,89v25.7l15.9-17.2c6.1-5.4,18.2,0.4,28.2-8.7c9.1-8.3,10.6-17.7,8.6-25.6\r\n\t\tC145,62.5,144.9,62,144.3,61.6z\"/>\r\n</g>\r\n</svg>\r\n" }); }
814
+ }
815
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularToolboxLogoComponent, decorators: [{
816
+ type: Component,
817
+ args: [{ selector: 'atx-logo', standalone: true, template: "<!--\r\n * LICENSE\r\n * Copyright Pascal ECHEMANN. All Rights Reserved.\r\n *\r\n * Use of this source code is governed by an MIT-style license that can be\r\n * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license\r\n-->\r\n \r\n<svg version=\"1.1\" id=\"Calque_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\r\n\t viewBox=\"0 0 185.6 200\" style=\"enable-background:new 0 0 185.6 200;\" xml:space=\"preserve\">\r\n<style type=\"text/css\">\r\n\t.st0{fill:#03A9F4;}\r\n\t.st1{fill:#039BE5;}\r\n\t.st2{fill:#FFFFFF;}\r\n\t.st3{opacity:0.75;fill:#FFFFFF;}\r\n</style>\r\n<g id=\"Layer_2\">\r\n\t<g id=\"Layer_1-2\">\r\n\t\t<polygon class=\"st0\" points=\"92.4,1.9 92.4,1.9 92.4,1.9 1.8,34.6 15.5,155 92.4,198.1 92.4,198.1 92.4,198.1 169.8,155 \r\n\t\t\t183.8,34.6 \t\t\"/>\r\n\t\t<polygon class=\"st1\" points=\"92.4,1.9 92.4,23.7 92.4,23.7 92.4,122.8 92.4,122.8 92.4,198.1 92.4,198.1 169.8,155 183.8,34.6 \t\t\r\n\t\t\t\"/>\r\n\t</g>\r\n</g>\r\n<g>\r\n\t<path class=\"st2\" d=\"M60.3,75.1l17.9,17.9c3.1-2.9,5.7-5.5,7.7-7.4L67.9,67.5l-2.2-9.8l-16.1-9.8l-4.4,4.4l-4.4,4.4l9.8,16.1\r\n\t\tL60.3,75.1z\"/>\r\n\t<path class=\"st3\" d=\"M114.7,104.3l26.5,26.4c4.9,4.9,4.9,12.8,0,17.7c-4.9,4.9-12.8,4.9-17.7,0L97.1,122L114.7,104.3z\"/>\r\n\t<path class=\"st2\" d=\"M92.4,114.6V89l-49.2,47.2c-0.1,0.1-0.2,0.2-0.3,0.3c-4.3,4.3-4.2,11.1-0.1,15.3c4.1,4.1,11.1,4.2,15.4,0\r\n\t\tc0.2-0.2,0.4-0.4,0.6-0.6\"/>\r\n\t<path class=\"st3\" d=\"M144.3,61.6l-1.8-1.5c-0.3-0.3-0.7-0.4-1.2-0.4c-0.4,0-0.8,0.3-1.1,0.6L129.7,74c-0.3,0.4-0.8,0.6-1.3,0.6\r\n\t\tl-3.8,0.3c-0.3,0-0.6-0.1-0.9-0.3l-7.4-6.3c-0.3-0.2-0.5-0.6-0.5-1l-0.5-3.5c-0.1-0.4,0-0.8,0.3-1.1l9.9-13.4\r\n\t\tc0.4-0.6,0.4-1.5-0.2-2l-2.4-1.9c-0.5-0.4-1-0.4-1.7-0.2c-6.8,1.3-18.5,8-21.4,17.1c-2.6,8-1.7,13.7-1.7,13.7\r\n\t\tc0,4.5-1.5,8.9-3.3,10.7L92.4,89v25.7l15.9-17.2c6.1-5.4,18.2,0.4,28.2-8.7c9.1-8.3,10.6-17.7,8.6-25.6\r\n\t\tC145,62.5,144.9,62,144.3,61.6z\"/>\r\n</g>\r\n</svg>\r\n" }]
818
+ }] });
819
+
820
+ /**
821
+ * @license
822
+ * Copyright Pascal ECHEMANN. All Rights Reserved.
823
+ *
824
+ * Use of this source code is governed by an MIT-style license that can be
825
+ * found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
826
+ */
827
+
549
828
  /**
550
829
  * @license
551
830
  * Copyright Pascal ECHEMANN. All Rights Reserved.
@@ -3732,7 +4011,7 @@ const httpMockFactory = () => {
3732
4011
  };
3733
4012
 
3734
4013
  /**
3735
- * A basic implementation of HTML sanitization pipe.
4014
+ * A basic implementation of a HTML sanitization pipe.
3736
4015
  */
3737
4016
  class SafeHtmlPipe {
3738
4017
  /**
@@ -3777,5 +4056,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
3777
4056
  * Generated bundle index. Do not edit.
3778
4057
  */
3779
4058
 
3780
- export { APP_PRIDGE_REF, AbstractSubscriptionManager, AbstractVersionManager, AnchorLinklDirective, AngularToolboxModule, AppBridgeError, AppBrigeService, BIGINT, BOOLEAN, BUTTON_ROLE, ButtonRoleDirective, CSS_PROP, ContentRendererDirective, DARK_MODE_CONFIG, DarkModeService, EMPTY_STRING, FUNCTION, HTTP_MOCK_SERVICE, HttpHeadersMockBuilder, HttpMock, HttpMockService, HttpMockServiceError, HttpResponseMockBuilder, IdentifiableComponent, IntegrityError, LINK_ROLE, NUMBER, NavigateToUrlDirective, OBJECT, STORAGE_KEY, STRING, SYMBOL, SafeHtmlPipe, ScrollService, SubscriptionError, SubscriptionService, UNDEFINED, Uuid, VERSION_CONFIG, VersionService, httpHeadersMock, httpMockFactory, httpResponseMock };
4059
+ export { APP_PRIDGE_REF, AbstractSubscriptionManager, AbstractVersionManager, AnchorLinklDirective, AngularToolboxLogoComponent, AngularToolboxModule, AngularToolboxVersionService, AppBridgeError, AppBrigeService, ArrayList, ArrayListEvent, ArrayListEventType, BIGINT, BOOLEAN, BUTTON_ROLE, ButtonRoleDirective, CSS_PROP, ContentRendererDirective, DARK_MODE_CONFIG, DarkModeService, EMPTY_STRING, FUNCTION, HTTP_MOCK_SERVICE, HttpHeadersMockBuilder, HttpMock, HttpMockService, HttpMockServiceError, HttpResponseMockBuilder, IdentifiableComponent, IntegrityError, LINK_ROLE, NUMBER, NavigateToUrlDirective, OBJECT, STORAGE_KEY, STRING, SYMBOL, SafeHtmlPipe, ScrollService, SubscriptionError, SubscriptionService, UNDEFINED, Uuid, VERSION_CONFIG, VersionService, httpHeadersMock, httpMockFactory, httpResponseMock };
3781
4060
  //# sourceMappingURL=angular-toolbox.mjs.map