├── .commitlintrc.json ├── .czrc ├── .dockerignore ├── .editorconfig ├── .env ├── .env.development ├── .env.test ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ ├── build-deploy-storybook │ │ └── action.yaml │ ├── build │ │ └── action.yaml │ ├── deploy │ │ └── action.yaml │ ├── docker-build-publish │ │ └── action.yaml │ ├── helm-build-deploy │ │ └── action.yaml │ └── tests │ │ ├── action.yaml │ │ └── reports-site │ │ └── HEADER.html.template ├── env.common ├── env.develop ├── env.production ├── env.qa ├── env.staging ├── env.test └── workflows │ ├── build-deploy.yaml │ ├── deploy-prod-latest.yaml │ ├── deploy.yaml │ ├── pull-request.yaml │ ├── rollback-prod.yaml │ ├── run-autotests-scheduled.yaml │ └── run-autotests.yaml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .huskyrc.json ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── .stylelintignore ├── .stylelintrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile_pipelines ├── LICENSE ├── README.md ├── assets ├── flag.png ├── icons │ ├── .gitignore │ ├── aAllDaos.colors.svg │ ├── aAllDaosHover.colors.svg │ ├── aAstroFeed.colors.svg │ ├── aAstroFeedHover.colors.svg │ ├── aCreateDao.colors.svg │ ├── aCreateDaoHover.colors.svg │ ├── aDiscover.colors.svg │ ├── aMyDaos.colors.svg │ ├── aMyDaosHover.colors.svg │ ├── aMyFeed.colors.svg │ ├── aMyFeedHover.colors.svg │ ├── account.svg │ ├── alertTriangle.svg │ ├── allCommunity.colors.svg │ ├── allcommunities.svg │ ├── app-logo.svg │ ├── arrow.svg │ ├── astro.svg │ ├── aurora.svg │ ├── back-link.svg │ ├── bookmark.svg │ ├── bountyApprovedClaim.svg │ ├── bountyCompleteBounty.colors.svg │ ├── bountyCreateClaim.svg │ ├── bountyCreated.colors.svg │ ├── bountyDeadlineClaim.svg │ ├── bountyPendingApproval.svg │ ├── bountyProposalCreated.svg │ ├── briefcase-filled.svg │ ├── briefcase.svg │ ├── burgerMenu.svg │ ├── button-add-group.svg │ ├── button-add.svg │ ├── button-alert.svg │ ├── button-arrow-down.svg │ ├── button-arrow-left.svg │ ├── button-arrow-right.svg │ ├── button-arrow-up.svg │ ├── button-bookmark-selected.svg │ ├── button-bookmark.svg │ ├── button-check.svg │ ├── button-copy.svg │ ├── button-delete-pressed.svg │ ├── button-delete.svg │ ├── button-edit.svg │ ├── button-external.svg │ ├── button-more.svg │ ├── button-refresh-pressed.svg │ ├── button-refresh.svg │ ├── button-report.svg │ ├── button-reset-scroll.svg │ ├── button-return-pressed.svg │ ├── button-return.svg │ ├── button-search.svg │ ├── button-send-transaction.svg │ ├── button-share-pressed.svg │ ├── button-share.svg │ ├── buttonAddUser.svg │ ├── buttonDeposit.svg │ ├── buttonFollow.svg │ ├── buttonLink.svg │ ├── buttonWithdraw.svg │ ├── camera.svg │ ├── captcha-flag.colors.svg │ ├── captcha-hole-reg.svg │ ├── captcha-hole.colors.svg │ ├── captcha-reset.colors.svg │ ├── carbon-email.svg │ ├── carbon-phone.svg │ ├── chartTrend.colors.svg │ ├── chat.svg │ ├── check.svg │ ├── checkList.svg │ ├── checkbox-checked.svg │ ├── checkbox-unchecked.svg │ ├── checkmark.svg │ ├── claimsLink.svg │ ├── clock.svg │ ├── close-circle.svg │ ├── close.svg │ ├── comment-block.svg │ ├── connection.svg │ ├── copy.svg │ ├── createNewDao.colors.svg │ ├── createToken.colors.svg │ ├── default-dao-logo.colors.svg │ ├── defaultAvatar.svg │ ├── delegate.svg │ ├── discover.colors.svg │ ├── draft-bookmark-fulfill.svg │ ├── draft-bookmark.svg │ ├── draft-chat.svg │ ├── draft-comments.svg │ ├── draft-eye.svg │ ├── eyeClose.svg │ ├── eyeOpen.svg │ ├── feed.svg │ ├── filter.svg │ ├── filterBounty.svg │ ├── filterCheck.svg │ ├── filterClock.svg │ ├── filterClose.svg │ ├── filterFunction.svg │ ├── filterGovernance.svg │ ├── filterMembers.svg │ ├── filterTransfer.svg │ ├── filtersMenu.svg │ ├── flag.svg │ ├── funds.svg │ ├── globalFeed.colors.svg │ ├── goal.svg │ ├── groups.svg │ ├── hamburger.svg │ ├── heart.svg │ ├── heartFilled.svg │ ├── icon-near.svg │ ├── illustration-flat-organization.colors.svg │ ├── illustration-groups-and-committtees.colors.svg │ ├── illustration-members-only.svg │ ├── illustration-open-organization.colors.svg │ ├── illustration-token-weighted.colors.svg │ ├── illustration-vote-per-member.colors.svg │ ├── image-not-found.svg │ ├── info.svg │ ├── kebab-vertical.svg │ ├── like-filled.svg │ ├── like.svg │ ├── list-filter.svg │ ├── list.svg │ ├── loading.svg │ ├── logo-near-full.svg │ ├── logo-near.svg │ ├── logoUsn.svg │ ├── logout.svg │ ├── minus.svg │ ├── multiselect.svg │ ├── myDaos.colors.svg │ ├── myFeed.colors.svg │ ├── nav-back.svg │ ├── nav-forward.svg │ ├── nav-refresh.svg │ ├── navSettingsConfig.colors.svg │ ├── navSettingsPolicy.colors.svg │ ├── navSettingsVersion.colors.svg │ ├── nfts.svg │ ├── no-notifications.colors.svg │ ├── notVoted.colors.svg │ ├── note-archive.color.svg │ ├── note-bell-active-hover.colors.svg │ ├── note-bell-active.colors.svg │ ├── note-bell.svg │ ├── note-check-double.svg │ ├── note-check.svg │ ├── note-delete-default.colors.svg │ ├── note-delete-disabled.colors.svg │ ├── note-delete-hover.colors.svg │ ├── note-message-active-hover.colors.svg │ ├── note-message-active.colors.svg │ ├── note-message.svg │ ├── note-restore.color.svg │ ├── note-sound-disabled.svg │ ├── note-sound-mute.svg │ ├── note-sound-unmute.svg │ ├── note-status-alert.colors.svg │ ├── note-status-approved.colors.svg │ ├── note-status-ending-soon.colors.svg │ ├── note-status-rejected.colors.svg │ ├── note-status-success.colors.svg │ ├── note-type-add-member-default.svg │ ├── note-type-add-member.svg │ ├── note-type-bounty-default.svg │ ├── note-type-bounty.svg │ ├── note-type-comment-like.svg │ ├── note-type-dao-config-default.svg │ ├── note-type-dao-config.svg │ ├── note-type-governance-default.svg │ ├── note-type-governance.svg │ ├── note-type-polls-default.svg │ ├── note-type-polls.svg │ ├── note-type-remove-member-default.svg │ ├── note-type-remove-member.svg │ ├── note-type-transfer-default.svg │ ├── note-type-transfer.svg │ ├── paperAirplane.svg │ ├── pencil.svg │ ├── plus.svg │ ├── proposal-add-member.svg │ ├── proposal-bounty.svg │ ├── proposal-create-group.svg │ ├── proposal-function-call.svg │ ├── proposal-governance.svg │ ├── proposal-near-function-call.colors.svg │ ├── proposal-poll.svg │ ├── proposal-received-funds.svg │ ├── proposal-remove-member.svg │ ├── proposal-send-funds.svg │ ├── refresh.colors.svg │ ├── reply.svg │ ├── seal-approved.colors.svg │ ├── seal-closed.colors.svg │ ├── seal-failed.colors.svg │ ├── selectToken.colors.svg │ ├── selectorEnabled.svg │ ├── senderWallet.svg │ ├── settings.svg │ ├── sheet.svg │ ├── sidebarActionsLibrary.svg │ ├── sidebarActionsLibraryFilled.svg │ ├── sidebarBounties.svg │ ├── sidebarBountiesFilled.svg │ ├── sidebarDaosAndUsers.svg │ ├── sidebarDaosAndUsersFilled.svg │ ├── sidebarDaosStats.svg │ ├── sidebarFeedback.svg │ ├── sidebarHome.svg │ ├── sidebarHomeFilled.svg │ ├── sidebarReleaseNotes.svg │ ├── social-any-url.svg │ ├── social-discord.svg │ ├── social-facebook.svg │ ├── social-github.svg │ ├── social-instagram.svg │ ├── social-placeholder.svg │ ├── social-slack.svg │ ├── social-telegram.svg │ ├── social-twitter-alt.svg │ ├── social-twitter.svg │ ├── sort.svg │ ├── state-add.svg │ ├── state-communities.svg │ ├── state-create-dao.svg │ ├── state-gear.svg │ ├── state-governance.svg │ ├── state-home.svg │ ├── state-membersgroups.svg │ ├── state-overview.svg │ ├── state-sign-out.svg │ ├── state-tasks.svg │ ├── state-treasury.svg │ ├── stateAlert.svg │ ├── statusSuccess.svg │ ├── telegram.svg │ ├── timeline.svg │ ├── token-near-big.svg │ ├── token-near.svg │ ├── token-wizard.svg │ ├── tokenDefaultIcon.svg │ ├── toolbar-editor-bold.svg │ ├── toolbar-editor-image.svg │ ├── toolbar-editor-italic.svg │ ├── toolbar-editor-list.svg │ ├── transfer.svg │ ├── treasury-one.colors.svg │ ├── treasury-three.colors.svg │ ├── treasury-two.colors.svg │ ├── tweet.svg │ ├── upgrade.svg │ ├── upload.svg │ ├── uploadFile.svg │ ├── userAccount.svg │ ├── voting-dismiss-alt.colors.svg │ ├── voting-dismiss-checked.colors.svg │ ├── voting-dismiss-disabled.colors.svg │ ├── voting-dismiss.colors.svg │ ├── voting-no-checked.colors.svg │ ├── voting-no-disabled.colors.svg │ ├── voting-no.colors.svg │ ├── voting-yes-checked.colors.svg │ ├── voting-yes-disabled.colors.svg │ ├── voting-yes.colors.svg │ ├── votingPolicy.svg │ └── white-logo.svg ├── index.ts └── sidebarMarker.svg ├── astro_2.0 ├── components │ ├── Accordion │ │ ├── Accordion.module.scss │ │ ├── Accordion.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── Accordion.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── Accordion.spec.tsx.snap │ ├── ActionButton │ │ ├── ActionButton.module.scss │ │ ├── ActionButton.tsx │ │ └── index.ts │ ├── AppFooter │ │ ├── AppFooter.module.scss │ │ ├── AppFooter.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── AppFooter.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── AppFooter.spec.tsx.snap │ ├── AppHeader │ │ ├── AppHeader.module.scss │ │ ├── AppHeader.tsx │ │ ├── components │ │ │ ├── AccountDropdown │ │ │ │ ├── AccountDropdown.module.scss │ │ │ │ ├── AccountDropdown.tsx │ │ │ │ ├── components │ │ │ │ │ ├── AccountPopupItem │ │ │ │ │ │ ├── AccountPopupItem.module.scss │ │ │ │ │ │ ├── AccountPopupItem.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── AccountPopupItem.spec.tsx │ │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── AccountPopupItem.spec.tsx.snap │ │ │ │ │ ├── ConnectedAccountButton │ │ │ │ │ │ ├── ConnectedAccountButton.module.scss │ │ │ │ │ │ ├── ConnectedAccountButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DisconnectButton │ │ │ │ │ │ ├── DisconnectButton.module.scss │ │ │ │ │ │ ├── DisconnectButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── LoginButton │ │ │ │ │ │ ├── LoginButton.module.scss │ │ │ │ │ │ ├── LoginButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── MyAccountButton │ │ │ │ │ │ ├── MyAccountButton.module.scss │ │ │ │ │ │ ├── MyAccountButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── WalletAccount │ │ │ │ │ │ ├── WalletAccount.module.scss │ │ │ │ │ │ ├── WalletAccount.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── WalletButton │ │ │ │ │ │ ├── WalletButton.module.scss │ │ │ │ │ │ ├── WalletButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── WalletDescription │ │ │ │ │ │ ├── WalletDescription.module.scss │ │ │ │ │ │ ├── WalletDescription.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── WalletIcon │ │ │ │ │ │ ├── WalletIcon.module.scss │ │ │ │ │ │ ├── WalletIcon.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── WalletSelectionModal │ │ │ │ │ │ ├── WalletSelectionModal.module.scss │ │ │ │ │ │ ├── WalletSelectionModal.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── WalletWithAccounts │ │ │ │ │ │ ├── WalletWithAccounts.module.scss │ │ │ │ │ │ ├── WalletWithAccounts.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── WalletsList │ │ │ │ │ │ ├── WalletsList.module.scss │ │ │ │ │ │ ├── WalletsList.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── NotificationsBell │ │ │ │ ├── NotificationsBell.module.scss │ │ │ │ ├── NotificationsBell.tsx │ │ │ │ ├── components │ │ │ │ │ └── NotificationsToastsContainer │ │ │ │ │ │ ├── AnimatedNotification │ │ │ │ │ │ ├── AnimatedNotification.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── NotificationsToastsContainer.module.scss │ │ │ │ │ │ ├── NotificationsToastsContainer.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ ├── NotificationsBell.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── NotificationsBell.spec.tsx.snap │ │ │ └── SearchBar │ │ │ │ ├── SearchBar.module.scss │ │ │ │ ├── SearchBar.tsx │ │ │ │ ├── components │ │ │ │ ├── DropdownResults │ │ │ │ │ ├── DropdownResults.module.scss │ │ │ │ │ ├── DropdownResults.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── ResultSection │ │ │ │ │ │ │ ├── ResultSection.module.scss │ │ │ │ │ │ │ ├── ResultSection.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── SearchResultCommentLine │ │ │ │ │ │ │ │ ├── SearchResultCommentLine.module.scss │ │ │ │ │ │ │ │ ├── SearchResultCommentLine.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── SearchResultDaoCard │ │ │ │ │ │ │ │ ├── SearchResultDaoCard.module.scss │ │ │ │ │ │ │ │ ├── SearchResultDaoCard.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ │ ├── SearchResultDaoCard.spec.tsx │ │ │ │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ │ │ └── SearchResultDaoCard.spec.tsx.snap │ │ │ │ │ │ │ ├── SearchResultDraftProposalLine │ │ │ │ │ │ │ │ ├── SearchResultDraftProposalLine.module.scss │ │ │ │ │ │ │ │ ├── SearchResultDraftProposalLine.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── SearchResultPeopleCard │ │ │ │ │ │ │ │ ├── SearchResultPeopleCard.module.scss │ │ │ │ │ │ │ │ ├── SearchResultPeopleCard.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── SearchResultProposalLine │ │ │ │ │ │ │ │ ├── SearchResultProposalLine.module.scss │ │ │ │ │ │ │ │ ├── SearchResultProposalLine.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── helpers.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── DropdownResults.spec.tsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── DropdownResults.spec.tsx.snap │ │ │ │ │ │ └── helpers.spec.tsx.snap │ │ │ │ │ │ └── helpers.spec.tsx │ │ │ │ └── SearchHints │ │ │ │ │ ├── SearchHints.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── tests │ │ │ └── AppHeader.spec.tsx │ ├── BreadCrumbs │ │ ├── BreadCrumbs.tsx │ │ ├── Breadcrumbs.module.scss │ │ ├── index.ts │ │ └── tests │ │ │ ├── BreadCrumbs.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── BreadCrumbs.spec.tsx.snap │ ├── Chip │ │ ├── Chip.module.scss │ │ ├── Chip.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── Chip.spec.tsx │ ├── ConfirmActionModal │ │ ├── ConfirmActionModal.module.scss │ │ ├── ConfirmActionModal.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── ConfirmActionModal.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── ConfirmActionModal.spec.tsx.snap │ ├── CopyButton │ │ ├── CopyButton.module.scss │ │ ├── CopyButton.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── CopyButton.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── CopyButton.spec.tsx.snap │ ├── CreationProgress │ │ ├── CreationProgress.module.scss │ │ ├── CreationProgress.tsx │ │ ├── components │ │ │ └── CreationProgressStep │ │ │ │ ├── CreationProgressStep.module.scss │ │ │ │ ├── CreationProgressStep.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── tests │ │ │ │ └── CreationProgressStep.spec.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── CreationProgress.spec.tsx │ ├── DaoDetails │ │ ├── DaoDetailsGrid │ │ │ ├── DaoDetailsGrid.module.scss │ │ │ ├── DaoDetailsGrid.tsx │ │ │ ├── components │ │ │ │ ├── DaoDetailsSkeleton │ │ │ │ │ ├── DaoDetailsSkeleton.module.scss │ │ │ │ │ ├── DaoDetailsSkeleton.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── DaoDetailsSkeleton.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── DaoDetailsSkeleton.spec.tsx.snap │ │ │ │ └── DaoInfoCard │ │ │ │ │ ├── DaoInfoCard.module.scss │ │ │ │ │ ├── DaoInfoCard.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ └── DaoInfoCard.spec.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── DaoDetailsGrid.spec.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── DaoDetailsGrid.spec.tsx.snap │ │ │ │ └── mock.ts │ │ ├── DaoDetailsMinimized │ │ │ ├── DaoDetailsMinimized.module.scss │ │ │ ├── DaoDetailsMinimized.tsx │ │ │ ├── components │ │ │ │ └── DaoAction │ │ │ │ │ ├── DaoAction.module.scss │ │ │ │ │ ├── DaoAction.tsx │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── DaoDetailsMinimized.spec.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── DaoDetailsMinimized.spec.tsx.snap │ │ │ │ └── mock.ts │ │ └── index.ts │ ├── DaoFlagWidget │ │ ├── DaoFlag.module.scss │ │ ├── DaoFlagWidget.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── DaoFlagWidget.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── DaoFlagWidget.spec.tsx.snap │ ├── DaoWarning │ │ ├── DaoWarning.module.scss │ │ ├── DaoWarning.tsx │ │ └── index.ts │ ├── DaosList │ │ ├── DaosList.module.scss │ │ ├── DaosList.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── DaosList.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── DaosList.spec.tsx.snap │ ├── DefaultVotingPolicy │ │ ├── DefaultVotingPolicy.module.scss │ │ ├── DefaultVotingPolicy.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── DefaultVotingPolicy.spec.tsx │ │ │ ├── __snapshots__ │ │ │ └── DefaultVotingPolicy.spec.tsx.snap │ │ │ └── mocks.ts │ ├── DotsLoader │ │ ├── DotsLoader.module.scss │ │ ├── DotsLoader.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── DotsLoader.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── DotsLoader.spec.tsx.snap │ ├── EditableContent │ │ ├── EditableContent.module.scss │ │ ├── EditableContent.tsx │ │ └── index.ts │ ├── ErrorBoundary │ │ ├── ErrorBoundary.module.scss │ │ ├── ErrorBoundary.tsx │ │ └── index.ts │ ├── ExpandableDetails │ │ ├── ExpandableDetails.module.scss │ │ ├── ExpandableDetails.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── ExpandableDetails.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── ExpandableDetails.spec.tsx.snap │ ├── Feed │ │ ├── Feed.module.scss │ │ ├── Feed.tsx │ │ ├── components │ │ │ └── FeedFilter │ │ │ │ ├── FeedFilter.module.scss │ │ │ │ ├── FeedFilter.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ ├── FeedFilter.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── FeedFilter.spec.tsx.snap │ │ ├── hooks.ts │ │ ├── index.ts │ │ └── tests │ │ │ ├── Feed.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── Feed.spec.tsx.snap │ ├── FiltersPanel │ │ ├── FiltersPanel.module.scss │ │ ├── FiltersPanel.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── FiltersPanel.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── FiltersPanel.spec.tsx.snap │ ├── Flag │ │ ├── FlagMinimized.module.scss │ │ ├── FlagMinimized.tsx │ │ ├── FlagRenderer.module.scss │ │ ├── FlagRenderer.tsx │ │ └── index.ts │ ├── GenericDropdown │ │ ├── GenericDropdown.module.scss │ │ ├── GenericDropdown.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── InfoBlockWidget │ │ ├── InfoBlockWidget.module.scss │ │ ├── InfoBlockWidget.tsx │ │ ├── components │ │ │ └── InfoValue │ │ │ │ ├── InfoValue.module.scss │ │ │ │ ├── InfoValue.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ └── InfoValue.spec.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── LinkToTop │ │ ├── LinkToTop.module.scss │ │ ├── LinkToTop.tsx │ │ └── index.ts │ ├── LoadingIndicator │ │ ├── LoadingIndicator.module.scss │ │ ├── LoadingIndicator.tsx │ │ └── index.ts │ ├── LocaleSelector │ │ ├── LocaleSelector.module.scss │ │ ├── LocaleSelector.tsx │ │ ├── components │ │ │ └── Locales │ │ │ │ ├── Locales.module.scss │ │ │ │ ├── Locales.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ ├── Locales.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── Locales.spec.tsx.snap │ │ └── index.ts │ ├── MaintenanceWarning │ │ ├── MaintenanceWarning.module.scss │ │ ├── MaintenanceWarning.tsx │ │ ├── components │ │ │ ├── Persona │ │ │ │ ├── Persona.tsx │ │ │ │ └── index.ts │ │ │ └── Star │ │ │ │ ├── Star.module.scss │ │ │ │ ├── Star.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── NavLink │ │ ├── NavLink.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── NavLink.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── NavLink.spec.tsx.snap │ ├── NearIcon │ │ ├── NearIcon.module.scss │ │ ├── NearIcon.tsx │ │ └── index.ts │ ├── NoResultsView │ │ ├── NoResultsView.module.scss │ │ ├── NoResultsView.tsx │ │ └── index.ts │ ├── NotificationCard │ │ ├── NotificationCard.module.scss │ │ ├── NotificationCard.tsx │ │ ├── index.ts │ │ ├── tests │ │ │ ├── NotificationCard.spec.tsx │ │ │ └── __snapshots__ │ │ │ │ └── NotificationCard.spec.tsx.snap │ │ └── types.ts │ ├── NotificationsDisableModal │ │ ├── NotificationsDisableModal.module.scss │ │ ├── NotificationsDisableModal.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── NotificationsDisableModal.spec.tsx │ ├── PageLayout │ │ ├── PageLayout.module.scss │ │ ├── PageLayout.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── PageLayout.spec.tsx │ ├── PolicyAffectedWarning │ │ ├── PolicyAffectedWarning.module.scss │ │ ├── PolicyAffectedWarning.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── PolicyAffectedWarning.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── PolicyAffectedWarning.spec.tsx.snap │ ├── ProposalCardRenderer │ │ ├── PropocalCardRenderer.tsx │ │ ├── ProposalCardRenderer.module.scss │ │ ├── components │ │ │ ├── CreateBountyProposalContent │ │ │ │ ├── CreateBountyProposalContent.module.scss │ │ │ │ ├── CreateBountyProposalContent.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ ├── CreateBountyProposalContent.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── CreateBountyProposalContent.spec.tsx.snap │ │ │ ├── DraftDescription │ │ │ │ ├── DraftDescription.module.scss │ │ │ │ ├── DraftDescription.tsx │ │ │ │ └── index.ts │ │ │ ├── DraftInfo │ │ │ │ ├── DraftInfo.module.scss │ │ │ │ ├── DraftInfo.tsx │ │ │ │ ├── DraftInfoItem │ │ │ │ │ ├── DraftInfoItem.module.scss │ │ │ │ │ ├── DraftInfoItem.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── DraftManagement │ │ │ │ ├── DraftManagement.module.scss │ │ │ │ ├── DraftManagement.tsx │ │ │ │ └── index.ts │ │ │ ├── InfoPanel │ │ │ │ ├── InfoPanel.module.scss │ │ │ │ ├── InfoPanel.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ └── InfoPanel.spec.tsx │ │ │ ├── LetterHeadWidget │ │ │ │ ├── LetterHeadWidget.tsx │ │ │ │ ├── LetterheadWidget.module.scss │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ └── LetterHeadWidget.spec.tsx │ │ │ └── ProposalCard │ │ │ │ ├── ProposalCard.module.scss │ │ │ │ ├── ProposalCard.tsx │ │ │ │ ├── components │ │ │ │ ├── DeleteDraftButton │ │ │ │ │ ├── DeleteDraftButton.module.scss │ │ │ │ │ ├── DeleteDraftButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── ProposalControlPanel │ │ │ │ │ ├── ProposalControlPanel.module.scss │ │ │ │ │ ├── ProposalControlPanel.tsx │ │ │ │ │ ├── components │ │ │ │ │ └── ProposalControlButton │ │ │ │ │ │ ├── ProposalControlButton.module.scss │ │ │ │ │ │ ├── ProposalControlButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── icons.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ └── ProposalCard.spec.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── PropocalCardRenderer.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── PropocalCardRenderer.spec.tsx.snap │ ├── PuzzleCaptcha │ │ ├── PuzzleCaptcha.module.scss │ │ ├── PuzzleCaptcha.tsx │ │ └── index.ts │ ├── ReplyButton │ │ ├── ReplyButton.module.scss │ │ ├── ReplyButton.tsx │ │ └── index.ts │ ├── ScrollList │ │ ├── ScrollList.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── ScrollList.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── ScrollList.spec.tsx.snap │ ├── SearchInput │ │ ├── SearchInput.module.scss │ │ ├── SearchInput.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── SearchInput.spec.tsx │ ├── SelectorIcons │ │ ├── SelectorIcons.module.scss │ │ ├── SelectorNearIcon │ │ │ ├── SelectorNearIcon.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── SenderIcon │ │ ├── SenderIcon.module.scss │ │ ├── SenderIcon.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── SenderIcon.spec.tsx │ ├── SideFilter │ │ ├── SideFilter.module.scss │ │ ├── SideFilter.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── SideFilter.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── SideFilter.spec.tsx.snap │ ├── TgasInput │ │ ├── TgasInput.module.scss │ │ ├── TgasInput.tsx │ │ └── index.ts │ ├── TokenIcon │ │ ├── TokenIcon.module.scss │ │ ├── TokenIcon.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── TokenIcon.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── TokenIcon.spec.tsx.snap │ ├── TokenWidget │ │ ├── TokenWidget.module.scss │ │ ├── TokenWidget.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── TokenWidget.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── TokenWidget.spec.tsx.snap │ ├── Tooltip │ │ ├── Tooltip.module.scss │ │ ├── Tooltip.tsx │ │ └── index.ts │ ├── TransactionDetailsWidget │ │ ├── TransactionDetailsWidget.module.scss │ │ ├── TransactionDetailsWidget.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── TransactionDetailsWidget.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── TransactionDetailsWidget.spec.tsx.snap │ ├── WarningMessage │ │ ├── WarningMessage.module.scss │ │ ├── WarningMessage.tsx │ │ └── index.ts │ ├── inputs │ │ └── radio │ │ │ ├── Radio │ │ │ ├── Radio.module.scss │ │ │ ├── Radio.tsx │ │ │ ├── hooks.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── Radio.spec.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── Radio.spec.tsx.snap │ │ │ │ └── hook.spec.tsx │ │ │ └── RadioGroup │ │ │ ├── RadioGroup.module.scss │ │ │ ├── RadioGroup.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ ├── RadioGroup.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── RadioGroup.spec.tsx.snap │ └── navigation │ │ ├── MobileNav │ │ ├── MobileNav.module.scss │ │ ├── MobileNav.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── MobileNav.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── MobileNav.spec.tsx.snap │ │ ├── NavButton │ │ ├── NavButton.module.scss │ │ ├── NavButton.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── NavButton.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── NavButton.spec.tsx.snap │ │ ├── navConfig.ts │ │ └── types.ts └── features │ ├── App404 │ ├── App404.module.scss │ ├── App404.tsx │ ├── index.ts │ └── tests │ │ ├── App404.spec.tsx │ │ └── __snapshots__ │ │ └── App404.spec.tsx.snap │ ├── AppHealth │ ├── AppHealth.module.scss │ ├── AppHealth.tsx │ └── index.ts │ ├── AppMonitoring │ ├── AppMonitoring.tsx │ ├── index.ts │ └── tests │ │ ├── AppMonitoring.spec.tsx │ │ └── __snapshots__ │ │ └── AppMonitoring.spec.tsx.snap │ ├── Auth │ ├── components │ │ └── ConnectingWalletModal │ │ │ ├── ConnectingWalletModal.module.scss │ │ │ ├── ConnectingWalletModal.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ └── ConnectingWalletModal.spec.tsx │ ├── hooks │ │ └── useAuthCheck.ts │ └── index.ts │ ├── Bounties │ ├── components │ │ ├── BountiesFeed │ │ │ ├── BountiesFeed.module.scss │ │ │ ├── BountiesFeed.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── BountiesFeed.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── BountiesFeed.spec.tsx.snap │ │ ├── BountiesListView │ │ │ ├── BountiesListView.module.scss │ │ │ ├── BountiesListView.tsx │ │ │ ├── components │ │ │ │ ├── AmountContent │ │ │ │ │ ├── AmountContent.module.scss │ │ │ │ │ ├── AmountContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── AmountContent.spec.tsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── AmountContent.spec.tsx.snap │ │ │ │ │ │ └── mock.ts │ │ │ │ ├── ClaimRow │ │ │ │ │ ├── ClaimRow.module.scss │ │ │ │ │ ├── ClaimRow.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── ClaimRow.spec.tsx │ │ │ │ │ │ └── mock.ts │ │ │ │ ├── ClaimsContent │ │ │ │ │ ├── ClaimsContent.module.scss │ │ │ │ │ ├── ClaimsContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── ClaimsContent.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── ClaimsContent.spec.tsx.snap │ │ │ │ ├── CollapsableSection │ │ │ │ │ ├── CollapsableSection.tsx │ │ │ │ │ ├── CollpasableSection.module.scss │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── CollapsableSection.spec.tsx │ │ │ │ ├── CompleteProposalRow │ │ │ │ │ ├── CompleteProposalRow.module.scss │ │ │ │ │ ├── CompleteProposalRow.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── CompleteProposalRow.spec.tsx │ │ │ │ ├── CompletedContent │ │ │ │ │ ├── CompletedContent.module.scss │ │ │ │ │ ├── CompletedContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CompletedContent.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── CompletedContent.spec.tsx.snap │ │ │ │ ├── MobileListView │ │ │ │ │ ├── MobileListView.module.scss │ │ │ │ │ ├── MobileListView.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SectionRow │ │ │ │ │ ├── SectionRow.module.scss │ │ │ │ │ ├── SectionRow.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── UnclaimCompleteContent │ │ │ │ │ ├── UnclaimCompleteContent.module.scss │ │ │ │ │ ├── UnclaimCompleteContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── UnclaimCompleteContent.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── UnclaimCompleteContent.spec.tsx.snap │ │ │ │ └── VotingContent │ │ │ │ │ ├── VotingContent.module.scss │ │ │ │ │ ├── VotingContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ ├── VotingContent.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── VotingContent.spec.tsx.snap │ │ │ ├── index.ts │ │ │ ├── tests │ │ │ │ ├── BountiesListView.spec.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── BountiesListView.spec.tsx.snap │ │ │ │ └── mock.ts │ │ │ └── types.ts │ │ ├── BountiesTimeline │ │ │ ├── BountiesTimeline.module.scss │ │ │ ├── BountiesTimeline.tsx │ │ │ ├── components │ │ │ │ ├── DataRow │ │ │ │ │ ├── DataRow.module.scss │ │ │ │ │ ├── DataRow.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── DataRow.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── DataRow.spec.tsx.snap │ │ │ │ ├── Milestone │ │ │ │ │ ├── Milestone.module.scss │ │ │ │ │ ├── Milestone.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── Milestone.spec.tsx │ │ │ │ ├── StackedMilestones │ │ │ │ │ ├── StackedMilestones.module.scss │ │ │ │ │ ├── StackedMilestones.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TimelineGroups │ │ │ │ │ ├── TimelineGroups.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── TimelineGroups.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── TimelineGroups.spec.tsx.snap │ │ │ │ ├── TimelineHeader │ │ │ │ │ ├── TimelineHeader.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── TimelineHeader.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── TimelineHeader.spec.tsx.snap │ │ │ │ ├── TimelineLegend │ │ │ │ │ ├── TimelineLegend.module.scss │ │ │ │ │ ├── TimelineLegend.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── TimelineLegend.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── TimelineLegend.spec.tsx.snap │ │ │ │ └── TimelineRangeToggle │ │ │ │ │ ├── TimelineRangeToggle.module.scss │ │ │ │ │ ├── TimelineRangeToggle.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ ├── TimelineRangeToggle.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── TimelineRangeToggle.spec.tsx.snap │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── HideBountyContext │ │ │ ├── HideBountyContext.module.scss │ │ │ ├── HideBountyContext.tsx │ │ │ └── index.ts │ │ ├── ViewToggle │ │ │ ├── ViewToggle.module.scss │ │ │ ├── ViewToggle.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── ViewToggle.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── ViewToggle.spec.tsx.snap │ │ └── hooks.ts │ └── helpers.tsx │ ├── CfcLibraryLegacy │ ├── CfcLibraryLegacy.module.scss │ ├── CfcLibraryLegacy.tsx │ └── index.ts │ ├── Comments │ ├── Comments.module.scss │ ├── Comments.tsx │ ├── components │ │ ├── Comment │ │ │ ├── Comment.module.scss │ │ │ ├── Comment.tsx │ │ │ ├── LikeButton │ │ │ │ ├── LikeButton.module.scss │ │ │ │ ├── LikeButton.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ └── LikeButton.spec.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── Comment.spec.tsx │ │ ├── CommentActions │ │ │ ├── CommentAction │ │ │ │ ├── CommentAction.module.scss │ │ │ │ ├── CommentAction.tsx │ │ │ │ └── index.ts │ │ │ ├── CommentActions.module.scss │ │ │ ├── CommentActions.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── CommentActions.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── CommentActions.spec.tsx.snap │ │ └── CommentContent │ │ │ ├── CommentContent.module.scss │ │ │ ├── CommentContent.tsx │ │ │ └── index.ts │ ├── hooks.ts │ ├── index.ts │ └── tests │ │ └── Comments.spec.tsx │ ├── CreateDao │ ├── CreateDao.tsx │ ├── components │ │ ├── CustomEdit │ │ │ ├── CustomEdit.module.scss │ │ │ ├── CustomEdit.tsx │ │ │ ├── CustomEditModal.tsx │ │ │ └── index.ts │ │ ├── DaoAssetsForm │ │ │ ├── DaoAssetsForm.module.scss │ │ │ ├── DaoAssetsForm.tsx │ │ │ └── index.ts │ │ ├── DaoFlagForm │ │ │ ├── DaoFlagForm.module.scss │ │ │ ├── DaoFlagForm.tsx │ │ │ └── index.ts │ │ ├── DaoGroupsForm │ │ │ ├── DaoGroupsForm.module.scss │ │ │ ├── DaoGroupsForm.tsx │ │ │ ├── components │ │ │ │ └── DaoGroupLine │ │ │ │ │ ├── DaoGroupLine.module.scss │ │ │ │ │ ├── DaoGroupLine.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── DaoLegalStatus │ │ │ ├── DaoLegalStatus.module.scss │ │ │ ├── DaoLegalStatus.tsx │ │ │ └── index.ts │ │ ├── DaoLinksForm │ │ │ ├── DaoLinksForm.module.scss │ │ │ ├── DaoLinksForm.tsx │ │ │ ├── components │ │ │ │ └── DaoLinkLine │ │ │ │ │ ├── DaoLinkLine.module.scss │ │ │ │ │ ├── DaoLinkLine.tsx │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── DaoLinksForm.spec.tsx │ │ ├── DaoMembersForm │ │ │ ├── DaoMembersForm.module.scss │ │ │ ├── DaoMembersForm.tsx │ │ │ ├── components │ │ │ │ └── DaoMemberLine │ │ │ │ │ ├── DaoMemberLine.module.scss │ │ │ │ │ ├── DaoMemberLine.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── DaoNameForm │ │ │ ├── DaoNameForm.module.scss │ │ │ ├── DaoNameForm.tsx │ │ │ ├── components │ │ │ │ ├── DaoAddress │ │ │ │ │ ├── DaoAddress.module.scss │ │ │ │ │ ├── DaoAddress.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── DaoAddress.spec.tsx │ │ │ │ └── DaoNameInputSection │ │ │ │ │ ├── DaoNameInputSection.module.scss │ │ │ │ │ ├── DaoNameInputSection.tsx │ │ │ │ │ └── index.ts │ │ │ ├── helpers.ts │ │ │ └── index.ts │ │ ├── DaoProposalCreationForm │ │ │ ├── DaoProposalCreationForm.module.scss │ │ │ ├── DaoProposalCreationForm.tsx │ │ │ └── index.ts │ │ ├── DaoRulesForm │ │ │ ├── DaoRulesForm.module.scss │ │ │ ├── DaoRulesForm.tsx │ │ │ └── index.ts │ │ ├── DaoSubmitForm │ │ │ ├── DaoSubmitForm.module.scss │ │ │ ├── DaoSubmitForm.tsx │ │ │ ├── helpers.ts │ │ │ └── index.ts │ │ ├── DaoVotingPermissionsForm │ │ │ ├── DaoVotingPermissionsForm.module.scss │ │ │ ├── DaoVotingPermissionsForm.tsx │ │ │ └── index.ts │ │ ├── FlagImage │ │ │ ├── FlagImage.module.scss │ │ │ ├── FlagImage.tsx │ │ │ └── tests │ │ │ │ └── FlagImage.spec.tsx │ │ ├── FlagPreview │ │ │ ├── FlagPreview.module.scss │ │ │ ├── FlagPreview.tsx │ │ │ └── FlagPreviewRenderer.tsx │ │ ├── ImageUpload │ │ │ ├── ImageUpload.module.scss │ │ │ ├── ImageUpload.tsx │ │ │ ├── helpers.ts │ │ │ └── index.ts │ │ ├── PreviewModal │ │ │ ├── PreviewModal.tsx │ │ │ └── index.ts │ │ ├── StepCounter │ │ │ ├── StepCounter.module.scss │ │ │ ├── StepCounter.tsx │ │ │ └── index.ts │ │ ├── StepWrapper │ │ │ ├── StepWrapper.module.scss │ │ │ ├── StepWrapper.tsx │ │ │ └── index.ts │ │ ├── SubjectRule │ │ │ ├── SubjectRule.module.scss │ │ │ ├── SubjectRule.tsx │ │ │ ├── components │ │ │ │ └── DaoOptionCard │ │ │ │ │ ├── DaoOptionCard.module.scss │ │ │ │ │ ├── DaoOptionCard.tsx │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── SubjectRule.spec.tsx │ │ ├── SubmitButton │ │ │ ├── SubmitButton.module.scss │ │ │ ├── SubmitButton.tsx │ │ │ └── index.ts │ │ ├── TemplateRules │ │ │ ├── TemplateRules.module.scss │ │ │ ├── TemplateRules.tsx │ │ │ ├── components │ │ │ │ └── TemplateLink │ │ │ │ │ ├── TemplateLink.module.scss │ │ │ │ │ ├── TemplateLink.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ └── TemplateLink.spec.tsx │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── TemplateRules.spec.tsx │ │ ├── UnitSeparator │ │ │ ├── UnitSeparator.module.scss │ │ │ ├── UnitSeparator.tsx │ │ │ └── index.ts │ │ ├── data.tsx │ │ ├── helpers.ts │ │ ├── hooks.ts │ │ └── types.tsx │ ├── constants.ts │ ├── helpers.ts │ ├── index.tsx │ ├── tests │ │ └── CreateDao.spec.tsx │ └── types.ts │ ├── CreateExternalProposal │ ├── CreateExternalProposal.module.scss │ ├── CreateExternalProposal.tsx │ ├── hooks.ts │ ├── index.ts │ └── tests │ │ ├── CreateExternalProposal.spec.tsx │ │ ├── __snapshots__ │ │ └── CreateExternalProposal.spec.tsx.snap │ │ └── hooks.spec.ts │ ├── CreateProposal │ ├── CreateProposal.module.scss │ ├── CreateProposal.tsx │ ├── components │ │ ├── AcceptStakingContractContent │ │ │ ├── AcceptStakingContractContent.tsx │ │ │ └── index.ts │ │ ├── AddBountyContent │ │ │ ├── AddBountyContent.module.scss │ │ │ ├── AddBountyContent.tsx │ │ │ ├── index.ts │ │ │ ├── tests │ │ │ │ ├── AddBountyContent.spec.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── AddBountyContent.spec.tsx.snap │ │ │ │ ├── mock.ts │ │ │ │ └── utils.test.ts │ │ │ └── utils.ts │ │ ├── AddMemberToGroupContent │ │ │ ├── AddMemberToGroupContent.module.scss │ │ │ ├── AddMemberToGroupContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── AddMemberToGroupContent.spec.tsx │ │ ├── CaptchaModal │ │ │ ├── CaptchaModal.module.scss │ │ │ ├── CaptchaModal.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── CaptchaModal.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── CaptchaModal.spec.tsx.snap │ │ ├── ChangeBondsContent │ │ │ ├── ChangeBondsContent.module.scss │ │ │ ├── ChangeBondsContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── ChangeBondsContent.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── ChangeBondsContent.spec.tsx.snap │ │ ├── ChangeDaoFlagContent │ │ │ ├── ChangeDaoFlagContent.module.scss │ │ │ ├── ChangeDaoFlagContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChangeDaoFlagContent.spec.tsx │ │ ├── ChangeDaoLegalInfoContent │ │ │ ├── ChangeDaoLegalInfoContent.module.scss │ │ │ ├── ChangeDaoLegalInfoContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChangeDaoLegalInfoContent.spec.tsx │ │ ├── ChangeDaoNameContent │ │ │ ├── ChangeDaoNameContent.module.scss │ │ │ ├── ChangeDaoNameContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChangeDaoNameContent.spec.tsx │ │ ├── ChangeDaoPurposeContent │ │ │ ├── ChangeDaoPurposeContent.module.scss │ │ │ ├── ChangeDaoPurposeContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChangeDaoPurposeContent.spec.tsx │ │ ├── ChangeLinksContent │ │ │ ├── ChangeLinks.module.scss │ │ │ ├── ChangeLinksContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChangeLinksContent.spec.tsx │ │ ├── ChangePolicyContent │ │ │ ├── ChangePolicyContent.module.scss │ │ │ ├── ChangePolicyContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChangePolicyContent.spec.tsx │ │ ├── ChangeVotingPermissionsContent │ │ │ ├── ChangeVotingPermissionsContent.module.scss │ │ │ ├── ChangeVotingPermissionsContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChangeVotingPermissionsContent.spec.tsx │ │ ├── CreateDaoContent │ │ │ ├── CreateDaoContent.module.scss │ │ │ ├── CreateDaoContent.tsx │ │ │ └── index.ts │ │ ├── CreateGroupContent │ │ │ ├── CreateGroupContent.module.scss │ │ │ ├── CreateGroupContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── CreateGroupContent.spec.tsx │ │ ├── CreateProposalCard │ │ │ ├── CreateProposalCard.module.scss │ │ │ ├── CreateProposalCard.tsx │ │ │ ├── helpers.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── CreateProposalCard.spec.tsx │ │ ├── CreateTokenContent │ │ │ ├── CreateTokenContent.module.scss │ │ │ ├── CreateTokenContent.tsx │ │ │ └── index.ts │ │ ├── CustomFunctionCallContent │ │ │ ├── CustomFunctionCallContent.tsx │ │ │ ├── components │ │ │ │ ├── BuyNftFromMintbaseContent │ │ │ │ │ ├── BuyNftFromMintbaseContent.module.scss │ │ │ │ │ ├── BuyNftFromMintbaseContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── BuyNftFromMintbaseContent.spec.tsx │ │ │ │ │ │ └── mock.ts │ │ │ │ ├── BuyNftFromParasContent │ │ │ │ │ ├── BuyNftFromParasContent.module.scss │ │ │ │ │ ├── BuyNftFromParasContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── BuyNftFromParasContent.spec.tsx │ │ │ │ ├── CreateRoketoStream │ │ │ │ │ ├── CreateRoketoStream.module.scss │ │ │ │ │ ├── CreateRoketoStream.tsx │ │ │ │ │ ├── hooks.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── CustomContent │ │ │ │ │ ├── CustomContent.module.scss │ │ │ │ │ ├── CustomContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── CustomContent.spec.tsx │ │ │ │ ├── SwapsOnRefContent │ │ │ │ │ ├── SwapsOnRefContent.module.scss │ │ │ │ │ ├── SwapsOnRefContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── SwapsOnRefContent.spec.tsx │ │ │ │ ├── TransferNftFromMintbaseContent │ │ │ │ │ ├── TransferNftFromMintbaseContent.module.scss │ │ │ │ │ ├── TransferNftFromMintbaseContent.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── TransferNftFromMintbaseContent.spec.tsx │ │ │ │ └── VoteInOtherDao │ │ │ │ │ ├── VoteInOtherDao.module.scss │ │ │ │ │ ├── VoteInOtherDao.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ └── VoteInOtherDao.spec.tsx │ │ │ ├── hooks.tsx │ │ │ ├── index.ts │ │ │ ├── styles.module.scss │ │ │ ├── tests │ │ │ │ └── CustomFunctionCallContent.spec.tsx │ │ │ └── types.ts │ │ ├── DeployStakingContractContent │ │ │ ├── DeployStakingContractContent.module.scss │ │ │ ├── DeployStakingContractContent.tsx │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── DeployStakingContractContent.spec.tsx │ │ ├── DoneBountyContent │ │ │ ├── BountyDoneContent.module.scss │ │ │ ├── BountyDoneContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── DoneBountyContent.spec.tsx │ │ ├── ErrorIndicator │ │ │ ├── ErrorIndicator.module.scss │ │ │ ├── ErrorIndicator.tsx │ │ │ └── index.ts │ │ ├── GroupedSelect │ │ │ ├── GroupedSelect.module.scss │ │ │ ├── GroupedSelect.tsx │ │ │ └── index.ts │ │ ├── InputWrapper │ │ │ ├── InputWrapper.module.scss │ │ │ ├── InputWrapper.tsx │ │ │ └── index.ts │ │ ├── RemoveMemberFromGroupContent │ │ │ ├── RemoveMemberFromGroupContent.module.scss │ │ │ ├── RemoveMemberFromGroupContent.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── RemoveMemberFromGroupContent.spec.tsx │ │ ├── TokenDistributionContent │ │ │ ├── GroupRow │ │ │ │ ├── GroupRow.module.scss │ │ │ │ ├── GroupRow.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ └── GroupRow.spec.tsx │ │ │ ├── MemberRow │ │ │ │ ├── MemberRow.module.scss │ │ │ │ ├── MemberRow.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ └── MemberRow.spec.tsx │ │ │ ├── TokenDistributionContent.module.scss │ │ │ ├── TokenDistributionContent.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── TokenDistributionContent.spec.tsx │ │ ├── TransferContent │ │ │ ├── TransferContent.module.scss │ │ │ ├── TransferContent.tsx │ │ │ ├── index.ts │ │ │ ├── tests │ │ │ │ ├── TransferContent.spec.tsx │ │ │ │ ├── mock.ts │ │ │ │ └── utils.spec.ts │ │ │ └── utils.ts │ │ ├── TransferFundsContent │ │ │ ├── TransferFundsContent.module.scss │ │ │ ├── TransferFundsContent.tsx │ │ │ └── index.ts │ │ ├── UpdateGroupContent │ │ │ ├── UpdateGroupContent.module.scss │ │ │ ├── UpdateGroupContent.tsx │ │ │ └── index.ts │ │ ├── UpdateVotePolicyToWeightVoting │ │ │ ├── UpdateVotePolicyToWeightVoting.module.scss │ │ │ ├── UpdateVotePolicyToWeightVoting.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── UpdateVotePolicyToWeightVoting.spec.tsx │ │ ├── common.module.scss │ │ └── types.ts │ ├── createProposalHelpers.ts │ ├── helpers │ │ ├── bountiesHelpers.ts │ │ ├── index.ts │ │ ├── initialValues.ts │ │ ├── newProposalObject.ts │ │ ├── permissionsHelpers.ts │ │ ├── proposalObjectHelpers.ts │ │ ├── proposalVariantsHelpers.ts │ │ ├── rootHelper.tsx │ │ ├── tests │ │ │ ├── bountiesHelpers.spec.ts │ │ │ ├── mock.ts │ │ │ ├── newProposalObject.spec.ts │ │ │ └── proposalObjectHelpers.spec.ts │ │ └── validation.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useCreateProposal.tsx │ │ ├── useSubmitDraft.tsx │ │ └── useSubmitProposal.tsx │ ├── index.ts │ ├── tests │ │ ├── CreateProposal.spec.tsx │ │ ├── createProposalHelpers.spec.ts │ │ └── mocks.ts │ └── types.ts │ ├── CustomTokens │ └── CustomTokensContext.tsx │ ├── DaoDashboard │ ├── DaoDashboard.module.scss │ ├── DaoDashboard.tsx │ ├── DaoPurpose │ │ ├── DaoPurpose.module.scss │ │ ├── DaoPurpose.tsx │ │ └── index.ts │ ├── components │ │ ├── DashboardChart │ │ │ ├── DashboardChart.module.scss │ │ │ ├── DashboardChart.tsx │ │ │ ├── components │ │ │ │ └── ChartLegend │ │ │ │ │ ├── ChartLegend.module.scss │ │ │ │ │ ├── ChartLegend.spec.tsx │ │ │ │ │ ├── ChartLegend.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ChartLegend.spec.tsx.snap │ │ │ │ │ └── index.ts │ │ │ ├── helpers.ts │ │ │ └── index.ts │ │ ├── StatCard │ │ │ ├── StatCard.module.scss │ │ │ ├── StatCard.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── StatCard.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── StatCard.spec.tsx.snap │ │ ├── StatChart │ │ │ ├── StatChart.module.scss │ │ │ ├── StatChart.tsx │ │ │ └── index.ts │ │ └── StatPanel │ │ │ ├── StatPanel.module.scss │ │ │ ├── StatPanel.tsx │ │ │ └── index.ts │ ├── hooks.ts │ ├── index.ts │ ├── tests │ │ ├── DaoDashboard.spec.tsx │ │ └── mock.ts │ └── types.ts │ ├── DaoDashboardHeader │ ├── DaoDashboardHeader.module.scss │ ├── DaoDashboardHeader.tsx │ ├── components │ │ ├── CloneDaoWarning │ │ │ ├── CloneDaoWarning.module.scss │ │ │ ├── CloneDaoWarning.tsx │ │ │ ├── components │ │ │ │ ├── ConfirmDismissModal │ │ │ │ │ ├── ConfirmDismissModal.module.scss │ │ │ │ │ ├── ConfirmDismissModal.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── WarningRenderer │ │ │ │ │ ├── WarningRenderer.tsx │ │ │ │ │ └── index.ts │ │ │ ├── helpers.ts │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── DaoHeaderContent │ │ │ ├── DaoHeaderContent.module.scss │ │ │ ├── DaoHeaderContent.tsx │ │ │ └── index.ts │ │ ├── DaoLetterHeadSection │ │ │ ├── DaoLetterHeadSection.tsx │ │ │ └── index.ts │ │ ├── DaoLinks │ │ │ ├── DaoLinks.module.scss │ │ │ ├── DaoLinks.tsx │ │ │ ├── components │ │ │ │ ├── DaoLink │ │ │ │ │ ├── DaoLink.module.scss │ │ │ │ │ ├── DaoLink.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── DaoLink.spec.tsx │ │ │ │ ├── MoreLinksModal │ │ │ │ │ ├── MoreLinks.module.scss │ │ │ │ │ ├── MoreLinksModal.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── MoreLinksModal.spec.tsx │ │ │ │ └── ShowMoreLinks │ │ │ │ │ ├── ShowMoreLinks.module.scss │ │ │ │ │ ├── ShowMoreLinks.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ ├── ShowMoreLinks.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ShowMoreLinks.spec.tsx.snap │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── DaoLinks.spec.tsx │ │ ├── DaoLogo │ │ │ ├── DaoLogo.module.scss │ │ │ ├── DaoLogo.tsx │ │ │ └── index.ts │ │ ├── DaoSocialLinks │ │ │ ├── DaoSocialLinks.module.scss │ │ │ ├── DaoSocialLinks.tsx │ │ │ └── index.ts │ │ ├── DepositToDaoForm │ │ │ ├── DepositToDaoForm.module.scss │ │ │ ├── DepositToDaoForm.tsx │ │ │ ├── components │ │ │ │ ├── DepositButton │ │ │ │ │ ├── DepositButton.module.scss │ │ │ │ │ ├── DepositButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── DepositInput │ │ │ │ │ ├── DepositInput.module.scss │ │ │ │ │ ├── DepositInput.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── FollowButton │ │ │ ├── FollowButton.module.scss │ │ │ ├── FollowButton.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── FollowButton.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── FollowButton.spec.tsx.snap │ │ └── JoinDaoButton │ │ │ ├── JoinDaoButton.module.scss │ │ │ ├── JoinDaoButton.tsx │ │ │ └── index.ts │ ├── hooks.ts │ ├── hooks │ │ ├── tests │ │ │ └── useJoinDao.spec.ts │ │ └── useJoinDao.ts │ ├── index.ts │ └── tests │ │ ├── DaoDashboardHeader.spec.tsx │ │ └── mocks.ts │ ├── DaoFeatureInfo │ ├── DaoFeatureInfo.module.scss │ ├── DaoFeatureInfo.tsx │ └── index.ts │ ├── DaoGovernance │ ├── components │ │ ├── DaoSetting │ │ │ ├── DaoSetting.module.scss │ │ │ ├── DaoSetting.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── DaoSetting.spec.tsx │ │ ├── DaoSettingFlowButton │ │ │ ├── DaoSettingFlowButton.module.scss │ │ │ ├── DaoSettingFlowButton.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── DaoSettingFlowButton.spec.tsx │ │ ├── SettingsCard │ │ │ ├── SettingsCard.module.scss │ │ │ ├── SettingsCard.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── SettingsCard.spec.tsx │ │ └── SettingsFilterToggle │ │ │ ├── SettingsFilterToggle.module.scss │ │ │ ├── SettingsFilterToggle.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ └── SettingsFilterToggle.spec.tsx │ ├── helper.ts │ ├── index.ts │ └── tests │ │ └── helper.spec.ts │ ├── Daos │ ├── Daos.tsx │ └── index.ts │ ├── Discover │ ├── DaoStatsDataProvider.tsx │ ├── components │ │ ├── ChartInterval │ │ │ ├── ChartInterval.module.scss │ │ │ ├── ChartInterval.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChartInterval.spec.tsx │ │ ├── ChartRenderer │ │ │ ├── ChartRenderer.module.scss │ │ │ ├── ChartRenderer.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ChartRenderer.spec.tsx │ │ ├── ContentPanel │ │ │ ├── ContentPanel.module.scss │ │ │ ├── ContentPanel.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── ContentPanel.spec.tsx │ │ ├── ControlTabs │ │ │ ├── ControlTabs.module.scss │ │ │ ├── ControlTabs.tsx │ │ │ └── index.ts │ │ ├── DaosTopList │ │ │ ├── DaosTopList.module.scss │ │ │ ├── DaosTopList.tsx │ │ │ ├── components │ │ │ │ └── TopListItem │ │ │ │ │ ├── TopListItem.module.scss │ │ │ │ │ ├── TopListItem.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ └── TopListItem.spec.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── DaosTopList.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── DaosTopList.spec.tsx.snap │ │ ├── DiscoverPageContext │ │ │ └── DiscoverPageContext.tsx │ │ ├── Flow │ │ │ ├── Flow.module.scss │ │ │ ├── Flow.tsx │ │ │ └── index.ts │ │ ├── GeneralInfo │ │ │ ├── GeneralInfo.module.scss │ │ │ ├── GeneralInfo.tsx │ │ │ └── index.ts │ │ ├── Governance │ │ │ ├── Governance.module.scss │ │ │ ├── Governance.tsx │ │ │ └── index.ts │ │ ├── SelectedDaoDetails │ │ │ ├── SelectedDaoDetails.module.scss │ │ │ ├── SelectedDaoDetails.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── SelectedDaoDetails.spec.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── SelectedDaoDetails.spec.tsx.snap │ │ │ │ └── mock.ts │ │ ├── Tokens │ │ │ ├── Tokens.module.scss │ │ │ ├── Tokens.tsx │ │ │ └── index.ts │ │ ├── TopicsFilter │ │ │ ├── TopicsFilter.module.scss │ │ │ ├── TopicsFilter.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── TopicsFilter.spec.tsx │ │ ├── Tvl │ │ │ ├── Tvl.module.scss │ │ │ ├── Tvl.tsx │ │ │ └── index.ts │ │ └── UsersAndActivity │ │ │ ├── UsersAndActivity.module.scss │ │ │ ├── UsersAndActivity.tsx │ │ │ └── index.ts │ ├── constants.ts │ ├── helpers.ts │ ├── hooks.ts │ └── types.ts │ ├── DraftComments │ ├── DraftComments.module.scss │ ├── DraftComments.tsx │ ├── components │ │ └── NewComment │ │ │ ├── NewComment.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ ├── NewComment.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── NewComment.spec.tsx.snap │ ├── helpers.ts │ └── index.ts │ ├── Drafts │ └── components │ │ ├── DraftWrapper │ │ ├── DraftWrapper.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── DraftWrapper.spec.tsx │ │ └── DraftsProvider │ │ ├── DraftsProvider.tsx │ │ └── index.ts │ ├── FeatureFlagsProvider │ ├── FeatureFlagsProvider.tsx │ └── index.ts │ ├── Feed │ ├── Feed.module.scss │ ├── Feed.tsx │ └── index.ts │ ├── FeedProposals │ ├── FeedProposals.module.scss │ ├── FeedProposals.tsx │ └── index.ts │ ├── Groups │ ├── components │ │ ├── GroupsList │ │ │ ├── GroupsList.module.scss │ │ │ ├── GroupsList.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── GroupsList.spec.tsx │ │ └── index.ts │ └── hooks │ │ ├── tests │ │ └── useSortMembers.spec.ts │ │ └── useSortMembers.ts │ ├── Notifications │ ├── components │ │ ├── NotificationCollapsableSettings │ │ │ ├── NotificationCollapsableSettings.module.scss │ │ │ ├── NotificationCollapsableSettings.tsx │ │ │ └── index.ts │ │ ├── NotificationText │ │ │ ├── NotificationText.module.scss │ │ │ ├── NotificationText.tsx │ │ │ └── index.ts │ │ ├── Notifications │ │ │ ├── Notifications.module.scss │ │ │ ├── Notifications.tsx │ │ │ └── index.ts │ │ ├── NotificationsPageView │ │ │ ├── NotificationsPageView.module.scss │ │ │ ├── NotificationsPageView.tsx │ │ │ └── index.ts │ │ └── PlatformNotificationSettings │ │ │ ├── PlatformNotificationSettings.module.scss │ │ │ ├── PlatformNotificationSettings.tsx │ │ │ └── index.ts │ ├── helpers.tsx │ ├── hooks.ts │ ├── index.ts │ └── types.ts │ ├── Proposals │ ├── components │ │ ├── ProposalFilter │ │ │ ├── ProposalFilter.module.scss │ │ │ ├── ProposalFilter.tsx │ │ │ └── index.ts │ │ └── index.ts │ └── helpers │ │ ├── getStatusFilterOptions.tsx │ │ └── tests │ │ └── getStatusFilterOptions.spec.ts │ ├── TermsAndConditions │ ├── config.ts │ ├── index.ts │ └── types.ts │ ├── ViewBounty │ ├── ViewBounty.tsx │ ├── components │ │ ├── BountyActions │ │ │ ├── BountyActions.module.scss │ │ │ ├── BountyActions.tsx │ │ │ └── index.ts │ │ ├── BountyCard │ │ │ ├── BountyCard.module.scss │ │ │ ├── BountyCard.tsx │ │ │ └── index.ts │ │ ├── BountyProgress │ │ │ ├── BountyProgress.module.scss │ │ │ ├── BountyProgress.tsx │ │ │ └── index.ts │ │ ├── CardContent │ │ │ ├── CardContent.module.scss │ │ │ ├── CardContent.tsx │ │ │ └── index.ts │ │ ├── ClaimCard │ │ │ ├── ClaimCard.module.scss │ │ │ ├── ClaimCard.tsx │ │ │ └── index.ts │ │ ├── ClaimsDonutChart │ │ │ ├── ClaimsDonutChart.tsx │ │ │ └── index.ts │ │ ├── ClaimsInfo │ │ │ ├── ClaimsInfo.module.scss │ │ │ ├── ClaimsInfo.tsx │ │ │ └── index.ts │ │ ├── ClaimsStatistic │ │ │ ├── ClaimsStatistic.module.scss │ │ │ ├── ClaimsStatistic.tsx │ │ │ └── index.ts │ │ ├── CompleteProposalCard │ │ │ ├── CompleteProposalCard.module.scss │ │ │ ├── CompleteProposalCard.tsx │ │ │ └── index.ts │ │ └── InfoPanel │ │ │ ├── InfoPanel.module.scss │ │ │ ├── InfoPanel.tsx │ │ │ └── index.ts │ ├── helpers.tsx │ └── index.ts │ ├── ViewProposal │ ├── ViewProposal.module.scss │ ├── ViewProposal.tsx │ ├── components │ │ ├── AddBountyContent │ │ │ ├── AddBountyContent.module.scss │ │ │ ├── AddBountyContent.tsx │ │ │ └── index.ts │ │ ├── AddMemberToGroupContent │ │ │ ├── AddMemberToGroupContent.module.scss │ │ │ ├── AddMemberToGroupContent.tsx │ │ │ └── index.ts │ │ ├── BackButton │ │ │ ├── BackButton.module.scss │ │ │ ├── BackButton.tsx │ │ │ └── index.ts │ │ ├── ChangeBondsContent │ │ │ ├── ChangeBondsContent.module.scss │ │ │ ├── ChangeBondsContent.tsx │ │ │ └── index.ts │ │ ├── ChangeDaoFlagContent │ │ │ ├── ChangeDaoFlagContent.module.scss │ │ │ ├── ChangeDaoFlagContent.tsx │ │ │ └── index.ts │ │ ├── ChangeDaoLegalInfoContent │ │ │ ├── ChangeDaoLegalInfoContent.module.scss │ │ │ ├── ChangeDaoLegalInfoContent.tsx │ │ │ └── index.ts │ │ ├── ChangeDaoNameContent │ │ │ ├── ChangeDaoNameContent.module.scss │ │ │ ├── ChangeDaoNameContent.tsx │ │ │ └── index.ts │ │ ├── ChangeDaoPurposeContent │ │ │ ├── ChangeDaoPurposeContent.module.scss │ │ │ ├── ChangeDaoPurposeContent.tsx │ │ │ └── index.ts │ │ ├── ChangeLinksContent │ │ │ ├── ChangeLinks.module.scss │ │ │ ├── ChangeLinksContent.tsx │ │ │ └── index.ts │ │ ├── ChangePermissionsContent │ │ │ ├── ChangePermissionsContent.module.scss │ │ │ ├── ChangePermissionsContent.tsx │ │ │ └── index.ts │ │ ├── ChangePolicyContent │ │ │ ├── ChangePolicyContent.module.scss │ │ │ ├── ChangePolicyContent.tsx │ │ │ └── index.ts │ │ ├── ContractAcceptanceContent │ │ │ ├── ContractAcceptanceContent.module.scss │ │ │ ├── ContractAcceptanceContent.tsx │ │ │ └── index.ts │ │ ├── CreateDaoContent │ │ │ ├── CreateDaoContent.module.scss │ │ │ ├── CreateDaoContent.tsx │ │ │ └── index.ts │ │ ├── CreateGroupContent │ │ │ ├── CreateGroupContent.module.scss │ │ │ ├── CreateGroupContent.tsx │ │ │ └── index.ts │ │ ├── CustomFunctionCallContent │ │ │ ├── CustomFunctionCallContent.module.scss │ │ │ ├── CustomFunctionCallContent.tsx │ │ │ ├── components │ │ │ │ ├── CommonContent │ │ │ │ │ ├── CommonContent.module.scss │ │ │ │ │ ├── CommonContent.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Stream │ │ │ │ │ ├── CreateStreamContent.module.scss │ │ │ │ │ └── CreateStreamContent.tsx │ │ │ │ ├── ViewVoteInOtherDao │ │ │ │ │ ├── ViewVoteInOtherDao.module.scss │ │ │ │ │ ├── ViewVoteInOtherDao.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── ViewVoteInOtherDao.spec.tsx │ │ │ │ └── helpers.tsx │ │ │ └── index.ts │ │ ├── FieldWrapper │ │ │ ├── FieldWrapper.module.scss │ │ │ ├── FieldWrapper.tsx │ │ │ └── index.ts │ │ ├── HistorySelector │ │ │ ├── HistorySelector.module.scss │ │ │ ├── HistorySelector.tsx │ │ │ ├── components │ │ │ │ ├── CompareProposal │ │ │ │ │ ├── CompareProposal.module.scss │ │ │ │ │ ├── CompareProposal.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CompareProposalContext │ │ │ │ │ ├── CompareProposalContrext.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── CompareVersionsModal │ │ │ │ │ ├── CompareVersionsModal.module.scss │ │ │ │ │ ├── CompareVersionsModal.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── ProposalComments │ │ │ ├── ProposalComments.module.scss │ │ │ ├── ProposalComments.tsx │ │ │ ├── components │ │ │ │ ├── Comment │ │ │ │ │ ├── Comment.module.scss │ │ │ │ │ ├── Comment.tsx │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── Comment.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Comment.spec.tsx.snap │ │ │ │ └── ConfirmCommentActionModal │ │ │ │ │ ├── ConfirmCommentActionModal.module.scss │ │ │ │ │ ├── ConfirmCommentActionModal.tsx │ │ │ │ │ └── index.ts │ │ │ ├── helpers.tsx │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── RemoveMemberFromGroupContent │ │ │ ├── RemoveMemberFromGroupContent.module.scss │ │ │ ├── RemoveMemberFromGroupContent.tsx │ │ │ └── index.ts │ │ ├── SaveFcTemplate │ │ │ ├── SaveFcTemplate.module.scss │ │ │ ├── SaveFcTemplate.tsx │ │ │ ├── components │ │ │ │ └── SaveFcTemplateModal │ │ │ │ │ ├── SaveFcTemplateModal.module.scss │ │ │ │ │ ├── SaveFcTemplateModal.tsx │ │ │ │ │ ├── helpers.ts │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── TokenDistributionContent │ │ │ ├── GroupRow │ │ │ │ ├── GroupRow.module.scss │ │ │ │ ├── GroupRow.tsx │ │ │ │ └── index.ts │ │ │ ├── MemberRow │ │ │ │ ├── MemberRow.module.scss │ │ │ │ ├── MemberRow.tsx │ │ │ │ └── index.ts │ │ │ ├── TokenDistributionContent.module.scss │ │ │ ├── TokenDistributionContent.tsx │ │ │ └── index.ts │ │ ├── TransferContent │ │ │ ├── TransferContent.module.scss │ │ │ ├── TransferContent.tsx │ │ │ └── index.ts │ │ └── UpdateVotePolicyToWeightVoting │ │ │ ├── UpdateVotePolicyToWeightVoting.module.scss │ │ │ ├── UpdateVotePolicyToWeightVoting.tsx │ │ │ └── index.ts │ ├── helpers.tsx │ ├── index.ts │ └── tests │ │ └── helpers.spec.ts │ ├── dao │ └── HeaderWithFilter │ │ ├── HeaderWithFilter.module.scss │ │ ├── HeaderWithFilter.tsx │ │ ├── index.ts │ │ └── tests │ │ └── HeaderWithFilter.spec.tsx │ └── pages │ ├── cfcLibrary │ ├── components │ │ ├── ListModal │ │ │ ├── ListModal.module.scss │ │ │ ├── ListModal.tsx │ │ │ └── index.ts │ │ ├── OptionsList │ │ │ ├── OptionsList.tsx │ │ │ └── index.ts │ │ └── TemplatesList │ │ │ ├── TemplatesList.module.scss │ │ │ ├── TemplatesList.tsx │ │ │ ├── components │ │ │ └── TemplatesListItem │ │ │ │ ├── TemplatesListItem.module.scss │ │ │ │ ├── TemplatesListItem.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ ├── context.ts │ ├── hooks.ts │ └── index.ts │ ├── myAccount │ ├── AccountBadge │ │ ├── AccountBadge.module.scss │ │ ├── AccountBadge.tsx │ │ └── index.ts │ └── cards │ │ ├── AllowanceKeysCard │ │ ├── AllowanceKeysCard.module.scss │ │ ├── AllowanceKeysCard.tsx │ │ ├── components │ │ │ ├── AllowanceKeyModal │ │ │ │ ├── AllowanceKeyModal.module.scss │ │ │ │ ├── AllowanceKeyModal.tsx │ │ │ │ └── index.ts │ │ │ └── AllowanceKeysRow │ │ │ │ ├── AllowanceKeyRow.module.scss │ │ │ │ ├── AllowanceKeyRow.tsx │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types.ts │ │ ├── CardLine │ │ ├── CardLine.module.scss │ │ ├── CardLine.tsx │ │ └── index.ts │ │ ├── CardTitle │ │ ├── CardTitle.module.scss │ │ ├── CardTitle.tsx │ │ └── index.ts │ │ ├── ConfigCard │ │ ├── ConfigCard.module.scss │ │ ├── ConfigCard.tsx │ │ └── index.ts │ │ ├── ContactInfo │ │ ├── ContactInfo.module.scss │ │ ├── ContactInfo.tsx │ │ └── index.ts │ │ ├── NotificationCard │ │ ├── NotificationCard.module.scss │ │ ├── NotificationCard.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── NotificationCard.spec.tsx │ │ └── WalletIdCard │ │ ├── WalletIdCard.tsx │ │ ├── components │ │ ├── AddUserInfoModal │ │ │ ├── AddUserInfoModal.module.scss │ │ │ ├── AddUserInfoModal.tsx │ │ │ ├── components │ │ │ │ ├── SaveButton │ │ │ │ │ ├── SaveButton.module.scss │ │ │ │ │ ├── SaveButton.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ └── SaveButton.spec.tsx │ │ │ │ └── SendEmail │ │ │ │ │ ├── SendEmail.module.scss │ │ │ │ │ ├── SendEmail.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ └── SendEmail.spec.tsx │ │ │ ├── index.ts │ │ │ ├── tests │ │ │ │ └── AddUserInfoModal.spec.tsx │ │ │ ├── types.ts │ │ │ └── useValidationSchema.ts │ │ ├── ContactLine │ │ │ ├── ContactLine.module.scss │ │ │ ├── ContactLine.tsx │ │ │ ├── components │ │ │ │ ├── ContactAddEditButton │ │ │ │ │ ├── ContactAddEditButton.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── ContactValue │ │ │ │ │ ├── ContactValue.module.scss │ │ │ │ │ ├── ContactValue.tsx │ │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ └── UsaOnly │ │ │ ├── UsaOnly.module.scss │ │ │ ├── UsaOnly.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ └── tests │ │ └── WalletIdCard.spec.tsx │ ├── nestedDaoPagesContent │ ├── BountiesPageContent │ │ ├── BountiesPageContent.module.scss │ │ ├── BountiesPageContent.tsx │ │ └── index.ts │ ├── CreateDraftPageContent │ │ ├── CreateDraftPageContent.tsx │ │ └── index.ts │ ├── CreateGovernanceTokenPageContent │ │ ├── CreateGovernanceTokenPageContent.module.scss │ │ ├── CreateGovernanceTokenPageContent.tsx │ │ ├── components │ │ │ ├── AmountBalanceCard │ │ │ │ ├── AmointBalance.module.scss │ │ │ │ ├── AmountBalanceCard.tsx │ │ │ │ └── index.ts │ │ │ ├── ChooseExistingToken │ │ │ │ ├── ChooseExistingToken.module.scss │ │ │ │ ├── ChooseExistingToken.tsx │ │ │ │ └── index.ts │ │ │ ├── CreateGovernanceTokenWizard │ │ │ │ ├── CreateGovernanceTokenWizard.module.scss │ │ │ │ ├── CreateGovernanceTokenWizard.tsx │ │ │ │ └── index.ts │ │ │ ├── SubHeader │ │ │ │ ├── SubHeader.module.scss │ │ │ │ ├── SubHeader.tsx │ │ │ │ └── index.ts │ │ │ ├── TokenBalance │ │ │ │ ├── TokenBalance.module.scss │ │ │ │ ├── TokenBalance.tsx │ │ │ │ └── index.ts │ │ │ ├── WarningPanel │ │ │ │ ├── WarningPanel.module.scss │ │ │ │ ├── WarningPanel.tsx │ │ │ │ └── index.ts │ │ │ └── steps │ │ │ │ ├── ChangeVotingPolicy │ │ │ │ ├── ChangeVotingPolicy.tsx │ │ │ │ └── index.ts │ │ │ │ ├── ContractAcceptance │ │ │ │ ├── ContractAcceptance.module.scss │ │ │ │ ├── ContractAcceptance.tsx │ │ │ │ └── index.ts │ │ │ │ ├── CreateToken │ │ │ │ ├── CreateToken.module.scss │ │ │ │ ├── CreateToken.tsx │ │ │ │ ├── components │ │ │ │ │ └── CreationProgress │ │ │ │ │ │ ├── CreationProgress.module.scss │ │ │ │ │ │ ├── CreationProgress.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── DelegateVoting │ │ │ │ ├── AccountAmount.tsx │ │ │ │ ├── DelegateVoting.module.scss │ │ │ │ ├── DelegateVoting.tsx │ │ │ │ └── index.ts │ │ │ │ ├── Intro │ │ │ │ ├── Intro.module.scss │ │ │ │ ├── Intro.tsx │ │ │ │ ├── components │ │ │ │ │ └── AdvantageDescription │ │ │ │ │ │ ├── AdvantageDescription.module.scss │ │ │ │ │ │ ├── AdvantageDescription.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── SelectToken │ │ │ │ ├── SelectToken.module.scss │ │ │ │ ├── SelectToken.tsx │ │ │ │ ├── components │ │ │ │ │ └── TokenOption │ │ │ │ │ │ ├── TokenOption.module.scss │ │ │ │ │ │ ├── TokenOption.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── constants.ts │ │ │ │ └── index.ts │ │ │ │ ├── StakeTokens │ │ │ │ ├── StakeTokens.module.scss │ │ │ │ ├── StakeTokens.tsx │ │ │ │ └── index.ts │ │ │ │ └── TokenDistribution │ │ │ │ ├── TokenDistribution.tsx │ │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── hooks.ts │ │ ├── index.ts │ │ └── types.ts │ ├── CustomFunctionCallTemplatesPageContent │ │ ├── CustomFunctionCallTemplatesPageContent.module.scss │ │ ├── CustomFunctionCallTemplatesPageContent.tsx │ │ ├── components │ │ │ └── CustomFcTemplateCard │ │ │ │ ├── CardContent.tsx │ │ │ │ ├── ConfirmModal.module.scss │ │ │ │ ├── ConfirmModal.tsx │ │ │ │ ├── CustomFcTemplateCard.module.scss │ │ │ │ ├── CustomFcTemplateCard.tsx │ │ │ │ ├── components │ │ │ │ └── ApplyToDaos │ │ │ │ │ ├── ApplyToDaos.module.scss │ │ │ │ │ ├── ApplyToDaos.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── hooks.ts │ │ └── index.ts │ ├── DaoConfigPageContent │ │ ├── DaoConfigPageContent.module.scss │ │ ├── DaoConfigPageContent.tsx │ │ └── index.ts │ ├── DaoPolicyPageContent │ │ ├── DaoPolicyPageContent.module.scss │ │ ├── DaoPolicyPageContent.tsx │ │ ├── components │ │ │ ├── DraftSettings │ │ │ │ ├── DraftSettings.module.scss │ │ │ │ ├── DraftSettings.tsx │ │ │ │ └── index.ts │ │ │ ├── ManageGroups │ │ │ │ ├── ManageGroups.module.scss │ │ │ │ ├── ManageGroups.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ConfirmDeleteModal │ │ │ │ │ │ ├── ConfirmDeleteModal.module.scss │ │ │ │ │ │ ├── ConfirmDeleteModal.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ConfirmResetModal │ │ │ │ │ │ ├── ConfirmResetModal.module.scss │ │ │ │ │ │ ├── ConfirmResetModal.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── EditGroup │ │ │ │ │ │ ├── EditGroup.module.scss │ │ │ │ │ │ ├── EditGroup.tsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ └── useProcessMembersPaste.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── GroupQuorum │ │ │ │ │ │ ├── GroupQuorum.module.scss │ │ │ │ │ │ ├── GroupQuorum.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ └── PermissionsSelector │ │ │ │ ├── PermissionsSelector.module.scss │ │ │ │ ├── PermissionsSelector.tsx │ │ │ │ └── index.ts │ │ ├── helpers.ts │ │ └── index.ts │ ├── DaoVersionPageContent │ │ ├── DaoVersionPageContent.module.scss │ │ ├── DaoVersionPageContent.tsx │ │ ├── components │ │ │ ├── UpgradeVersionWizard │ │ │ │ ├── UpgradeVersionWizard.module.scss │ │ │ │ ├── UpgradeVersionWizard.tsx │ │ │ │ ├── components │ │ │ │ │ └── ViewStepProposal │ │ │ │ │ │ ├── ViewStepProposal.module.scss │ │ │ │ │ │ ├── ViewStepProposal.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── helpers.ts │ │ │ │ └── index.ts │ │ │ └── VersionCheck │ │ │ │ ├── VersionCheck.module.scss │ │ │ │ ├── VersionCheck.tsx │ │ │ │ └── index.ts │ │ ├── hooks.ts │ │ └── index.ts │ ├── DelegatePageContent │ │ ├── DelegatePageContent.module.scss │ │ ├── DelegatePageContent.tsx │ │ ├── components │ │ │ ├── ControlledInput │ │ │ │ ├── ControlledInput.module.scss │ │ │ │ ├── ControlledInput.tsx │ │ │ │ └── index.ts │ │ │ ├── DelegateGroupTable │ │ │ │ ├── ActionsRow.tsx │ │ │ │ ├── AddMemberRow.tsx │ │ │ │ ├── DelegateGroupTable.module.scss │ │ │ │ ├── DelegateGroupTable.tsx │ │ │ │ ├── TableRow.tsx │ │ │ │ └── index.ts │ │ │ ├── DelegatePageContext │ │ │ │ ├── DelegatePageContext.tsx │ │ │ │ └── index.ts │ │ │ ├── DelegatePageWidget │ │ │ │ ├── DelegatePageWidget.module.scss │ │ │ │ ├── DelegatePageWidget.tsx │ │ │ │ └── index.ts │ │ │ ├── GoalChart │ │ │ │ ├── GoalChart.module.scss │ │ │ │ ├── GoalChart.tsx │ │ │ │ └── index.ts │ │ │ ├── MyBalanceWidget │ │ │ │ ├── ActionPanel.tsx │ │ │ │ ├── MyBalanceWidget.module.scss │ │ │ │ ├── MyBalanceWidget.tsx │ │ │ │ └── index.ts │ │ │ ├── MyVotingPowerWidget │ │ │ │ ├── MyVotingPowerWidget.module.scss │ │ │ │ ├── MyVotingPowerWidget.tsx │ │ │ │ └── index.ts │ │ │ ├── QuorumErrorWarning │ │ │ │ ├── QuorumErrorWarning.tsx │ │ │ │ └── index.ts │ │ │ ├── VotingPower │ │ │ │ ├── VotingPower.module.scss │ │ │ │ ├── VotingPower.tsx │ │ │ │ └── index.ts │ │ │ └── VotingThresholdWidget │ │ │ │ ├── VotingThresholdWidget.tsx │ │ │ │ └── index.ts │ │ ├── helpers.ts │ │ ├── hooks.ts │ │ ├── index.ts │ │ └── types.ts │ ├── DraftsPageContent │ │ ├── DraftsPageContent.module.scss │ │ ├── DraftsPageContent.tsx │ │ ├── components │ │ │ ├── DraftCard │ │ │ │ ├── DraftCard.module.scss │ │ │ │ ├── DraftCard.tsx │ │ │ │ ├── DraftCardContent.tsx │ │ │ │ └── index.ts │ │ │ ├── DraftsFilters │ │ │ │ ├── DraftsFilters.module.scss │ │ │ │ ├── DraftsFilters.tsx │ │ │ │ └── index.ts │ │ │ ├── DraftsFiltersContainer │ │ │ │ ├── DraftsFiltersContainer.module.scss │ │ │ │ ├── DraftsFiltersContainer.tsx │ │ │ │ └── index.ts │ │ │ ├── DraftsFiltersModal │ │ │ │ ├── DraftsFiltersModal.module.scss │ │ │ │ ├── DraftsFiltersModal.tsx │ │ │ │ ├── Filter │ │ │ │ │ ├── Filter.module.scss │ │ │ │ │ ├── Filter.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── DraftsMobileFilters │ │ │ │ ├── DraftsMobileFilters.module.scss │ │ │ │ ├── DraftsMobileFilters.tsx │ │ │ │ └── index.ts │ │ │ ├── DraftsPageHeader │ │ │ │ ├── DraftsPageHeader.module.scss │ │ │ │ ├── DraftsPageHeader.tsx │ │ │ │ ├── hooks.ts │ │ │ │ └── index.ts │ │ │ └── DraftsStatusFilter │ │ │ │ ├── DraftsStatusFilter.module.scss │ │ │ │ ├── DraftsStatusFilter.tsx │ │ │ │ └── index.ts │ │ ├── helpers.ts │ │ ├── hooks.ts │ │ └── index.ts │ ├── EditDraftPageContent │ │ ├── EditDraftPageContent.tsx │ │ └── index.ts │ ├── GovernanceTokenInfoPageContent │ │ ├── components │ │ │ ├── InfoPanel │ │ │ │ ├── InfoPanel.module.scss │ │ │ │ ├── InfoPanel.tsx │ │ │ │ └── index.ts │ │ │ └── StakingContract │ │ │ │ ├── StakingContract.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── GroupsPageContent │ │ ├── GroupsPageContent.module.scss │ │ ├── GroupsPageContent.tsx │ │ └── index.ts │ ├── NFTsPageContent │ │ ├── NFTsPageContent.module.scss │ │ ├── NFTsPageContent.tsx │ │ └── index.ts │ ├── NestedDaoPageWrapper │ │ ├── NestedDaoPageWrapper.module.scss │ │ ├── NestedDaoPageWrapper.tsx │ │ ├── components │ │ │ ├── DaoCreateProposal │ │ │ │ ├── DaoCreateProposal.module.scss │ │ │ │ ├── DaoCreateProposal.tsx │ │ │ │ └── index.ts │ │ │ └── DaoLowBalanceWarning │ │ │ │ ├── DaoLowBalanceWarning.module.scss │ │ │ │ ├── DaoLowBalanceWarning.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── ProposalPageContent │ │ ├── ProposalPageContent.module.scss │ │ ├── ProposalPageContent.tsx │ │ └── index.ts │ ├── SettingsPageContent │ │ ├── SettingsPageContent.module.scss │ │ ├── SettingsPageContent.tsx │ │ └── index.ts │ └── TokensPageContent │ │ ├── TokensPageContent.module.scss │ │ ├── TokensPageContent.tsx │ │ └── index.ts │ ├── nft │ └── NtfCard │ │ ├── NFTCard.tsx │ │ ├── NtfCard.module.scss │ │ └── index.ts │ └── plugins │ ├── PluginCard │ ├── PluginCard.module.scss │ ├── PluginCard.tsx │ ├── components │ │ └── ProposalStatusPanel │ │ │ ├── ProposalStatusPanel.module.scss │ │ │ ├── ProposalStatusPanel.tsx │ │ │ └── index.ts │ └── index.ts │ └── UsePluginPopup │ ├── UsePluginPopup.module.scss │ ├── UsePluginPopup.tsx │ ├── components │ └── UsePluginWizard │ │ ├── UsePluginWizard.module.scss │ │ ├── UsePluginWizard.tsx │ │ ├── components │ │ ├── CreateTokenView │ │ │ ├── CreateTokenView.module.scss │ │ │ ├── CreateTokenView.tsx │ │ │ └── index.ts │ │ ├── NewFunctionView │ │ │ ├── NewFunctionView.module.scss │ │ │ ├── NewFunctionView.tsx │ │ │ └── index.ts │ │ └── PeviousFunctionsView │ │ │ ├── PeviousFunctionsView.module.scss │ │ │ ├── PreviousFunctionsView.tsx │ │ │ └── index.ts │ │ ├── helpers.ts │ │ └── index.ts │ ├── index.ts │ └── types.ts ├── astro_3.0 ├── components │ ├── AnimatedLayout │ │ ├── AnimatedLayout.tsx │ │ └── index.ts │ ├── AppAnnouncerModal │ │ ├── AppAnnouncerModal.module.scss │ │ ├── AppAnnouncerModal.tsx │ │ └── index.ts │ ├── AppLogoSelector │ │ ├── AppLogoSelector.module.scss │ │ ├── AppLogoSelector.tsx │ │ └── index.ts │ ├── ContextPopup │ │ ├── ContextPopup.module.scss │ │ ├── ContextPopup.tsx │ │ └── index.ts │ ├── CookiePolicyDisclaimer │ │ ├── CookiePolicyDisclaimer.module.scss │ │ ├── CookiePolicyDisclaimer.tsx │ │ └── index.ts │ ├── CreateProposalSelector │ │ ├── CreateProposalSelector.module.scss │ │ ├── CreateProposalSelector.tsx │ │ ├── components │ │ │ └── DummyProposalCard │ │ │ │ ├── DummyProposalCard.module.scss │ │ │ │ ├── DummyProposalCard.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── DaoAssetsSelect │ │ ├── DaoAssetsSelect.module.scss │ │ ├── DaoAssetsSelect.tsx │ │ └── index.ts │ ├── DaoDashboardLogo │ │ ├── DaoDashboardLogo.module.scss │ │ ├── DaoDashboardLogo.tsx │ │ └── index.ts │ ├── FeedSort │ │ ├── FeedSort.module.scss │ │ ├── FeedSort.tsx │ │ └── index.ts │ ├── MobileFullscreenPopup │ │ ├── MobileFullscreenPopup.module.scss │ │ ├── MobileFullscreenPopup.tsx │ │ └── index.ts │ └── SortMenu │ │ ├── SortMenu.module.scss │ │ ├── SortMenu.tsx │ │ └── index.ts └── features │ ├── AppHeader │ ├── AppHeader.module.scss │ ├── AppHeader.tsx │ ├── components │ │ ├── AppLogo │ │ │ ├── AppLogo.tsx │ │ │ └── index.ts │ │ └── MobileDaosMenu │ │ │ ├── MobileDaosMenu.module.scss │ │ │ ├── MobileDaosMenu.tsx │ │ │ └── index.ts │ └── index.ts │ ├── AppVersion │ ├── AppVersion.tsx │ └── index.ts │ ├── Bounties │ ├── Bounties.tsx │ ├── components │ │ ├── BountiesFeed │ │ │ ├── BountiesFeed.module.scss │ │ │ ├── BountiesFeed.tsx │ │ │ └── index.ts │ │ ├── BountiesFeedFilters │ │ │ ├── BountiesFeedFilters.module.scss │ │ │ ├── BountiesFeedFilters.tsx │ │ │ └── index.ts │ │ ├── BountiesFeedNext │ │ │ ├── BountiesFeedNext.module.scss │ │ │ ├── BountiesFeedNext.tsx │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── BountiesFeedSort │ │ │ ├── BountiesFeedSort.module.scss │ │ │ ├── BountiesFeedSort.tsx │ │ │ └── index.ts │ │ └── DaoBounties │ │ │ ├── DaoBounties.tsx │ │ │ ├── DaoBountiesList.tsx │ │ │ └── index.ts │ └── index.ts │ ├── BountiesV2 │ ├── BountiesList.module.scss │ ├── BountiesList.tsx │ ├── BountiesV2.tsx │ └── index.ts │ ├── CfcLibraryNext │ ├── CfcLibraryNext.module.scss │ ├── CfcLibraryNext.tsx │ ├── hooks.ts │ └── index.ts │ ├── DaoProposalsFeed │ ├── DaoProposalsFeed.module.scss │ ├── DaoProposalsFeed.tsx │ └── index.ts │ ├── DaosNext │ ├── DaosNext.module.scss │ ├── DaosNext.tsx │ ├── components │ │ └── AdditionalDaosFilters │ │ │ ├── AdditionalDaosFilters.module.scss │ │ │ ├── AdditionalDaosFilters.tsx │ │ │ └── index.ts │ ├── helpers.ts │ └── index.ts │ ├── DraftProposalView │ ├── DraftProposalView.tsx │ └── index.ts │ ├── DraftsFeedNext │ ├── DraftsFeedNext.module.scss │ ├── DraftsFeedNext.tsx │ ├── components │ │ └── DraftsFeedFilters │ │ │ ├── DraftsFeedFilters.module.scss │ │ │ ├── DraftsFeedFilters.tsx │ │ │ └── index.ts │ └── hooks.ts │ ├── FeedLayout │ ├── FeedLayout.module.scss │ ├── FeedLayout.tsx │ ├── components │ │ ├── FeedControlsLayout │ │ │ ├── FeedControlsLayout.module.scss │ │ │ ├── FeedControlsLayout.tsx │ │ │ └── index.ts │ │ └── FeedTabs │ │ │ ├── FeedTabs.module.scss │ │ │ ├── FeedTabs.tsx │ │ │ └── index.ts │ └── index.ts │ ├── MainLayout │ ├── MainLayout.module.scss │ ├── MainLayout.tsx │ └── index.ts │ ├── MobileAppNavigation │ ├── MobileAppNavigation.module.scss │ ├── MobileAppNavigation.tsx │ ├── components │ │ ├── MobileNavItem │ │ │ ├── MobileNavItem.module.scss │ │ │ ├── MobileNavItem.tsx │ │ │ └── index.ts │ │ └── MoreInfo │ │ │ ├── MoreInfo.module.scss │ │ │ ├── MoreInfo.tsx │ │ │ └── index.ts │ └── index.ts │ ├── NotificationsPageContent │ ├── NotificationsPageContent.module.scss │ ├── NotificationsPageContent.tsx │ └── index.ts │ ├── PollsProposalsFeed │ ├── PollsProposalsFeed.module.scss │ ├── PollsProposalsFeed.tsx │ └── index.ts │ ├── ProposalsFeed │ ├── ProposalsFeed.module.scss │ ├── ProposalsFeed.tsx │ ├── components │ │ ├── CategoriesFeedFilter │ │ │ ├── CategoriesFeedFilter.module.scss │ │ │ ├── CategoriesFeedFilter.tsx │ │ │ └── index.ts │ │ ├── MobileFilters │ │ │ ├── MobileFilters.module.scss │ │ │ ├── MobileFilters.tsx │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── ProposalsFeedFilters │ │ │ ├── ProposalsFeedFilters.module.scss │ │ │ ├── ProposalsFeedFilters.tsx │ │ │ └── index.ts │ │ ├── RadioListFilter │ │ │ ├── RadioListFilter.module.scss │ │ │ ├── RadioListFilter.tsx │ │ │ └── index.ts │ │ └── StatusFeedFilter │ │ │ ├── StatusFeedFilter.module.scss │ │ │ ├── StatusFeedFilter.tsx │ │ │ └── index.ts │ └── index.ts │ ├── ProposalsFeedNext │ ├── ProposalsFeed.module.scss │ ├── ProposalsFeedNext.tsx │ ├── components │ │ ├── AdditionalFilters │ │ │ ├── AdditionalFilters.module.scss │ │ │ ├── AdditionalFilters.tsx │ │ │ └── index.ts │ │ ├── CategoriesFeedFilter │ │ │ ├── CategoriesFeedFilter.module.scss │ │ │ ├── CategoriesFeedFilter.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── ProposalsFeedFilters │ │ │ ├── ProposalsFeedFilters.module.scss │ │ │ ├── ProposalsFeedFilters.tsx │ │ │ └── index.ts │ ├── hooks.ts │ └── index.ts │ ├── SearchBar │ ├── SearchBar.module.scss │ ├── SearchBar.tsx │ ├── components │ │ └── DropdownResults │ │ │ ├── DropdownResults.module.scss │ │ │ ├── DropdownResults.tsx │ │ │ ├── components │ │ │ └── ResultSection │ │ │ │ ├── ResultSection.module.scss │ │ │ │ ├── ResultSection.tsx │ │ │ │ ├── components │ │ │ │ ├── SearchResultDaoCard │ │ │ │ │ ├── SearchResultDaoCard.module.scss │ │ │ │ │ ├── SearchResultDaoCard.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── SearchResultDaoCard.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── SearchResultDaoCard.spec.tsx.snap │ │ │ │ ├── SearchResultPeopleCard │ │ │ │ │ ├── SearchResultPeopleCard.module.scss │ │ │ │ │ ├── SearchResultPeopleCard.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SearchResultProposalLine │ │ │ │ │ ├── SearchResultProposalLine.module.scss │ │ │ │ │ ├── SearchResultProposalLine.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── helpers.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ ├── DropdownResults.spec.tsx │ │ │ ├── __snapshots__ │ │ │ ├── DropdownResults.spec.tsx.snap │ │ │ └── helpers.spec.tsx.snap │ │ │ └── helpers.spec.tsx │ └── index.ts │ ├── Sidebar │ ├── Sidebar.module.scss │ ├── Sidebar.tsx │ ├── components │ │ ├── SidebarActionItem │ │ │ ├── SidebarActionItem.module.scss │ │ │ ├── SidebarActionItem.tsx │ │ │ └── index.ts │ │ ├── SidebarDaos │ │ │ ├── SidebarDaos.module.scss │ │ │ ├── SidebarDaos.tsx │ │ │ └── index.ts │ │ ├── SidebarMarker │ │ │ ├── SidebarMarker.module.scss │ │ │ ├── SidebarMarker.tsx │ │ │ └── index.ts │ │ ├── SidebarMore │ │ │ ├── SidebarMore.module.scss │ │ │ ├── SidebarMore.tsx │ │ │ └── index.ts │ │ └── SidebarNavItem │ │ │ ├── SidebarNavItem.module.scss │ │ │ ├── SidebarNavItem.tsx │ │ │ └── index.ts │ ├── helpers.ts │ └── index.ts │ ├── TokensPageContentV2 │ ├── TokensPageContentV2.module.scss │ ├── TokensPageContentV2.tsx │ ├── helpers.ts │ ├── hooks.ts │ └── index.ts │ └── TransactionResult │ └── hooks.ts ├── bitbucket-pipelines.yml ├── components ├── AreaChartRenderer │ ├── AreaChart.module.scss │ ├── AreaChartRenderer.tsx │ ├── components │ │ ├── Chart │ │ │ ├── Chart.tsx │ │ │ └── index.ts │ │ ├── ChartTooltip │ │ │ ├── ChartTooltip.module.scss │ │ │ ├── ChartTooltip.tsx │ │ │ ├── dot.tsx │ │ │ └── index.ts │ │ ├── chart-caption │ │ │ ├── ChartCaption.tsx │ │ │ ├── chart-caption.module.scss │ │ │ └── index.ts │ │ └── range-toggle │ │ │ ├── RangeToggle.module.scss │ │ │ ├── RangeToggle.tsx │ │ │ └── index.ts │ ├── helpers.ts │ ├── hooks.ts │ ├── index.ts │ └── types.ts ├── Badge │ ├── Badge.module.scss │ ├── Badge.tsx │ └── index.ts ├── BadgeList │ ├── BadgeList.module.scss │ ├── BadgeList.tsx │ ├── index.ts │ └── tests │ │ ├── BadgeList.spec.tsx │ │ └── __snapshots__ │ │ └── BadgeList.spec.tsx.snap ├── DaoAddressLink │ ├── DaoAddressLink.tsx │ ├── index.ts │ └── tests │ │ ├── DaoAddressLink.spec.tsx │ │ └── __snapshots__ │ │ └── DaoAddressLink.spec.tsx.snap ├── Dropdown │ ├── Dropdown.module.scss │ ├── Dropdown.tsx │ └── index.ts ├── ExplorerLink │ ├── ExplorerLink.module.scss │ ├── ExplorerLink.tsx │ ├── index.ts │ └── types.ts ├── ExternalLink │ ├── ExternalLink.module.scss │ ├── ExternalLink.tsx │ └── index.ts ├── Icon.tsx ├── Logo │ ├── Logo.tsx │ ├── index.ts │ └── logo.module.scss ├── Pagination │ ├── Pagination.module.scss │ ├── Pagination.tsx │ ├── components │ │ └── NavLabel │ │ │ ├── NavLabel.module.scss │ │ │ ├── NavLabel.tsx │ │ │ └── index.ts │ └── index.ts ├── Popup │ ├── Popup.module.scss │ ├── Popup.tsx │ └── index.ts ├── Sidebar │ ├── Sidebar.module.scss │ ├── Sidebar.tsx │ ├── components │ │ └── NavItem │ │ │ ├── NavItem.module.scss │ │ │ ├── NavItem.tsx │ │ │ └── index.ts │ └── index.ts ├── Tabs │ ├── Tabs.module.scss │ ├── Tabs.tsx │ ├── index.ts │ └── types.ts ├── Typography.tsx ├── VoteDetails │ └── components │ │ └── progress-bar │ │ ├── ProgressBar.tsx │ │ └── progress-bar.module.scss ├── button │ ├── Button.module.scss │ ├── Button.tsx │ ├── IconButton.module.scss │ ├── IconButton.tsx │ ├── IconTextButton.module.scss │ ├── IconTextButton.tsx │ ├── VotingButton.tsx │ └── voting-button.module.scss ├── cards │ ├── TokenCard │ │ ├── TokenCard.module.scss │ │ ├── TokenCard.tsx │ │ ├── components │ │ │ └── FormattedNumericValue │ │ │ │ ├── FormattedNumericValue.module.scss │ │ │ │ ├── FormattedNumericValue.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── TransactionCard │ │ ├── TransactionCard.module.scss │ │ ├── TransactionCard.tsx │ │ └── index.ts │ └── member-card │ │ ├── GroupsRenderer │ │ ├── GroupsRenderer.module.scss │ │ ├── GroupsRenderer.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── GroupsRenderer.spec.tsx │ │ ├── MemberCard │ │ ├── MemberCard.module.scss │ │ ├── MemberCard.tsx │ │ ├── components │ │ │ ├── SmileSvg │ │ │ │ ├── SmileSvg.tsx │ │ │ │ └── index.ts │ │ │ └── Tokens │ │ │ │ ├── Tokens.tsx │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ ├── Tokens.spec.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── Tokens.spec.tsx.snap │ │ ├── index.ts │ │ └── tests │ │ │ └── MemberCard.spec.tsx │ │ ├── MemberCardPopup │ │ ├── MemberCardPopup.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── MemberCardPopup.spec.tsx │ │ └── types.ts ├── collapsable │ ├── Collapsable.tsx │ └── tests │ │ └── Collapsable.spec.tsx ├── inputs │ ├── Checkbox │ │ ├── Checkbox.module.scss │ │ ├── Checkbox.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── Checkbox.spec.tsx │ ├── Input │ │ ├── DebouncedInput.tsx │ │ ├── Input.module.scss │ │ ├── Input.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── InputFormWrapper │ │ ├── InputFormWrapper.module.scss │ │ ├── InputFormWrapper.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── InputFormWrapper.spec.tsx │ ├── TextArea │ │ ├── TextArea.tsx │ │ ├── Textarea.module.scss │ │ ├── index.ts │ │ └── tests │ │ │ └── TextArea.spec.tsx │ ├── Toggle │ │ ├── Toggle.module.scss │ │ ├── Toggle.tsx │ │ ├── components │ │ │ └── ToggleDisplay │ │ │ │ ├── ToggleDisplay.module.scss │ │ │ │ ├── ToggleDisplay.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ └── selects │ │ ├── DropdownMultiSelect.tsx │ │ ├── DropdownSelect.module.scss │ │ ├── DropdownSelect.tsx │ │ └── Select │ │ ├── Select.module.scss │ │ ├── Select.tsx │ │ └── index.ts ├── loader │ ├── Loader.module.scss │ ├── Loader.tsx │ └── index.ts └── modal │ ├── Modal.module.scss │ ├── Modal.tsx │ ├── ModalContext.ts │ ├── ModalProvider.tsx │ ├── hooks.tsx │ └── index.ts ├── config ├── aws.ts ├── fetchConfig.ts ├── index.ts └── near.ts ├── constants ├── common.ts ├── cookies.ts ├── countryPhoneCodes.ts ├── featureFlags.ts ├── googleTagManager.ts ├── integrations.ts ├── localStorage.ts ├── proposals.ts ├── regexp.ts ├── routing.ts ├── timeConstants.ts └── votingConstants.ts ├── context ├── AllTokensContext │ ├── AllTokensContext.tsx │ └── index.ts ├── DaoSettingsContext │ ├── DaoSettingsContext.tsx │ ├── hooks.ts │ └── index.ts ├── DaoTokensContext │ ├── DaoTokensContext.tsx │ └── index.ts ├── SocketContext.tsx ├── WalletContext │ ├── WalletContext.tsx │ ├── hooks │ │ ├── useAvailableAccounts.ts │ │ ├── usePkAndSignature.ts │ │ └── useWallet.ts │ ├── index.ts │ ├── types.ts │ └── utils │ │ ├── initNearWallet.ts │ │ ├── initSenderWallet.ts │ │ └── initWalletSelector.ts └── types.ts ├── deployment └── app-chart │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── astro-ui-configmap.yaml │ ├── deployment.yaml │ ├── ingress.yml │ ├── service.yaml │ └── ver-configmap.yaml │ └── values.yaml ├── diff.d.ts ├── env.d.ts ├── errors └── SputnikWalletError.ts ├── features ├── daos │ └── helpers.ts ├── groups │ ├── helpers.ts │ └── types.ts ├── notifications │ ├── Notification │ │ ├── Notification.module.scss │ │ ├── Notification.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── Notification.spec.tsx │ ├── NotificationContainer │ │ ├── NotificationContainer.module.scss │ │ ├── NotificationContainer.tsx │ │ ├── index.ts │ │ └── tests │ │ │ └── NotificationContainer.spec.tsx │ ├── index.ts │ ├── mock.ts │ ├── notificationConstants.ts │ ├── notificationUtils.ts │ └── types.ts ├── proposal │ ├── components │ │ ├── ProposalActions │ │ │ ├── ProposalActions.module.scss │ │ │ ├── ProposalActions.tsx │ │ │ ├── components │ │ │ │ ├── BehaviorActions │ │ │ │ │ ├── BehaviorActions.module.scss │ │ │ │ │ ├── BehaviorActions.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── NFTActions │ │ │ │ │ ├── NFTActions.module.scss │ │ │ │ │ ├── NFTActions.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── SocialActions │ │ │ │ │ ├── SocialActions.module.scss │ │ │ │ │ ├── SocialActions.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── VoicesProgressBar │ │ │ ├── VotesProgressBar.module.scss │ │ │ ├── VotesProgressBar.tsx │ │ │ └── index.ts │ │ ├── VoteCollapsableHeader │ │ │ ├── VoteCollapsableHeader.module.scss │ │ │ ├── VoteCollapsableHeader.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── VoteCollapsableHeader.spec.ts │ │ ├── VoteCollapsableList │ │ │ ├── VoteCollapsableList.module.scss │ │ │ ├── VoteCollapsableList.tsx │ │ │ └── index.ts │ │ ├── VoteTimeline │ │ │ ├── ExtraActions │ │ │ │ ├── ExtraActions.module.scss │ │ │ │ ├── ExtraActions.tsx │ │ │ │ └── index.ts │ │ │ ├── FinishProposal │ │ │ │ ├── FinishProposal.module.scss │ │ │ │ ├── FinishProposal.tsx │ │ │ │ └── index.ts │ │ │ ├── VoteAction │ │ │ │ ├── VoteAction.module.scss │ │ │ │ ├── VoteAction.tsx │ │ │ │ └── index.ts │ │ │ ├── VoteTimeline.module.scss │ │ │ ├── VoteTimeline.tsx │ │ │ ├── constants.ts │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── VoterDetailsCard │ │ │ ├── VoterDetailsCard.module.scss │ │ │ ├── VoterDetailsCard.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── VoterDetailsCard.spec.tsx │ │ └── VotersList │ │ │ ├── VotersList.module.scss │ │ │ ├── VotersList.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ └── VotersList.spec.tsx │ ├── helpers.ts │ └── hooks.ts ├── search │ └── search-results │ │ ├── SearchResults.tsx │ │ ├── components │ │ ├── CommentsTabView │ │ │ ├── CommentsTabView.module.scss │ │ │ ├── CommentsTabView.tsx │ │ │ └── index.ts │ │ ├── DraftsTabView │ │ │ ├── DraftsTabView.module.scss │ │ │ ├── DraftsTabView.tsx │ │ │ └── index.ts │ │ ├── MembersTabView │ │ │ ├── MembersTabView.module.scss │ │ │ ├── MembersTabView.tsx │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── MembersTabView.spec.tsx │ │ ├── NoSearchResultsView │ │ │ ├── NoSearchResultsView.module.scss │ │ │ ├── NoSearchResultsView.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── NoSearchResultsView.spec.tsx │ │ ├── daos-tab-view │ │ │ ├── DaosTabView.tsx │ │ │ ├── dao-tab-view.module.scss │ │ │ └── index.ts │ │ ├── highlighter │ │ │ ├── Highlighter.tsx │ │ │ └── index.ts │ │ ├── proposals-tab-view │ │ │ ├── ProposalDetailsCard │ │ │ │ ├── ProposalDetailsCard.module.scss │ │ │ │ ├── ProposalDetailsCard.tsx │ │ │ │ ├── ProposalDetailsCardContent.tsx │ │ │ │ └── index.ts │ │ │ ├── ProposalsTabView.module.scss │ │ │ ├── ProposalsTabView.tsx │ │ │ ├── constants.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── search-results-renderer │ │ │ ├── SearchResultsRenderer.tsx │ │ │ ├── index.ts │ │ │ ├── search-results-renderer.module.scss │ │ │ └── tests │ │ │ ├── SearchResultsRenderer.spec.tsx │ │ │ ├── __snapshots__ │ │ │ └── SearchResultsRenderer.spec.tsx.snap │ │ │ └── mock.ts │ │ └── index.ts ├── treasury │ └── helpers.ts ├── types.ts └── vote-policy │ ├── components │ ├── Group │ │ ├── Group.module.scss │ │ ├── Group.tsx │ │ ├── index.ts │ │ └── tests │ │ │ ├── Group.spec.tsx │ │ │ └── __snapshots__ │ │ │ └── Group.spec.tsx.snap │ └── common.module.scss │ ├── helpers.ts │ └── tests │ └── helpers.spec.ts ├── global.d.ts ├── hooks ├── useAppInitialize.ts ├── useAppVersion.ts ├── useAvailableActionsCounters.ts ├── useBlockchainWarning.ts ├── useCountdown.ts ├── useCreateDraftPermissions.ts ├── useCustomTokens.ts ├── useDaoContext.ts ├── useDaoIds.ts ├── useDaoSubscriptions.ts ├── useDebounceUpdateEffect.ts ├── useDeviceType.ts ├── useDraft.ts ├── useDraftService.ts ├── useGetBreadcrumbsConfig.ts ├── useIntercomAdjust.ts ├── useIsHrefActive.ts ├── useIsValidImage.ts ├── useLoadDateLocale.ts ├── useNearPrice.ts ├── useOnClickOutside.ts ├── useOnRouterChange.ts ├── useProposal.ts ├── useQuery.ts ├── useRouterLoading.ts ├── useSyncRefs.ts ├── useToggleable.tsx └── useWindowResize.ts ├── img.png ├── jest.config.js ├── jest ├── __mocks__ │ ├── fileMock.js │ └── styleMock.js └── testUtils.tsx ├── mocks ├── bountyContextData.ts ├── notificationsData.ts └── pluginsPageData.ts ├── next-env.d.ts ├── next-i18next.config.js ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── 500.tsx ├── _app.tsx ├── _document.tsx ├── all │ ├── daos │ │ ├── AllDaosPage.module.scss │ │ ├── AllDaosPage.tsx │ │ └── index.ts │ └── feed │ │ ├── GlobalFeedPage.module.scss │ │ └── index.tsx ├── api │ ├── config.ts │ ├── createProposal.ts │ ├── health.ts │ ├── nearPrice.ts │ ├── server │ │ └── [...path].ts │ └── upload-to-s3.ts ├── bounties │ ├── BountiesPage.tsx │ └── index.ts ├── callback │ ├── auth.tsx │ ├── pending.tsx │ └── transaction.tsx ├── cfc-library │ ├── CfcLibraryPage.tsx │ ├── [template] │ │ ├── SharedTemplatePage.module.scss │ │ ├── SharedlTemplatePage.tsx │ │ └── index.ts │ └── index.ts ├── create-dao-new │ ├── CreateDaoPage.module.scss │ ├── CreateDaoPage.tsx │ └── index.tsx ├── dao │ └── [dao] │ │ ├── create-draft │ │ ├── CreateDraftPage.module.scss │ │ ├── CreateDraftPage.tsx │ │ └── index.ts │ │ ├── dao │ │ ├── DaoPage.module.scss │ │ ├── DaoPage.tsx │ │ └── index.ts │ │ ├── delegate │ │ ├── DelegatePage.tsx │ │ └── index.ts │ │ ├── drafts │ │ ├── DraftsPage.tsx │ │ ├── [draft] │ │ │ ├── Draft.module.scss │ │ │ ├── DraftPage.tsx │ │ │ ├── edit-draft │ │ │ │ ├── EditDraftPage.module.scss │ │ │ │ ├── EditDraftPage.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── index.ts │ │ ├── governance │ │ └── settings │ │ │ ├── SettingsPage.tsx │ │ │ ├── config │ │ │ ├── DaoConfigPage.tsx │ │ │ └── index.ts │ │ │ ├── custom-templates │ │ │ ├── CustomTemplatesPage.tsx │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── policy │ │ │ ├── DaoPolicyPage.tsx │ │ │ └── index.ts │ │ │ └── version │ │ │ ├── DaoVersionUpdatePage.tsx │ │ │ └── index.ts │ │ ├── groups │ │ └── [group] │ │ │ ├── GroupPage.tsx │ │ │ └── index.ts │ │ ├── index.tsx │ │ ├── proposals │ │ ├── ProposalsPage.tsx │ │ ├── [proposal] │ │ │ ├── ProposalPage.tsx │ │ │ └── index.ts │ │ └── index.ts │ │ ├── tasks │ │ ├── bounties │ │ │ ├── [bounty] │ │ │ │ ├── BountyPage.module.scss │ │ │ │ ├── BountyPage.tsx │ │ │ │ └── index.ts │ │ │ ├── feed │ │ │ │ ├── BountiesFeedPage.tsx │ │ │ │ └── index.ts │ │ │ └── list │ │ │ │ ├── BountiesListPage.tsx │ │ │ │ └── index.ts │ │ ├── plugins │ │ │ ├── PluginsPage.tsx │ │ │ ├── index.ts │ │ │ └── plugins.module.scss │ │ └── polls │ │ │ ├── Polls.module.scss │ │ │ ├── PollsPage.tsx │ │ │ └── index.ts │ │ └── treasury │ │ ├── create-governance-token │ │ ├── CreateGovernanceToken.tsx │ │ └── index.ts │ │ ├── governance-token-info │ │ ├── GovernanceTokenInfoPage.module.scss │ │ ├── GovernanceTokenInfoPage.tsx │ │ └── index.ts │ │ ├── nfts │ │ ├── NFTs.tsx │ │ └── index.ts │ │ ├── tokens │ │ ├── TokensPage.tsx │ │ └── index.ts │ │ └── under-construction │ │ ├── UnderConstruction.module.scss │ │ ├── UnderConstruction.tsx │ │ └── index.ts ├── discover │ ├── DiscoverPage.module.scss │ ├── DiscoverPage.tsx │ └── index.ts ├── index.tsx ├── my-account │ ├── MyAccountPage.module.scss │ ├── MyAccountPage.tsx │ └── index.ts ├── my │ ├── daos │ │ ├── MyDaosPage.module.scss │ │ ├── MyDaosPage.tsx │ │ └── index.tsx │ └── feed │ │ ├── MyFeedPage.module.scss │ │ └── index.tsx ├── notifications │ ├── NotificationsPage.module.scss │ ├── NotificationsPage.tsx │ ├── index.ts │ └── settings │ │ ├── NotificationSettings.module.scss │ │ ├── NotificationSettings.tsx │ │ └── index.ts ├── search-results │ ├── SearchResults.tsx │ └── index.ts └── terms-conditions │ ├── TermsAndConditions.module.scss │ ├── TermsAndConditions.tsx │ └── index.ts ├── patches └── svg-sprite-loader+6.0.9.patch ├── plugins ├── css-loader-config.js └── next-svg-sprites.js ├── public ├── assets │ ├── captcha │ │ ├── bg │ │ │ ├── F1.svg │ │ │ ├── F2.svg │ │ │ └── F3.svg │ │ └── slider │ │ │ ├── failure.svg │ │ │ ├── regular.svg │ │ │ └── success.svg │ ├── illustrations │ │ ├── bg-stars.svg │ │ ├── club.svg │ │ ├── cooperative.svg │ │ ├── corporation.svg │ │ ├── dashed-line.svg │ │ ├── foundation.svg │ │ ├── no-results.svg │ │ └── search.svg │ └── img │ │ └── mynearwallet.jpg ├── avatars │ ├── avatar1.png │ ├── avatar10.png │ ├── avatar11.png │ ├── avatar12.png │ ├── avatar13.png │ ├── avatar14.png │ ├── avatar15.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar4.png │ ├── avatar5.png │ ├── avatar6.png │ ├── avatar7.png │ ├── avatar8.png │ ├── avatar9.png │ └── defaultDaoAvatar.png ├── cover.png ├── dummy-card.png ├── dummy-flag.png ├── favicon.ico ├── flag-mask.svg ├── flag.svg ├── flags │ ├── defaultDaoFlag.png │ ├── flag-1.png │ ├── flag-2.png │ ├── flag-3.png │ ├── flag-4.png │ ├── flag-5.png │ └── flag-6.png ├── locales │ └── en │ │ ├── common.json │ │ └── notificationsPage.json └── vercel.svg ├── scripts └── generateAssetsIndex.js ├── services ├── ApiService │ └── hooks │ │ ├── useAccountDaos.ts │ │ ├── useAvailableActions.ts │ │ ├── useBounties.ts │ │ ├── useBounty.ts │ │ ├── useCfcTemplates.ts │ │ ├── useDao.ts │ │ ├── useDaoContext.ts │ │ ├── useDaoNfts.ts │ │ ├── useDaoProposalTemplates.ts │ │ ├── useDaoStats.ts │ │ ├── useDaos.ts │ │ ├── useDraft.ts │ │ ├── useDraftComments.ts │ │ ├── useDraftProposals.ts │ │ ├── useJoiningDaoProposals.ts │ │ ├── useNotifications.ts │ │ ├── useNotificationsStatus.ts │ │ ├── usePolicyAffectsProposals.ts │ │ ├── useProposal.ts │ │ ├── useProposals.ts │ │ ├── useSharedProposalTemplate.ts │ │ ├── useSubscribedDaos.ts │ │ ├── useTokens.ts │ │ ├── useTransactions.ts │ │ ├── useTransctionsDailyBalance.ts │ │ ├── useUnreadDraftProposalsCount.ts │ │ └── useUserContacts.ts ├── AwsUploader │ ├── AwsUploader.ts │ ├── index.ts │ └── tests │ │ ├── AwsUploader.failure.spec.ts │ │ └── AwsUploader.success.spec.ts ├── ConfigService │ ├── ConfigService.ts │ └── index.ts ├── CookieService │ ├── CookieService.tsx │ ├── index.ts │ ├── tests │ │ └── utils.spec.ts │ ├── types.ts │ └── utils.ts ├── DaoStatsService │ ├── DaoStatsService.ts │ ├── constants.ts │ ├── index.ts │ └── types.ts ├── DraftsService │ ├── DraftsService.ts │ ├── index.ts │ ├── mappers.ts │ └── types.ts ├── HttpService │ ├── HttpService.ts │ └── index.ts ├── NotificationsService │ ├── NotificationsService.ts │ ├── index.ts │ ├── mappers │ │ └── notification.ts │ └── types.ts ├── SearchService │ ├── SearchService.ts │ ├── builders │ │ ├── bounties.ts │ │ ├── dao.ts │ │ ├── daoStats.ts │ │ ├── daos.ts │ │ ├── draft.ts │ │ ├── draftProposalComments.ts │ │ ├── draftProposals.ts │ │ ├── nfts.ts │ │ ├── notification.ts │ │ ├── proposal.ts │ │ ├── proposals.ts │ │ └── tokens.ts │ ├── constants.ts │ ├── helpers.ts │ ├── index.ts │ ├── mappers │ │ ├── account.ts │ │ ├── bounty.ts │ │ ├── dao.ts │ │ ├── daoStats.ts │ │ ├── draft.ts │ │ ├── draftComment.ts │ │ ├── helpers.ts │ │ ├── nft.ts │ │ ├── notification.ts │ │ ├── proposalTemplate.ts │ │ ├── search.ts │ │ ├── sharedProposalTemplate.ts │ │ └── tokens.ts │ └── types.ts └── sputnik │ ├── SputnikHttpService │ ├── SputnikHttpService.ts │ └── index.ts │ ├── SputnikNearService │ ├── SputnikNearService.ts │ ├── index.ts │ ├── overrides │ │ ├── SputnikConnectedWalletAccount.ts │ │ ├── SputnikWalletConnection.ts │ │ └── types.ts │ ├── services │ │ ├── BaseService.ts │ │ ├── GovernanceTokenService.ts │ │ ├── NearService.ts │ │ ├── constants.ts │ │ └── utils │ │ │ ├── getPlainFunctionCallTransaction.ts │ │ │ └── getWalletSelectorStorageDepositTransaction.ts │ ├── types.ts │ └── walletServices │ │ ├── RpcService.ts │ │ ├── SenderWalletService.ts │ │ ├── SputnikWalletService.ts │ │ ├── WalletSelectorService.ts │ │ ├── constants.ts │ │ ├── helpers.ts │ │ └── types.ts │ ├── constants.ts │ ├── index.ts │ ├── mappers │ ├── dao.ts │ ├── index.ts │ ├── nfts.ts │ ├── proposal.ts │ ├── search-results.ts │ ├── tests │ │ └── utils │ │ │ └── getAwsImageUrl.spec.ts │ ├── token.ts │ ├── transaction.ts │ └── utils │ │ └── getAwsImageUrl.ts │ └── types │ ├── api.ts │ ├── bounty.ts │ ├── dao.ts │ ├── index.ts │ ├── policy.ts │ ├── proposals.ts │ ├── search.ts │ └── version.ts ├── setupTests.ts ├── stories ├── AreaChart.stories.tsx ├── Badge.stories.tsx ├── Collpapsable.stories.tsx ├── Dropdown.stories.tsx ├── DropdownMultiSelect.stories.tsx ├── Icon.stories.tsx ├── Input.stories.tsx ├── Modal.stories.tsx ├── Pagination.stories.tsx ├── Popup.stories.tsx ├── ScrollList.stories.tsx ├── SearchBar.stories.tsx ├── Select.stories.tsx ├── Tabs.stories.tsx ├── TextArea.stories.tsx ├── Toggle.stories.tsx ├── Typography.stories.tsx ├── app-footer │ └── AppFooter.stories.tsx ├── astro_2.0 │ ├── NotificationCard │ │ └── NotificationCard.stories.tsx │ ├── ProposalCard │ │ └── ProposalCard.stories.tsx │ ├── create-proposal │ │ └── CreateProposal.stories.tsx │ ├── dao-create │ │ ├── DaoLinksForm.stories.tsx │ │ └── DaoNameForm.stories.tsx │ └── dao-details │ │ └── DaoDetailsMinimized.stories.tsx ├── button │ ├── Button.stories.tsx │ ├── IconButton.stories.tsx │ └── VotingButton.stories.tsx ├── cards │ ├── MemberCard.stories.tsx │ ├── MemberCardExpanded.stories.tsx │ └── TransactionCard.stories.tsx ├── nft │ ├── NFTCard.stories.tsx │ └── assets │ │ ├── example-1.png │ │ ├── example-2.png │ │ ├── example-3.png │ │ ├── example-4.png │ │ ├── example-5.png │ │ ├── example-6.png │ │ └── example-7.png └── plugins │ ├── PluginCard.stories.tsx │ └── UsePluginPopup.stories.tsx ├── styles ├── breakpoints.scss ├── daosList.scss ├── globals.scss ├── helpers.scss ├── mixins.scss ├── typography.scss └── variables.scss ├── svg.d.ts ├── tsconfig.json ├── types ├── api.ts ├── auth.ts ├── bounties.ts ├── chart.ts ├── config.ts ├── context.ts ├── dao.ts ├── daoStats.ts ├── draftProposal.ts ├── memberHome.ts ├── notification.ts ├── policy.ts ├── proposal.ts ├── proposalTemplate.ts ├── role.ts ├── search.ts ├── settings.ts ├── stats.ts ├── token.ts └── transaction.ts ├── utils ├── composeProperLinkUrl.ts ├── copyToClipboard.ts ├── dataConverter.ts ├── dispatchCustomEvent.ts ├── format.ts ├── formatCurrency.ts ├── fromBase64ToObj.ts ├── ga.ts ├── getDefaultAppVersion.ts ├── getElementSize.ts ├── getFeatureFlags.ts ├── getImageFromImageFileList.ts ├── getProposalScope.ts ├── getRandomInt.ts ├── getSocialLinkIcon.ts ├── getTranslations.ts ├── handlePressEnterBtn.ts ├── imageValidators.ts ├── isSelectorWalletType.ts ├── jsonToBase64Str.ts ├── keysToCamelCase.ts ├── keysToSnakeCase.ts ├── launchdarkly-server-client.ts ├── logger.ts ├── objects.ts ├── proposalFilters.ts └── tests │ ├── composeProperLinkUrl.spec.ts │ ├── dispatchCustomEvent.spec.ts │ ├── format.spec.ts │ ├── formatCurrency.spec.ts │ ├── getElementSize.spec.ts │ ├── getImageFromImageFileList.spec.ts │ ├── getProposalScope.spec.ts │ ├── getRandomInt.spec.ts │ ├── getSocialLinkIcon.spec.ts │ ├── imageValidators.spec.ts │ ├── jsonToBase64Str.spec.ts │ ├── keysToSnakeCase.spec.ts │ └── proposalFilters.spec.ts └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.czrc: -------------------------------------------------------------------------------- 1 | { 2 | "path": "cz-conventional-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.env.development -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | next.config.js 2 | scripts 3 | plugins 4 | .storybook 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/actions/build/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/actions/build/action.yaml -------------------------------------------------------------------------------- /.github/actions/deploy/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/actions/deploy/action.yaml -------------------------------------------------------------------------------- /.github/actions/tests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/actions/tests/action.yaml -------------------------------------------------------------------------------- /.github/env.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/env.common -------------------------------------------------------------------------------- /.github/env.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/env.develop -------------------------------------------------------------------------------- /.github/env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/env.production -------------------------------------------------------------------------------- /.github/env.qa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/env.qa -------------------------------------------------------------------------------- /.github/env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/env.staging -------------------------------------------------------------------------------- /.github/env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/env.test -------------------------------------------------------------------------------- /.github/workflows/build-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/workflows/build-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/workflows/pull-request.yaml -------------------------------------------------------------------------------- /.github/workflows/rollback-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/workflows/rollback-prod.yaml -------------------------------------------------------------------------------- /.github/workflows/run-autotests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.github/workflows/run-autotests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.huskyrc.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile_pipelines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/Dockerfile_pipelines -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/README.md -------------------------------------------------------------------------------- /assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/flag.png -------------------------------------------------------------------------------- /assets/icons/.gitignore: -------------------------------------------------------------------------------- 1 | index.ts 2 | -------------------------------------------------------------------------------- /assets/icons/aAllDaos.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aAllDaos.colors.svg -------------------------------------------------------------------------------- /assets/icons/aAllDaosHover.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aAllDaosHover.colors.svg -------------------------------------------------------------------------------- /assets/icons/aAstroFeed.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aAstroFeed.colors.svg -------------------------------------------------------------------------------- /assets/icons/aCreateDao.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aCreateDao.colors.svg -------------------------------------------------------------------------------- /assets/icons/aDiscover.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aDiscover.colors.svg -------------------------------------------------------------------------------- /assets/icons/aMyDaos.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aMyDaos.colors.svg -------------------------------------------------------------------------------- /assets/icons/aMyDaosHover.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aMyDaosHover.colors.svg -------------------------------------------------------------------------------- /assets/icons/aMyFeed.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aMyFeed.colors.svg -------------------------------------------------------------------------------- /assets/icons/aMyFeedHover.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aMyFeedHover.colors.svg -------------------------------------------------------------------------------- /assets/icons/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/account.svg -------------------------------------------------------------------------------- /assets/icons/alertTriangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/alertTriangle.svg -------------------------------------------------------------------------------- /assets/icons/allCommunity.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/allCommunity.colors.svg -------------------------------------------------------------------------------- /assets/icons/allcommunities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/allcommunities.svg -------------------------------------------------------------------------------- /assets/icons/app-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/app-logo.svg -------------------------------------------------------------------------------- /assets/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/arrow.svg -------------------------------------------------------------------------------- /assets/icons/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/astro.svg -------------------------------------------------------------------------------- /assets/icons/aurora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/aurora.svg -------------------------------------------------------------------------------- /assets/icons/back-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/back-link.svg -------------------------------------------------------------------------------- /assets/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/bookmark.svg -------------------------------------------------------------------------------- /assets/icons/bountyApprovedClaim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/bountyApprovedClaim.svg -------------------------------------------------------------------------------- /assets/icons/bountyCreateClaim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/bountyCreateClaim.svg -------------------------------------------------------------------------------- /assets/icons/bountyCreated.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/bountyCreated.colors.svg -------------------------------------------------------------------------------- /assets/icons/bountyDeadlineClaim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/bountyDeadlineClaim.svg -------------------------------------------------------------------------------- /assets/icons/briefcase-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/briefcase-filled.svg -------------------------------------------------------------------------------- /assets/icons/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/briefcase.svg -------------------------------------------------------------------------------- /assets/icons/burgerMenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/burgerMenu.svg -------------------------------------------------------------------------------- /assets/icons/button-add-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-add-group.svg -------------------------------------------------------------------------------- /assets/icons/button-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-add.svg -------------------------------------------------------------------------------- /assets/icons/button-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-alert.svg -------------------------------------------------------------------------------- /assets/icons/button-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-arrow-down.svg -------------------------------------------------------------------------------- /assets/icons/button-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-arrow-left.svg -------------------------------------------------------------------------------- /assets/icons/button-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-arrow-right.svg -------------------------------------------------------------------------------- /assets/icons/button-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-arrow-up.svg -------------------------------------------------------------------------------- /assets/icons/button-bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-bookmark.svg -------------------------------------------------------------------------------- /assets/icons/button-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-check.svg -------------------------------------------------------------------------------- /assets/icons/button-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-copy.svg -------------------------------------------------------------------------------- /assets/icons/button-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-delete.svg -------------------------------------------------------------------------------- /assets/icons/button-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-edit.svg -------------------------------------------------------------------------------- /assets/icons/button-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-external.svg -------------------------------------------------------------------------------- /assets/icons/button-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-more.svg -------------------------------------------------------------------------------- /assets/icons/button-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-refresh.svg -------------------------------------------------------------------------------- /assets/icons/button-report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-report.svg -------------------------------------------------------------------------------- /assets/icons/button-reset-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-reset-scroll.svg -------------------------------------------------------------------------------- /assets/icons/button-return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-return.svg -------------------------------------------------------------------------------- /assets/icons/button-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-search.svg -------------------------------------------------------------------------------- /assets/icons/button-share-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-share-pressed.svg -------------------------------------------------------------------------------- /assets/icons/button-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/button-share.svg -------------------------------------------------------------------------------- /assets/icons/buttonAddUser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/buttonAddUser.svg -------------------------------------------------------------------------------- /assets/icons/buttonDeposit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/buttonDeposit.svg -------------------------------------------------------------------------------- /assets/icons/buttonFollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/buttonFollow.svg -------------------------------------------------------------------------------- /assets/icons/buttonLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/buttonLink.svg -------------------------------------------------------------------------------- /assets/icons/buttonWithdraw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/buttonWithdraw.svg -------------------------------------------------------------------------------- /assets/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/camera.svg -------------------------------------------------------------------------------- /assets/icons/captcha-flag.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/captcha-flag.colors.svg -------------------------------------------------------------------------------- /assets/icons/captcha-hole-reg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/captcha-hole-reg.svg -------------------------------------------------------------------------------- /assets/icons/captcha-hole.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/captcha-hole.colors.svg -------------------------------------------------------------------------------- /assets/icons/captcha-reset.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/captcha-reset.colors.svg -------------------------------------------------------------------------------- /assets/icons/carbon-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/carbon-email.svg -------------------------------------------------------------------------------- /assets/icons/carbon-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/carbon-phone.svg -------------------------------------------------------------------------------- /assets/icons/chartTrend.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/chartTrend.colors.svg -------------------------------------------------------------------------------- /assets/icons/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/chat.svg -------------------------------------------------------------------------------- /assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/check.svg -------------------------------------------------------------------------------- /assets/icons/checkList.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/checkList.svg -------------------------------------------------------------------------------- /assets/icons/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/checkbox-checked.svg -------------------------------------------------------------------------------- /assets/icons/checkbox-unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/checkbox-unchecked.svg -------------------------------------------------------------------------------- /assets/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/checkmark.svg -------------------------------------------------------------------------------- /assets/icons/claimsLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/claimsLink.svg -------------------------------------------------------------------------------- /assets/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/clock.svg -------------------------------------------------------------------------------- /assets/icons/close-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/close-circle.svg -------------------------------------------------------------------------------- /assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/close.svg -------------------------------------------------------------------------------- /assets/icons/comment-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/comment-block.svg -------------------------------------------------------------------------------- /assets/icons/connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/connection.svg -------------------------------------------------------------------------------- /assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/copy.svg -------------------------------------------------------------------------------- /assets/icons/createNewDao.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/createNewDao.colors.svg -------------------------------------------------------------------------------- /assets/icons/createToken.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/createToken.colors.svg -------------------------------------------------------------------------------- /assets/icons/defaultAvatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/defaultAvatar.svg -------------------------------------------------------------------------------- /assets/icons/delegate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/delegate.svg -------------------------------------------------------------------------------- /assets/icons/discover.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/discover.colors.svg -------------------------------------------------------------------------------- /assets/icons/draft-bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/draft-bookmark.svg -------------------------------------------------------------------------------- /assets/icons/draft-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/draft-chat.svg -------------------------------------------------------------------------------- /assets/icons/draft-comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/draft-comments.svg -------------------------------------------------------------------------------- /assets/icons/draft-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/draft-eye.svg -------------------------------------------------------------------------------- /assets/icons/eyeClose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/eyeClose.svg -------------------------------------------------------------------------------- /assets/icons/eyeOpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/eyeOpen.svg -------------------------------------------------------------------------------- /assets/icons/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/feed.svg -------------------------------------------------------------------------------- /assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filter.svg -------------------------------------------------------------------------------- /assets/icons/filterBounty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterBounty.svg -------------------------------------------------------------------------------- /assets/icons/filterCheck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterCheck.svg -------------------------------------------------------------------------------- /assets/icons/filterClock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterClock.svg -------------------------------------------------------------------------------- /assets/icons/filterClose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterClose.svg -------------------------------------------------------------------------------- /assets/icons/filterFunction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterFunction.svg -------------------------------------------------------------------------------- /assets/icons/filterGovernance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterGovernance.svg -------------------------------------------------------------------------------- /assets/icons/filterMembers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterMembers.svg -------------------------------------------------------------------------------- /assets/icons/filterTransfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filterTransfer.svg -------------------------------------------------------------------------------- /assets/icons/filtersMenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/filtersMenu.svg -------------------------------------------------------------------------------- /assets/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/flag.svg -------------------------------------------------------------------------------- /assets/icons/funds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/funds.svg -------------------------------------------------------------------------------- /assets/icons/globalFeed.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/globalFeed.colors.svg -------------------------------------------------------------------------------- /assets/icons/goal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/goal.svg -------------------------------------------------------------------------------- /assets/icons/groups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/groups.svg -------------------------------------------------------------------------------- /assets/icons/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/hamburger.svg -------------------------------------------------------------------------------- /assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/heart.svg -------------------------------------------------------------------------------- /assets/icons/heartFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/heartFilled.svg -------------------------------------------------------------------------------- /assets/icons/icon-near.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/icon-near.svg -------------------------------------------------------------------------------- /assets/icons/image-not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/image-not-found.svg -------------------------------------------------------------------------------- /assets/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/info.svg -------------------------------------------------------------------------------- /assets/icons/kebab-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/kebab-vertical.svg -------------------------------------------------------------------------------- /assets/icons/like-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/like-filled.svg -------------------------------------------------------------------------------- /assets/icons/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/like.svg -------------------------------------------------------------------------------- /assets/icons/list-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/list-filter.svg -------------------------------------------------------------------------------- /assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/list.svg -------------------------------------------------------------------------------- /assets/icons/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/loading.svg -------------------------------------------------------------------------------- /assets/icons/logo-near-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/logo-near-full.svg -------------------------------------------------------------------------------- /assets/icons/logo-near.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/logo-near.svg -------------------------------------------------------------------------------- /assets/icons/logoUsn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/logoUsn.svg -------------------------------------------------------------------------------- /assets/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/logout.svg -------------------------------------------------------------------------------- /assets/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/minus.svg -------------------------------------------------------------------------------- /assets/icons/multiselect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/multiselect.svg -------------------------------------------------------------------------------- /assets/icons/myDaos.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/myDaos.colors.svg -------------------------------------------------------------------------------- /assets/icons/myFeed.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/myFeed.colors.svg -------------------------------------------------------------------------------- /assets/icons/nav-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/nav-back.svg -------------------------------------------------------------------------------- /assets/icons/nav-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/nav-forward.svg -------------------------------------------------------------------------------- /assets/icons/nav-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/nav-refresh.svg -------------------------------------------------------------------------------- /assets/icons/nfts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/nfts.svg -------------------------------------------------------------------------------- /assets/icons/notVoted.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/notVoted.colors.svg -------------------------------------------------------------------------------- /assets/icons/note-archive.color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-archive.color.svg -------------------------------------------------------------------------------- /assets/icons/note-bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-bell.svg -------------------------------------------------------------------------------- /assets/icons/note-check-double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-check-double.svg -------------------------------------------------------------------------------- /assets/icons/note-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-check.svg -------------------------------------------------------------------------------- /assets/icons/note-message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-message.svg -------------------------------------------------------------------------------- /assets/icons/note-restore.color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-restore.color.svg -------------------------------------------------------------------------------- /assets/icons/note-sound-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-sound-disabled.svg -------------------------------------------------------------------------------- /assets/icons/note-sound-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-sound-mute.svg -------------------------------------------------------------------------------- /assets/icons/note-sound-unmute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-sound-unmute.svg -------------------------------------------------------------------------------- /assets/icons/note-type-add-member.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-type-add-member.svg -------------------------------------------------------------------------------- /assets/icons/note-type-bounty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-type-bounty.svg -------------------------------------------------------------------------------- /assets/icons/note-type-dao-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-type-dao-config.svg -------------------------------------------------------------------------------- /assets/icons/note-type-governance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-type-governance.svg -------------------------------------------------------------------------------- /assets/icons/note-type-polls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-type-polls.svg -------------------------------------------------------------------------------- /assets/icons/note-type-transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/note-type-transfer.svg -------------------------------------------------------------------------------- /assets/icons/paperAirplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/paperAirplane.svg -------------------------------------------------------------------------------- /assets/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/pencil.svg -------------------------------------------------------------------------------- /assets/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/plus.svg -------------------------------------------------------------------------------- /assets/icons/proposal-add-member.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/proposal-add-member.svg -------------------------------------------------------------------------------- /assets/icons/proposal-bounty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/proposal-bounty.svg -------------------------------------------------------------------------------- /assets/icons/proposal-governance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/proposal-governance.svg -------------------------------------------------------------------------------- /assets/icons/proposal-poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/proposal-poll.svg -------------------------------------------------------------------------------- /assets/icons/proposal-send-funds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/proposal-send-funds.svg -------------------------------------------------------------------------------- /assets/icons/refresh.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/refresh.colors.svg -------------------------------------------------------------------------------- /assets/icons/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/reply.svg -------------------------------------------------------------------------------- /assets/icons/seal-approved.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/seal-approved.colors.svg -------------------------------------------------------------------------------- /assets/icons/selectorEnabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/selectorEnabled.svg -------------------------------------------------------------------------------- /assets/icons/senderWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/senderWallet.svg -------------------------------------------------------------------------------- /assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/settings.svg -------------------------------------------------------------------------------- /assets/icons/sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/sheet.svg -------------------------------------------------------------------------------- /assets/icons/sidebarBounties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/sidebarBounties.svg -------------------------------------------------------------------------------- /assets/icons/sidebarDaosStats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/sidebarDaosStats.svg -------------------------------------------------------------------------------- /assets/icons/sidebarFeedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/sidebarFeedback.svg -------------------------------------------------------------------------------- /assets/icons/sidebarHome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/sidebarHome.svg -------------------------------------------------------------------------------- /assets/icons/sidebarHomeFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/sidebarHomeFilled.svg -------------------------------------------------------------------------------- /assets/icons/social-any-url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-any-url.svg -------------------------------------------------------------------------------- /assets/icons/social-discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-discord.svg -------------------------------------------------------------------------------- /assets/icons/social-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-facebook.svg -------------------------------------------------------------------------------- /assets/icons/social-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-github.svg -------------------------------------------------------------------------------- /assets/icons/social-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-instagram.svg -------------------------------------------------------------------------------- /assets/icons/social-slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-slack.svg -------------------------------------------------------------------------------- /assets/icons/social-telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-telegram.svg -------------------------------------------------------------------------------- /assets/icons/social-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/social-twitter.svg -------------------------------------------------------------------------------- /assets/icons/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/sort.svg -------------------------------------------------------------------------------- /assets/icons/state-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-add.svg -------------------------------------------------------------------------------- /assets/icons/state-communities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-communities.svg -------------------------------------------------------------------------------- /assets/icons/state-create-dao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-create-dao.svg -------------------------------------------------------------------------------- /assets/icons/state-gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-gear.svg -------------------------------------------------------------------------------- /assets/icons/state-governance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-governance.svg -------------------------------------------------------------------------------- /assets/icons/state-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-home.svg -------------------------------------------------------------------------------- /assets/icons/state-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-overview.svg -------------------------------------------------------------------------------- /assets/icons/state-sign-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-sign-out.svg -------------------------------------------------------------------------------- /assets/icons/state-tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-tasks.svg -------------------------------------------------------------------------------- /assets/icons/state-treasury.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/state-treasury.svg -------------------------------------------------------------------------------- /assets/icons/stateAlert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/stateAlert.svg -------------------------------------------------------------------------------- /assets/icons/statusSuccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/statusSuccess.svg -------------------------------------------------------------------------------- /assets/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/telegram.svg -------------------------------------------------------------------------------- /assets/icons/timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/timeline.svg -------------------------------------------------------------------------------- /assets/icons/token-near-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/token-near-big.svg -------------------------------------------------------------------------------- /assets/icons/token-near.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/token-near.svg -------------------------------------------------------------------------------- /assets/icons/token-wizard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/token-wizard.svg -------------------------------------------------------------------------------- /assets/icons/tokenDefaultIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/tokenDefaultIcon.svg -------------------------------------------------------------------------------- /assets/icons/transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/transfer.svg -------------------------------------------------------------------------------- /assets/icons/tweet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/tweet.svg -------------------------------------------------------------------------------- /assets/icons/upgrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/upgrade.svg -------------------------------------------------------------------------------- /assets/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/upload.svg -------------------------------------------------------------------------------- /assets/icons/uploadFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/uploadFile.svg -------------------------------------------------------------------------------- /assets/icons/userAccount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/userAccount.svg -------------------------------------------------------------------------------- /assets/icons/voting-no.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/voting-no.colors.svg -------------------------------------------------------------------------------- /assets/icons/voting-yes.colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/voting-yes.colors.svg -------------------------------------------------------------------------------- /assets/icons/votingPolicy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/votingPolicy.svg -------------------------------------------------------------------------------- /assets/icons/white-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/icons/white-logo.svg -------------------------------------------------------------------------------- /assets/index.ts: -------------------------------------------------------------------------------- 1 | export * from './icons'; 2 | -------------------------------------------------------------------------------- /assets/sidebarMarker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/assets/sidebarMarker.svg -------------------------------------------------------------------------------- /astro_2.0/components/Accordion/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Accordion'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ActionButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ActionButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/AppFooter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppFooter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/AppHeader/components/AccountDropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AccountDropdown'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/AppHeader/components/NotificationsBell/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationsBell'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/AppHeader/components/SearchBar/components/SearchHints/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SearchHints'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/AppHeader/components/SearchBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SearchBar'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/AppHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppHeader'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/BreadCrumbs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BreadCrumbs'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/Chip/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/astro_2.0/components/Chip/Chip.tsx -------------------------------------------------------------------------------- /astro_2.0/components/Chip/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Chip'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ConfirmActionModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConfirmActionModal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/CopyButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CopyButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/CreationProgress/components/CreationProgressStep/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './CreationProgressStep'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/CreationProgress/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreationProgress'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DaoDetails/DaoDetailsGrid/components/DaoInfoCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoInfoCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DaoDetails/DaoDetailsGrid/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoDetailsGrid'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DaoDetails/DaoDetailsMinimized/components/DaoAction/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoAction'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DaoDetails/DaoDetailsMinimized/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoDetailsMinimized'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DaoWarning/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoWarning'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DaosList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaosList'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DefaultVotingPolicy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DefaultVotingPolicy'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/DotsLoader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DotsLoader'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/EditableContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EditableContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ExpandableDetails/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ExpandableDetails'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/Feed/Feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/astro_2.0/components/Feed/Feed.tsx -------------------------------------------------------------------------------- /astro_2.0/components/Feed/components/FeedFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeedFilter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/Feed/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/astro_2.0/components/Feed/hooks.ts -------------------------------------------------------------------------------- /astro_2.0/components/Feed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/astro_2.0/components/Feed/index.ts -------------------------------------------------------------------------------- /astro_2.0/components/FiltersPanel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FiltersPanel'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/Flag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/astro_2.0/components/Flag/index.ts -------------------------------------------------------------------------------- /astro_2.0/components/InfoBlockWidget/components/InfoValue/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InfoValue'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/LinkToTop/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LinkToTop'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/LoadingIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LoadingIndicator'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/LocaleSelector/components/Locales/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Locales'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/LocaleSelector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LocaleSelector'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/MaintenanceWarning/components/Persona/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Persona'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/MaintenanceWarning/components/Star/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Star'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/MaintenanceWarning/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MaintenanceWarning'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/NavLink/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavLink'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/NearIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NearIcon'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/NoResultsView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NoResultsView'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/NotificationCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/NotificationsDisableModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationsDisableModal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/PageLayout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PageLayout'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/PolicyAffectedWarning/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PolicyAffectedWarning'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ProposalCardRenderer/components/DraftDescription/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftDescription'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ProposalCardRenderer/components/DraftInfo/DraftInfoItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftInfoItem'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ProposalCardRenderer/components/DraftInfo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftInfo'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ProposalCardRenderer/components/DraftManagement/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftManagement'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ProposalCardRenderer/components/InfoPanel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InfoPanel'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ProposalCardRenderer/components/LetterHeadWidget/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LetterHeadWidget'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ProposalCardRenderer/components/ProposalCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/PuzzleCaptcha/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PuzzleCaptcha'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ReplyButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ReplyButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/ScrollList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScrollList'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/SearchInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SearchInput'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/SelectorIcons/SelectorNearIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SelectorNearIcon'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/SelectorIcons/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SelectorNearIcon'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/SenderIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SenderIcon'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/SideFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SideFilter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/TgasInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TgasInput'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/TokenIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TokenIcon'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/TokenWidget/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TokenWidget'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/Tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tooltip'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/WarningMessage/index.ts: -------------------------------------------------------------------------------- 1 | export * from './WarningMessage'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/inputs/radio/Radio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Radio'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/inputs/radio/RadioGroup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RadioGroup'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/navigation/MobileNav/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MobileNav'; 2 | -------------------------------------------------------------------------------- /astro_2.0/components/navigation/NavButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/App404/index.ts: -------------------------------------------------------------------------------- 1 | export * from './App404'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/AppHealth/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppHealth'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/AppMonitoring/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppMonitoring'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Auth/components/ConnectingWalletModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConnectingWalletModal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Auth/index.ts: -------------------------------------------------------------------------------- 1 | export * from './hooks/useAuthCheck'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesFeed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesFeed'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesListView/components/ClaimRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClaimRow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesListView/components/SectionRow/SectionRow.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesListView/components/SectionRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SectionRow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesListView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesListView'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesTimeline/components/DataRow/DataRow.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesTimeline/components/DataRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DataRow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesTimeline/components/Milestone/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Milestone'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/BountiesTimeline/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesTimeline'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/HideBountyContext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HideBountyContext'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Bounties/components/ViewToggle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ViewToggle'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CfcLibraryLegacy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CfcLibraryLegacy'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Comments/components/Comment/LikeButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LikeButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Comments/components/Comment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Comment'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Comments/components/CommentActions/CommentAction/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CommentAction'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Comments/components/CommentActions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CommentActions'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Comments/components/CommentContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CommentContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Comments/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Comments'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoAssetsForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoAssetsForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoFlagForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoFlagForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoGroupsForm/components/DaoGroupLine/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoGroupLine'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoGroupsForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoGroupsForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoLegalStatus/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoLegalStatus'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoLinksForm/components/DaoLinkLine/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoLinkLine'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoLinksForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoLinksForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoMembersForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoMembersForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoNameForm/components/DaoAddress/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoAddress'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoNameForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoNameForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoProposalCreationForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoProposalCreationForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoRulesForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoRulesForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoSubmitForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoSubmitForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/DaoVotingPermissionsForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoVotingPermissionsForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/ImageUpload/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ImageUpload'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/PreviewModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PreviewModal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/StepCounter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StepCounter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/StepWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StepWrapper'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/SubjectRule/components/DaoOptionCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoOptionCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/SubjectRule/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SubjectRule'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/SubmitButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SubmitButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/TemplateRules/components/TemplateLink/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TemplateLink'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/TemplateRules/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TemplateRules'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/components/UnitSeparator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UnitSeparator'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateDao/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './CreateDao'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateExternalProposal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateExternalProposal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/AddBountyContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AddBountyContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/CaptchaModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CaptchaModal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/ChangeBondsContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeBondsContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/ChangeDaoFlagContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeDaoFlagContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/ChangeDaoNameContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeDaoNameContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/ChangeLinksContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeLinksContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/ChangePolicyContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangePolicyContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/CreateDaoContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateDaoContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/CreateGroupContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateGroupContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/CreateProposalCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateProposalCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/CreateTokenContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateTokenContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/DoneBountyContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountyDoneContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/ErrorIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ErrorIndicator'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/GroupedSelect/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GroupedSelect'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/InputWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InputWrapper'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/TokenDistributionContent/GroupRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GroupRow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/TokenDistributionContent/MemberRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MemberRow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/TransferContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TransferContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/TransferFundsContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TransferFundsContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/components/UpdateGroupContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UpdateGroupContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './rootHelper'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useCreateProposal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/CreateProposal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateProposal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboard/DaoPurpose/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoPurpose'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboard/components/DashboardChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DashboardChart'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboard/components/StatCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StatCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboard/components/StatChart/StatChart.module.scss: -------------------------------------------------------------------------------- 1 | .root { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboard/components/StatChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StatChart'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboard/components/StatPanel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StatPanel'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoDashboard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/CloneDaoWarning/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CloneDaoWarning'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/DaoHeaderContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoHeaderContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/DaoLetterHeadSection/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoLetterHeadSection'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/DaoLinks/components/DaoLink/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoLink'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/DaoLinks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoLinks'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/DaoLogo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoLogo'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/DaoSocialLinks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoSocialLinks'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/DepositToDaoForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DepositToDaoForm'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/FollowButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FollowButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/components/JoinDaoButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './JoinDaoButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoDashboardHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoDashboardHeader'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoFeatureInfo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoFeatureInfo'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoGovernance/components/DaoSetting/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoSetting'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoGovernance/components/DaoSettingFlowButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoSettingFlowButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoGovernance/components/SettingsCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SettingsCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DaoGovernance/components/SettingsFilterToggle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SettingsFilterToggle'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Daos/Daos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/astro_2.0/features/Daos/Daos.tsx -------------------------------------------------------------------------------- /astro_2.0/features/Daos/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Daos'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/ChartInterval/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChartInterval'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/ChartRenderer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChartRenderer'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/ContentPanel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContentPanel'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/ControlTabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ControlTabs'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/DaosTopList/components/TopListItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TopListItem'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/DaosTopList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaosTopList'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/Flow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Flow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/GeneralInfo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GeneralInfo'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/Governance/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Governance'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/SelectedDaoDetails/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SelectedDaoDetails'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/Tokens/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tokens'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/TopicsFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TopicsFilter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/Tvl/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tvl'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Discover/components/UsersAndActivity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UsersAndActivity'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DraftComments/components/NewComment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NewComment'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/DraftComments/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftComments'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Drafts/components/DraftWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftWrapper'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Drafts/components/DraftsProvider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftsProvider'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/FeatureFlagsProvider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeatureFlagsProvider'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Feed/Feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/astro_2.0/features/Feed/Feed.tsx -------------------------------------------------------------------------------- /astro_2.0/features/Feed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Feed'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/FeedProposals/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeedProposals'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Groups/components/GroupsList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GroupsList'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Groups/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GroupsList'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Notifications/components/NotificationText/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationText'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Notifications/components/Notifications/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Notifications'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Notifications/components/NotificationsPageView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationsPageView'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Proposals/components/ProposalFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalFilter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/Proposals/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalFilter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/BountyActions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountyActions'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/BountyCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountyCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/BountyProgress/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountyProgress'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/CardContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CardContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/ClaimCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClaimCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/ClaimsDonutChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClaimsDonutChart'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/ClaimsInfo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClaimsInfo'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/ClaimsStatistic/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClaimsStatistic'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/CompleteProposalCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CompleteProposalCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/components/InfoPanel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InfoPanel'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewBounty/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ViewBounty'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/AddBountyContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AddBountyContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/AddMemberToGroupContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AddMemberToGroupContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/BackButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BackButton'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ChangeBondsContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeBondsContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ChangeDaoFlagContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeDaoFlagContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ChangeDaoNameContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeDaoNameContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ChangeDaoPurposeContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeDaoPurposeContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ChangeLinksContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangeLinksContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ChangePolicyContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChangePolicyContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/CreateDaoContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateDaoContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/CreateGroupContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateGroupContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/FieldWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FieldWrapper'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/HistorySelector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HistorySelector'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ProposalComments/components/Comment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Comment'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/ProposalComments/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalComments'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/SaveFcTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SaveFcTemplate'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/TokenDistributionContent/GroupRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GroupRow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/TokenDistributionContent/MemberRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MemberRow'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/components/TransferContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TransferContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/ViewProposal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ViewProposal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/dao/HeaderWithFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HeaderWithFilter'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/cfcLibrary/components/ListModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ListModal'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/cfcLibrary/components/OptionsList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './OptionsList'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/cfcLibrary/components/TemplatesList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TemplatesList'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/AccountBadge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AccountBadge'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/CardLine/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CardLine'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/CardTitle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CardTitle'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/ConfigCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConfigCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/ContactInfo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContactInfo'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/NotificationCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/WalletIdCard/components/ContactLine/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContactLine'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/WalletIdCard/components/UsaOnly/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UsaOnly'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/myAccount/cards/WalletIdCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './WalletIdCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/BountiesPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/DaoConfigPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoConfigPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/DaoPolicyPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoPolicyPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/DaoVersionPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoVersionPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/DelegatePageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DelegatePageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/DraftsPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftsPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/EditDraftPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EditDraftPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/GroupsPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GroupsPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/NFTsPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NFTsPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/NestedDaoPageWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NestedDaoPageWrapper'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/ProposalPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/SettingsPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SettingsPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nestedDaoPagesContent/TokensPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TokensPageContent'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/nft/NtfCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NFTCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/plugins/PluginCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PluginCard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/plugins/UsePluginPopup/components/UsePluginWizard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UsePluginWizard'; 2 | -------------------------------------------------------------------------------- /astro_2.0/features/pages/plugins/UsePluginPopup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UsePluginPopup'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/AnimatedLayout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AnimatedLayout'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/AppAnnouncerModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppAnnouncerModal'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/AppLogoSelector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppLogoSelector'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/ContextPopup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContextPopup'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/CookiePolicyDisclaimer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CookiePolicyDisclaimer'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/CreateProposalSelector/components/DummyProposalCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DummyProposalCard'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/CreateProposalSelector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CreateProposalSelector'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/DaoAssetsSelect/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoAssetsSelect'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/DaoDashboardLogo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoDashboardLogo'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/FeedSort/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeedSort'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/MobileFullscreenPopup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MobileFullscreenPopup'; 2 | -------------------------------------------------------------------------------- /astro_3.0/components/SortMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SortMenu'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/AppHeader/components/AppLogo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppLogo'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/AppHeader/components/MobileDaosMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MobileDaosMenu'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/AppHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppHeader'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/AppVersion/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AppVersion'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Bounties/components/BountiesFeed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesFeed'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Bounties/components/BountiesFeedFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesFeedFilters'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Bounties/components/BountiesFeedNext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesFeedNext'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Bounties/components/BountiesFeedSort/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesFeedSort'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Bounties/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Bounties'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/BountiesV2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BountiesV2'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/CfcLibraryNext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CfcLibraryNext'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/DaoProposalsFeed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoProposalsFeed'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/DaosNext/components/AdditionalDaosFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AdditionalDaosFilters'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/DaosNext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaosNext'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/DraftProposalView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftProposalView'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/DraftsFeedNext/components/DraftsFeedFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftsFeedFilters'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/FeedLayout/components/FeedControlsLayout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeedControlsLayout'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/FeedLayout/components/FeedTabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FeedTabs'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/MainLayout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MainLayout'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/MobileAppNavigation/components/MobileNavItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MobileNavItem'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/MobileAppNavigation/components/MoreInfo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MoreInfo'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/MobileAppNavigation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MobileAppNavigation'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/NotificationsPageContent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationsPageContent'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/PollsProposalsFeed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PollsProposalsFeed'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeed/components/CategoriesFeedFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CategoriesFeedFilter'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeed/components/MobileFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MobileFilters'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeed/components/ProposalsFeedFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalsFeedFilters'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeed/components/RadioListFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RadioListFilter'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeed/components/StatusFeedFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './StatusFeedFilter'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalsFeed'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeedNext/components/AdditionalFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AdditionalFilters'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeedNext/components/CategoriesFeedFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CategoriesFeedFilter'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeedNext/components/ProposalsFeedFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalsFeedFilters'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/ProposalsFeedNext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalsFeedNext'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/SearchBar/components/DropdownResults/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DropdownResults'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/SearchBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SearchBar'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Sidebar/components/SidebarActionItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SidebarActionItem'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Sidebar/components/SidebarDaos/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SidebarDaos'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Sidebar/components/SidebarMarker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SidebarMarker'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Sidebar/components/SidebarMore/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SidebarMore'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Sidebar/components/SidebarNavItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SidebarNavItem'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/Sidebar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Sidebar'; 2 | -------------------------------------------------------------------------------- /astro_3.0/features/TokensPageContentV2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TokensPageContentV2'; 2 | -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /components/AreaChartRenderer/components/Chart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Chart'; 2 | -------------------------------------------------------------------------------- /components/AreaChartRenderer/components/ChartTooltip/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChartTooltip'; 2 | -------------------------------------------------------------------------------- /components/AreaChartRenderer/components/chart-caption/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ChartCaption'; 2 | -------------------------------------------------------------------------------- /components/Badge/Badge.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Badge/Badge.module.scss -------------------------------------------------------------------------------- /components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Badge/Badge.tsx -------------------------------------------------------------------------------- /components/Badge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Badge'; 2 | -------------------------------------------------------------------------------- /components/BadgeList/BadgeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/BadgeList/BadgeList.tsx -------------------------------------------------------------------------------- /components/BadgeList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BadgeList'; 2 | -------------------------------------------------------------------------------- /components/DaoAddressLink/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoAddressLink'; 2 | -------------------------------------------------------------------------------- /components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /components/Dropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Dropdown'; 2 | -------------------------------------------------------------------------------- /components/ExplorerLink/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ExplorerLink'; 2 | -------------------------------------------------------------------------------- /components/ExplorerLink/types.ts: -------------------------------------------------------------------------------- 1 | export type ExplorerLinkType = 'transaction' | 'member'; 2 | -------------------------------------------------------------------------------- /components/ExternalLink/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ExternalLink'; 2 | -------------------------------------------------------------------------------- /components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Icon.tsx -------------------------------------------------------------------------------- /components/Logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Logo/Logo.tsx -------------------------------------------------------------------------------- /components/Logo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Logo'; 2 | -------------------------------------------------------------------------------- /components/Logo/logo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Logo/logo.module.scss -------------------------------------------------------------------------------- /components/Pagination/components/NavLabel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavLabel'; 2 | -------------------------------------------------------------------------------- /components/Pagination/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Pagination'; 2 | -------------------------------------------------------------------------------- /components/Popup/Popup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Popup/Popup.module.scss -------------------------------------------------------------------------------- /components/Popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Popup/Popup.tsx -------------------------------------------------------------------------------- /components/Popup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Popup'; 2 | -------------------------------------------------------------------------------- /components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /components/Sidebar/components/NavItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NavItem'; 2 | -------------------------------------------------------------------------------- /components/Sidebar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Sidebar'; 2 | -------------------------------------------------------------------------------- /components/Tabs/Tabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Tabs/Tabs.module.scss -------------------------------------------------------------------------------- /components/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /components/Tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tabs'; 2 | -------------------------------------------------------------------------------- /components/Tabs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Tabs/types.ts -------------------------------------------------------------------------------- /components/Typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/Typography.tsx -------------------------------------------------------------------------------- /components/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/button/Button.tsx -------------------------------------------------------------------------------- /components/button/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/button/IconButton.tsx -------------------------------------------------------------------------------- /components/button/VotingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/button/VotingButton.tsx -------------------------------------------------------------------------------- /components/cards/TokenCard/components/FormattedNumericValue/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FormattedNumericValue'; 2 | -------------------------------------------------------------------------------- /components/cards/TokenCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TokenCard'; 2 | -------------------------------------------------------------------------------- /components/cards/TransactionCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TransactionCard'; 2 | -------------------------------------------------------------------------------- /components/cards/member-card/MemberCard/components/SmileSvg/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SmileSvg'; 2 | -------------------------------------------------------------------------------- /components/cards/member-card/MemberCard/components/Tokens/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tokens'; 2 | -------------------------------------------------------------------------------- /components/cards/member-card/MemberCardPopup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MemberCardPopup'; 2 | -------------------------------------------------------------------------------- /components/cards/member-card/types.ts: -------------------------------------------------------------------------------- 1 | export type Token = { 2 | value: number; 3 | symbol: string; 4 | }; 5 | -------------------------------------------------------------------------------- /components/inputs/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Checkbox'; 2 | -------------------------------------------------------------------------------- /components/inputs/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/inputs/Input/Input.tsx -------------------------------------------------------------------------------- /components/inputs/Input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/inputs/Input/index.ts -------------------------------------------------------------------------------- /components/inputs/Input/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/inputs/Input/types.ts -------------------------------------------------------------------------------- /components/inputs/InputFormWrapper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InputFormWrapper'; 2 | -------------------------------------------------------------------------------- /components/inputs/TextArea/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TextArea'; 2 | -------------------------------------------------------------------------------- /components/inputs/Toggle/components/ToggleDisplay/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ToggleDisplay'; 2 | -------------------------------------------------------------------------------- /components/inputs/Toggle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Toggle'; 2 | -------------------------------------------------------------------------------- /components/inputs/selects/Select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Select'; 2 | -------------------------------------------------------------------------------- /components/loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/loader/Loader.tsx -------------------------------------------------------------------------------- /components/loader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Loader'; 2 | -------------------------------------------------------------------------------- /components/modal/Modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/modal/Modal.module.scss -------------------------------------------------------------------------------- /components/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/modal/Modal.tsx -------------------------------------------------------------------------------- /components/modal/ModalContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/modal/ModalContext.ts -------------------------------------------------------------------------------- /components/modal/ModalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/modal/ModalProvider.tsx -------------------------------------------------------------------------------- /components/modal/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/modal/hooks.tsx -------------------------------------------------------------------------------- /components/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/components/modal/index.ts -------------------------------------------------------------------------------- /config/aws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/config/aws.ts -------------------------------------------------------------------------------- /config/fetchConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/config/fetchConfig.ts -------------------------------------------------------------------------------- /config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/config/index.ts -------------------------------------------------------------------------------- /config/near.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/config/near.ts -------------------------------------------------------------------------------- /constants/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/common.ts -------------------------------------------------------------------------------- /constants/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/cookies.ts -------------------------------------------------------------------------------- /constants/countryPhoneCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/countryPhoneCodes.ts -------------------------------------------------------------------------------- /constants/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/featureFlags.ts -------------------------------------------------------------------------------- /constants/googleTagManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/googleTagManager.ts -------------------------------------------------------------------------------- /constants/integrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/integrations.ts -------------------------------------------------------------------------------- /constants/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/localStorage.ts -------------------------------------------------------------------------------- /constants/proposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/proposals.ts -------------------------------------------------------------------------------- /constants/regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/regexp.ts -------------------------------------------------------------------------------- /constants/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/routing.ts -------------------------------------------------------------------------------- /constants/timeConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/timeConstants.ts -------------------------------------------------------------------------------- /constants/votingConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/constants/votingConstants.ts -------------------------------------------------------------------------------- /context/AllTokensContext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AllTokensContext'; 2 | -------------------------------------------------------------------------------- /context/DaoTokensContext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaoTokensContext'; 2 | -------------------------------------------------------------------------------- /context/SocketContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/context/SocketContext.tsx -------------------------------------------------------------------------------- /context/WalletContext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './WalletContext'; 2 | -------------------------------------------------------------------------------- /context/WalletContext/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/context/WalletContext/types.ts -------------------------------------------------------------------------------- /context/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/context/types.ts -------------------------------------------------------------------------------- /deployment/app-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/deployment/app-chart/.helmignore -------------------------------------------------------------------------------- /deployment/app-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/deployment/app-chart/Chart.yaml -------------------------------------------------------------------------------- /deployment/app-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Astro UI -------------------------------------------------------------------------------- /deployment/app-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/deployment/app-chart/values.yaml -------------------------------------------------------------------------------- /diff.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'htmldiff-js'; 2 | -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/env.d.ts -------------------------------------------------------------------------------- /errors/SputnikWalletError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/errors/SputnikWalletError.ts -------------------------------------------------------------------------------- /features/daos/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/daos/helpers.ts -------------------------------------------------------------------------------- /features/groups/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/groups/helpers.ts -------------------------------------------------------------------------------- /features/groups/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/groups/types.ts -------------------------------------------------------------------------------- /features/notifications/Notification/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Notification'; 2 | -------------------------------------------------------------------------------- /features/notifications/NotificationContainer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationContainer'; 2 | -------------------------------------------------------------------------------- /features/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/notifications/index.ts -------------------------------------------------------------------------------- /features/notifications/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/notifications/mock.ts -------------------------------------------------------------------------------- /features/notifications/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/notifications/types.ts -------------------------------------------------------------------------------- /features/proposal/components/ProposalActions/components/BehaviorActions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BehaviorActions'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/ProposalActions/components/NFTActions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NFTActions'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/ProposalActions/components/SocialActions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SocialActions'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/ProposalActions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalActions'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoicesProgressBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VotesProgressBar'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoteCollapsableHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VoteCollapsableHeader'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoteCollapsableList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VoteCollapsableList'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoteTimeline/ExtraActions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ExtraActions'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoteTimeline/FinishProposal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FinishProposal'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoteTimeline/VoteAction/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VoteAction'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoteTimeline/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VoteTimeline'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VoterDetailsCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VoterDetailsCard'; 2 | -------------------------------------------------------------------------------- /features/proposal/components/VotersList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VotersList'; 2 | -------------------------------------------------------------------------------- /features/proposal/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/proposal/helpers.ts -------------------------------------------------------------------------------- /features/proposal/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/proposal/hooks.ts -------------------------------------------------------------------------------- /features/search/search-results/components/CommentsTabView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CommentsTabView'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/DraftsTabView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftsTabView'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/MembersTabView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MembersTabView'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/NoSearchResultsView/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NoSearchResultsView'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/daos-tab-view/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DaosTabView'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/highlighter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Highlighter'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/proposals-tab-view/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ProposalsTabView'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/search-results-renderer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SearchResultsRenderer'; 2 | -------------------------------------------------------------------------------- /features/search/search-results/components/search-results-renderer/tests/mock.ts: -------------------------------------------------------------------------------- 1 | export const SEARCH_RESULTS_MOCK = ''; 2 | -------------------------------------------------------------------------------- /features/treasury/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/treasury/helpers.ts -------------------------------------------------------------------------------- /features/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/types.ts -------------------------------------------------------------------------------- /features/vote-policy/components/Group/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Group'; 2 | -------------------------------------------------------------------------------- /features/vote-policy/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/features/vote-policy/helpers.ts -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/global.d.ts -------------------------------------------------------------------------------- /hooks/useAppInitialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useAppInitialize.ts -------------------------------------------------------------------------------- /hooks/useAppVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useAppVersion.ts -------------------------------------------------------------------------------- /hooks/useBlockchainWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useBlockchainWarning.ts -------------------------------------------------------------------------------- /hooks/useCountdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useCountdown.ts -------------------------------------------------------------------------------- /hooks/useCreateDraftPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useCreateDraftPermissions.ts -------------------------------------------------------------------------------- /hooks/useCustomTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useCustomTokens.ts -------------------------------------------------------------------------------- /hooks/useDaoContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useDaoContext.ts -------------------------------------------------------------------------------- /hooks/useDaoIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useDaoIds.ts -------------------------------------------------------------------------------- /hooks/useDaoSubscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useDaoSubscriptions.ts -------------------------------------------------------------------------------- /hooks/useDebounceUpdateEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useDebounceUpdateEffect.ts -------------------------------------------------------------------------------- /hooks/useDeviceType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useDeviceType.ts -------------------------------------------------------------------------------- /hooks/useDraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useDraft.ts -------------------------------------------------------------------------------- /hooks/useDraftService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useDraftService.ts -------------------------------------------------------------------------------- /hooks/useGetBreadcrumbsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useGetBreadcrumbsConfig.ts -------------------------------------------------------------------------------- /hooks/useIntercomAdjust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useIntercomAdjust.ts -------------------------------------------------------------------------------- /hooks/useIsHrefActive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useIsHrefActive.ts -------------------------------------------------------------------------------- /hooks/useIsValidImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useIsValidImage.ts -------------------------------------------------------------------------------- /hooks/useLoadDateLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useLoadDateLocale.ts -------------------------------------------------------------------------------- /hooks/useNearPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useNearPrice.ts -------------------------------------------------------------------------------- /hooks/useOnClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useOnClickOutside.ts -------------------------------------------------------------------------------- /hooks/useOnRouterChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useOnRouterChange.ts -------------------------------------------------------------------------------- /hooks/useProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useProposal.ts -------------------------------------------------------------------------------- /hooks/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useQuery.ts -------------------------------------------------------------------------------- /hooks/useRouterLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useRouterLoading.ts -------------------------------------------------------------------------------- /hooks/useSyncRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useSyncRefs.ts -------------------------------------------------------------------------------- /hooks/useToggleable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useToggleable.tsx -------------------------------------------------------------------------------- /hooks/useWindowResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/hooks/useWindowResize.ts -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/img.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /jest/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /jest/testUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/jest/testUtils.tsx -------------------------------------------------------------------------------- /mocks/bountyContextData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/mocks/bountyContextData.ts -------------------------------------------------------------------------------- /mocks/notificationsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/mocks/notificationsData.ts -------------------------------------------------------------------------------- /mocks/pluginsPageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/mocks/pluginsPageData.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/500.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/all/daos/AllDaosPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/all/daos/AllDaosPage.tsx -------------------------------------------------------------------------------- /pages/all/daos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/all/daos/index.ts -------------------------------------------------------------------------------- /pages/all/feed/GlobalFeedPage.module.scss: -------------------------------------------------------------------------------- 1 | .root { 2 | //margin-top: var(--app-header-height); 3 | } 4 | -------------------------------------------------------------------------------- /pages/all/feed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/all/feed/index.tsx -------------------------------------------------------------------------------- /pages/api/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/api/config.ts -------------------------------------------------------------------------------- /pages/api/createProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/api/createProposal.ts -------------------------------------------------------------------------------- /pages/api/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/api/health.ts -------------------------------------------------------------------------------- /pages/api/nearPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/api/nearPrice.ts -------------------------------------------------------------------------------- /pages/api/server/[...path].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/api/server/[...path].ts -------------------------------------------------------------------------------- /pages/api/upload-to-s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/api/upload-to-s3.ts -------------------------------------------------------------------------------- /pages/bounties/BountiesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/bounties/BountiesPage.tsx -------------------------------------------------------------------------------- /pages/bounties/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/bounties/index.ts -------------------------------------------------------------------------------- /pages/callback/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/callback/auth.tsx -------------------------------------------------------------------------------- /pages/callback/pending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/callback/pending.tsx -------------------------------------------------------------------------------- /pages/callback/transaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/callback/transaction.tsx -------------------------------------------------------------------------------- /pages/cfc-library/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/cfc-library/index.ts -------------------------------------------------------------------------------- /pages/create-dao-new/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/create-dao-new/index.tsx -------------------------------------------------------------------------------- /pages/dao/[dao]/dao/DaoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/dao/[dao]/dao/DaoPage.tsx -------------------------------------------------------------------------------- /pages/dao/[dao]/dao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/dao/[dao]/dao/index.ts -------------------------------------------------------------------------------- /pages/dao/[dao]/delegate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/dao/[dao]/delegate/index.ts -------------------------------------------------------------------------------- /pages/dao/[dao]/drafts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/dao/[dao]/drafts/index.ts -------------------------------------------------------------------------------- /pages/dao/[dao]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/dao/[dao]/index.tsx -------------------------------------------------------------------------------- /pages/dao/[dao]/proposals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/dao/[dao]/proposals/index.ts -------------------------------------------------------------------------------- /pages/discover/DiscoverPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/discover/DiscoverPage.tsx -------------------------------------------------------------------------------- /pages/discover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/discover/index.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/my-account/MyAccountPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/my-account/MyAccountPage.tsx -------------------------------------------------------------------------------- /pages/my-account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/my-account/index.ts -------------------------------------------------------------------------------- /pages/my/daos/MyDaosPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/my/daos/MyDaosPage.tsx -------------------------------------------------------------------------------- /pages/my/daos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/my/daos/index.tsx -------------------------------------------------------------------------------- /pages/my/feed/MyFeedPage.module.scss: -------------------------------------------------------------------------------- 1 | .root { 2 | //margin-top: var(--app-header-height); 3 | } 4 | -------------------------------------------------------------------------------- /pages/my/feed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/my/feed/index.tsx -------------------------------------------------------------------------------- /pages/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/notifications/index.ts -------------------------------------------------------------------------------- /pages/search-results/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/search-results/index.ts -------------------------------------------------------------------------------- /pages/terms-conditions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/pages/terms-conditions/index.ts -------------------------------------------------------------------------------- /plugins/css-loader-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/plugins/css-loader-config.js -------------------------------------------------------------------------------- /plugins/next-svg-sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/plugins/next-svg-sprites.js -------------------------------------------------------------------------------- /public/assets/captcha/bg/F1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/assets/captcha/bg/F1.svg -------------------------------------------------------------------------------- /public/assets/captcha/bg/F2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/assets/captcha/bg/F2.svg -------------------------------------------------------------------------------- /public/assets/captcha/bg/F3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/assets/captcha/bg/F3.svg -------------------------------------------------------------------------------- /public/assets/img/mynearwallet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/assets/img/mynearwallet.jpg -------------------------------------------------------------------------------- /public/avatars/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar1.png -------------------------------------------------------------------------------- /public/avatars/avatar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar10.png -------------------------------------------------------------------------------- /public/avatars/avatar11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar11.png -------------------------------------------------------------------------------- /public/avatars/avatar12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar12.png -------------------------------------------------------------------------------- /public/avatars/avatar13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar13.png -------------------------------------------------------------------------------- /public/avatars/avatar14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar14.png -------------------------------------------------------------------------------- /public/avatars/avatar15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar15.png -------------------------------------------------------------------------------- /public/avatars/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar2.png -------------------------------------------------------------------------------- /public/avatars/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar3.png -------------------------------------------------------------------------------- /public/avatars/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar4.png -------------------------------------------------------------------------------- /public/avatars/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar5.png -------------------------------------------------------------------------------- /public/avatars/avatar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar6.png -------------------------------------------------------------------------------- /public/avatars/avatar7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar7.png -------------------------------------------------------------------------------- /public/avatars/avatar8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar8.png -------------------------------------------------------------------------------- /public/avatars/avatar9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/avatars/avatar9.png -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/cover.png -------------------------------------------------------------------------------- /public/dummy-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/dummy-card.png -------------------------------------------------------------------------------- /public/dummy-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/dummy-flag.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/flag-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flag-mask.svg -------------------------------------------------------------------------------- /public/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flag.svg -------------------------------------------------------------------------------- /public/flags/defaultDaoFlag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flags/defaultDaoFlag.png -------------------------------------------------------------------------------- /public/flags/flag-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flags/flag-1.png -------------------------------------------------------------------------------- /public/flags/flag-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flags/flag-2.png -------------------------------------------------------------------------------- /public/flags/flag-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flags/flag-3.png -------------------------------------------------------------------------------- /public/flags/flag-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flags/flag-4.png -------------------------------------------------------------------------------- /public/flags/flag-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flags/flag-5.png -------------------------------------------------------------------------------- /public/flags/flag-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/flags/flag-6.png -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/locales/en/common.json -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /scripts/generateAssetsIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/scripts/generateAssetsIndex.js -------------------------------------------------------------------------------- /services/AwsUploader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/AwsUploader/index.ts -------------------------------------------------------------------------------- /services/ConfigService/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConfigService'; 2 | -------------------------------------------------------------------------------- /services/CookieService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/CookieService/index.ts -------------------------------------------------------------------------------- /services/CookieService/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/CookieService/types.ts -------------------------------------------------------------------------------- /services/CookieService/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/CookieService/utils.ts -------------------------------------------------------------------------------- /services/DaoStatsService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/DaoStatsService/index.ts -------------------------------------------------------------------------------- /services/DaoStatsService/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/DaoStatsService/types.ts -------------------------------------------------------------------------------- /services/DraftsService/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DraftsService'; 2 | -------------------------------------------------------------------------------- /services/DraftsService/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/DraftsService/mappers.ts -------------------------------------------------------------------------------- /services/DraftsService/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/DraftsService/types.ts -------------------------------------------------------------------------------- /services/HttpService/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HttpService'; 2 | -------------------------------------------------------------------------------- /services/NotificationsService/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationsService'; 2 | -------------------------------------------------------------------------------- /services/SearchService/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/SearchService/helpers.ts -------------------------------------------------------------------------------- /services/SearchService/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SearchService'; 2 | -------------------------------------------------------------------------------- /services/SearchService/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/SearchService/types.ts -------------------------------------------------------------------------------- /services/sputnik/SputnikHttpService/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SputnikHttpService'; 2 | -------------------------------------------------------------------------------- /services/sputnik/SputnikNearService/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SputnikNearService'; 2 | -------------------------------------------------------------------------------- /services/sputnik/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/constants.ts -------------------------------------------------------------------------------- /services/sputnik/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/index.ts -------------------------------------------------------------------------------- /services/sputnik/mappers/dao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/mappers/dao.ts -------------------------------------------------------------------------------- /services/sputnik/mappers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/mappers/index.ts -------------------------------------------------------------------------------- /services/sputnik/mappers/nfts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/mappers/nfts.ts -------------------------------------------------------------------------------- /services/sputnik/mappers/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/mappers/token.ts -------------------------------------------------------------------------------- /services/sputnik/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/types/api.ts -------------------------------------------------------------------------------- /services/sputnik/types/bounty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/types/bounty.ts -------------------------------------------------------------------------------- /services/sputnik/types/dao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/types/dao.ts -------------------------------------------------------------------------------- /services/sputnik/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/types/index.ts -------------------------------------------------------------------------------- /services/sputnik/types/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/types/policy.ts -------------------------------------------------------------------------------- /services/sputnik/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/types/search.ts -------------------------------------------------------------------------------- /services/sputnik/types/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/services/sputnik/types/version.ts -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/setupTests.ts -------------------------------------------------------------------------------- /stories/AreaChart.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/AreaChart.stories.tsx -------------------------------------------------------------------------------- /stories/Badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Badge.stories.tsx -------------------------------------------------------------------------------- /stories/Collpapsable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Collpapsable.stories.tsx -------------------------------------------------------------------------------- /stories/Dropdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Dropdown.stories.tsx -------------------------------------------------------------------------------- /stories/Icon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Icon.stories.tsx -------------------------------------------------------------------------------- /stories/Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Input.stories.tsx -------------------------------------------------------------------------------- /stories/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Modal.stories.tsx -------------------------------------------------------------------------------- /stories/Pagination.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Pagination.stories.tsx -------------------------------------------------------------------------------- /stories/Popup.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Popup.stories.tsx -------------------------------------------------------------------------------- /stories/ScrollList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/ScrollList.stories.tsx -------------------------------------------------------------------------------- /stories/SearchBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/SearchBar.stories.tsx -------------------------------------------------------------------------------- /stories/Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Select.stories.tsx -------------------------------------------------------------------------------- /stories/Tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Tabs.stories.tsx -------------------------------------------------------------------------------- /stories/TextArea.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/TextArea.stories.tsx -------------------------------------------------------------------------------- /stories/Toggle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Toggle.stories.tsx -------------------------------------------------------------------------------- /stories/Typography.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/Typography.stories.tsx -------------------------------------------------------------------------------- /stories/button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/button/Button.stories.tsx -------------------------------------------------------------------------------- /stories/nft/NFTCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/NFTCard.stories.tsx -------------------------------------------------------------------------------- /stories/nft/assets/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/assets/example-1.png -------------------------------------------------------------------------------- /stories/nft/assets/example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/assets/example-2.png -------------------------------------------------------------------------------- /stories/nft/assets/example-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/assets/example-3.png -------------------------------------------------------------------------------- /stories/nft/assets/example-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/assets/example-4.png -------------------------------------------------------------------------------- /stories/nft/assets/example-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/assets/example-5.png -------------------------------------------------------------------------------- /stories/nft/assets/example-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/assets/example-6.png -------------------------------------------------------------------------------- /stories/nft/assets/example-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/stories/nft/assets/example-7.png -------------------------------------------------------------------------------- /styles/breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/styles/breakpoints.scss -------------------------------------------------------------------------------- /styles/daosList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/styles/daosList.scss -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /styles/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/styles/helpers.scss -------------------------------------------------------------------------------- /styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/styles/mixins.scss -------------------------------------------------------------------------------- /styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/styles/typography.scss -------------------------------------------------------------------------------- /styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/styles/variables.scss -------------------------------------------------------------------------------- /svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/svg.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/api.ts -------------------------------------------------------------------------------- /types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/auth.ts -------------------------------------------------------------------------------- /types/bounties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/bounties.ts -------------------------------------------------------------------------------- /types/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/chart.ts -------------------------------------------------------------------------------- /types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/config.ts -------------------------------------------------------------------------------- /types/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/context.ts -------------------------------------------------------------------------------- /types/dao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/dao.ts -------------------------------------------------------------------------------- /types/daoStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/daoStats.ts -------------------------------------------------------------------------------- /types/draftProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/draftProposal.ts -------------------------------------------------------------------------------- /types/memberHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/memberHome.ts -------------------------------------------------------------------------------- /types/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/notification.ts -------------------------------------------------------------------------------- /types/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/policy.ts -------------------------------------------------------------------------------- /types/proposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/proposal.ts -------------------------------------------------------------------------------- /types/proposalTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/proposalTemplate.ts -------------------------------------------------------------------------------- /types/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/role.ts -------------------------------------------------------------------------------- /types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/search.ts -------------------------------------------------------------------------------- /types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/settings.ts -------------------------------------------------------------------------------- /types/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/stats.ts -------------------------------------------------------------------------------- /types/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/token.ts -------------------------------------------------------------------------------- /types/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/types/transaction.ts -------------------------------------------------------------------------------- /utils/composeProperLinkUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/composeProperLinkUrl.ts -------------------------------------------------------------------------------- /utils/copyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/copyToClipboard.ts -------------------------------------------------------------------------------- /utils/dataConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/dataConverter.ts -------------------------------------------------------------------------------- /utils/dispatchCustomEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/dispatchCustomEvent.ts -------------------------------------------------------------------------------- /utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/format.ts -------------------------------------------------------------------------------- /utils/formatCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/formatCurrency.ts -------------------------------------------------------------------------------- /utils/fromBase64ToObj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/fromBase64ToObj.ts -------------------------------------------------------------------------------- /utils/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/ga.ts -------------------------------------------------------------------------------- /utils/getDefaultAppVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getDefaultAppVersion.ts -------------------------------------------------------------------------------- /utils/getElementSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getElementSize.ts -------------------------------------------------------------------------------- /utils/getFeatureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getFeatureFlags.ts -------------------------------------------------------------------------------- /utils/getImageFromImageFileList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getImageFromImageFileList.ts -------------------------------------------------------------------------------- /utils/getProposalScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getProposalScope.ts -------------------------------------------------------------------------------- /utils/getRandomInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getRandomInt.ts -------------------------------------------------------------------------------- /utils/getSocialLinkIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getSocialLinkIcon.ts -------------------------------------------------------------------------------- /utils/getTranslations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/getTranslations.ts -------------------------------------------------------------------------------- /utils/handlePressEnterBtn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/handlePressEnterBtn.ts -------------------------------------------------------------------------------- /utils/imageValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/imageValidators.ts -------------------------------------------------------------------------------- /utils/isSelectorWalletType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/isSelectorWalletType.ts -------------------------------------------------------------------------------- /utils/jsonToBase64Str.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/jsonToBase64Str.ts -------------------------------------------------------------------------------- /utils/keysToCamelCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/keysToCamelCase.ts -------------------------------------------------------------------------------- /utils/keysToSnakeCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/keysToSnakeCase.ts -------------------------------------------------------------------------------- /utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/logger.ts -------------------------------------------------------------------------------- /utils/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/objects.ts -------------------------------------------------------------------------------- /utils/proposalFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/proposalFilters.ts -------------------------------------------------------------------------------- /utils/tests/format.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/tests/format.spec.ts -------------------------------------------------------------------------------- /utils/tests/formatCurrency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/tests/formatCurrency.spec.ts -------------------------------------------------------------------------------- /utils/tests/getElementSize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/tests/getElementSize.spec.ts -------------------------------------------------------------------------------- /utils/tests/getRandomInt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/utils/tests/getRandomInt.spec.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-daos/astro-ui/HEAD/yarn.lock --------------------------------------------------------------------------------