@eldrex/papyr-animate 3.0.3 → 3.1.1

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 CHANGED
@@ -46,6 +46,12 @@ Create an HTML file and run this minimal working code:
46
46
  ## 💡 What is Papyr?
47
47
  * **Direct DOM Rendering:** Updates only the targeted DOM nodes when state changes—bypassing Virtual DOM diff overhead.
48
48
  * **Reactive State Engine:** Precise, dependency-tracking subscription-based reactivity (inspired by SolidJS and Vue).
49
+ * **Built-in Security Guards:** Employs safe Reflect API property proxies and whitelists to prevent Prototype Pollution, and strictly sanitizes routes/NLP schema fields to mitigate Regular Expression Denial of Service (ReDoS).
50
+ * **Lag-Proof Predictive States:** Extrapolates user pointer interactions 16ms (2-frames) ahead using an integrated Kalman filter state estimator.
51
+ * **WebGL2 GPU Layouts (`papyr.layout.gpu`):** Renders box hierarchies directly on WebGL2 fragment shaders to completely bypass CPU layout reflow computations.
52
+ * **Biometric & Behavioral UI Adaptation:** Detects user interaction speeds (scroll rate, click tempo) to adapt hit targets and kerning states dynamically.
53
+ * **Self-Healing State Mesh Network (`papyr.api.fetch`):** API interceptors caching JSON objects into an encrypted IndexedDB offline vault and queuing mutation ledgers for background sync.
54
+ * **Pythonic Syntax Wrapper (`papyr.py`):** Declarative layout builder aliases (`Box`, `Text`, `Button`, `Input`) designed to look and write like clean, semantic Python code.
49
55
  * **Zero Dependencies:** A single unified file that packages layout grids, animations, local storage databases, and AI helpers.
50
56
 
51
57
  ---
@@ -103,7 +109,18 @@ npm install @eldrex/papyr
103
109
  import { papyr } from '@eldrex/papyr';
104
110
  ```
105
111
 
112
+ ## 🛡️ Security & Network Disclosure
113
+
114
+ Papyr is a front-end framework running client-side in the user's browser. It includes standard, developer-facing AJAX wrapper utilities (`papyr.api.get`, `papyr.api.post`, and `papyr.fetch`) that reference the native browser `fetch()` API.
115
+
116
+ Because the compiled JavaScript bundles contain these standard `fetch()` API calls, static security analysis scanners (such as **Socket**) will flag the packages with a **Network Access / Supply Chain Security** alert.
117
+
118
+ Please rest assured:
119
+ - Papyr **does not** contain any telemetry, tracking, background logging, or malicious data transmission code.
120
+ - Network references are solely wrapper declarations provided to simplify HTTP requests for your application code.
121
+
106
122
  ---
107
123
 
108
124
  ## 📄 License
109
125
  Papyr.js is distributed under the [MIT License](https://github.com/EldrexDelosReyesBula/PapyrusJS/blob/main/LICENSE).
126
+