@techextensor/tab-sdk 0.0.36 → 0.0.40

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.
@@ -1997,6 +1997,10 @@ class StoreService {
1997
1997
  // Initialize the key with an empty array if it doesn't exist
1998
1998
  screenContext[key] = [];
1999
1999
  }
2000
+ else if (screenContext[key].length >= 5) {
2001
+ // Remove the oldest data if the array exceeds 5 elements
2002
+ screenContext[key].shift();
2003
+ }
2000
2004
  // Add the data to the existing array
2001
2005
  screenContext[key].push(data);
2002
2006
  // Update the screen context with the new data
@@ -2073,6 +2077,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
2073
2077
 
2074
2078
  class UtilService {
2075
2079
  // Will store the services from context
2080
+ _isProxy = true;
2076
2081
  _context = null;
2077
2082
  _initialized = false;
2078
2083
  /**