react-native-stallion 1.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/README.md +36 -0
- package/android/build.gradle +100 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +8 -0
- package/android/src/main/java/com/stallion/Stallion.java +26 -0
- package/android/src/main/java/com/stallion/StallionConstants.java +27 -0
- package/android/src/main/java/com/stallion/StallionDefaultErrorActivity.java +27 -0
- package/android/src/main/java/com/stallion/StallionModule.java +250 -0
- package/android/src/main/java/com/stallion/StallionPackage.java +29 -0
- package/android/src/main/java/com/stallion/StallionStorage.java +54 -0
- package/android/src/main/java/com/stallion/StallionZip.java +127 -0
- package/android/src/main/res/layout/stallion_default_error_activity.xml +60 -0
- package/android/src/noop/java/com/stallion/Stallion.java +13 -0
- package/android/src/noop/java/com/stallion/StallionConstants.java +10 -0
- package/android/src/noop/java/com/stallion/StallionModule.java +26 -0
- package/android/src/noop/java/com/stallion/StallionPackage.java +29 -0
- package/ios/Stallion.xcodeproj/project.pbxproj +283 -0
- package/ios/main/Stallion-Bridging-Header.h +3 -0
- package/ios/main/Stallion.m +21 -0
- package/ios/main/Stallion.swift +69 -0
- package/ios/main/StallionConstants.swift +42 -0
- package/ios/main/StallionDownloader.swift +124 -0
- package/ios/main/StallionModule.h +13 -0
- package/ios/main/StallionModule.m +71 -0
- package/ios/main/StallionUtil.swift +29 -0
- package/ios/noop/Stallion-Bridging-Header.h +2 -0
- package/ios/noop/Stallion.m +12 -0
- package/ios/noop/Stallion.swift +7 -0
- package/ios/noop/StallionModule.h +13 -0
- package/ios/noop/StallionModule.m +20 -0
- package/package.json +62 -0
- package/react-native-stallion.podspec +50 -0
- package/src/StallionNativeModule.js +5 -0
- package/src/StallionNativeModule.js.map +1 -0
- package/src/index.js +29 -0
- package/src/index.js.map +1 -0
- package/src/main/components/common/ButtonFullWidth/index.js +20 -0
- package/src/main/components/common/ButtonFullWidth/index.js.map +1 -0
- package/src/main/components/common/ButtonFullWidth/styles.js +42 -0
- package/src/main/components/common/ButtonFullWidth/styles.js.map +1 -0
- package/src/main/components/common/ErrorView/index.js +18 -0
- package/src/main/components/common/ErrorView/index.js.map +1 -0
- package/src/main/components/common/ErrorView/styles.js +20 -0
- package/src/main/components/common/ErrorView/styles.js.map +1 -0
- package/src/main/components/common/Footer/index.js +49 -0
- package/src/main/components/common/Footer/index.js.map +1 -0
- package/src/main/components/common/Footer/styles.js +76 -0
- package/src/main/components/common/Footer/styles.js.map +1 -0
- package/src/main/components/common/Header/index.js +50 -0
- package/src/main/components/common/Header/index.js.map +1 -0
- package/src/main/components/common/Header/styles.js +63 -0
- package/src/main/components/common/Header/styles.js.map +1 -0
- package/src/main/components/common/OverlayLoader/index.js +26 -0
- package/src/main/components/common/OverlayLoader/index.js.map +1 -0
- package/src/main/components/common/OverlayLoader/styles.js +33 -0
- package/src/main/components/common/OverlayLoader/styles.js.map +1 -0
- package/src/main/components/common/ProfileOverlay/index.js +39 -0
- package/src/main/components/common/ProfileOverlay/index.js.map +1 -0
- package/src/main/components/common/ProfileOverlay/styles.js +37 -0
- package/src/main/components/common/ProfileOverlay/styles.js.map +1 -0
- package/src/main/components/common/Spinner/index.js +9 -0
- package/src/main/components/common/Spinner/index.js.map +1 -0
- package/src/main/components/modules/listing/components/BucketCard.js +33 -0
- package/src/main/components/modules/listing/components/BucketCard.js.map +1 -0
- package/src/main/components/modules/listing/components/BucketCardInfoSection.js +56 -0
- package/src/main/components/modules/listing/components/BucketCardInfoSection.js.map +1 -0
- package/src/main/components/modules/listing/components/BundleCard.js +36 -0
- package/src/main/components/modules/listing/components/BundleCard.js.map +1 -0
- package/src/main/components/modules/listing/components/BundleCardInfoSection.js +72 -0
- package/src/main/components/modules/listing/components/BundleCardInfoSection.js.map +1 -0
- package/src/main/components/modules/listing/components/CardDescriptionContent.js +34 -0
- package/src/main/components/modules/listing/components/CardDescriptionContent.js.map +1 -0
- package/src/main/components/modules/listing/components/styles/index.js +65 -0
- package/src/main/components/modules/listing/components/styles/index.js.map +1 -0
- package/src/main/components/modules/listing/hooks/useListing.js +71 -0
- package/src/main/components/modules/listing/hooks/useListing.js.map +1 -0
- package/src/main/components/modules/listing/index.js +39 -0
- package/src/main/components/modules/listing/index.js.map +1 -0
- package/src/main/components/modules/listing/styles.js +12 -0
- package/src/main/components/modules/listing/styles.js.map +1 -0
- package/src/main/components/modules/login/components/Email.js +37 -0
- package/src/main/components/modules/login/components/Email.js.map +1 -0
- package/src/main/components/modules/login/components/Otp.js +41 -0
- package/src/main/components/modules/login/components/Otp.js.map +1 -0
- package/src/main/components/modules/login/components/styles/index.js +24 -0
- package/src/main/components/modules/login/components/styles/index.js.map +1 -0
- package/src/main/components/modules/login/hooks/useLoginFlow.js +60 -0
- package/src/main/components/modules/login/hooks/useLoginFlow.js.map +1 -0
- package/src/main/components/modules/login/index.js +54 -0
- package/src/main/components/modules/login/index.js.map +1 -0
- package/src/main/components/modules/login/styles/index.js +34 -0
- package/src/main/components/modules/login/styles/index.js.map +1 -0
- package/src/main/components/modules/modal/StallionModal.js +73 -0
- package/src/main/components/modules/modal/StallionModal.js.map +1 -0
- package/src/main/components/modules/modal/hooks/useStallionModal.js +92 -0
- package/src/main/components/modules/modal/hooks/useStallionModal.js.map +1 -0
- package/src/main/constants/apiConstants.js +10 -0
- package/src/main/constants/apiConstants.js.map +1 -0
- package/src/main/constants/appConstants.js +71 -0
- package/src/main/constants/appConstants.js.map +1 -0
- package/src/main/constants/colors.js +14 -0
- package/src/main/constants/colors.js.map +1 -0
- package/src/main/index.js +7 -0
- package/src/main/index.js.map +1 -0
- package/src/main/state/actionCreators/useBucketActions.js +37 -0
- package/src/main/state/actionCreators/useBucketActions.js.map +1 -0
- package/src/main/state/actionCreators/useBundleActions.js +45 -0
- package/src/main/state/actionCreators/useBundleActions.js.map +1 -0
- package/src/main/state/actionCreators/useDownloadActions.js +47 -0
- package/src/main/state/actionCreators/useDownloadActions.js.map +1 -0
- package/src/main/state/actionCreators/useMetaActions.js +19 -0
- package/src/main/state/actionCreators/useMetaActions.js.map +1 -0
- package/src/main/state/actionCreators/useUserActions.js +97 -0
- package/src/main/state/actionCreators/useUserActions.js.map +1 -0
- package/src/main/state/actions/bucketActions.js +19 -0
- package/src/main/state/actions/bucketActions.js.map +1 -0
- package/src/main/state/actions/bundleActions.js +25 -0
- package/src/main/state/actions/bundleActions.js.map +1 -0
- package/src/main/state/actions/downloadActions.js +19 -0
- package/src/main/state/actions/downloadActions.js.map +1 -0
- package/src/main/state/actions/metaActions.js +8 -0
- package/src/main/state/actions/metaActions.js.map +1 -0
- package/src/main/state/actions/userActions.js +31 -0
- package/src/main/state/actions/userActions.js.map +1 -0
- package/src/main/state/index.js +70 -0
- package/src/main/state/index.js.map +1 -0
- package/src/main/state/reducers/bucketReducer.js +36 -0
- package/src/main/state/reducers/bucketReducer.js.map +1 -0
- package/src/main/state/reducers/bundleReducer.js +47 -0
- package/src/main/state/reducers/bundleReducer.js.map +1 -0
- package/src/main/state/reducers/downloadReducer.js +39 -0
- package/src/main/state/reducers/downloadReducer.js.map +1 -0
- package/src/main/state/reducers/metaReducer.js +17 -0
- package/src/main/state/reducers/metaReducer.js.map +1 -0
- package/src/main/state/reducers/userReducer.js +70 -0
- package/src/main/state/reducers/userReducer.js.map +1 -0
- package/src/main/utils/ErrorBoundary.js +13 -0
- package/src/main/utils/ErrorBoundary.js.map +1 -0
- package/src/main/utils/SharedDataManager.js +25 -0
- package/src/main/utils/SharedDataManager.js.map +1 -0
- package/src/main/utils/StallionNaitveUtils.js +7 -0
- package/src/main/utils/StallionNaitveUtils.js.map +1 -0
- package/src/main/utils/apiUtils.js +16 -0
- package/src/main/utils/apiUtils.js.map +1 -0
- package/src/main/utils/dateUtil.js +39 -0
- package/src/main/utils/dateUtil.js.map +1 -0
- package/src/main/utils/errorUtil.js +10 -0
- package/src/main/utils/errorUtil.js.map +1 -0
- package/src/main/utils/useStallionModal.js +18 -0
- package/src/main/utils/useStallionModal.js.map +1 -0
- package/src/main/utils/withStallion.js +16 -0
- package/src/main/utils/withStallion.js.map +1 -0
- package/src/nativeScripts/getStallionEnabled.js +8 -0
- package/src/nativeScripts/getStallionEnabled.js.map +1 -0
- package/src/noop/useStallionModal.js +12 -0
- package/src/noop/useStallionModal.js.map +1 -0
- package/src/noop/withStallion.js +13 -0
- package/src/noop/withStallion.js.map +1 -0
- package/src/types/bucket.types.js +7 -0
- package/src/types/bucket.types.js.map +1 -0
- package/src/types/bundle.types.js +8 -0
- package/src/types/bundle.types.js.map +1 -0
- package/src/types/download.types.js +7 -0
- package/src/types/download.types.js.map +1 -0
- package/src/types/globalProvider.types.js +2 -0
- package/src/types/globalProvider.types.js.map +1 -0
- package/src/types/meta.types.js +6 -0
- package/src/types/meta.types.js.map +1 -0
- package/src/types/user.types.js +9 -0
- package/src/types/user.types.js.map +1 -0
- package/src/types/utils.types.js +2 -0
- package/src/types/utils.types.js.map +1 -0
- package/types/StallionNativeModule.d.ts +4 -0
- package/types/StallionNativeModule.d.ts.map +1 -0
- package/types/__tests__/index.test.d.ts +1 -0
- package/types/__tests__/index.test.d.ts.map +1 -0
- package/types/index.d.ts +4 -0
- package/types/index.d.ts.map +1 -0
- package/types/main/components/common/ButtonFullWidth/index.d.ts +10 -0
- package/types/main/components/common/ButtonFullWidth/index.d.ts.map +1 -0
- package/types/main/components/common/ButtonFullWidth/styles.d.ts +39 -0
- package/types/main/components/common/ButtonFullWidth/styles.d.ts.map +1 -0
- package/types/main/components/common/ErrorView/index.d.ts +7 -0
- package/types/main/components/common/ErrorView/index.d.ts.map +1 -0
- package/types/main/components/common/ErrorView/styles.d.ts +17 -0
- package/types/main/components/common/ErrorView/styles.d.ts.map +1 -0
- package/types/main/components/common/Footer/index.d.ts +13 -0
- package/types/main/components/common/Footer/index.d.ts.map +1 -0
- package/types/main/components/common/Footer/styles.d.ts +73 -0
- package/types/main/components/common/Footer/styles.d.ts.map +1 -0
- package/types/main/components/common/Header/index.d.ts +11 -0
- package/types/main/components/common/Header/index.d.ts.map +1 -0
- package/types/main/components/common/Header/styles.d.ts +59 -0
- package/types/main/components/common/Header/styles.d.ts.map +1 -0
- package/types/main/components/common/OverlayLoader/index.d.ts +7 -0
- package/types/main/components/common/OverlayLoader/index.d.ts.map +1 -0
- package/types/main/components/common/OverlayLoader/styles.d.ts +30 -0
- package/types/main/components/common/OverlayLoader/styles.d.ts.map +1 -0
- package/types/main/components/common/ProfileOverlay/index.d.ts +10 -0
- package/types/main/components/common/ProfileOverlay/index.d.ts.map +1 -0
- package/types/main/components/common/ProfileOverlay/styles.d.ts +34 -0
- package/types/main/components/common/ProfileOverlay/styles.d.ts.map +1 -0
- package/types/main/components/common/Spinner/index.d.ts +4 -0
- package/types/main/components/common/Spinner/index.d.ts.map +1 -0
- package/types/main/components/modules/listing/components/BucketCard.d.ts +13 -0
- package/types/main/components/modules/listing/components/BucketCard.d.ts.map +1 -0
- package/types/main/components/modules/listing/components/BucketCardInfoSection.d.ts +11 -0
- package/types/main/components/modules/listing/components/BucketCardInfoSection.d.ts.map +1 -0
- package/types/main/components/modules/listing/components/BundleCard.d.ts +14 -0
- package/types/main/components/modules/listing/components/BundleCard.d.ts.map +1 -0
- package/types/main/components/modules/listing/components/BundleCardInfoSection.d.ts +12 -0
- package/types/main/components/modules/listing/components/BundleCardInfoSection.d.ts.map +1 -0
- package/types/main/components/modules/listing/components/CardDescriptionContent.d.ts +8 -0
- package/types/main/components/modules/listing/components/CardDescriptionContent.d.ts.map +1 -0
- package/types/main/components/modules/listing/components/styles/index.d.ts +62 -0
- package/types/main/components/modules/listing/components/styles/index.d.ts.map +1 -0
- package/types/main/components/modules/listing/hooks/useListing.d.ts +11 -0
- package/types/main/components/modules/listing/hooks/useListing.d.ts.map +1 -0
- package/types/main/components/modules/listing/index.d.ts +4 -0
- package/types/main/components/modules/listing/index.d.ts.map +1 -0
- package/types/main/components/modules/listing/styles.d.ts +10 -0
- package/types/main/components/modules/listing/styles.d.ts.map +1 -0
- package/types/main/components/modules/login/components/Email.d.ts +13 -0
- package/types/main/components/modules/login/components/Email.d.ts.map +1 -0
- package/types/main/components/modules/login/components/Otp.d.ts +12 -0
- package/types/main/components/modules/login/components/Otp.d.ts.map +1 -0
- package/types/main/components/modules/login/components/styles/index.d.ts +21 -0
- package/types/main/components/modules/login/components/styles/index.d.ts.map +1 -0
- package/types/main/components/modules/login/hooks/useLoginFlow.d.ts +18 -0
- package/types/main/components/modules/login/hooks/useLoginFlow.d.ts.map +1 -0
- package/types/main/components/modules/login/index.d.ts +4 -0
- package/types/main/components/modules/login/index.d.ts.map +1 -0
- package/types/main/components/modules/login/styles/index.d.ts +31 -0
- package/types/main/components/modules/login/styles/index.d.ts.map +1 -0
- package/types/main/components/modules/modal/StallionModal.d.ts +4 -0
- package/types/main/components/modules/modal/StallionModal.d.ts.map +1 -0
- package/types/main/components/modules/modal/hooks/useStallionModal.d.ts +23 -0
- package/types/main/components/modules/modal/hooks/useStallionModal.d.ts.map +1 -0
- package/types/main/constants/apiConstants.d.ts +9 -0
- package/types/main/constants/apiConstants.d.ts.map +1 -0
- package/types/main/constants/appConstants.d.ts +65 -0
- package/types/main/constants/appConstants.d.ts.map +1 -0
- package/types/main/constants/colors.d.ts +14 -0
- package/types/main/constants/colors.d.ts.map +1 -0
- package/types/main/index.d.ts +7 -0
- package/types/main/index.d.ts.map +1 -0
- package/types/main/state/actionCreators/useBucketActions.d.ts +7 -0
- package/types/main/state/actionCreators/useBucketActions.d.ts.map +1 -0
- package/types/main/state/actionCreators/useBundleActions.d.ts +8 -0
- package/types/main/state/actionCreators/useBundleActions.d.ts.map +1 -0
- package/types/main/state/actionCreators/useDownloadActions.d.ts +7 -0
- package/types/main/state/actionCreators/useDownloadActions.d.ts.map +1 -0
- package/types/main/state/actionCreators/useMetaActions.d.ts +7 -0
- package/types/main/state/actionCreators/useMetaActions.d.ts.map +1 -0
- package/types/main/state/actionCreators/useUserActions.d.ts +12 -0
- package/types/main/state/actionCreators/useUserActions.d.ts.map +1 -0
- package/types/main/state/actions/bucketActions.d.ts +5 -0
- package/types/main/state/actions/bucketActions.d.ts.map +1 -0
- package/types/main/state/actions/bundleActions.d.ts +6 -0
- package/types/main/state/actions/bundleActions.d.ts.map +1 -0
- package/types/main/state/actions/downloadActions.d.ts +5 -0
- package/types/main/state/actions/downloadActions.d.ts.map +1 -0
- package/types/main/state/actions/metaActions.d.ts +3 -0
- package/types/main/state/actions/metaActions.d.ts.map +1 -0
- package/types/main/state/actions/userActions.d.ts +7 -0
- package/types/main/state/actions/userActions.d.ts.map +1 -0
- package/types/main/state/index.d.ts +6 -0
- package/types/main/state/index.d.ts.map +1 -0
- package/types/main/state/reducers/bucketReducer.d.ts +4 -0
- package/types/main/state/reducers/bucketReducer.d.ts.map +1 -0
- package/types/main/state/reducers/bundleReducer.d.ts +4 -0
- package/types/main/state/reducers/bundleReducer.d.ts.map +1 -0
- package/types/main/state/reducers/downloadReducer.d.ts +4 -0
- package/types/main/state/reducers/downloadReducer.d.ts.map +1 -0
- package/types/main/state/reducers/metaReducer.d.ts +4 -0
- package/types/main/state/reducers/metaReducer.d.ts.map +1 -0
- package/types/main/state/reducers/userReducer.d.ts +4 -0
- package/types/main/state/reducers/userReducer.d.ts.map +1 -0
- package/types/main/utils/ErrorBoundary.d.ts +7 -0
- package/types/main/utils/ErrorBoundary.d.ts.map +1 -0
- package/types/main/utils/SharedDataManager.d.ts +14 -0
- package/types/main/utils/SharedDataManager.d.ts.map +1 -0
- package/types/main/utils/StallionNaitveUtils.d.ts +7 -0
- package/types/main/utils/StallionNaitveUtils.d.ts.map +1 -0
- package/types/main/utils/apiUtils.d.ts +7 -0
- package/types/main/utils/apiUtils.d.ts.map +1 -0
- package/types/main/utils/dateUtil.d.ts +3 -0
- package/types/main/utils/dateUtil.d.ts.map +1 -0
- package/types/main/utils/errorUtil.d.ts +10 -0
- package/types/main/utils/errorUtil.d.ts.map +1 -0
- package/types/main/utils/useStallionModal.d.ts +4 -0
- package/types/main/utils/useStallionModal.d.ts.map +1 -0
- package/types/main/utils/withStallion.d.ts +4 -0
- package/types/main/utils/withStallion.d.ts.map +1 -0
- package/types/noop/useStallionModal.d.ts +4 -0
- package/types/noop/useStallionModal.d.ts.map +1 -0
- package/types/noop/withStallion.d.ts +4 -0
- package/types/noop/withStallion.d.ts.map +1 -0
- package/types/types/bucket.types.d.ts +33 -0
- package/types/types/bucket.types.d.ts.map +1 -0
- package/types/types/bundle.types.d.ts +41 -0
- package/types/types/bundle.types.d.ts.map +1 -0
- package/types/types/download.types.d.ts +27 -0
- package/types/types/download.types.d.ts.map +1 -0
- package/types/types/globalProvider.types.d.ts +36 -0
- package/types/types/globalProvider.types.d.ts.map +1 -0
- package/types/types/meta.types.d.ts +15 -0
- package/types/types/meta.types.d.ts.map +1 -0
- package/types/types/user.types.d.ts +40 -0
- package/types/types/user.types.d.ts.map +1 -0
- package/types/types/utils.types.d.ts +26 -0
- package/types/types/utils.types.d.ts.map +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/globalProvider.types.ts"],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["MetaActionKind"],"sourceRoot":"../../../src","sources":["types/meta.types.ts"],"mappings":"AAMA,WAAYA,cAAc,0BAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAA,OAAdA,cAAc;AAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export let UserActionKind = /*#__PURE__*/function (UserActionKind) {
|
|
2
|
+
UserActionKind["SET_USER_LOADING"] = "SET_USER_LOADING";
|
|
3
|
+
UserActionKind["SET_USER_DATA"] = "SET_USER_DATA";
|
|
4
|
+
UserActionKind["SET_USER_ERROR"] = "SET_USER_ERROR";
|
|
5
|
+
UserActionKind["SET_TEMP_OTP"] = "SET_TEMP_OTP";
|
|
6
|
+
UserActionKind["SET_LOGIN_REQUIRED"] = "SET_LOGIN_REQUIRED";
|
|
7
|
+
return UserActionKind;
|
|
8
|
+
}({});
|
|
9
|
+
//# sourceMappingURL=user.types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["UserActionKind"],"sourceRoot":"../../../src","sources":["types/user.types.ts"],"mappings":"AAaA,WAAYA,cAAc,0BAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAA,OAAdA,cAAc;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/utils.types.ts"],"mappings":""}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const STALLION_DISABLED_ERROR = "Stallion is disabled or not linked correctly, falling back to noop version. See https://docs.redhorse.tech/docs/production-deployment";
|
|
2
|
+
declare const StallionNativeModule: any;
|
|
3
|
+
export default StallionNativeModule;
|
|
4
|
+
//# sourceMappingURL=StallionNativeModule.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StallionNativeModule.d.ts","sourceRoot":"","sources":["../../src/StallionNativeModule.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,uBAAuB,0IACqG,CAAC;AAE1I,QAAA,MAAM,oBAAoB,KAAyB,CAAC;AAEpD,eAAe,oBAAoB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.test.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../../src/__tests__/index.test.tsx"],"names":[],"mappings":""}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAMA,OAAO,EAEL,iBAAiB,EACjB,aAAa,EACd,MAAM,qBAAqB,CAAC;AAK7B,eAAO,IAAI,YAAY,EAAE,aAAa,CAAC;AACvC,eAAO,IAAI,gBAAgB,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IButtonFullWidth {
|
|
3
|
+
buttonText: string;
|
|
4
|
+
primary?: boolean;
|
|
5
|
+
enabled?: boolean;
|
|
6
|
+
onPress: () => void;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: React.NamedExoticComponent<IButtonFullWidth>;
|
|
9
|
+
export default _default;
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/ButtonFullWidth/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;AAKpC,UAAU,gBAAgB;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;;AA8BD,wBAAqC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const styles: {
|
|
2
|
+
buttonContainer: {
|
|
3
|
+
height: number;
|
|
4
|
+
borderRadius: number;
|
|
5
|
+
width: string;
|
|
6
|
+
justifyContent: "center";
|
|
7
|
+
alignItems: "center";
|
|
8
|
+
};
|
|
9
|
+
primaryButton: {
|
|
10
|
+
backgroundColor: string;
|
|
11
|
+
elevation: number;
|
|
12
|
+
zIndex: number;
|
|
13
|
+
shadowColor: string;
|
|
14
|
+
shadowOpacity: number;
|
|
15
|
+
shadowOffset: {
|
|
16
|
+
height: number;
|
|
17
|
+
width: number;
|
|
18
|
+
};
|
|
19
|
+
shadowRadius: number;
|
|
20
|
+
};
|
|
21
|
+
disabled: {
|
|
22
|
+
opacity: number;
|
|
23
|
+
};
|
|
24
|
+
transparentButton: {
|
|
25
|
+
borderWidth: number;
|
|
26
|
+
borderColor: string;
|
|
27
|
+
};
|
|
28
|
+
buttonText: {
|
|
29
|
+
fontSize: number;
|
|
30
|
+
};
|
|
31
|
+
primaryText: {
|
|
32
|
+
color: string;
|
|
33
|
+
};
|
|
34
|
+
secondaryText: {
|
|
35
|
+
color: string;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export default styles;
|
|
39
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/ButtonFullWidth/styles.ts"],"names":[],"mappings":"AAQA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/ErrorView/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;AAMpC,UAAU,UAAU;IAClB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB;;AAeD,wBAA+B"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const styles: {
|
|
2
|
+
errorContainer: {
|
|
3
|
+
flex: number;
|
|
4
|
+
justifyContent: "center";
|
|
5
|
+
alignItems: "center";
|
|
6
|
+
padding: number;
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
};
|
|
9
|
+
errorText: {
|
|
10
|
+
color: string;
|
|
11
|
+
};
|
|
12
|
+
boldText: {
|
|
13
|
+
fontWeight: "bold";
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export default styles;
|
|
17
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/ErrorView/styles.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;CAcV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IFooter {
|
|
3
|
+
switchIsOn?: boolean;
|
|
4
|
+
onSwitchToggle?: (newSwitchStatus: boolean) => void;
|
|
5
|
+
activeBundle?: {
|
|
6
|
+
bucketName: string;
|
|
7
|
+
version: string;
|
|
8
|
+
};
|
|
9
|
+
errorMessage?: string | null;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: React.NamedExoticComponent<IFooter>;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/Footer/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAajD,UAAU,OAAO;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,KAAK,IAAI,CAAC;IACpD,YAAY,CAAC,EAAE;QACb,UAAU,EAAE,MAAM,CAAC;QACnB,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B;;AA6DD,wBAA4B"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
declare const styles: {
|
|
2
|
+
shadowContainer: {
|
|
3
|
+
elevation: number;
|
|
4
|
+
zIndex: number;
|
|
5
|
+
shadowOpacity: number;
|
|
6
|
+
shadowOffset: {
|
|
7
|
+
height: number;
|
|
8
|
+
width: number;
|
|
9
|
+
};
|
|
10
|
+
shadowRadius: number;
|
|
11
|
+
};
|
|
12
|
+
noDownloadContainer: {
|
|
13
|
+
justifyContent: "center";
|
|
14
|
+
alignItems: "center";
|
|
15
|
+
width: string;
|
|
16
|
+
paddingHorizontal: number;
|
|
17
|
+
paddingVertical: number;
|
|
18
|
+
};
|
|
19
|
+
errorInfoSection: {
|
|
20
|
+
height: number;
|
|
21
|
+
backgroundColor: string;
|
|
22
|
+
alignItems: "center";
|
|
23
|
+
justifyContent: "center";
|
|
24
|
+
};
|
|
25
|
+
errTxt: {
|
|
26
|
+
fontSize: number;
|
|
27
|
+
color: string;
|
|
28
|
+
marginHorizontal: number;
|
|
29
|
+
};
|
|
30
|
+
footerContainer: {
|
|
31
|
+
paddingHorizontal: number;
|
|
32
|
+
paddingVertical: number;
|
|
33
|
+
flexDirection: "row";
|
|
34
|
+
justifyContent: "space-between";
|
|
35
|
+
alignItems: "center";
|
|
36
|
+
backgroundColor: string;
|
|
37
|
+
};
|
|
38
|
+
infoTitle: {
|
|
39
|
+
fontSize: number;
|
|
40
|
+
};
|
|
41
|
+
infoSubTitle: {
|
|
42
|
+
fontSize: number;
|
|
43
|
+
marginTop: number;
|
|
44
|
+
};
|
|
45
|
+
alignCenter: {
|
|
46
|
+
alignItems: "center";
|
|
47
|
+
};
|
|
48
|
+
dividerSection: {
|
|
49
|
+
flex: number;
|
|
50
|
+
justifyContent: "flex-start";
|
|
51
|
+
};
|
|
52
|
+
dividerSection2: {
|
|
53
|
+
flex: number;
|
|
54
|
+
justifyContent: "flex-start";
|
|
55
|
+
};
|
|
56
|
+
bold: {
|
|
57
|
+
fontWeight: "bold";
|
|
58
|
+
};
|
|
59
|
+
selfCenter: {
|
|
60
|
+
alignSelf: "center";
|
|
61
|
+
};
|
|
62
|
+
greenColor: {
|
|
63
|
+
color: string;
|
|
64
|
+
};
|
|
65
|
+
redColor: {
|
|
66
|
+
color: string;
|
|
67
|
+
};
|
|
68
|
+
switchButton: {
|
|
69
|
+
marginTop: number;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
export default styles;
|
|
73
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/Footer/styles.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmEV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IHeader {
|
|
3
|
+
userName?: string | null;
|
|
4
|
+
title?: string | null;
|
|
5
|
+
onBackPress?: (() => void) | null;
|
|
6
|
+
onClosePress: () => void;
|
|
7
|
+
onProfilePress: () => void;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: React.NamedExoticComponent<IHeader>;
|
|
10
|
+
export default _default;
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/Header/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAW3D,UAAU,OAAO;IACf,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,WAAW,CAAC,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,IAAI,CAAC;IAClC,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,cAAc,EAAE,MAAM,IAAI,CAAC;CAC5B;;AAuDD,wBAA4B"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const styles: {
|
|
2
|
+
headerContainer: {
|
|
3
|
+
height: number;
|
|
4
|
+
width: string;
|
|
5
|
+
flexDirection: "row";
|
|
6
|
+
justifyContent: "space-between";
|
|
7
|
+
alignItems: "center";
|
|
8
|
+
zIndex: number;
|
|
9
|
+
elevation: number;
|
|
10
|
+
shadowColor: string;
|
|
11
|
+
shadowOpacity: number;
|
|
12
|
+
shadowOffset: {
|
|
13
|
+
height: number;
|
|
14
|
+
width: number;
|
|
15
|
+
};
|
|
16
|
+
shadowRadius: number;
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
};
|
|
19
|
+
headerSideSection: {
|
|
20
|
+
flex: number;
|
|
21
|
+
justifyContent: "center";
|
|
22
|
+
alignItems: "flex-end";
|
|
23
|
+
padding: number;
|
|
24
|
+
};
|
|
25
|
+
headerProfileButton: {
|
|
26
|
+
height: number;
|
|
27
|
+
width: number;
|
|
28
|
+
borderRadius: number;
|
|
29
|
+
justifyContent: "center";
|
|
30
|
+
alignItems: "center";
|
|
31
|
+
backgroundColor: string;
|
|
32
|
+
};
|
|
33
|
+
headerCenterSection: {
|
|
34
|
+
flex: number;
|
|
35
|
+
justifyContent: "center";
|
|
36
|
+
alignItems: "center";
|
|
37
|
+
};
|
|
38
|
+
headerText: {
|
|
39
|
+
fontSize: number;
|
|
40
|
+
color: string;
|
|
41
|
+
fontWeight: "bold";
|
|
42
|
+
};
|
|
43
|
+
actionButtonText: {
|
|
44
|
+
fontSize: number;
|
|
45
|
+
};
|
|
46
|
+
alignStart: {
|
|
47
|
+
alignItems: "flex-start";
|
|
48
|
+
};
|
|
49
|
+
headerLogo: {
|
|
50
|
+
width: number;
|
|
51
|
+
flex: number;
|
|
52
|
+
};
|
|
53
|
+
profileInitial: {
|
|
54
|
+
fontSize: number;
|
|
55
|
+
color: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export default styles;
|
|
59
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/Header/styles.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqDV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/OverlayLoader/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;AAQpC,UAAU,cAAc;IACtB,uBAAuB,EAAE,MAAM,CAAC;CACjC;;AA4BD,wBAAmC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const styles: {
|
|
2
|
+
loaderContainer: {
|
|
3
|
+
position: "absolute";
|
|
4
|
+
height: string;
|
|
5
|
+
width: string;
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
justifyContent: "center";
|
|
8
|
+
alignItems: "center";
|
|
9
|
+
};
|
|
10
|
+
progressOuter: {
|
|
11
|
+
width: string;
|
|
12
|
+
height: number;
|
|
13
|
+
borderRadius: number;
|
|
14
|
+
backgroundColor: string;
|
|
15
|
+
justifyContent: "flex-start";
|
|
16
|
+
flexDirection: "row";
|
|
17
|
+
margin: number;
|
|
18
|
+
};
|
|
19
|
+
progressInner: {
|
|
20
|
+
height: number;
|
|
21
|
+
borderRadius: number;
|
|
22
|
+
backgroundColor: string;
|
|
23
|
+
};
|
|
24
|
+
downloadingText: {
|
|
25
|
+
color: string;
|
|
26
|
+
fontSize: number;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export default styles;
|
|
30
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/OverlayLoader/styles.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IProfileOverlay {
|
|
3
|
+
fullName?: string;
|
|
4
|
+
email?: string;
|
|
5
|
+
onBackPress: () => void;
|
|
6
|
+
onLogoutPress: () => void;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: React.NamedExoticComponent<IProfileOverlay>;
|
|
9
|
+
export default _default;
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/ProfileOverlay/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;AAWpC,UAAU,eAAe;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,aAAa,EAAE,MAAM,IAAI,CAAC;CAC3B;;AAkCD,wBAAoC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const styles: {
|
|
2
|
+
profileContainer: {
|
|
3
|
+
position: "absolute";
|
|
4
|
+
height: string;
|
|
5
|
+
width: string;
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
justifyContent: "center";
|
|
8
|
+
alignItems: "center";
|
|
9
|
+
};
|
|
10
|
+
profileTitle: {
|
|
11
|
+
fontSize: number;
|
|
12
|
+
marginVertical: number;
|
|
13
|
+
};
|
|
14
|
+
profileInfoText: {
|
|
15
|
+
fontSize: number;
|
|
16
|
+
marginVertical: number;
|
|
17
|
+
};
|
|
18
|
+
buttonContainer: {
|
|
19
|
+
width: string;
|
|
20
|
+
margin: number;
|
|
21
|
+
};
|
|
22
|
+
titleContainer: {
|
|
23
|
+
flex: number;
|
|
24
|
+
justifyContent: "flex-end";
|
|
25
|
+
};
|
|
26
|
+
infoContainer: {
|
|
27
|
+
flex: number;
|
|
28
|
+
justifyContent: "center";
|
|
29
|
+
alignItems: "center";
|
|
30
|
+
width: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
export default styles;
|
|
34
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/ProfileOverlay/styles.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/common/Spinner/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;;AAOpC,wBAA6B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CARD_TYPES } from '../../../../constants/appConstants';
|
|
3
|
+
export interface IBucketCard {
|
|
4
|
+
type: CARD_TYPES.BUCKET;
|
|
5
|
+
id: string;
|
|
6
|
+
name: string;
|
|
7
|
+
updatedAt: string;
|
|
8
|
+
bundleCount?: number;
|
|
9
|
+
handlePress?: () => void;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: React.NamedExoticComponent<IBucketCard>;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=BucketCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BucketCard.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/BucketCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;AAMzD,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAGhE,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,UAAU,CAAC,MAAM,CAAC;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;CAC1B;;AAiCD,wBAAgC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IBucketCardInfoSection {
|
|
3
|
+
name: string;
|
|
4
|
+
updatedAt: string;
|
|
5
|
+
switchState: boolean;
|
|
6
|
+
bundleCount?: string;
|
|
7
|
+
isApplied?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const BucketCardInfoSection: React.FC<IBucketCardInfoSection>;
|
|
10
|
+
export default BucketCardInfoSection;
|
|
11
|
+
//# sourceMappingURL=BucketCardInfoSection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BucketCardInfoSection.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/BucketCardInfoSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAevC,UAAU,sBAAsB;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,QAAA,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAkD3D,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CARD_TYPES } from '../../../../constants/appConstants';
|
|
3
|
+
export interface IBundleCard {
|
|
4
|
+
type: CARD_TYPES.BUNDLE;
|
|
5
|
+
version: number;
|
|
6
|
+
id: string;
|
|
7
|
+
name: string;
|
|
8
|
+
description: string;
|
|
9
|
+
updatedAt: string;
|
|
10
|
+
author: string;
|
|
11
|
+
}
|
|
12
|
+
declare const _default: React.NamedExoticComponent<IBundleCard>;
|
|
13
|
+
export default _default;
|
|
14
|
+
//# sourceMappingURL=BundleCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BundleCard.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/BundleCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;AAOzD,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAEhE,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,UAAU,CAAC,MAAM,CAAC;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;CAChB;;AAuCD,wBAAgC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IBundleCardInfoSection {
|
|
3
|
+
name: string;
|
|
4
|
+
updatedAt: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
version?: number;
|
|
7
|
+
author?: string;
|
|
8
|
+
isApplied?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const BundleCardInfoSection: React.FC<IBundleCardInfoSection>;
|
|
11
|
+
export default BundleCardInfoSection;
|
|
12
|
+
//# sourceMappingURL=BundleCardInfoSection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BundleCardInfoSection.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/BundleCardInfoSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAsBhE,UAAU,sBAAsB;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,QAAA,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAqE3D,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface ICardDescriptionContent {
|
|
3
|
+
title: string;
|
|
4
|
+
subtitle: string | number;
|
|
5
|
+
}
|
|
6
|
+
declare const CardDescriptionContent: React.FC<ICardDescriptionContent>;
|
|
7
|
+
export default CardDescriptionContent;
|
|
8
|
+
//# sourceMappingURL=CardDescriptionContent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardDescriptionContent.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/CardDescriptionContent.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,uBAAuB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;CAC3B;AACD,QAAA,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAU7D,CAAC;AAaF,eAAe,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
declare const styles: {
|
|
2
|
+
cardContainer: {
|
|
3
|
+
margin: number;
|
|
4
|
+
backgroundColor: string;
|
|
5
|
+
borderRadius: number;
|
|
6
|
+
shadowColor: string;
|
|
7
|
+
shadowOffset: {
|
|
8
|
+
height: number;
|
|
9
|
+
width: number;
|
|
10
|
+
};
|
|
11
|
+
shadowOpacity: number;
|
|
12
|
+
elevation: number;
|
|
13
|
+
shadowRadius: number;
|
|
14
|
+
};
|
|
15
|
+
infoSection: {
|
|
16
|
+
width: string;
|
|
17
|
+
};
|
|
18
|
+
actionSection: {
|
|
19
|
+
flex: number;
|
|
20
|
+
alignItems: "center";
|
|
21
|
+
};
|
|
22
|
+
rowContainer: {
|
|
23
|
+
flexDirection: "row";
|
|
24
|
+
justifyContent: "space-between";
|
|
25
|
+
alignItems: "center";
|
|
26
|
+
};
|
|
27
|
+
appliedText: {
|
|
28
|
+
color: string;
|
|
29
|
+
fontWeight: "bold";
|
|
30
|
+
fontSize: number;
|
|
31
|
+
};
|
|
32
|
+
container: {
|
|
33
|
+
margin: number;
|
|
34
|
+
};
|
|
35
|
+
divider: {
|
|
36
|
+
borderBottomWidth: number;
|
|
37
|
+
opacity: number;
|
|
38
|
+
marginVertical: number;
|
|
39
|
+
};
|
|
40
|
+
subText: {
|
|
41
|
+
fontSize: number;
|
|
42
|
+
marginBottom: number;
|
|
43
|
+
};
|
|
44
|
+
titleText: {
|
|
45
|
+
fontSize: number;
|
|
46
|
+
};
|
|
47
|
+
bold: {
|
|
48
|
+
fontWeight: "bold";
|
|
49
|
+
};
|
|
50
|
+
releaseNoteText: {
|
|
51
|
+
fontSize: number;
|
|
52
|
+
fontWeight: "500";
|
|
53
|
+
marginTop: number;
|
|
54
|
+
};
|
|
55
|
+
releaseNoteDescriptionText: {
|
|
56
|
+
fontSize: number;
|
|
57
|
+
marginTop: number;
|
|
58
|
+
color: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
export default styles;
|
|
62
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/main/components/modules/listing/components/styles/index.ts"],"names":[],"mappings":"AAQA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IBucketCard } from '../components/BucketCard';
|
|
2
|
+
import { IBundleCard } from '../components/BundleCard';
|
|
3
|
+
declare const useListing: () => {
|
|
4
|
+
listingData: (IBucketCard | IBundleCard)[];
|
|
5
|
+
listingError: string | null | undefined;
|
|
6
|
+
listingLoading: boolean;
|
|
7
|
+
fetchListing: () => void;
|
|
8
|
+
setBucketSelection: (bucketId?: string | null) => void;
|
|
9
|
+
};
|
|
10
|
+
export default useListing;
|
|
11
|
+
//# sourceMappingURL=useListing.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useListing.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/hooks/useListing.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,QAAA,MAAM,UAAU;;;;;oCAuDA,MAAM,GAAG,IAAI;CAoB5B,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/listing/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,QAAA,MAAM,OAAO,EAAE,KAAK,CAAC,EAmCpB,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/listing/styles.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,MAAM;;;;;;;CAOV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|