Skip to content

Commit cdf1164

Browse files
committed
Upgrade dependencies
1 parent b5bf5e5 commit cdf1164

File tree

7 files changed

+136
-110
lines changed

7 files changed

+136
-110
lines changed

lib/descriptors/definitions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ module.exports = {
4747
},
4848
'overflowing': {
4949
type: 'discrete',
50-
value: 'top | right | bottom | left | block-start | inline-start | block-end | inline-end',
50+
value: 'none | top | right | bottom | left | block-start | inline-start | block-end | inline-end',
5151
},
5252
'snapped': {
5353
type: 'discrete',
54-
value: 'x | y | block | inline',
54+
value: 'none | x | y | block | inline',
5555
},
5656
'stuck': {
5757
type: 'discrete',
58-
value: 'top | right | bottom | left | block-start | inline-start | block-end | inline-end',
58+
value: 'none | top | right | bottom | left | block-start | inline-start | block-end | inline-end',
5959
},
6060
'width': {
6161
type: 'range',

lib/properties/definitions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5168,7 +5168,7 @@ module.exports = {
51685168
},
51695169
serialized: 'auto',
51705170
},
5171-
value: 'auto | <anchor-element>',
5171+
value: 'auto | <anchor-name>',
51725172
},
51735173
'position-area': {
51745174
initial: {

lib/values/definitions.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ module.exports = {
88
'<age>': 'child | young | old',
99
'<alpha-value>': '<number> | <percentage>',
1010
'<an+b>': "odd | even | <integer> | <n-dimension> | '+'? n | -n | <ndashdigit-dimension> | '+'? <ndashdigit-ident> | <dashndashdigit-ident> | <n-dimension> <signed-integer> | '+'? n <signed-integer> | -n <signed-integer> | <ndash-dimension> <signless-integer> | '+'? n- <signless-integer> | -n- <signless-integer> | <n-dimension> ['+' | '-'] <signless-integer> | '+'? n ['+' | '-'] <signless-integer> | -n ['+' | '-'] <signless-integer>",
11-
'<anchor()>': 'anchor(<anchor-element>? && <anchor-side> , <length-percentage>?)',
12-
'<anchor-element>': '<dashed-ident>',
11+
'<anchor()>': 'anchor(<anchor-name>? && <anchor-side> , <length-percentage>?)',
12+
'<anchor-name>': '<dashed-ident>',
1313
'<anchor-side>': 'inside | outside | top | left | right | bottom | start | end | self-start | self-end | <percentage> | center',
14-
'<anchor-size()>': 'anchor-size([<anchor-element> || <anchor-size>]? , <length-percentage>?)',
14+
'<anchor-size()>': 'anchor-size([<anchor-name> || <anchor-size>]? , <length-percentage>?)',
1515
'<anchor-size>': 'width | height | block | inline | self-block | self-inline',
1616
'<angle-percentage>': '<angle> | <percentage>',
1717
'<angle>': '<dimension>',
@@ -80,7 +80,7 @@ module.exports = {
8080
'<color-stop-list>': '<linear-color-stop> , [<linear-color-hint>? , <linear-color-stop>]#?',
8181
'<color-stop>': '<color-stop-length> | <color-stop-angle>',
8282
'<color-stripe>': '<color> && [<length-percentage> | <flex>]?',
83-
'<color>': '<color-base> | currentColor | <system-color> | <device-cmyk()> | <light-dark()>',
83+
'<color>': '<color-base> | currentColor | <system-color> | <contrast-color()> | <device-cmyk()> | <light-dark()>',
8484
'<colorspace-params>': '<custom-params> | <predefined-rgb-params> | <xyz-params>',
8585
'<combinator>': "'>' | '+' | '~' | '|' '|'",
8686
'<common-lig-values>': 'common-ligatures | no-common-ligatures',

lib/values/pseudos.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,13 +200,15 @@ const viewTransitions = {
200200
}
201201

202202
/**
203+
* @see {@link https://drafts.csswg.org/css-scoping-1/#selectordef-has-slotted}
203204
* @see {@link https://drafts.csswg.org/css-scoping-1/#selectordef-host}
204205
* @see {@link https://drafts.csswg.org/css-scoping-1/#selectordef-host-context}
205206
* @see {@link https://drafts.csswg.org/css-scoping-1/#selectordef-host-function}
206207
* @see {@link https://drafts.csswg.org/selectors-4/#compat}
207208
* @see {@link https://drafts.csswg.org/selectors-4/#defined-pseudo}
208209
* @see {@link https://drafts.csswg.org/selectors-5/#selectordef-state}
209210
* @see {@link https://html.spec.whatwg.org/#selector-popover-open}
211+
* @see {@link https://immersive-web.github.io/dom-overlays/#selectordef-xr-overlay}
210212
*/
211213
const classes = {
212214
aliases: new Map([
@@ -233,8 +235,10 @@ const classes = {
233235
...userActions,
234236
...viewTransitions.classes.identifiers,
235237
'defined',
238+
'has-slotted',
236239
'host',
237240
'popover-open',
241+
'xr-overlay',
238242
],
239243
}
240244

0 commit comments

Comments
 (0)