mdn-data 2.0.22 → 2.0.26
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/CHANGELOG.md +36 -0
- package/css/at-rules.json +25 -1
- package/css/definitions.json +2 -1
- package/css/properties.json +47 -16
- package/css/properties.schema.json +2 -0
- package/css/syntaxes.json +16 -4
- package/css/units.json +14 -0
- package/l10n/css.json +7 -4
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
### [2.0.26](https://www.github.com/mdn/data/compare/v2.0.25...v2.0.26) (2022-01-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* release 2.0.26 ([8b1045d](https://www.github.com/mdn/data/commit/8b1045dc488c7b278c933143efd1bdba75b6832f))
|
|
9
|
+
|
|
10
|
+
### [2.0.25](https://www.github.com/mdn/data/compare/v2.0.24...v2.0.25) (2021-12-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* change branch reference to main ([a473261](https://www.github.com/mdn/data/commit/a473261308cf82ee387cec886c70ef3d570fc957))
|
|
16
|
+
* remove old clashing workflow ([af9a18c](https://www.github.com/mdn/data/commit/af9a18ce3af2cbca83582debf3c3d3fc0ace7402))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Miscellaneous Chores
|
|
20
|
+
|
|
21
|
+
* release 2.0.25 ([db5a54b](https://www.github.com/mdn/data/commit/db5a54ba4f3c28b52d0801e115fd5ff0a0052743))
|
|
22
|
+
* release 2.0.25 ([0f453ee](https://www.github.com/mdn/data/commit/0f453eedadbd9065d552203260210bdfafa9d7ff))
|
|
23
|
+
|
|
24
|
+
### [2.0.24](https://www.github.com/mdn/data/compare/v2.0.24...v2.0.24) (2021-12-17)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
* release 2.0.24 ([4d00c38](https://www.github.com/mdn/data/commit/4d00c386efe1cfbf536bb3bc80fed6d687f9ad04))
|
|
30
|
+
|
|
31
|
+
### [2.0.24](https://www.github.com/mdn/data/compare/v2.0.23...v2.0.24) (2021-12-15)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Miscellaneous Chores
|
|
35
|
+
|
|
36
|
+
* release 2.0.24 ([abff6ff](https://www.github.com/mdn/data/commit/abff6ff0fb88e834c65a2cc05f346b105a9b2e99))
|
package/css/at-rules.json
CHANGED
|
@@ -273,8 +273,9 @@
|
|
|
273
273
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@font-feature-values"
|
|
274
274
|
},
|
|
275
275
|
"@import": {
|
|
276
|
-
"syntax": "@import [ <string> | <url> ] [ <media-query-list
|
|
276
|
+
"syntax": "@import [ <string> | <url> ]\n [ layer | layer(<layer-name>) ]?\n [ supports( [ <supports-condition> | <declaration> ] ) ]?\n <media-query-list>? ;",
|
|
277
277
|
"groups": [
|
|
278
|
+
"CSS Conditional Rules",
|
|
278
279
|
"Media Queries"
|
|
279
280
|
],
|
|
280
281
|
"status": "standard",
|
|
@@ -292,6 +293,18 @@
|
|
|
292
293
|
"status": "standard",
|
|
293
294
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@keyframes"
|
|
294
295
|
},
|
|
296
|
+
"@layer": {
|
|
297
|
+
"syntax": "@layer [ <layer-name># | <layer-name>? {\n <stylesheet>\n} ]",
|
|
298
|
+
"interfaces": [
|
|
299
|
+
"CSSLayerBlockRule",
|
|
300
|
+
"CSSLayerStatementRule"
|
|
301
|
+
],
|
|
302
|
+
"groups": [
|
|
303
|
+
"CSS Cascading and Inheritance"
|
|
304
|
+
],
|
|
305
|
+
"status": "standard",
|
|
306
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@layer"
|
|
307
|
+
},
|
|
295
308
|
"@media": {
|
|
296
309
|
"syntax": "@media <media-query-list> {\n <group-rule-body>\n}",
|
|
297
310
|
"interfaces": [
|
|
@@ -405,6 +418,17 @@
|
|
|
405
418
|
"status": "experimental",
|
|
406
419
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@property"
|
|
407
420
|
},
|
|
421
|
+
"@scroll-timeline": {
|
|
422
|
+
"syntax": "@scroll-timeline <timeline-name> { <declaration-list> }",
|
|
423
|
+
"interfaces": [
|
|
424
|
+
"ScrollTimeline"
|
|
425
|
+
],
|
|
426
|
+
"groups": [
|
|
427
|
+
"CSS Animations"
|
|
428
|
+
],
|
|
429
|
+
"status": "standard",
|
|
430
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@scroll-timeline"
|
|
431
|
+
},
|
|
408
432
|
"@supports": {
|
|
409
433
|
"syntax": "@supports <supports-condition> {\n <group-rule-body>\n}",
|
|
410
434
|
"interfaces": [
|
package/css/definitions.json
CHANGED
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
"CSS Angles",
|
|
8
8
|
"CSS Animations",
|
|
9
9
|
"CSS Backgrounds and Borders",
|
|
10
|
+
"CSS Basic User Interface",
|
|
10
11
|
"CSS Box Model",
|
|
11
12
|
"CSS Box Alignment",
|
|
12
13
|
"CSS Break",
|
|
14
|
+
"CSS Cascading and Inheritance",
|
|
13
15
|
"CSS Charsets",
|
|
14
16
|
"CSS Color",
|
|
15
17
|
"CSS Columns",
|
|
@@ -55,7 +57,6 @@
|
|
|
55
57
|
"CSS Transitions",
|
|
56
58
|
"CSS Types",
|
|
57
59
|
"CSS Units",
|
|
58
|
-
"CSS Basic User Interface",
|
|
59
60
|
"CSS Variables",
|
|
60
61
|
"CSS Will Change",
|
|
61
62
|
"CSS Writing Modes",
|
package/css/properties.json
CHANGED
|
@@ -1570,7 +1570,7 @@
|
|
|
1570
1570
|
"-webkit-tap-highlight-color": {
|
|
1571
1571
|
"syntax": "<color>",
|
|
1572
1572
|
"media": "visual",
|
|
1573
|
-
"inherited":
|
|
1573
|
+
"inherited": true,
|
|
1574
1574
|
"animationType": "discrete",
|
|
1575
1575
|
"percentages": "no",
|
|
1576
1576
|
"groups": [
|
|
@@ -3940,15 +3940,15 @@
|
|
|
3940
3940
|
"syntax": "<color>",
|
|
3941
3941
|
"media": "visual",
|
|
3942
3942
|
"inherited": true,
|
|
3943
|
-
"animationType": "
|
|
3943
|
+
"animationType": "byComputedValueType",
|
|
3944
3944
|
"percentages": "no",
|
|
3945
3945
|
"groups": [
|
|
3946
3946
|
"CSS Color"
|
|
3947
3947
|
],
|
|
3948
|
-
"initial": "
|
|
3949
|
-
"appliesto": "
|
|
3950
|
-
"computed": "
|
|
3951
|
-
"order": "
|
|
3948
|
+
"initial": "canvastext",
|
|
3949
|
+
"appliesto": "allElementsAndText",
|
|
3950
|
+
"computed": "computedColor",
|
|
3951
|
+
"order": "perGrammar",
|
|
3952
3952
|
"alsoAppliesTo": [
|
|
3953
3953
|
"::first-letter",
|
|
3954
3954
|
"::first-line",
|
|
@@ -3974,7 +3974,7 @@
|
|
|
3974
3974
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color-adjust"
|
|
3975
3975
|
},
|
|
3976
3976
|
"color-scheme": {
|
|
3977
|
-
"syntax": "normal | [ light | dark | <custom-ident> ]+",
|
|
3977
|
+
"syntax": "normal | [ light | dark | <custom-ident> ]+ && only?",
|
|
3978
3978
|
"media": "visual",
|
|
3979
3979
|
"inherited": true,
|
|
3980
3980
|
"animationType": "discrete",
|
|
@@ -4187,7 +4187,7 @@
|
|
|
4187
4187
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain"
|
|
4188
4188
|
},
|
|
4189
4189
|
"content": {
|
|
4190
|
-
"syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?",
|
|
4190
|
+
"syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ [ <string> | <counter> ]+ ]?",
|
|
4191
4191
|
"media": "all",
|
|
4192
4192
|
"inherited": false,
|
|
4193
4193
|
"animationType": "discrete",
|
|
@@ -4219,7 +4219,7 @@
|
|
|
4219
4219
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/content-visibility"
|
|
4220
4220
|
},
|
|
4221
4221
|
"counter-increment": {
|
|
4222
|
-
"syntax": "[ <
|
|
4222
|
+
"syntax": "[ <counter-name> <integer>? ]+ | none",
|
|
4223
4223
|
"media": "all",
|
|
4224
4224
|
"inherited": false,
|
|
4225
4225
|
"animationType": "discrete",
|
|
@@ -4235,7 +4235,7 @@
|
|
|
4235
4235
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-increment"
|
|
4236
4236
|
},
|
|
4237
4237
|
"counter-reset": {
|
|
4238
|
-
"syntax": "[ <
|
|
4238
|
+
"syntax": "[ <counter-name> <integer>? | <reversed-counter-name> <integer>? ]+ | none",
|
|
4239
4239
|
"media": "all",
|
|
4240
4240
|
"inherited": false,
|
|
4241
4241
|
"animationType": "discrete",
|
|
@@ -4251,7 +4251,7 @@
|
|
|
4251
4251
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-reset"
|
|
4252
4252
|
},
|
|
4253
4253
|
"counter-set": {
|
|
4254
|
-
"syntax": "[ <
|
|
4254
|
+
"syntax": "[ <counter-name> <integer>? ]+ | none",
|
|
4255
4255
|
"media": "all",
|
|
4256
4256
|
"inherited": false,
|
|
4257
4257
|
"animationType": "discrete",
|
|
@@ -5388,6 +5388,22 @@
|
|
|
5388
5388
|
"status": "standard",
|
|
5389
5389
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/height"
|
|
5390
5390
|
},
|
|
5391
|
+
"hyphenate-character": {
|
|
5392
|
+
"syntax": "auto | <string>",
|
|
5393
|
+
"media": "visual",
|
|
5394
|
+
"inherited": true,
|
|
5395
|
+
"animationType": "discrete",
|
|
5396
|
+
"percentages": "no",
|
|
5397
|
+
"groups": [
|
|
5398
|
+
"CSS Text"
|
|
5399
|
+
],
|
|
5400
|
+
"initial": "auto",
|
|
5401
|
+
"appliesto": "allElements",
|
|
5402
|
+
"computed": "asSpecified",
|
|
5403
|
+
"order": "perGrammar",
|
|
5404
|
+
"status": "standard",
|
|
5405
|
+
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hyphenate-character"
|
|
5406
|
+
},
|
|
5391
5407
|
"hyphens": {
|
|
5392
5408
|
"syntax": "none | manual | auto",
|
|
5393
5409
|
"media": "visual",
|
|
@@ -5515,6 +5531,21 @@
|
|
|
5515
5531
|
"status": "standard",
|
|
5516
5532
|
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inline-size"
|
|
5517
5533
|
},
|
|
5534
|
+
"input-security": {
|
|
5535
|
+
"syntax": "auto | none",
|
|
5536
|
+
"media": "interactive",
|
|
5537
|
+
"inherited": false,
|
|
5538
|
+
"animationType": "byComputedValueType",
|
|
5539
|
+
"percentages": "no",
|
|
5540
|
+
"groups": [
|
|
5541
|
+
"CSS Basic User Interface"
|
|
5542
|
+
],
|
|
5543
|
+
"initial": "auto",
|
|
5544
|
+
"appliesto": "sensitiveTextInputs",
|
|
5545
|
+
"computed": "asSpecified",
|
|
5546
|
+
"order": "perGrammar",
|
|
5547
|
+
"status": "standard"
|
|
5548
|
+
},
|
|
5518
5549
|
"inset": {
|
|
5519
5550
|
"syntax": "<'top'>{1,4}",
|
|
5520
5551
|
"media": "visual",
|
|
@@ -6782,15 +6813,15 @@
|
|
|
6782
6813
|
"syntax": "<alpha-value>",
|
|
6783
6814
|
"media": "visual",
|
|
6784
6815
|
"inherited": false,
|
|
6785
|
-
"animationType": "
|
|
6786
|
-
"percentages": "
|
|
6816
|
+
"animationType": "byComputedValueType",
|
|
6817
|
+
"percentages": "mapToRange0To1",
|
|
6787
6818
|
"groups": [
|
|
6788
6819
|
"CSS Color"
|
|
6789
6820
|
],
|
|
6790
|
-
"initial": "1
|
|
6821
|
+
"initial": "1",
|
|
6791
6822
|
"appliesto": "allElements",
|
|
6792
|
-
"computed": "
|
|
6793
|
-
"order": "
|
|
6823
|
+
"computed": "specifiedValueNumberClipped0To1",
|
|
6824
|
+
"order": "perGrammar",
|
|
6794
6825
|
"alsoAppliesTo": [
|
|
6795
6826
|
"::placeholder"
|
|
6796
6827
|
],
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"logicalHeightOfContainingBlock",
|
|
50
50
|
"logicalWidthOfContainingBlock",
|
|
51
51
|
"logicalHeightOrWidthOfContainingBlock",
|
|
52
|
+
"mapToRange0To1",
|
|
52
53
|
"maxZoomFactor",
|
|
53
54
|
"minZoomFactor",
|
|
54
55
|
"no",
|
|
@@ -236,6 +237,7 @@
|
|
|
236
237
|
"sameAsWidthAndHeight",
|
|
237
238
|
"scrollContainers",
|
|
238
239
|
"scrollingBoxes",
|
|
240
|
+
"sensitiveTextInputs",
|
|
239
241
|
"tableCaptionElements",
|
|
240
242
|
"tableCellElements",
|
|
241
243
|
"tableElements",
|
package/css/syntaxes.json
CHANGED
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"syntax": "<url>"
|
|
103
103
|
},
|
|
104
104
|
"color": {
|
|
105
|
-
"syntax": "<rgb()> | <rgba()> | <hsl()> | <hsla()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>"
|
|
105
|
+
"syntax": "<rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>"
|
|
106
106
|
},
|
|
107
107
|
"color-stop": {
|
|
108
108
|
"syntax": "<color-stop-length> | <color-stop-angle>"
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"syntax": "space-between | space-around | space-evenly | stretch"
|
|
154
154
|
},
|
|
155
155
|
"content-list": {
|
|
156
|
-
"syntax": "[ <string> | contents | <image> | <quote> | <target> | <leader()> ]+"
|
|
156
|
+
"syntax": "[ <string> | contents | <image> | <counter> | <quote> | <target> | <leader()> ]+"
|
|
157
157
|
},
|
|
158
158
|
"content-position": {
|
|
159
159
|
"syntax": "center | start | end | flex-start | flex-end"
|
|
@@ -164,8 +164,14 @@
|
|
|
164
164
|
"contrast()": {
|
|
165
165
|
"syntax": "contrast( [ <number-percentage> ] )"
|
|
166
166
|
},
|
|
167
|
+
"counter": {
|
|
168
|
+
"syntax": "<counter()> | <counters()>"
|
|
169
|
+
},
|
|
167
170
|
"counter()": {
|
|
168
|
-
"syntax": "counter( <
|
|
171
|
+
"syntax": "counter( <counter-name>, <counter-style>? )"
|
|
172
|
+
},
|
|
173
|
+
"counter-name": {
|
|
174
|
+
"syntax": "<custom-ident>"
|
|
169
175
|
},
|
|
170
176
|
"counter-style": {
|
|
171
177
|
"syntax": "<counter-style-name> | symbols()"
|
|
@@ -174,7 +180,7 @@
|
|
|
174
180
|
"syntax": "<custom-ident>"
|
|
175
181
|
},
|
|
176
182
|
"counters()": {
|
|
177
|
-
"syntax": "counters( <
|
|
183
|
+
"syntax": "counters( <counter-name>, <string>, <counter-style>? )"
|
|
178
184
|
},
|
|
179
185
|
"cross-fade()": {
|
|
180
186
|
"syntax": "cross-fade( <cf-mixing-image> , <cf-final-image>? )"
|
|
@@ -326,6 +332,9 @@
|
|
|
326
332
|
"hue-rotate()": {
|
|
327
333
|
"syntax": "hue-rotate( <angle> )"
|
|
328
334
|
},
|
|
335
|
+
"hwb()": {
|
|
336
|
+
"syntax": "hwb( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )"
|
|
337
|
+
},
|
|
329
338
|
"id-selector": {
|
|
330
339
|
"syntax": "<hash-token>"
|
|
331
340
|
},
|
|
@@ -368,6 +377,9 @@
|
|
|
368
377
|
"keyframe-selector": {
|
|
369
378
|
"syntax": "from | to | <percentage>"
|
|
370
379
|
},
|
|
380
|
+
"layer()": {
|
|
381
|
+
"syntax": "layer( <layer-name> )"
|
|
382
|
+
},
|
|
371
383
|
"leader()": {
|
|
372
384
|
"syntax": "leader( <leader-type> )"
|
|
373
385
|
},
|
package/css/units.json
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
+
"cap": {
|
|
3
|
+
"groups": [
|
|
4
|
+
"CSS Units",
|
|
5
|
+
"CSS Lengths"
|
|
6
|
+
],
|
|
7
|
+
"status": "standard"
|
|
8
|
+
},
|
|
2
9
|
"ch": {
|
|
3
10
|
"groups": [
|
|
4
11
|
"CSS Units",
|
|
@@ -77,6 +84,13 @@
|
|
|
77
84
|
],
|
|
78
85
|
"status": "standard"
|
|
79
86
|
},
|
|
87
|
+
"ic": {
|
|
88
|
+
"groups": [
|
|
89
|
+
"CSS Units",
|
|
90
|
+
"CSS Lengths"
|
|
91
|
+
],
|
|
92
|
+
"status": "standard"
|
|
93
|
+
},
|
|
80
94
|
"in": {
|
|
81
95
|
"groups": [
|
|
82
96
|
"CSS Units",
|
package/l10n/css.json
CHANGED
|
@@ -906,7 +906,7 @@
|
|
|
906
906
|
"listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin": {
|
|
907
907
|
"de": "Eine Liste, bei der jeder Eintrag aus einem Versatz besteht, der durch eine Kombination aus absoluter Länge und einem Prozentsatz plus einem Ursprungsschlüsselwort definiert wird",
|
|
908
908
|
"en-US": "A list, each item consisting of: an offset given as a combination of an absolute length and a percentage, plus an origin keyword",
|
|
909
|
-
"fr": "Une liste dont chaque élément se
|
|
909
|
+
"fr": "Une liste dont chaque élément se compose d'un décalage (exprimé comme la combinaison d'une longueur absolue et d'un pourcentage) et d'un mot-clé pour l'origine",
|
|
910
910
|
"ja": "絶対長とパーセント値の組み合わせで与えられるオフセットと原点のキーワードを、各項目として構成されるリスト。",
|
|
911
911
|
"ru": "Список, каждый элемент которого состоит из: смещения, данного комбинацией абсолютной длины и процентов плюс ключевое слово"
|
|
912
912
|
},
|
|
@@ -970,6 +970,9 @@
|
|
|
970
970
|
"ja": "両方の値が length の場合は、length 値として補完されます。両方の値がパーセント値の場合は、パーセント値として補完されます。それ以外の場合は、両方の値が calc() 関数にコンバートされ、length とパーセント値の合計になります (または各値が 0)。そして、これらの <code>calc()</code> 関数は、それぞれ半分ずつ補完された実数を持ちます",
|
|
971
971
|
"ru": " когда оба значения являются длинами, они интерполируются как длины; когда оба значения являются процентами, они интерполируются как проценты; в остальных случаях, оба значения преобразуются функцией <code>calc()</code> в сумму длины и процента (каждый из них может быть равен нулю), а затем эта функция интерполирует каждую половину как вещественные числа."
|
|
972
972
|
},
|
|
973
|
+
"mapToRange0To1": {
|
|
974
|
+
"en-US": "map to the range <code>[0,1]</code>"
|
|
975
|
+
},
|
|
973
976
|
"maskElements": {
|
|
974
977
|
"de": "{{SVGElement(\"mask\")}} Elemente",
|
|
975
978
|
"en-US": "{{SVGElement(\"mask\")}} elements",
|
|
@@ -1148,7 +1151,7 @@
|
|
|
1148
1151
|
"percentageAsSpecifiedOrAbsoluteLength": {
|
|
1149
1152
|
"de": "der Prozentwert wie angegeben oder die absolute Länge",
|
|
1150
1153
|
"en-US": "the percentage as specified or the absolute length",
|
|
1151
|
-
"fr": "le pourcentage tel que
|
|
1154
|
+
"fr": "le pourcentage tel que spécifié ou une longueur absolue",
|
|
1152
1155
|
"ja": "指定されたパーセント値または絶対的な長さ",
|
|
1153
1156
|
"ru": "процент, как указан, или аблосютная длина"
|
|
1154
1157
|
},
|
|
@@ -1384,7 +1387,7 @@
|
|
|
1384
1387
|
"de": "Der Prozentwert wird unter Berücksichtigung der Höhe des die generierte Box beinhaltenden Blocks berechnet. Falls die Höhe des beinhaltenden Blocks nicht explizit angegeben wurde (d. h. sie hängt von der Höhe des Inhalts ab) und dieses Element nicht absolut positioniert ist, wird der Prozentwert wie <code>0</code> behandelt.",
|
|
1385
1388
|
"en-US": "The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the percentage value is treated as <code>0</code>.",
|
|
1386
1389
|
"es": "Se refiere a la altura del bloque contenedor.",
|
|
1387
|
-
"fr": "Le
|
|
1390
|
+
"fr": "Le pourcentage est exprimé par rapport à la hauteur de la boîte générée par le bloc contenant. Si la hauteur du bloc contenant n'est pas explicitement spécifiée (c'est-à-dire qu'elle dépend de la hauteur du contenu), et si cet élément n'est pas absolument positionné , la valeur du pourcentage est traitée comme si elle valait <code>0</code>.",
|
|
1388
1391
|
"ja": "パーセント値は、生成ボックスの包含ブロックの高さを基準に計算されます。 包含ブロックの高さが明示的に定義されず (この場合コンテンツの高さに依存します) この要素が絶対位置指定されていない場合は、パーセント値は 0 として扱われます。",
|
|
1389
1392
|
"ru": "Процент для генерируемого блока рассчитывается по отношению к высоте содержащего блока. Если высота содержащего блока не задана явно (т.е. зависит от высоты содержимого), и этот этот элемент позиционирован не абсолютно, процентное значение интерпретируется как <code>0</code>."
|
|
1390
1393
|
},
|
|
@@ -1398,7 +1401,7 @@
|
|
|
1398
1401
|
"regardingHeightOfGeneratedBoxContainingBlockPercentagesRelativeToContainingBlock": {
|
|
1399
1402
|
"de": "Der Prozentwert wird unter Berücksichtigung der Höhe des die generierte Box beinhaltenden Blocks berechnet. Falls die Höhe des beinhaltenden Blocks nicht explizit angegeben wurde (d. h. sie hängt von der Höhe des Inhalts ab) und dieses Element nicht absolut positioniert ist, ist der berechnete Wert <code>auto</code>. Eine prozentuale Höhe beim Wurzelelement ist relativ zum ursprünglichen beinhaltenden Block.",
|
|
1400
1403
|
"en-US": "The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the value computes to <code>auto</code>. A percentage height on the root element is relative to the initial containing block.",
|
|
1401
|
-
"fr": "Le
|
|
1404
|
+
"fr": "Le pourcentage est exprimé par rapport à la hauteur de la boîte générée par le bloc contenant. Si la hauteur du bloc contenant n'est pas explicitement spécifiée (c'est-à-dire qu'elle dépend de la hauteur du contenu), et si cet élément n'est pas absolument positionné, la valeur du pourcentage est traitée comme <code>auto</code> et la hauteur du pourcentage sur l'élément racine est relative au bloc contenant initial.",
|
|
1402
1405
|
"ja": "パーセント値は、生成ボックスの包含ブロックの高さを基準に計算されます。 包含ブロックの高さが明示的に定義されず (すなわち、コンテンツの高さに依存します)、この要素が絶対位置指定されていない場合は、値は <code>auto</code> になります。ルート要素で高さをパーセント値で指定すると、初期包含ブロックに対する相対値になります。",
|
|
1403
1406
|
"ru": "Процент для генерируемого блока рассчитывается по отношению к высоте содержащего блока. Если высота содержащего блока не задана явно (т.е. зависит от высоты содержимого), и этот этот элемент позиционирован не абсолютно, значение будет <code>auto</code>. Процентная высота на корневом элементе относительна первоначальному блоку."
|
|
1404
1407
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mdn-data",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.26",
|
|
4
4
|
"description": "Open Web data by the Mozilla Developer Network",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://developer.mozilla.org",
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"ajv": "^
|
|
32
|
-
"better-ajv-errors": "^
|
|
31
|
+
"ajv": "^6.12.6",
|
|
32
|
+
"better-ajv-errors": "^1.1.2"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"lint": "node test/lint",
|