@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.
- package/bundles/colijnit-corecomponents_v12.umd.js +6 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/list-of-icons/list-of-icons.component.js +7 -2
- package/fesm2015/colijnit-corecomponents_v12.js +6 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/list-of-icons/list-of-icons.component.d.ts +3 -2
- package/lib/components/list-of-icons/style/_layout.scss +1 -0
- package/package.json +1 -1
|
@@ -11823,7 +11823,7 @@
|
|
|
11823
11823
|
var ListOfIconsComponent = /** @class */ (function () {
|
|
11824
11824
|
function ListOfIconsComponent(icons) {
|
|
11825
11825
|
this.icons = icons;
|
|
11826
|
-
this.iconSize =
|
|
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
|
};
|