@medyll/idae-be 0.87.0 → 0.88.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.
@@ -21,6 +21,7 @@ export declare class AttrHandler implements CommonHandler<AttrHandler, AttrHandl
21
21
  * @param element - The Be element to operate on.
22
22
  */
23
23
  constructor(element: Be);
24
+ methods: string[] | keyof AttrHandler;
24
25
  /**
25
26
  * Handles dynamic method calls for attribute operations.
26
27
  * @param actions - The actions to perform (e.g., set, get, delete).
@@ -18,6 +18,7 @@ export class AttrHandler {
18
18
  constructor(element) {
19
19
  this.beElement = element;
20
20
  }
21
+ methods = AttrHandler.methods;
21
22
  /**
22
23
  * Handles dynamic method calls for attribute operations.
23
24
  * @param actions - The actions to perform (e.g., set, get, delete).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@medyll/idae-be",
3
3
  "scope": "@medyll",
4
- "version": "0.87.0",
4
+ "version": "0.88.0",
5
5
  "description": "A powerful DOM manipulation library with a callback-based approach for precise element targeting. Provides consistent chaining, comprehensive DOM traversal, event handling, style management, and more. Written in TypeScript for modern browsers.",
6
6
  "scripts": {
7
7
  "dev": "vite dev",