Browse Source

fix: IconButton, search styles

feat/mainnet-updates
Thomas Osmonson 4 years ago
parent
commit
8e7bdbf4a4
  1. 19
      package.json
  2. 17
      src/components/color-mode-button.tsx
  3. 18
      src/components/header.tsx
  4. 2
      src/components/icons/dark-mode.tsx
  5. 38
      src/components/icons/magnifying-glass.tsx
  6. 11
      src/components/mdx/overrides.tsx
  7. 19
      src/components/search-button.tsx
  8. 419
      yarn.lock

19
package.json

@ -7,28 +7,29 @@
"dependencies": { "dependencies": {
"@docsearch/css": "^1.0.0-alpha.27", "@docsearch/css": "^1.0.0-alpha.27",
"@docsearch/react": "^1.0.0-alpha.27", "@docsearch/react": "^1.0.0-alpha.27",
"@emotion/babel-plugin": "^11.0.0-next.17", "@emotion/babel-plugin": "^11.1.2",
"@emotion/babel-preset-css-prop": "^11.0.0-next.10", "@emotion/babel-preset-css-prop": "^11.0.0-next.10",
"@emotion/cache": "^11.0.0-next.16", "@emotion/cache": "^11.0.0-next.16",
"@emotion/core": "^11.0.0-next.10", "@emotion/core": "^11.0.0-next.10",
"@emotion/css": "^11.0.0-next.17", "@emotion/css": "^11.0.0-next.17",
"@emotion/react": "^11.0.0-next.17", "@emotion/react": "^11.1.2",
"@emotion/server": "^11.0.0-next.17", "@emotion/server": "^11.0.0-next.17",
"@hashicorp/remark-plugins": "^3.0.0", "@hashicorp/remark-plugins": "^3.0.0",
"@mdx-js/loader": "1.6.21", "@mdx-js/loader": "1.6.22",
"@mdx-js/mdx": "^1.6.16", "@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22", "@mdx-js/react": "^1.6.22",
"@next/mdx": "^10.0.3", "@next/mdx": "^10.0.3",
"@reach/accordion": "^0.12.1", "@reach/accordion": "^0.12.1",
"@reach/tooltip": "^0.12.1", "@reach/tooltip": "^0.12.1",
"@stacks/ui": "^6.0.0", "@stacks/ui": "^7.0.0",
"@stacks/ui-core": "^6.0.0", "@stacks/ui-core": "^7.0.0",
"@styled-system/theme-get": "^5.1.2", "@styled-system/theme-get": "^5.1.2",
"@tabler/icons": "^1.37.0",
"@types/mdx-js__react": "^1.5.2", "@types/mdx-js__react": "^1.5.2",
"@types/node": "^14.10.1", "@types/node": "^14.10.1",
"@types/nprogress": "^0.2.0", "@types/nprogress": "^0.2.0",
"@types/reach__tooltip": "^0.2.0", "@types/reach__tooltip": "^0.2.0",
"algoliasearch": "^4.5.1", "algoliasearch": "^4.8.3",
"babel-plugin-macros": "^3.0.0", "babel-plugin-macros": "^3.0.0",
"cache-manager": "^3.4.0", "cache-manager": "^3.4.0",
"cache-manager-fs-hash": "^0.0.9", "cache-manager-fs-hash": "^0.0.9",
@ -79,14 +80,14 @@
"remark-unwrap-images": "2.0.0", "remark-unwrap-images": "2.0.0",
"remark-vscode": "^1.0.0-beta.2", "remark-vscode": "^1.0.0-beta.2",
"strip-markdown": "^4.0.0", "strip-markdown": "^4.0.0",
"stylis": "^4.0.4", "stylis": "^4.0.6",
"swr": "^0.3.2", "swr": "^0.3.2",
"turndown": "^7.0.0", "turndown": "^7.0.0",
"typescript": "^4.0.2", "typescript": "^4.0.2",
"unified-vscode": "^1.0.0-beta.2", "unified-vscode": "^1.0.0-beta.2",
"unist-builder": "^2.0.3", "unist-builder": "^2.0.3",
"unist-util-is": "^4.0.2", "unist-util-is": "^4.0.2",
"unist-util-select": "^3.0.1", "unist-util-select": "^3.0.3",
"unist-util-visit": "^2.0.3", "unist-util-visit": "^2.0.3",
"use-events": "^1.4.2", "use-events": "^1.4.2",
"use-is-in-viewport": "^1.0.9", "use-is-in-viewport": "^1.0.9",

17
src/components/color-mode-button.tsx

@ -1,15 +1,20 @@
import React, { forwardRef, Ref } from 'react'; import React, { forwardRef, Ref } from 'react';
import { LinkProps } from '@components/typography'; import { LinkProps } from '@components/typography';
import { DarkModeIcon } from '@components/icons/dark-mode';
import { LightModeIcon } from '@components/icons/light-mode'; import { IconButton } from '@stacks/ui';
import { IconButton } from '@components/icon-button';
import { useColorMode } from '@common/hooks/use-color-mode'; import { useColorMode } from '@common/hooks/use-color-mode';
import { IconSun, IconSunOff } from '@tabler/icons';
export const ColorModeButton = forwardRef((props: LinkProps, ref: Ref<HTMLDivElement>) => { export const ColorModeButton = forwardRef((props: LinkProps, ref: Ref<HTMLDivElement>) => {
const [colorMode, toggleColorMode] = useColorMode(); const [colorMode, toggleColorMode] = useColorMode();
const Icon = colorMode === 'dark' ? IconSun : IconSunOff;
return ( return (
<IconButton onClick={toggleColorMode} title="Toggle color mode" px="base" {...props} ref={ref}> <IconButton
{colorMode === 'dark' ? <DarkModeIcon /> : <LightModeIcon />} onClick={toggleColorMode}
</IconButton> title="Toggle color mode"
icon={Icon}
ref={ref}
{...props}
/>
); );
}); });

18
src/components/header.tsx

@ -11,6 +11,7 @@ import {
Stack, Stack,
StacksLogo, StacksLogo,
StxInline, StxInline,
IconButton,
} from '@stacks/ui'; } from '@stacks/ui';
import { Link, LinkProps, Text } from '@components/typography'; import { Link, LinkProps, Text } from '@components/typography';
import MenuIcon from 'mdi-react/MenuIcon'; import MenuIcon from 'mdi-react/MenuIcon';
@ -26,7 +27,6 @@ import { border, transition } from '@common/utils';
import { getCapsizeStyles } from '@components/mdx/typography'; import { getCapsizeStyles } from '@components/mdx/typography';
import { useTouchable } from '@common/hooks/use-touchable'; import { useTouchable } from '@common/hooks/use-touchable';
import { useRouter } from 'next/router'; import { useRouter } from 'next/router';
import { IconButton } from './icon-button';
const MenuButton = ({ ...rest }: any) => { const MenuButton = ({ ...rest }: any) => {
const { isOpen, handleOpen, handleClose } = useMobileMenuState(); const { isOpen, handleOpen, handleClose } = useMobileMenuState();
@ -35,12 +35,10 @@ const MenuButton = ({ ...rest }: any) => {
return ( return (
<IconButton <IconButton
color="var(--colors-invert)" color="var(--colors-invert)"
display={['flex', 'flex', 'none']} display={['grid', 'grid', 'none']}
onClick={handleClick} onClick={handleClick}
px="base" icon={Icon}
> />
<Icon color="currentColor" />
</IconButton>
); );
}; };
@ -246,9 +244,11 @@ const Header = ({ hideSubBar, ...rest }: any) => {
<LogoLink /> <LogoLink />
<Flex alignItems="center"> <Flex alignItems="center">
<Navigation /> <Navigation />
<SearchButton /> <Stack isInline spacing="tight">
<ColorModeButton /> <SearchButton />
<MenuButton /> <ColorModeButton />
<MenuButton />
</Stack>
</Flex> </Flex>
</Flex> </Flex>
</Box> </Box>

2
src/components/icons/dark-mode.tsx

@ -2,7 +2,7 @@ import React from 'react';
import { Box, BoxProps } from '@stacks/ui'; import { Box, BoxProps } from '@stacks/ui';
export const DarkModeIcon = (props: BoxProps) => ( export const DarkModeIcon = (props: BoxProps) => (
<Box {...props}> <Box as="svg" {...props}>
<svg width="16" height="13" viewBox="0 0 16 13" fill="none"> <svg width="16" height="13" viewBox="0 0 16 13" fill="none">
<path <path
fillRule="evenodd" fillRule="evenodd"

38
src/components/icons/magnifying-glass.tsx

@ -1,24 +1,24 @@
import React from 'react'; import React from 'react';
import { Box, BoxProps } from '@stacks/ui'; import { Box, BoxProps } from '@stacks/ui';
import { forwardRefWithAs } from '@stacks/ui-core';
interface MagnifyingGlassProps extends BoxProps { export const MagnifyingGlass = forwardRefWithAs<BoxProps, 'svg'>(({ size, ...props }, ref) => (
size?: number; <Box
} as="svg"
position="relative"
export const MagnifyingGlass = ({ size = 16, ...props }: MagnifyingGlassProps) => ( display="block"
<Box position="relative" display="inline-block" {...props}> fill="none"
<svg viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg" color="currentColor"
width={size} width={size}
height={size} height={size}
fill="none" ref={ref}
viewBox="0 0 16 16" {...props}
> >
<path <path
fill="currentColor" fill="currentColor"
d="M4.818 9.765L2.28 12.303a1.001 1.001 0 001.416 1.416l2.538-2.538A5.005 5.005 0 104.82 9.766l-.001-.001zm4.176.243a3.003 3.003 0 110-6.007 3.003 3.003 0 010 6.007z" d="M4.818 9.765L2.28 12.303a1.001 1.001 0 001.416 1.416l2.538-2.538A5.005 5.005 0 104.82 9.766l-.001-.001zm4.176.243a3.003 3.003 0 110-6.007 3.003 3.003 0 010 6.007z"
/> />
</svg>
</Box> </Box>
); ));

11
src/components/mdx/overrides.tsx

@ -54,7 +54,7 @@ const GlobalStyles = (
--docsearch-searchbox-background: var(--ifm-color-emphasis-300); --docsearch-searchbox-background: var(--ifm-color-emphasis-300);
--docsearch-searchbox-focus-background: ${color('bg')}; --docsearch-searchbox-focus-background: ${color('bg')};
--docsearch-searchbox-shadow: inset 0px 0px 1px 1px ${color('border')}; --docsearch-searchbox-shadow: inset 0px 0px 1px 1px ${color('border')};
--docsearch-hit-color: var(--ifm-color-emphasis-800); --docsearch-hit-color: ${color('accent')};
--docsearch-hit-active-color: ${color('text-title')}; --docsearch-hit-active-color: ${color('text-title')};
--docsearch-hit-background: ${color('bg')}; --docsearch-hit-background: ${color('bg')};
--docsearch-hit-shadow: inset 0px 0px 1px 1px ${color('border')}; --docsearch-hit-shadow: inset 0px 0px 1px 1px ${color('border')};
@ -82,6 +82,9 @@ const GlobalStyles = (
.DocSearch-Reset:hover { .DocSearch-Reset:hover {
color: ${color('accent')}; color: ${color('accent')};
} }
.DocSearch-Cancel {
color: ${color('text-caption')};
}
.DocSearch-Form { .DocSearch-Form {
input { input {
color: ${color('text-title')}; color: ${color('text-title')};
@ -107,7 +110,11 @@ const GlobalStyles = (
.DocSearch-MagnifierLabel { .DocSearch-MagnifierLabel {
color: ${color('accent')}; color: ${color('accent')};
} }
@media (max-width: 750px) {
.DocSearch-Dropdown {
max-height: calc(100vh - 124px);
}
}
pre { pre {
display: inline-block; display: inline-block;
} }

19
src/components/search-button.tsx

@ -1,23 +1,22 @@
import React, { forwardRef, Ref } from 'react'; import React, { forwardRef, Ref } from 'react';
import { color } from '@stacks/ui'; import { IconButton } from '@stacks/ui';
import { LinkProps } from '@components/typography'; import { LinkProps } from '@components/typography';
import { IconButton } from '@components/icon-button';
import { useAppState } from '../common/hooks/use-app-state'; import { useAppState } from '@common/hooks/use-app-state';
import { MagnifyingGlass } from './icons/magnifying-glass'; import { MagnifyingGlass } from './icons/magnifying-glass';
export const SearchButton = forwardRef((props: LinkProps, ref: Ref<HTMLDivElement>) => { export const SearchButton = forwardRef((props: LinkProps, ref: Ref<HTMLDivElement>) => {
const { setState, searchModal } = useAppState(); const { setState } = useAppState();
return ( return (
<IconButton <IconButton
display={['grid', 'grid', 'none']}
onClick={() => setState(state => ({ ...state, searchModal: 'open' }))} onClick={() => setState(state => ({ ...state, searchModal: 'open' }))}
title="Search docs" title="Search docs"
px="base"
{...props}
ref={ref} ref={ref}
> iconSize="18px"
{searchModal} icon={MagnifyingGlass}
<MagnifyingGlass size={18} color={color('text-title')} /> {...props}
</IconButton> />
); );
}); });

419
yarn.lock

@ -9,22 +9,22 @@
dependencies: dependencies:
"@algolia/cache-common" "4.4.0" "@algolia/cache-common" "4.4.0"
"@algolia/cache-browser-local-storage@4.6.0": "@algolia/cache-browser-local-storage@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.6.0.tgz#79d825280f96ac5fc61df138a38aab3b658f3b65" resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.8.3.tgz#79cc502892c83f378b8f1a87f78020268806f5c3"
integrity sha512-3ObeNwZ5gfDvKPp9NXdtbBrCtz/yR1oyDu/AReG73Oanua3y30Y11p7VQzzpLe2R/gDCLOGdRgr17h11lGy1Hg== integrity sha512-Cwc03hikHSUI+xvgUdN+H+f6jFyoDsC9fegzXzJ2nPn1YSN9EXzDMBnbrgl0sbl9iLGXe0EIGMYqR2giCv1wMQ==
dependencies: dependencies:
"@algolia/cache-common" "4.6.0" "@algolia/cache-common" "4.8.3"
"@algolia/cache-common@4.4.0": "@algolia/cache-common@4.4.0":
version "4.4.0" version "4.4.0"
resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.4.0.tgz#bfe84790230f5d2de495238b29e9397c5ed2b26e" resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.4.0.tgz#bfe84790230f5d2de495238b29e9397c5ed2b26e"
integrity sha512-PrIgoMnXaDWUfwOekahro543pgcJfgRu/nd/ZQS5ffem3+Ow725eZY6HDpPaQ1k3cvLii9JH6V2sNJConjqUKA== integrity sha512-PrIgoMnXaDWUfwOekahro543pgcJfgRu/nd/ZQS5ffem3+Ow725eZY6HDpPaQ1k3cvLii9JH6V2sNJConjqUKA==
"@algolia/cache-common@4.6.0": "@algolia/cache-common@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.6.0.tgz#f67da65766a004368db0833caf4890fe450d8f0a" resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.8.3.tgz#7aca2644159ec791921dc8b296817e5b532b3464"
integrity sha512-mEedrPb2O3WwtiIHggFoIhTbHVCMNikxMiiN9kqmwZkdDfClfxm435OUGZfAl67rBZfc0DNs/jmPM2mUoefM9A== integrity sha512-Cf7zZ2i6H+tLSBTkFePHhYvlgc9fnMPKsF9qTmiU38kFIGORy/TN2Fx5n1GBuRLIzaSXvcf+oHv1HvU0u1gE1g==
"@algolia/cache-in-memory@4.4.0": "@algolia/cache-in-memory@4.4.0":
version "4.4.0" version "4.4.0"
@ -33,12 +33,12 @@
dependencies: dependencies:
"@algolia/cache-common" "4.4.0" "@algolia/cache-common" "4.4.0"
"@algolia/cache-in-memory@4.6.0": "@algolia/cache-in-memory@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.6.0.tgz#f29bf505b52261d0fc29942a58b16c89527db16c" resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.8.3.tgz#3d2692b895e9b8da47249b2b8dc638f53d6328ee"
integrity sha512-J7ayGokVWEFkuLxzgrIsPS4k1/ZndyGVpG/qPrG9RHVrs7ZogEhUSY1tbEyUlW3mGy7diIh+/52dtohDL/nbGQ== integrity sha512-+N7tkvmijXiDy2E7u1mM73AGEgGPWFmEmPeJS96oT46I98KXAwVPNYbcAqBE79YlixdXpkYJk41cFcORzNh+Iw==
dependencies: dependencies:
"@algolia/cache-common" "4.6.0" "@algolia/cache-common" "4.8.3"
"@algolia/client-account@4.4.0": "@algolia/client-account@4.4.0":
version "4.4.0" version "4.4.0"
@ -49,14 +49,14 @@
"@algolia/client-search" "4.4.0" "@algolia/client-search" "4.4.0"
"@algolia/transporter" "4.4.0" "@algolia/transporter" "4.4.0"
"@algolia/client-account@4.6.0": "@algolia/client-account@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.6.0.tgz#bf68f8961b76b520d02bd46e08ddd0a949b73bb9" resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.8.3.tgz#4abc270dbd136644e69cc6b1ca1d0d14c9822aaf"
integrity sha512-0t2yU6wNBNJgAmrARHrM1llhANyPT4Q/1wu6yEzv2WfPXlfsHwMhtKYNti4/k8eswwUt9wAri10WFV6TJI48rg== integrity sha512-Uku8LqnXBwfDCtsTCDYTUOz2/2oqcAQCKgaO0uGdIR8DTQENBXFQvzziambHdn9KuFuY+6Et9k1+cjpTPBDTBg==
dependencies: dependencies:
"@algolia/client-common" "4.6.0" "@algolia/client-common" "4.8.3"
"@algolia/client-search" "4.6.0" "@algolia/client-search" "4.8.3"
"@algolia/transporter" "4.6.0" "@algolia/transporter" "4.8.3"
"@algolia/client-analytics@4.4.0": "@algolia/client-analytics@4.4.0":
version "4.4.0" version "4.4.0"
@ -68,15 +68,15 @@
"@algolia/requester-common" "4.4.0" "@algolia/requester-common" "4.4.0"
"@algolia/transporter" "4.4.0" "@algolia/transporter" "4.4.0"
"@algolia/client-analytics@4.6.0": "@algolia/client-analytics@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.6.0.tgz#ee180fe1793f4989cff7500e14a543cbfcb1b3a7" resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.8.3.tgz#578b6e6fa33818a0417298438066642e584e1de9"
integrity sha512-7yfn9pabA21Uw2iZjW1MNN4IJUT5y/YSg+ZJ+3HqBB6SgzOOqY0N3fATsPeGuN9EqSfVnqvnIrJMS8mI0b5FzQ== integrity sha512-9ensIWmjYJprZ+YjAVSZdWUG05xEnbytENXp508X59tf34IMIX8BR2xl0RjAQODtxBdAteGxuKt5THX6U9tQLA==
dependencies: dependencies:
"@algolia/client-common" "4.6.0" "@algolia/client-common" "4.8.3"
"@algolia/client-search" "4.6.0" "@algolia/client-search" "4.8.3"
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@algolia/transporter" "4.6.0" "@algolia/transporter" "4.8.3"
"@algolia/client-common@4.4.0": "@algolia/client-common@4.4.0":
version "4.4.0" version "4.4.0"
@ -86,13 +86,13 @@
"@algolia/requester-common" "4.4.0" "@algolia/requester-common" "4.4.0"
"@algolia/transporter" "4.4.0" "@algolia/transporter" "4.4.0"
"@algolia/client-common@4.6.0": "@algolia/client-common@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.6.0.tgz#a2cd94cce0026335e89ac508087425dfce20dd07" resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.8.3.tgz#d8ea3368a5b98ce907e4be0eed804c3301cd91de"
integrity sha512-60jK0LK5H+6q6HyyMyoBBD0fIs8zZzJt6BiyJGQG90o3gUV/SnjiNxO9Bx0RRlqdkE5s0OYFu1L7P9Y5TX7oAw== integrity sha512-TU3623AEFAWUQlDTznkgAMSYo8lfS9pNs5QYDQzkvzWdqK0GBDWthwdRfo9iIsfxiR9qdCMHqwEu+AlZMVhNSA==
dependencies: dependencies:
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@algolia/transporter" "4.6.0" "@algolia/transporter" "4.8.3"
"@algolia/client-recommendation@4.4.0": "@algolia/client-recommendation@4.4.0":
version "4.4.0" version "4.4.0"
@ -103,14 +103,14 @@
"@algolia/requester-common" "4.4.0" "@algolia/requester-common" "4.4.0"
"@algolia/transporter" "4.4.0" "@algolia/transporter" "4.4.0"
"@algolia/client-recommendation@4.6.0": "@algolia/client-recommendation@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.6.0.tgz#22d0c9db79873f96ac41c1f66e3ab654b1a9b73d" resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.8.3.tgz#fc15688bf9d0fc0111a6c56d247e33dc3fcf8190"
integrity sha512-j+Yb1z5QeIRDCCO+9hS9oZS3KNqRogPHDbJJsLTt6pkrs4CG2UVLVV67M977B1nzJ9OzaEki3VbpGQhRhPGNfQ== integrity sha512-qysGbmkcc6Agt29E38KWJq9JuxjGsyEYoKuX9K+P5HyQh08yR/BlRYrA8mB7vT/OIUHRGFToGO6Vq/rcg0NIOQ==
dependencies: dependencies:
"@algolia/client-common" "4.6.0" "@algolia/client-common" "4.8.3"
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@algolia/transporter" "4.6.0" "@algolia/transporter" "4.8.3"
"@algolia/client-search@4.4.0": "@algolia/client-search@4.4.0":
version "4.4.0" version "4.4.0"
@ -121,24 +121,24 @@
"@algolia/requester-common" "4.4.0" "@algolia/requester-common" "4.4.0"
"@algolia/transporter" "4.4.0" "@algolia/transporter" "4.4.0"
"@algolia/client-search@4.6.0": "@algolia/client-search@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.6.0.tgz#5c73de6be352eeb35332cb5284b7c4b9e2f88ba7" resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.8.3.tgz#c70e09935e2cf25da356d59794e6a5a95f9a4cc8"
integrity sha512-+qA1NA88YnXvuCKifegfgts1RQs8IzcwccQqyurz8ins4hypZL1tXN2BkrOqqDIgvYIrUvFyhv+gLO6U9PpDUA== integrity sha512-rAnvoy3GAhbzOQVniFcKVn1eM2NX77LearzYNCbtFrFYavG+hJI187bNVmajToiuGZ10FfJvK99X2OB1AzzezQ==
dependencies: dependencies:
"@algolia/client-common" "4.6.0" "@algolia/client-common" "4.8.3"
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@algolia/transporter" "4.6.0" "@algolia/transporter" "4.8.3"
"@algolia/logger-common@4.4.0": "@algolia/logger-common@4.4.0":
version "4.4.0" version "4.4.0"
resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.4.0.tgz#8115d95d5f6227f0127d33130a9c4622cde64f6f" resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.4.0.tgz#8115d95d5f6227f0127d33130a9c4622cde64f6f"
integrity sha512-2vjmSENLaKNuF+ytRDysfWxxgFG95WXCHwHbueThdPMCK3hskkwqJ0Y/pugKfzl+54mZxegb4BYfgcCeuaHVUw== integrity sha512-2vjmSENLaKNuF+ytRDysfWxxgFG95WXCHwHbueThdPMCK3hskkwqJ0Y/pugKfzl+54mZxegb4BYfgcCeuaHVUw==
"@algolia/logger-common@4.6.0": "@algolia/logger-common@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.6.0.tgz#966591b903eae60201d12c4126fbf278303e2d2a" resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.8.3.tgz#449e8767863466528de7d18017417b319e4782d3"
integrity sha512-F+0HTGSQzJfWsX/cJq2l4eG2Y5JA6pqZ0YETyo5XJhZX4JaDrGszVKuOqp8kovZF/Ifebywxb8JdCiSUskmbig== integrity sha512-03wksHRbhl2DouEKnqWuUb64s1lV6kDAAabMCQ2Du1fb8X/WhDmxHC4UXMzypeOGlH5BZBsgVwSB7vsZLP3MZg==
"@algolia/logger-console@4.4.0": "@algolia/logger-console@4.4.0":
version "4.4.0" version "4.4.0"
@ -147,12 +147,12 @@
dependencies: dependencies:
"@algolia/logger-common" "4.4.0" "@algolia/logger-common" "4.4.0"
"@algolia/logger-console@4.6.0": "@algolia/logger-console@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.6.0.tgz#7e1811aa22e6aad22ef7946732f9a110b46c4eb0" resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.8.3.tgz#e4bcda8ac6477ecf143a1d536be2b747b84b7047"
integrity sha512-ers7OhfU6qBQl6s7MOe5gNUkcpa7LGrhEzDWnD0cUwLSd5BvWt7zEN69O2CZVbvAUZYlZ5zJTzMMa49s0VXrKQ== integrity sha512-Npt+hI4UF8t3TLMluL5utr9Gc11BjL5kDnGZOhDOAz5jYiSO2nrHMFmnpLT4Cy/u7a5t7EB5dlypuC4/AGStkA==
dependencies: dependencies:
"@algolia/logger-common" "4.6.0" "@algolia/logger-common" "4.8.3"
"@algolia/requester-browser-xhr@4.4.0": "@algolia/requester-browser-xhr@4.4.0":
version "4.4.0" version "4.4.0"
@ -161,22 +161,22 @@
dependencies: dependencies:
"@algolia/requester-common" "4.4.0" "@algolia/requester-common" "4.4.0"
"@algolia/requester-browser-xhr@4.6.0": "@algolia/requester-browser-xhr@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.6.0.tgz#51870239c98467d5bf0a7071523111c120b560c1" resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.8.3.tgz#f2fe880d261e33bce1c6d613be074fd87af9f7e6"
integrity sha512-ugrJT25VUkoKrl5vJVFclMdogbhTiDZ38Gss4xfTiSsP/SGE/0ei5VEOMEcj/bjkurJjPky1HfJZ3ykJhIsfCA== integrity sha512-/LTTIpgEmEwkyhn8yXxDdBWqXqzlgw5w2PtTpIwkSlP2/jDwdR/9w1TkFzhNbJ81ki6LAEQM5mSwoTTnbIIecg==
dependencies: dependencies:
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@algolia/requester-common@4.4.0": "@algolia/requester-common@4.4.0":
version "4.4.0" version "4.4.0"
resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.4.0.tgz#0e977939aae32ff81a6d27480a71771a65db6051" resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.4.0.tgz#0e977939aae32ff81a6d27480a71771a65db6051"
integrity sha512-jPinHlFJEFokxQ5b3JWyjQKKn+FMy0hH99PApzOgQAYOSiFRXiPEZp6LeIexDeLLu7Y3eRt/3nHvjPKa6PmRRw== integrity sha512-jPinHlFJEFokxQ5b3JWyjQKKn+FMy0hH99PApzOgQAYOSiFRXiPEZp6LeIexDeLLu7Y3eRt/3nHvjPKa6PmRRw==
"@algolia/requester-common@4.6.0": "@algolia/requester-common@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.6.0.tgz#0990f3b21414a3ec5a3a468f33f2b9bff4489222" resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.8.3.tgz#633b6782ae3fcf1743507c0ef207db5c62737443"
integrity sha512-DJ5iIGBGrRudimaaFnpBFM19pv8SsXiMYuukn9q1GgQh2mPPBCBBJiezKc7+OzE1UyCVrAFBpR/hrJnflZnRdQ== integrity sha512-+Yo9vBkofoKR1SCqqtMnmnfq9yt/BiaDewY/6bYSMNxSYCnu2Fw1JKSIaf/4zos09PMSsxGpLohZwGas3+0GDQ==
"@algolia/requester-node-http@4.4.0": "@algolia/requester-node-http@4.4.0":
version "4.4.0" version "4.4.0"
@ -185,12 +185,12 @@
dependencies: dependencies:
"@algolia/requester-common" "4.4.0" "@algolia/requester-common" "4.4.0"
"@algolia/requester-node-http@4.6.0": "@algolia/requester-node-http@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.6.0.tgz#a2e6c981507faf2f309f06fda2503f591e3a768d" resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.8.3.tgz#81c8e5d02f16a57cebfa2309a931fad6de84eb6d"
integrity sha512-MPZK3oZz0jSBsqrGiPxv7LOKMUNknlaRNyRDy0v/ASIYG+GvLhGTdEzG5Eyw5tgSvBr8CWrWM5tDC31EH40Ndw== integrity sha512-k2fiKIeMIFqgC01FnzII6kqC2GQBAfbNaUX4k7QCPa6P8t4sp2xE6fImOUiztLnnL3C9X9ZX6Fw3L+cudi7jvQ==
dependencies: dependencies:
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@algolia/transporter@4.4.0": "@algolia/transporter@4.4.0":
version "4.4.0" version "4.4.0"
@ -201,14 +201,14 @@
"@algolia/logger-common" "4.4.0" "@algolia/logger-common" "4.4.0"
"@algolia/requester-common" "4.4.0" "@algolia/requester-common" "4.4.0"
"@algolia/transporter@4.6.0": "@algolia/transporter@4.8.3":
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.6.0.tgz#741300a1cd7efd175fc660c37afee4d9903621e5" resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.8.3.tgz#6ad10b4be16653d667bb4727df27478931631fe8"
integrity sha512-xp+HI8sB8gLCvP00scaOVPQEk5H7nboWUxrwLKyVUvtUO4o003bOfFPsH86NRyu5Dv7fzX9b8EH3rVxcLOhjqg== integrity sha512-nU7fy2iU8snxATlsks0MjMyv97QJWQmOVwTjDc+KZ4+nue8CLcgm4LA4dsTBqvxeCQIoEtt3n72GwXcaqiJSjQ==
dependencies: dependencies:
"@algolia/cache-common" "4.6.0" "@algolia/cache-common" "4.8.3"
"@algolia/logger-common" "4.6.0" "@algolia/logger-common" "4.8.3"
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@ampproject/toolbox-core@^2.6.0": "@ampproject/toolbox-core@^2.6.0":
version "2.6.1" version "2.6.1"
@ -295,7 +295,7 @@
semver "^5.4.1" semver "^5.4.1"
source-map "^0.5.0" source-map "^0.5.0"
"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.4.4", "@babel/core@^7.7.5": "@babel/core@7.12.9", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.4.4", "@babel/core@^7.7.5":
version "7.12.9" version "7.12.9"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
@ -638,7 +638,7 @@
"@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
"@babel/plugin-transform-parameters" "^7.10.4" "@babel/plugin-transform-parameters" "^7.10.4"
"@babel/plugin-proposal-object-rest-spread@^7.12.1": "@babel/plugin-proposal-object-rest-spread@7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.12.1":
version "7.12.1" version "7.12.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
@ -736,7 +736,7 @@
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-jsx@^7.12.1", "@babel/plugin-syntax-jsx@^7.2.0": "@babel/plugin-syntax-jsx@7.12.1", "@babel/plugin-syntax-jsx@^7.12.1", "@babel/plugin-syntax-jsx@^7.2.0":
version "7.12.1" version "7.12.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
@ -1302,7 +1302,7 @@
dependencies: dependencies:
"@babel/plugin-syntax-jsx" "^7.2.0" "@babel/plugin-syntax-jsx" "^7.2.0"
"@emotion/babel-plugin@^11.0.0", "@emotion/babel-plugin@^11.0.0-next.17": "@emotion/babel-plugin@^11.0.0":
version "11.0.0" version "11.0.0"
resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.0.0.tgz#e6f40fa81ef52775773a53d50220c597ebc5c2ef" resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.0.0.tgz#e6f40fa81ef52775773a53d50220c597ebc5c2ef"
integrity sha512-w3YP0jlqrNwBBaSI6W+r80fOKF6l9QmsPfLNx5YWSHwrxjVZhM+L50gY7YCVAvlfr1/qdD1vsFN+PDZmLvt42Q== integrity sha512-w3YP0jlqrNwBBaSI6W+r80fOKF6l9QmsPfLNx5YWSHwrxjVZhM+L50gY7YCVAvlfr1/qdD1vsFN+PDZmLvt42Q==
@ -1320,6 +1320,24 @@
source-map "^0.5.7" source-map "^0.5.7"
stylis "^4.0.3" stylis "^4.0.3"
"@emotion/babel-plugin@^11.1.2":
version "11.1.2"
resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.1.2.tgz#68fe1aa3130099161036858c64ee92056c6730b7"
integrity sha512-Nz1k7b11dWw8Nw4Z1R99A9mlB6C6rRsCtZnwNUOj4NsoZdrO2f2A/83ST7htJORD5zpOiLKY59aJN23092949w==
dependencies:
"@babel/helper-module-imports" "^7.7.0"
"@babel/plugin-syntax-jsx" "^7.12.1"
"@babel/runtime" "^7.7.2"
"@emotion/hash" "^0.8.0"
"@emotion/memoize" "^0.7.5"
"@emotion/serialize" "^1.0.0"
babel-plugin-macros "^2.6.1"
convert-source-map "^1.5.0"
escape-string-regexp "^4.0.0"
find-root "^1.1.0"
source-map "^0.5.7"
stylis "^4.0.3"
"@emotion/babel-preset-css-prop@^11.0.0-next.10": "@emotion/babel-preset-css-prop@^11.0.0-next.10":
version "11.0.0" version "11.0.0"
resolved "https://registry.yarnpkg.com/@emotion/babel-preset-css-prop/-/babel-preset-css-prop-11.0.0.tgz#25b868affa620b9e97024b67f67ad32c03a0510e" resolved "https://registry.yarnpkg.com/@emotion/babel-preset-css-prop/-/babel-preset-css-prop-11.0.0.tgz#25b868affa620b9e97024b67f67ad32c03a0510e"
@ -1374,15 +1392,20 @@
resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
"@emotion/react@^11.0.0-next.17": "@emotion/memoize@^0.7.5":
version "11.1.1" version "0.7.5"
resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.1.1.tgz#4b304d494af321b0179e6763830e07cf674f0423" resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50"
integrity sha512-otA0Np8OnOeU9ChkOS9iuLB6vIxiM+bJiU0id33CsQn3R2Pk9ijVHnxevENIKV/P2S7AhrD8cFbUGysEciWlEA== integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==
"@emotion/react@^11.1.2":
version "11.1.2"
resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.1.2.tgz#a635cfc6bc0974756f690b848c684338183b2593"
integrity sha512-zEpxynUhHm2GqjY556RnA12Ijt0v6rYUwV6WliyGoFbQKJKkXFuTzGHGQx4UY2jKUV1I4yjr66Ajj/qoQMVPeQ==
dependencies: dependencies:
"@babel/runtime" "^7.7.2" "@babel/runtime" "^7.7.2"
"@emotion/cache" "^11.0.0" "@emotion/cache" "^11.0.0"
"@emotion/serialize" "^1.0.0" "@emotion/serialize" "^1.0.0"
"@emotion/sheet" "^1.0.0" "@emotion/sheet" "^1.0.1"
"@emotion/utils" "^1.0.0" "@emotion/utils" "^1.0.0"
"@emotion/weak-memoize" "^0.2.5" "@emotion/weak-memoize" "^0.2.5"
hoist-non-react-statics "^3.3.1" hoist-non-react-statics "^3.3.1"
@ -1413,6 +1436,11 @@
resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.0.tgz#a0ef06080f339477ad4ba7f56e1c931f7ba50822" resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.0.tgz#a0ef06080f339477ad4ba7f56e1c931f7ba50822"
integrity sha512-cdCHfZtf/0rahPDCZ9zyq+36EqfD/6c0WUqTFZ/hv9xadTUv2lGE5QK7/Z6Dnx2oRxC0usfVM2/BYn9q9B9wZA== integrity sha512-cdCHfZtf/0rahPDCZ9zyq+36EqfD/6c0WUqTFZ/hv9xadTUv2lGE5QK7/Z6Dnx2oRxC0usfVM2/BYn9q9B9wZA==
"@emotion/sheet@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.1.tgz#245f54abb02dfd82326e28689f34c27aa9b2a698"
integrity sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g==
"@emotion/unitless@^0.7.5": "@emotion/unitless@^0.7.5":
version "0.7.5" version "0.7.5"
resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
@ -1671,16 +1699,41 @@
"@types/yargs" "^15.0.0" "@types/yargs" "^15.0.0"
chalk "^3.0.0" chalk "^3.0.0"
"@mdx-js/loader@1.6.21": "@mdx-js/loader@1.6.22":
version "1.6.21" version "1.6.22"
resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-1.6.21.tgz#e5b2b5c48d182e495d36104b0c7a5da96964a2dd" resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-1.6.22.tgz#d9e8fe7f8185ff13c9c8639c048b123e30d322c4"
integrity sha512-4xNtT7oal4PrLSpZE+75nj9XMwYwc5BuoHmer1GDmer2Hhg8DCLxskk4lWpXnMv+IUg7MboK0EAtZ2fk0szt3A== integrity sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==
dependencies: dependencies:
"@mdx-js/mdx" "1.6.21" "@mdx-js/mdx" "1.6.22"
"@mdx-js/react" "1.6.21" "@mdx-js/react" "1.6.22"
loader-utils "2.0.0" loader-utils "2.0.0"
"@mdx-js/mdx@1.6.21", "@mdx-js/mdx@^1.6.16": "@mdx-js/mdx@1.6.22", "@mdx-js/mdx@^1.6.22":
version "1.6.22"
resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba"
integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==
dependencies:
"@babel/core" "7.12.9"
"@babel/plugin-syntax-jsx" "7.12.1"
"@babel/plugin-syntax-object-rest-spread" "7.8.3"
"@mdx-js/util" "1.6.22"
babel-plugin-apply-mdx-type-prop "1.6.22"
babel-plugin-extract-import-names "1.6.22"
camelcase-css "2.0.1"
detab "2.0.4"
hast-util-raw "6.0.1"
lodash.uniq "4.5.0"
mdast-util-to-hast "10.0.1"
remark-footnotes "2.0.0"
remark-mdx "1.6.22"
remark-parse "8.0.3"
remark-squeeze-paragraphs "4.0.0"
style-to-object "0.3.0"
unified "9.2.0"
unist-builder "2.0.3"
unist-util-visit "2.0.3"
"@mdx-js/mdx@^1.6.16":
version "1.6.21" version "1.6.21"
resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.21.tgz#d3651b4802db7bdc399270c0ffa9e2aa99dd4b00" resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.21.tgz#d3651b4802db7bdc399270c0ffa9e2aa99dd4b00"
integrity sha512-z35VI6qDw9eAzR/obtgHbYVUdb/Pm+oUnlP1lLR94Oe05Xs2H7vlAgpuFBCLH5g/egzAc2wZCyoVydr25CsF+A== integrity sha512-z35VI6qDw9eAzR/obtgHbYVUdb/Pm+oUnlP1lLR94Oe05Xs2H7vlAgpuFBCLH5g/egzAc2wZCyoVydr25CsF+A==
@ -1705,21 +1758,26 @@
unist-builder "2.0.3" unist-builder "2.0.3"
unist-util-visit "2.0.3" unist-util-visit "2.0.3"
"@mdx-js/react@1.6.21", "@mdx-js/react@^1.6.16": "@mdx-js/react@1.6.22", "@mdx-js/react@^1.6.22":
version "1.6.21"
resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.21.tgz#86d962471a5e160c59a6b32054aa55c0c7ca404e"
integrity sha512-CgSNT9sq2LAlhEbVlPg7DwUQkypz+CWaWGcJbkgmp9WCAy6vW33CQ44UbKPiH3wet9o+UbXeQOqzZd041va83g==
"@mdx-js/react@^1.6.22":
version "1.6.22" version "1.6.22"
resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573" resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573"
integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
"@mdx-js/react@^1.6.16":
version "1.6.21"
resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.21.tgz#86d962471a5e160c59a6b32054aa55c0c7ca404e"
integrity sha512-CgSNT9sq2LAlhEbVlPg7DwUQkypz+CWaWGcJbkgmp9WCAy6vW33CQ44UbKPiH3wet9o+UbXeQOqzZd041va83g==
"@mdx-js/util@1.6.21": "@mdx-js/util@1.6.21":
version "1.6.21" version "1.6.21"
resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.21.tgz#25f97a0a1b76e78c16ae5d98c6c73e1be8d89e39" resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.21.tgz#25f97a0a1b76e78c16ae5d98c6c73e1be8d89e39"
integrity sha512-6sANhqfEHu6gdHZSrzDjN18Y48mIon8f2Os6J+IFmMHN0IhNG/0PUIIsI07kA1sZ9t6vgZNBloVmcDa5WOSe6A== integrity sha512-6sANhqfEHu6gdHZSrzDjN18Y48mIon8f2Os6J+IFmMHN0IhNG/0PUIIsI07kA1sZ9t6vgZNBloVmcDa5WOSe6A==
"@mdx-js/util@1.6.22":
version "1.6.22"
resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b"
integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
"@next/bundle-analyzer@^10.0.3": "@next/bundle-analyzer@^10.0.3":
version "10.0.3" version "10.0.3"
resolved "https://registry.yarnpkg.com/@next/bundle-analyzer/-/bundle-analyzer-10.0.3.tgz#4eac34f171301581638deaa4dbb939632888c653" resolved "https://registry.yarnpkg.com/@next/bundle-analyzer/-/bundle-analyzer-10.0.3.tgz#4eac34f171301581638deaa4dbb939632888c653"
@ -1941,27 +1999,27 @@
dependencies: dependencies:
type-detect "4.0.8" type-detect "4.0.8"
"@stacks/ui-core@^6.0.0": "@stacks/ui-core@^7.0.0":
version "6.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/@stacks/ui-core/-/ui-core-6.0.0.tgz#c9fdabdb905d4249a6a76e53f65eeb4e96b9bfcd" resolved "https://registry.yarnpkg.com/@stacks/ui-core/-/ui-core-7.0.0.tgz#74a0c72ed6a3100e170d2391e9b077fc37af1a5e"
integrity sha512-TW1aeuTUS+5N1RRA4+FnR77W/M7TqdCYoDguknJ95QPhRE7//Gc6KwrBNuvYzuHseF7qkm5IiudZrwpRSsFYjw== integrity sha512-2CAGzlR9VUYLHe1U6nc3IEt94fquzXi0vpeOCHHkVW8Eyf83y2O/Swm/N4eMWoVde72dy2+/rdexTwUE7BfYTA==
dependencies: dependencies:
"@styled-system/should-forward-prop" "^5.1.5" "@styled-system/should-forward-prop" "^5.1.5"
camelcase "^6.0.0" camelcase "^6.0.0"
micro-memoize "^4.0.9" micro-memoize "^4.0.9"
"@stacks/ui-theme@^6.0.0": "@stacks/ui-theme@^7.0.0":
version "6.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/@stacks/ui-theme/-/ui-theme-6.0.0.tgz#0f754477e56be4f28ce408ca5d7d13fb8ef03214" resolved "https://registry.yarnpkg.com/@stacks/ui-theme/-/ui-theme-7.0.0.tgz#a0782d7375e68d446c19f84af83acd93d3982be6"
integrity sha512-TS+NkZMdPwvSPILpNYLrrEWN/PAQ/NlGDOEHv+742G3p/f/fpMn1mDOiAjh+qSFMuVbX7Xi0EVaICHfshuYofw== integrity sha512-T6ouIjaHZpo0yhPSDEB0MqcYNrNVC32+PJOunv3KofDCDPsRSdUx5k/MNAUe49+mQjdpeOi9GGIkwwOec9ecmQ==
dependencies: dependencies:
type-fest "^0.20.2" type-fest "^0.20.2"
typescript "^4.1.2" typescript "^4.1.2"
"@stacks/ui-utils@^6.0.0": "@stacks/ui-utils@^7.0.0":
version "6.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/@stacks/ui-utils/-/ui-utils-6.0.0.tgz#da85b3f64d8630aee74aad4cc41508cb6258e711" resolved "https://registry.yarnpkg.com/@stacks/ui-utils/-/ui-utils-7.0.0.tgz#ef31417997f4678bf10735516fdc6c6c0a24dfc4"
integrity sha512-e6hq0/cf+yFM9wH9N4wv3fZkwH2YM4OW+Q8BeuacAHNzmDeaDKjz3VKaGx44qTg5Ix4FDU5mJn9J961Lq1bEWg== integrity sha512-2VQ6ys2AHsCU3M9aoUvYxoR6/hYSUMaJkvbe76vITOi/fBkUwYK9GUv+q5mY4C2wPWsOu+9j2vNcTWtqkRFmKQ==
dependencies: dependencies:
"@blockstack/stacks-blockchain-api-types" "^0.34.1" "@blockstack/stacks-blockchain-api-types" "^0.34.1"
"@types/big.js" "^6.0.0" "@types/big.js" "^6.0.0"
@ -1970,18 +2028,18 @@
type-fest "^0.20.2" type-fest "^0.20.2"
typescript "^4.1.2" typescript "^4.1.2"
"@stacks/ui@^6.0.0": "@stacks/ui@^7.0.0":
version "6.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/@stacks/ui/-/ui-6.0.0.tgz#f5dfa1f7b00221df9200eff67a3a57cd6d21a7fc" resolved "https://registry.yarnpkg.com/@stacks/ui/-/ui-7.0.0.tgz#d0522ff6478143516654f33e5934210b61f0f531"
integrity sha512-tVWd8FFooOjoEqVNItrDhlctwmy76J8qodk4nA3fUbID1gkRpaz7dwT8BzscFGiuDBWyhsRyKCHTvCA874H5vg== integrity sha512-wA2YF+VbyooIHmpPM7HXUtofH59UXQECwX3OuEAI4hlaFZZP+wTwjPN5zH/qw7askOZgO11ZFo3zeyuH79rhqQ==
dependencies: dependencies:
"@popperjs/core" "^2.4.0" "@popperjs/core" "^2.4.0"
"@reach/alert" "^0.12.1" "@reach/alert" "^0.12.1"
"@reach/auto-id" "^0.12.1" "@reach/auto-id" "^0.12.1"
"@reach/rect" "^0.12.1" "@reach/rect" "^0.12.1"
"@stacks/ui-core" "^6.0.0" "@stacks/ui-core" "^7.0.0"
"@stacks/ui-theme" "^6.0.0" "@stacks/ui-theme" "^7.0.0"
"@stacks/ui-utils" "^6.0.0" "@stacks/ui-utils" "^7.0.0"
"@styled-system/should-forward-prop" "^5.1.5" "@styled-system/should-forward-prop" "^5.1.5"
"@styled-system/theme-get" "^5.1.2" "@styled-system/theme-get" "^5.1.2"
"@types/flushable" "^1.0.1" "@types/flushable" "^1.0.1"
@ -2102,6 +2160,11 @@
"@styled-system/core" "^5.1.2" "@styled-system/core" "^5.1.2"
"@styled-system/css" "^5.1.5" "@styled-system/css" "^5.1.5"
"@tabler/icons@^1.37.0":
version "1.37.0"
resolved "https://registry.yarnpkg.com/@tabler/icons/-/icons-1.37.0.tgz#8fcb8611bcd08e2a18b771d0ed89f8cbee1adabc"
integrity sha512-xTky2tu9MOsBSBBr0C9SY1hEPqfPL6HS6qPd6bCr9AWqivaFpD8MrdawzBZXZ4upGfQlQuO49WHBoE3kitz+XA==
"@types/babel__core@^7.1.7": "@types/babel__core@^7.1.7":
version "7.1.12" version "7.1.12"
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.12.tgz#4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.12.tgz#4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d"
@ -2815,25 +2878,25 @@ algoliasearch@^4.0.0:
"@algolia/requester-node-http" "4.4.0" "@algolia/requester-node-http" "4.4.0"
"@algolia/transporter" "4.4.0" "@algolia/transporter" "4.4.0"
algoliasearch@^4.5.1: algoliasearch@^4.8.3:
version "4.6.0" version "4.8.3"
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.6.0.tgz#ad96ecd6e4aa2f1187d5a6ade9f914b080001e28" resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.8.3.tgz#f76b824423e4264506fb6ba6a6709feb08ab9954"
integrity sha512-f4QVfUYnWIGZwOupZh0RAqW8zEfpZAcZG6ZT0p6wDMztEyKBrjjbTXBk9p9uEaJqoIhFUm6TtApOxodTdHbqvw== integrity sha512-pljX9jEE2TQ3i1JayhG8afNdE8UuJg3O9c7unW6QO67yRWCKr6b0t5aKC3hSVtjt7pA2TQXLKoAISb4SHx9ozQ==
dependencies: dependencies:
"@algolia/cache-browser-local-storage" "4.6.0" "@algolia/cache-browser-local-storage" "4.8.3"
"@algolia/cache-common" "4.6.0" "@algolia/cache-common" "4.8.3"
"@algolia/cache-in-memory" "4.6.0" "@algolia/cache-in-memory" "4.8.3"
"@algolia/client-account" "4.6.0" "@algolia/client-account" "4.8.3"
"@algolia/client-analytics" "4.6.0" "@algolia/client-analytics" "4.8.3"
"@algolia/client-common" "4.6.0" "@algolia/client-common" "4.8.3"
"@algolia/client-recommendation" "4.6.0" "@algolia/client-recommendation" "4.8.3"
"@algolia/client-search" "4.6.0" "@algolia/client-search" "4.8.3"
"@algolia/logger-common" "4.6.0" "@algolia/logger-common" "4.8.3"
"@algolia/logger-console" "4.6.0" "@algolia/logger-console" "4.8.3"
"@algolia/requester-browser-xhr" "4.6.0" "@algolia/requester-browser-xhr" "4.8.3"
"@algolia/requester-common" "4.6.0" "@algolia/requester-common" "4.8.3"
"@algolia/requester-node-http" "4.6.0" "@algolia/requester-node-http" "4.8.3"
"@algolia/transporter" "4.6.0" "@algolia/transporter" "4.8.3"
ally.js@1.4.1: ally.js@1.4.1:
version "1.4.1" version "1.4.1"
@ -3169,6 +3232,14 @@ babel-plugin-apply-mdx-type-prop@1.6.21:
"@babel/helper-plugin-utils" "7.10.4" "@babel/helper-plugin-utils" "7.10.4"
"@mdx-js/util" "1.6.21" "@mdx-js/util" "1.6.21"
babel-plugin-apply-mdx-type-prop@1.6.22:
version "1.6.22"
resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz#d216e8fd0de91de3f1478ef3231e05446bc8705b"
integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==
dependencies:
"@babel/helper-plugin-utils" "7.10.4"
"@mdx-js/util" "1.6.22"
babel-plugin-dev-expression@^0.2.1: babel-plugin-dev-expression@^0.2.1:
version "0.2.2" version "0.2.2"
resolved "https://registry.yarnpkg.com/babel-plugin-dev-expression/-/babel-plugin-dev-expression-0.2.2.tgz#c18de18a06150f9480edd151acbb01d2e65e999b" resolved "https://registry.yarnpkg.com/babel-plugin-dev-expression/-/babel-plugin-dev-expression-0.2.2.tgz#c18de18a06150f9480edd151acbb01d2e65e999b"
@ -3188,6 +3259,13 @@ babel-plugin-extract-import-names@1.6.21:
dependencies: dependencies:
"@babel/helper-plugin-utils" "7.10.4" "@babel/helper-plugin-utils" "7.10.4"
babel-plugin-extract-import-names@1.6.22:
version "1.6.22"
resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz#de5f9a28eb12f3eb2578bf74472204e66d1a13dc"
integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==
dependencies:
"@babel/helper-plugin-utils" "7.10.4"
babel-plugin-istanbul@^6.0.0: babel-plugin-istanbul@^6.0.0:
version "6.0.0" version "6.0.0"
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
@ -3420,7 +3498,7 @@ body-parser@1.19.0:
raw-body "2.4.0" raw-body "2.4.0"
type-is "~1.6.17" type-is "~1.6.17"
boolbase@~1.0.0: boolbase@^1.0.0, boolbase@~1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
@ -4550,6 +4628,13 @@ detab@2.0.3:
dependencies: dependencies:
repeat-string "^1.5.4" repeat-string "^1.5.4"
detab@2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43"
integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==
dependencies:
repeat-string "^1.5.4"
detect-libc@^1.0.3: detect-libc@^1.0.3:
version "1.0.3" version "1.0.3"
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
@ -7854,6 +7939,20 @@ mdast-util-frontmatter@^0.2.0:
dependencies: dependencies:
micromark-extension-frontmatter "^0.2.0" micromark-extension-frontmatter "^0.2.0"
mdast-util-to-hast@10.0.1:
version "10.0.1"
resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb"
integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==
dependencies:
"@types/mdast" "^3.0.0"
"@types/unist" "^2.0.0"
mdast-util-definitions "^4.0.0"
mdurl "^1.0.0"
unist-builder "^2.0.0"
unist-util-generated "^1.0.0"
unist-util-position "^3.0.0"
unist-util-visit "^2.0.0"
mdast-util-to-hast@9.1.2: mdast-util-to-hast@9.1.2:
version "9.1.2" version "9.1.2"
resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-9.1.2.tgz#10fa5ed9d45bf3755891e5801d0f32e2584a9423" resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-9.1.2.tgz#10fa5ed9d45bf3755891e5801d0f32e2584a9423"
@ -8481,6 +8580,13 @@ nth-check@^1.0.0:
dependencies: dependencies:
boolbase "~1.0.0" boolbase "~1.0.0"
nth-check@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125"
integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==
dependencies:
boolbase "^1.0.0"
number-is-nan@^1.0.0: number-is-nan@^1.0.0:
version "1.0.1" version "1.0.1"
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
@ -9725,6 +9831,20 @@ remark-mdx@1.6.21:
remark-parse "8.0.3" remark-parse "8.0.3"
unified "9.2.0" unified "9.2.0"
remark-mdx@1.6.22:
version "1.6.22"
resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-1.6.22.tgz#06a8dab07dcfdd57f3373af7f86bd0e992108bbd"
integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==
dependencies:
"@babel/core" "7.12.9"
"@babel/helper-plugin-utils" "7.10.4"
"@babel/plugin-proposal-object-rest-spread" "7.12.1"
"@babel/plugin-syntax-jsx" "7.12.1"
"@mdx-js/util" "1.6.22"
is-alphabetical "1.0.4"
remark-parse "8.0.3"
unified "9.2.0"
remark-normalize-headings@^2.0.0: remark-normalize-headings@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/remark-normalize-headings/-/remark-normalize-headings-2.0.0.tgz#2e7492f4935346dc5eca96ffdb5f588196233169" resolved "https://registry.yarnpkg.com/remark-normalize-headings/-/remark-normalize-headings-2.0.0.tgz#2e7492f4935346dc5eca96ffdb5f588196233169"
@ -10982,10 +11102,10 @@ stylis@^4.0.3:
resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.3.tgz#0d714765f3f694a685550f0c45411ebf90a9bded" resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.3.tgz#0d714765f3f694a685550f0c45411ebf90a9bded"
integrity sha512-iAxdFyR9cHKp4H5M2dJlDnvcb/3TvPprzlKjvYVbH7Sh+y8hjY/mUu/ssdcvVz6Z4lKI3vsoS0jAkMYmX7ozfA== integrity sha512-iAxdFyR9cHKp4H5M2dJlDnvcb/3TvPprzlKjvYVbH7Sh+y8hjY/mUu/ssdcvVz6Z4lKI3vsoS0jAkMYmX7ozfA==
stylis@^4.0.4: stylis@^4.0.6:
version "4.0.4" version "4.0.6"
resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.4.tgz#5a86047c87928e9a6afc76dafcb03acba69115e0" resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.6.tgz#0d8b97b6bc4748bea46f68602b6df27641b3c548"
integrity sha512-V52wqQLk+xZW2v6dpiz1HEa/inSigsK/S+GjMJBrXQK/Xu2R7gHDzeJkdXIxDSiLu57ageN8HNuZCehATlQq2A== integrity sha512-1igcUEmYFBEO14uQHAJhCUelTR5jPztfdVKrYxRnDa5D5Dn3w0NxXupJNPr/VV/yRfZYEAco8sTIRZzH3sRYKg==
supports-color@^5.3.0: supports-color@^5.3.0:
version "5.5.0" version "5.5.0"
@ -11702,6 +11822,17 @@ unist-util-select@^3.0.1:
unist-util-is "^4.0.0" unist-util-is "^4.0.0"
zwitch "^1.0.0" zwitch "^1.0.0"
unist-util-select@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/unist-util-select/-/unist-util-select-3.0.3.tgz#8ef3ca40b3ef17c4bab5cfbf4fdad533302a7f23"
integrity sha512-DnbjRvotPiDGsUaw9knEvprwD6conwGtaArUn5niG9yBQvWQyHMmUJ4p/vXXzLBm+8XyiTr3pcuw9n3TlF6SYg==
dependencies:
css-selector-parser "^1.0.0"
not "^0.1.0"
nth-check "^2.0.0"
unist-util-is "^4.0.0"
zwitch "^1.0.0"
unist-util-stringify-position@^2.0.0: unist-util-stringify-position@^2.0.0:
version "2.0.3" version "2.0.3"
resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"

Loading…
Cancel
Save