@ludo.ninja/components 1.0.7 → 1.0.8
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/dist/api/graphql/index.js +4 -4
- package/dist/api/server-assets/mutations/useDislikeAsset/index.js +185 -72
- package/dist/api/server-assets/mutations/useLikeAsset/index.js +182 -73
- package/dist/api/server-assets/queries/useFetchAssetByBlockchain/index.js +200 -73
- package/dist/api/server-assets/queries/useFetchAssets/index.js +34 -22
- package/dist/api/server-assets/queries/useFetchDynamicAssetLikes/index.js +44 -27
- package/dist/api/server-assets/queries/useFetchDynamicAssetsLikes/index.js +32 -22
- package/dist/api/server-collection/mutations/useDislikeCollection/index.js +184 -71
- package/dist/api/server-collection/mutations/useLikeCollection/index.js +184 -71
- package/dist/api/server-experiences/queries/useFetchMyExperienceWithLevel/index.js +124 -71
- package/dist/api/server-experiences/queries/useFetchMyTasks/index.js +49 -35
- package/dist/api/server-galleries/mutations/useAddAssetsToGallery/index.js +189 -75
- package/dist/api/server-galleries/mutations/useAddChangeGalleryBanner/index.js +167 -60
- package/dist/api/server-galleries/mutations/useAddCollectionsToGallery/index.js +191 -74
- package/dist/api/server-galleries/mutations/useAddCreationsToGallery/index.js +197 -80
- package/dist/api/server-galleries/mutations/useCreateFavorites/index.js +177 -63
- package/dist/api/server-galleries/mutations/useCreateGallery/index.js +177 -63
- package/dist/api/server-galleries/mutations/useDeleteGallery/index.js +188 -79
- package/dist/api/server-galleries/mutations/useDeleteGalleryBanner/index.js +185 -76
- package/dist/api/server-galleries/mutations/useEditGallery/index.js +164 -55
- package/dist/api/server-galleries/mutations/useRemoveAssetFromGallery/index.js +199 -86
- package/dist/api/server-galleries/mutations/useRemoveCollectionFromGallery/index.js +194 -81
- package/dist/api/server-galleries/queries/useFetchGallery/index.js +39 -31
- package/dist/api/server-galleries/queries/useFetchGalleryAssets/index.js +256 -103
- package/dist/api/server-galleries/queries/useFetchMyFavorites/index.js +245 -108
- package/dist/api/server-galleries/queries/useFetchMyGalleries/index.js +250 -112
- package/dist/api/server-galleries/queries/useFetchSubscribedGalleries/index.js +235 -86
- package/dist/api/server-galleries/queries/useFetchUserFavorites/index.js +254 -119
- package/dist/api/server-identities/mutations/useAddWalletElrond/index.js +53 -30
- package/dist/api/server-identities/mutations/useAddWalletFlow/index.js +184 -66
- package/dist/api/server-identities/mutations/useAddWalletMetamask/index.js +219 -76
- package/dist/api/server-identities/mutations/useAddWalletSolana/index.js +193 -71
- package/dist/api/server-identities/mutations/useAddWalletTezos/index.js +184 -66
- package/dist/api/server-identities/mutations/useFollowProfile/index.js +56 -31
- package/dist/api/server-identities/mutations/useGenerateNewInviteCodes/index.js +184 -71
- package/dist/api/server-identities/mutations/useInviteCode/index.js +192 -65
- package/dist/api/server-identities/mutations/useRemoveWallet/index.js +50 -35
- package/dist/api/server-identities/mutations/useRevokeToken/index.js +160 -59
- package/dist/api/server-identities/mutations/useSaveEmailOfJoiner/index.js +193 -65
- package/dist/api/server-identities/mutations/useUnfollowProfile/index.js +58 -30
- package/dist/api/server-identities/queries/useFetchProfile/index.js +85 -61
- package/dist/api/server-identities/queries/useFetchUserWallets/index.js +35 -15
- package/dist/api/server-identities/queries/useGetMyInviteCodes/index.js +43 -27
- package/dist/api/server-medias/mutations/useDeleteUserpic/index.js +28 -13
- package/dist/api/server-medias/mutations/useUploadUserpic/index.js +181 -60
- package/dist/api/server-medias/queries/useFetchUserPic/index.js +43 -31
- package/dist/api/server-opportunities/mutations/useDislikeOpportunity.js +171 -65
- package/dist/api/server-opportunities/mutations/useLikeOpportunity.js +171 -65
- package/dist/api/server-opportunities/mutations/useOpenOpportunity/index.js +171 -65
- package/dist/api/server-opportunities/queries/useGetOpportunities.js +25 -16
- package/dist/api/server-preferences/mutations/useSaveUserExpectations/index.jsx +199 -75
- package/dist/api/server-preferences/mutations/useSaveUserInterests/index.js +199 -75
- package/dist/api/server-preferences/queries/fetchSearchResultSelections/index.js +26 -19
- package/dist/api/server-preferences/queries/fetchSearchResultSelections/queryData.js +235 -76
- package/dist/api/server-preferences/queries/useFetchExpectations/index.js +20 -14
- package/dist/api/server-preferences/queries/useFetchInterests/index.js +20 -14
- package/dist/api/server-preferences/queries/useFetchSearchResultTimeSelection/index.js +35 -27
- package/dist/api/server-preferences/queries/useFetchUserInterests/index.js +21 -14
- package/dist/api/server-preferences/queries/useSearchResultBlockchainSelections/index.js +38 -28
- package/dist/api/server-preferences/queries/useSearchResultCategorySelections/index.js +35 -27
- package/dist/api/server-preferences/queries/useSearchResultStatusSelections/index.js +36 -28
- package/dist/api/server-preferences/queries/useSearchResultTypeSelections/index.js +59 -33
- package/dist/api/server-search/queries/useFetchAllCreations/index.js +304 -150
- package/dist/api/server-search/queries/useFetchAssetsCount/index.js +20 -20
- package/dist/api/server-search/queries/useFetchCollection/index.js +56 -42
- package/dist/api/server-search/queries/useFetchCollections/index.js +299 -141
- package/dist/api/server-search/queries/useFetchDynamicCollectionData/index.js +342 -178
- package/dist/api/server-search/queries/useFetchFindAllTopEntitiesByName/index.js +66 -41
- package/dist/api/server-search/queries/useFetchNetWorth/index.js +23 -16
- package/dist/api/server-search/queries/useFindCreations/index.js +331 -162
- package/dist/api/server-search/queries/useFindProfilesByName/index.js +77 -49
- package/dist/api/server-search/queries/useFindShowcaseItems/index.js +32 -32
- package/dist/api/server-search/queries/useFindUserCreations/index.js +315 -151
- package/dist/api/server-search/queries/useFindUserShowcaseItems/index.js +30 -30
- package/dist/api/subscriptions/SubscriberInviteNotification.jsx +49 -29
- package/dist/components/CreationCard/CardHead.jsx +277 -103
- package/dist/components/CreationCard/index.jsx +211 -32
- package/dist/components/addWalletsRedirectPage/index.jsx +66 -15
- package/dist/components/assetJSONLD.jsx +24 -24
- package/dist/components/assetPage/assetLikes/index.jsx +98 -43
- package/dist/components/assetPage/assetNft/index.jsx +61 -19
- package/dist/components/assetPage/assetWrapper/index.jsx +170 -35
- package/dist/components/assetPage/audioVideoPlayer/Duration.jsx +17 -12
- package/dist/components/assetPage/audioVideoPlayer/index.jsx +462 -149
- package/dist/components/assetPage/category/index.jsx +89 -16
- package/dist/components/assetPage/description/index.jsx +70 -17
- package/dist/components/assetPage/detailsAccordeon/index.jsx +81 -18
- package/dist/components/assetPage/figCaption/index.jsx +445 -147
- package/dist/components/assetPage/information/index.jsx +194 -42
- package/dist/components/assetPage/marketPlaces/index.jsx +109 -20
- package/dist/components/assetPage/media/AssetImage/index.jsx +256 -54
- package/dist/components/assetPage/moreDropDown/index.jsx +224 -38
- package/dist/components/assetPage/participants/index.jsx +404 -91
- package/dist/components/assetPage/priceRank/index.jsx +177 -24
- package/dist/components/assetPage/properties/index.jsx +90 -17
- package/dist/components/assetPage/slider/index.jsx +183 -49
- package/dist/components/assetPage/slider/slideItem.jsx +48 -7
- package/dist/components/assetPage/slider/store.js +9 -6
- package/dist/components/assetPage/tittle/index.jsx +134 -31
- package/dist/components/assetPage/viewer3D/index.jsx +216 -51
- package/dist/components/banner/index.jsx +71 -20
- package/dist/components/base/Meta/index.jsx +139 -48
- package/dist/components/base/NoSSR/index.jsx +10 -2
- package/dist/components/collectionPage/collectionLike/index.jsx +57 -23
- package/dist/components/deleteDialog/index.jsx +306 -78
- package/dist/components/editProfile/Cropper/index.jsx +235 -73
- package/dist/components/editProfile/UserPicProfile/index.jsx +462 -206
- package/dist/components/favoriteList/add/addAssetToFavoriteList/index.jsx +195 -57
- package/dist/components/favoriteList/add/addCollectionToFavoriteList/index.jsx +197 -55
- package/dist/components/favoriteList/add/addCreationToFavoriteList/index.jsx +197 -57
- package/dist/components/filters/applyResetBtns/index.jsx +55 -10
- package/dist/components/filters/galleriesFiltersForm/index.jsx +137 -51
- package/dist/components/filters/index.jsx +189 -57
- package/dist/components/filters/mobileFilters/index.jsx +26 -7
- package/dist/components/filters/setsFiltersForm/index.jsx +113 -43
- package/dist/components/forms/form/index.jsx +289 -92
- package/dist/components/forms/formsNavigation/index.jsx +146 -34
- package/dist/components/forms/formsTemplate/index.jsx +930 -697
- package/dist/components/forms/types/index.js +7 -7
- package/dist/components/gallery/add/addAssetToGallery/index.jsx +196 -57
- package/dist/components/gallery/add/addCreationToGallery/index.jsx +240 -69
- package/dist/components/gradientLabel/index.jsx +37 -6
- package/dist/components/headers/components/MobileToggle/index.jsx +1 -1
- package/dist/components/headers/components/headerExperienceLabel/index.jsx +43 -13
- package/dist/components/headers/components/headerUserPic/index.jsx +48 -11
- package/dist/components/headers/header/index.jsx +49 -14
- package/dist/components/headers/headerSearch/index.jsx +58 -19
- package/dist/components/headers/headerSimple/index.jsx +49 -13
- package/dist/components/inviteCodesForms/getEarlyAccessForm/index.jsx +326 -148
- package/dist/components/inviteCodesForms/joinWaitListForm/index.jsx +271 -103
- package/dist/components/inviteCodesForms/styles/index.js +75 -11
- package/dist/components/inviteCodesPage/components/index.jsx +1 -0
- package/dist/components/inviteCodesPage/components/inviteCodes/index.jsx +25 -9
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCode/index.jsx +48 -9
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCode/loader/index.jsx +28 -11
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/index.jsx +30 -11
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/loader/index.jsx +21 -6
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeCopy/index.jsx +32 -9
- package/dist/components/inviteCodesPage/components/inviteCodes/inviteCodeDate/index.jsx +29 -9
- package/dist/components/inviteCodesPage/wrappers/index.jsx +1 -0
- package/dist/components/inviteCodesPage/wrappers/resumeCodes/index.jsx +137 -22
- package/dist/components/inviteCodesPage/wrappers/resumeCodes/loader/index.jsx +22 -6
- package/dist/components/inviteCodesPage/wrappers/unusedCodes/index.jsx +40 -16
- package/dist/components/inviteCodesPage/wrappers/usedCodes/index.jsx +51 -21
- package/dist/components/linkTabs/index.jsx +56 -8
- package/dist/components/linkTabs/linkTab/index.jsx +83 -10
- package/dist/components/myWallets/index.jsx +56 -15
- package/dist/components/myWallets/myWalletItem/index.jsx +359 -90
- package/dist/components/navigation/index.jsx +156 -25
- package/dist/components/profile/MultiversXAudit/MultiversXAudit.jsx +243 -109
- package/dist/components/profile/ProfileTabs.jsx +61 -34
- package/dist/components/profile/aboutText/index.jsx +240 -53
- package/dist/components/profile/addToGalleryBtns/index.jsx +114 -16
- package/dist/components/profile/followersSocial/followers/index.jsx +70 -10
- package/dist/components/profile/followersSocial/index.jsx +37 -13
- package/dist/components/profile/followersSocial/social/index.jsx +80 -27
- package/dist/components/profile/info/index.jsx +86 -22
- package/dist/components/profile/interests/data.js +17 -16
- package/dist/components/profile/interests/index.jsx +149 -33
- package/dist/components/profile/jsonLd/index.jsx +14 -3
- package/dist/components/profile/pageHead/index.jsx +106 -35
- package/dist/components/profile/profileSkeleton/index.jsx +51 -17
- package/dist/components/profile/profileUserCards/index.jsx +26 -7
- package/dist/components/profile/profileUserCards/profileUserCard/index.jsx +340 -101
- package/dist/components/profile/rank/index.jsx +78 -11
- package/dist/components/profile/stats/index.jsx +46 -9
- package/dist/components/profile/wallets/index.jsx +142 -34
- package/dist/components/profile/wrapper/index.jsx +16 -8
- package/dist/components/registrationPage/index.jsx +1 -0
- package/dist/components/registrationPage/registrationSelectBox/index.jsx +91 -10
- package/dist/components/registrationPage/registrationSelection/index.jsx +99 -33
- package/dist/components/rewards/FAQ/index.jsx +281 -77
- package/dist/components/rewards/clarifications/index.jsx +98 -23
- package/dist/components/rewards/logoBottom/index.jsx +46 -12
- package/dist/components/rewards/prograssBar/index.jsx +66 -12
- package/dist/components/rewards/rewardsButton/index.jsx +78 -6
- package/dist/components/rewards/seasonBanner/index.jsx +86 -11
- package/dist/components/rewards/taskExpTab/index.jsx +200 -30
- package/dist/components/rewards/tasksGrid/index.jsx +360 -117
- package/dist/components/rewards/userExp/index.jsx +256 -32
- package/dist/components/search/SearchInputContainer.jsx +476 -190
- package/dist/components/search/index.jsx +350 -37
- package/dist/components/search/searchCategories/index.jsx +75 -38
- package/dist/components/search/searchCloseMoreButtons/index.jsx +131 -35
- package/dist/components/search/searchResultCaption/index.jsx +71 -13
- package/dist/components/search/searchSelectsGalleries/index.jsx +103 -23
- package/dist/components/search/searchSelectsSets/index.jsx +101 -23
- package/dist/components/search/searchSimpleInput/index.jsx +201 -31
- package/dist/components/search/searchSuggestions/index.jsx +273 -68
- package/dist/components/search/searchSuggestions/searchSuggestionsCaption/index.jsx +59 -8
- package/dist/components/search/searchSuggestions/searchSuggestionsFooter/index.jsx +65 -8
- package/dist/components/search/searchSuggestions/searchSuggestionsItem/index.jsx +111 -25
- package/dist/components/search/searchSuggestions/searchSuggestionsItem/searchSuggestionsItemSkeleton/index.jsx +124 -21
- package/dist/components/search/searchSuggestions/searchSuggestionsNotFound/index.jsx +67 -8
- package/dist/components/shareDialog/index.jsx +277 -34
- package/dist/components/showcaseAssets/showcaseSort/data.js +23 -23
- package/dist/components/showcaseAssets/showcaseSort/index.jsx +48 -10
- package/dist/components/sidebar/data.jsx +83 -62
- package/dist/components/sidebar/index.jsx +278 -75
- package/dist/components/sidebar/initializer.jsx +13 -3
- package/dist/components/sidebar/sidebarFilters/index.jsx +42 -9
- package/dist/components/sidebar/sidebarInviteCodeLabel/index.jsx +95 -18
- package/dist/components/socialButtons/data.jsx +44 -30
- package/dist/components/socialButtons/icons/discord.jsx +14 -3
- package/dist/components/socialButtons/icons/facebook.jsx +15 -4
- package/dist/components/socialButtons/icons/instagram.jsx +19 -5
- package/dist/components/socialButtons/icons/medium.jsx +14 -3
- package/dist/components/socialButtons/icons/telegram.jsx +14 -3
- package/dist/components/socialButtons/icons/twitter.jsx +14 -3
- package/dist/components/socialButtons/index.jsx +63 -15
- package/dist/components/tabs/icons/bell.jsx +14 -5
- package/dist/components/tabs/icons/profile.jsx +23 -5
- package/dist/components/tabs/icons/secure.jsx +21 -4
- package/dist/components/tabs/index.jsx +95 -35
- package/dist/components/toTopBtn/index.jsx +112 -36
- package/dist/dto/AssetEntity/index.js +249 -194
- package/dist/dto/AssetEntity/views/AssetAudio/index.jsx +67 -27
- package/dist/dto/AssetEntity/views/AssetImage/index.jsx +79 -38
- package/dist/dto/AssetEntity/views/AssetObject/index.jsx +86 -58
- package/dist/dto/AssetEntity/views/AssetOther/index.jsx +87 -42
- package/dist/dto/AssetEntity/views/AssetScreenshot/index.jsx +81 -38
- package/dist/dto/AssetEntity/views/AssetVideo/index.jsx +67 -27
- package/dist/dto/AssetEntity/views/index.js +1 -0
- package/dist/dto/Collection/CollectionCreationEntity/index.js +161 -145
- package/dist/dto/Collection/CollectionEntity/index.js +87 -69
- package/dist/dto/CreationEntity/index.js +167 -152
- package/dist/dto/GalleryEntityV2/index.js +77 -65
- package/dist/dto/common/ItemType/data.js +41 -33
- package/dist/dto/common/ItemType/index.jsx +27 -27
- package/dist/dto/common/ItemViews/CreationAudio/index.jsx +68 -27
- package/dist/dto/common/ItemViews/CreationImage/index.jsx +72 -38
- package/dist/dto/common/ItemViews/CreationObject/index.jsx +66 -32
- package/dist/dto/common/ItemViews/CreationOther/index.jsx +67 -27
- package/dist/dto/common/ItemViews/CreationVideo/index.jsx +67 -27
- package/dist/dto/common/Media/Audio/index.jsx +76 -43
- package/dist/dto/common/Media/Image/index.jsx +78 -51
- package/dist/dto/common/Media/Object/index.jsx +77 -50
- package/dist/dto/common/Media/Other/index.jsx +100 -70
- package/dist/dto/common/Media/Screenshot/index.jsx +78 -51
- package/dist/dto/common/Media/Urls/index.js +110 -71
- package/dist/dto/common/Media/Video/index.jsx +76 -43
- package/dist/dto/common/Media/index.jsx +41 -34
- package/dist/fonts/FontsInitializeLayout.jsx +96 -24
- package/dist/fonts/vars.js +4 -1
- package/dist/hooks/apollo/index.jsx +14 -4
- package/dist/hooks/audio/useMultiAudio/index.jsx +63 -46
- package/dist/hooks/extension/useExtension/index.js +182 -62
- package/dist/hooks/favorites/useGetFavoriteGallaryCreations/index.js +346 -172
- package/dist/hooks/favorites/useGetUserFevoritesCreations/index.js +421 -247
- package/dist/hooks/galleries/useGetUserGalleriesCreations/index.js +397 -231
- package/dist/hooks/likes/dynamic/useFindCollectionsAndLikes.jsx +385 -196
- package/dist/hooks/likes/dynamic/useFindCreationsAndLikes.jsx +371 -185
- package/dist/hooks/likes/dynamic/useGetCollectionInfoAndLikes.jsx +364 -186
- package/dist/hooks/likes/dynamic/useGetCreationsAndLikes.jsx +374 -200
- package/dist/hooks/likes/dynamic/useGetCreationsAndLikesByType.jsx +393 -212
- package/dist/hooks/likes/dynamic/useGetMixedLikesFavoriteList.jsx +81 -42
- package/dist/hooks/likes/dynamic/useGetTableLikes.jsx +121 -98
- package/dist/hooks/likes/index.js +308 -153
- package/dist/hooks/likes/useGetLikesAsset.js +305 -140
- package/dist/hooks/useToGalleryAsset/index.jsx +109 -65
- package/dist/layouts/GlobalLayout.jsx +23 -10
- package/dist/layouts/base/LWithRegularHeader/index.jsx +29 -11
- package/dist/layouts/base/LWithSearchHeader/index.jsx +10 -6
- package/dist/layouts/base/LWithSimpleHeader/index.jsx +10 -6
- package/dist/layouts/base/LWithoutHeader/index.jsx +32 -10
- package/dist/layouts/custom/accountLayout/index.jsx +7 -3
- package/dist/layouts/custom/formsLayout/index.jsx +7 -3
- package/dist/layouts/custom/mainLayout/index.jsx +9 -3
- package/dist/layouts/custom/searchLayout/index.jsx +6 -3
- package/dist/layouts/custom/simpleLayout/index.jsx +9 -3
- package/dist/layouts/custom/styles.js +66 -6
- package/dist/layouts/pageTransitionLayout.jsx +29 -18
- package/dist/modules/gallery/api/useGetAssetsAndCollectionForFavorite.js +447 -257
- package/dist/modules/gallery/api/useGetFavoriteGallery.js +49 -30
- package/dist/modules/gallery/store.js +231 -106
- package/dist/modules/gallery/ui/AllResults.jsx +12 -4
- package/dist/modules/gallery/ui/Description.jsx +98 -32
- package/dist/modules/gallery/ui/EditGallery.jsx +242 -82
- package/dist/modules/gallery/ui/GalleryDeleteIcon.jsx +38 -13
- package/dist/modules/gallery/ui/PlaceholderItemsGallery.jsx +71 -10
- package/dist/modules/gallery/ui/STopSections.js +43 -5
- package/dist/modules/gallery/ui/chooseGalleryItems/chooseGalleryItem/index.jsx +107 -21
- package/dist/modules/gallery/ui/chooseGalleryItems/index.jsx +255 -71
- package/dist/modules/gallery/ui/createGalleryForm/index.jsx +323 -115
- package/dist/modules/gallery/ui/editGalleryForm/index.jsx +360 -129
- package/dist/modules/gallery/ui/itemsPreview/index.jsx +329 -153
- package/dist/modules/notifications/CreatorNotifications.jsx +25 -7
- package/dist/modules/notifications/index.jsx +1 -0
- package/dist/modules/sessionScroll/globalTabs.js +45 -45
- package/dist/modules/sessionScroll/index.js +43 -32
- package/dist/modules/sessionScroll/useVirtuosoInitialScroll.js +76 -50
- package/dist/modules/user/auth/useAuthVerification.js +201 -87
- package/dist/modules/user/auth/useSignIn.js +26 -13
- package/dist/modules/user/auth/useSignOut.js +171 -64
- package/dist/modules/user/profileData/profileDataInitialization.jsx +53 -41
- package/dist/modules/user/store.jsx +61 -40
- package/dist/modules/virtuoso/VirtuosoPageBuilder.jsx +204 -110
- package/dist/modules/virtuoso/VirtuosoToTopBtn.jsx +34 -27
- package/dist/modules/virtuoso/useSubscribeVirtuosoScrollToHeader.js +23 -20
- package/dist/modules/virtuoso/useVirtuosoData.js +56 -41
- package/dist/pages/index.jsx +8 -5
- package/dist/store/index.js +5 -2
- package/dist/store/media/index.js +75 -51
- package/dist/store/ui/index.js +310 -141
- package/dist/store/ui/utils.js +32 -25
- package/dist/styles/ScreenWidth.js +23 -18
- package/dist/styles/animations/index.jsx +34 -6
- package/dist/styles/colors/index.jsx +36 -1
- package/dist/styles/globalStyles.jsx +43 -9
- package/dist/styles/mixins/boxShadow.jsx +24 -4
- package/dist/styles/mixins/boxTransform.jsx +24 -4
- package/dist/styles/typography/index.jsx +11 -1
- package/dist/system/ActiveLink/index.jsx +43 -25
- package/dist/system/Alert/index.jsx +11 -5
- package/dist/system/Alert/type.js +6 -1
- package/dist/system/BasicOverlay/index.jsx +25 -6
- package/dist/system/Buttons/IconButton/index.jsx +1 -0
- package/dist/system/Buttons/IconWithButton/index.jsx +1 -0
- package/dist/system/Buttons/IconWithButton/themes.js +1 -1
- package/dist/system/Buttons/MainButton/index.jsx +1 -0
- package/dist/system/Buttons/MainButton/themes.js +1 -1
- package/dist/system/Buttons/SecondaryButton/index.jsx +1 -0
- package/dist/system/Cards/CardCheckbox/index.jsx +69 -11
- package/dist/system/Cards/CardContent/CardCategory/index.jsx +60 -10
- package/dist/system/Cards/CardContent/CardLikes/index.jsx +43 -13
- package/dist/system/Cards/CardContent/CardShowMore/index.jsx +109 -17
- package/dist/system/Cards/CardContent/index.jsx +122 -31
- package/dist/system/Cards/CardHeadIcons/index.jsx +276 -107
- package/dist/system/Cards/CardMedia/CardAudio/index.jsx +95 -48
- package/dist/system/Cards/CardMedia/CardImage/index.jsx +34 -9
- package/dist/system/Cards/CardMedia/CardVideo/index.jsx +79 -40
- package/dist/system/Cards/CardRank/index.jsx +130 -14
- package/dist/system/Cards/CardsGrid/index.jsx +99 -35
- package/dist/system/Cards/MultiMediaCard/index.jsx +152 -50
- package/dist/system/Cards/RegularCard/index.jsx +128 -27
- package/dist/system/Cards/Styles/Content.js +36 -5
- package/dist/system/Cards/Styles/Head.js +34 -5
- package/dist/system/Cards/Styles/Headicons.js +105 -6
- package/dist/system/Cards/Styles/Image.js +39 -5
- package/dist/system/Cards/Styles/Likes.js +56 -5
- package/dist/system/Cards/Styles/MultiHead.js +43 -5
- package/dist/system/Cards/Styles/Video.js +23 -5
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsError/index.jsx +197 -61
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsNoResults/index.jsx +38 -9
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/CardsSkeleton/index.jsx +62 -16
- package/dist/system/CardsHolderWithSkeleton/CardsHolder/index.jsx +97 -22
- package/dist/system/CardsHolderWithSkeleton/CardsHolderLoader/index.jsx +49 -9
- package/dist/system/CardsHolderWithSkeleton/index.jsx +47 -7
- package/dist/system/DropDown/DropDown.test.jsx +43 -30
- package/dist/system/DropDown/index.jsx +62 -21
- package/dist/system/Filters/helpers.js +17 -3
- package/dist/system/Filters/type.js +5 -5
- package/dist/system/Flex/index.jsx +1 -1
- package/dist/system/Forms/Checkbox/Checkbox.test.jsx +60 -55
- package/dist/system/Forms/Checkbox/index.jsx +93 -22
- package/dist/system/Forms/DatePicker/index.jsx +161 -20
- package/dist/system/Forms/ErrorLabel/ErrorLabel.test.jsx +17 -14
- package/dist/system/Forms/ErrorLabel/index.jsx +38 -7
- package/dist/system/Forms/Input/Input.test.jsx +48 -36
- package/dist/system/Forms/Input/index.jsx +121 -16
- package/dist/system/Forms/Messages/index.js +58 -57
- package/dist/system/Forms/RadioInput/index.jsx +78 -17
- package/dist/system/Forms/Selects/DesktopSelect/index.jsx +352 -95
- package/dist/system/Forms/Selects/MobileSelect/index.jsx +53 -20
- package/dist/system/Forms/TextArea/index.jsx +113 -15
- package/dist/system/Forms/index.js +1 -0
- package/dist/system/Img/ExternalImage/index.jsx +40 -7
- package/dist/system/Img/ImageInterceptor/ImageInterceptor.test.jsx +70 -41
- package/dist/system/Img/ImageInterceptor/index.jsx +60 -20
- package/dist/system/Img/Profilepic/index.jsx +52 -21
- package/dist/system/Img/Userpic/UserPic.test.jsx +73 -50
- package/dist/system/Img/Userpic/index.jsx +142 -44
- package/dist/system/Labels/ExperienceLabel/ExperienceLabel.test.jsx +46 -41
- package/dist/system/Labels/ExperienceLabel/index.jsx +111 -18
- package/dist/system/Labels/InviteLabel/InviteLabel.test.jsx +41 -36
- package/dist/system/Labels/InviteLabel/index.jsx +67 -17
- package/dist/system/Labels/SkeletonLabel/index.jsx +1 -0
- package/dist/system/Modals/Modal/Modal.test.jsx +26 -22
- package/dist/system/Modals/Modal/index.jsx +84 -12
- package/dist/system/Modals/ModalSidebar/CreatorModalSidebarPortal.jsx +21 -7
- package/dist/system/Modals/ModalSidebar/ModalSidebar.test.jsx +25 -21
- package/dist/system/Modals/ModalSidebar/ModalSidebarPortal.jsx +20 -7
- package/dist/system/Modals/ModalSidebar/index.jsx +80 -12
- package/dist/system/Overlay/Overlay.test.jsx +39 -33
- package/dist/system/Overlay/index.jsx +57 -9
- package/dist/system/PageLoader/index.jsx +1 -0
- package/dist/system/Palete/index.jsx +1 -0
- package/dist/system/ShareIconResize.jsx +48 -12
- package/dist/system/Tabs/TabNavLink/TabNavLink.test.jsx +32 -22
- package/dist/system/Tabs/TabNavLink/index.jsx +67 -8
- package/dist/system/Tabs/TabsNav/TabsNav.test.jsx +47 -25
- package/dist/system/Tabs/TabsNav/index.jsx +45 -12
- package/dist/system/Tabs/TabsPanel/TabsPanel.test.jsx +39 -25
- package/dist/system/Tabs/TabsPanel/index.jsx +28 -7
- package/dist/system/Text/index.jsx +1 -1
- package/dist/system/theme.js +5 -1
- package/dist/types/api/graphql/index.d.ts +7 -2
- package/dist/types/api/server-assets/mutations/useDislikeAsset/index.d.ts +6 -3
- package/dist/types/api/server-assets/mutations/useLikeAsset/index.d.ts +4 -3
- package/dist/types/api/server-assets/queries/useFetchAssets/index.d.ts +14 -5
- package/dist/types/api/server-assets/queries/useFetchDynamicAssetLikes/index.d.ts +8 -5
- package/dist/types/api/server-assets/queries/useFetchDynamicAssetsLikes/index.d.ts +7 -4
- package/dist/types/api/server-collection/mutations/useDislikeCollection/index.d.ts +6 -3
- package/dist/types/api/server-collection/mutations/useLikeCollection/index.d.ts +6 -3
- package/dist/types/api/server-experiences/queries/useFetchMyTasks/index.d.ts +36 -20
- package/dist/types/api/server-galleries/mutations/useAddAssetsToGallery/index.d.ts +7 -3
- package/dist/types/api/server-galleries/mutations/useAddChangeGalleryBanner/index.d.ts +7 -1
- package/dist/types/api/server-galleries/mutations/useAddCollectionsToGallery/index.d.ts +7 -3
- package/dist/types/api/server-galleries/mutations/useAddCreationsToGallery/index.d.ts +7 -3
- package/dist/types/api/server-galleries/mutations/useCreateFavorites/index.d.ts +8 -2
- package/dist/types/api/server-galleries/mutations/useCreateGallery/index.d.ts +8 -2
- package/dist/types/api/server-galleries/mutations/useDeleteGallery/index.d.ts +7 -4
- package/dist/types/api/server-galleries/mutations/useDeleteGalleryBanner/index.d.ts +5 -2
- package/dist/types/api/server-galleries/mutations/useEditGallery/index.d.ts +8 -1
- package/dist/types/api/server-galleries/mutations/useRemoveAssetFromGallery/index.d.ts +7 -3
- package/dist/types/api/server-galleries/mutations/useRemoveCollectionFromGallery/index.d.ts +7 -3
- package/dist/types/api/server-galleries/queries/useFetchGallery/index.d.ts +20 -9
- package/dist/types/api/server-galleries/queries/useFetchGalleryAssets/index.d.ts +18 -15
- package/dist/types/api/server-galleries/queries/useFetchMyFavorites/index.d.ts +7 -5
- package/dist/types/api/server-galleries/queries/useFetchMyGalleries/index.d.ts +7 -5
- package/dist/types/api/server-galleries/queries/useFetchSubscribedGalleries/index.d.ts +10 -7
- package/dist/types/api/server-galleries/queries/useFetchUserFavorites/index.d.ts +13 -7
- package/dist/types/api/server-identities/mutations/useAddWalletElrond/index.d.ts +8 -2
- package/dist/types/api/server-identities/mutations/useAddWalletFlow/index.d.ts +5 -1
- package/dist/types/api/server-identities/mutations/useAddWalletMetamask/index.d.ts +11 -3
- package/dist/types/api/server-identities/mutations/useAddWalletSolana/index.d.ts +5 -1
- package/dist/types/api/server-identities/mutations/useAddWalletTezos/index.d.ts +5 -1
- package/dist/types/api/server-identities/mutations/useFollowProfile/index.d.ts +13 -4
- package/dist/types/api/server-identities/mutations/useGenerateNewInviteCodes/index.d.ts +6 -3
- package/dist/types/api/server-identities/mutations/useRevokeToken/index.d.ts +1 -1
- package/dist/types/api/server-identities/mutations/useUnfollowProfile/index.d.ts +13 -4
- package/dist/types/api/server-identities/queries/useFetchProfile/index.d.ts +23 -10
- package/dist/types/api/server-identities/queries/useGetMyInviteCodes/index.d.ts +5 -4
- package/dist/types/api/server-medias/mutations/useDeleteUserpic/index.d.ts +12 -3
- package/dist/types/api/server-medias/mutations/useUploadUserpic/index.d.ts +3 -1
- package/dist/types/api/server-opportunities/mutations/useDislikeOpportunity.d.ts +4 -1
- package/dist/types/api/server-opportunities/mutations/useLikeOpportunity.d.ts +4 -1
- package/dist/types/api/server-opportunities/mutations/useOpenOpportunity/index.d.ts +4 -1
- package/dist/types/api/server-opportunities/queries/useGetOpportunities.d.ts +41 -2
- package/dist/types/api/server-preferences/mutations/useSaveUserExpectations/index.d.ts +1 -1
- package/dist/types/api/server-preferences/mutations/useSaveUserInterests/index.d.ts +1 -1
- package/dist/types/api/server-preferences/queries/fetchSearchResultSelections/queryData.d.ts +16 -7
- package/dist/types/api/server-preferences/queries/useFetchSearchResultTimeSelection/index.d.ts +14 -7
- package/dist/types/api/server-preferences/queries/useFetchUserInterests/index.d.ts +4 -3
- package/dist/types/api/server-preferences/queries/useSearchResultBlockchainSelections/index.d.ts +15 -8
- package/dist/types/api/server-preferences/queries/useSearchResultCategorySelections/index.d.ts +16 -7
- package/dist/types/api/server-preferences/queries/useSearchResultStatusSelections/index.d.ts +17 -8
- package/dist/types/api/server-preferences/queries/useSearchResultTypeSelections/index.d.ts +17 -8
- package/dist/types/api/server-search/queries/useFetchAssetsCount/index.d.ts +4 -4
- package/dist/types/api/server-search/queries/useFetchCollection/index.d.ts +25 -11
- package/dist/types/api/server-search/queries/useFetchCollections/index.d.ts +23 -13
- package/dist/types/api/server-search/queries/useFetchDynamicCollectionData/index.d.ts +13 -9
- package/dist/types/api/server-search/queries/useFetchNetWorth/index.d.ts +4 -3
- package/dist/types/api/subscriptions/SubscriberInviteNotification.d.ts +3 -1
- package/dist/types/components/CreationCard/CardHead.d.ts +22 -10
- package/dist/types/components/CreationCard/index.d.ts +39 -18
- package/dist/types/components/addWalletsRedirectPage/index.d.ts +5 -2
- package/dist/types/components/assetPage/assetLikes/index.d.ts +9 -4
- package/dist/types/components/assetPage/assetNft/index.d.ts +5 -1
- package/dist/types/components/assetPage/assetWrapper/index.d.ts +12 -5
- package/dist/types/components/assetPage/audioVideoPlayer/Duration.d.ts +2 -1
- package/dist/types/components/assetPage/audioVideoPlayer/index.d.ts +99 -87
- package/dist/types/components/assetPage/category/index.d.ts +5 -2
- package/dist/types/components/assetPage/description/index.d.ts +5 -1
- package/dist/types/components/assetPage/detailsAccordeon/index.d.ts +6 -2
- package/dist/types/components/assetPage/figCaption/index.d.ts +6 -2
- package/dist/types/components/assetPage/information/index.d.ts +6 -2
- package/dist/types/components/assetPage/marketPlaces/index.d.ts +6 -2
- package/dist/types/components/assetPage/media/AssetImage/index.d.ts +13 -6
- package/dist/types/components/assetPage/moreDropDown/index.d.ts +5 -4
- package/dist/types/components/assetPage/participants/index.d.ts +12 -5
- package/dist/types/components/assetPage/priceRank/index.d.ts +11 -5
- package/dist/types/components/assetPage/properties/index.d.ts +5 -1
- package/dist/types/components/assetPage/slider/index.d.ts +7 -2
- package/dist/types/components/assetPage/slider/slideItem.d.ts +8 -3
- package/dist/types/components/assetPage/slider/store.d.ts +7 -5
- package/dist/types/components/assetPage/tittle/index.d.ts +12 -5
- package/dist/types/components/assetPage/viewer3D/index.d.ts +10 -4
- package/dist/types/components/banner/index.d.ts +1 -0
- package/dist/types/components/base/Meta/index.d.ts +1 -1
- package/dist/types/components/base/NoSSR/index.d.ts +3 -2
- package/dist/types/components/collectionPage/collectionLike/index.d.ts +9 -4
- package/dist/types/components/deleteDialog/index.d.ts +11 -5
- package/dist/types/components/editProfile/Cropper/index.d.ts +13 -15
- package/dist/types/components/editProfile/UserPicProfile/index.d.ts +5 -2
- package/dist/types/components/favoriteList/add/addAssetToFavoriteList/index.d.ts +2 -1
- package/dist/types/components/favoriteList/add/addCollectionToFavoriteList/index.d.ts +2 -1
- package/dist/types/components/favoriteList/add/addCreationToFavoriteList/index.d.ts +3 -2
- package/dist/types/components/filters/applyResetBtns/index.d.ts +7 -3
- package/dist/types/components/filters/galleriesFiltersForm/index.d.ts +16 -7
- package/dist/types/components/filters/index.d.ts +23 -7
- package/dist/types/components/filters/mobileFilters/index.d.ts +5 -2
- package/dist/types/components/filters/setsFiltersForm/index.d.ts +14 -6
- package/dist/types/components/forms/form/index.d.ts +10 -8
- package/dist/types/components/forms/formsNavigation/index.d.ts +1 -0
- package/dist/types/components/forms/formsTemplate/index.d.ts +9 -6
- package/dist/types/components/forms/types/index.d.ts +34 -22
- package/dist/types/components/gallery/add/addAssetToGallery/index.d.ts +2 -1
- package/dist/types/components/gallery/add/addCreationToGallery/index.d.ts +1 -0
- package/dist/types/components/gradientLabel/index.d.ts +1 -0
- package/dist/types/components/headers/components/headerExperienceLabel/index.d.ts +5 -3
- package/dist/types/components/headers/components/headerUserPic/index.d.ts +5 -2
- package/dist/types/components/headers/header/index.d.ts +1 -0
- package/dist/types/components/headers/headerSearch/index.d.ts +1 -0
- package/dist/types/components/headers/headerSimple/index.d.ts +1 -0
- package/dist/types/components/inviteCodesForms/getEarlyAccessForm/index.d.ts +1 -0
- package/dist/types/components/inviteCodesForms/joinWaitListForm/index.d.ts +1 -0
- package/dist/types/components/inviteCodesForms/styles/index.d.ts +55 -5
- package/dist/types/components/inviteCodesPage/components/index.d.ts +1 -0
- package/dist/types/components/inviteCodesPage/components/inviteCodes/index.d.ts +7 -3
- package/dist/types/components/inviteCodesPage/components/inviteCodes/inviteCode/index.d.ts +8 -3
- package/dist/types/components/inviteCodesPage/components/inviteCodes/inviteCode/loader/index.d.ts +1 -0
- package/dist/types/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/index.d.ts +9 -4
- package/dist/types/components/inviteCodesPage/components/inviteCodes/inviteCodeCaption/loader/index.d.ts +1 -0
- package/dist/types/components/inviteCodesPage/components/inviteCodes/inviteCodeCopy/index.d.ts +6 -2
- package/dist/types/components/inviteCodesPage/components/inviteCodes/inviteCodeDate/index.d.ts +5 -2
- package/dist/types/components/inviteCodesPage/wrappers/index.d.ts +1 -0
- package/dist/types/components/inviteCodesPage/wrappers/resumeCodes/index.d.ts +11 -5
- package/dist/types/components/inviteCodesPage/wrappers/resumeCodes/loader/index.d.ts +1 -0
- package/dist/types/components/inviteCodesPage/wrappers/unusedCodes/index.d.ts +8 -3
- package/dist/types/components/inviteCodesPage/wrappers/usedCodes/index.d.ts +8 -3
- package/dist/types/components/linkTabs/index.d.ts +9 -4
- package/dist/types/components/linkTabs/linkTab/index.d.ts +11 -5
- package/dist/types/components/myWallets/index.d.ts +1 -0
- package/dist/types/components/myWallets/myWalletItem/index.d.ts +14 -6
- package/dist/types/components/navigation/index.d.ts +4 -3
- package/dist/types/components/profile/MultiversXAudit/MultiversXAudit.d.ts +1 -1
- package/dist/types/components/profile/ProfileTabs.d.ts +11 -5
- package/dist/types/components/profile/aboutText/index.d.ts +21 -2
- package/dist/types/components/profile/addToGalleryBtns/index.d.ts +5 -2
- package/dist/types/components/profile/followersSocial/followers/index.d.ts +7 -3
- package/dist/types/components/profile/followersSocial/index.d.ts +11 -2
- package/dist/types/components/profile/followersSocial/social/index.d.ts +5 -1
- package/dist/types/components/profile/info/index.d.ts +6 -2
- package/dist/types/components/profile/interests/data.d.ts +1 -0
- package/dist/types/components/profile/interests/index.d.ts +1 -0
- package/dist/types/components/profile/interests/type.d.ts +3 -2
- package/dist/types/components/profile/jsonLd/index.d.ts +6 -2
- package/dist/types/components/profile/pageHead/index.d.ts +8 -3
- package/dist/types/components/profile/profileSkeleton/index.d.ts +5 -2
- package/dist/types/components/profile/profileUserCards/index.d.ts +5 -2
- package/dist/types/components/profile/profileUserCards/profileUserCard/index.d.ts +16 -7
- package/dist/types/components/profile/rank/index.d.ts +5 -1
- package/dist/types/components/profile/stats/index.d.ts +5 -1
- package/dist/types/components/profile/wallets/index.d.ts +1 -0
- package/dist/types/components/profile/wrapper/index.d.ts +10 -4
- package/dist/types/components/registrationPage/index.d.ts +1 -0
- package/dist/types/components/registrationPage/registrationSelectBox/index.d.ts +5 -4
- package/dist/types/components/registrationPage/registrationSelection/index.d.ts +12 -10
- package/dist/types/components/rewards/FAQ/index.d.ts +1 -0
- package/dist/types/components/rewards/clarifications/index.d.ts +8 -6
- package/dist/types/components/rewards/logoBottom/index.d.ts +1 -1
- package/dist/types/components/rewards/prograssBar/index.d.ts +9 -5
- package/dist/types/components/rewards/rewardsButton/index.d.ts +11 -1
- package/dist/types/components/rewards/seasonBanner/index.d.ts +5 -3
- package/dist/types/components/rewards/taskExpTab/index.d.ts +21 -10
- package/dist/types/components/rewards/tasksGrid/index.d.ts +6 -3
- package/dist/types/components/rewards/userExp/index.d.ts +17 -8
- package/dist/types/components/search/SearchInputContainer.d.ts +35 -21
- package/dist/types/components/search/index.d.ts +1 -0
- package/dist/types/components/search/searchCategories/index.d.ts +1 -0
- package/dist/types/components/search/searchCategories/type.d.ts +2 -2
- package/dist/types/components/search/searchCloseMoreButtons/index.d.ts +14 -9
- package/dist/types/components/search/searchResultCaption/index.d.ts +9 -4
- package/dist/types/components/search/searchSelectsGalleries/index.d.ts +12 -5
- package/dist/types/components/search/searchSelectsSets/index.d.ts +10 -4
- package/dist/types/components/search/searchSimpleInput/index.d.ts +5 -2
- package/dist/types/components/search/searchSuggestions/index.d.ts +9 -6
- package/dist/types/components/search/searchSuggestions/searchSuggestionsCaption/index.d.ts +3 -2
- package/dist/types/components/search/searchSuggestions/searchSuggestionsFooter/index.d.ts +1 -0
- package/dist/types/components/search/searchSuggestions/searchSuggestionsItem/index.d.ts +7 -6
- package/dist/types/components/search/searchSuggestions/searchSuggestionsItem/searchSuggestionsItemSkeleton/index.d.ts +1 -0
- package/dist/types/components/search/searchSuggestions/searchSuggestionsNotFound/index.d.ts +5 -2
- package/dist/types/components/shareDialog/index.d.ts +33 -29
- package/dist/types/components/showcaseAssets/showcaseSort/data.d.ts +1 -0
- package/dist/types/components/showcaseAssets/showcaseSort/index.d.ts +10 -4
- package/dist/types/components/sidebar/data.d.ts +23 -15
- package/dist/types/components/sidebar/index.d.ts +1 -0
- package/dist/types/components/sidebar/initializer.d.ts +1 -1
- package/dist/types/components/sidebar/sidebarFilters/index.d.ts +9 -4
- package/dist/types/components/sidebar/sidebarInviteCodeLabel/index.d.ts +1 -0
- package/dist/types/components/socialButtons/data.d.ts +1 -0
- package/dist/types/components/socialButtons/icons/discord.d.ts +1 -1
- package/dist/types/components/socialButtons/icons/facebook.d.ts +1 -1
- package/dist/types/components/socialButtons/icons/instagram.d.ts +1 -1
- package/dist/types/components/socialButtons/icons/medium.d.ts +1 -1
- package/dist/types/components/socialButtons/icons/telegram.d.ts +1 -1
- package/dist/types/components/socialButtons/icons/twitter.d.ts +1 -1
- package/dist/types/components/socialButtons/index.d.ts +1 -0
- package/dist/types/components/socialButtons/type.d.ts +4 -4
- package/dist/types/components/tabs/icons/bell.d.ts +2 -2
- package/dist/types/components/tabs/icons/profile.d.ts +2 -2
- package/dist/types/components/tabs/icons/secure.d.ts +2 -2
- package/dist/types/components/tabs/index.d.ts +1 -0
- package/dist/types/components/toTopBtn/index.d.ts +5 -2
- package/dist/types/dto/AssetEntity/index.d.ts +62 -55
- package/dist/types/dto/AssetEntity/interface.d.ts +39 -32
- package/dist/types/dto/AssetEntity/views/AssetAudio/index.d.ts +11 -3
- package/dist/types/dto/AssetEntity/views/AssetImage/index.d.ts +13 -4
- package/dist/types/dto/AssetEntity/views/AssetObject/index.d.ts +14 -5
- package/dist/types/dto/AssetEntity/views/AssetOther/index.d.ts +14 -5
- package/dist/types/dto/AssetEntity/views/AssetScreenshot/index.d.ts +13 -4
- package/dist/types/dto/AssetEntity/views/AssetVideo/index.d.ts +11 -3
- package/dist/types/dto/AssetEntity/views/index.d.ts +1 -0
- package/dist/types/dto/Collection/CollectionCreationEntity/index.d.ts +39 -37
- package/dist/types/dto/Collection/CollectionCreationEntity/interface.d.ts +20 -18
- package/dist/types/dto/Collection/CollectionEntity/index.d.ts +33 -27
- package/dist/types/dto/Collection/CollectionEntity/interface.d.ts +18 -13
- package/dist/types/dto/CreationEntity/index.d.ts +43 -41
- package/dist/types/dto/CreationEntity/interface.d.ts +26 -24
- package/dist/types/dto/GalleryEntityV2/index.d.ts +27 -25
- package/dist/types/dto/GalleryEntityV2/interface.d.ts +13 -11
- package/dist/types/dto/common/ItemType/data.d.ts +1 -0
- package/dist/types/dto/common/ItemType/index.d.ts +31 -31
- package/dist/types/dto/common/ItemViews/CreationAudio/index.d.ts +11 -3
- package/dist/types/dto/common/ItemViews/CreationImage/index.d.ts +13 -4
- package/dist/types/dto/common/ItemViews/CreationObject/index.d.ts +10 -2
- package/dist/types/dto/common/ItemViews/CreationOther/index.d.ts +11 -3
- package/dist/types/dto/common/ItemViews/CreationVideo/index.d.ts +11 -3
- package/dist/types/dto/common/Media/Audio/index.d.ts +15 -7
- package/dist/types/dto/common/Media/Image/index.d.ts +16 -7
- package/dist/types/dto/common/Media/Object/index.d.ts +16 -7
- package/dist/types/dto/common/Media/Other/index.d.ts +16 -7
- package/dist/types/dto/common/Media/Screenshot/index.d.ts +16 -7
- package/dist/types/dto/common/Media/Urls/index.d.ts +49 -16
- package/dist/types/dto/common/Media/Video/index.d.ts +15 -7
- package/dist/types/dto/common/Media/index.d.ts +30 -21
- package/dist/types/dto/common/Media/interface.d.ts +21 -20
- package/dist/types/entities/user/type.d.ts +8 -3
- package/dist/types/fonts/FontsInitializeLayout.d.ts +6 -3
- package/dist/types/fonts/vars.d.ts +4 -1
- package/dist/types/hooks/extension/useExtension/index.d.ts +4 -4
- package/dist/types/hooks/favorites/useGetFavoriteGallaryCreations/index.d.ts +23 -16
- package/dist/types/hooks/favorites/useGetUserFevoritesCreations/index.d.ts +28 -17
- package/dist/types/hooks/galleries/useGetUserGalleriesCreations/index.d.ts +26 -17
- package/dist/types/hooks/likes/dynamic/useGetCollectionInfoAndLikes.d.ts +18 -11
- package/dist/types/hooks/likes/dynamic/useGetMixedLikesFavoriteList.d.ts +18 -13
- package/dist/types/hooks/likes/dynamic/useGetTableLikes.d.ts +19 -9
- package/dist/types/hooks/likes/index.d.ts +20 -12
- package/dist/types/hooks/likes/useGetLikesAsset.d.ts +20 -8
- package/dist/types/hooks/useToGalleryAsset/index.d.ts +21 -12
- package/dist/types/layouts/GlobalLayout.d.ts +5 -2
- package/dist/types/layouts/base/LWithRegularHeader/index.d.ts +1 -0
- package/dist/types/layouts/base/LWithRegularHeader/type.d.ts +3 -1
- package/dist/types/layouts/base/LWithSearchHeader/index.d.ts +1 -0
- package/dist/types/layouts/base/LWithSearchHeader/type.d.ts +3 -1
- package/dist/types/layouts/base/LWithSimpleHeader/index.d.ts +1 -0
- package/dist/types/layouts/base/LWithSimpleHeader/type.d.ts +3 -1
- package/dist/types/layouts/base/LWithoutHeader/index.d.ts +1 -0
- package/dist/types/layouts/custom/accountLayout/index.d.ts +1 -0
- package/dist/types/layouts/custom/formsLayout/index.d.ts +1 -0
- package/dist/types/layouts/custom/mainLayout/index.d.ts +1 -0
- package/dist/types/layouts/custom/searchLayout/index.d.ts +1 -0
- package/dist/types/layouts/custom/simpleLayout/index.d.ts +1 -0
- package/dist/types/layouts/custom/styles.d.ts +22 -2
- package/dist/types/layouts/pageTransitionLayout.d.ts +2 -1
- package/dist/types/layouts/pageWithLayout.d.ts +10 -3
- package/dist/types/modules/gallery/api/useGetFavoriteGallery.d.ts +6 -4
- package/dist/types/modules/gallery/store.d.ts +21 -17
- package/dist/types/modules/gallery/ui/AllResults.d.ts +5 -2
- package/dist/types/modules/gallery/ui/Description.d.ts +7 -3
- package/dist/types/modules/gallery/ui/EditGallery.d.ts +18 -7
- package/dist/types/modules/gallery/ui/GalleryDeleteIcon.d.ts +7 -3
- package/dist/types/modules/gallery/ui/PlaceholderItemsGallery.d.ts +1 -1
- package/dist/types/modules/gallery/ui/STopSections.d.ts +11 -1
- package/dist/types/modules/gallery/ui/chooseGalleryItems/chooseGalleryItem/index.d.ts +10 -4
- package/dist/types/modules/gallery/ui/chooseGalleryItems/index.d.ts +15 -10
- package/dist/types/modules/gallery/ui/createGalleryForm/index.d.ts +25 -8
- package/dist/types/modules/gallery/ui/editGalleryForm/index.d.ts +13 -6
- package/dist/types/modules/gallery/ui/itemsPreview/index.d.ts +27 -13
- package/dist/types/modules/notifications/CreatorNotifications.d.ts +1 -1
- package/dist/types/modules/notifications/index.d.ts +18 -15
- package/dist/types/modules/sessionScroll/globalTabs.d.ts +10 -9
- package/dist/types/modules/sessionScroll/index.d.ts +9 -6
- package/dist/types/modules/sessionScroll/type.d.ts +5 -5
- package/dist/types/modules/sessionScroll/useVirtuosoInitialScroll.d.ts +14 -6
- package/dist/types/modules/user/auth/useSignIn.d.ts +1 -0
- package/dist/types/modules/user/profileData/profileDataInitialization.d.ts +3 -1
- package/dist/types/modules/user/store.d.ts +38 -22
- package/dist/types/modules/virtuoso/VirtuosoPageBuilder.d.ts +32 -14
- package/dist/types/modules/virtuoso/VirtuosoToTopBtn.d.ts +9 -5
- package/dist/types/modules/virtuoso/types.d.ts +3 -2
- package/dist/types/modules/virtuoso/useSubscribeVirtuosoScrollToHeader.d.ts +1 -1
- package/dist/types/modules/virtuoso/useVirtuosoData.d.ts +16 -8
- package/dist/types/pages/index.d.ts +1 -1
- package/dist/types/store/index.d.ts +13 -5
- package/dist/types/store/media/index.d.ts +4 -1
- package/dist/types/store/media/types.d.ts +7 -7
- package/dist/types/store/ui/index.d.ts +4 -1
- package/dist/types/store/ui/types.d.ts +32 -27
- package/dist/types/store/ui/utils.d.ts +7 -2
- package/dist/types/styles/ScreenWidth.d.ts +18 -18
- package/dist/types/styles/animations/index.d.ts +2 -2
- package/dist/types/styles/colors/index.d.ts +36 -1
- package/dist/types/styles/globalStyles.d.ts +3 -1
- package/dist/types/styles/mixins/boxShadow.d.ts +1 -1
- package/dist/types/styles/mixins/boxTransform.d.ts +1 -1
- package/dist/types/styles/typography/index.d.ts +11 -1
- package/dist/types/system/ActiveLink/index.d.ts +10 -5
- package/dist/types/system/Alert/index.d.ts +1 -1
- package/dist/types/system/Alert/type.d.ts +10 -2
- package/dist/types/system/BasicOverlay/index.d.ts +1 -0
- package/dist/types/system/Buttons/IconButton/index.d.ts +1 -0
- package/dist/types/system/Buttons/IconWithButton/index.d.ts +1 -0
- package/dist/types/system/Buttons/MainButton/index.d.ts +1 -0
- package/dist/types/system/Buttons/SecondaryButton/index.d.ts +1 -0
- package/dist/types/system/Cards/CardCheckbox/index.d.ts +7 -3
- package/dist/types/system/Cards/CardContent/CardCategory/index.d.ts +6 -2
- package/dist/types/system/Cards/CardContent/CardLikes/index.d.ts +7 -3
- package/dist/types/system/Cards/CardContent/CardShowMore/index.d.ts +18 -5
- package/dist/types/system/Cards/CardContent/index.d.ts +27 -13
- package/dist/types/system/Cards/CardHeadIcons/index.d.ts +24 -10
- package/dist/types/system/Cards/CardMedia/CardAudio/index.d.ts +11 -5
- package/dist/types/system/Cards/CardMedia/CardImage/index.d.ts +9 -4
- package/dist/types/system/Cards/CardMedia/CardVideo/index.d.ts +9 -4
- package/dist/types/system/Cards/CardRank/index.d.ts +2 -3
- package/dist/types/system/Cards/CardsGrid/index.d.ts +19 -9
- package/dist/types/system/Cards/MultiMediaCard/index.d.ts +10 -4
- package/dist/types/system/Cards/RegularCard/index.d.ts +28 -14
- package/dist/types/system/Cards/Styles/Content.d.ts +11 -1
- package/dist/types/system/Cards/Styles/Head.d.ts +11 -1
- package/dist/types/system/Cards/Styles/Headicons.d.ts +13 -3
- package/dist/types/system/Cards/Styles/Image.d.ts +13 -3
- package/dist/types/system/Cards/Styles/Likes.d.ts +13 -3
- package/dist/types/system/Cards/Styles/MultiHead.d.ts +11 -1
- package/dist/types/system/Cards/Styles/Video.d.ts +11 -1
- package/dist/types/system/CardsHolderWithSkeleton/CardsHolder/CardsError/index.d.ts +5 -2
- package/dist/types/system/CardsHolderWithSkeleton/CardsHolder/CardsNoResults/index.d.ts +5 -2
- package/dist/types/system/CardsHolderWithSkeleton/CardsHolder/CardsSkeleton/index.d.ts +5 -2
- package/dist/types/system/CardsHolderWithSkeleton/CardsHolder/index.d.ts +20 -13
- package/dist/types/system/CardsHolderWithSkeleton/CardsHolderLoader/index.d.ts +1 -0
- package/dist/types/system/CardsHolderWithSkeleton/index.d.ts +27 -20
- package/dist/types/system/DropDown/index.d.ts +11 -5
- package/dist/types/system/Filters/helpers.d.ts +14 -4
- package/dist/types/system/Filters/type.d.ts +10 -9
- package/dist/types/system/Forms/Checkbox/index.d.ts +16 -14
- package/dist/types/system/Forms/DatePicker/index.d.ts +9 -7
- package/dist/types/system/Forms/ErrorLabel/index.d.ts +3 -2
- package/dist/types/system/Forms/Input/index.d.ts +22 -9
- package/dist/types/system/Forms/Input/type.d.ts +3 -3
- package/dist/types/system/Forms/Messages/index.d.ts +57 -57
- package/dist/types/system/Forms/RadioInput/index.d.ts +20 -9
- package/dist/types/system/Forms/Selects/DesktopSelect/index.d.ts +15 -6
- package/dist/types/system/Forms/Selects/DesktopSelect/type.d.ts +3 -3
- package/dist/types/system/Forms/Selects/MobileSelect/index.d.ts +15 -7
- package/dist/types/system/Forms/TextArea/index.d.ts +10 -7
- package/dist/types/system/Forms/index.d.ts +1 -0
- package/dist/types/system/Img/ExternalImage/index.d.ts +11 -4
- package/dist/types/system/Img/ImageInterceptor/index.d.ts +25 -13
- package/dist/types/system/Img/Profilepic/index.d.ts +6 -4
- package/dist/types/system/Img/Userpic/index.d.ts +13 -6
- package/dist/types/system/Labels/ExperienceLabel/index.d.ts +9 -4
- package/dist/types/system/Labels/InviteLabel/index.d.ts +9 -4
- package/dist/types/system/Labels/SkeletonLabel/index.d.ts +1 -0
- package/dist/types/system/Modals/Modal/index.d.ts +1 -0
- package/dist/types/system/Modals/ModalSidebar/CreatorModalSidebarPortal.d.ts +3 -1
- package/dist/types/system/Modals/ModalSidebar/ModalSidebarPortal.d.ts +7 -3
- package/dist/types/system/Modals/ModalSidebar/index.d.ts +12 -1
- package/dist/types/system/Overlay/index.d.ts +1 -0
- package/dist/types/system/PageLoader/index.d.ts +1 -0
- package/dist/types/system/Palete/index.d.ts +1 -0
- package/dist/types/system/ShareIconResize.d.ts +1 -1
- package/dist/types/system/Tabs/TabNavLink/index.d.ts +18 -6
- package/dist/types/system/Tabs/TabsNav/index.d.ts +16 -4
- package/dist/types/system/Tabs/TabsNav/type.d.ts +3 -3
- package/dist/types/system/Tabs/TabsPanel/index.d.ts +3 -2
- package/dist/types/system/theme.d.ts +5 -1
- package/dist/types/utils/3d.d.ts +7 -3
- package/dist/types/utils/adaptive/check4k.d.ts +7 -3
- package/dist/types/utils/adaptive/scale.d.ts +14 -8
- package/dist/types/utils/copyBtn/index.d.ts +8 -3
- package/dist/types/utils/env/isProd/index.d.ts +1 -3
- package/dist/types/utils/env/type.d.ts +3 -3
- package/dist/types/utils/extractItemIds/index.d.ts +4 -1
- package/dist/types/utils/getDimensionsImage.d.ts +2 -2
- package/dist/types/utils/getPageSizeAssets.d.ts +6 -3
- package/dist/types/utils/imageProportionsSize/index.d.ts +7 -3
- package/dist/types/utils/index.d.ts +5 -1
- package/dist/types/utils/screen/index.d.ts +9 -9
- package/dist/types/utils/ssrFunctions/index.d.ts +21 -13
- package/dist/types/utils/ui/index.d.ts +7 -4
- package/dist/utils/3d.js +17 -13
- package/dist/utils/adaptive/check4k.js +14 -9
- package/dist/utils/adaptive/scale.js +19 -11
- package/dist/utils/auth/index.js +7 -1
- package/dist/utils/copyBtn/index.jsx +223 -63
- package/dist/utils/env/index.js +28 -13
- package/dist/utils/env/isProd/index.js +3 -2
- package/dist/utils/env/type.js +3 -3
- package/dist/utils/extractItemIds/index.jsx +6 -5
- package/dist/utils/getDimensionsImage.js +169 -67
- package/dist/utils/getPageSizeAssets.js +19 -10
- package/dist/utils/imageProportionsSize/index.jsx +27 -17
- package/dist/utils/index.js +5 -1
- package/dist/utils/screen/index.js +95 -67
- package/dist/utils/ssrFunctions/index.js +41 -27
- package/dist/utils/ui/index.jsx +4 -2
- package/package.json +1 -1
- package/src/hooks/index.ts +1 -1
- package/src/hooks/likes/useGetLikesAsset.ts +24 -20
- package/src/index.ts +0 -1
- package/src/modules/index.ts +0 -2
- package/src/modules/sessionScroll/index.ts +2 -0
- package/src/modules/user/auth/index.ts +1 -1
- package/src/modules/user/index.ts +0 -2
- package/src/modules/user/profileData/index.ts +1 -1
- package/src/modules/virtuoso/index.ts +0 -2
- package/src/system/Tabs/index.ts +1 -3
- package/src/system/index.ts +0 -2
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
EmailShareButton,
|
|
3
|
+
FacebookShareButton, // InstapaperShareButton,
|
|
4
|
+
RedditShareButton,
|
|
5
|
+
TelegramShareButton,
|
|
6
|
+
TwitterShareButton,
|
|
7
|
+
WhatsappShareButton,
|
|
8
|
+
} from 'react-share';
|
|
7
9
|
import styled from 'styled-components';
|
|
10
|
+
|
|
8
11
|
import { alertVariants } from '@ludo.ninja/ui/build/system/Alert/type';
|
|
9
12
|
import { adaptiveValueCalc } from '@ludo.ninja/ui/build/utils/4k';
|
|
10
13
|
import { copyToClipboard } from '@ludo.ninja/utils';
|
|
14
|
+
|
|
11
15
|
import { useUiStore } from '@/store/ui';
|
|
16
|
+
|
|
12
17
|
import { mediaQuery } from '@/styles/ScreenWidth';
|
|
13
18
|
import { BlackColor, TextGrayColor } from '@/styles/colors';
|
|
19
|
+
|
|
14
20
|
import { Flex, H1, H5 } from '@system';
|
|
21
|
+
|
|
22
|
+
var __makeTemplateObject =
|
|
23
|
+
(this && this.__makeTemplateObject) ||
|
|
24
|
+
function (cooked, raw) {
|
|
25
|
+
if (Object.defineProperty) {
|
|
26
|
+
Object.defineProperty(cooked, 'raw', { value: raw });
|
|
27
|
+
} else {
|
|
28
|
+
cooked.raw = raw;
|
|
29
|
+
}
|
|
30
|
+
return cooked;
|
|
31
|
+
};
|
|
32
|
+
|
|
15
33
|
// import CopyIcon from '@/public/share/copy-link-btn.svg';
|
|
16
34
|
// import EmailIcon from '@/public/share/email-btn.svg';
|
|
17
35
|
// import FacebookIcon from '@/public/share/facebook-btn.svg';
|
|
@@ -21,45 +39,228 @@ import { Flex, H1, H5 } from '@system';
|
|
|
21
39
|
// import TwitterIcon from '@/public/share/twitter-btn.svg';
|
|
22
40
|
// import WatsUpIcon from '@/public/share/whatsapp-btn.svg';
|
|
23
41
|
// Styles
|
|
24
|
-
var STitle = styled(H1)(
|
|
25
|
-
|
|
42
|
+
var STitle = styled(H1)(
|
|
43
|
+
templateObject_1 ||
|
|
44
|
+
(templateObject_1 = __makeTemplateObject(
|
|
45
|
+
[
|
|
46
|
+
'\n margin-bottom: 24px;\n color: ',
|
|
47
|
+
';\n ',
|
|
48
|
+
' {\n margin-bottom: ',
|
|
49
|
+
';\n }\n',
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
'\n margin-bottom: 24px;\n color: ',
|
|
53
|
+
';\n ',
|
|
54
|
+
' {\n margin-bottom: ',
|
|
55
|
+
';\n }\n',
|
|
56
|
+
]
|
|
57
|
+
)),
|
|
58
|
+
BlackColor,
|
|
59
|
+
mediaQuery.minWidthFourK,
|
|
60
|
+
adaptiveValueCalc(24)
|
|
61
|
+
);
|
|
62
|
+
var StyledShare = styled.div(
|
|
63
|
+
templateObject_2 ||
|
|
64
|
+
(templateObject_2 = __makeTemplateObject(
|
|
65
|
+
[
|
|
66
|
+
'\n .shareButtons {\n display: grid;\n grid-template-columns: 1fr 1fr 1fr 1fr;\n row-gap: 24px;\n column-gap: 16px;\n margin: 0 43px 33px 43px;\n justify-content: center;\n\n ',
|
|
67
|
+
' {\n grid-template-columns: 1fr 1fr;\n justify-items: center;\n align-items: center;\n }\n }\n\n .shareBtn {\n width: 108px;\n height: 64px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n flex-direction: column;\n cursor: pointer;\n border: none;\n background-color: transparent;\n\n img {\n width: 40px;\n height: 40px;\n }\n }\n\n ',
|
|
68
|
+
' {\n .shareButtons {\n row-gap: ',
|
|
69
|
+
';\n column-gap: ',
|
|
70
|
+
';\n margin: 0 ',
|
|
71
|
+
' ',
|
|
72
|
+
'\n ',
|
|
73
|
+
';\n }\n\n .shareBtn {\n width: ',
|
|
74
|
+
';\n height: ',
|
|
75
|
+
';\n\n img {\n width: ',
|
|
76
|
+
';\n height: ',
|
|
77
|
+
';\n }\n }\n }\n',
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
'\n .shareButtons {\n display: grid;\n grid-template-columns: 1fr 1fr 1fr 1fr;\n row-gap: 24px;\n column-gap: 16px;\n margin: 0 43px 33px 43px;\n justify-content: center;\n\n ',
|
|
81
|
+
' {\n grid-template-columns: 1fr 1fr;\n justify-items: center;\n align-items: center;\n }\n }\n\n .shareBtn {\n width: 108px;\n height: 64px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n flex-direction: column;\n cursor: pointer;\n border: none;\n background-color: transparent;\n\n img {\n width: 40px;\n height: 40px;\n }\n }\n\n ',
|
|
82
|
+
' {\n .shareButtons {\n row-gap: ',
|
|
83
|
+
';\n column-gap: ',
|
|
84
|
+
';\n margin: 0 ',
|
|
85
|
+
' ',
|
|
86
|
+
'\n ',
|
|
87
|
+
';\n }\n\n .shareBtn {\n width: ',
|
|
88
|
+
';\n height: ',
|
|
89
|
+
';\n\n img {\n width: ',
|
|
90
|
+
';\n height: ',
|
|
91
|
+
';\n }\n }\n }\n',
|
|
92
|
+
]
|
|
93
|
+
)),
|
|
94
|
+
mediaQuery.mobile,
|
|
95
|
+
mediaQuery.minWidthFourK,
|
|
96
|
+
adaptiveValueCalc(24),
|
|
97
|
+
adaptiveValueCalc(16),
|
|
98
|
+
adaptiveValueCalc(43),
|
|
99
|
+
adaptiveValueCalc(33),
|
|
100
|
+
adaptiveValueCalc(43),
|
|
101
|
+
adaptiveValueCalc(108),
|
|
102
|
+
adaptiveValueCalc(64),
|
|
103
|
+
adaptiveValueCalc(40),
|
|
104
|
+
adaptiveValueCalc(40)
|
|
105
|
+
);
|
|
26
106
|
var ShareDialog = function (_a) {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
107
|
+
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
108
|
+
var link = _a.link,
|
|
109
|
+
onHide = _a.onHide,
|
|
110
|
+
params = _a.params;
|
|
111
|
+
var url = new URL(link || '');
|
|
112
|
+
url.search = '';
|
|
113
|
+
var urlWithoutGetParameters = url.toString();
|
|
114
|
+
var openAlert = useUiStore(function (state) {
|
|
115
|
+
return state.openAlert;
|
|
116
|
+
});
|
|
117
|
+
return (
|
|
118
|
+
<StyledShare>
|
|
34
119
|
<Flex alignItems={'center'} justifyContent={'center'}>
|
|
35
120
|
<STitle>{'Share to...'}</STitle>
|
|
36
121
|
</Flex>
|
|
37
122
|
<div className="shareButtons">
|
|
38
|
-
<button
|
|
123
|
+
<button
|
|
124
|
+
onClick={function () {
|
|
39
125
|
onHide();
|
|
40
126
|
copyToClipboard(urlWithoutGetParameters).then(function () {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
127
|
+
openAlert({
|
|
128
|
+
type: alertVariants.copied,
|
|
129
|
+
});
|
|
44
130
|
});
|
|
45
|
-
|
|
46
|
-
|
|
131
|
+
}}
|
|
132
|
+
className={'shareBtn'}
|
|
133
|
+
>
|
|
134
|
+
<img
|
|
135
|
+
src="/share/copy-link-btn.svg"
|
|
136
|
+
alt="share"
|
|
137
|
+
height={40}
|
|
138
|
+
width={40}
|
|
139
|
+
/>
|
|
47
140
|
<H5 color={TextGrayColor}>Copy Link</H5>
|
|
48
141
|
</button>
|
|
49
|
-
<EmailShareButton
|
|
50
|
-
|
|
142
|
+
<EmailShareButton
|
|
143
|
+
url={urlWithoutGetParameters}
|
|
144
|
+
body={
|
|
145
|
+
(_b =
|
|
146
|
+
params === null || params === void 0 ? void 0 : params.email) ===
|
|
147
|
+
null || _b === void 0
|
|
148
|
+
? void 0
|
|
149
|
+
: _b.body
|
|
150
|
+
}
|
|
151
|
+
separator={
|
|
152
|
+
(_c =
|
|
153
|
+
params === null || params === void 0 ? void 0 : params.email) ===
|
|
154
|
+
null || _c === void 0
|
|
155
|
+
? void 0
|
|
156
|
+
: _c.separator
|
|
157
|
+
}
|
|
158
|
+
subject={
|
|
159
|
+
(_d =
|
|
160
|
+
params === null || params === void 0 ? void 0 : params.email) ===
|
|
161
|
+
null || _d === void 0
|
|
162
|
+
? void 0
|
|
163
|
+
: _d.subject
|
|
164
|
+
}
|
|
165
|
+
className="shareBtn"
|
|
166
|
+
onClick={onHide}
|
|
167
|
+
>
|
|
168
|
+
<img src="/share/email-btn.svg" alt="email" height={40} width={40} />
|
|
51
169
|
<H5 color={TextGrayColor}>Email</H5>
|
|
52
170
|
</EmailShareButton>
|
|
53
|
-
<TelegramShareButton
|
|
54
|
-
|
|
171
|
+
<TelegramShareButton
|
|
172
|
+
url={urlWithoutGetParameters}
|
|
173
|
+
title={
|
|
174
|
+
(_e =
|
|
175
|
+
params === null || params === void 0
|
|
176
|
+
? void 0
|
|
177
|
+
: params.telegram) === null || _e === void 0
|
|
178
|
+
? void 0
|
|
179
|
+
: _e.title
|
|
180
|
+
}
|
|
181
|
+
className="shareBtn"
|
|
182
|
+
onClick={onHide}
|
|
183
|
+
>
|
|
184
|
+
<img
|
|
185
|
+
src="/share/telegram-btn.svg"
|
|
186
|
+
alt="telegram"
|
|
187
|
+
height={40}
|
|
188
|
+
width={40}
|
|
189
|
+
/>
|
|
55
190
|
<H5 color={TextGrayColor}>Telegram</H5>
|
|
56
191
|
</TelegramShareButton>
|
|
57
|
-
<WhatsappShareButton
|
|
58
|
-
|
|
192
|
+
<WhatsappShareButton
|
|
193
|
+
url={urlWithoutGetParameters}
|
|
194
|
+
title={
|
|
195
|
+
(_f =
|
|
196
|
+
params === null || params === void 0
|
|
197
|
+
? void 0
|
|
198
|
+
: params.whatsapp) === null || _f === void 0
|
|
199
|
+
? void 0
|
|
200
|
+
: _f.title
|
|
201
|
+
}
|
|
202
|
+
separator={
|
|
203
|
+
(_g =
|
|
204
|
+
params === null || params === void 0
|
|
205
|
+
? void 0
|
|
206
|
+
: params.whatsapp) === null || _g === void 0
|
|
207
|
+
? void 0
|
|
208
|
+
: _g.separator
|
|
209
|
+
}
|
|
210
|
+
className="shareBtn"
|
|
211
|
+
onClick={onHide}
|
|
212
|
+
>
|
|
213
|
+
<img
|
|
214
|
+
src="/share/whatsapp-btn.svg"
|
|
215
|
+
alt="whatsapp"
|
|
216
|
+
height={40}
|
|
217
|
+
width={40}
|
|
218
|
+
/>
|
|
59
219
|
<H5 color={TextGrayColor}>WhatsApp</H5>
|
|
60
220
|
</WhatsappShareButton>
|
|
61
|
-
<TwitterShareButton
|
|
62
|
-
|
|
221
|
+
<TwitterShareButton
|
|
222
|
+
url={urlWithoutGetParameters}
|
|
223
|
+
title={
|
|
224
|
+
(_h =
|
|
225
|
+
params === null || params === void 0
|
|
226
|
+
? void 0
|
|
227
|
+
: params.twitter) === null || _h === void 0
|
|
228
|
+
? void 0
|
|
229
|
+
: _h.title
|
|
230
|
+
}
|
|
231
|
+
via={
|
|
232
|
+
(_j =
|
|
233
|
+
params === null || params === void 0
|
|
234
|
+
? void 0
|
|
235
|
+
: params.twitter) === null || _j === void 0
|
|
236
|
+
? void 0
|
|
237
|
+
: _j.via
|
|
238
|
+
}
|
|
239
|
+
related={
|
|
240
|
+
(_k =
|
|
241
|
+
params === null || params === void 0
|
|
242
|
+
? void 0
|
|
243
|
+
: params.twitter) === null || _k === void 0
|
|
244
|
+
? void 0
|
|
245
|
+
: _k.related
|
|
246
|
+
}
|
|
247
|
+
hashtags={
|
|
248
|
+
(_l =
|
|
249
|
+
params === null || params === void 0
|
|
250
|
+
? void 0
|
|
251
|
+
: params.twitter) === null || _l === void 0
|
|
252
|
+
? void 0
|
|
253
|
+
: _l.hashtags
|
|
254
|
+
}
|
|
255
|
+
className="shareBtn"
|
|
256
|
+
onClick={onHide}
|
|
257
|
+
>
|
|
258
|
+
<img
|
|
259
|
+
src="/share/twitter-btn.svg"
|
|
260
|
+
alt="twitter"
|
|
261
|
+
width={40}
|
|
262
|
+
height={40}
|
|
263
|
+
/>
|
|
63
264
|
<H5 color={TextGrayColor}>Twitter</H5>
|
|
64
265
|
</TwitterShareButton>
|
|
65
266
|
{/*<InstapaperShareButton*/}
|
|
@@ -70,16 +271,58 @@ var ShareDialog = function (_a) {
|
|
|
70
271
|
{/* <InstagramIcon />*/}
|
|
71
272
|
{/* <H5 color={TextGrayColor}>Instagram</H5>*/}
|
|
72
273
|
{/*</InstapaperShareButton>*/}
|
|
73
|
-
<RedditShareButton
|
|
74
|
-
|
|
274
|
+
<RedditShareButton
|
|
275
|
+
url={urlWithoutGetParameters}
|
|
276
|
+
title={
|
|
277
|
+
(_m =
|
|
278
|
+
params === null || params === void 0 ? void 0 : params.reddit) ===
|
|
279
|
+
null || _m === void 0
|
|
280
|
+
? void 0
|
|
281
|
+
: _m.title
|
|
282
|
+
}
|
|
283
|
+
className="shareBtn"
|
|
284
|
+
onClick={onHide}
|
|
285
|
+
>
|
|
286
|
+
<img
|
|
287
|
+
src="/share/reddit-btn.svg"
|
|
288
|
+
alt="reddit"
|
|
289
|
+
width={40}
|
|
290
|
+
height={40}
|
|
291
|
+
/>
|
|
75
292
|
<H5 color={TextGrayColor}>Reddit</H5>
|
|
76
293
|
</RedditShareButton>
|
|
77
|
-
<FacebookShareButton
|
|
78
|
-
|
|
294
|
+
<FacebookShareButton
|
|
295
|
+
url={urlWithoutGetParameters}
|
|
296
|
+
quote={
|
|
297
|
+
((_o =
|
|
298
|
+
params === null || params === void 0
|
|
299
|
+
? void 0
|
|
300
|
+
: params.facebook) === null || _o === void 0
|
|
301
|
+
? void 0
|
|
302
|
+
: _o.quote) || 'My cool NFT'
|
|
303
|
+
}
|
|
304
|
+
hashtag={
|
|
305
|
+
((_p =
|
|
306
|
+
params === null || params === void 0
|
|
307
|
+
? void 0
|
|
308
|
+
: params.facebook) === null || _p === void 0
|
|
309
|
+
? void 0
|
|
310
|
+
: _p.hashtag) || '#ludo'
|
|
311
|
+
}
|
|
312
|
+
className="shareBtn"
|
|
313
|
+
onClick={onHide}
|
|
314
|
+
>
|
|
315
|
+
<img
|
|
316
|
+
src="/share/facebook-btn.svg"
|
|
317
|
+
alt="facebook"
|
|
318
|
+
width={40}
|
|
319
|
+
height={40}
|
|
320
|
+
/>
|
|
79
321
|
<H5 color={TextGrayColor}>Facebook</H5>
|
|
80
322
|
</FacebookShareButton>
|
|
81
323
|
</div>
|
|
82
|
-
</StyledShare>
|
|
324
|
+
</StyledShare>
|
|
325
|
+
);
|
|
83
326
|
};
|
|
84
327
|
// Export
|
|
85
328
|
export default ShareDialog;
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
var sortData = [
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
2
|
+
{
|
|
3
|
+
id: Math.random(),
|
|
4
|
+
value: 'all',
|
|
5
|
+
label: 'All',
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
id: Math.random(),
|
|
9
|
+
value: 'asset',
|
|
10
|
+
label: 'NFTs',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
id: Math.random(),
|
|
14
|
+
value: 'collection',
|
|
15
|
+
label: 'Collections',
|
|
16
|
+
},
|
|
17
|
+
// {
|
|
18
|
+
// id: Math.random(),
|
|
19
|
+
// label: 'Events',
|
|
20
|
+
// },
|
|
21
|
+
// {
|
|
22
|
+
// id: Math.random(),
|
|
23
|
+
// label: 'Apps',
|
|
24
|
+
// },
|
|
25
25
|
];
|
|
26
26
|
export { sortData };
|
|
@@ -1,24 +1,62 @@
|
|
|
1
|
-
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
-
return cooked;
|
|
4
|
-
};
|
|
5
1
|
import React from 'react';
|
|
2
|
+
|
|
6
3
|
import styled from 'styled-components';
|
|
4
|
+
|
|
7
5
|
import { BlackColor } from '@/styles/colors';
|
|
8
6
|
import { FH2 } from '@/styles/typography';
|
|
7
|
+
|
|
9
8
|
import { StyledTabsNavLink } from '@/system/Tabs/TabNavLink';
|
|
10
9
|
import TabsNav from '@/system/Tabs/TabsNav';
|
|
10
|
+
|
|
11
|
+
var __makeTemplateObject =
|
|
12
|
+
(this && this.__makeTemplateObject) ||
|
|
13
|
+
function (cooked, raw) {
|
|
14
|
+
if (Object.defineProperty) {
|
|
15
|
+
Object.defineProperty(cooked, 'raw', { value: raw });
|
|
16
|
+
} else {
|
|
17
|
+
cooked.raw = raw;
|
|
18
|
+
}
|
|
19
|
+
return cooked;
|
|
20
|
+
};
|
|
21
|
+
|
|
11
22
|
// Styles
|
|
12
|
-
var StyledShowCaseSort = styled.div(
|
|
23
|
+
var StyledShowCaseSort = styled.div(
|
|
24
|
+
templateObject_1 ||
|
|
25
|
+
(templateObject_1 = __makeTemplateObject(
|
|
26
|
+
[
|
|
27
|
+
'\n margin-bottom: 25px;\n display: flex;\n align-items: center;\n .caption {\n user-select: none;\n color: ',
|
|
28
|
+
';\n ',
|
|
29
|
+
';\n margin-right: 32px;\n padding-bottom: 10px;\n }\n .tabs {\n ',
|
|
30
|
+
' {\n margin-right: 24px;\n margin-bottom: 10px;\n &:last-child {\n margin-right: 0;\n }\n }\n }\n',
|
|
31
|
+
],
|
|
32
|
+
[
|
|
33
|
+
'\n margin-bottom: 25px;\n display: flex;\n align-items: center;\n .caption {\n user-select: none;\n color: ',
|
|
34
|
+
';\n ',
|
|
35
|
+
';\n margin-right: 32px;\n padding-bottom: 10px;\n }\n .tabs {\n ',
|
|
36
|
+
' {\n margin-right: 24px;\n margin-bottom: 10px;\n &:last-child {\n margin-right: 0;\n }\n }\n }\n',
|
|
37
|
+
]
|
|
38
|
+
)),
|
|
39
|
+
BlackColor,
|
|
40
|
+
FH2,
|
|
41
|
+
StyledTabsNavLink
|
|
42
|
+
);
|
|
13
43
|
// Component
|
|
14
44
|
var ShowCaseSort = function (_a) {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
45
|
+
var activeTab = _a.activeTab,
|
|
46
|
+
setActiveTab = _a.setActiveTab,
|
|
47
|
+
data = _a.data;
|
|
48
|
+
return (
|
|
49
|
+
<StyledShowCaseSort>
|
|
50
|
+
<span className={'caption'}>Explore</span>
|
|
18
51
|
<div className="tabs">
|
|
19
|
-
<TabsNav
|
|
52
|
+
<TabsNav
|
|
53
|
+
activeTab={activeTab}
|
|
54
|
+
tabsData={data}
|
|
55
|
+
setActiveTab={setActiveTab}
|
|
56
|
+
/>
|
|
20
57
|
</div>
|
|
21
|
-
</StyledShowCaseSort>
|
|
58
|
+
</StyledShowCaseSort>
|
|
59
|
+
);
|
|
22
60
|
};
|
|
23
61
|
// Export
|
|
24
62
|
export default ShowCaseSort;
|
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
2
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
3
|
-
if (ar || !(i in from)) {
|
|
4
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
5
|
-
ar[i] = from[i];
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
9
|
-
};
|
|
10
1
|
import React from 'react';
|
|
2
|
+
|
|
11
3
|
import AboutLudoIcon from '@/public/sidebar/aboutLudo.svg';
|
|
12
4
|
import AboutLudoDarkIcon from '@/public/sidebar/aboutLudoDark.svg';
|
|
13
5
|
import ApiIcon from '@/public/sidebar/api.svg';
|
|
@@ -15,67 +7,96 @@ import ExploreIcon from '@/public/sidebar/explore.svg';
|
|
|
15
7
|
import MyInvitesIcon from '@/public/sidebar/my-invites.svg';
|
|
16
8
|
import RewardsIcon from '@/public/sidebar/rewards.svg';
|
|
17
9
|
import SubmitNftIcon from '@/public/sidebar/submitNft.svg';
|
|
10
|
+
|
|
11
|
+
var __spreadArray =
|
|
12
|
+
(this && this.__spreadArray) ||
|
|
13
|
+
function (to, from, pack) {
|
|
14
|
+
if (pack || arguments.length === 2)
|
|
15
|
+
for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
16
|
+
if (ar || !(i in from)) {
|
|
17
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
18
|
+
ar[i] = from[i];
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
22
|
+
};
|
|
23
|
+
|
|
18
24
|
export var sideBarDataForDev = function (_a) {
|
|
19
|
-
|
|
20
|
-
|
|
25
|
+
var isAuthorized = _a.isAuthorized,
|
|
26
|
+
isDarkTheme = _a.isDarkTheme,
|
|
27
|
+
userId = _a.userId;
|
|
28
|
+
return __spreadArray(
|
|
29
|
+
__spreadArray(
|
|
30
|
+
[
|
|
21
31
|
{
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
32
|
+
href: '/',
|
|
33
|
+
title: 'Explore',
|
|
34
|
+
icon: <ExploreIcon />,
|
|
35
|
+
isExternalUrl: false,
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
isAuthorized
|
|
28
39
|
? [
|
|
29
40
|
{
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
41
|
+
href: '/rewards/'.concat(userId),
|
|
42
|
+
title: 'Rewards',
|
|
43
|
+
icon: <RewardsIcon />,
|
|
44
|
+
isExternalUrl: false,
|
|
34
45
|
},
|
|
35
46
|
{
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
47
|
+
href: '/invite-codes',
|
|
48
|
+
title: 'My invites',
|
|
49
|
+
icon: <MyInvitesIcon />,
|
|
50
|
+
isExternalUrl: false,
|
|
40
51
|
},
|
|
41
|
-
|
|
42
|
-
: []
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
52
|
+
]
|
|
53
|
+
: [],
|
|
54
|
+
true
|
|
55
|
+
),
|
|
56
|
+
[
|
|
57
|
+
{
|
|
58
|
+
href: 'https://apidocs.ludo.com/',
|
|
59
|
+
title: 'API',
|
|
60
|
+
icon: <ApiIcon />,
|
|
61
|
+
isExternalUrl: true,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
href: '/',
|
|
65
|
+
title: 'Submit NFT',
|
|
66
|
+
icon: <SubmitNftIcon />,
|
|
67
|
+
isExternalUrl: false,
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
href: '/',
|
|
71
|
+
title: 'About Ludo',
|
|
72
|
+
icon: isDarkTheme ? <AboutLudoDarkIcon /> : <AboutLudoIcon />,
|
|
73
|
+
isExternalUrl: false,
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
false
|
|
77
|
+
);
|
|
62
78
|
};
|
|
63
79
|
export var sideBarDataForProd = function (_a) {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
80
|
+
var isAuthorized = _a.isAuthorized,
|
|
81
|
+
userId = _a.userId;
|
|
82
|
+
return __spreadArray(
|
|
83
|
+
[],
|
|
84
|
+
isAuthorized
|
|
85
|
+
? [
|
|
86
|
+
{
|
|
87
|
+
href: '/rewards/'.concat(userId),
|
|
88
|
+
title: 'Rewards',
|
|
89
|
+
icon: <RewardsIcon />,
|
|
90
|
+
isExternalUrl: false,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
href: '/invite-codes',
|
|
94
|
+
title: 'My invites',
|
|
95
|
+
icon: <MyInvitesIcon />,
|
|
96
|
+
isExternalUrl: false,
|
|
97
|
+
},
|
|
79
98
|
]
|
|
80
|
-
|
|
99
|
+
: [],
|
|
100
|
+
true
|
|
101
|
+
);
|
|
81
102
|
};
|