@dxtmisha/functional 1.11.12 → 1.11.13

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 low-level framework for Vue 3 component architecture and reactive state management, extending the @dxtmisha/functional-basic suite with Vue-specific reactive bindings. Its core purpose is to provide a standardized "Constructor" pattern for building UI components and a comprehensive set of composables for API orchestration, localization, and data list management.
2
+
3
+ The library is indispensable for implementing class-based component logic via DesignConstructorAbstract to decouple business logic from templates. An AI should study its API when handling: 1) Complex API management requiring integrated CRUD operations, SSR pre-fetching, response contract validation, and skeleton state handling (useApiManagementRef); 2) Advanced reactive list manipulation including hierarchical data, multi-selection, and search highlighting (ListDataRef, useSearchRef); 3) Internationalization and localization of dates, numbers, and currencies using reactive Intl wrappers (GeoIntlRef, DatetimeRef); 4) SEO meta tag management with automatic DOM synchronization and SSR support (useMeta); or 5) Managed singletons and shared state across component sub-trees (executeUse, executeUseProvide).
4
+
5
+ It integrates directly with the Vue 3 Reactivity API, Vue Router, and the @dxtmisha/functional-basic core. It provides infrastructure for design systems to manage component modifications, style/class injection, and reactive persistence via cookies, local storage, and broadcast channels.