@norcy/react-native-toolkit 0.1.41 → 0.1.43
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/.DS_Store +0 -0
- package/.circleci/config.yml +98 -0
- package/.editorconfig +15 -0
- package/.gitattributes +3 -0
- package/.gitignore +60 -0
- package/.prettierrc +8 -0
- package/.vscode/settings.json +9 -0
- package/.watchmanconfig +6 -0
- package/README.md +63 -12
- package/babel.config.js +3 -0
- package/ios/.DS_Store +0 -0
- package/lib/commonjs/LoginManager.js +0 -1
- package/lib/commonjs/LoginManager.js.map +1 -1
- package/lib/commonjs/SentryManager.js +2 -1
- package/lib/commonjs/SentryManager.js.map +1 -1
- package/lib/commonjs/Tool.js.map +1 -1
- package/lib/commonjs/VipManager.js +0 -3
- package/lib/commonjs/VipManager.js.map +1 -1
- package/lib/module/LoginManager.js +0 -1
- package/lib/module/LoginManager.js.map +1 -1
- package/lib/module/SentryManager.js +2 -1
- package/lib/module/SentryManager.js.map +1 -1
- package/lib/module/Tool.js.map +1 -1
- package/lib/module/VipManager.js +0 -3
- package/lib/module/VipManager.js.map +1 -1
- package/lib/typescript/{src/Tool.d.ts → Tool.d.ts} +1 -0
- package/locales/en-US.json +1 -0
- package/locales/zh-CN.json +1 -0
- package/package.json +26 -26
- package/src/.DS_Store +0 -0
- package/src/LoginManager.ts +0 -1
- package/src/SentryManager.ts +2 -1
- package/src/Tool.ts +2 -0
- package/src/VipManager.ts +0 -3
- package/tsconfig.json +27 -0
- package/yarn.lock +11432 -0
- package/lib/typescript/babel.config.d.ts +0 -1
- package/lib/typescript/lib/commonjs/AppBadgeContext.d.ts +0 -8
- package/lib/typescript/lib/commonjs/AppleLoginUtil.d.ts +0 -27
- package/lib/typescript/lib/commonjs/ConfigDataModel.d.ts +0 -14
- package/lib/typescript/lib/commonjs/DevConfig.d.ts +0 -7
- package/lib/typescript/lib/commonjs/Frequence.d.ts +0 -6
- package/lib/typescript/lib/commonjs/LoginManager.d.ts +0 -15
- package/lib/typescript/lib/commonjs/MessageModel.d.ts +0 -10
- package/lib/typescript/lib/commonjs/Notification.d.ts +0 -8
- package/lib/typescript/lib/commonjs/PrefData.d.ts +0 -79
- package/lib/typescript/lib/commonjs/ReportUtil.d.ts +0 -16
- package/lib/typescript/lib/commonjs/SentryManager.d.ts +0 -5
- package/lib/typescript/lib/commonjs/SyncPrefData.d.ts +0 -5
- package/lib/typescript/lib/commonjs/Tool.d.ts +0 -26
- package/lib/typescript/lib/commonjs/VipAndroidManager.d.ts +0 -25
- package/lib/typescript/lib/commonjs/VipManager.d.ts +0 -25
- package/lib/typescript/lib/commonjs/WeChatLoginUtil.d.ts +0 -4
- package/lib/typescript/lib/commonjs/constant.d.ts +0 -3
- package/lib/typescript/lib/commonjs/index.d.ts +0 -3
- package/lib/typescript/lib/module/AppBadgeContext.d.ts +0 -14
- package/lib/typescript/lib/module/AppleLoginUtil.d.ts +0 -26
- package/lib/typescript/lib/module/ConfigDataModel.d.ts +0 -13
- package/lib/typescript/lib/module/DevConfig.d.ts +0 -6
- package/lib/typescript/lib/module/Frequence.d.ts +0 -5
- package/lib/typescript/lib/module/LoginManager.d.ts +0 -14
- package/lib/typescript/lib/module/MessageModel.d.ts +0 -9
- package/lib/typescript/lib/module/Notification.d.ts +0 -7
- package/lib/typescript/lib/module/PrefData.d.ts +0 -78
- package/lib/typescript/lib/module/ReportUtil.d.ts +0 -15
- package/lib/typescript/lib/module/SentryManager.d.ts +0 -4
- package/lib/typescript/lib/module/SyncPrefData.d.ts +0 -4
- package/lib/typescript/lib/module/Tool.d.ts +0 -25
- package/lib/typescript/lib/module/VipAndroidManager.d.ts +0 -24
- package/lib/typescript/lib/module/VipManager.d.ts +0 -24
- package/lib/typescript/lib/module/WeChatLoginUtil.d.ts +0 -3
- package/lib/typescript/lib/module/constant.d.ts +0 -2
- package/lib/typescript/lib/module/index.d.ts +0 -19
- /package/lib/typescript/{src/AppBadgeContext.d.ts → AppBadgeContext.d.ts} +0 -0
- /package/lib/typescript/{src/AppleLoginUtil.d.ts → AppleLoginUtil.d.ts} +0 -0
- /package/lib/typescript/{src/ConfigDataModel.d.ts → ConfigDataModel.d.ts} +0 -0
- /package/lib/typescript/{src/DevConfig.d.ts → DevConfig.d.ts} +0 -0
- /package/lib/typescript/{src/Frequence.d.ts → Frequence.d.ts} +0 -0
- /package/lib/typescript/{src/LoginManager.d.ts → LoginManager.d.ts} +0 -0
- /package/lib/typescript/{src/MessageModel.d.ts → MessageModel.d.ts} +0 -0
- /package/lib/typescript/{src/Notification.d.ts → Notification.d.ts} +0 -0
- /package/lib/typescript/{src/PrefData.d.ts → PrefData.d.ts} +0 -0
- /package/lib/typescript/{src/ReportUtil.d.ts → ReportUtil.d.ts} +0 -0
- /package/lib/typescript/{src/SentryManager.d.ts → SentryManager.d.ts} +0 -0
- /package/lib/typescript/{src/SyncPrefData.d.ts → SyncPrefData.d.ts} +0 -0
- /package/lib/typescript/{src/VipAndroidManager.d.ts → VipAndroidManager.d.ts} +0 -0
- /package/lib/typescript/{src/VipManager.d.ts → VipManager.d.ts} +0 -0
- /package/lib/typescript/{src/WeChatLoginUtil.d.ts → WeChatLoginUtil.d.ts} +0 -0
- /package/lib/typescript/{src/constant.d.ts → constant.d.ts} +0 -0
- /package/lib/typescript/{src/index.d.ts → index.d.ts} +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.