├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github ├── auto_assign.yml ├── config.yml ├── release-drafter.yml ├── stale.yml └── workflows │ └── deploy.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel-plugin-aragon-ui ├── .babelrc ├── .gitignore ├── README.md ├── package.json └── src │ ├── gu.js │ ├── index.js │ └── utils │ └── detectors.js ├── bin └── copy-aragon-ui-assets ├── devbox ├── .babelrc ├── .gitignore ├── all-icons.js ├── apps │ ├── Accordion.js │ ├── AddressField.js │ ├── AppBadge.js │ ├── AppBarTabs.js │ ├── AppView.js │ ├── AutoComplete.js │ ├── Bar.js │ ├── Button.js │ ├── Card.js │ ├── Checkbox.js │ ├── CircleGraph.js │ ├── Colors.js │ ├── ContextMenu.js │ ├── DataView.js │ ├── DataView │ │ ├── DataViewExpansion.js │ │ └── DataViewSelect.js │ ├── DateRangePicker.js │ ├── Details.js │ ├── DiscButton.js │ ├── Distribution.js │ ├── DropDown.js │ ├── EmptyStateCard.js │ ├── EthIdenticon.js │ ├── Everything.js │ ├── FloatIndicator.js │ ├── Help.js │ ├── Icons.js │ ├── IdentityBadge.js │ ├── Info.js │ ├── Input.js │ ├── Layout.js │ ├── LineChart.js │ ├── Link.js │ ├── LinkedSliders.js │ ├── LoadingRing.js │ ├── Markdown.js │ ├── Modal.js │ ├── NavigationBar.js │ ├── Pagination.js │ ├── Popover.js │ ├── ProgressBar.js │ ├── Radio.js │ ├── RadioList.js │ ├── Scratchpad.js │ ├── SidePanel.js │ ├── Switch.js │ ├── SyncIndicator.js │ ├── Tabs.js │ ├── Tag.js │ ├── TextCopy.js │ ├── TextStyles.js │ ├── Theme.js │ ├── Timer.js │ ├── TokenAmount.js │ ├── TokenBadge.js │ ├── TransactionBadge.js │ ├── TransactionProgress.js │ ├── Viewport.js │ ├── Wrappers.js │ └── index.js ├── assets │ ├── app-voting-icon.svg │ └── voting-empty-state.png ├── components │ ├── Center.js │ ├── Lorem.js │ ├── SplitSurfaces.js │ └── current-theme.js ├── create-address.js ├── index.js ├── package.json ├── scripts │ ├── check-link │ └── update-apps-index ├── utils.js ├── webpack.config.js └── yarn.lock ├── docs ├── Colors.md ├── GettingStarted.md ├── Spacing.md ├── TextStyles.md └── Upgrade.md ├── gallery ├── .babelrc ├── .gitignore ├── package.json ├── public │ ├── favicon.svg │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── Page │ │ │ ├── DemoContainer.js │ │ │ ├── Frame.js │ │ │ ├── MarkdownContent.js │ │ │ ├── Page.js │ │ │ └── Resizable.js │ │ └── Sidebar │ │ │ ├── MenuItem.js │ │ │ └── Sidebar.js │ ├── environment.js │ ├── global-styles.js │ ├── index.js │ ├── pages │ │ ├── PageAddressField.js │ │ ├── PageAutoComplete.js │ │ ├── PageBackButton.js │ │ ├── PageBar.js │ │ ├── PageBaseStyles.js │ │ ├── PageBox.js │ │ ├── PageButton.js │ │ ├── PageButtonBase.js │ │ ├── PageCard.js │ │ ├── PageCheckBox.js │ │ ├── PageCircleGraph.js │ │ ├── PageContextMenu.js │ │ ├── PageDataView.js │ │ ├── PageDateRangePicker.js │ │ ├── PageDistribution.js │ │ ├── PageDropDown.js │ │ ├── PageEmptyStateCard.js │ │ ├── PageEthIdenticon.js │ │ ├── PageField.js │ │ ├── PageFocusVisible.js │ │ ├── PageHeader.js │ │ ├── PageHome.js │ │ ├── PageIcons.js │ │ ├── PageIdentityBadge.js │ │ ├── PageIllustratedSection.js │ │ ├── PageInfo.js │ │ ├── PageLineChart.js │ │ ├── PageLink.js │ │ ├── PageModal.js │ │ ├── PagePagination.js │ │ ├── PagePopover.js │ │ ├── PagePreFooter.js │ │ ├── PageProgressBar.js │ │ ├── PagePublicUrl.js │ │ ├── PageRadio.js │ │ ├── PageRadioGroup.js │ │ ├── PageRadioList.js │ │ ├── PageRedraw.js │ │ ├── PageRedrawFromDate.js │ │ ├── PageRoot.js │ │ ├── PageRootPortal.js │ │ ├── PageSection.js │ │ ├── PageSidePanel.js │ │ ├── PageSlider.js │ │ ├── PageSplit.js │ │ ├── PageSwitch.js │ │ ├── PageTable.js │ │ ├── PageTabs.js │ │ ├── PageTextCopy.js │ │ ├── PageTextInput.js │ │ ├── PageTextStyles.js │ │ ├── PageTimer.js │ │ ├── PageToastHub.js │ │ ├── PageTokenAmount.js │ │ ├── PageTransactionBadge.js │ │ ├── PageTransactionProgress.js │ │ └── PageViewport.js │ ├── render-readme.js │ └── routes.js ├── webpack.config.js └── yarn.lock ├── jest.config.js ├── package.json ├── rollup.config.js ├── scripts └── generate-icons ├── setupTests.js ├── src ├── components │ ├── Accordion │ │ ├── Accordion.js │ │ └── README.md │ ├── AddressField │ │ ├── AddressField.js │ │ └── README.md │ ├── AppBadge │ │ ├── AppBadge.js │ │ ├── AppBadgePopover.js │ │ ├── README.md │ │ └── assets │ │ │ └── app-default.svg │ ├── AppView │ │ ├── AppBar.js │ │ ├── AppBar.md │ │ ├── AppView.js │ │ ├── AppView.md │ │ └── assets │ │ │ ├── chevron.svg │ │ │ └── logo-background.svg │ ├── AutoComplete │ │ ├── AutoComplete.js │ │ ├── AutoCompleteSelected.js │ │ └── README.md │ ├── BackButton │ │ ├── BackButton.js │ │ └── README.md │ ├── Badge │ │ ├── Badge.js │ │ └── Badge.test.js │ ├── BadgeBase │ │ ├── BadgeBase.js │ │ ├── BadgePopoverActionType.js │ │ └── BadgePopoverBase.js │ ├── Bar │ │ ├── Bar.js │ │ └── README.md │ ├── BaseStyles │ │ ├── BaseStyles.js │ │ ├── README.md │ │ └── assets │ │ │ ├── overpass-mono │ │ │ └── overpass-mono-light.woff2 │ │ │ └── overpass │ │ │ ├── overpass-light.woff2 │ │ │ ├── overpass-regular.woff2 │ │ │ └── overpass-semibold.woff2 │ ├── Box │ │ ├── Box.js │ │ └── README.md │ ├── Button │ │ ├── Button.js │ │ ├── Button.test.js │ │ ├── ButtonIcon.js │ │ ├── ButtonText.js │ │ ├── README.md │ │ └── assets │ │ │ ├── check-white.svg │ │ │ ├── check.svg │ │ │ ├── cross-white.svg │ │ │ └── cross.svg │ ├── ButtonBase │ │ ├── ButtonBase.js │ │ └── README.md │ ├── Card │ │ ├── Card.js │ │ ├── Card.md │ │ ├── EmptyStateCard.js │ │ ├── EmptyStateCard.md │ │ └── assets │ │ │ └── empty-state-card-illustration-default.png │ ├── CardLayout │ │ └── CardLayout.js │ ├── CircleGraph │ │ ├── CircleGraph.js │ │ └── README.md │ ├── ContextMenu │ │ ├── ContextMenu.js │ │ ├── ContextMenuItem.js │ │ └── README.md │ ├── Countdown │ │ ├── Countdown.js │ │ └── README.md │ ├── DataView │ │ ├── DataView.js │ │ ├── EmptyState.js │ │ ├── ListView.js │ │ ├── OpenedSurfaceBorder.js │ │ ├── README.md │ │ ├── TableView.js │ │ ├── ToggleButton.js │ │ └── assets │ │ │ ├── empty-state-illustration-blue.png │ │ │ └── empty-state-illustration-red.png │ ├── DateRangePicker │ │ ├── DatePicker.js │ │ ├── DateRangePicker.js │ │ ├── Labels.js │ │ ├── MonthDay.js │ │ ├── README.md │ │ ├── components.js │ │ ├── consts.js │ │ ├── utils.js │ │ └── utils.test.js │ ├── Details │ │ ├── Details.js │ │ └── README.md │ ├── DiscButton │ │ └── DiscButton.js │ ├── Distribution │ │ ├── Distribution.js │ │ └── README.md │ ├── DropDown │ │ ├── DropDown.js │ │ └── README.md │ ├── EscapeOutside │ │ ├── EscapeOutside.js │ │ └── README.md │ ├── EthIdenticon │ │ ├── EthIdenticon.js │ │ └── README.md │ ├── Field │ │ ├── Field.js │ │ └── README.md │ ├── FloatIndicator │ │ ├── FloatIndicator.js │ │ └── README.md │ ├── FocusVisible │ │ ├── FocusVisible.js │ │ └── README.md │ ├── Header │ │ ├── Header.js │ │ └── README.md │ ├── Help │ │ ├── Help.js │ │ └── README.md │ ├── IdentityBadge │ │ ├── IdentityBadge.js │ │ ├── IdentityBadgePopover.js │ │ └── README.md │ ├── Info │ │ ├── Info.js │ │ └── README.md │ ├── Input │ │ ├── Checkbox.js │ │ ├── Checkbox.md │ │ ├── Radio.js │ │ ├── Radio.md │ │ ├── SearchInput.js │ │ ├── SearchInput.md │ │ ├── TextInput.js │ │ └── TextInput.md │ ├── Layout │ │ └── Layout.js │ ├── LineChart │ │ ├── LineChart.js │ │ └── README.md │ ├── Link │ │ ├── Link.js │ │ ├── LinkDeprecated.js │ │ └── README.md │ ├── LoadingRing │ │ ├── LoadingRing.js │ │ └── README.md │ ├── Main │ │ ├── Main.js │ │ └── README.md │ ├── Markdown │ │ ├── Markdown.js │ │ ├── NormalizedHtml.js │ │ └── README.md │ ├── Modal │ │ ├── Modal.js │ │ └── README.md │ ├── NavigationBar │ │ ├── LeftIcon.js │ │ ├── NavigationBar.js │ │ └── README.md │ ├── Pagination │ │ ├── Pagination.js │ │ ├── PaginationItem.js │ │ ├── PaginationSeparator.js │ │ └── README.md │ ├── PartitionBar │ │ └── PartitionBar.js │ ├── Popover │ │ ├── Popover.js │ │ └── README.md │ ├── ProgressBar │ │ ├── ProgressBar.js │ │ └── README.md │ ├── Radio │ │ ├── RadioGroup.js │ │ ├── RadioGroup.md │ │ ├── RadioList.js │ │ ├── RadioList.md │ │ └── RadioListItem.js │ ├── RootPortal │ │ ├── README.md │ │ └── RootPortal.js │ ├── ScrollView │ │ └── ScrollView.js │ ├── SidePanel │ │ ├── README.md │ │ ├── SidePanel.js │ │ ├── SidePanelSeparator.js │ │ └── SidePanelSplit.js │ ├── Slider │ │ ├── Slider.js │ │ └── Slider.md │ ├── Split │ │ ├── README.md │ │ └── Split.js │ ├── Switch │ │ ├── README.md │ │ └── Switch.js │ ├── SyncIndicator │ │ ├── README.md │ │ └── SyncIndicator.js │ ├── Table │ │ ├── Table.js │ │ ├── Table.md │ │ ├── TableCell.js │ │ ├── TableHeader.js │ │ └── TableRow.js │ ├── Tabs │ │ ├── README.md │ │ ├── Tab.js │ │ ├── TabBarLegacy.js │ │ ├── Tabs.js │ │ └── TabsFullWidth.js │ ├── Tag │ │ ├── README.md │ │ └── Tag.js │ ├── Text │ │ ├── README.md │ │ └── Text.js │ ├── TextCopy │ │ ├── README.md │ │ └── TextCopy.js │ ├── Timer │ │ ├── README.md │ │ └── Timer.js │ ├── ToastHub │ │ ├── README.md │ │ └── ToastHub.js │ ├── TokenAmount │ │ ├── README.md │ │ └── TokenAmount.js │ ├── TokenBadge │ │ ├── TokenBadge.js │ │ └── TokenBadgePopover.js │ ├── TransactionBadge │ │ ├── README.md │ │ └── TransactionBadge.js │ ├── TransactionProgress │ │ ├── README.md │ │ └── TransactionProgress.js │ └── index.js ├── hooks │ ├── index.js │ ├── useArrowKeysFocus.js │ ├── useClickOutside.js │ ├── useFocusEnter.js │ ├── useFocusLeave.js │ ├── useImageExists.js │ ├── useKeyDown.js │ └── useOnBlur.js ├── icons │ ├── IconPropTypes.js │ ├── README.md │ ├── components │ │ ├── IconAddUser.js │ │ ├── IconAlert.js │ │ ├── IconAlignCenter.js │ │ ├── IconAlignJustify.js │ │ ├── IconAlignLeft.js │ │ ├── IconAlignRight.js │ │ ├── IconAragon.js │ │ ├── IconArrowDown.js │ │ ├── IconArrowLeft.js │ │ ├── IconArrowRight.js │ │ ├── IconArrowUp.js │ │ ├── IconAtSign.js │ │ ├── IconBlock.js │ │ ├── IconBookmark.js │ │ ├── IconCalendar.js │ │ ├── IconCanvas.js │ │ ├── IconCaution.js │ │ ├── IconCenter.js │ │ ├── IconChart.js │ │ ├── IconChat.js │ │ ├── IconCheck.js │ │ ├── IconChip.js │ │ ├── IconCircleCheck.js │ │ ├── IconCircleMinus.js │ │ ├── IconCirclePlus.js │ │ ├── IconClock.js │ │ ├── IconCloudDownload.js │ │ ├── IconCloudUpload.js │ │ ├── IconCoin.js │ │ ├── IconConfiguration.js │ │ ├── IconConnect.js │ │ ├── IconConnection.js │ │ ├── IconConsole.js │ │ ├── IconCopy.js │ │ ├── IconCross.js │ │ ├── IconDashedSquare.js │ │ ├── IconDown.js │ │ ├── IconDownload.js │ │ ├── IconEdit.js │ │ ├── IconEllipsis.js │ │ ├── IconEnter.js │ │ ├── IconEthereum.js │ │ ├── IconExternal.js │ │ ├── IconFile.js │ │ ├── IconFilter.js │ │ ├── IconFlag.js │ │ ├── IconFolder.js │ │ ├── IconGraph.js │ │ ├── IconGraph2.js │ │ ├── IconGrid.js │ │ ├── IconGroup.js │ │ ├── IconHash.js │ │ ├── IconHeart.js │ │ ├── IconHide.js │ │ ├── IconHome.js │ │ ├── IconImage.js │ │ ├── IconInfo.js │ │ ├── IconLabel.js │ │ ├── IconLayers.js │ │ ├── IconLeft.js │ │ ├── IconLink.js │ │ ├── IconLocation.js │ │ ├── IconLock.js │ │ ├── IconMail.js │ │ ├── IconMaximize.js │ │ ├── IconMenu.js │ │ ├── IconMinimize.js │ │ ├── IconMinus.js │ │ ├── IconMove.js │ │ ├── IconNoPicture.js │ │ ├── IconPicture.js │ │ ├── IconPlus.js │ │ ├── IconPower.js │ │ ├── IconPrint.js │ │ ├── IconProhibited.js │ │ ├── IconQuestion.js │ │ ├── IconRefresh.js │ │ ├── IconRemoveUser.js │ │ ├── IconRight.js │ │ ├── IconRotateLeft.js │ │ ├── IconRotateRight.js │ │ ├── IconSearch.js │ │ ├── IconSettings.js │ │ ├── IconShare.js │ │ ├── IconSquare.js │ │ ├── IconSquareMinus.js │ │ ├── IconSquarePlus.js │ │ ├── IconStar.js │ │ ├── IconStarFilled.js │ │ ├── IconSwap.js │ │ ├── IconTarget.js │ │ ├── IconToken.js │ │ ├── IconTrash.js │ │ ├── IconUnlock.js │ │ ├── IconUp.js │ │ ├── IconUpload.js │ │ ├── IconUser.js │ │ ├── IconView.js │ │ ├── IconVote.js │ │ ├── IconWallet.js │ │ ├── IconWarning.js │ │ ├── IconWorld.js │ │ ├── IconWrite.js │ │ ├── IconZoomIn.js │ │ ├── IconZoomOut.js │ │ └── index.js │ ├── icon-size.js │ ├── index.js │ └── svg │ │ ├── add-user.svg │ │ ├── alert.svg │ │ ├── align-center.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── aragon.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up.svg │ │ ├── at-sign.svg │ │ ├── block.svg │ │ ├── bookmark.svg │ │ ├── calendar.svg │ │ ├── canvas.svg │ │ ├── caution.svg │ │ ├── center.svg │ │ ├── chart.svg │ │ ├── chat.svg │ │ ├── check.svg │ │ ├── chip.svg │ │ ├── circle-check.svg │ │ ├── circle-minus.svg │ │ ├── circle-plus.svg │ │ ├── clock.svg │ │ ├── cloud-download.svg │ │ ├── cloud-upload.svg │ │ ├── coin.svg │ │ ├── configuration.svg │ │ ├── connect.svg │ │ ├── connection.svg │ │ ├── console.svg │ │ ├── copy.svg │ │ ├── cross.svg │ │ ├── dashed-square.svg │ │ ├── down.svg │ │ ├── download.svg │ │ ├── edit.svg │ │ ├── ellipsis.svg │ │ ├── enter.svg │ │ ├── ethereum.svg │ │ ├── external.svg │ │ ├── file.svg │ │ ├── filter.svg │ │ ├── flag.svg │ │ ├── folder.svg │ │ ├── graph-2.svg │ │ ├── graph.svg │ │ ├── grid.svg │ │ ├── group.svg │ │ ├── hash.svg │ │ ├── heart.svg │ │ ├── hide.svg │ │ ├── home.svg │ │ ├── image.svg │ │ ├── info.svg │ │ ├── label.svg │ │ ├── layers.svg │ │ ├── left.svg │ │ ├── link.svg │ │ ├── location.svg │ │ ├── lock.svg │ │ ├── mail.svg │ │ ├── maximize.svg │ │ ├── menu.svg │ │ ├── minimize.svg │ │ ├── minus.svg │ │ ├── move.svg │ │ ├── no-picture.svg │ │ ├── picture.svg │ │ ├── plus.svg │ │ ├── power.svg │ │ ├── print.svg │ │ ├── prohibited.svg │ │ ├── question.svg │ │ ├── refresh.svg │ │ ├── remove-user.svg │ │ ├── right.svg │ │ ├── rotate-left.svg │ │ ├── rotate-right.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── share.svg │ │ ├── square-minus.svg │ │ ├── square-plus.svg │ │ ├── square.svg │ │ ├── star-filled.svg │ │ ├── star.svg │ │ ├── swap.svg │ │ ├── target.svg │ │ ├── token.svg │ │ ├── trash.svg │ │ ├── unlock.svg │ │ ├── up.svg │ │ ├── upload.svg │ │ ├── user.svg │ │ ├── view.svg │ │ ├── vote.svg │ │ ├── wallet.svg │ │ ├── warning.svg │ │ ├── world.svg │ │ ├── write.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg ├── index.js ├── lib │ └── cached-map.js ├── proptypes.js ├── providers │ ├── PublicUrl │ │ ├── PublicUrl.js │ │ ├── README.md │ │ └── index.js │ ├── Redraw │ │ ├── Redraw.js │ │ └── index.js │ ├── RedrawFromDate │ │ ├── RedrawFromDate.js │ │ └── index.js │ ├── Root │ │ ├── README.md │ │ ├── Root.js │ │ └── index.js │ ├── Viewport │ │ ├── README.md │ │ ├── Viewport.js │ │ └── index.js │ ├── index.js │ └── observe │ │ ├── README.md │ │ ├── index.js │ │ └── observe.js ├── style │ ├── breakpoints.js │ ├── constants.js │ ├── index.js │ ├── springs.js │ └── text-styles.js ├── theme-legacy │ ├── README.md │ ├── aragon.js │ ├── index.js │ └── palettes.js ├── theme │ ├── Theme.js │ ├── index.js │ ├── theme-dark.js │ └── theme-light.js ├── utils │ ├── characters.js │ ├── color.js │ ├── color.test.js │ ├── components.js │ ├── contains-component.js │ ├── css.js │ ├── date.js │ ├── date.test.js │ ├── environment.js │ ├── font.js │ ├── format.js │ ├── format.test.js │ ├── index.js │ ├── keycodes.js │ ├── math.js │ ├── math.test.js │ ├── miscellaneous.js │ ├── url.js │ └── web3.js └── vendor │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/icons/components/*.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/README.md -------------------------------------------------------------------------------- /babel-plugin-aragon-ui/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/babel-plugin-aragon-ui/.babelrc -------------------------------------------------------------------------------- /babel-plugin-aragon-ui/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /babel-plugin-aragon-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/babel-plugin-aragon-ui/README.md -------------------------------------------------------------------------------- /babel-plugin-aragon-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/babel-plugin-aragon-ui/package.json -------------------------------------------------------------------------------- /babel-plugin-aragon-ui/src/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/babel-plugin-aragon-ui/src/gu.js -------------------------------------------------------------------------------- /babel-plugin-aragon-ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/babel-plugin-aragon-ui/src/index.js -------------------------------------------------------------------------------- /babel-plugin-aragon-ui/src/utils/detectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/babel-plugin-aragon-ui/src/utils/detectors.js -------------------------------------------------------------------------------- /bin/copy-aragon-ui-assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/bin/copy-aragon-ui-assets -------------------------------------------------------------------------------- /devbox/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/.babelrc -------------------------------------------------------------------------------- /devbox/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | -------------------------------------------------------------------------------- /devbox/all-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/all-icons.js -------------------------------------------------------------------------------- /devbox/apps/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Accordion.js -------------------------------------------------------------------------------- /devbox/apps/AddressField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/AddressField.js -------------------------------------------------------------------------------- /devbox/apps/AppBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/AppBadge.js -------------------------------------------------------------------------------- /devbox/apps/AppBarTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/AppBarTabs.js -------------------------------------------------------------------------------- /devbox/apps/AppView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/AppView.js -------------------------------------------------------------------------------- /devbox/apps/AutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/AutoComplete.js -------------------------------------------------------------------------------- /devbox/apps/Bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Bar.js -------------------------------------------------------------------------------- /devbox/apps/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Button.js -------------------------------------------------------------------------------- /devbox/apps/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Card.js -------------------------------------------------------------------------------- /devbox/apps/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Checkbox.js -------------------------------------------------------------------------------- /devbox/apps/CircleGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/CircleGraph.js -------------------------------------------------------------------------------- /devbox/apps/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Colors.js -------------------------------------------------------------------------------- /devbox/apps/ContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/ContextMenu.js -------------------------------------------------------------------------------- /devbox/apps/DataView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/DataView.js -------------------------------------------------------------------------------- /devbox/apps/DataView/DataViewExpansion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/DataView/DataViewExpansion.js -------------------------------------------------------------------------------- /devbox/apps/DataView/DataViewSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/DataView/DataViewSelect.js -------------------------------------------------------------------------------- /devbox/apps/DateRangePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/DateRangePicker.js -------------------------------------------------------------------------------- /devbox/apps/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Details.js -------------------------------------------------------------------------------- /devbox/apps/DiscButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/DiscButton.js -------------------------------------------------------------------------------- /devbox/apps/Distribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Distribution.js -------------------------------------------------------------------------------- /devbox/apps/DropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/DropDown.js -------------------------------------------------------------------------------- /devbox/apps/EmptyStateCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/EmptyStateCard.js -------------------------------------------------------------------------------- /devbox/apps/EthIdenticon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/EthIdenticon.js -------------------------------------------------------------------------------- /devbox/apps/Everything.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Everything.js -------------------------------------------------------------------------------- /devbox/apps/FloatIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/FloatIndicator.js -------------------------------------------------------------------------------- /devbox/apps/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Help.js -------------------------------------------------------------------------------- /devbox/apps/Icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Icons.js -------------------------------------------------------------------------------- /devbox/apps/IdentityBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/IdentityBadge.js -------------------------------------------------------------------------------- /devbox/apps/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Info.js -------------------------------------------------------------------------------- /devbox/apps/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Input.js -------------------------------------------------------------------------------- /devbox/apps/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Layout.js -------------------------------------------------------------------------------- /devbox/apps/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/LineChart.js -------------------------------------------------------------------------------- /devbox/apps/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Link.js -------------------------------------------------------------------------------- /devbox/apps/LinkedSliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/LinkedSliders.js -------------------------------------------------------------------------------- /devbox/apps/LoadingRing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/LoadingRing.js -------------------------------------------------------------------------------- /devbox/apps/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Markdown.js -------------------------------------------------------------------------------- /devbox/apps/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Modal.js -------------------------------------------------------------------------------- /devbox/apps/NavigationBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/NavigationBar.js -------------------------------------------------------------------------------- /devbox/apps/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Pagination.js -------------------------------------------------------------------------------- /devbox/apps/Popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Popover.js -------------------------------------------------------------------------------- /devbox/apps/ProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/ProgressBar.js -------------------------------------------------------------------------------- /devbox/apps/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Radio.js -------------------------------------------------------------------------------- /devbox/apps/RadioList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/RadioList.js -------------------------------------------------------------------------------- /devbox/apps/Scratchpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Scratchpad.js -------------------------------------------------------------------------------- /devbox/apps/SidePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/SidePanel.js -------------------------------------------------------------------------------- /devbox/apps/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Switch.js -------------------------------------------------------------------------------- /devbox/apps/SyncIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/SyncIndicator.js -------------------------------------------------------------------------------- /devbox/apps/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Tabs.js -------------------------------------------------------------------------------- /devbox/apps/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Tag.js -------------------------------------------------------------------------------- /devbox/apps/TextCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/TextCopy.js -------------------------------------------------------------------------------- /devbox/apps/TextStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/TextStyles.js -------------------------------------------------------------------------------- /devbox/apps/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Theme.js -------------------------------------------------------------------------------- /devbox/apps/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Timer.js -------------------------------------------------------------------------------- /devbox/apps/TokenAmount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/TokenAmount.js -------------------------------------------------------------------------------- /devbox/apps/TokenBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/TokenBadge.js -------------------------------------------------------------------------------- /devbox/apps/TransactionBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/TransactionBadge.js -------------------------------------------------------------------------------- /devbox/apps/TransactionProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/TransactionProgress.js -------------------------------------------------------------------------------- /devbox/apps/Viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Viewport.js -------------------------------------------------------------------------------- /devbox/apps/Wrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/Wrappers.js -------------------------------------------------------------------------------- /devbox/apps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/apps/index.js -------------------------------------------------------------------------------- /devbox/assets/app-voting-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/assets/app-voting-icon.svg -------------------------------------------------------------------------------- /devbox/assets/voting-empty-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/assets/voting-empty-state.png -------------------------------------------------------------------------------- /devbox/components/Center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/components/Center.js -------------------------------------------------------------------------------- /devbox/components/Lorem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/components/Lorem.js -------------------------------------------------------------------------------- /devbox/components/SplitSurfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/components/SplitSurfaces.js -------------------------------------------------------------------------------- /devbox/components/current-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/components/current-theme.js -------------------------------------------------------------------------------- /devbox/create-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/create-address.js -------------------------------------------------------------------------------- /devbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/index.js -------------------------------------------------------------------------------- /devbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/package.json -------------------------------------------------------------------------------- /devbox/scripts/check-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/scripts/check-link -------------------------------------------------------------------------------- /devbox/scripts/update-apps-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/scripts/update-apps-index -------------------------------------------------------------------------------- /devbox/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/utils.js -------------------------------------------------------------------------------- /devbox/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/webpack.config.js -------------------------------------------------------------------------------- /devbox/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/devbox/yarn.lock -------------------------------------------------------------------------------- /docs/Colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/docs/Colors.md -------------------------------------------------------------------------------- /docs/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/docs/GettingStarted.md -------------------------------------------------------------------------------- /docs/Spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/docs/Spacing.md -------------------------------------------------------------------------------- /docs/TextStyles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/docs/TextStyles.md -------------------------------------------------------------------------------- /docs/Upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/docs/Upgrade.md -------------------------------------------------------------------------------- /gallery/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/.babelrc -------------------------------------------------------------------------------- /gallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/.gitignore -------------------------------------------------------------------------------- /gallery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/package.json -------------------------------------------------------------------------------- /gallery/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/public/favicon.svg -------------------------------------------------------------------------------- /gallery/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/public/index.html -------------------------------------------------------------------------------- /gallery/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/public/manifest.json -------------------------------------------------------------------------------- /gallery/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/App.js -------------------------------------------------------------------------------- /gallery/src/components/Page/DemoContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/components/Page/DemoContainer.js -------------------------------------------------------------------------------- /gallery/src/components/Page/Frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/components/Page/Frame.js -------------------------------------------------------------------------------- /gallery/src/components/Page/MarkdownContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/components/Page/MarkdownContent.js -------------------------------------------------------------------------------- /gallery/src/components/Page/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/components/Page/Page.js -------------------------------------------------------------------------------- /gallery/src/components/Page/Resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/components/Page/Resizable.js -------------------------------------------------------------------------------- /gallery/src/components/Sidebar/MenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/components/Sidebar/MenuItem.js -------------------------------------------------------------------------------- /gallery/src/components/Sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/components/Sidebar/Sidebar.js -------------------------------------------------------------------------------- /gallery/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/environment.js -------------------------------------------------------------------------------- /gallery/src/global-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/global-styles.js -------------------------------------------------------------------------------- /gallery/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/index.js -------------------------------------------------------------------------------- /gallery/src/pages/PageAddressField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageAddressField.js -------------------------------------------------------------------------------- /gallery/src/pages/PageAutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageAutoComplete.js -------------------------------------------------------------------------------- /gallery/src/pages/PageBackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageBackButton.js -------------------------------------------------------------------------------- /gallery/src/pages/PageBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageBar.js -------------------------------------------------------------------------------- /gallery/src/pages/PageBaseStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageBaseStyles.js -------------------------------------------------------------------------------- /gallery/src/pages/PageBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageBox.js -------------------------------------------------------------------------------- /gallery/src/pages/PageButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageButton.js -------------------------------------------------------------------------------- /gallery/src/pages/PageButtonBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageButtonBase.js -------------------------------------------------------------------------------- /gallery/src/pages/PageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageCard.js -------------------------------------------------------------------------------- /gallery/src/pages/PageCheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageCheckBox.js -------------------------------------------------------------------------------- /gallery/src/pages/PageCircleGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageCircleGraph.js -------------------------------------------------------------------------------- /gallery/src/pages/PageContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageContextMenu.js -------------------------------------------------------------------------------- /gallery/src/pages/PageDataView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageDataView.js -------------------------------------------------------------------------------- /gallery/src/pages/PageDateRangePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageDateRangePicker.js -------------------------------------------------------------------------------- /gallery/src/pages/PageDistribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageDistribution.js -------------------------------------------------------------------------------- /gallery/src/pages/PageDropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageDropDown.js -------------------------------------------------------------------------------- /gallery/src/pages/PageEmptyStateCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageEmptyStateCard.js -------------------------------------------------------------------------------- /gallery/src/pages/PageEthIdenticon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageEthIdenticon.js -------------------------------------------------------------------------------- /gallery/src/pages/PageField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageField.js -------------------------------------------------------------------------------- /gallery/src/pages/PageFocusVisible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageFocusVisible.js -------------------------------------------------------------------------------- /gallery/src/pages/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageHeader.js -------------------------------------------------------------------------------- /gallery/src/pages/PageHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageHome.js -------------------------------------------------------------------------------- /gallery/src/pages/PageIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageIcons.js -------------------------------------------------------------------------------- /gallery/src/pages/PageIdentityBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageIdentityBadge.js -------------------------------------------------------------------------------- /gallery/src/pages/PageIllustratedSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageIllustratedSection.js -------------------------------------------------------------------------------- /gallery/src/pages/PageInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageInfo.js -------------------------------------------------------------------------------- /gallery/src/pages/PageLineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageLineChart.js -------------------------------------------------------------------------------- /gallery/src/pages/PageLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageLink.js -------------------------------------------------------------------------------- /gallery/src/pages/PageModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageModal.js -------------------------------------------------------------------------------- /gallery/src/pages/PagePagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PagePagination.js -------------------------------------------------------------------------------- /gallery/src/pages/PagePopover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PagePopover.js -------------------------------------------------------------------------------- /gallery/src/pages/PagePreFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PagePreFooter.js -------------------------------------------------------------------------------- /gallery/src/pages/PageProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageProgressBar.js -------------------------------------------------------------------------------- /gallery/src/pages/PagePublicUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PagePublicUrl.js -------------------------------------------------------------------------------- /gallery/src/pages/PageRadio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageRadio.js -------------------------------------------------------------------------------- /gallery/src/pages/PageRadioGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageRadioGroup.js -------------------------------------------------------------------------------- /gallery/src/pages/PageRadioList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageRadioList.js -------------------------------------------------------------------------------- /gallery/src/pages/PageRedraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageRedraw.js -------------------------------------------------------------------------------- /gallery/src/pages/PageRedrawFromDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageRedrawFromDate.js -------------------------------------------------------------------------------- /gallery/src/pages/PageRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageRoot.js -------------------------------------------------------------------------------- /gallery/src/pages/PageRootPortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageRootPortal.js -------------------------------------------------------------------------------- /gallery/src/pages/PageSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageSection.js -------------------------------------------------------------------------------- /gallery/src/pages/PageSidePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageSidePanel.js -------------------------------------------------------------------------------- /gallery/src/pages/PageSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageSlider.js -------------------------------------------------------------------------------- /gallery/src/pages/PageSplit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageSplit.js -------------------------------------------------------------------------------- /gallery/src/pages/PageSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageSwitch.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTable.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTabs.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTextCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTextCopy.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTextInput.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTextStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTextStyles.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTimer.js -------------------------------------------------------------------------------- /gallery/src/pages/PageToastHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageToastHub.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTokenAmount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTokenAmount.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTransactionBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTransactionBadge.js -------------------------------------------------------------------------------- /gallery/src/pages/PageTransactionProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageTransactionProgress.js -------------------------------------------------------------------------------- /gallery/src/pages/PageViewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/pages/PageViewport.js -------------------------------------------------------------------------------- /gallery/src/render-readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/render-readme.js -------------------------------------------------------------------------------- /gallery/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/src/routes.js -------------------------------------------------------------------------------- /gallery/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/webpack.config.js -------------------------------------------------------------------------------- /gallery/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/gallery/yarn.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/generate-icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/scripts/generate-icons -------------------------------------------------------------------------------- /setupTests.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect' 2 | -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Accordion/Accordion.js -------------------------------------------------------------------------------- /src/components/Accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Accordion/README.md -------------------------------------------------------------------------------- /src/components/AddressField/AddressField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AddressField/AddressField.js -------------------------------------------------------------------------------- /src/components/AddressField/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AddressField/README.md -------------------------------------------------------------------------------- /src/components/AppBadge/AppBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppBadge/AppBadge.js -------------------------------------------------------------------------------- /src/components/AppBadge/AppBadgePopover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppBadge/AppBadgePopover.js -------------------------------------------------------------------------------- /src/components/AppBadge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppBadge/README.md -------------------------------------------------------------------------------- /src/components/AppBadge/assets/app-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppBadge/assets/app-default.svg -------------------------------------------------------------------------------- /src/components/AppView/AppBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppView/AppBar.js -------------------------------------------------------------------------------- /src/components/AppView/AppBar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppView/AppBar.md -------------------------------------------------------------------------------- /src/components/AppView/AppView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppView/AppView.js -------------------------------------------------------------------------------- /src/components/AppView/AppView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppView/AppView.md -------------------------------------------------------------------------------- /src/components/AppView/assets/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppView/assets/chevron.svg -------------------------------------------------------------------------------- /src/components/AppView/assets/logo-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AppView/assets/logo-background.svg -------------------------------------------------------------------------------- /src/components/AutoComplete/AutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AutoComplete/AutoComplete.js -------------------------------------------------------------------------------- /src/components/AutoComplete/AutoCompleteSelected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AutoComplete/AutoCompleteSelected.js -------------------------------------------------------------------------------- /src/components/AutoComplete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/AutoComplete/README.md -------------------------------------------------------------------------------- /src/components/BackButton/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BackButton/BackButton.js -------------------------------------------------------------------------------- /src/components/BackButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BackButton/README.md -------------------------------------------------------------------------------- /src/components/Badge/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Badge/Badge.js -------------------------------------------------------------------------------- /src/components/Badge/Badge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Badge/Badge.test.js -------------------------------------------------------------------------------- /src/components/BadgeBase/BadgeBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BadgeBase/BadgeBase.js -------------------------------------------------------------------------------- /src/components/BadgeBase/BadgePopoverActionType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BadgeBase/BadgePopoverActionType.js -------------------------------------------------------------------------------- /src/components/BadgeBase/BadgePopoverBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BadgeBase/BadgePopoverBase.js -------------------------------------------------------------------------------- /src/components/Bar/Bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Bar/Bar.js -------------------------------------------------------------------------------- /src/components/Bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Bar/README.md -------------------------------------------------------------------------------- /src/components/BaseStyles/BaseStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BaseStyles/BaseStyles.js -------------------------------------------------------------------------------- /src/components/BaseStyles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BaseStyles/README.md -------------------------------------------------------------------------------- /src/components/BaseStyles/assets/overpass-mono/overpass-mono-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BaseStyles/assets/overpass-mono/overpass-mono-light.woff2 -------------------------------------------------------------------------------- /src/components/BaseStyles/assets/overpass/overpass-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BaseStyles/assets/overpass/overpass-light.woff2 -------------------------------------------------------------------------------- /src/components/BaseStyles/assets/overpass/overpass-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BaseStyles/assets/overpass/overpass-regular.woff2 -------------------------------------------------------------------------------- /src/components/BaseStyles/assets/overpass/overpass-semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/BaseStyles/assets/overpass/overpass-semibold.woff2 -------------------------------------------------------------------------------- /src/components/Box/Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Box/Box.js -------------------------------------------------------------------------------- /src/components/Box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Box/README.md -------------------------------------------------------------------------------- /src/components/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/Button.js -------------------------------------------------------------------------------- /src/components/Button/Button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/Button.test.js -------------------------------------------------------------------------------- /src/components/Button/ButtonIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/ButtonIcon.js -------------------------------------------------------------------------------- /src/components/Button/ButtonText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/ButtonText.js -------------------------------------------------------------------------------- /src/components/Button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/README.md -------------------------------------------------------------------------------- /src/components/Button/assets/check-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/assets/check-white.svg -------------------------------------------------------------------------------- /src/components/Button/assets/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/assets/check.svg -------------------------------------------------------------------------------- /src/components/Button/assets/cross-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/assets/cross-white.svg -------------------------------------------------------------------------------- /src/components/Button/assets/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Button/assets/cross.svg -------------------------------------------------------------------------------- /src/components/ButtonBase/ButtonBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ButtonBase/ButtonBase.js -------------------------------------------------------------------------------- /src/components/ButtonBase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ButtonBase/README.md -------------------------------------------------------------------------------- /src/components/Card/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Card/Card.js -------------------------------------------------------------------------------- /src/components/Card/Card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Card/Card.md -------------------------------------------------------------------------------- /src/components/Card/EmptyStateCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Card/EmptyStateCard.js -------------------------------------------------------------------------------- /src/components/Card/EmptyStateCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Card/EmptyStateCard.md -------------------------------------------------------------------------------- /src/components/Card/assets/empty-state-card-illustration-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Card/assets/empty-state-card-illustration-default.png -------------------------------------------------------------------------------- /src/components/CardLayout/CardLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/CardLayout/CardLayout.js -------------------------------------------------------------------------------- /src/components/CircleGraph/CircleGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/CircleGraph/CircleGraph.js -------------------------------------------------------------------------------- /src/components/CircleGraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/CircleGraph/README.md -------------------------------------------------------------------------------- /src/components/ContextMenu/ContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ContextMenu/ContextMenu.js -------------------------------------------------------------------------------- /src/components/ContextMenu/ContextMenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ContextMenu/ContextMenuItem.js -------------------------------------------------------------------------------- /src/components/ContextMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ContextMenu/README.md -------------------------------------------------------------------------------- /src/components/Countdown/Countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Countdown/Countdown.js -------------------------------------------------------------------------------- /src/components/Countdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Countdown/README.md -------------------------------------------------------------------------------- /src/components/DataView/DataView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/DataView.js -------------------------------------------------------------------------------- /src/components/DataView/EmptyState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/EmptyState.js -------------------------------------------------------------------------------- /src/components/DataView/ListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/ListView.js -------------------------------------------------------------------------------- /src/components/DataView/OpenedSurfaceBorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/OpenedSurfaceBorder.js -------------------------------------------------------------------------------- /src/components/DataView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/README.md -------------------------------------------------------------------------------- /src/components/DataView/TableView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/TableView.js -------------------------------------------------------------------------------- /src/components/DataView/ToggleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/ToggleButton.js -------------------------------------------------------------------------------- /src/components/DataView/assets/empty-state-illustration-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/assets/empty-state-illustration-blue.png -------------------------------------------------------------------------------- /src/components/DataView/assets/empty-state-illustration-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DataView/assets/empty-state-illustration-red.png -------------------------------------------------------------------------------- /src/components/DateRangePicker/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/DatePicker.js -------------------------------------------------------------------------------- /src/components/DateRangePicker/DateRangePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/DateRangePicker.js -------------------------------------------------------------------------------- /src/components/DateRangePicker/Labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/Labels.js -------------------------------------------------------------------------------- /src/components/DateRangePicker/MonthDay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/MonthDay.js -------------------------------------------------------------------------------- /src/components/DateRangePicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/README.md -------------------------------------------------------------------------------- /src/components/DateRangePicker/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/components.js -------------------------------------------------------------------------------- /src/components/DateRangePicker/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/consts.js -------------------------------------------------------------------------------- /src/components/DateRangePicker/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/utils.js -------------------------------------------------------------------------------- /src/components/DateRangePicker/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DateRangePicker/utils.test.js -------------------------------------------------------------------------------- /src/components/Details/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Details/Details.js -------------------------------------------------------------------------------- /src/components/Details/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Details/README.md -------------------------------------------------------------------------------- /src/components/DiscButton/DiscButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DiscButton/DiscButton.js -------------------------------------------------------------------------------- /src/components/Distribution/Distribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Distribution/Distribution.js -------------------------------------------------------------------------------- /src/components/Distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Distribution/README.md -------------------------------------------------------------------------------- /src/components/DropDown/DropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DropDown/DropDown.js -------------------------------------------------------------------------------- /src/components/DropDown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/DropDown/README.md -------------------------------------------------------------------------------- /src/components/EscapeOutside/EscapeOutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/EscapeOutside/EscapeOutside.js -------------------------------------------------------------------------------- /src/components/EscapeOutside/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/EscapeOutside/README.md -------------------------------------------------------------------------------- /src/components/EthIdenticon/EthIdenticon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/EthIdenticon/EthIdenticon.js -------------------------------------------------------------------------------- /src/components/EthIdenticon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/EthIdenticon/README.md -------------------------------------------------------------------------------- /src/components/Field/Field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Field/Field.js -------------------------------------------------------------------------------- /src/components/Field/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Field/README.md -------------------------------------------------------------------------------- /src/components/FloatIndicator/FloatIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/FloatIndicator/FloatIndicator.js -------------------------------------------------------------------------------- /src/components/FloatIndicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/FloatIndicator/README.md -------------------------------------------------------------------------------- /src/components/FocusVisible/FocusVisible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/FocusVisible/FocusVisible.js -------------------------------------------------------------------------------- /src/components/FocusVisible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/FocusVisible/README.md -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Header/README.md -------------------------------------------------------------------------------- /src/components/Help/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Help/Help.js -------------------------------------------------------------------------------- /src/components/Help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Help/README.md -------------------------------------------------------------------------------- /src/components/IdentityBadge/IdentityBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/IdentityBadge/IdentityBadge.js -------------------------------------------------------------------------------- /src/components/IdentityBadge/IdentityBadgePopover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/IdentityBadge/IdentityBadgePopover.js -------------------------------------------------------------------------------- /src/components/IdentityBadge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/IdentityBadge/README.md -------------------------------------------------------------------------------- /src/components/Info/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Info/Info.js -------------------------------------------------------------------------------- /src/components/Info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Info/README.md -------------------------------------------------------------------------------- /src/components/Input/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/Checkbox.js -------------------------------------------------------------------------------- /src/components/Input/Checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/Checkbox.md -------------------------------------------------------------------------------- /src/components/Input/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/Radio.js -------------------------------------------------------------------------------- /src/components/Input/Radio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/Radio.md -------------------------------------------------------------------------------- /src/components/Input/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/SearchInput.js -------------------------------------------------------------------------------- /src/components/Input/SearchInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/SearchInput.md -------------------------------------------------------------------------------- /src/components/Input/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/TextInput.js -------------------------------------------------------------------------------- /src/components/Input/TextInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Input/TextInput.md -------------------------------------------------------------------------------- /src/components/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Layout/Layout.js -------------------------------------------------------------------------------- /src/components/LineChart/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/LineChart/LineChart.js -------------------------------------------------------------------------------- /src/components/LineChart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/LineChart/README.md -------------------------------------------------------------------------------- /src/components/Link/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Link/Link.js -------------------------------------------------------------------------------- /src/components/Link/LinkDeprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Link/LinkDeprecated.js -------------------------------------------------------------------------------- /src/components/Link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Link/README.md -------------------------------------------------------------------------------- /src/components/LoadingRing/LoadingRing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/LoadingRing/LoadingRing.js -------------------------------------------------------------------------------- /src/components/LoadingRing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/LoadingRing/README.md -------------------------------------------------------------------------------- /src/components/Main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Main/Main.js -------------------------------------------------------------------------------- /src/components/Main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Main/README.md -------------------------------------------------------------------------------- /src/components/Markdown/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Markdown/Markdown.js -------------------------------------------------------------------------------- /src/components/Markdown/NormalizedHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Markdown/NormalizedHtml.js -------------------------------------------------------------------------------- /src/components/Markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Markdown/README.md -------------------------------------------------------------------------------- /src/components/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Modal/Modal.js -------------------------------------------------------------------------------- /src/components/Modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Modal/README.md -------------------------------------------------------------------------------- /src/components/NavigationBar/LeftIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/NavigationBar/LeftIcon.js -------------------------------------------------------------------------------- /src/components/NavigationBar/NavigationBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/NavigationBar/NavigationBar.js -------------------------------------------------------------------------------- /src/components/NavigationBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/NavigationBar/README.md -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Pagination/Pagination.js -------------------------------------------------------------------------------- /src/components/Pagination/PaginationItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Pagination/PaginationItem.js -------------------------------------------------------------------------------- /src/components/Pagination/PaginationSeparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Pagination/PaginationSeparator.js -------------------------------------------------------------------------------- /src/components/Pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Pagination/README.md -------------------------------------------------------------------------------- /src/components/PartitionBar/PartitionBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/PartitionBar/PartitionBar.js -------------------------------------------------------------------------------- /src/components/Popover/Popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Popover/Popover.js -------------------------------------------------------------------------------- /src/components/Popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Popover/README.md -------------------------------------------------------------------------------- /src/components/ProgressBar/ProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ProgressBar/ProgressBar.js -------------------------------------------------------------------------------- /src/components/ProgressBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ProgressBar/README.md -------------------------------------------------------------------------------- /src/components/Radio/RadioGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Radio/RadioGroup.js -------------------------------------------------------------------------------- /src/components/Radio/RadioGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Radio/RadioGroup.md -------------------------------------------------------------------------------- /src/components/Radio/RadioList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Radio/RadioList.js -------------------------------------------------------------------------------- /src/components/Radio/RadioList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Radio/RadioList.md -------------------------------------------------------------------------------- /src/components/Radio/RadioListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Radio/RadioListItem.js -------------------------------------------------------------------------------- /src/components/RootPortal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/RootPortal/README.md -------------------------------------------------------------------------------- /src/components/RootPortal/RootPortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/RootPortal/RootPortal.js -------------------------------------------------------------------------------- /src/components/ScrollView/ScrollView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ScrollView/ScrollView.js -------------------------------------------------------------------------------- /src/components/SidePanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/SidePanel/README.md -------------------------------------------------------------------------------- /src/components/SidePanel/SidePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/SidePanel/SidePanel.js -------------------------------------------------------------------------------- /src/components/SidePanel/SidePanelSeparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/SidePanel/SidePanelSeparator.js -------------------------------------------------------------------------------- /src/components/SidePanel/SidePanelSplit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/SidePanel/SidePanelSplit.js -------------------------------------------------------------------------------- /src/components/Slider/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Slider/Slider.js -------------------------------------------------------------------------------- /src/components/Slider/Slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Slider/Slider.md -------------------------------------------------------------------------------- /src/components/Split/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Split/README.md -------------------------------------------------------------------------------- /src/components/Split/Split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Split/Split.js -------------------------------------------------------------------------------- /src/components/Switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Switch/README.md -------------------------------------------------------------------------------- /src/components/Switch/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Switch/Switch.js -------------------------------------------------------------------------------- /src/components/SyncIndicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/SyncIndicator/README.md -------------------------------------------------------------------------------- /src/components/SyncIndicator/SyncIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/SyncIndicator/SyncIndicator.js -------------------------------------------------------------------------------- /src/components/Table/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Table/Table.js -------------------------------------------------------------------------------- /src/components/Table/Table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Table/Table.md -------------------------------------------------------------------------------- /src/components/Table/TableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Table/TableCell.js -------------------------------------------------------------------------------- /src/components/Table/TableHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Table/TableHeader.js -------------------------------------------------------------------------------- /src/components/Table/TableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Table/TableRow.js -------------------------------------------------------------------------------- /src/components/Tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Tabs/README.md -------------------------------------------------------------------------------- /src/components/Tabs/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Tabs/Tab.js -------------------------------------------------------------------------------- /src/components/Tabs/TabBarLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Tabs/TabBarLegacy.js -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Tabs/Tabs.js -------------------------------------------------------------------------------- /src/components/Tabs/TabsFullWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Tabs/TabsFullWidth.js -------------------------------------------------------------------------------- /src/components/Tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Tag/README.md -------------------------------------------------------------------------------- /src/components/Tag/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Tag/Tag.js -------------------------------------------------------------------------------- /src/components/Text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Text/README.md -------------------------------------------------------------------------------- /src/components/Text/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Text/Text.js -------------------------------------------------------------------------------- /src/components/TextCopy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TextCopy/README.md -------------------------------------------------------------------------------- /src/components/TextCopy/TextCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TextCopy/TextCopy.js -------------------------------------------------------------------------------- /src/components/Timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Timer/README.md -------------------------------------------------------------------------------- /src/components/Timer/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/Timer/Timer.js -------------------------------------------------------------------------------- /src/components/ToastHub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ToastHub/README.md -------------------------------------------------------------------------------- /src/components/ToastHub/ToastHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/ToastHub/ToastHub.js -------------------------------------------------------------------------------- /src/components/TokenAmount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TokenAmount/README.md -------------------------------------------------------------------------------- /src/components/TokenAmount/TokenAmount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TokenAmount/TokenAmount.js -------------------------------------------------------------------------------- /src/components/TokenBadge/TokenBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TokenBadge/TokenBadge.js -------------------------------------------------------------------------------- /src/components/TokenBadge/TokenBadgePopover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TokenBadge/TokenBadgePopover.js -------------------------------------------------------------------------------- /src/components/TransactionBadge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TransactionBadge/README.md -------------------------------------------------------------------------------- /src/components/TransactionBadge/TransactionBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TransactionBadge/TransactionBadge.js -------------------------------------------------------------------------------- /src/components/TransactionProgress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TransactionProgress/README.md -------------------------------------------------------------------------------- /src/components/TransactionProgress/TransactionProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/TransactionProgress/TransactionProgress.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/index.js -------------------------------------------------------------------------------- /src/hooks/useArrowKeysFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/useArrowKeysFocus.js -------------------------------------------------------------------------------- /src/hooks/useClickOutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/useClickOutside.js -------------------------------------------------------------------------------- /src/hooks/useFocusEnter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/useFocusEnter.js -------------------------------------------------------------------------------- /src/hooks/useFocusLeave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/useFocusLeave.js -------------------------------------------------------------------------------- /src/hooks/useImageExists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/useImageExists.js -------------------------------------------------------------------------------- /src/hooks/useKeyDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/useKeyDown.js -------------------------------------------------------------------------------- /src/hooks/useOnBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/hooks/useOnBlur.js -------------------------------------------------------------------------------- /src/icons/IconPropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/IconPropTypes.js -------------------------------------------------------------------------------- /src/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/README.md -------------------------------------------------------------------------------- /src/icons/components/IconAddUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAddUser.js -------------------------------------------------------------------------------- /src/icons/components/IconAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAlert.js -------------------------------------------------------------------------------- /src/icons/components/IconAlignCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAlignCenter.js -------------------------------------------------------------------------------- /src/icons/components/IconAlignJustify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAlignJustify.js -------------------------------------------------------------------------------- /src/icons/components/IconAlignLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAlignLeft.js -------------------------------------------------------------------------------- /src/icons/components/IconAlignRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAlignRight.js -------------------------------------------------------------------------------- /src/icons/components/IconAragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAragon.js -------------------------------------------------------------------------------- /src/icons/components/IconArrowDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconArrowDown.js -------------------------------------------------------------------------------- /src/icons/components/IconArrowLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconArrowLeft.js -------------------------------------------------------------------------------- /src/icons/components/IconArrowRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconArrowRight.js -------------------------------------------------------------------------------- /src/icons/components/IconArrowUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconArrowUp.js -------------------------------------------------------------------------------- /src/icons/components/IconAtSign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconAtSign.js -------------------------------------------------------------------------------- /src/icons/components/IconBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconBlock.js -------------------------------------------------------------------------------- /src/icons/components/IconBookmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconBookmark.js -------------------------------------------------------------------------------- /src/icons/components/IconCalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCalendar.js -------------------------------------------------------------------------------- /src/icons/components/IconCanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCanvas.js -------------------------------------------------------------------------------- /src/icons/components/IconCaution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCaution.js -------------------------------------------------------------------------------- /src/icons/components/IconCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCenter.js -------------------------------------------------------------------------------- /src/icons/components/IconChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconChart.js -------------------------------------------------------------------------------- /src/icons/components/IconChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconChat.js -------------------------------------------------------------------------------- /src/icons/components/IconCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCheck.js -------------------------------------------------------------------------------- /src/icons/components/IconChip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconChip.js -------------------------------------------------------------------------------- /src/icons/components/IconCircleCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCircleCheck.js -------------------------------------------------------------------------------- /src/icons/components/IconCircleMinus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCircleMinus.js -------------------------------------------------------------------------------- /src/icons/components/IconCirclePlus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCirclePlus.js -------------------------------------------------------------------------------- /src/icons/components/IconClock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconClock.js -------------------------------------------------------------------------------- /src/icons/components/IconCloudDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCloudDownload.js -------------------------------------------------------------------------------- /src/icons/components/IconCloudUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCloudUpload.js -------------------------------------------------------------------------------- /src/icons/components/IconCoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCoin.js -------------------------------------------------------------------------------- /src/icons/components/IconConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconConfiguration.js -------------------------------------------------------------------------------- /src/icons/components/IconConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconConnect.js -------------------------------------------------------------------------------- /src/icons/components/IconConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconConnection.js -------------------------------------------------------------------------------- /src/icons/components/IconConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconConsole.js -------------------------------------------------------------------------------- /src/icons/components/IconCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCopy.js -------------------------------------------------------------------------------- /src/icons/components/IconCross.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconCross.js -------------------------------------------------------------------------------- /src/icons/components/IconDashedSquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconDashedSquare.js -------------------------------------------------------------------------------- /src/icons/components/IconDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconDown.js -------------------------------------------------------------------------------- /src/icons/components/IconDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconDownload.js -------------------------------------------------------------------------------- /src/icons/components/IconEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconEdit.js -------------------------------------------------------------------------------- /src/icons/components/IconEllipsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconEllipsis.js -------------------------------------------------------------------------------- /src/icons/components/IconEnter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconEnter.js -------------------------------------------------------------------------------- /src/icons/components/IconEthereum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconEthereum.js -------------------------------------------------------------------------------- /src/icons/components/IconExternal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconExternal.js -------------------------------------------------------------------------------- /src/icons/components/IconFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconFile.js -------------------------------------------------------------------------------- /src/icons/components/IconFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconFilter.js -------------------------------------------------------------------------------- /src/icons/components/IconFlag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconFlag.js -------------------------------------------------------------------------------- /src/icons/components/IconFolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconFolder.js -------------------------------------------------------------------------------- /src/icons/components/IconGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconGraph.js -------------------------------------------------------------------------------- /src/icons/components/IconGraph2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconGraph2.js -------------------------------------------------------------------------------- /src/icons/components/IconGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconGrid.js -------------------------------------------------------------------------------- /src/icons/components/IconGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconGroup.js -------------------------------------------------------------------------------- /src/icons/components/IconHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconHash.js -------------------------------------------------------------------------------- /src/icons/components/IconHeart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconHeart.js -------------------------------------------------------------------------------- /src/icons/components/IconHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconHide.js -------------------------------------------------------------------------------- /src/icons/components/IconHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconHome.js -------------------------------------------------------------------------------- /src/icons/components/IconImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconImage.js -------------------------------------------------------------------------------- /src/icons/components/IconInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconInfo.js -------------------------------------------------------------------------------- /src/icons/components/IconLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconLabel.js -------------------------------------------------------------------------------- /src/icons/components/IconLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconLayers.js -------------------------------------------------------------------------------- /src/icons/components/IconLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconLeft.js -------------------------------------------------------------------------------- /src/icons/components/IconLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconLink.js -------------------------------------------------------------------------------- /src/icons/components/IconLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconLocation.js -------------------------------------------------------------------------------- /src/icons/components/IconLock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconLock.js -------------------------------------------------------------------------------- /src/icons/components/IconMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconMail.js -------------------------------------------------------------------------------- /src/icons/components/IconMaximize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconMaximize.js -------------------------------------------------------------------------------- /src/icons/components/IconMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconMenu.js -------------------------------------------------------------------------------- /src/icons/components/IconMinimize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconMinimize.js -------------------------------------------------------------------------------- /src/icons/components/IconMinus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconMinus.js -------------------------------------------------------------------------------- /src/icons/components/IconMove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconMove.js -------------------------------------------------------------------------------- /src/icons/components/IconNoPicture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconNoPicture.js -------------------------------------------------------------------------------- /src/icons/components/IconPicture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconPicture.js -------------------------------------------------------------------------------- /src/icons/components/IconPlus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconPlus.js -------------------------------------------------------------------------------- /src/icons/components/IconPower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconPower.js -------------------------------------------------------------------------------- /src/icons/components/IconPrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconPrint.js -------------------------------------------------------------------------------- /src/icons/components/IconProhibited.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconProhibited.js -------------------------------------------------------------------------------- /src/icons/components/IconQuestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconQuestion.js -------------------------------------------------------------------------------- /src/icons/components/IconRefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconRefresh.js -------------------------------------------------------------------------------- /src/icons/components/IconRemoveUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconRemoveUser.js -------------------------------------------------------------------------------- /src/icons/components/IconRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconRight.js -------------------------------------------------------------------------------- /src/icons/components/IconRotateLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconRotateLeft.js -------------------------------------------------------------------------------- /src/icons/components/IconRotateRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconRotateRight.js -------------------------------------------------------------------------------- /src/icons/components/IconSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconSearch.js -------------------------------------------------------------------------------- /src/icons/components/IconSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconSettings.js -------------------------------------------------------------------------------- /src/icons/components/IconShare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconShare.js -------------------------------------------------------------------------------- /src/icons/components/IconSquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconSquare.js -------------------------------------------------------------------------------- /src/icons/components/IconSquareMinus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconSquareMinus.js -------------------------------------------------------------------------------- /src/icons/components/IconSquarePlus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconSquarePlus.js -------------------------------------------------------------------------------- /src/icons/components/IconStar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconStar.js -------------------------------------------------------------------------------- /src/icons/components/IconStarFilled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconStarFilled.js -------------------------------------------------------------------------------- /src/icons/components/IconSwap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconSwap.js -------------------------------------------------------------------------------- /src/icons/components/IconTarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconTarget.js -------------------------------------------------------------------------------- /src/icons/components/IconToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconToken.js -------------------------------------------------------------------------------- /src/icons/components/IconTrash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconTrash.js -------------------------------------------------------------------------------- /src/icons/components/IconUnlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconUnlock.js -------------------------------------------------------------------------------- /src/icons/components/IconUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconUp.js -------------------------------------------------------------------------------- /src/icons/components/IconUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconUpload.js -------------------------------------------------------------------------------- /src/icons/components/IconUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconUser.js -------------------------------------------------------------------------------- /src/icons/components/IconView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconView.js -------------------------------------------------------------------------------- /src/icons/components/IconVote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconVote.js -------------------------------------------------------------------------------- /src/icons/components/IconWallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconWallet.js -------------------------------------------------------------------------------- /src/icons/components/IconWarning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconWarning.js -------------------------------------------------------------------------------- /src/icons/components/IconWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconWorld.js -------------------------------------------------------------------------------- /src/icons/components/IconWrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconWrite.js -------------------------------------------------------------------------------- /src/icons/components/IconZoomIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconZoomIn.js -------------------------------------------------------------------------------- /src/icons/components/IconZoomOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/IconZoomOut.js -------------------------------------------------------------------------------- /src/icons/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/components/index.js -------------------------------------------------------------------------------- /src/icons/icon-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/icon-size.js -------------------------------------------------------------------------------- /src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/index.js -------------------------------------------------------------------------------- /src/icons/svg/add-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/add-user.svg -------------------------------------------------------------------------------- /src/icons/svg/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/alert.svg -------------------------------------------------------------------------------- /src/icons/svg/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/align-center.svg -------------------------------------------------------------------------------- /src/icons/svg/align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/align-justify.svg -------------------------------------------------------------------------------- /src/icons/svg/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/align-left.svg -------------------------------------------------------------------------------- /src/icons/svg/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/align-right.svg -------------------------------------------------------------------------------- /src/icons/svg/aragon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/aragon.svg -------------------------------------------------------------------------------- /src/icons/svg/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/arrow-down.svg -------------------------------------------------------------------------------- /src/icons/svg/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/arrow-left.svg -------------------------------------------------------------------------------- /src/icons/svg/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/arrow-right.svg -------------------------------------------------------------------------------- /src/icons/svg/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/arrow-up.svg -------------------------------------------------------------------------------- /src/icons/svg/at-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/at-sign.svg -------------------------------------------------------------------------------- /src/icons/svg/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/block.svg -------------------------------------------------------------------------------- /src/icons/svg/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/bookmark.svg -------------------------------------------------------------------------------- /src/icons/svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/calendar.svg -------------------------------------------------------------------------------- /src/icons/svg/canvas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/canvas.svg -------------------------------------------------------------------------------- /src/icons/svg/caution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/caution.svg -------------------------------------------------------------------------------- /src/icons/svg/center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/center.svg -------------------------------------------------------------------------------- /src/icons/svg/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/chart.svg -------------------------------------------------------------------------------- /src/icons/svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/chat.svg -------------------------------------------------------------------------------- /src/icons/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/check.svg -------------------------------------------------------------------------------- /src/icons/svg/chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/chip.svg -------------------------------------------------------------------------------- /src/icons/svg/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/circle-check.svg -------------------------------------------------------------------------------- /src/icons/svg/circle-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/circle-minus.svg -------------------------------------------------------------------------------- /src/icons/svg/circle-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/circle-plus.svg -------------------------------------------------------------------------------- /src/icons/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/clock.svg -------------------------------------------------------------------------------- /src/icons/svg/cloud-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/cloud-download.svg -------------------------------------------------------------------------------- /src/icons/svg/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/cloud-upload.svg -------------------------------------------------------------------------------- /src/icons/svg/coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/coin.svg -------------------------------------------------------------------------------- /src/icons/svg/configuration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/configuration.svg -------------------------------------------------------------------------------- /src/icons/svg/connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/connect.svg -------------------------------------------------------------------------------- /src/icons/svg/connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/connection.svg -------------------------------------------------------------------------------- /src/icons/svg/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/console.svg -------------------------------------------------------------------------------- /src/icons/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/copy.svg -------------------------------------------------------------------------------- /src/icons/svg/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/cross.svg -------------------------------------------------------------------------------- /src/icons/svg/dashed-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/dashed-square.svg -------------------------------------------------------------------------------- /src/icons/svg/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/down.svg -------------------------------------------------------------------------------- /src/icons/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/download.svg -------------------------------------------------------------------------------- /src/icons/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/edit.svg -------------------------------------------------------------------------------- /src/icons/svg/ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/ellipsis.svg -------------------------------------------------------------------------------- /src/icons/svg/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/enter.svg -------------------------------------------------------------------------------- /src/icons/svg/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/ethereum.svg -------------------------------------------------------------------------------- /src/icons/svg/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/external.svg -------------------------------------------------------------------------------- /src/icons/svg/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/file.svg -------------------------------------------------------------------------------- /src/icons/svg/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/filter.svg -------------------------------------------------------------------------------- /src/icons/svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/flag.svg -------------------------------------------------------------------------------- /src/icons/svg/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/folder.svg -------------------------------------------------------------------------------- /src/icons/svg/graph-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/graph-2.svg -------------------------------------------------------------------------------- /src/icons/svg/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/graph.svg -------------------------------------------------------------------------------- /src/icons/svg/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/grid.svg -------------------------------------------------------------------------------- /src/icons/svg/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/group.svg -------------------------------------------------------------------------------- /src/icons/svg/hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/hash.svg -------------------------------------------------------------------------------- /src/icons/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/heart.svg -------------------------------------------------------------------------------- /src/icons/svg/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/hide.svg -------------------------------------------------------------------------------- /src/icons/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/home.svg -------------------------------------------------------------------------------- /src/icons/svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/image.svg -------------------------------------------------------------------------------- /src/icons/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/info.svg -------------------------------------------------------------------------------- /src/icons/svg/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/label.svg -------------------------------------------------------------------------------- /src/icons/svg/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/layers.svg -------------------------------------------------------------------------------- /src/icons/svg/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/left.svg -------------------------------------------------------------------------------- /src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/link.svg -------------------------------------------------------------------------------- /src/icons/svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/location.svg -------------------------------------------------------------------------------- /src/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/lock.svg -------------------------------------------------------------------------------- /src/icons/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/mail.svg -------------------------------------------------------------------------------- /src/icons/svg/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/maximize.svg -------------------------------------------------------------------------------- /src/icons/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/menu.svg -------------------------------------------------------------------------------- /src/icons/svg/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/minimize.svg -------------------------------------------------------------------------------- /src/icons/svg/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/minus.svg -------------------------------------------------------------------------------- /src/icons/svg/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/move.svg -------------------------------------------------------------------------------- /src/icons/svg/no-picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/no-picture.svg -------------------------------------------------------------------------------- /src/icons/svg/picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/picture.svg -------------------------------------------------------------------------------- /src/icons/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/plus.svg -------------------------------------------------------------------------------- /src/icons/svg/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/power.svg -------------------------------------------------------------------------------- /src/icons/svg/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/print.svg -------------------------------------------------------------------------------- /src/icons/svg/prohibited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/prohibited.svg -------------------------------------------------------------------------------- /src/icons/svg/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/question.svg -------------------------------------------------------------------------------- /src/icons/svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/refresh.svg -------------------------------------------------------------------------------- /src/icons/svg/remove-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/remove-user.svg -------------------------------------------------------------------------------- /src/icons/svg/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/right.svg -------------------------------------------------------------------------------- /src/icons/svg/rotate-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/rotate-left.svg -------------------------------------------------------------------------------- /src/icons/svg/rotate-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/rotate-right.svg -------------------------------------------------------------------------------- /src/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/search.svg -------------------------------------------------------------------------------- /src/icons/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/settings.svg -------------------------------------------------------------------------------- /src/icons/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/share.svg -------------------------------------------------------------------------------- /src/icons/svg/square-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/square-minus.svg -------------------------------------------------------------------------------- /src/icons/svg/square-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/square-plus.svg -------------------------------------------------------------------------------- /src/icons/svg/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/square.svg -------------------------------------------------------------------------------- /src/icons/svg/star-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/star-filled.svg -------------------------------------------------------------------------------- /src/icons/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/star.svg -------------------------------------------------------------------------------- /src/icons/svg/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/swap.svg -------------------------------------------------------------------------------- /src/icons/svg/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/target.svg -------------------------------------------------------------------------------- /src/icons/svg/token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/token.svg -------------------------------------------------------------------------------- /src/icons/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/trash.svg -------------------------------------------------------------------------------- /src/icons/svg/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/unlock.svg -------------------------------------------------------------------------------- /src/icons/svg/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/up.svg -------------------------------------------------------------------------------- /src/icons/svg/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/upload.svg -------------------------------------------------------------------------------- /src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/user.svg -------------------------------------------------------------------------------- /src/icons/svg/view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/view.svg -------------------------------------------------------------------------------- /src/icons/svg/vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/vote.svg -------------------------------------------------------------------------------- /src/icons/svg/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/wallet.svg -------------------------------------------------------------------------------- /src/icons/svg/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/warning.svg -------------------------------------------------------------------------------- /src/icons/svg/world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/world.svg -------------------------------------------------------------------------------- /src/icons/svg/write.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/write.svg -------------------------------------------------------------------------------- /src/icons/svg/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/zoom-in.svg -------------------------------------------------------------------------------- /src/icons/svg/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/icons/svg/zoom-out.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/cached-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/lib/cached-map.js -------------------------------------------------------------------------------- /src/proptypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/proptypes.js -------------------------------------------------------------------------------- /src/providers/PublicUrl/PublicUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/PublicUrl/PublicUrl.js -------------------------------------------------------------------------------- /src/providers/PublicUrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/PublicUrl/README.md -------------------------------------------------------------------------------- /src/providers/PublicUrl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/PublicUrl/index.js -------------------------------------------------------------------------------- /src/providers/Redraw/Redraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Redraw/Redraw.js -------------------------------------------------------------------------------- /src/providers/Redraw/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Redraw/index.js -------------------------------------------------------------------------------- /src/providers/RedrawFromDate/RedrawFromDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/RedrawFromDate/RedrawFromDate.js -------------------------------------------------------------------------------- /src/providers/RedrawFromDate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/RedrawFromDate/index.js -------------------------------------------------------------------------------- /src/providers/Root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Root/README.md -------------------------------------------------------------------------------- /src/providers/Root/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Root/Root.js -------------------------------------------------------------------------------- /src/providers/Root/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Root/index.js -------------------------------------------------------------------------------- /src/providers/Viewport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Viewport/README.md -------------------------------------------------------------------------------- /src/providers/Viewport/Viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Viewport/Viewport.js -------------------------------------------------------------------------------- /src/providers/Viewport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/Viewport/index.js -------------------------------------------------------------------------------- /src/providers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/index.js -------------------------------------------------------------------------------- /src/providers/observe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/observe/README.md -------------------------------------------------------------------------------- /src/providers/observe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/observe/index.js -------------------------------------------------------------------------------- /src/providers/observe/observe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/providers/observe/observe.js -------------------------------------------------------------------------------- /src/style/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/style/breakpoints.js -------------------------------------------------------------------------------- /src/style/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/style/constants.js -------------------------------------------------------------------------------- /src/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/style/index.js -------------------------------------------------------------------------------- /src/style/springs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/style/springs.js -------------------------------------------------------------------------------- /src/style/text-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/style/text-styles.js -------------------------------------------------------------------------------- /src/theme-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme-legacy/README.md -------------------------------------------------------------------------------- /src/theme-legacy/aragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme-legacy/aragon.js -------------------------------------------------------------------------------- /src/theme-legacy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme-legacy/index.js -------------------------------------------------------------------------------- /src/theme-legacy/palettes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme-legacy/palettes.js -------------------------------------------------------------------------------- /src/theme/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme/Theme.js -------------------------------------------------------------------------------- /src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme/index.js -------------------------------------------------------------------------------- /src/theme/theme-dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme/theme-dark.js -------------------------------------------------------------------------------- /src/theme/theme-light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/theme/theme-light.js -------------------------------------------------------------------------------- /src/utils/characters.js: -------------------------------------------------------------------------------- 1 | export const NO_BREAK_SPACE = '\u00a0' 2 | -------------------------------------------------------------------------------- /src/utils/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/color.js -------------------------------------------------------------------------------- /src/utils/color.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/color.test.js -------------------------------------------------------------------------------- /src/utils/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/components.js -------------------------------------------------------------------------------- /src/utils/contains-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/contains-component.js -------------------------------------------------------------------------------- /src/utils/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/css.js -------------------------------------------------------------------------------- /src/utils/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/date.js -------------------------------------------------------------------------------- /src/utils/date.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/date.test.js -------------------------------------------------------------------------------- /src/utils/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/environment.js -------------------------------------------------------------------------------- /src/utils/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/font.js -------------------------------------------------------------------------------- /src/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/format.js -------------------------------------------------------------------------------- /src/utils/format.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/format.test.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/keycodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/keycodes.js -------------------------------------------------------------------------------- /src/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/math.js -------------------------------------------------------------------------------- /src/utils/math.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/math.test.js -------------------------------------------------------------------------------- /src/utils/miscellaneous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/miscellaneous.js -------------------------------------------------------------------------------- /src/utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/url.js -------------------------------------------------------------------------------- /src/utils/web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/utils/web3.js -------------------------------------------------------------------------------- /src/vendor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/src/vendor/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/ui/HEAD/yarn.lock --------------------------------------------------------------------------------