ps-toolkit-ui 0.0.148 → 0.0.150
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/ps-toolkit-ui.umd.js +12 -8
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/form/label/form.label.component.js +4 -1
- package/esm2015/lib/components/sidebar/item/sidebar.item.component.js +11 -9
- package/fesm2015/ps-toolkit-ui.js +12 -8
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2080,14 +2080,15 @@
|
|
|
2080
2080
|
};
|
|
2081
2081
|
}
|
|
2082
2082
|
SidebarItemComponent.prototype.openClose = function (e) {
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2083
|
+
var op = $__namespace(e.target).closest('.user-sidebar-item');
|
|
2084
|
+
if (op.hasClass('open')) {
|
|
2085
|
+
op.removeClass('open');
|
|
2086
|
+
op.find(' > .children').slideUp();
|
|
2087
|
+
}
|
|
2088
|
+
else {
|
|
2089
|
+
op.addClass('open');
|
|
2090
|
+
op.find(' > .children').slideDown();
|
|
2091
|
+
}
|
|
2091
2092
|
};
|
|
2092
2093
|
SidebarItemComponent.prototype.isActive = function (item) {
|
|
2093
2094
|
var e_1, _a;
|
|
@@ -4023,6 +4024,9 @@
|
|
|
4023
4024
|
}
|
|
4024
4025
|
FormLabelComponent.prototype.ngOnInit = function () {
|
|
4025
4026
|
var _this = this;
|
|
4027
|
+
console.log(this.inp, 'this.inp');
|
|
4028
|
+
console.log(this.inp.value, 'this.inp.value');
|
|
4029
|
+
console.log(this.inp.default, 'this.inp.default');
|
|
4026
4030
|
this.inp.setValue = function (v) {
|
|
4027
4031
|
_this.inp.value = v;
|
|
4028
4032
|
};
|