player-map 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/index.es.js +27408 -28646
- package/dist/index.umd.js +525 -535
- package/dist/types/components/modals/ConnectWalletModal.d.ts +8 -0
- package/dist/types/components/modals/CreatePlayerModal.d.ts +9 -0
- package/dist/types/components/modals/index.d.ts +2 -0
- package/dist/types/components/vote/ClaimItem.d.ts +13 -0
- package/dist/types/components/vote/ClaimList.d.ts +14 -0
- package/dist/types/components/vote/ClaimVoting.d.ts +16 -0
- package/dist/types/components/vote/SubmitButton.d.ts +11 -0
- package/dist/types/components/vote/TransactionInfo.d.ts +9 -0
- package/dist/types/components/vote/TransactionStatus.d.ts +11 -0
- package/dist/types/components/vote/VotingHeader.d.ts +7 -0
- package/dist/types/hooks/useCheckSpecificTriplePosition.d.ts +14 -0
- package/dist/types/hooks/useDepositTriple.d.ts +14 -0
- package/dist/types/hooks/useDisplayTriplesWithPosition.d.ts +5 -0
- package/dist/types/hooks/useFetchTripleDetails.d.ts +27 -0
- package/dist/types/hooks/useSubmitVotes.d.ts +22 -0
- package/dist/types/hooks/useVoteItemsManagement.d.ts +21 -0
- package/dist/types/hooks.old.local/useAccountAtom.d.ts +19 -0
- package/dist/types/hooks.old.local/useAtomCreation.d.ts +23 -0
- package/dist/types/hooks.old.local/useAtomData.d.ts +61 -0
- package/dist/types/hooks.old.local/useAtomTriples.d.ts +22 -0
- package/dist/types/hooks.old.local/useAtomsByCreator.d.ts +14 -0
- package/dist/types/hooks.old.local/useBatchCreateTriple.d.ts +16 -0
- package/dist/types/hooks.old.local/useCreateSingleTriple.d.ts +10 -0
- package/dist/types/hooks.old.local/useDepositTriple.d.ts +14 -0
- package/dist/types/hooks.old.local/useDisplayTriplesWithPosition.d.ts +5 -0
- package/dist/types/hooks.old.local/useFetchTripleDetails.d.ts +27 -0
- package/dist/types/hooks.old.local/useMainnetAtomData.d.ts +20 -0
- package/dist/types/hooks.old.local/useSubmitVotes.d.ts +22 -0
- package/dist/types/hooks.old.local/useTestnetAtomData.d.ts +20 -0
- package/dist/types/hooks.old.local/useTripleByCreator.d.ts +39 -0
- package/dist/types/hooks.old.local/useVoteItemsManagement.d.ts +18 -0
- package/dist/types/pages/DirectPositionCheck.d.ts +4 -0
- package/dist/types/types/vote.d.ts +26 -0
- package/dist/types/utils/debugPosition.d.ts +11 -0
- package/dist/types/utils/voteConstants.d.ts +2 -0
- package/dist/types/utils/voteUtils.d.ts +32 -0
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "player-map",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@0xintuition/graphql": "^0.8.0",
|
|
24
24
|
"axios": "^1.9.0",
|
|
25
|
-
"playermap_graph": "^0.1.
|
|
25
|
+
"playermap_graph": "^0.1.3"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/react": "^18.2.0",
|