@colijnit/corecomponents_v12 254.1.9 → 254.1.10

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.
@@ -11823,7 +11823,7 @@
11823
11823
  var ListOfIconsComponent = /** @class */ (function () {
11824
11824
  function ListOfIconsComponent(icons) {
11825
11825
  this.icons = icons;
11826
- this.iconSize = 30;
11826
+ this.iconSize = 25;
11827
11827
  this.itemSelected = new i0.EventEmitter();
11828
11828
  this.Icon = exports.CoreComponentsIcon;
11829
11829
  this.showMenu = false;
@@ -11842,6 +11842,11 @@
11842
11842
  ListOfIconsComponent.prototype.showClass = function () {
11843
11843
  return true;
11844
11844
  };
11845
+ ListOfIconsComponent.prototype.ngOnInit = function () {
11846
+ if (this.activeItem === undefined) {
11847
+ this.activeItem = this.collection[0];
11848
+ }
11849
+ };
11845
11850
  ListOfIconsComponent.prototype.toggleMenu = function () {
11846
11851
  this.showMenu = !this.showMenu;
11847
11852
  };