ps-toolkit-ui 1.4.4 → 1.4.5

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.
@@ -7312,6 +7312,9 @@
7312
7312
  BaseComponent.prototype.hasAccess = function (a) {
7313
7313
  return this.permissions ? this.permissions.hasAccessByName(a) : false;
7314
7314
  };
7315
+ BaseComponent.prototype.getAccess = function (a) {
7316
+ return this.permissions ? this.permissions.getAccessByName(a) : null;
7317
+ };
7315
7318
  BaseComponent.prototype.hasOption = function (a) {
7316
7319
  return this.permissions ? this.permissions.hasAccessByName(a) : false;
7317
7320
  };