@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.
- package/README.md +24 -24
- package/esm2022/lib/app/analytics.service.mjs +1 -1
- package/esm2022/lib/app/app.service.mjs +1 -1
- package/esm2022/lib/app/file.service.mjs +1 -1
- package/esm2022/lib/app/release.service.mjs +1 -1
- package/esm2022/lib/app/report.service.mjs +1 -1
- package/esm2022/lib/app/translator.service.mjs +1 -1
- package/esm2022/lib/auth/auth.service.mjs +1 -1
- package/esm2022/lib/crud/crud.service.mjs +1 -1
- package/esm2022/lib/enum/store.enum.mjs +1 -1
- package/esm2022/lib/enum/ui.enum.mjs +1 -1
- package/esm2022/lib/http/http.service.mjs +1 -1
- package/esm2022/lib/interface/http.interface.mjs +1 -1
- package/esm2022/lib/interface/ui.interface.mjs +1 -1
- package/esm2022/lib/store/store.service.mjs +5 -1
- package/esm2022/lib/tab-sdk.service.mjs +1 -1
- package/esm2022/lib/ui/form.service.mjs +1 -1
- package/esm2022/lib/ui/ui.service.mjs +1 -1
- package/esm2022/lib/util/util.service.mjs +2 -1
- package/esm2022/lib/workflow/transition.service.mjs +1 -1
- package/esm2022/public-api.mjs +1 -1
- package/fesm2022/techextensor-tab-sdk.mjs +5 -0
- package/fesm2022/techextensor-tab-sdk.mjs.map +1 -1
- package/lib/util/util.service.d.ts +1 -0
- package/package.json +2 -2
|
@@ -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
|
/**
|