@brightlayer-ui/react-native-template-routing-typescript 3.0.0-alpha.1 → 3.0.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/CHANGELOG.md ADDED
@@ -0,0 +1,69 @@
1
+ # Changelog
2
+
3
+ ## v3.0.0 (June 5, 2024)
4
+
5
+ ### Changed
6
+
7
+ - Update to build with React Native 0.73.
8
+ - Updated the templates to use React Native CLI
9
+
10
+ ## v2.2.0 (December 6, 2023)
11
+
12
+ ### Changed
13
+
14
+ - Update dependency package list to support latest `@react-native-reanimated` package.
15
+
16
+ ## v2.1.0 (November 1, 2022)
17
+
18
+ ### Changed
19
+
20
+ - Update to build with React Native 0.70.
21
+
22
+ ## v2.0.0 (December 16, 2021)
23
+
24
+ ### Changed
25
+
26
+ - Changed package namespace from `@pxblue` to `@brightlayer-ui`.
27
+
28
+ ## Package Migration Notice
29
+
30
+ Previous versions listed after this indicator refer to our deprecated `@pxblue` packages.
31
+
32
+ ---
33
+
34
+ ## v2.0.0 (November 3, 2021)
35
+
36
+ ### Changed
37
+
38
+ - Updated to use latest APIs from `@pxblue/react-native-components`.
39
+
40
+ ## v1.3.1 (October 1, 2021)
41
+
42
+ ### Fixed
43
+
44
+ - Added dependency for `@pxblue/react-native-vector-icons`
45
+
46
+ ## v1.3.0 (September 30, 2021)
47
+
48
+ ### Changed
49
+ - Upgrade PX Blue packages
50
+ - Changed default drawer width to 300.
51
+
52
+ ## v1.2.0 (July 26, 2021)
53
+
54
+ ### Changed
55
+ - Updated version of react-native-modal dependency to 12.0.2
56
+
57
+ ## v1.1.0 (March 31, 2021)
58
+
59
+ ### Changed
60
+ - Updated dependencies to use latest packages.
61
+
62
+ ### Fixed
63
+ - Jest configuration allows default tests to pass.
64
+
65
+ ## v1.0.0 (March 1, 2021)
66
+
67
+ ### Added
68
+
69
+ - Initial routing template for TypeScript projects
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightlayer-ui/react-native-template-routing-typescript",
3
- "version": "3.0.0-alpha.1",
3
+ "version": "3.0.0",
4
4
  "author": "brightlayer-ui <brightlayer-ui@eaton.com>",
5
5
  "keywords": [
6
6
  "react native",
@@ -8,7 +8,7 @@
8
8
  "brightlayer-ui",
9
9
  "cli"
10
10
  ],
11
- "description": "A template with pre-configured routing for React Native projects created with the Brightlayer UI CLI.",
11
+ "description": "A template with pre-configured routing for React Native projects created with the React Native CLI.",
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "https://github.com/etn-ccis/blui-react-native-cli-templates.git"
@@ -76,8 +76,10 @@ GEM
76
76
  netrc (0.11.0)
77
77
  nkf (0.2.0)
78
78
  public_suffix (4.0.7)
79
- rexml (3.2.6)
79
+ rexml (3.2.8)
80
+ strscan (>= 3.0.9)
80
81
  ruby-macho (2.5.1)
82
+ strscan (3.1.0)
81
83
  typhoeus (1.4.1)
82
84
  ethon (>= 0.9.0)
83
85
  tzinfo (2.0.6)
@@ -41,7 +41,6 @@ export const NavigationDrawer: React.FC<NavDrawerProps> = ({ navigation }) => {
41
41
  <DrawerHeader
42
42
  title={'Brightlayer UI'}
43
43
  subtitle={'React Native Project'}
44
- // fontColor={}
45
44
  icon={{ name: 'menu' }}
46
45
  onIconPress={(): void => {
47
46
  navigation.dispatch(DrawerActions.closeDrawer());