UNPKG

1.38 kBJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6// Some features might affect others (eg: var() in a calc()
7// in order to prevent issue, the map contains a sort of dependencies list
8//
9// null == always enable (& no caniuse data)
10exports.default = {
11 customProperties: ["css-variables"],
12 // applyRule: [ null ],
13 // calc() transformation only make sense with transformed custom properties,
14 // don't you think ?
15 // calc: [ null ],
16 // nesting: [ null ],
17 // @todo open PR on caniuse repo https://github.com/Fyrd/caniuse
18 // customMedia: [ null ],
19 // mediaQueriesRange: [ null ],
20 // customSelectors: [ null ],
21 attributeCaseInsensitive: ["css-case-insensitive"],
22 // @todo wait https://github.com/Fyrd/caniuse/issues/1271
23 // colorRebeccapurple: [ null ],
24 // colorHsl: [ null ],
25 // colorHwb: [ null ],
26 // colorRgb: [ null ],
27 // colorGray: [ null ],
28 colorHexAlpha: ["css-rrggbbaa"],
29 // colorFunction:[ null],
30 // fontVariant: [ null ],
31 // @todo can be done using a callback, this is only used for Firefox < 35
32 filter: ["css-filters"],
33 initial: ["css-all", "css-initial-value"],
34 rem: ["rem"],
35 pseudoElements: ["css-gencontent"],
36 pseudoClassMatches: ["css-matches-pseudo"],
37 pseudoClassNot: ["css-not-sel-list"],
38 // pseudoClassAnyLink: [ null ],
39 colorRgba: ["css3-colors"],
40 overflowWrap: ["wordwrap"]
41};
\No newline at end of file