info-library 2.10.22 → 2.10.23
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/info-library.umd.js +7 -0
- package/bundles/info-library.umd.js.map +1 -1
- package/bundles/info-library.umd.min.js +1 -1
- package/bundles/info-library.umd.min.js.map +1 -1
- package/esm2015/controls/card-menu/card-menu.component.js +6 -1
- package/fesm2015/info-library.js +5 -0
- package/fesm2015/info-library.js.map +1 -1
- package/package.json +1 -1
|
@@ -3137,6 +3137,13 @@
|
|
|
3137
3137
|
*/
|
|
3138
3138
|
InfoMenuCardComponent.prototype.load = function () {
|
|
3139
3139
|
this.menuRows = new Array();
|
|
3140
|
+
this.menu = this.menu == null ? null : this.menu.filter(( /**
|
|
3141
|
+
* @param {?} i
|
|
3142
|
+
* @return {?}
|
|
3143
|
+
*/function (/**
|
|
3144
|
+
* @param {?} i
|
|
3145
|
+
* @return {?}
|
|
3146
|
+
*/ i) { return i.permission == true; }));
|
|
3140
3147
|
if (this.menu == null || this.menu.length == 0 || this.cols == null || this.cols == 0) {
|
|
3141
3148
|
this.menuRows.push(this.menu);
|
|
3142
3149
|
this.colClass += this.col.toString();
|