- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
6.0 KiB
6.0 KiB
DOM Selector
A CSS selector engine. Used in jsdom since jsdom v23.2.0.
Install
npm i @asamuzakjp/dom-selector
Usage
import {
matches, closest, querySelector, querySelectorAll
} from '@asamuzakjp/dom-selector';
matches(selector, node, opt)
matches - same functionality as Element.matches()
Parameters
selectorstring CSS selectornodeobject Element nodeoptobject? optionsopt.warnboolean? console warn e.g. unsupported pseudo-class
Returns boolean true if matched, false otherwise
closest(selector, node, opt)
closest - same functionality as Element.closest()
Parameters
selectorstring CSS selectornodeobject Element nodeoptobject? optionsopt.warnboolean? console warn e.g. unsupported pseudo-class
Returns object? matched node
querySelector(selector, node, opt)
querySelector - same functionality as Document.querySelector(), DocumentFragment.querySelector(), Element.querySelector()
Parameters
selectorstring CSS selectornodeobject Document, DocumentFragment or Element nodeoptobject? optionsopt.warnboolean? console warn e.g. unsupported pseudo-class
Returns object? matched node
querySelectorAll(selector, node, opt)
querySelectorAll - same functionality as Document.querySelectorAll(), DocumentFragment.querySelectorAll(), Element.querySelectorAll()
NOTE: returns Array, not NodeList
Parameters
selectorstring CSS selectornodeobject Document, DocumentFragment or Element nodeoptobject? optionsopt.warnboolean? console warn e.g. unsupported pseudo-class
Returns Array<(object | undefined)> array of matched nodes
Supported CSS selectors
| Pattern | Supported | Note |
|---|---|---|
| * | ✓ | |
| ns|E | ✓ | |
| *|E | ✓ | |
| |E | ✓ | |
| E | ✓ | |
| E:not(s1, s2, …) | ✓ | |
| E:is(s1, s2, …) | ✓ | |
| E:where(s1, s2, …) | ✓ | |
| E:has(rs1, rs2, …) | ✓ | |
| E.warning | ✓ | |
| E#myid | ✓ | |
| E[foo] | ✓ | |
| E[foo="bar"] | ✓ | |
| E[foo="bar" i] | ✓ | |
| E[foo="bar" s] | ✓ | |
| E[foo~="bar"] | ✓ | |
| E[foo^="bar"] | ✓ | |
| E[foo$="bar"] | ✓ | |
| E[foo*="bar"] | ✓ | |
| E[foo|="en"] | ✓ | |
| E:defined | Unsupported | |
| E:dir(ltr) | ✓ | |
| E:lang(en) | Partially supported | Comma-separated list of language codes, e.g. :lang(en, fr), is not yet supported. |
| E:any‑link | ✓ | |
| E:link | ✓ | |
| E:visited | ✓ | Returns false or null to prevent fingerprinting. |
| E:local‑link | ✓ | |
| E:target | ✓ | |
| E:target‑within | ✓ | |
| E:scope | ✓ | |
| E:current | Unsupported | |
| E:current(s) | Unsupported | |
| E:past | Unsupported | |
| E:future | Unsupported | |
| E:active | Unsupported | |
| E:hover | Unsupported | |
| E:focus | ✓ | |
| E:focus‑within | ✓ | |
| E:focus‑visible | Unsupported | |
| E:enabled E:disabled |
✓ | |
| E:read‑write E:read‑only |
✓ | |
| E:placeholder‑shown | ✓ | |
| E:default | ✓ | |
| E:checked | ✓ | |
| E:indeterminate | ✓ | |
| E:valid E:invalid |
✓ | |
| E:required E:optional |
✓ | |
| E:blank | Unsupported | |
| E:user‑invalid | Unsupported | |
| E:root | ✓ | |
| E:empty | ✓ | |
| E:nth‑child(n [of S]?) | ✓ | |
| E:nth‑last‑child(n [of S]?) | ✓ | |
| E:first‑child | ✓ | |
| E:last‑child | ✓ | |
| E:only‑child | ✓ | |
| E:nth‑of‑type(n) | ✓ | |
| E:nth‑last‑of‑type(n) | ✓ | |
| E:first‑of‑type | ✓ | |
| E:last‑of‑type | ✓ | |
| E:only‑of‑type | ✓ | |
| E F | ✓ | |
| E > F | ✓ | |
| E + F | ✓ | |
| E ~ F | ✓ | |
| F || E | Unsupported | |
| E:nth‑col(n) | Unsupported | |
| E:nth‑last‑col(n) | Unsupported | |
| :host | ✓ | |
| :host(s) | ✓ | |
| :host‑context(s) | ✓ |
Acknowledgments
The following resources have been of great help in the development of the DOM Selector.
Copyright (c) 2023 asamuzaK (Kazz)