@whenessel/seql-js 1.0.2 → 1.1.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/README.md +2 -1
- package/dist/seql-js.d.ts +2 -0
- package/dist/seql-js.js +731 -613
- package/dist/seql-js.js.map +1 -1
- package/dist/seql-js.umd.cjs +1 -1
- package/dist/seql-js.umd.cjs.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -8,7 +8,8 @@ Semantic Element Query Language (SEQL) - Stable DOM element identification for w
|
|
|
8
8
|
|
|
9
9
|
- **Semantic-first**: Uses ARIA roles, labels, semantic HTML tags, and stable attributes.
|
|
10
10
|
- **Resilient**: Designed to be stable across UI updates and DOM changes.
|
|
11
|
-
- **
|
|
11
|
+
- **State-independent** (v1.0.3): Filters out state attributes (`aria-selected`, `data-state`, `disabled`) to ensure elements are found regardless of their current state.
|
|
12
|
+
- **Dual Format**:
|
|
12
13
|
- **EID** (JSON): Structured descriptor for internal operations and high precision.
|
|
13
14
|
- **SEQL Selector** (String): Canonical string format for easy transport (analytics) and storage.
|
|
14
15
|
- **Deterministic**: Guaranteed same output for the same DOM state.
|
package/dist/seql-js.d.ts
CHANGED