@react-navigation/native 8.0.0-alpha.10 → 8.0.0-alpha.11
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/lib/module/theming/DarkTheme.js +4 -4
- package/lib/module/theming/LightTheme.js +3 -3
- package/lib/module/theming/LightTheme.js.map +1 -1
- package/lib/typescript/src/theming/DarkTheme.d.ts +4 -4
- package/lib/typescript/src/theming/LightTheme.d.ts +3 -3
- package/package.json +3 -3
- package/src/theming/DarkTheme.tsx +4 -4
- package/src/theming/LightTheme.tsx +3 -3
|
@@ -5,10 +5,10 @@ export const DarkTheme = {
|
|
|
5
5
|
dark: true,
|
|
6
6
|
colors: {
|
|
7
7
|
primary: 'rgb(10, 132, 255)',
|
|
8
|
-
background: 'rgb(
|
|
9
|
-
card: 'rgb(
|
|
10
|
-
text: 'rgb(
|
|
11
|
-
border: 'rgb(
|
|
8
|
+
background: 'rgb(0, 0, 0)',
|
|
9
|
+
card: 'rgb(28, 28, 30)',
|
|
10
|
+
text: 'rgb(255, 255, 255)',
|
|
11
|
+
border: 'rgb(56, 56, 58)',
|
|
12
12
|
notification: 'rgb(255, 69, 58)'
|
|
13
13
|
},
|
|
14
14
|
fonts
|
|
@@ -5,10 +5,10 @@ export const LightTheme = {
|
|
|
5
5
|
dark: false,
|
|
6
6
|
colors: {
|
|
7
7
|
primary: 'rgb(0, 122, 255)',
|
|
8
|
-
background: 'rgb(242, 242,
|
|
8
|
+
background: 'rgb(242, 242, 247)',
|
|
9
9
|
card: 'rgb(255, 255, 255)',
|
|
10
|
-
text: 'rgb(
|
|
11
|
-
border: 'rgb(
|
|
10
|
+
text: 'rgb(0, 0, 0)',
|
|
11
|
+
border: 'rgb(198, 198, 200)',
|
|
12
12
|
notification: 'rgb(255, 59, 48)'
|
|
13
13
|
},
|
|
14
14
|
fonts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["fonts","LightTheme","dark","colors","primary","background","card","text","border","notification"],"sourceRoot":"../../../src","sources":["theming/LightTheme.tsx"],"mappings":";;AAEA,SAASA,KAAK,QAAQ,YAAS;AAE/B,OAAO,MAAMC,UAAU,GAAG;EACxBC,IAAI,EAAE,KAAK;EACXC,MAAM,EAAE;IACNC,OAAO,EAAE,kBAAkB;IAC3BC,UAAU,EAAE,oBAAoB;IAChCC,IAAI,EAAE,oBAAoB;IAC1BC,IAAI,EAAE,
|
|
1
|
+
{"version":3,"names":["fonts","LightTheme","dark","colors","primary","background","card","text","border","notification"],"sourceRoot":"../../../src","sources":["theming/LightTheme.tsx"],"mappings":";;AAEA,SAASA,KAAK,QAAQ,YAAS;AAE/B,OAAO,MAAMC,UAAU,GAAG;EACxBC,IAAI,EAAE,KAAK;EACXC,MAAM,EAAE;IACNC,OAAO,EAAE,kBAAkB;IAC3BC,UAAU,EAAE,oBAAoB;IAChCC,IAAI,EAAE,oBAAoB;IAC1BC,IAAI,EAAE,cAAc;IACpBC,MAAM,EAAE,oBAAoB;IAC5BC,YAAY,EAAE;EAChB,CAAC;EACDT;AACF,CAA0B","ignoreList":[]}
|
|
@@ -2,10 +2,10 @@ export declare const DarkTheme: {
|
|
|
2
2
|
readonly dark: true;
|
|
3
3
|
readonly colors: {
|
|
4
4
|
readonly primary: "rgb(10, 132, 255)";
|
|
5
|
-
readonly background: "rgb(
|
|
6
|
-
readonly card: "rgb(
|
|
7
|
-
readonly text: "rgb(
|
|
8
|
-
readonly border: "rgb(
|
|
5
|
+
readonly background: "rgb(0, 0, 0)";
|
|
6
|
+
readonly card: "rgb(28, 28, 30)";
|
|
7
|
+
readonly text: "rgb(255, 255, 255)";
|
|
8
|
+
readonly border: "rgb(56, 56, 58)";
|
|
9
9
|
readonly notification: "rgb(255, 69, 58)";
|
|
10
10
|
};
|
|
11
11
|
readonly fonts: {
|
|
@@ -2,10 +2,10 @@ export declare const LightTheme: {
|
|
|
2
2
|
readonly dark: false;
|
|
3
3
|
readonly colors: {
|
|
4
4
|
readonly primary: "rgb(0, 122, 255)";
|
|
5
|
-
readonly background: "rgb(242, 242,
|
|
5
|
+
readonly background: "rgb(242, 242, 247)";
|
|
6
6
|
readonly card: "rgb(255, 255, 255)";
|
|
7
|
-
readonly text: "rgb(
|
|
8
|
-
readonly border: "rgb(
|
|
7
|
+
readonly text: "rgb(0, 0, 0)";
|
|
8
|
+
readonly border: "rgb(198, 198, 200)";
|
|
9
9
|
readonly notification: "rgb(255, 59, 48)";
|
|
10
10
|
};
|
|
11
11
|
readonly fonts: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-navigation/native",
|
|
3
3
|
"description": "React Native integration for React Navigation",
|
|
4
|
-
"version": "8.0.0-alpha.
|
|
4
|
+
"version": "8.0.0-alpha.11",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
|
7
7
|
"react-navigation",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"clean": "del lib"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@react-navigation/core": "^8.0.0-alpha.
|
|
60
|
+
"@react-navigation/core": "^8.0.0-alpha.4",
|
|
61
61
|
"escape-string-regexp": "^4.0.0",
|
|
62
62
|
"fast-deep-equal": "^3.1.3",
|
|
63
63
|
"nanoid": "^3.3.11",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "faad2ee23945a5a27090cfb837a35d1db25147ab"
|
|
122
122
|
}
|
|
@@ -6,10 +6,10 @@ export const DarkTheme = {
|
|
|
6
6
|
dark: true,
|
|
7
7
|
colors: {
|
|
8
8
|
primary: 'rgb(10, 132, 255)',
|
|
9
|
-
background: 'rgb(
|
|
10
|
-
card: 'rgb(
|
|
11
|
-
text: 'rgb(
|
|
12
|
-
border: 'rgb(
|
|
9
|
+
background: 'rgb(0, 0, 0)',
|
|
10
|
+
card: 'rgb(28, 28, 30)',
|
|
11
|
+
text: 'rgb(255, 255, 255)',
|
|
12
|
+
border: 'rgb(56, 56, 58)',
|
|
13
13
|
notification: 'rgb(255, 69, 58)',
|
|
14
14
|
},
|
|
15
15
|
fonts,
|
|
@@ -6,10 +6,10 @@ export const LightTheme = {
|
|
|
6
6
|
dark: false,
|
|
7
7
|
colors: {
|
|
8
8
|
primary: 'rgb(0, 122, 255)',
|
|
9
|
-
background: 'rgb(242, 242,
|
|
9
|
+
background: 'rgb(242, 242, 247)',
|
|
10
10
|
card: 'rgb(255, 255, 255)',
|
|
11
|
-
text: 'rgb(
|
|
12
|
-
border: 'rgb(
|
|
11
|
+
text: 'rgb(0, 0, 0)',
|
|
12
|
+
border: 'rgb(198, 198, 200)',
|
|
13
13
|
notification: 'rgb(255, 59, 48)',
|
|
14
14
|
},
|
|
15
15
|
fonts,
|