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.
@@ -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;