@@ -7,15 +7,17 @@ css-selector-parser
7
7
* Covered with tests.
8
8
* Documented.
9
9
* Supported CSS selector standards:
10
- * ` css1 ` : https://www.w3.org/TR/CSS1/
11
- * ` css2 ` : https://www.w3.org/TR/CSS2/
12
- * ` css3 ` /` selectors-3 ` : https://www.w3.org/TR/selectors-3/
13
- * ` selectors-4 ` : https://www.w3.org/TR/selectors-4/
14
- * ` latest ` : refers to ` selectors-4 `
15
- * ` progressive ` : ` latest ` + accepts unknown psudo-classes, psudo-elements and attribute case sensitivity modifiers
10
+ * ` css1 ` : https://www.w3.org/TR/CSS1/
11
+ * ` css2 ` : https://www.w3.org/TR/CSS2/
12
+ * ` css3 ` /` selectors-3 ` : https://www.w3.org/TR/selectors-3/
13
+ * ` selectors-4 ` : https://www.w3.org/TR/selectors-4/
14
+ * ` latest ` : refers to ` selectors-4 `
15
+ * ` progressive ` : ` latest ` + accepts unknown psudo-classes, psudo-elements and attribute case sensitivity modifiers
16
16
17
17
** Important:** [ Migrating from 1.x] ( CHANGELOG.md#220 ) .
18
18
19
+ Latest releases: [ Changelog] ( CHANGELOG.md ) .
20
+
19
21
Installation
20
22
------------
21
23
@@ -41,48 +43,53 @@ Produces:
41
43
42
44
``` javascript
43
45
({
44
- type: ' Selector' ,
45
- rules: [
46
- {
47
- type: ' Rule' ,
48
- tag: { type: ' TagName' , name: ' a' },
49
- attributes: [
46
+ type: ' Selector' ,
47
+ rules: [
50
48
{
51
- type: ' Attribute ' ,
52
- name : ' href ' ,
53
- operator : ' ^= ' ,
54
- value : { type : ' String ' , value : ' / ' }
55
- }
56
- ]
57
- } ,
58
- {
59
- type : ' Rule ' ,
60
- classNames : [ ' container ' ],
61
- pseudoClasses : [
49
+ type: ' Rule ' ,
50
+ items : [
51
+ { type : ' TagName ' , name : ' a ' } ,
52
+ {
53
+ type : ' Attribute ' ,
54
+ name : ' href ' ,
55
+ operator : ' ^= ' ,
56
+ value : { type : ' String ' , value : ' / ' }
57
+ }
58
+ ]
59
+ },
62
60
{
63
- type: ' PseudoClass' ,
64
- name: ' has' ,
65
- argument: {
66
- type: ' Selector' ,
67
- rules: [ { type: ' Rule' , tag: { type: ' TagName' , name: ' nav' } } ]
68
- }
61
+ type: ' Rule' ,
62
+ items: [
63
+ { type: ' ClassName' , name: ' container' },
64
+ {
65
+ type: ' PseudoClass' ,
66
+ name: ' has' ,
67
+ argument: {
68
+ type: ' Selector' ,
69
+ rules: [
70
+ {
71
+ type: ' Rule' ,
72
+ items: [ { type: ' TagName' , name: ' nav' } ]
73
+ }
74
+ ]
75
+ }
76
+ }
77
+ ],
78
+ nestedRule: {
79
+ type: ' Rule' ,
80
+ items: [
81
+ { type: ' TagName' , name: ' a' },
82
+ { type: ' Attribute' , name: ' href' },
83
+ {
84
+ type: ' PseudoClass' ,
85
+ name: ' nth-child' ,
86
+ argument: { type: ' Formula' , a: 0 , b: 2 }
87
+ }
88
+ ],
89
+ combinator: ' >'
90
+ }
69
91
}
70
- ],
71
- nestedRule: {
72
- type: ' Rule' ,
73
- combinator: ' >' ,
74
- tag: { type: ' TagName' , name: ' a' },
75
- attributes: [ { type: ' Attribute' , name: ' href' } ],
76
- pseudoClasses: [
77
- {
78
- type: ' PseudoClass' ,
79
- name: ' nth-child' ,
80
- argument: { type: ' Formula' , a: 0 , b: 2 }
81
- }
82
- ]
83
- }
84
- }
85
- ]
92
+ ]
86
93
})
87
94
```
88
95
@@ -94,34 +101,32 @@ import {ast, render} from 'css-selector-parser';
94
101
const selector = ast .selector ({
95
102
rules: [
96
103
ast .rule ({
97
- tag : ast . tagName ({name : ' a ' }),
98
- attributes : [
104
+ items : [
105
+ ast . tagName ({name : ' a ' }),
99
106
ast .attribute ({name: ' href' , operator: ' ^=' , value: ast .string ({value: ' /' })})
100
107
]
101
108
}),
102
109
ast .rule ({
103
- classNames : [' container ' ],
104
- pseudoClasses : [
110
+ items : [
111
+ ast . className ({name : ' container ' }),
105
112
ast .pseudoClass ({
106
113
name: ' has' ,
107
114
argument: ast .selector ({
108
- rules: [
109
- ast .rule ({tag: ast .tagName ({name: ' nav' })})
110
- ]
115
+ rules: [ast .rule ({items: [ast .tagName ({name: ' nav' })]})]
111
116
})
112
117
})
113
118
],
114
119
nestedRule: ast .rule ({
115
120
combinator: ' >' ,
116
- tag : ast . tagName ({name : ' a ' }),
117
- attributes : [ ast .attribute ({name: ' href ' })] ,
118
- pseudoClasses : [
121
+ items : [
122
+ ast .tagName ({name: ' a ' }),
123
+ ast . attribute ({name : ' href ' }),
119
124
ast .pseudoClass ({
120
125
name: ' nth-child' ,
121
126
argument: ast .formula ({a: 0 , b: 2 })
122
- })
123
- ],
124
- pseudoElement : ' before '
127
+ }),
128
+ ast . pseudoElement ({name : ' before ' })
129
+ ]
125
130
})
126
131
})
127
132
]
0 commit comments