ps-toolkit-ui 1.4.2 → 1.4.3
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 +18 -0
- 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/public-api.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +16 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -7769,6 +7769,23 @@
|
|
|
7769
7769
|
return ChartClass;
|
|
7770
7770
|
}());
|
|
7771
7771
|
|
|
7772
|
+
var CurrentDataClass = /** @class */ (function () {
|
|
7773
|
+
function CurrentDataClass(data) {
|
|
7774
|
+
if (data === void 0) { data = null; }
|
|
7775
|
+
this.user = null;
|
|
7776
|
+
this.permissions = [];
|
|
7777
|
+
this.modules = [];
|
|
7778
|
+
this.software = { Version: '0.0' };
|
|
7779
|
+
if (data != null) {
|
|
7780
|
+
this.user = data.User;
|
|
7781
|
+
this.permissions = data.Permissions;
|
|
7782
|
+
this.modules = data.Modules;
|
|
7783
|
+
this.software = data.Software;
|
|
7784
|
+
}
|
|
7785
|
+
}
|
|
7786
|
+
return CurrentDataClass;
|
|
7787
|
+
}());
|
|
7788
|
+
|
|
7772
7789
|
/*
|
|
7773
7790
|
* Public API Surface of ps-toolkit-ui
|
|
7774
7791
|
*/
|
|
@@ -7784,6 +7801,7 @@
|
|
|
7784
7801
|
exports.BaseComponent = BaseComponent;
|
|
7785
7802
|
exports.ChartClass = ChartClass;
|
|
7786
7803
|
exports.ConfirmComponent = ConfirmComponent;
|
|
7804
|
+
exports.CurrentDataClass = CurrentDataClass;
|
|
7787
7805
|
exports.DayClass = DayClass;
|
|
7788
7806
|
exports.EnumUtils = EnumUtils;
|
|
7789
7807
|
exports.FooterComponent = FooterComponent;
|