This commit is contained in:
Nicolas Gallagher
2020-12-04 11:47:36 -08:00
parent 624b9ddec0
commit c4e0fd7ab5
7 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"private": true, "private": true,
"version": "0.14.8", "version": "0.14.9",
"name": "monorepo", "name": "monorepo",
"scripts": { "scripts": {
"clean": "del-cli ./packages/*/dist", "clean": "del-cli ./packages/*/dist",
@@ -3,7 +3,7 @@
"registry": "https://registry.npmjs.org/" "registry": "https://registry.npmjs.org/"
}, },
"name": "babel-plugin-react-native-web", "name": "babel-plugin-react-native-web",
"version": "0.14.8", "version": "0.14.9",
"description": "Babel plugin for React Native for Web", "description": "Babel plugin for React Native for Web",
"main": "index.js", "main": "index.js",
"devDependencies": { "devDependencies": {
+3 -3
View File
@@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "benchmarks", "name": "benchmarks",
"version": "0.14.8", "version": "0.14.9",
"scripts": { "scripts": {
"build": "mkdir -p dist && cp -f index.html dist/index.html && ./node_modules/.bin/webpack-cli --config ./webpack.config.js", "build": "mkdir -p dist && cp -f index.html dist/index.html && ./node_modules/.bin/webpack-cli --config ./webpack.config.js",
"release": "NODE_ENV=production yarn build && git checkout gh-pages && rm -rf ../../benchmarks && mv dist ../../benchmarks && git add -A && git commit -m \"Benchmarks deploy\" && git push origin gh-pages && git checkout -" "release": "NODE_ENV=production yarn build && git checkout gh-pages && rm -rf ../../benchmarks && mv dist ../../benchmarks && git add -A && git commit -m \"Benchmarks deploy\" && git push origin gh-pages && git checkout -"
@@ -14,7 +14,7 @@
"fela": "^11.0.2", "fela": "^11.0.2",
"react-fela": "^11.0.2", "react-fela": "^11.0.2",
"react-jss": "^10.0.4", "react-jss": "^10.0.4",
"react-native-web": "0.14.8", "react-native-web": "0.14.9",
"reactxp": "^2.0.0", "reactxp": "^2.0.0",
"styled-components": "^5.0.0", "styled-components": "^5.0.0",
"styled-jsx": "^3.2.4", "styled-jsx": "^3.2.4",
@@ -22,7 +22,7 @@
"styletron-react": "^5.2.6" "styletron-react": "^5.2.6"
}, },
"devDependencies": { "devDependencies": {
"babel-plugin-react-native-web": "0.14.8", "babel-plugin-react-native-web": "0.14.9",
"css-loader": "^3.4.2", "css-loader": "^3.4.2",
"style-loader": "^1.1.3", "style-loader": "^1.1.3",
"url-loader": "^3.0.0", "url-loader": "^3.0.0",
+3 -3
View File
@@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "docs", "name": "docs",
"version": "0.14.8", "version": "0.14.9",
"scripts": { "scripts": {
"build": "build-storybook --docs -o ./dist -c ./.storybook", "build": "build-storybook --docs -o ./dist -c ./.storybook",
"start": "start-storybook --docs -p 9001 -c ./.storybook", "start": "start-storybook --docs -p 9001 -c ./.storybook",
@@ -13,10 +13,10 @@
"@storybook/cli": "^5.3.9", "@storybook/cli": "^5.3.9",
"@storybook/react": "^5.3.9", "@storybook/react": "^5.3.9",
"@storybook/theming": "^5.3.9", "@storybook/theming": "^5.3.9",
"react-native-web": "0.14.8" "react-native-web": "0.14.9"
}, },
"devDependencies": { "devDependencies": {
"babel-plugin-react-native-web": "0.14.8", "babel-plugin-react-native-web": "0.14.9",
"url-loader": "^3.0.0", "url-loader": "^3.0.0",
"webpack": "^4.41.5" "webpack": "^4.41.5"
} }
@@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "dom-event-testing-library", "name": "dom-event-testing-library",
"version": "0.14.8", "version": "0.14.9",
"main": "index.js", "main": "index.js",
"description": "Browser event sequences for unit tests", "description": "Browser event sequences for unit tests",
"author": "Nicolas Gallagher", "author": "Nicolas Gallagher",
+1 -1
View File
@@ -3,7 +3,7 @@
"registry": "https://registry.npmjs.org/" "registry": "https://registry.npmjs.org/"
}, },
"name": "react-native-web", "name": "react-native-web",
"version": "0.14.8", "version": "0.14.9",
"description": "React Native for Web", "description": "React Native for Web",
"module": "dist/index.js", "module": "dist/index.js",
"main": "dist/cjs/index.js", "main": "dist/cjs/index.js",
+1 -1
View File
@@ -56,7 +56,6 @@ function getFlatStyle(style, blurRadius, filterId) {
if (filter) { if (filter) {
filters.push(filter); filters.push(filter);
} }
//
if (blurRadius) { if (blurRadius) {
filters.push(`blur(${blurRadius}px)`); filters.push(`blur(${blurRadius}px)`);
} }
@@ -76,6 +75,7 @@ function getFlatStyle(style, blurRadius, filterId) {
// These styles are converted to CSS filters applied to the // These styles are converted to CSS filters applied to the
// element displaying the background image. // element displaying the background image.
delete flatStyle.blurRadius;
delete flatStyle.shadowColor; delete flatStyle.shadowColor;
delete flatStyle.shadowOpacity; delete flatStyle.shadowOpacity;
delete flatStyle.shadowOffset; delete flatStyle.shadowOffset;