@dxtmisha/functional 1.14.4 → 1.14.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.
- package/CHANGELOG.md +1 -1
- package/dist/library.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [1.14.
|
|
5
|
+
## [1.14.5] - 2026-06-29
|
|
6
6
|
|
|
7
7
|
### Changed
|
|
8
8
|
- **GeoFlagRef**: Refactored constructor to default to `GeoRef.getLocation().value` dynamically and reactively, avoiding hard dependencies on the static `Geo.getLocation()` during SSR.
|
package/dist/library.js
CHANGED
|
@@ -367,7 +367,10 @@ var je = class {
|
|
|
367
367
|
}
|
|
368
368
|
}, Ne = class {
|
|
369
369
|
constructor(e) {
|
|
370
|
-
V(this, "flag", void 0), this.flag = F(() =>
|
|
370
|
+
V(this, "flag", void 0), this.flag = F(() => {
|
|
371
|
+
var t;
|
|
372
|
+
return new d((t = H(e)) == null ? q.getLocation().value : t);
|
|
373
|
+
});
|
|
371
374
|
}
|
|
372
375
|
getCode() {
|
|
373
376
|
return this.flag.value.getCode();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxtmisha/functional",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "A comprehensive library of utilities, base classes, and Vue 3 composables for reactive web development. Extends @dxtmisha/functional-basic with Composition API.",
|
|
7
7
|
"keywords": [
|