UNPKG

815 BJavaScriptView Raw
1export default [
2 ':active',
3 ':any',
4 ':checked',
5 ':default',
6 ':disabled',
7 ':empty',
8 ':enabled',
9 ':first',
10 ':first-child',
11 ':first-of-type',
12 ':fullscreen',
13 ':focus',
14 ':hover',
15 ':indeterminate',
16 ':in-range',
17 ':invalid',
18 ':last-child',
19 ':last-of-type',
20 ':left',
21 ':link',
22 ':only-child',
23 ':only-of-type',
24 ':optional',
25 ':out-of-range',
26 ':read-only',
27 ':read-write',
28 ':required',
29 ':right',
30 ':root',
31 ':scope',
32 ':target',
33 ':valid',
34 ':visited',
35
36 // With value
37 ':dir',
38 ':lang',
39 ':not',
40 ':nth-child',
41 ':nth-last-child',
42 ':nth-last-of-type',
43 ':nth-of-type',
44
45 // Elements
46 '::after',
47 '::before',
48 '::first-letter',
49 '::first-line',
50 '::selection',
51 '::backdrop',
52 '::placeholder',
53 '::marker',
54 '::spelling-error',
55 '::grammar-error'
56]