1 | export default {
|
---|
2 | 'border-radius': 'borderRadius',
|
---|
3 | 'border-image': ['borderImage', 'borderImageOutset', 'borderImageRepeat', 'borderImageSlice', 'borderImageSource', 'borderImageWidth'],
|
---|
4 | flexbox: ['flex', 'flexBasis', 'flexDirection', 'flexGrow', 'flexFlow', 'flexShrink', 'flexWrap', 'alignContent', 'alignItems', 'alignSelf', 'justifyContent', 'order'],
|
---|
5 | 'css-transitions': ['transition', 'transitionDelay', 'transitionDuration', 'transitionProperty', 'transitionTimingFunction'],
|
---|
6 | transforms2d: ['transform', 'transformOrigin', 'transformOriginX', 'transformOriginY'],
|
---|
7 | transforms3d: ['backfaceVisibility', 'perspective', 'perspectiveOrigin', 'transform', 'transformOrigin', 'transformStyle', 'transformOriginX', 'transformOriginY', 'transformOriginZ'],
|
---|
8 | 'css-animation': ['animation', 'animationDelay', 'animationDirection', 'animationFillMode', 'animationDuration', 'animationIterationCount', 'animationName', 'animationPlayState', 'animationTimingFunction'],
|
---|
9 | 'css-appearance': 'appearance',
|
---|
10 | 'user-select-none': 'userSelect',
|
---|
11 | 'css-backdrop-filter': 'backdropFilter',
|
---|
12 | 'css3-boxsizing': 'boxSizing',
|
---|
13 | 'font-kerning': 'fontKerning',
|
---|
14 | 'css-exclusions': ['wrapFlow', 'wrapThrough', 'wrapMargin'],
|
---|
15 | 'css-snappoints': ['scrollSnapType', 'scrollSnapPointsX', 'scrollSnapPointsY', 'scrollSnapDestination', 'scrollSnapCoordinate'],
|
---|
16 | 'text-emphasis': ['textEmphasisPosition', 'textEmphasis', 'textEmphasisStyle', 'textEmphasisColor'],
|
---|
17 | 'css-text-align-last': 'textAlignLast',
|
---|
18 | 'css-boxdecorationbreak': 'boxDecorationBreak',
|
---|
19 | 'css-clip-path': 'clipPath',
|
---|
20 | 'css-masks': ['maskImage', 'maskMode', 'maskRepeat', 'maskPosition', 'maskClip', 'maskOrigin', 'maskSize', 'maskComposite', 'mask', 'maskBorderSource', 'maskBorderMode', 'maskBorderSlice', 'maskBorderWidth', 'maskBorderOutset', 'maskBorderRepeat', 'maskBorder', 'maskType'],
|
---|
21 | 'css-touch-action': 'touchAction',
|
---|
22 | 'text-size-adjust': 'textSizeAdjust',
|
---|
23 | 'text-decoration': ['textDecorationStyle', 'textDecorationSkip', 'textDecorationLine', 'textDecorationColor'],
|
---|
24 | 'css-shapes': ['shapeImageThreshold', 'shapeImageMargin', 'shapeImageOutside'],
|
---|
25 | 'css3-tabsize': 'tabSize',
|
---|
26 | 'css-filters': 'filter',
|
---|
27 | 'css-resize': 'resize',
|
---|
28 | 'css-hyphens': 'hyphens',
|
---|
29 | 'css-regions': ['flowInto', 'flowFrom', 'breakBefore', 'breakAfter', 'breakInside', 'regionFragment'],
|
---|
30 | 'object-fit': ['objectFit', 'objectPosition'],
|
---|
31 | 'text-overflow': 'textOverflow',
|
---|
32 | 'background-img-opts': ['backgroundClip', 'backgroundOrigin', 'backgroundSize'],
|
---|
33 | 'font-feature': 'fontFeatureSettings',
|
---|
34 | 'css-boxshadow': 'boxShadow',
|
---|
35 | multicolumn: ['breakAfter', 'breakBefore', 'breakInside', 'columnCount', 'columnFill', 'columnGap', 'columnRule', 'columnRuleColor', 'columnRuleStyle', 'columnRuleWidth', 'columns', 'columnSpan', 'columnWidth', 'columnGap'],
|
---|
36 | 'css-writing-mode': ['writingMode'],
|
---|
37 | 'css-text-orientation': ['textOrientation']
|
---|
38 | }; |
---|