@capgo/capacitor-navigation-bar 6.0.11 → 6.1.0
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/android/build.gradle +3 -3
- package/package.json +19 -22
package/android/build.gradle
CHANGED
|
@@ -11,7 +11,7 @@ buildscript {
|
|
|
11
11
|
mavenCentral()
|
|
12
12
|
}
|
|
13
13
|
dependencies {
|
|
14
|
-
classpath 'com.android.tools.build:gradle:8.1
|
|
14
|
+
classpath 'com.android.tools.build:gradle:8.2.1'
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -19,10 +19,10 @@ apply plugin: 'com.android.library'
|
|
|
19
19
|
|
|
20
20
|
android {
|
|
21
21
|
namespace "ee.forgr.capacitor_navigation_bar"
|
|
22
|
-
|
|
22
|
+
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
|
|
23
23
|
defaultConfig {
|
|
24
24
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
|
|
25
|
-
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion :
|
|
25
|
+
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
|
|
26
26
|
versionCode 1
|
|
27
27
|
versionName "1.0"
|
|
28
28
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/capacitor-navigation-bar",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"description": "Set navigation bar color for android lolipop and higher",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"verify:web": "npm run build",
|
|
37
37
|
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
|
|
38
38
|
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
|
|
39
|
-
"eslint": "eslint .
|
|
39
|
+
"eslint": "eslint .",
|
|
40
40
|
"prettier": "prettier --config .prettierrc.js \"**/*.{css,html,ts,js,java}\"",
|
|
41
41
|
"swiftlint": "node-swiftlint",
|
|
42
42
|
"docgen": "docgen --api NavigationBarPlugin --output-readme README.md --output-json dist/docs.json",
|
|
@@ -46,34 +46,31 @@
|
|
|
46
46
|
"prepublishOnly": "npm run build"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@capacitor/android": "^
|
|
50
|
-
"@capacitor/cli": "^
|
|
51
|
-
"@capacitor/core": "^
|
|
52
|
-
"@capacitor/docgen": "^0.2.
|
|
53
|
-
"@capacitor/ios": "^
|
|
49
|
+
"@capacitor/android": "^6.0.0",
|
|
50
|
+
"@capacitor/cli": "^6.0.0",
|
|
51
|
+
"@capacitor/core": "^6.0.0",
|
|
52
|
+
"@capacitor/docgen": "^0.2.2",
|
|
53
|
+
"@capacitor/ios": "^6.0.0",
|
|
54
54
|
"@ionic/eslint-config": "^0.3.0",
|
|
55
|
-
"@ionic/prettier-config": "^
|
|
55
|
+
"@ionic/prettier-config": "^4.0.0",
|
|
56
56
|
"@ionic/swiftlint-config": "^1.1.2",
|
|
57
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
58
|
-
"@typescript-eslint/parser": "^
|
|
59
|
-
"eslint": "^
|
|
60
|
-
"eslint-plugin-import": "^2.
|
|
61
|
-
"husky": "^
|
|
62
|
-
"prettier": "^2.
|
|
63
|
-
"prettier-plugin-java": "^2.
|
|
64
|
-
"rimraf": "^5.0.
|
|
65
|
-
"rollup": "^
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
58
|
+
"@typescript-eslint/parser": "^7.8.0",
|
|
59
|
+
"eslint": "^9.1.1",
|
|
60
|
+
"eslint-plugin-import": "^2.29.1",
|
|
61
|
+
"husky": "^9.0.11",
|
|
62
|
+
"prettier": "^3.2.5",
|
|
63
|
+
"prettier-plugin-java": "^2.6.0",
|
|
64
|
+
"rimraf": "^5.0.5",
|
|
65
|
+
"rollup": "^4.17.1",
|
|
66
66
|
"swiftlint": "^1.0.2",
|
|
67
|
-
"typescript": "^5.
|
|
67
|
+
"typescript": "^5.4.5"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"@capacitor/core": "^
|
|
70
|
+
"@capacitor/core": "^6.0.0"
|
|
71
71
|
},
|
|
72
72
|
"prettier": "@ionic/prettier-config",
|
|
73
73
|
"swiftlint": "@ionic/swiftlint-config",
|
|
74
|
-
"eslintConfig": {
|
|
75
|
-
"extends": "@ionic/eslint-config/recommended"
|
|
76
|
-
},
|
|
77
74
|
"capacitor": {
|
|
78
75
|
"ios": {
|
|
79
76
|
"src": "ios"
|