@fest-lib/object 0.1.2 → 0.1.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/README.md +9 -10
- package/dist/object.js +623 -611
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -405,16 +405,15 @@ Legacy function for creating reactive Sets.
|
|
|
405
405
|
|
|
406
406
|
## Modules
|
|
407
407
|
|
|
408
|
-
- [core/Assigned](
|
|
409
|
-
- [core/
|
|
410
|
-
- [core/
|
|
411
|
-
- [core/
|
|
412
|
-
- [core/
|
|
413
|
-
- [
|
|
414
|
-
- [
|
|
415
|
-
- [wrap/
|
|
416
|
-
- [wrap/
|
|
417
|
-
- [wrap/Utils](docs/wrap/Utils/README.md) - Utility functions and types
|
|
408
|
+
- [core/Assigned](src/core/Assigned.ts) - Assignment and binding utilities
|
|
409
|
+
- [core/Mainline](src/core/Mainline.ts) - Core subscription and reactivity system
|
|
410
|
+
- [core/Primitives](src/core/Primitives.ts) - Primitive reactive references
|
|
411
|
+
- [core/Specific](src/core/Specific.ts) - Specific object type handlers
|
|
412
|
+
- [core/Subscript](src/core/Subscript.ts) - Subscription registry system
|
|
413
|
+
- [index](src/index.ts) - Main exports
|
|
414
|
+
- [wrap/AssignObject](src/wrap/AssignObject.ts) - Object assignment proxy
|
|
415
|
+
- [wrap/Symbol](src/wrap/Symbol.ts) - Internal symbols and triggers
|
|
416
|
+
- [wrap/Utils](src/wrap/Utils.ts) - Utility functions and types
|
|
418
417
|
|
|
419
418
|
---
|
|
420
419
|
|