expo-blur 11.2.0 → 12.0.1
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 +10 -0
- package/ios/EXBlur/BlurView.swift +2 -2
- package/ios/EXBlur.podspec +1 -1
- package/package.json +7 -4
- package/yarn-error.log +0 -20691
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 12.0.1 — 2022-11-02
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 12.0.0 — 2022-10-25
|
|
18
|
+
|
|
19
|
+
### 🛠 Breaking changes
|
|
20
|
+
|
|
21
|
+
- Bumped iOS deployment target to 13.0 and deprecated support for iOS 12. ([#18873](https://github.com/expo/expo/pull/18873) by [@tsapeta](https://github.com/tsapeta))
|
|
22
|
+
|
|
13
23
|
## 11.2.0 — 2022-07-07
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
// Copyright 2015-present 650 Industries. All rights reserved.
|
|
2
2
|
|
|
3
3
|
import UIKit
|
|
4
|
-
import
|
|
4
|
+
import React
|
|
5
5
|
|
|
6
6
|
@objc(EXBlurView)
|
|
7
|
-
public class BlurView:
|
|
7
|
+
public class BlurView: RCTView {
|
|
8
8
|
private var blurEffectView: BlurEffectView
|
|
9
9
|
|
|
10
10
|
override init(frame: CGRect) {
|
package/ios/EXBlur.podspec
CHANGED
|
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.homepage = package['homepage']
|
|
13
|
-
s.platform = :ios, '
|
|
13
|
+
s.platform = :ios, '13.0'
|
|
14
14
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
15
15
|
s.static_framework = true
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-blur",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.1",
|
|
4
4
|
"description": "A component that renders a native blur view on iOS and falls back to a semi-transparent view on Android. A common usage of this is for navigation bars, tab bars, and modals.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"expo-module": "expo-module"
|
|
16
16
|
},
|
|
17
17
|
"jest": {
|
|
18
|
-
"preset": "expo-module-scripts
|
|
18
|
+
"preset": "expo-module-scripts"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"react-native",
|
|
@@ -35,10 +35,13 @@
|
|
|
35
35
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/blur-view/",
|
|
36
36
|
"dependencies": {},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"
|
|
38
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
39
|
+
"@testing-library/react": "^13.4.0",
|
|
40
|
+
"@testing-library/react-native": "^11.3.0",
|
|
41
|
+
"expo-module-scripts": "^3.0.0"
|
|
39
42
|
},
|
|
40
43
|
"peerDependencies": {
|
|
41
44
|
"expo": "*"
|
|
42
45
|
},
|
|
43
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "1a87dcc55895a9e16e3d4fd0fa78f2244c1d961f"
|
|
44
47
|
}
|