@dxtmisha/functional 1.11.12 → 1.12.0

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 CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.11.13] - 2026-05-18
6
+
7
+ ### Added
8
+ - **Error Handlers Integration**: Added `errorHandlers` option (of type `ErrorCenterHandlerList`) to `FunctionalPluginOptions` for registering custom global error handlers via `ErrorCenter.addHandlerList` during plugin installation.
9
+ - **Unit Tests**: Added comprehensive test cases verifying correct registration of error handlers during plugin installation.
10
+
11
+ ### Changed / Improved
12
+ - **Documentation**: Extensively updated the plugin documentation in three languages (English, Russian, Vietnamese) to cover the new `errorCauses` and `errorHandlers` parameters and describe their integration with the `ErrorCenter`.
13
+
5
14
  ## [1.11.12] - 2026-05-17
6
15
 
7
16
  ### Added
@@ -1 +1,5 @@
1
- A foundational utility and abstraction framework for Vue 3 designed to bridge functional logic with reactive component architecture. It provides a standardized constructor pattern for component development, comprehensive API orchestration, and advanced internationalization capabilities. The library is indispensable for implementing structured component lifecycles using the DesignConstructorAbstract pattern to automate the generation of dynamic classes, styles, and VNodes. It should be studied when building data-heavy interfaces requiring complex API management (GET/POST/PUT/DELETE) with integrated client-side searching, list formatting, and skeleton states via useApiManagementRef. It is critical for applications requiring deep localization, providing reactive wrappers for Intl-based formatting of numbers, currencies, dates, and geographic flag management. Use cases include managing application-wide singletons via the executeUse pattern, reactive SEO meta-tag synchronization, and specialized reactive utilities for DOM events, cookies, and IntersectionObserver integration. Built specifically for Vue 3 environments, it extends the core reactivity system with specialized computed properties and handles VNode rendering within its abstraction classes. It maintains a direct dependency on @dxtmisha/functional-basic for underlying logic and integrates with vue-router for routing-aware state management.
1
+ This library is a technical SDK for Vue 3 that facilitates the construction of design systems and complex application states through reactive abstractions. Its primary function is to provide a standardized architecture for API orchestration, design component construction, and reactive utility management. It extends low-level logic from @dxtmisha/functional-basic into the Vue reactivity ecosystem.
2
+
3
+ Study this library when implementing robust API integration layers that require built-in SSR support, response contract validation, and automated mutation handling (POST/PUT/DELETE). It is indispensable for developing design systems that need base classes for tracking property changes and rendering dynamic component trees. Use its API for reactive localization (i18n), geographic data handling, SEO meta tag synchronization, and implementing singleton service patterns via provide/inject or global scopes.
4
+
5
+ The library integrates deeply with the Vue 3 composition API and vue-router. It operates as a Vue plugin, managing global services for icons, translations, and error handling. It bridges the gap between pure functional utilities and reactive UI requirements, specifically targeting environments where SSR consistency and strict data validation are priorities.