@convep_mobilogy/react-native-qms-plugin 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +9 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -58,13 +58,20 @@ import { QmsDashboardView } from '@convep_mobilogy/react-native-qms-plugin';
58
58
 
59
59
  export default function App() {
60
60
  const isDarkMode = useColorScheme() === 'dark';
61
-
61
+ const clientID= '<ClientID>';
62
+ const userToken = '<UserToken>';
63
+ const clientCode='<CompanyCode>';
62
64
  return (
63
65
  <SafeAreaView>
64
66
  <StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
65
67
 
66
68
  <View style={styles.container}>
67
- <QmsDashboardView style={styles.container} />
69
+ <QmsDashboardView
70
+ style={styles.container}
71
+ clientID= {clientID}
72
+ clientCode={clientCode}
73
+ userToken={userToken}
74
+ />
68
75
  </View>
69
76
  </SafeAreaView>
70
77
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@convep_mobilogy/react-native-qms-plugin",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "To handle defect managment",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",