@dxtmisha/functional 1.12.1 → 1.13.2
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 +27 -0
- package/ai-description.txt +8 -3
- package/ai-types.txt +247 -521
- package/dist/library.js +18 -16
- package/dist/src/classes/ref/GeoFlagRef.d.ts +21 -14
- package/dist/src/functions/ref/executeFunctionRef.d.ts +11 -0
- package/dist/src/library.d.ts +1 -0
- package/dist/src/types/refTypes.d.ts +7 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.13.2] - 2026-06-05
|
|
6
|
+
|
|
7
|
+
### Changed / Improved
|
|
8
|
+
- **Maintenance**: Version bumped to `1.13.2` to synchronize package updates across the workspace.
|
|
9
|
+
|
|
10
|
+
## [1.13.1] - 2026-06-02
|
|
11
|
+
|
|
12
|
+
### Changed / Improved
|
|
13
|
+
- **Maintenance**: Version bumped to `1.13.1` to align with monorepo release updates.
|
|
14
|
+
|
|
15
|
+
## [1.13.0] - 2026-05-29
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- **refTypes**: Added `RefOrNormalOrFunction` union type representing references, normal values, or functions returning them.
|
|
19
|
+
- **Functions**: Introduced `executeFunctionRef` utility function to safely execute functions or unwrap reference values in a single call.
|
|
20
|
+
|
|
21
|
+
## [1.12.3] - 2026-05-25
|
|
22
|
+
|
|
23
|
+
### Changed / Improved
|
|
24
|
+
- **Build System**: Configured `ui-priority: 200` inside `package.json` to ensure prioritized dependency order sorting during workspace build actions.
|
|
25
|
+
- **Maintenance**: Version bumped to `1.12.3` for consistency.
|
|
26
|
+
|
|
27
|
+
## [1.12.2] - 2026-05-25
|
|
28
|
+
|
|
29
|
+
### Changed / Improved
|
|
30
|
+
- **Tests**: Configured vitest runner execution environment via the `--no-webstorage` flag inside `package.json` to avoid persistent localStorage/sessionStorage warning outputs.
|
|
31
|
+
|
|
5
32
|
## [1.12.1] - 2026-05-21
|
|
6
33
|
|
|
7
34
|
### Fixed
|
package/ai-description.txt
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
This library is a
|
|
1
|
+
Core Purpose: This library is a comprehensive Vue 3 framework for reactive application architecture. It provides high-level abstractions for API orchestration (fetching, mutation, SSR, schema validation), state management (singletons, reactive storage, session/cookie handling), component design (base classes for rendering and lifecycle management), and localization/internationalization (geo-data, formatting, date management).
|
|
2
2
|
|
|
3
|
-
Study this
|
|
3
|
+
Usage Scenarios: Study this API when building complex, data-intensive Vue 3 applications requiring:
|
|
4
|
+
1. Centralized, reactive API management (GET/POST/PUT/DELETE) with built-in SSR support, caching, and automatic response contract validation.
|
|
5
|
+
2. Unified component architecture using base design classes for consistent styling, rendering, and lifecycle event management.
|
|
6
|
+
3. Complex list handling, client-side searching, and advanced data formatting (Intl, currency, dates).
|
|
7
|
+
4. Cross-tab communication or persistent reactive state storage (localStorage, sessionStorage, cookies).
|
|
8
|
+
5. Global service configuration (meta tags, translation, icons, API settings) via Vue plugins.
|
|
4
9
|
|
|
5
|
-
The library
|
|
10
|
+
Integration Context: The library acts as a core infrastructure layer. It is built on top of Vue 3's Composition API and `vue-router`. It relies heavily on `@dxtmisha/functional-basic` for underlying logic. It should be treated as the primary service and utility layer that replaces manual store management (like Pinia) and repetitive API/lifecycle boilerplate by providing standardized patterns (e.g., `executeUse` for singletons) for shared state and service orchestration.
|