@bnsights/bbsf-utilities 1.2.5 → 1.2.8-beta.1
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 +22 -0
- package/fesm2022/bnsights-bbsf-utilities.mjs +361 -101
- package/fesm2022/bnsights-bbsf-utilities.mjs.map +1 -1
- package/lib/shared/authentication/auth.service.d.ts +10 -0
- package/lib/shared/services/master-layout.service.d.ts +9 -5
- package/lib/shared/services/preload.service.d.ts +5 -0
- package/lib/shared/services/service-worker-helper.service.d.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,8 +124,30 @@ See [XMLBUILDER2_FIX.md](./XMLBUILDER2_FIX.md) for technical details.
|
|
|
124
124
|
- **[MIGRATION_GUIDE.md](./MIGRATION_GUIDE.md)** - Migrate to modular imports (optional)
|
|
125
125
|
- **[TROUBLESHOOTING.md](./TROUBLESHOOTING.md)** - Fix import issues
|
|
126
126
|
|
|
127
|
+
===================================================
|
|
128
|
+
|
|
127
129
|
# Change Log
|
|
128
130
|
|
|
131
|
+
## 1.2.7 / 26-03-2026
|
|
132
|
+
|
|
133
|
+
===================
|
|
134
|
+
|
|
135
|
+
- Enhancements in masterLayoutService
|
|
136
|
+
- Add `FileLoaderService.preloadAll()` to load `environment.js` + `configurations.json` + default language JSON in parallel
|
|
137
|
+
- Add lazy translation loading via `FileLoaderService.loadLanguage(lang)` (loads missing language only when switching)
|
|
138
|
+
- Remove `ConfigurationService` constructor auto-fetch for `configurations.json` (preloaded once via `preloadAll()`)
|
|
139
|
+
|
|
140
|
+
## 1.2.6 / 04-02-2026
|
|
141
|
+
|
|
142
|
+
===================
|
|
143
|
+
|
|
144
|
+
- Fixed login page redirect issues after successful authentication
|
|
145
|
+
- Resolved session timer persistence after logout
|
|
146
|
+
- Fixed authentication state synchronization problems
|
|
147
|
+
- Prevented token refresh conflicts with logout
|
|
148
|
+
- Improved cookie expiration handling
|
|
149
|
+
- Enhanced cross-tab logout support
|
|
150
|
+
|
|
129
151
|
## 1.2.5 / 18-1-2026
|
|
130
152
|
|
|
131
153
|
===================
|