@cryptic-css/core
Advanced tools
Comparing version 5.1.0 to 5.2.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [5.2.0](https://github.com/wintercounter/ccss/compare/v5.1.0...v5.2.0) (2021-06-21) | ||
### Features | ||
* add support for `overflow-wrap` ([f33fab8](https://github.com/wintercounter/ccss/commit/f33fab86ea2966b3164e8c80e767a2f77b97b2ec)) | ||
# [5.1.0](https://github.com/wintercounter/ccss/compare/v5.0.3...v5.1.0) (2021-06-18) | ||
@@ -8,0 +19,0 @@ |
@@ -228,3 +228,7 @@ "use strict"; | ||
a: 'auto' | ||
}), toCSSRuleHandler], [['fl', 'float'], _objectSpread(_objectSpread({}, getFalseNone()), {}, { | ||
}), toCSSRuleHandler], [['ow', 'overflow-wrap'], { | ||
n: 'normal', | ||
bw: 'break-word', | ||
a: 'anywhere' | ||
}, toCSSRuleHandler], [['fl', 'float'], _objectSpread(_objectSpread({}, getFalseNone()), {}, { | ||
l: 'left', | ||
@@ -330,3 +334,3 @@ r: 'right' | ||
all: 'all' | ||
}, toCSSRuleHandler], [['cac', 'caret-color'], nil, toCSSRuleHandler], [['rs', 'resize'], nil, toCSSRuleHandler], [['raw'], nil, [i => i]], [['child'], nil, [_parsers.child]], [['ccss'], nil, [_parsers.self]], // Webkit | ||
}, toCSSRuleHandler], [['cac', 'caret-color'], nil, toCSSRuleHandler], [['rs', 'resize'], nil, toCSSRuleHandler], [['raw'], nil, [i => i]], [['child'], nil, [_parsers.child]], [['ccss', 'css'], nil, [_parsers.self]], // Webkit | ||
[['wtc', 'webkit-touch-callout', '-webkit-touch-callout'], { | ||
@@ -333,0 +337,0 @@ d: 'default', |
@@ -221,3 +221,7 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } | ||
a: 'auto' | ||
}), toCSSRuleHandler], [['fl', 'float'], _objectSpread(_objectSpread({}, getFalseNone()), {}, { | ||
}), toCSSRuleHandler], [['ow', 'overflow-wrap'], { | ||
n: 'normal', | ||
bw: 'break-word', | ||
a: 'anywhere' | ||
}, toCSSRuleHandler], [['fl', 'float'], _objectSpread(_objectSpread({}, getFalseNone()), {}, { | ||
l: 'left', | ||
@@ -323,3 +327,3 @@ r: 'right' | ||
all: 'all' | ||
}, toCSSRuleHandler], [['cac', 'caret-color'], nil, toCSSRuleHandler], [['rs', 'resize'], nil, toCSSRuleHandler], [['raw'], nil, [i => i]], [['child'], nil, [child]], [['ccss'], nil, [self]], // Webkit | ||
}, toCSSRuleHandler], [['cac', 'caret-color'], nil, toCSSRuleHandler], [['rs', 'resize'], nil, toCSSRuleHandler], [['raw'], nil, [i => i]], [['child'], nil, [child]], [['ccss', 'css'], nil, [self]], // Webkit | ||
[['wtc', 'webkit-touch-callout', '-webkit-touch-callout'], { | ||
@@ -326,0 +330,0 @@ d: 'default', |
{ | ||
"name": "@cryptic-css/core", | ||
"version": "5.1.0", | ||
"version": "5.2.0", | ||
"description": "> TODO: description", | ||
@@ -5,0 +5,0 @@ "author": "Viktor Vincze <viktor.vincze@doclerholding.com>", |
@@ -536,2 +536,11 @@ import { Props } from 'transformed' | ||
[ | ||
['ow', 'overflow-wrap'], | ||
{ | ||
n: 'normal', | ||
bw: 'break-word', | ||
a: 'anywhere' | ||
}, | ||
toCSSRuleHandler | ||
], | ||
[ | ||
['fl', 'float'], | ||
@@ -734,3 +743,3 @@ { | ||
[['child'], nil, [child]], | ||
[['ccss'], nil, [self]], | ||
[['ccss', 'css'], nil, [self]], | ||
@@ -737,0 +746,0 @@ // Webkit |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1058366
8619